@evercam/ui 0.0.54-beta.1 → 0.0.55-beta.1
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/dist/index.mjs +169 -146
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +11 -11
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/ETimeline.vue.d.ts +6 -2
- package/dist/src/components/ETimelineMilestone.vue.d.ts +2 -0
- package/dist/src/index.d.ts +6 -2
- package/dist/src/types.d.ts +2 -1
- package/dist/web-types.json +1 -1
- package/package.json +1 -1
|
@@ -61,13 +61,15 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
61
61
|
selectedMilestoneId: any;
|
|
62
62
|
isInitialized: boolean;
|
|
63
63
|
}, {
|
|
64
|
+
updateTimeline(): void;
|
|
64
65
|
initTimeline(startDate?: string, endDate?: string): void;
|
|
65
66
|
initRefs(): void;
|
|
66
|
-
|
|
67
|
+
initOrUpdateSvg(): void;
|
|
67
68
|
initDefs(): void;
|
|
68
69
|
initUtcOffset(): void;
|
|
69
70
|
initTimeScale(start?: string, end?: string): void;
|
|
70
71
|
initXAxes(): void;
|
|
72
|
+
updateXAxes(): void;
|
|
71
73
|
initYScale(): void;
|
|
72
74
|
updateYScaleDomain(): void;
|
|
73
75
|
initZoomBehavior(): void;
|
|
@@ -90,7 +92,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
90
92
|
handleResize({ contentRect }: ResizeObserverEntry): void;
|
|
91
93
|
handleDarkModeChange(): void;
|
|
92
94
|
handleMouseDown(): void;
|
|
93
|
-
handleDocumentMouseUp(): void;
|
|
95
|
+
handleDocumentMouseUp(_e: MouseEvent): void;
|
|
94
96
|
handleMouseLeave(): void;
|
|
95
97
|
handleMouseMove(event: MouseEvent): void;
|
|
96
98
|
handleClick(event: MouseEvent): void;
|
|
@@ -132,6 +134,8 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
132
134
|
removeMarkersDragBehavior(): void;
|
|
133
135
|
initMarkersDragBehavior(): void;
|
|
134
136
|
initCurtains(): void;
|
|
137
|
+
createCurtains(): void;
|
|
138
|
+
updateCurtains(): void;
|
|
135
139
|
initForbiddenIntervals(): void;
|
|
136
140
|
updateForbiddenIntervals(): void;
|
|
137
141
|
drawEventsGroups(): void;
|
|
@@ -20,11 +20,13 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
20
20
|
milestoneLabel: string;
|
|
21
21
|
};
|
|
22
22
|
timeouts: number[];
|
|
23
|
+
isInitialRender: boolean;
|
|
23
24
|
}, {
|
|
24
25
|
onMilestoneMouseOver(e: MouseEvent, _milestone: TimelineMilestoneEvent): void;
|
|
25
26
|
onMilestoneMouseLeave(e: MouseEvent, _milestone: TimelineMilestoneEvent): void;
|
|
26
27
|
onMilestoneClick(_e: MouseEvent, milestone: TimelineMilestoneEvent): void;
|
|
27
28
|
}, {
|
|
29
|
+
transitionStyles: Record<string, any>;
|
|
28
30
|
styles: Record<string, any>;
|
|
29
31
|
contentStyles: Record<string, any>;
|
|
30
32
|
labelStyles: Record<string, any>;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -234,13 +234,15 @@ export declare const components: {
|
|
|
234
234
|
selectedMilestoneId: any;
|
|
235
235
|
isInitialized: boolean;
|
|
236
236
|
}, {
|
|
237
|
+
updateTimeline(): void;
|
|
237
238
|
initTimeline(startDate?: string | undefined, endDate?: string | undefined): void;
|
|
238
239
|
initRefs(): void;
|
|
239
|
-
|
|
240
|
+
initOrUpdateSvg(): void;
|
|
240
241
|
initDefs(): void;
|
|
241
242
|
initUtcOffset(): void;
|
|
242
243
|
initTimeScale(start?: string | undefined, end?: string | undefined): void;
|
|
243
244
|
initXAxes(): void;
|
|
245
|
+
updateXAxes(): void;
|
|
244
246
|
initYScale(): void;
|
|
245
247
|
updateYScaleDomain(): void;
|
|
246
248
|
initZoomBehavior(): void;
|
|
@@ -263,7 +265,7 @@ export declare const components: {
|
|
|
263
265
|
handleResize({ contentRect }: ResizeObserverEntry): void;
|
|
264
266
|
handleDarkModeChange(): void;
|
|
265
267
|
handleMouseDown(): void;
|
|
266
|
-
handleDocumentMouseUp(): void;
|
|
268
|
+
handleDocumentMouseUp(_e: MouseEvent): void;
|
|
267
269
|
handleMouseLeave(): void;
|
|
268
270
|
handleMouseMove(event: MouseEvent): void;
|
|
269
271
|
handleClick(event: MouseEvent): void;
|
|
@@ -305,6 +307,8 @@ export declare const components: {
|
|
|
305
307
|
removeMarkersDragBehavior(): void;
|
|
306
308
|
initMarkersDragBehavior(): void;
|
|
307
309
|
initCurtains(): void;
|
|
310
|
+
createCurtains(): void;
|
|
311
|
+
updateCurtains(): void;
|
|
308
312
|
initForbiddenIntervals(): void;
|
|
309
313
|
updateForbiddenIntervals(): void;
|
|
310
314
|
drawEventsGroups(): void;
|
package/dist/src/types.d.ts
CHANGED
|
@@ -106,12 +106,13 @@ export type TimelineMarker = {
|
|
|
106
106
|
timestamp: string | Date;
|
|
107
107
|
label: string;
|
|
108
108
|
color: string;
|
|
109
|
+
id: string | number;
|
|
109
110
|
textColor?: string;
|
|
110
111
|
className?: string;
|
|
111
|
-
id: string | number;
|
|
112
112
|
isDraggable?: boolean;
|
|
113
113
|
minDate?: string;
|
|
114
114
|
maxDate?: string;
|
|
115
|
+
[key: string]: any;
|
|
115
116
|
};
|
|
116
117
|
declare const _default: {};
|
|
117
118
|
export default _default;
|
package/dist/web-types.json
CHANGED