@evercam/ui 0.0.55-beta.22 → 0.0.55-beta.23
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/README.md +1 -0
- package/dist/attributes.json +85 -9
- package/dist/index.mjs +1274 -1059
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +13 -13
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/EHeatmapBar.vue.d.ts +3 -0
- package/dist/src/components/EHoursHeatmap.vue.d.ts +3 -0
- package/dist/src/components/ETimeline.vue.d.ts +20 -11
- package/dist/src/index.d.ts +21 -10
- package/dist/src/types.d.ts +15 -0
- package/dist/style.css +1 -1
- package/dist/styles.css +8 -0
- package/dist/tags.json +30 -4
- package/dist/web-types.json +196 -21
- package/package.json +1 -1
|
@@ -0,0 +1,3 @@
|
|
|
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>>, {}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,3 @@
|
|
|
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>>, {}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
3
|
+
export default _default;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as d3 from "d3";
|
|
2
2
|
import { D3ZoomEvent } from "d3";
|
|
3
3
|
import Vue from "vue";
|
|
4
|
-
import { TimelineAxesConfig, TimelineAxis, TimelineCountEvent, TimelineEvent, TimelineEventsByType, TimelineEventsGroup, TimelineIntervalChangeTrigger, TimelineMarker, TimelinePrecision, TimelineTicksConfig, Timestamp } from '../types';
|
|
4
|
+
import { TimelineAxesConfig, TimelineAxis, TimelineCountEvent, TimelineEvent, TimelineEventsByType, TimelineEventsGroup, TimelineInterval, TimelineIntervalChangeTrigger, TimelineMarker, TimelinePrecision, TimelineTicksConfig, Timestamp } from '../types';
|
|
5
5
|
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>>, {
|
|
6
6
|
tooltip: HTMLElement;
|
|
7
7
|
cursor: HTMLElement;
|
|
@@ -61,6 +61,8 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
61
61
|
selectedMilestoneId: any;
|
|
62
62
|
isInitialized: boolean;
|
|
63
63
|
lastValidTransform: d3.ZoomTransform;
|
|
64
|
+
lastPanTransform: d3.ZoomTransform;
|
|
65
|
+
isZoomingInterval: boolean;
|
|
64
66
|
}, {
|
|
65
67
|
updateTimeline(): void;
|
|
66
68
|
initTimeline(startDate?: string, endDate?: string): void;
|
|
@@ -75,7 +77,8 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
75
77
|
updateYScaleDomain(): void;
|
|
76
78
|
initZoomBehavior(): void;
|
|
77
79
|
zoomToFitMarkers(): void;
|
|
78
|
-
|
|
80
|
+
zoomToTargetInterval(start?: string | number, end?: string | number): void;
|
|
81
|
+
translateIntervalIntoView(minTimestamp: number, maxTimestamp: number, scaleFactor: number): void;
|
|
79
82
|
initSelectedTimestampCursor(): void;
|
|
80
83
|
updateMarkers(): void;
|
|
81
84
|
updateAndRedrawTimeline(): void;
|
|
@@ -138,8 +141,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
138
141
|
initCurtains(): void;
|
|
139
142
|
createCurtains(): void;
|
|
140
143
|
updateCurtains(): void;
|
|
141
|
-
|
|
142
|
-
updateForbiddenIntervals(): void;
|
|
144
|
+
updateForbiddenIntervals(reset?: boolean): void;
|
|
143
145
|
drawEventsGroups(): void;
|
|
144
146
|
drawLineGraphEventsGroups(): void;
|
|
145
147
|
drawLineGraph({ events, gElement, color, type, }: {
|
|
@@ -154,14 +156,13 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
154
156
|
color: string;
|
|
155
157
|
type: string;
|
|
156
158
|
}): void;
|
|
157
|
-
drawSingleBarEventsGroup({ type, eventsGroup,
|
|
159
|
+
drawSingleBarEventsGroup({ type, eventsGroup, milestone, dots, dotsSize, bottom, }: {
|
|
158
160
|
type: string;
|
|
159
161
|
eventsGroup: TimelineEventsGroup;
|
|
160
|
-
index?: number | undefined;
|
|
161
162
|
milestone?: boolean | undefined;
|
|
162
|
-
height?: number | undefined;
|
|
163
163
|
dots?: boolean | undefined;
|
|
164
164
|
dotsSize?: number | undefined;
|
|
165
|
+
bottom?: boolean | undefined;
|
|
165
166
|
}): void;
|
|
166
167
|
drawBarEventsGroups(): void;
|
|
167
168
|
drawMilestonesPlaceholder(): void;
|
|
@@ -171,6 +172,8 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
171
172
|
border: string;
|
|
172
173
|
};
|
|
173
174
|
getMilestoneGroupYPosition(groupName: string): number;
|
|
175
|
+
getBarGroupYPosition(groupName: string, bottom?: boolean): number;
|
|
176
|
+
getBarGroupHeight(eventsGroup: TimelineEventsGroup): number;
|
|
174
177
|
updateMilestonesPositions(): void;
|
|
175
178
|
drawBarChartEventsGroups(): void;
|
|
176
179
|
drawProgressIndicator({ yPosition, type, isLoading, }: {
|
|
@@ -185,7 +188,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
185
188
|
color: string;
|
|
186
189
|
height?: number | undefined;
|
|
187
190
|
}): void;
|
|
188
|
-
drawBars({ events, gElement, yPosition, color, type, dots, dotsSize, }: {
|
|
191
|
+
drawBars({ events, gElement, yPosition, color, type, dots, dotsSize, height, barBorderRadius, }: {
|
|
189
192
|
events: TimelineEvent[];
|
|
190
193
|
gElement: d3.Selection<SVGGElement, any, any, any>;
|
|
191
194
|
yPosition: number;
|
|
@@ -193,6 +196,8 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
193
196
|
type: string;
|
|
194
197
|
dots?: boolean | undefined;
|
|
195
198
|
dotsSize?: number | undefined;
|
|
199
|
+
height?: number | undefined;
|
|
200
|
+
barBorderRadius?: number | undefined;
|
|
196
201
|
}): void;
|
|
197
202
|
drawBarsChart({ events, gElement, color, yOffset, type, index, }: {
|
|
198
203
|
events: TimelineEvent[];
|
|
@@ -246,6 +251,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
246
251
|
getSortedEvents(events: TimelineEvent[]): TimelineEvent[];
|
|
247
252
|
}, {
|
|
248
253
|
combinedBarsHeight: number;
|
|
254
|
+
combinedBottomBarsHeight: number;
|
|
249
255
|
combinedMilestonesHeight: number;
|
|
250
256
|
milestonesYOffset: number;
|
|
251
257
|
chartsYOffset: number;
|
|
@@ -292,12 +298,11 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
292
298
|
barYPadding: number;
|
|
293
299
|
barXPadding: number;
|
|
294
300
|
chartMinHeight: number;
|
|
301
|
+
chartMinLabelHeight: number;
|
|
295
302
|
minZoom: number;
|
|
296
303
|
maxZoom: number;
|
|
297
304
|
minDate: string;
|
|
298
305
|
maxDate: string;
|
|
299
|
-
minVisibleDate: string;
|
|
300
|
-
maxVisibleDate: string;
|
|
301
306
|
cursorTimestamp: string | undefined;
|
|
302
307
|
selectedClass: string | undefined;
|
|
303
308
|
panOnDateClick: boolean;
|
|
@@ -307,9 +312,13 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
307
312
|
markers: TimelineMarker[];
|
|
308
313
|
stickyMarkers: boolean;
|
|
309
314
|
fitMarkersOnChange: boolean;
|
|
310
|
-
|
|
315
|
+
zoomToIntervalTransitionDuration: number;
|
|
311
316
|
zoomToBoundariesTransitionDuration: number;
|
|
312
317
|
milestoneBulletSize: number;
|
|
313
318
|
milestonesFirst: boolean;
|
|
319
|
+
forbiddenIntervals: TimelineInterval[];
|
|
320
|
+
forbiddenIntervalColor: string;
|
|
321
|
+
focusedInterval: TimelineInterval | undefined;
|
|
322
|
+
locked: boolean;
|
|
314
323
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
315
324
|
export default _default;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -384,6 +384,8 @@ export declare const components: {
|
|
|
384
384
|
selectedMilestoneId: any;
|
|
385
385
|
isInitialized: boolean;
|
|
386
386
|
lastValidTransform: import("d3-zoom").ZoomTransform;
|
|
387
|
+
lastPanTransform: import("d3-zoom").ZoomTransform;
|
|
388
|
+
isZoomingInterval: boolean;
|
|
387
389
|
}, {
|
|
388
390
|
updateTimeline(): void;
|
|
389
391
|
initTimeline(startDate?: string | undefined, endDate?: string | undefined): void;
|
|
@@ -398,7 +400,8 @@ export declare const components: {
|
|
|
398
400
|
updateYScaleDomain(): void;
|
|
399
401
|
initZoomBehavior(): void;
|
|
400
402
|
zoomToFitMarkers(): void;
|
|
401
|
-
|
|
403
|
+
zoomToTargetInterval(start?: string | number | undefined, end?: string | number | undefined): void;
|
|
404
|
+
translateIntervalIntoView(minTimestamp: number, maxTimestamp: number, scaleFactor: number): void;
|
|
402
405
|
initSelectedTimestampCursor(): void;
|
|
403
406
|
updateMarkers(): void;
|
|
404
407
|
updateAndRedrawTimeline(): void;
|
|
@@ -461,8 +464,7 @@ export declare const components: {
|
|
|
461
464
|
initCurtains(): void;
|
|
462
465
|
createCurtains(): void;
|
|
463
466
|
updateCurtains(): void;
|
|
464
|
-
|
|
465
|
-
updateForbiddenIntervals(): void;
|
|
467
|
+
updateForbiddenIntervals(reset?: boolean): void;
|
|
466
468
|
drawEventsGroups(): void;
|
|
467
469
|
drawLineGraphEventsGroups(): void;
|
|
468
470
|
drawLineGraph({ events, gElement, color, type, }: {
|
|
@@ -477,14 +479,13 @@ export declare const components: {
|
|
|
477
479
|
color: string;
|
|
478
480
|
type: string;
|
|
479
481
|
}): void;
|
|
480
|
-
drawSingleBarEventsGroup({ type, eventsGroup,
|
|
482
|
+
drawSingleBarEventsGroup({ type, eventsGroup, milestone, dots, dotsSize, bottom, }: {
|
|
481
483
|
type: string;
|
|
482
484
|
eventsGroup: import('./types').TimelineEventsGroup;
|
|
483
|
-
index?: number | undefined;
|
|
484
485
|
milestone?: boolean | undefined;
|
|
485
|
-
height?: number | undefined;
|
|
486
486
|
dots?: boolean | undefined;
|
|
487
487
|
dotsSize?: number | undefined;
|
|
488
|
+
bottom?: boolean | undefined;
|
|
488
489
|
}): void;
|
|
489
490
|
drawBarEventsGroups(): void;
|
|
490
491
|
drawMilestonesPlaceholder(): void;
|
|
@@ -494,6 +495,8 @@ export declare const components: {
|
|
|
494
495
|
border: string;
|
|
495
496
|
};
|
|
496
497
|
getMilestoneGroupYPosition(groupName: string): number;
|
|
498
|
+
getBarGroupYPosition(groupName: string, bottom?: boolean | undefined): number;
|
|
499
|
+
getBarGroupHeight(eventsGroup: import('./types').TimelineEventsGroup): number;
|
|
497
500
|
updateMilestonesPositions(): void;
|
|
498
501
|
drawBarChartEventsGroups(): void;
|
|
499
502
|
drawProgressIndicator({ yPosition, type, isLoading, }: {
|
|
@@ -508,7 +511,7 @@ export declare const components: {
|
|
|
508
511
|
color: string;
|
|
509
512
|
height?: number | undefined;
|
|
510
513
|
}): void;
|
|
511
|
-
drawBars({ events, gElement, yPosition, color, type, dots, dotsSize, }: {
|
|
514
|
+
drawBars({ events, gElement, yPosition, color, type, dots, dotsSize, height, barBorderRadius, }: {
|
|
512
515
|
events: import('./types').TimelineEvent[];
|
|
513
516
|
gElement: import("d3-selection").Selection<SVGGElement, any, any, any>;
|
|
514
517
|
yPosition: number;
|
|
@@ -516,6 +519,8 @@ export declare const components: {
|
|
|
516
519
|
type: string;
|
|
517
520
|
dots?: boolean | undefined;
|
|
518
521
|
dotsSize?: number | undefined;
|
|
522
|
+
height?: number | undefined;
|
|
523
|
+
barBorderRadius?: number | undefined;
|
|
519
524
|
}): void;
|
|
520
525
|
drawBarsChart({ events, gElement, color, yOffset, type, index, }: {
|
|
521
526
|
events: import('./types').TimelineEvent[];
|
|
@@ -569,6 +574,7 @@ export declare const components: {
|
|
|
569
574
|
getSortedEvents(events: import('./types').TimelineEvent[]): import('./types').TimelineEvent[];
|
|
570
575
|
}, {
|
|
571
576
|
combinedBarsHeight: number;
|
|
577
|
+
combinedBottomBarsHeight: number;
|
|
572
578
|
combinedMilestonesHeight: number;
|
|
573
579
|
milestonesYOffset: number;
|
|
574
580
|
chartsYOffset: number;
|
|
@@ -615,12 +621,11 @@ export declare const components: {
|
|
|
615
621
|
barYPadding: number;
|
|
616
622
|
barXPadding: number;
|
|
617
623
|
chartMinHeight: number;
|
|
624
|
+
chartMinLabelHeight: number;
|
|
618
625
|
minZoom: number;
|
|
619
626
|
maxZoom: number;
|
|
620
627
|
minDate: string;
|
|
621
628
|
maxDate: string;
|
|
622
|
-
minVisibleDate: string;
|
|
623
|
-
maxVisibleDate: string;
|
|
624
629
|
cursorTimestamp: string | undefined;
|
|
625
630
|
selectedClass: string | undefined;
|
|
626
631
|
panOnDateClick: boolean;
|
|
@@ -630,10 +635,14 @@ export declare const components: {
|
|
|
630
635
|
markers: import('./types').TimelineMarker[];
|
|
631
636
|
stickyMarkers: boolean;
|
|
632
637
|
fitMarkersOnChange: boolean;
|
|
633
|
-
|
|
638
|
+
zoomToIntervalTransitionDuration: number;
|
|
634
639
|
zoomToBoundariesTransitionDuration: number;
|
|
635
640
|
milestoneBulletSize: number;
|
|
636
641
|
milestonesFirst: boolean;
|
|
642
|
+
forbiddenIntervals: import('./types').TimelineInterval[];
|
|
643
|
+
forbiddenIntervalColor: string;
|
|
644
|
+
focusedInterval: import('./types').TimelineInterval | undefined;
|
|
645
|
+
locked: boolean;
|
|
637
646
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
638
647
|
EVideoEmbed: import("vue").DefineComponent<{
|
|
639
648
|
videoUrl: {
|
|
@@ -678,6 +687,8 @@ export declare const components: {
|
|
|
678
687
|
iframeListeners: Partial<HTMLIFrameElement>;
|
|
679
688
|
iframeOptions: Record<string, any>;
|
|
680
689
|
}>;
|
|
690
|
+
EHeatmapBar: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, {}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
691
|
+
EHoursHeatmap: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, {}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
681
692
|
EToggleSwitch: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
682
693
|
value: any;
|
|
683
694
|
}, {
|
package/dist/src/types.d.ts
CHANGED
|
@@ -106,6 +106,8 @@ export type TimelineEventsGroup = {
|
|
|
106
106
|
milestonesDotSize?: number;
|
|
107
107
|
height?: number;
|
|
108
108
|
dotsSize?: number;
|
|
109
|
+
bottom?: boolean;
|
|
110
|
+
barBorderRadius?: number;
|
|
109
111
|
};
|
|
110
112
|
export type TimelineEventsByType = {
|
|
111
113
|
[eventsType: string]: TimelineEventsGroup;
|
|
@@ -128,5 +130,18 @@ export type TimelineMarker = {
|
|
|
128
130
|
maxDate?: string;
|
|
129
131
|
[key: string]: any;
|
|
130
132
|
};
|
|
133
|
+
export type TimelineInterval = {
|
|
134
|
+
startDate: Date | string | number;
|
|
135
|
+
endDate: Date | string | number;
|
|
136
|
+
};
|
|
137
|
+
export type HeatmapBarItem = {
|
|
138
|
+
name: string;
|
|
139
|
+
count: string;
|
|
140
|
+
value: string | number;
|
|
141
|
+
};
|
|
142
|
+
export type HoursHeatmapChartItem = {
|
|
143
|
+
count: number;
|
|
144
|
+
timestamp: Timestamp;
|
|
145
|
+
};
|
|
131
146
|
declare const _default: {};
|
|
132
147
|
export default _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}.e-transform-0[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}.e-transform-0[data-v-59c1a333]{transform-origin:0 0}.image-player-overlay{position:absolute;left:50%;top:50%;width:52px;height:52px;z-index:19;margin-left:-26px;margin-top:-26px;background:rgba(0,0,0,.5);border-radius:26px;-webkit-animation:overlay-fadeout .5s linear 1 normal forwards;animation:overlay-fadeout .5s linear 1 normal forwards;pointer-events:none}.image-player-overlay__wrapper{height:40px;width:40px}.image-player-overlay__wrapper>path{fill:#fff}@-webkit-keyframes overlay-fadeout{0%{opacity:1}to{opacity:0;-webkit-transform:scale(2);transform:scale(2)}}@keyframes overlay-fadeout{0%{opacity:1}to{opacity:0;-webkit-transform:scale(2);transform:scale(2)}}.spinner-container[data-v-1c971559]{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-1c971559]{position:relative;width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;margin:0 auto}.video-container.full-screen[data-v-1c971559]{max-width:initial;width:100%;max-height:100vh}video[data-v-1c971559]{width:100%;height:inherit}.video-controls-container[data-v-1c971559]{position:absolute;bottom:0;left:0;right:0;color:#fff;z-index:100;opacity:0;transition:opacity .15s ease-in-out}.hide[data-v-1c971559]{display:none}.video-controls-container[data-v-1c971559]: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-1c971559],.video-container:focus-within .video-controls-container[data-v-1c971559],.video-container.paused .video-controls-container[data-v-1c971559]{opacity:1}.video-controls-container .controls[data-v-1c971559]{display:flex;gap:.5rem;padding:.75rem 1rem;align-items:center;width:100%}.video-controls-container .controls button[data-v-1c971559]{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-1c971559]:hover{opacity:1}.duration-container[data-v-1c971559]{display:flex;align-items:center;gap:.25rem;flex-grow:1}.video-container.captions .captions-btn[data-v-1c971559]{border-bottom:3px solid red}.video-controls-container .controls button.wide-btn[data-v-1c971559]{width:50px}.timeline-container[data-v-1c971559]{width:100%;height:7px;margin-inline:.5rem;cursor:pointer;display:flex;align-items:center}.timeline[data-v-1c971559]{background-color:#64646480;height:3px;width:100%;position:relative}.timeline[data-v-1c971559]: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-1c971559]: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-1c971559]{--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-1c971559]{display:block}.video-container.scrubbing .timeline[data-v-1c971559]:before,.timeline-container:hover .timeline[data-v-1c971559]:before{display:block}.video-container.scrubbing .thumb-indicator[data-v-1c971559],.timeline-container:hover .thumb-indicator[data-v-1c971559]{--scale: 1}.video-container.scrubbing .timeline[data-v-1c971559],.timeline-container:hover .timeline[data-v-1c971559]{height:100%}.e-tl-milestone{position:absolute;border-radius:10em;box-sizing:border-box}.e-tl-milestone-content{cursor:pointer}.e-tl-milestone--bullet{transform:translate(-50%,-50%)}.e-tl-milestone--bullet .e-tl-milestone-content{opacity:0;width:0;height:0;white-space:nowrap;pointer-events:none;cursor:pointer}.e-tl-milestone--bullet.e-tl-milestone--hovered{cursor:pointer;min-height:26px;padding:0 8px;border-radius:.5em}.e-tl-milestone--bullet.e-tl-milestone--hovered .e-tl-milestone-content{opacity:1;font-size:small;font-weight:500;overflow:hidden;white-space:nowrap;text-overflow:ellipsis}.e-tl-milestone--bullet .e-tl-milestone-label{position:absolute;top:0;left:0;opacity:1;pointer-events:none;height:100%;width:100%}.e-tl-milestone--bullet.e-tl-milestone--hovered .e-tl-milestone-label{opacity:0}.e-tl-milestone--dot{transform:translateY(-50%)}.e-tl-milestone-dot--hovered .e-tl-milestone-dot-container{padding:0 3em;transform:translate(-50%);opacity:1}.e-tl-milestone-dot-line{position:absolute}.e-tl-milestone-dot-dot{position:absolute;border-radius:50%}.e-tl-milestone-dot-container{opacity:0;position:absolute;padding:0 .3em;transform:translate(-50%,-100%);cursor:pointer}.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}.event-bar-hover-zone{cursor:pointer}.external-labels-container{position:absolute;top:-1.5em;left:0}.external-label{margin-right:.35em;border-width:.5px;border-radius:.2em}.external-label__content{cursor:pointer;font-size:.8em;font-weight:500;padding:0 .6em;line-height:1.4em}.marker-label{transition:transform .2s;transform:translateY(-32px);position:absolute;width:max-content}.marker-label-text{position:absolute;width:max-content;font-size:.8em;font-weight:500;padding:0 .75em;border-radius:.4em .4em .4em 0;box-shadow:0 0 5px -1px #000000f5}.marker-label-text:after{content:"";background:inherit;width:5px;height:5px;bottom:-5px;position:absolute;left:2px;clip-path:path("M 0,5 L 0,0 L 5,0 A 5,5 0 0 0 0,5")}.marker-label-text:before{content:"";background:inherit;height:20px;top:18px;position:absolute;width:2px;left:0}.marker{top:0;filter:saturate(.9)}.marker-line{position:absolute;width:2px;top:-24px;transition:top .2s,height .2s}.marker:hover{cursor:pointer;opacity:1;filter:saturate(1.1)}.marker:hover .marker-label{transform:translateY(-38px);height:61px;width:255px;padding-bottom:42px}.marker:hover .marker-label-text{box-shadow:2px 2px 11px -4px #000}.marker--hidden:hover .marker-label{transform:translateY(-54px)}.marker--draggable,.marker--draggable:hover{user-select:none;cursor:grab}.marker--dragged:hover{cursor:grabbing}.forbidden-interval{opacity:.2}.e-timeline-milestones{height:0}.video-embed[data-v-0ecf4a71]{position:relative;width:100%!important;padding-bottom:56.25%}.video-embed iframe[data-v-0ecf4a71]{position:absolute;top:0;left:0;width:100%;height:100%}.e-heatmap-bar__label{white-space:nowrap;width:6rem;min-width:6rem}.e-heatmap-bar__item{height:16px;margin:2px;position:relative;cursor:pointer;border-radius:2px;min-width:0}.e-heatmap-bar__item:hover{box-shadow:0 0 0 1.5px #5c6d97}.e-heatmap-bar__item--selected{box-shadow:0 0 0 2px #151e3a}.e-heatmap-bar__item__count{font-size:12px;color:#fff;font-weight:500}.e-heatmap-bar__item__count--light{color:#0a214bbd}.e-heatmap-bar__item__name{position:absolute;top:-25px}.e-heatmap-bar:not(.e-heatmap-bar--dense) .e-heatmap-bar__item{min-width:35px}
|
package/dist/styles.css
CHANGED
|
@@ -249,6 +249,9 @@
|
|
|
249
249
|
.e-ml-8{
|
|
250
250
|
margin-left: 2rem;
|
|
251
251
|
}
|
|
252
|
+
.e-mr-2{
|
|
253
|
+
margin-right: 0.5rem;
|
|
254
|
+
}
|
|
252
255
|
.e-mt-2{
|
|
253
256
|
margin-top: 0.5rem;
|
|
254
257
|
}
|
|
@@ -826,6 +829,11 @@
|
|
|
826
829
|
.e-overflow-x-hidden{
|
|
827
830
|
overflow-x: hidden;
|
|
828
831
|
}
|
|
832
|
+
.e-truncate{
|
|
833
|
+
overflow: hidden;
|
|
834
|
+
text-overflow: ellipsis;
|
|
835
|
+
white-space: nowrap;
|
|
836
|
+
}
|
|
829
837
|
.e-rounded{
|
|
830
838
|
border-radius: 0.25rem;
|
|
831
839
|
}
|
package/dist/tags.json
CHANGED
|
@@ -87,12 +87,11 @@
|
|
|
87
87
|
"bar-ypadding",
|
|
88
88
|
"bar-xpadding",
|
|
89
89
|
"chart-min-height",
|
|
90
|
+
"chart-min-label-height",
|
|
90
91
|
"min-zoom",
|
|
91
92
|
"max-zoom",
|
|
92
93
|
"min-date",
|
|
93
94
|
"max-date",
|
|
94
|
-
"min-visible-date",
|
|
95
|
-
"max-visible-date",
|
|
96
95
|
"cursor-timestamp",
|
|
97
96
|
"selected-class",
|
|
98
97
|
"pan-on-date-click",
|
|
@@ -102,10 +101,37 @@
|
|
|
102
101
|
"markers",
|
|
103
102
|
"sticky-markers",
|
|
104
103
|
"fit-markers-on-change",
|
|
105
|
-
"
|
|
104
|
+
"zoom-to-interval-transition-duration",
|
|
106
105
|
"zoom-to-boundaries-transition-duration",
|
|
107
106
|
"milestone-bullet-size",
|
|
108
|
-
"milestones-first"
|
|
107
|
+
"milestones-first",
|
|
108
|
+
"forbidden-intervals",
|
|
109
|
+
"forbidden-interval-color",
|
|
110
|
+
"focused-interval",
|
|
111
|
+
"locked"
|
|
112
|
+
],
|
|
113
|
+
"description": ""
|
|
114
|
+
},
|
|
115
|
+
"EHeatmapBar": {
|
|
116
|
+
"attributes": [
|
|
117
|
+
"items",
|
|
118
|
+
"selected-value",
|
|
119
|
+
"show-counts",
|
|
120
|
+
"show-names",
|
|
121
|
+
"colors",
|
|
122
|
+
"label",
|
|
123
|
+
"dense"
|
|
124
|
+
],
|
|
125
|
+
"description": ""
|
|
126
|
+
},
|
|
127
|
+
"EHoursHeatmap": {
|
|
128
|
+
"attributes": [
|
|
129
|
+
"items",
|
|
130
|
+
"selected-hour",
|
|
131
|
+
"show-hours",
|
|
132
|
+
"colors",
|
|
133
|
+
"label",
|
|
134
|
+
"dense"
|
|
109
135
|
],
|
|
110
136
|
"description": ""
|
|
111
137
|
},
|