@evercam/ui 0.0.38-alpha.0 → 0.0.38-alpha.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.
@@ -37,12 +37,13 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
37
37
  isHoveringEvent: boolean;
38
38
  hoveredEvent: TimelineEvent;
39
39
  isHoveringTimeline: boolean;
40
- hoveredTimestamp: Date;
40
+ hoveredTimestamp: string;
41
41
  eventTooltipStyle: {};
42
42
  hoveredEventType: string;
43
43
  utcOffset: number;
44
44
  }, {
45
- utcToZonedTime(timestamp: Timestamp): Date;
45
+ tzStringToDate(timestamp: Timestamp): Date;
46
+ dateToTzString(date: Date): string;
46
47
  getFormattedTimestamp(timestamp: Timestamp): string;
47
48
  handleResize({ contentRect }: ResizeObserverEntry): void;
48
49
  initTimeline(): void;
@@ -189,12 +189,13 @@ export declare const components: {
189
189
  isHoveringEvent: boolean;
190
190
  hoveredEvent: import('./components/ETimeline.vue').TimelineEvent;
191
191
  isHoveringTimeline: boolean;
192
- hoveredTimestamp: Date;
192
+ hoveredTimestamp: string;
193
193
  eventTooltipStyle: {};
194
194
  hoveredEventType: string;
195
195
  utcOffset: number;
196
196
  }, {
197
- utcToZonedTime(timestamp: import('./types').Timestamp): Date;
197
+ tzStringToDate(timestamp: import('./types').Timestamp): Date;
198
+ dateToTzString(date: Date): string;
198
199
  getFormattedTimestamp(timestamp: import('./types').Timestamp): string;
199
200
  handleResize({ contentRect }: ResizeObserverEntry): void;
200
201
  initTimeline(): void;
@@ -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.38-alpha.0",
5
+ "version": "0.0.38-alpha.1",
6
6
  "contributions": {
7
7
  "html": {
8
8
  "types-syntax": "typescript",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@evercam/ui",
3
- "version": "0.0.38-alpha.0",
3
+ "version": "0.0.38-alpha.1",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "author": "Evercam - Constuction Cameras.",
@@ -65,8 +65,8 @@
65
65
  "@fontsource-variable/inter": "^5.0.8",
66
66
  "@fortawesome/fontawesome-free": "^5.15.3",
67
67
  "d3": "^7.8.5",
68
- "moment-timezone": "^0.5.43",
69
- "vue": "^2.7.14"
68
+ "vue": "^2.7.14",
69
+ "moment-timezone": "^0.5.43"
70
70
  },
71
71
  "vetur": {
72
72
  "tags": "dist/tags.json",