@evercam/ui 0.0.63-preview-add-etimelinecursor-component-2ccba811d → 0.0.63-preview-copilot-error-message-4d7bd3ee7
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 +3 -1
- package/dist/attributes.json +4 -5
- package/dist/components/chat/EChatMessage.vue.d.ts +2 -1
- package/dist/components/chat/EChatMessageActions.vue.d.ts +2 -0
- package/dist/components/timeline/ETimeline.vue.d.ts +10 -4
- package/dist/index.d.ts +10 -4
- package/dist/index.mjs +2264 -2430
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +18 -18
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/styles.css +14 -0
- package/dist/tags.json +2 -2
- package/dist/types.d.ts +2 -1
- package/dist/web-types.json +13 -10
- package/package.json +1 -1
- package/dist/components/charts/ECursor.vue.d.ts +0 -67
- package/dist/components/charts/ECursorBehavior.vue.d.ts +0 -21
- package/dist/components/timeline/ETimelineCursor.vue.d.ts +0 -9
- package/dist/components/timeline/ETimelineSelectedTimestampCursor.vue.d.ts +0 -9
package/README.md
CHANGED
package/dist/attributes.json
CHANGED
|
@@ -362,6 +362,10 @@
|
|
|
362
362
|
"type": "string",
|
|
363
363
|
"description": ""
|
|
364
364
|
},
|
|
365
|
+
"ETimeline/cursor-timestamp": {
|
|
366
|
+
"type": "string|any",
|
|
367
|
+
"description": ""
|
|
368
|
+
},
|
|
365
369
|
"ETimeline/selected-class": {
|
|
366
370
|
"type": "string|any",
|
|
367
371
|
"description": ""
|
|
@@ -457,11 +461,6 @@
|
|
|
457
461
|
"description": "",
|
|
458
462
|
"default": 0
|
|
459
463
|
},
|
|
460
|
-
"ETimeline/show-cursor": {
|
|
461
|
-
"type": "boolean",
|
|
462
|
-
"description": "",
|
|
463
|
-
"default": true
|
|
464
|
-
},
|
|
465
464
|
"EVideoEmbed/video-url": {
|
|
466
465
|
"type": "string",
|
|
467
466
|
"description": ""
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import Vue from "vue";
|
|
2
|
-
import { ChatMessageRole, EMarkdownRegex, Feedback } from '../../types';
|
|
2
|
+
import { ChatMessageRole, EMarkdownRegex, Feedback, ChatMessageType } from '../../types';
|
|
3
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
|
showActions: boolean;
|
|
5
5
|
nextChunks: string[];
|
|
@@ -19,6 +19,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
19
19
|
message: string | string[];
|
|
20
20
|
isLoading: boolean;
|
|
21
21
|
avatarSrc: string;
|
|
22
|
+
type: ChatMessageType;
|
|
22
23
|
showAvatar: boolean;
|
|
23
24
|
dark: boolean;
|
|
24
25
|
withActions: boolean;
|
|
@@ -8,10 +8,12 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
8
8
|
openFeedbackDialog(): void;
|
|
9
9
|
}, {
|
|
10
10
|
messageText: string;
|
|
11
|
+
eButtonClasses: Record<string, boolean>;
|
|
11
12
|
}, {
|
|
12
13
|
message: string | string[];
|
|
13
14
|
dark: boolean;
|
|
14
15
|
showCopyButton: boolean;
|
|
15
16
|
showFeedbackButtons: boolean;
|
|
17
|
+
messageId: string | number;
|
|
16
18
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
17
19
|
export default _default;
|
|
@@ -4,8 +4,10 @@ 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;
|
|
7
8
|
timeline: HTMLElement;
|
|
8
9
|
wrapperDiv: HTMLElement;
|
|
10
|
+
selectedTimestampCursor: HTMLElement;
|
|
9
11
|
svgElement: SVGSVGElement;
|
|
10
12
|
svg: d3.Selection<SVGSVGElement, any, any, any>;
|
|
11
13
|
timeScale: d3.ScaleTime<any, any, unknown>;
|
|
@@ -13,6 +15,8 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
13
15
|
axisHeight: number;
|
|
14
16
|
isHoveringEvent: boolean;
|
|
15
17
|
hoveredEvent: TimelineEvent;
|
|
18
|
+
isHoveringTimeline: boolean;
|
|
19
|
+
hoveredTimestamp: string;
|
|
16
20
|
eventTooltipStyle: {};
|
|
17
21
|
hoveredEventType: string;
|
|
18
22
|
utcOffset: number;
|
|
@@ -57,20 +61,23 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
57
61
|
initYScale(): void;
|
|
58
62
|
updateYScale(): void;
|
|
59
63
|
zoomToFitMarkers(): void;
|
|
64
|
+
initSelectedTimestampCursor(): void;
|
|
60
65
|
selectOrAppend({ parent, targetId, targetType, }: {
|
|
61
66
|
parent: d3.Selection<any, any, any, any>;
|
|
62
67
|
targetId: string;
|
|
63
68
|
targetType: string;
|
|
64
69
|
}): d3.Selection<d3.BaseType, any, any, any>;
|
|
65
70
|
clearTimeline(): void;
|
|
71
|
+
repositionSelectedTimestampCursor(): void;
|
|
66
72
|
updateCurrentTimeScaleDensity(): void;
|
|
73
|
+
registerEventsListeners(): void;
|
|
67
74
|
emitVisibleInterval(trigger: TimelineIntervalChangeTrigger): void;
|
|
68
75
|
onResize(resizeObserverEntry: ResizeObserverEntry): void;
|
|
69
76
|
handleResize({ contentRect }: ResizeObserverEntry): void;
|
|
70
77
|
handleDarkModeChange(): void;
|
|
71
78
|
handleMouseLeave(): void;
|
|
72
|
-
handleMouseMove(
|
|
73
|
-
handleClick(
|
|
79
|
+
handleMouseMove(event: MouseEvent): void;
|
|
80
|
+
handleClick(event: MouseEvent): void;
|
|
74
81
|
handleMarkerClick(marker: TimelineMarker): void;
|
|
75
82
|
handleLineMouseOver(_event: MouseEvent, eventData: TimelineCountEvent, eventType: string): void;
|
|
76
83
|
handleLineMouseOut(): void;
|
|
@@ -240,7 +247,6 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
240
247
|
domain: TimelineDomain;
|
|
241
248
|
svgLeft: number;
|
|
242
249
|
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;
|
|
244
250
|
}, {
|
|
245
251
|
eventsGroups: {};
|
|
246
252
|
dark: boolean;
|
|
@@ -261,6 +267,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
261
267
|
chartMinLabelHeight: number;
|
|
262
268
|
minDate: string;
|
|
263
269
|
maxDate: string;
|
|
270
|
+
cursorTimestamp: string | undefined;
|
|
264
271
|
selectedClass: string | undefined;
|
|
265
272
|
panOnDateClick: boolean;
|
|
266
273
|
panTransitionDuration: number;
|
|
@@ -281,6 +288,5 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
281
288
|
stopClickPropagation: boolean;
|
|
282
289
|
tooltipPosition: string;
|
|
283
290
|
maxDomainPadding: number;
|
|
284
|
-
showCursor: boolean;
|
|
285
291
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
286
292
|
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -224,8 +224,10 @@ 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;
|
|
227
228
|
timeline: HTMLElement;
|
|
228
229
|
wrapperDiv: HTMLElement;
|
|
230
|
+
selectedTimestampCursor: HTMLElement;
|
|
229
231
|
svgElement: SVGSVGElement;
|
|
230
232
|
svg: import("d3-selection").Selection<SVGSVGElement, any, any, any>;
|
|
231
233
|
timeScale: import("d3-scale").ScaleTime<any, any, unknown>;
|
|
@@ -233,6 +235,8 @@ export declare const components: {
|
|
|
233
235
|
axisHeight: number;
|
|
234
236
|
isHoveringEvent: boolean;
|
|
235
237
|
hoveredEvent: import('./types').TimelineEvent;
|
|
238
|
+
isHoveringTimeline: boolean;
|
|
239
|
+
hoveredTimestamp: string;
|
|
236
240
|
eventTooltipStyle: {};
|
|
237
241
|
hoveredEventType: string;
|
|
238
242
|
utcOffset: number;
|
|
@@ -277,20 +281,23 @@ export declare const components: {
|
|
|
277
281
|
initYScale(): void;
|
|
278
282
|
updateYScale(): void;
|
|
279
283
|
zoomToFitMarkers(): void;
|
|
284
|
+
initSelectedTimestampCursor(): void;
|
|
280
285
|
selectOrAppend({ parent, targetId, targetType, }: {
|
|
281
286
|
parent: import("d3-selection").Selection<any, any, any, any>;
|
|
282
287
|
targetId: string;
|
|
283
288
|
targetType: string;
|
|
284
289
|
}): import("d3-selection").Selection<import("d3-selection").BaseType, any, any, any>;
|
|
285
290
|
clearTimeline(): void;
|
|
291
|
+
repositionSelectedTimestampCursor(): void;
|
|
286
292
|
updateCurrentTimeScaleDensity(): void;
|
|
293
|
+
registerEventsListeners(): void;
|
|
287
294
|
emitVisibleInterval(trigger: import('./types').TimelineIntervalChangeTrigger): void;
|
|
288
295
|
onResize(resizeObserverEntry: ResizeObserverEntry): void;
|
|
289
296
|
handleResize({ contentRect }: ResizeObserverEntry): void;
|
|
290
297
|
handleDarkModeChange(): void;
|
|
291
298
|
handleMouseLeave(): void;
|
|
292
|
-
handleMouseMove(
|
|
293
|
-
handleClick(
|
|
299
|
+
handleMouseMove(event: MouseEvent): void;
|
|
300
|
+
handleClick(event: MouseEvent): void;
|
|
294
301
|
handleMarkerClick(marker: import('./types').TimelineMarker): void;
|
|
295
302
|
handleLineMouseOver(_event: MouseEvent, eventData: import('./types').TimelineCountEvent, eventType: string): void;
|
|
296
303
|
handleLineMouseOut(): void;
|
|
@@ -460,7 +467,6 @@ export declare const components: {
|
|
|
460
467
|
domain: import('./types').TimelineDomain;
|
|
461
468
|
svgLeft: number;
|
|
462
469
|
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;
|
|
464
470
|
}, {
|
|
465
471
|
eventsGroups: {};
|
|
466
472
|
dark: boolean;
|
|
@@ -481,6 +487,7 @@ export declare const components: {
|
|
|
481
487
|
chartMinLabelHeight: number;
|
|
482
488
|
minDate: string;
|
|
483
489
|
maxDate: string;
|
|
490
|
+
cursorTimestamp: string | undefined;
|
|
484
491
|
selectedClass: string | undefined;
|
|
485
492
|
panOnDateClick: boolean;
|
|
486
493
|
panTransitionDuration: number;
|
|
@@ -501,7 +508,6 @@ export declare const components: {
|
|
|
501
508
|
stopClickPropagation: boolean;
|
|
502
509
|
tooltipPosition: string;
|
|
503
510
|
maxDomainPadding: number;
|
|
504
|
-
showCursor: boolean;
|
|
505
511
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
506
512
|
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, {
|
|
507
513
|
videoId: string | undefined;
|