@evercam/ui 0.0.47-beta.1 → 0.0.47-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/attributes.json +3 -4
- package/dist/index.mjs +307 -323
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +2 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/ETimeline.vue.d.ts +8 -4
- package/dist/src/index.d.ts +7 -4
- package/dist/tags.json +1 -1
- package/dist/web-types.json +4 -4
- package/package.json +1 -1
|
@@ -2,6 +2,7 @@ import * as d3 from "d3";
|
|
|
2
2
|
import Vue from "vue";
|
|
3
3
|
import { D3ZoomEvent } from "d3";
|
|
4
4
|
import { TimelineAxesConfig, TimelineAxis, TimelineTicksConfig, Timestamp, TimelineCountEvent, TimelineEvent, TimelineEventsByType } from '../types';
|
|
5
|
+
import { TimelinePrecision } from "@evercam/shared/types";
|
|
5
6
|
declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
6
7
|
tooltip: HTMLElement;
|
|
7
8
|
cursor: HTMLElement;
|
|
@@ -149,8 +150,11 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
149
150
|
endDate: string;
|
|
150
151
|
};
|
|
151
152
|
getFormattedTimestamp(timestamp: Timestamp): string;
|
|
152
|
-
fillTimeGaps(events: TimelineEvent[]):
|
|
153
|
-
|
|
153
|
+
fillTimeGaps(events: TimelineEvent[]): (import('../types').TimelineBarEvent | import('../types').TimelineRangeEvent | {
|
|
154
|
+
timestamp: any;
|
|
155
|
+
count: number;
|
|
156
|
+
})[];
|
|
157
|
+
fillEvents(events: TimelineEvent[]): TimelineEvent[];
|
|
154
158
|
}, {
|
|
155
159
|
classes: Record<string, string | Record<string, boolean>>;
|
|
156
160
|
lineGraphGroups: TimelineEventsByType;
|
|
@@ -166,7 +170,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
166
170
|
latestEvent: TimelineEvent;
|
|
167
171
|
allLineChartTimestamps: string[];
|
|
168
172
|
placeholderLineChartGroup: TimelineEvent[];
|
|
169
|
-
|
|
173
|
+
filledGapsLineGraphGroups: TimelineEventsByType;
|
|
170
174
|
isInteractingWithCurtain: boolean;
|
|
171
175
|
}, {
|
|
172
176
|
eventsGroups: {};
|
|
@@ -177,7 +181,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
177
181
|
selectedTimestamp: string;
|
|
178
182
|
showEventTooltip: boolean;
|
|
179
183
|
disableZoom: boolean;
|
|
180
|
-
|
|
184
|
+
insertZerosAtInterval: TimelinePrecision;
|
|
181
185
|
flattenLineGraphEnds: boolean;
|
|
182
186
|
curtains: boolean;
|
|
183
187
|
showLabels: boolean;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -317,8 +317,11 @@ export declare const components: {
|
|
|
317
317
|
endDate: string;
|
|
318
318
|
};
|
|
319
319
|
getFormattedTimestamp(timestamp: import('./types').Timestamp): string;
|
|
320
|
-
fillTimeGaps(events: import('./types').TimelineEvent[]): import('./types').
|
|
321
|
-
|
|
320
|
+
fillTimeGaps(events: import('./types').TimelineEvent[]): (import('./types').TimelineBarEvent | import('./types').TimelineRangeEvent | {
|
|
321
|
+
timestamp: any;
|
|
322
|
+
count: number;
|
|
323
|
+
})[];
|
|
324
|
+
fillEvents(events: import('./types').TimelineEvent[]): import('./types').TimelineEvent[];
|
|
322
325
|
}, {
|
|
323
326
|
classes: Record<string, string | Record<string, boolean>>;
|
|
324
327
|
lineGraphGroups: import('./types').TimelineEventsByType;
|
|
@@ -334,7 +337,7 @@ export declare const components: {
|
|
|
334
337
|
latestEvent: import('./types').TimelineEvent;
|
|
335
338
|
allLineChartTimestamps: string[];
|
|
336
339
|
placeholderLineChartGroup: import('./types').TimelineEvent[];
|
|
337
|
-
|
|
340
|
+
filledGapsLineGraphGroups: import('./types').TimelineEventsByType;
|
|
338
341
|
isInteractingWithCurtain: boolean;
|
|
339
342
|
}, {
|
|
340
343
|
eventsGroups: {};
|
|
@@ -345,7 +348,7 @@ export declare const components: {
|
|
|
345
348
|
selectedTimestamp: string;
|
|
346
349
|
showEventTooltip: boolean;
|
|
347
350
|
disableZoom: boolean;
|
|
348
|
-
|
|
351
|
+
insertZerosAtInterval: import("@evercam/shared/types").TimelinePrecision;
|
|
349
352
|
flattenLineGraphEnds: boolean;
|
|
350
353
|
curtains: boolean;
|
|
351
354
|
showLabels: 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.
|
|
5
|
+
"version": "0.0.47-beta.2",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -596,12 +596,12 @@
|
|
|
596
596
|
}
|
|
597
597
|
},
|
|
598
598
|
{
|
|
599
|
-
"name": "
|
|
599
|
+
"name": "insert-zeros-at-interval",
|
|
600
600
|
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
601
|
-
"default": "
|
|
601
|
+
"default": "undefined",
|
|
602
602
|
"value": {
|
|
603
603
|
"kind": "expression",
|
|
604
|
-
"type": "
|
|
604
|
+
"type": "string"
|
|
605
605
|
}
|
|
606
606
|
},
|
|
607
607
|
{
|