@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.
- package/dist/index.mjs +12 -6
- 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 +1 -1
- package/dist/src/index.d.ts +1 -1
- package/dist/src/types.d.ts +2 -0
- package/dist/web-types.json +1 -1
- package/package.json +1 -1
|
@@ -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
|
})[];
|
package/dist/src/index.d.ts
CHANGED
|
@@ -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
|
})[];
|
package/dist/src/types.d.ts
CHANGED
|
@@ -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;
|
package/dist/web-types.json
CHANGED