@evercam/ui 0.0.63-preview-copilot-error-message-dba06869b → 0.0.63-preview-pause-resume-conversation-missing-fields-c64ea10e8
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 +23 -0
- 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 +2 -0
- package/dist/components/charts/EXAxis.vue.d.ts +2 -0
- package/dist/components/charts/EXAxisBackground.vue.d.ts +2 -0
- package/dist/components/charts/EXAxisDetailed.vue.d.ts +2 -0
- package/dist/components/charts/EXAxisOverview.vue.d.ts +2 -0
- package/dist/components/charts/constants.d.ts +2 -0
- package/dist/components/chat/EChat.vue.d.ts +4 -0
- package/dist/components/chat/EChatMessage.vue.d.ts +2 -0
- package/dist/components/chat/EMarkdown.vue.d.ts +1 -0
- package/dist/components/chat/MarkdownProcessor.d.ts +6 -1
- package/dist/components/timeline/ETimelineMilestone.vue.d.ts +4 -0
- package/dist/index.d.ts +17 -3
- package/dist/index.mjs +2176 -2083
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +19 -14
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/styles.css +4 -0
- package/dist/tags.json +7 -2
- package/dist/types.d.ts +2 -0
- package/dist/utils.d.ts +1 -0
- package/dist/web-types.json +47 -2
- package/package.json +1 -1
package/README.md
CHANGED
package/dist/attributes.json
CHANGED
|
@@ -492,6 +492,11 @@
|
|
|
492
492
|
"description": "",
|
|
493
493
|
"default": true
|
|
494
494
|
},
|
|
495
|
+
"EHeatmapBar/names-only": {
|
|
496
|
+
"type": "boolean",
|
|
497
|
+
"description": "",
|
|
498
|
+
"default": false
|
|
499
|
+
},
|
|
495
500
|
"EHeatmapBar/show-names": {
|
|
496
501
|
"type": "boolean",
|
|
497
502
|
"description": "",
|
|
@@ -501,6 +506,10 @@
|
|
|
501
506
|
"type": "array",
|
|
502
507
|
"description": ""
|
|
503
508
|
},
|
|
509
|
+
"EHeatmapBar/colors-dark": {
|
|
510
|
+
"type": "array",
|
|
511
|
+
"description": ""
|
|
512
|
+
},
|
|
504
513
|
"EHeatmapBar/label": {
|
|
505
514
|
"type": "string",
|
|
506
515
|
"description": "",
|
|
@@ -511,6 +520,11 @@
|
|
|
511
520
|
"description": "",
|
|
512
521
|
"default": false
|
|
513
522
|
},
|
|
523
|
+
"EHeatmapBar/dark": {
|
|
524
|
+
"type": "boolean",
|
|
525
|
+
"description": "",
|
|
526
|
+
"default": false
|
|
527
|
+
},
|
|
514
528
|
"EHoursHeatmap/items": {
|
|
515
529
|
"type": "array",
|
|
516
530
|
"description": ""
|
|
@@ -1048,6 +1062,11 @@
|
|
|
1048
1062
|
"description": "",
|
|
1049
1063
|
"default": false
|
|
1050
1064
|
},
|
|
1065
|
+
"EChat/is-paused": {
|
|
1066
|
+
"type": "boolean",
|
|
1067
|
+
"description": "",
|
|
1068
|
+
"default": false
|
|
1069
|
+
},
|
|
1051
1070
|
"EChat/header-text": {
|
|
1052
1071
|
"type": "string",
|
|
1053
1072
|
"description": "",
|
|
@@ -1071,6 +1090,10 @@
|
|
|
1071
1090
|
"type": "array",
|
|
1072
1091
|
"description": ""
|
|
1073
1092
|
},
|
|
1093
|
+
"EChat/e-markdown-props": {
|
|
1094
|
+
"type": "object",
|
|
1095
|
+
"description": ""
|
|
1096
|
+
},
|
|
1074
1097
|
"ECopyToClipboardBtn/text": {
|
|
1075
1098
|
"type": "function|string|number",
|
|
1076
1099
|
"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;
|
|
@@ -10,7 +10,9 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
10
10
|
xAxisBackground: string;
|
|
11
11
|
eventGroup: string;
|
|
12
12
|
eventGroupBg: string;
|
|
13
|
+
eventGroupContent: string;
|
|
13
14
|
eventRect: string;
|
|
15
|
+
eventRectContainer: string;
|
|
14
16
|
eventBarContainer: string;
|
|
15
17
|
eventBarContainerHovered: string;
|
|
16
18
|
eventBarContainerSelected: string;
|
|
@@ -14,7 +14,9 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
14
14
|
xAxisBackground: string;
|
|
15
15
|
eventGroup: string;
|
|
16
16
|
eventGroupBg: string;
|
|
17
|
+
eventGroupContent: string;
|
|
17
18
|
eventRect: string;
|
|
19
|
+
eventRectContainer: string;
|
|
18
20
|
eventBarContainer: string;
|
|
19
21
|
eventBarContainerHovered: string;
|
|
20
22
|
eventBarContainerSelected: string;
|
|
@@ -9,7 +9,9 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
9
9
|
xAxisBackground: string;
|
|
10
10
|
eventGroup: string;
|
|
11
11
|
eventGroupBg: string;
|
|
12
|
+
eventGroupContent: string;
|
|
12
13
|
eventRect: string;
|
|
14
|
+
eventRectContainer: string;
|
|
13
15
|
eventBarContainer: string;
|
|
14
16
|
eventBarContainerHovered: string;
|
|
15
17
|
eventBarContainerSelected: string;
|
|
@@ -9,7 +9,9 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
9
9
|
xAxisBackground: string;
|
|
10
10
|
eventGroup: string;
|
|
11
11
|
eventGroupBg: string;
|
|
12
|
+
eventGroupContent: string;
|
|
12
13
|
eventRect: string;
|
|
14
|
+
eventRectContainer: string;
|
|
13
15
|
eventBarContainer: string;
|
|
14
16
|
eventBarContainerHovered: string;
|
|
15
17
|
eventBarContainerSelected: string;
|
|
@@ -9,7 +9,9 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
9
9
|
xAxisBackground: string;
|
|
10
10
|
eventGroup: string;
|
|
11
11
|
eventGroupBg: string;
|
|
12
|
+
eventGroupContent: string;
|
|
12
13
|
eventRect: string;
|
|
14
|
+
eventRectContainer: string;
|
|
13
15
|
eventBarContainer: string;
|
|
14
16
|
eventBarContainerHovered: string;
|
|
15
17
|
eventBarContainerSelected: string;
|
|
@@ -13,7 +13,9 @@ export declare const classNames: {
|
|
|
13
13
|
xAxisBackground: string;
|
|
14
14
|
eventGroup: string;
|
|
15
15
|
eventGroupBg: string;
|
|
16
|
+
eventGroupContent: string;
|
|
16
17
|
eventRect: string;
|
|
18
|
+
eventRectContainer: string;
|
|
17
19
|
eventBarContainer: string;
|
|
18
20
|
eventBarContainerHovered: string;
|
|
19
21
|
eventBarContainerSelected: string;
|
|
@@ -40,10 +40,14 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
40
40
|
readonly: boolean;
|
|
41
41
|
isLoading: boolean;
|
|
42
42
|
isDisabled: boolean;
|
|
43
|
+
isPaused: boolean;
|
|
43
44
|
headerText: string;
|
|
44
45
|
inputPlaceholder: string;
|
|
45
46
|
loadingMessage: string;
|
|
46
47
|
suggestions: ChatSuggestion[];
|
|
47
48
|
exposedRegexes: EMarkdownRegex[];
|
|
49
|
+
eMarkdownProps: Record<string, unknown> | {
|
|
50
|
+
useTableProcessor: boolean;
|
|
51
|
+
};
|
|
48
52
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
49
53
|
export default _default;
|
|
@@ -10,6 +10,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
10
10
|
}, {
|
|
11
11
|
isBotRole: boolean;
|
|
12
12
|
userMessageClasses: Record<string, boolean>;
|
|
13
|
+
interactiveFormClasses: Record<string, boolean>;
|
|
13
14
|
logoClasses: Record<string, boolean>;
|
|
14
15
|
dotColor: string;
|
|
15
16
|
markdownScopedSlots: 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>>>;
|
|
@@ -28,6 +29,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
28
29
|
loadingMessage: string;
|
|
29
30
|
exposedRegexes: EMarkdownRegex[];
|
|
30
31
|
animated: boolean;
|
|
32
|
+
eMarkdownProps: {};
|
|
31
33
|
}, {}, 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
34
|
timeouts: number[];
|
|
33
35
|
}, {
|
|
@@ -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;
|
|
@@ -9,7 +9,9 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
9
9
|
xAxisBackground: string;
|
|
10
10
|
eventGroup: string;
|
|
11
11
|
eventGroupBg: string;
|
|
12
|
+
eventGroupContent: string;
|
|
12
13
|
eventRect: string;
|
|
14
|
+
eventRectContainer: string;
|
|
13
15
|
eventBarContainer: string;
|
|
14
16
|
eventBarContainerHovered: string;
|
|
15
17
|
eventBarContainerSelected: string;
|
|
@@ -54,6 +56,8 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
54
56
|
timeouts: number[];
|
|
55
57
|
isInitialRender: boolean;
|
|
56
58
|
isMouseOver: boolean;
|
|
59
|
+
containerWidth: string;
|
|
60
|
+
containerHeight: string;
|
|
57
61
|
}, {
|
|
58
62
|
onMilestoneMouseOver(e?: MouseEvent): void;
|
|
59
63
|
onMilestoneMouseMove(): void;
|
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;
|
|
@@ -512,23 +511,34 @@ export declare const components: {
|
|
|
512
511
|
iframeListeners: {};
|
|
513
512
|
iframeOptions: any;
|
|
514
513
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
515
|
-
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>>, {}, {
|
|
516
515
|
getColorIndex(count: number): number;
|
|
517
516
|
getColor(count: number): string;
|
|
518
517
|
getItemStyle(count: number): {
|
|
519
518
|
background: string;
|
|
520
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;
|
|
521
526
|
}, {
|
|
522
527
|
heatMapBarItems: import('./types').HeatmapBarItem[];
|
|
523
528
|
maxCount: number;
|
|
529
|
+
computedColors: string[];
|
|
530
|
+
textColor: Record<string, string>;
|
|
524
531
|
}, {
|
|
525
532
|
items: unknown[];
|
|
526
533
|
selectedValue: string | number;
|
|
527
534
|
showCounts: boolean;
|
|
535
|
+
namesOnly: boolean;
|
|
528
536
|
showNames: boolean;
|
|
529
|
-
colors:
|
|
537
|
+
colors: string[];
|
|
538
|
+
colorsDark: string[];
|
|
530
539
|
label: string;
|
|
531
540
|
dense: boolean;
|
|
541
|
+
dark: boolean;
|
|
532
542
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
533
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, {
|
|
534
544
|
getFormattedHour(h: number): string;
|
|
@@ -1111,11 +1121,15 @@ export declare const components: {
|
|
|
1111
1121
|
readonly: boolean;
|
|
1112
1122
|
isLoading: boolean;
|
|
1113
1123
|
isDisabled: boolean;
|
|
1124
|
+
isPaused: boolean;
|
|
1114
1125
|
headerText: string;
|
|
1115
1126
|
inputPlaceholder: string;
|
|
1116
1127
|
loadingMessage: string;
|
|
1117
1128
|
suggestions: import('./types').ChatSuggestion[];
|
|
1118
1129
|
exposedRegexes: import('./types').EMarkdownRegex[];
|
|
1130
|
+
eMarkdownProps: Record<string, unknown> | {
|
|
1131
|
+
useTableProcessor: boolean;
|
|
1132
|
+
};
|
|
1119
1133
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
1120
1134
|
EContextProvider: any;
|
|
1121
1135
|
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>>, {
|