@evercam/ui 0.0.63-preview-standarized-enum-fields-4bbcf03da → 0.0.63-preview-standarized-enum-fields-683be3ca4
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/components/charts/ETimelineForbiddenInterval.vue.d.ts +83 -0
- package/dist/components/timeline/ETimeline.vue.d.ts +0 -1
- package/dist/index.d.ts +0 -1
- package/dist/index.mjs +843 -793
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +14 -14
- package/dist/index.umd.js.map +1 -1
- package/dist/web-types.json +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -0,0 +1,83 @@
|
|
|
1
|
+
import * as d3 from "d3";
|
|
2
|
+
import Vue from "vue";
|
|
3
|
+
import { TimelineInterval, 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
|
+
eventGroupContent: string;
|
|
14
|
+
eventRect: string;
|
|
15
|
+
eventRectContainer: string;
|
|
16
|
+
eventBarContainer: string;
|
|
17
|
+
eventBarContainerHovered: string;
|
|
18
|
+
eventBarContainerSelected: string;
|
|
19
|
+
eventBar: string;
|
|
20
|
+
eventBarHoverZone: string;
|
|
21
|
+
eventBarCap: string;
|
|
22
|
+
eventRectText: string;
|
|
23
|
+
eventRectHovered: string;
|
|
24
|
+
eventRectSelected: string;
|
|
25
|
+
labelGroup: string;
|
|
26
|
+
labelBg: string;
|
|
27
|
+
labelBgFill: string;
|
|
28
|
+
labelText: string;
|
|
29
|
+
loadingIndicator: string;
|
|
30
|
+
_legacyLabelGroup: string;
|
|
31
|
+
_legacyLabelBg: string;
|
|
32
|
+
_legacyLabelBgFill: string;
|
|
33
|
+
_legacyLabelText: string;
|
|
34
|
+
_legacyLoadingIndicator: string;
|
|
35
|
+
selectedTimestampCursor: string;
|
|
36
|
+
marker: string;
|
|
37
|
+
markerLabel: string;
|
|
38
|
+
markerLine: string;
|
|
39
|
+
markerDragged: string;
|
|
40
|
+
milestone: string;
|
|
41
|
+
milestoneBullet: string;
|
|
42
|
+
milestoneDot: string;
|
|
43
|
+
milestoneContent: string;
|
|
44
|
+
milestoneLine: string;
|
|
45
|
+
milestonesContainer: string;
|
|
46
|
+
milestoneHovered: string;
|
|
47
|
+
milestoneSelected: string;
|
|
48
|
+
milestoneLabel: string;
|
|
49
|
+
milestoneDotContainer: string;
|
|
50
|
+
milestoneDotLine: string;
|
|
51
|
+
milestoneDotDot: string;
|
|
52
|
+
milestoneDotHovered: string;
|
|
53
|
+
barChartGroup: string;
|
|
54
|
+
lineGraphGroup: string;
|
|
55
|
+
lineGraphGroupLabel: string;
|
|
56
|
+
areaGraphPath: string;
|
|
57
|
+
lineGraphPath: string;
|
|
58
|
+
lineGraphHoverZone: string;
|
|
59
|
+
lineGraphDot: string;
|
|
60
|
+
forbiddenInterval: string;
|
|
61
|
+
};
|
|
62
|
+
defs: {
|
|
63
|
+
transparencyGradient: string;
|
|
64
|
+
transparencyGradientLight: string;
|
|
65
|
+
loadingGradient: string;
|
|
66
|
+
stripedPattern: string;
|
|
67
|
+
clipPath: string;
|
|
68
|
+
};
|
|
69
|
+
}, {
|
|
70
|
+
tzStringToDate(timestamp: Timestamp): Date;
|
|
71
|
+
}, {
|
|
72
|
+
visibleDomain: Date[];
|
|
73
|
+
startX: number;
|
|
74
|
+
endX: number;
|
|
75
|
+
width: number;
|
|
76
|
+
}, {
|
|
77
|
+
timeScale: d3.ScaleTime<any, any, unknown>;
|
|
78
|
+
interval: TimelineInterval;
|
|
79
|
+
index: number;
|
|
80
|
+
height: number;
|
|
81
|
+
timezone: string;
|
|
82
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
83
|
+
export default _default;
|
|
@@ -82,7 +82,6 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
82
82
|
updateLineGraphHoverZones(): void;
|
|
83
83
|
getEventRectX(d: TimelineEvent): any;
|
|
84
84
|
getEventRectWidth(d: TimelineEvent): number;
|
|
85
|
-
updateForbiddenIntervals(reset?: boolean): void;
|
|
86
85
|
drawEventsGroups(): void;
|
|
87
86
|
drawLineGraphEventsGroups(): void;
|
|
88
87
|
drawLineGraph({ events, gElement, color, type, }: {
|
package/dist/index.d.ts
CHANGED
|
@@ -302,7 +302,6 @@ export declare const components: {
|
|
|
302
302
|
updateLineGraphHoverZones(): void;
|
|
303
303
|
getEventRectX(d: import('./types').TimelineEvent): any;
|
|
304
304
|
getEventRectWidth(d: import('./types').TimelineEvent): number;
|
|
305
|
-
updateForbiddenIntervals(reset?: boolean): void;
|
|
306
305
|
drawEventsGroups(): void;
|
|
307
306
|
drawLineGraphEventsGroups(): void;
|
|
308
307
|
drawLineGraph({ events, gElement, color, type, }: {
|