@evercam/ui 0.0.52-beta.1 → 0.0.52-beta.2

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.
@@ -163,7 +163,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
163
163
  endDate: string;
164
164
  };
165
165
  getFormattedTimestamp(timestamp: Timestamp): string;
166
- fillTimeGaps(events: TimelineEvent[]): (import('../types').TimelineBarEvent | import('../types').TimelineRangeEvent | {
166
+ fillTimeGaps(events: TimelineEvent[]): (import('../types').TimelineBarEvent | import('../types').TimelineRangeEvent | TimelineCountEvent | {
167
167
  timestamp: any;
168
168
  count: number;
169
169
  })[];
@@ -332,7 +332,7 @@ export declare const components: {
332
332
  endDate: string;
333
333
  };
334
334
  getFormattedTimestamp(timestamp: import('./types').Timestamp): string;
335
- fillTimeGaps(events: import('./types').TimelineEvent[]): (import('./types').TimelineBarEvent | import('./types').TimelineRangeEvent | {
335
+ fillTimeGaps(events: import('./types').TimelineEvent[]): (import('./types').TimelineBarEvent | import('./types').TimelineRangeEvent | import('./types').TimelineCountEvent | {
336
336
  timestamp: any;
337
337
  count: number;
338
338
  })[];
@@ -51,6 +51,7 @@ export type Timestamp = Date | string | number;
51
51
  export type TimelineBarEvent = {
52
52
  timestamp: string | Date;
53
53
  color?: string;
54
+ className?: string;
54
55
  text?: string;
55
56
  [key: string]: any;
56
57
  };
@@ -62,6 +63,7 @@ export type TimelineRangeEvent = {
62
63
  export type TimelineCountEvent = {
63
64
  timestamp: string | Date;
64
65
  count: number;
66
+ className?: string;
65
67
  [key: string]: any;
66
68
  };
67
69
  export type TimelineEvent = TimelineBarEvent | TimelineRangeEvent | TimelineCountEvent;
@@ -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.52-beta.1",
5
+ "version": "0.0.52-beta.2",
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.52-beta.1",
3
+ "version": "0.0.52-beta.2",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "author": "Evercam - Constuction Cameras.",