@evercam/ui 0.0.63-preview-copilot-error-message-4d7bd3ee7 → 0.0.63-preview-copilot-error-message-dba06869b
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 +0 -4
- package/dist/attributes.json +5 -4
- package/dist/components/charts/ECursor.vue.d.ts +67 -0
- package/dist/components/charts/ECursorBehavior.vue.d.ts +21 -0
- package/dist/components/timeline/ETimeline.vue.d.ts +4 -10
- package/dist/components/timeline/ETimelineCursor.vue.d.ts +9 -0
- package/dist/components/timeline/ETimelineSelectedTimestampCursor.vue.d.ts +9 -0
- package/dist/index.d.ts +4 -10
- package/dist/index.mjs +2482 -2291
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +18 -18
- package/dist/index.umd.js.map +1 -1
- package/dist/styles.css +0 -7
- package/dist/tags.json +2 -2
- package/dist/web-types.json +10 -13
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/attributes.json
CHANGED
|
@@ -362,10 +362,6 @@
|
|
|
362
362
|
"type": "string",
|
|
363
363
|
"description": ""
|
|
364
364
|
},
|
|
365
|
-
"ETimeline/cursor-timestamp": {
|
|
366
|
-
"type": "string|any",
|
|
367
|
-
"description": ""
|
|
368
|
-
},
|
|
369
365
|
"ETimeline/selected-class": {
|
|
370
366
|
"type": "string|any",
|
|
371
367
|
"description": ""
|
|
@@ -461,6 +457,11 @@
|
|
|
461
457
|
"description": "",
|
|
462
458
|
"default": 0
|
|
463
459
|
},
|
|
460
|
+
"ETimeline/show-cursor": {
|
|
461
|
+
"type": "boolean",
|
|
462
|
+
"description": "",
|
|
463
|
+
"default": true
|
|
464
|
+
},
|
|
464
465
|
"EVideoEmbed/video-url": {
|
|
465
466
|
"type": "string",
|
|
466
467
|
"description": ""
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import * as d3 from "d3";
|
|
2
|
+
import Vue from "vue";
|
|
3
|
+
import { Timestamp } from '../../types';
|
|
4
|
+
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>>, {
|
|
5
|
+
classNames: {
|
|
6
|
+
xAxis: string;
|
|
7
|
+
xAxisDark: string;
|
|
8
|
+
xAxisOverview: string;
|
|
9
|
+
xAxisDetailed: string;
|
|
10
|
+
xAxisBackground: string;
|
|
11
|
+
eventGroup: string;
|
|
12
|
+
eventGroupBg: string;
|
|
13
|
+
eventRect: string;
|
|
14
|
+
eventBarContainer: string;
|
|
15
|
+
eventBarContainerHovered: string;
|
|
16
|
+
eventBarContainerSelected: string;
|
|
17
|
+
eventBar: string;
|
|
18
|
+
eventBarHoverZone: string;
|
|
19
|
+
eventBarCap: string;
|
|
20
|
+
eventRectText: string;
|
|
21
|
+
eventRectHovered: string;
|
|
22
|
+
eventRectSelected: string;
|
|
23
|
+
labelGroup: string;
|
|
24
|
+
labelBg: string;
|
|
25
|
+
labelBgFill: string;
|
|
26
|
+
labelText: string;
|
|
27
|
+
loadingIndicator: string;
|
|
28
|
+
selectedTimestampCursor: string;
|
|
29
|
+
marker: string;
|
|
30
|
+
markerLabel: string;
|
|
31
|
+
markerLine: string;
|
|
32
|
+
markerDragged: string;
|
|
33
|
+
milestone: string;
|
|
34
|
+
milestoneBullet: string;
|
|
35
|
+
milestoneDot: string;
|
|
36
|
+
milestoneContent: string;
|
|
37
|
+
milestoneLine: string;
|
|
38
|
+
milestonesContainer: string;
|
|
39
|
+
milestoneHovered: string;
|
|
40
|
+
milestoneSelected: string;
|
|
41
|
+
milestoneLabel: string;
|
|
42
|
+
milestoneDotContainer: string;
|
|
43
|
+
milestoneDotLine: string;
|
|
44
|
+
milestoneDotDot: string;
|
|
45
|
+
milestoneDotHovered: string;
|
|
46
|
+
barChartGroup: string;
|
|
47
|
+
lineGraphGroup: string;
|
|
48
|
+
lineGraphGroupLabel: string;
|
|
49
|
+
lineGraphPath: string;
|
|
50
|
+
lineGraphHoverZone: string;
|
|
51
|
+
lineGraphDot: string;
|
|
52
|
+
curtain: string;
|
|
53
|
+
forbiddenInterval: string;
|
|
54
|
+
};
|
|
55
|
+
}, {
|
|
56
|
+
repositionCursor(): void;
|
|
57
|
+
tzStringToDate(timestamp: Timestamp): Date;
|
|
58
|
+
}, unknown, {
|
|
59
|
+
timeScale: d3.ScaleTime<any, any, unknown>;
|
|
60
|
+
timestamp: string;
|
|
61
|
+
timezone: string;
|
|
62
|
+
height: number;
|
|
63
|
+
color: string;
|
|
64
|
+
width: number;
|
|
65
|
+
opacity: number;
|
|
66
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
67
|
+
export default _default;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as d3 from "d3";
|
|
2
|
+
import Vue from "vue";
|
|
3
|
+
import { Timestamp } from '../../types';
|
|
4
|
+
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>>, {
|
|
5
|
+
cursor: d3.Selection<HTMLElement, any, any, any>;
|
|
6
|
+
hoveredTimestamp: string | undefined;
|
|
7
|
+
isHoveringTimeline: boolean;
|
|
8
|
+
}, {
|
|
9
|
+
registerEventsListeners(): void;
|
|
10
|
+
handleMouseLeave(): void;
|
|
11
|
+
handleMouseMove(event: MouseEvent): void;
|
|
12
|
+
handleClick(event: MouseEvent): void;
|
|
13
|
+
tzStringToDate(timestamp: Timestamp): Date;
|
|
14
|
+
dateToTzString(date: Date): string;
|
|
15
|
+
}, unknown, {
|
|
16
|
+
timeScale: d3.ScaleTime<any, any, unknown>;
|
|
17
|
+
timezone: string;
|
|
18
|
+
minHoverZone: number;
|
|
19
|
+
isHoveringMilestone: boolean;
|
|
20
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
21
|
+
export default _default;
|
|
@@ -4,10 +4,8 @@ import { TimelineCountEvent, TimelineEvent, TimelineEventsByType, TimelineEvents
|
|
|
4
4
|
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>>, {
|
|
5
5
|
mainContainer: HTMLElement;
|
|
6
6
|
tooltip: HTMLElement;
|
|
7
|
-
cursor: HTMLElement;
|
|
8
7
|
timeline: HTMLElement;
|
|
9
8
|
wrapperDiv: HTMLElement;
|
|
10
|
-
selectedTimestampCursor: HTMLElement;
|
|
11
9
|
svgElement: SVGSVGElement;
|
|
12
10
|
svg: d3.Selection<SVGSVGElement, any, any, any>;
|
|
13
11
|
timeScale: d3.ScaleTime<any, any, unknown>;
|
|
@@ -15,8 +13,6 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
15
13
|
axisHeight: number;
|
|
16
14
|
isHoveringEvent: boolean;
|
|
17
15
|
hoveredEvent: TimelineEvent;
|
|
18
|
-
isHoveringTimeline: boolean;
|
|
19
|
-
hoveredTimestamp: string;
|
|
20
16
|
eventTooltipStyle: {};
|
|
21
17
|
hoveredEventType: string;
|
|
22
18
|
utcOffset: number;
|
|
@@ -61,23 +57,20 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
61
57
|
initYScale(): void;
|
|
62
58
|
updateYScale(): void;
|
|
63
59
|
zoomToFitMarkers(): void;
|
|
64
|
-
initSelectedTimestampCursor(): void;
|
|
65
60
|
selectOrAppend({ parent, targetId, targetType, }: {
|
|
66
61
|
parent: d3.Selection<any, any, any, any>;
|
|
67
62
|
targetId: string;
|
|
68
63
|
targetType: string;
|
|
69
64
|
}): d3.Selection<d3.BaseType, any, any, any>;
|
|
70
65
|
clearTimeline(): void;
|
|
71
|
-
repositionSelectedTimestampCursor(): void;
|
|
72
66
|
updateCurrentTimeScaleDensity(): void;
|
|
73
|
-
registerEventsListeners(): void;
|
|
74
67
|
emitVisibleInterval(trigger: TimelineIntervalChangeTrigger): void;
|
|
75
68
|
onResize(resizeObserverEntry: ResizeObserverEntry): void;
|
|
76
69
|
handleResize({ contentRect }: ResizeObserverEntry): void;
|
|
77
70
|
handleDarkModeChange(): void;
|
|
78
71
|
handleMouseLeave(): void;
|
|
79
|
-
handleMouseMove(
|
|
80
|
-
handleClick(
|
|
72
|
+
handleMouseMove(mouseX: number, timestamp: string): void;
|
|
73
|
+
handleClick(timestamp: string, target: HTMLElement): void;
|
|
81
74
|
handleMarkerClick(marker: TimelineMarker): void;
|
|
82
75
|
handleLineMouseOver(_event: MouseEvent, eventData: TimelineCountEvent, eventType: string): void;
|
|
83
76
|
handleLineMouseOut(): void;
|
|
@@ -247,6 +240,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
247
240
|
domain: TimelineDomain;
|
|
248
241
|
svgLeft: number;
|
|
249
242
|
markersScopedSlots: Record<string, Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>>;
|
|
243
|
+
isHoveringMilestone: Boolean;
|
|
250
244
|
}, {
|
|
251
245
|
eventsGroups: {};
|
|
252
246
|
dark: boolean;
|
|
@@ -267,7 +261,6 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
267
261
|
chartMinLabelHeight: number;
|
|
268
262
|
minDate: string;
|
|
269
263
|
maxDate: string;
|
|
270
|
-
cursorTimestamp: string | undefined;
|
|
271
264
|
selectedClass: string | undefined;
|
|
272
265
|
panOnDateClick: boolean;
|
|
273
266
|
panTransitionDuration: number;
|
|
@@ -288,5 +281,6 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
288
281
|
stopClickPropagation: boolean;
|
|
289
282
|
tooltipPosition: string;
|
|
290
283
|
maxDomainPadding: number;
|
|
284
|
+
showCursor: boolean;
|
|
291
285
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
292
286
|
export default _default;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as d3 from "d3";
|
|
2
|
+
import Vue from "vue";
|
|
3
|
+
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>>, unknown, unknown, unknown, {
|
|
4
|
+
timeScale: d3.ScaleTime<any, any, unknown>;
|
|
5
|
+
selectedTimestamp: string;
|
|
6
|
+
timezone: string;
|
|
7
|
+
height: number;
|
|
8
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
9
|
+
export default _default;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import * as d3 from "d3";
|
|
2
|
+
import Vue from "vue";
|
|
3
|
+
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>>, unknown, unknown, unknown, {
|
|
4
|
+
timeScale: d3.ScaleTime<any, any, unknown>;
|
|
5
|
+
selectedTimestamp: string;
|
|
6
|
+
timezone: string;
|
|
7
|
+
height: number;
|
|
8
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
9
|
+
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -224,10 +224,8 @@ export declare const components: {
|
|
|
224
224
|
ETimeline: 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>>, {
|
|
225
225
|
mainContainer: HTMLElement;
|
|
226
226
|
tooltip: HTMLElement;
|
|
227
|
-
cursor: HTMLElement;
|
|
228
227
|
timeline: HTMLElement;
|
|
229
228
|
wrapperDiv: HTMLElement;
|
|
230
|
-
selectedTimestampCursor: HTMLElement;
|
|
231
229
|
svgElement: SVGSVGElement;
|
|
232
230
|
svg: import("d3-selection").Selection<SVGSVGElement, any, any, any>;
|
|
233
231
|
timeScale: import("d3-scale").ScaleTime<any, any, unknown>;
|
|
@@ -235,8 +233,6 @@ export declare const components: {
|
|
|
235
233
|
axisHeight: number;
|
|
236
234
|
isHoveringEvent: boolean;
|
|
237
235
|
hoveredEvent: import('./types').TimelineEvent;
|
|
238
|
-
isHoveringTimeline: boolean;
|
|
239
|
-
hoveredTimestamp: string;
|
|
240
236
|
eventTooltipStyle: {};
|
|
241
237
|
hoveredEventType: string;
|
|
242
238
|
utcOffset: number;
|
|
@@ -281,23 +277,20 @@ export declare const components: {
|
|
|
281
277
|
initYScale(): void;
|
|
282
278
|
updateYScale(): void;
|
|
283
279
|
zoomToFitMarkers(): void;
|
|
284
|
-
initSelectedTimestampCursor(): void;
|
|
285
280
|
selectOrAppend({ parent, targetId, targetType, }: {
|
|
286
281
|
parent: import("d3-selection").Selection<any, any, any, any>;
|
|
287
282
|
targetId: string;
|
|
288
283
|
targetType: string;
|
|
289
284
|
}): import("d3-selection").Selection<import("d3-selection").BaseType, any, any, any>;
|
|
290
285
|
clearTimeline(): void;
|
|
291
|
-
repositionSelectedTimestampCursor(): void;
|
|
292
286
|
updateCurrentTimeScaleDensity(): void;
|
|
293
|
-
registerEventsListeners(): void;
|
|
294
287
|
emitVisibleInterval(trigger: import('./types').TimelineIntervalChangeTrigger): void;
|
|
295
288
|
onResize(resizeObserverEntry: ResizeObserverEntry): void;
|
|
296
289
|
handleResize({ contentRect }: ResizeObserverEntry): void;
|
|
297
290
|
handleDarkModeChange(): void;
|
|
298
291
|
handleMouseLeave(): void;
|
|
299
|
-
handleMouseMove(
|
|
300
|
-
handleClick(
|
|
292
|
+
handleMouseMove(mouseX: number, timestamp: string): void;
|
|
293
|
+
handleClick(timestamp: string, target: HTMLElement): void;
|
|
301
294
|
handleMarkerClick(marker: import('./types').TimelineMarker): void;
|
|
302
295
|
handleLineMouseOver(_event: MouseEvent, eventData: import('./types').TimelineCountEvent, eventType: string): void;
|
|
303
296
|
handleLineMouseOut(): void;
|
|
@@ -467,6 +460,7 @@ export declare const components: {
|
|
|
467
460
|
domain: import('./types').TimelineDomain;
|
|
468
461
|
svgLeft: number;
|
|
469
462
|
markersScopedSlots: Record<string, 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>>>;
|
|
463
|
+
isHoveringMilestone: Boolean;
|
|
470
464
|
}, {
|
|
471
465
|
eventsGroups: {};
|
|
472
466
|
dark: boolean;
|
|
@@ -487,7 +481,6 @@ export declare const components: {
|
|
|
487
481
|
chartMinLabelHeight: number;
|
|
488
482
|
minDate: string;
|
|
489
483
|
maxDate: string;
|
|
490
|
-
cursorTimestamp: string | undefined;
|
|
491
484
|
selectedClass: string | undefined;
|
|
492
485
|
panOnDateClick: boolean;
|
|
493
486
|
panTransitionDuration: number;
|
|
@@ -508,6 +501,7 @@ export declare const components: {
|
|
|
508
501
|
stopClickPropagation: boolean;
|
|
509
502
|
tooltipPosition: string;
|
|
510
503
|
maxDomainPadding: number;
|
|
504
|
+
showCursor: boolean;
|
|
511
505
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
512
506
|
EVideoEmbed: 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>>, unknown, unknown, {
|
|
513
507
|
videoId: string | undefined;
|