@evercam/ui 0.0.55-beta.3 → 0.0.55-beta.5
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/attributes.json +8 -0
- package/dist/index.mjs +266 -249
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +1 -1
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/ETimeline.vue.d.ts +4 -0
- package/dist/src/components/ETimelineMilestone.vue.d.ts +2 -2
- package/dist/src/index.d.ts +4 -0
- package/dist/tags.json +2 -0
- package/dist/web-types.json +19 -1
- package/package.json +1 -1
|
@@ -60,6 +60,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
60
60
|
initialMarkerDragMouseOffset: number;
|
|
61
61
|
selectedMilestoneId: any;
|
|
62
62
|
isInitialized: boolean;
|
|
63
|
+
lastValidTransform: d3.ZoomTransform;
|
|
63
64
|
}, {
|
|
64
65
|
updateTimeline(): void;
|
|
65
66
|
initTimeline(startDate?: string, endDate?: string): void;
|
|
@@ -103,6 +104,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
103
104
|
handleBarMouseOut(): void;
|
|
104
105
|
handleLabelMouseOver(groupType: string): void;
|
|
105
106
|
handleLabelMouseLeave(groupType: string): void;
|
|
107
|
+
isZoomAllowed(event: D3ZoomEvent<SVGSVGElement, any>): boolean;
|
|
106
108
|
handleZoom(event: D3ZoomEvent<SVGSVGElement, any>): void;
|
|
107
109
|
panToTimestamp(targetTimestamp: string | Date): void;
|
|
108
110
|
emitCurtainChange(): void;
|
|
@@ -284,6 +286,8 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
284
286
|
maxZoom: number;
|
|
285
287
|
minDate: string;
|
|
286
288
|
maxDate: string;
|
|
289
|
+
minVisibleDate: string;
|
|
290
|
+
maxVisibleDate: string;
|
|
287
291
|
cursorTimestamp: string | undefined;
|
|
288
292
|
selectedClass: string | undefined;
|
|
289
293
|
panOnDateClick: boolean;
|
|
@@ -35,9 +35,9 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
35
35
|
isInitialRender: boolean;
|
|
36
36
|
isMouseOver: boolean;
|
|
37
37
|
}, {
|
|
38
|
-
onMilestoneMouseOver(e
|
|
38
|
+
onMilestoneMouseOver(e?: MouseEvent): void;
|
|
39
39
|
onMilestoneMouseMove(): void;
|
|
40
|
-
onMilestoneMouseLeave(e
|
|
40
|
+
onMilestoneMouseLeave(e?: MouseEvent): void;
|
|
41
41
|
onMilestoneClick(_e: MouseEvent, milestone: TimelineMilestoneEvent): void;
|
|
42
42
|
}, {
|
|
43
43
|
transitionStyles: Record<string, any>;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -233,6 +233,7 @@ export declare const components: {
|
|
|
233
233
|
initialMarkerDragMouseOffset: number;
|
|
234
234
|
selectedMilestoneId: any;
|
|
235
235
|
isInitialized: boolean;
|
|
236
|
+
lastValidTransform: import("d3-zoom").ZoomTransform;
|
|
236
237
|
}, {
|
|
237
238
|
updateTimeline(): void;
|
|
238
239
|
initTimeline(startDate?: string | undefined, endDate?: string | undefined): void;
|
|
@@ -276,6 +277,7 @@ export declare const components: {
|
|
|
276
277
|
handleBarMouseOut(): void;
|
|
277
278
|
handleLabelMouseOver(groupType: string): void;
|
|
278
279
|
handleLabelMouseLeave(groupType: string): void;
|
|
280
|
+
isZoomAllowed(event: import("d3-zoom").D3ZoomEvent<SVGSVGElement, any>): boolean;
|
|
279
281
|
handleZoom(event: import("d3-zoom").D3ZoomEvent<SVGSVGElement, any>): void;
|
|
280
282
|
panToTimestamp(targetTimestamp: string | Date): void;
|
|
281
283
|
emitCurtainChange(): void;
|
|
@@ -457,6 +459,8 @@ export declare const components: {
|
|
|
457
459
|
maxZoom: number;
|
|
458
460
|
minDate: string;
|
|
459
461
|
maxDate: string;
|
|
462
|
+
minVisibleDate: string;
|
|
463
|
+
maxVisibleDate: string;
|
|
460
464
|
cursorTimestamp: string | undefined;
|
|
461
465
|
selectedClass: string | undefined;
|
|
462
466
|
panOnDateClick: boolean;
|
package/dist/tags.json
CHANGED
package/dist/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json.schemastore.org/web-types",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "@evercam/ui",
|
|
5
|
-
"version": "0.0.55-beta.
|
|
5
|
+
"version": "0.0.55-beta.5",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -739,6 +739,24 @@
|
|
|
739
739
|
"type": "string"
|
|
740
740
|
}
|
|
741
741
|
},
|
|
742
|
+
{
|
|
743
|
+
"name": "min-visible-date",
|
|
744
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
745
|
+
"default": "undefined",
|
|
746
|
+
"value": {
|
|
747
|
+
"kind": "expression",
|
|
748
|
+
"type": "string"
|
|
749
|
+
}
|
|
750
|
+
},
|
|
751
|
+
{
|
|
752
|
+
"name": "max-visible-date",
|
|
753
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
754
|
+
"default": "undefined",
|
|
755
|
+
"value": {
|
|
756
|
+
"kind": "expression",
|
|
757
|
+
"type": "string"
|
|
758
|
+
}
|
|
759
|
+
},
|
|
742
760
|
{
|
|
743
761
|
"name": "cursor-timestamp",
|
|
744
762
|
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|