@evercam/ui 0.0.63-preview-copilot-error-message-4d7bd3ee7 → 0.0.63-preview-copilot-timelapse-c5b10831a
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 -3
- package/dist/attributes.json +23 -4
- package/dist/components/EHeatmapBar.vue.d.ts +13 -2
- package/dist/components/EVideoPlayer.vue.d.ts +0 -1
- package/dist/components/charts/ECursor.vue.d.ts +67 -0
- package/dist/components/charts/ECursorBehavior.vue.d.ts +21 -0
- package/dist/components/chat/EChat.vue.d.ts +3 -0
- package/dist/components/chat/EChatMessage.vue.d.ts +1 -0
- package/dist/components/chat/EMarkdown.vue.d.ts +1 -0
- package/dist/components/chat/MarkdownProcessor.d.ts +6 -1
- 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 +20 -13
- package/dist/index.mjs +2896 -2634
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +23 -18
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/styles.css +0 -7
- package/dist/tags.json +8 -4
- package/dist/types.d.ts +2 -0
- package/dist/utils.d.ts +1 -0
- package/dist/web-types.json +47 -14
- 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": ""
|
|
@@ -491,6 +492,11 @@
|
|
|
491
492
|
"description": "",
|
|
492
493
|
"default": true
|
|
493
494
|
},
|
|
495
|
+
"EHeatmapBar/names-only": {
|
|
496
|
+
"type": "boolean",
|
|
497
|
+
"description": "",
|
|
498
|
+
"default": false
|
|
499
|
+
},
|
|
494
500
|
"EHeatmapBar/show-names": {
|
|
495
501
|
"type": "boolean",
|
|
496
502
|
"description": "",
|
|
@@ -500,6 +506,10 @@
|
|
|
500
506
|
"type": "array",
|
|
501
507
|
"description": ""
|
|
502
508
|
},
|
|
509
|
+
"EHeatmapBar/colors-dark": {
|
|
510
|
+
"type": "array",
|
|
511
|
+
"description": ""
|
|
512
|
+
},
|
|
503
513
|
"EHeatmapBar/label": {
|
|
504
514
|
"type": "string",
|
|
505
515
|
"description": "",
|
|
@@ -510,6 +520,11 @@
|
|
|
510
520
|
"description": "",
|
|
511
521
|
"default": false
|
|
512
522
|
},
|
|
523
|
+
"EHeatmapBar/dark": {
|
|
524
|
+
"type": "boolean",
|
|
525
|
+
"description": "",
|
|
526
|
+
"default": false
|
|
527
|
+
},
|
|
513
528
|
"EHoursHeatmap/items": {
|
|
514
529
|
"type": "array",
|
|
515
530
|
"description": ""
|
|
@@ -1070,6 +1085,10 @@
|
|
|
1070
1085
|
"type": "array",
|
|
1071
1086
|
"description": ""
|
|
1072
1087
|
},
|
|
1088
|
+
"EChat/e-markdown-props": {
|
|
1089
|
+
"type": "object",
|
|
1090
|
+
"description": ""
|
|
1091
|
+
},
|
|
1073
1092
|
"ECopyToClipboardBtn/text": {
|
|
1074
1093
|
"type": "function|string|number",
|
|
1075
1094
|
"description": ""
|
|
@@ -1,21 +1,32 @@
|
|
|
1
1
|
import Vue from "vue";
|
|
2
2
|
import { HeatmapBarItem } from '../types';
|
|
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>>,
|
|
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>>, {}, {
|
|
4
4
|
getColorIndex(count: number): number;
|
|
5
5
|
getColor(count: number): string;
|
|
6
6
|
getItemStyle(count: number): {
|
|
7
7
|
background: string;
|
|
8
8
|
};
|
|
9
|
+
getItemClasses(itemClass: string | Record<string, boolean>): Record<string, boolean>;
|
|
10
|
+
getCountTextStyle(count: number): {
|
|
11
|
+
color: string;
|
|
12
|
+
};
|
|
13
|
+
adjustColorBrightness(color: string, amount: number): string;
|
|
14
|
+
getContrastingPaletteColor(backgroundColor: string): string;
|
|
9
15
|
}, {
|
|
10
16
|
heatMapBarItems: HeatmapBarItem[];
|
|
11
17
|
maxCount: number;
|
|
18
|
+
computedColors: string[];
|
|
19
|
+
textColor: Record<string, string>;
|
|
12
20
|
}, {
|
|
13
21
|
items: unknown[];
|
|
14
22
|
selectedValue: string | number;
|
|
15
23
|
showCounts: boolean;
|
|
24
|
+
namesOnly: boolean;
|
|
16
25
|
showNames: boolean;
|
|
17
|
-
colors:
|
|
26
|
+
colors: string[];
|
|
27
|
+
colorsDark: string[];
|
|
18
28
|
label: string;
|
|
19
29
|
dense: boolean;
|
|
30
|
+
dark: boolean;
|
|
20
31
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
21
32
|
export default _default;
|
|
@@ -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;
|
|
@@ -45,5 +45,8 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
45
45
|
loadingMessage: string;
|
|
46
46
|
suggestions: ChatSuggestion[];
|
|
47
47
|
exposedRegexes: EMarkdownRegex[];
|
|
48
|
+
eMarkdownProps: Record<string, unknown> | {
|
|
49
|
+
useTableProcessor: boolean;
|
|
50
|
+
};
|
|
48
51
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
49
52
|
export default _default;
|
|
@@ -28,6 +28,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
28
28
|
loadingMessage: string;
|
|
29
29
|
exposedRegexes: EMarkdownRegex[];
|
|
30
30
|
animated: boolean;
|
|
31
|
+
eMarkdownProps: {};
|
|
31
32
|
}, {}, 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>>, {
|
|
32
33
|
timeouts: number[];
|
|
33
34
|
}, {
|
|
@@ -22,5 +22,6 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
22
22
|
exposedRegexes: EMarkdownRegex[];
|
|
23
23
|
animated: boolean;
|
|
24
24
|
dark: boolean;
|
|
25
|
+
useTableProcessor: boolean;
|
|
25
26
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
26
27
|
export default _default;
|
|
@@ -19,6 +19,7 @@ export declare class MarkdownProcessor {
|
|
|
19
19
|
tableId: number;
|
|
20
20
|
rowId: number;
|
|
21
21
|
animated: boolean;
|
|
22
|
+
useTableProcessor: boolean;
|
|
22
23
|
onAnimationStart: () => void;
|
|
23
24
|
onAnimationEnd: () => void;
|
|
24
25
|
typewriter: Typewriter | null;
|
|
@@ -30,11 +31,15 @@ export declare class MarkdownProcessor {
|
|
|
30
31
|
animated?: boolean;
|
|
31
32
|
onAnimationStart?: () => void;
|
|
32
33
|
onAnimationEnd?: () => void;
|
|
34
|
+
useTableProcessor?: boolean;
|
|
33
35
|
});
|
|
34
36
|
initProcessor(): void;
|
|
35
37
|
remarkCheckIncompleteTableRows(): (tree: UnistNode) => void;
|
|
36
38
|
setIsRenderingTable(v: boolean): void;
|
|
37
|
-
|
|
39
|
+
startNewRenderingCycle(): void;
|
|
40
|
+
extractTableHeaderString(node: UnistParent): string;
|
|
41
|
+
processMarkdown(newMarkdown: string): Promise<boolean>;
|
|
42
|
+
handleNewMarkdown(newMarkdown: string): Promise<string>;
|
|
38
43
|
render(processedHtml: string): Promise<void>;
|
|
39
44
|
updateTableContent(processedHtml: string): void;
|
|
40
45
|
processTextNode(node: UnistNode, nodeIndex: number, parent: UnistParent, regex: RegExp, type: string): void;
|
|
@@ -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
|
@@ -197,7 +197,6 @@ export declare const components: {
|
|
|
197
197
|
}, {
|
|
198
198
|
posterUrl: string;
|
|
199
199
|
sourceItems: import('./components/EVideoPlayer.vue').VideoSource[];
|
|
200
|
-
hasStartedOrFinished: boolean;
|
|
201
200
|
withControls: "" | "hide";
|
|
202
201
|
}, {
|
|
203
202
|
targetTimestamp: string;
|
|
@@ -224,10 +223,8 @@ export declare const components: {
|
|
|
224
223
|
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
224
|
mainContainer: HTMLElement;
|
|
226
225
|
tooltip: HTMLElement;
|
|
227
|
-
cursor: HTMLElement;
|
|
228
226
|
timeline: HTMLElement;
|
|
229
227
|
wrapperDiv: HTMLElement;
|
|
230
|
-
selectedTimestampCursor: HTMLElement;
|
|
231
228
|
svgElement: SVGSVGElement;
|
|
232
229
|
svg: import("d3-selection").Selection<SVGSVGElement, any, any, any>;
|
|
233
230
|
timeScale: import("d3-scale").ScaleTime<any, any, unknown>;
|
|
@@ -235,8 +232,6 @@ export declare const components: {
|
|
|
235
232
|
axisHeight: number;
|
|
236
233
|
isHoveringEvent: boolean;
|
|
237
234
|
hoveredEvent: import('./types').TimelineEvent;
|
|
238
|
-
isHoveringTimeline: boolean;
|
|
239
|
-
hoveredTimestamp: string;
|
|
240
235
|
eventTooltipStyle: {};
|
|
241
236
|
hoveredEventType: string;
|
|
242
237
|
utcOffset: number;
|
|
@@ -281,23 +276,20 @@ export declare const components: {
|
|
|
281
276
|
initYScale(): void;
|
|
282
277
|
updateYScale(): void;
|
|
283
278
|
zoomToFitMarkers(): void;
|
|
284
|
-
initSelectedTimestampCursor(): void;
|
|
285
279
|
selectOrAppend({ parent, targetId, targetType, }: {
|
|
286
280
|
parent: import("d3-selection").Selection<any, any, any, any>;
|
|
287
281
|
targetId: string;
|
|
288
282
|
targetType: string;
|
|
289
283
|
}): import("d3-selection").Selection<import("d3-selection").BaseType, any, any, any>;
|
|
290
284
|
clearTimeline(): void;
|
|
291
|
-
repositionSelectedTimestampCursor(): void;
|
|
292
285
|
updateCurrentTimeScaleDensity(): void;
|
|
293
|
-
registerEventsListeners(): void;
|
|
294
286
|
emitVisibleInterval(trigger: import('./types').TimelineIntervalChangeTrigger): void;
|
|
295
287
|
onResize(resizeObserverEntry: ResizeObserverEntry): void;
|
|
296
288
|
handleResize({ contentRect }: ResizeObserverEntry): void;
|
|
297
289
|
handleDarkModeChange(): void;
|
|
298
290
|
handleMouseLeave(): void;
|
|
299
|
-
handleMouseMove(
|
|
300
|
-
handleClick(
|
|
291
|
+
handleMouseMove(mouseX: number, timestamp: string): void;
|
|
292
|
+
handleClick(timestamp: string, target: HTMLElement): void;
|
|
301
293
|
handleMarkerClick(marker: import('./types').TimelineMarker): void;
|
|
302
294
|
handleLineMouseOver(_event: MouseEvent, eventData: import('./types').TimelineCountEvent, eventType: string): void;
|
|
303
295
|
handleLineMouseOut(): void;
|
|
@@ -467,6 +459,7 @@ export declare const components: {
|
|
|
467
459
|
domain: import('./types').TimelineDomain;
|
|
468
460
|
svgLeft: number;
|
|
469
461
|
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>>>;
|
|
462
|
+
isHoveringMilestone: Boolean;
|
|
470
463
|
}, {
|
|
471
464
|
eventsGroups: {};
|
|
472
465
|
dark: boolean;
|
|
@@ -487,7 +480,6 @@ export declare const components: {
|
|
|
487
480
|
chartMinLabelHeight: number;
|
|
488
481
|
minDate: string;
|
|
489
482
|
maxDate: string;
|
|
490
|
-
cursorTimestamp: string | undefined;
|
|
491
483
|
selectedClass: string | undefined;
|
|
492
484
|
panOnDateClick: boolean;
|
|
493
485
|
panTransitionDuration: number;
|
|
@@ -508,6 +500,7 @@ export declare const components: {
|
|
|
508
500
|
stopClickPropagation: boolean;
|
|
509
501
|
tooltipPosition: string;
|
|
510
502
|
maxDomainPadding: number;
|
|
503
|
+
showCursor: boolean;
|
|
511
504
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
512
505
|
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
506
|
videoId: string | undefined;
|
|
@@ -518,23 +511,34 @@ export declare const components: {
|
|
|
518
511
|
iframeListeners: {};
|
|
519
512
|
iframeOptions: any;
|
|
520
513
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
521
|
-
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>>,
|
|
514
|
+
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>>, {}, {
|
|
522
515
|
getColorIndex(count: number): number;
|
|
523
516
|
getColor(count: number): string;
|
|
524
517
|
getItemStyle(count: number): {
|
|
525
518
|
background: string;
|
|
526
519
|
};
|
|
520
|
+
getItemClasses(itemClass: string | Record<string, boolean>): Record<string, boolean>;
|
|
521
|
+
getCountTextStyle(count: number): {
|
|
522
|
+
color: string;
|
|
523
|
+
};
|
|
524
|
+
adjustColorBrightness(color: string, amount: number): string;
|
|
525
|
+
getContrastingPaletteColor(backgroundColor: string): string;
|
|
527
526
|
}, {
|
|
528
527
|
heatMapBarItems: import('./types').HeatmapBarItem[];
|
|
529
528
|
maxCount: number;
|
|
529
|
+
computedColors: string[];
|
|
530
|
+
textColor: Record<string, string>;
|
|
530
531
|
}, {
|
|
531
532
|
items: unknown[];
|
|
532
533
|
selectedValue: string | number;
|
|
533
534
|
showCounts: boolean;
|
|
535
|
+
namesOnly: boolean;
|
|
534
536
|
showNames: boolean;
|
|
535
|
-
colors:
|
|
537
|
+
colors: string[];
|
|
538
|
+
colorsDark: string[];
|
|
536
539
|
label: string;
|
|
537
540
|
dense: boolean;
|
|
541
|
+
dark: boolean;
|
|
538
542
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
539
543
|
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>>, unknown, {
|
|
540
544
|
getFormattedHour(h: number): string;
|
|
@@ -1122,6 +1126,9 @@ export declare const components: {
|
|
|
1122
1126
|
loadingMessage: string;
|
|
1123
1127
|
suggestions: import('./types').ChatSuggestion[];
|
|
1124
1128
|
exposedRegexes: import('./types').EMarkdownRegex[];
|
|
1129
|
+
eMarkdownProps: Record<string, unknown> | {
|
|
1130
|
+
useTableProcessor: boolean;
|
|
1131
|
+
};
|
|
1125
1132
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
1126
1133
|
EContextProvider: any;
|
|
1127
1134
|
ECopyToClipboardBtn: 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>>, {
|