@evercam/ui 0.0.51 → 0.0.52-beta.0
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 +104 -94
- 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 +2 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/web-types.json +1 -1
- package/package.json +1 -1
|
@@ -58,6 +58,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
58
58
|
initTimeScale(start?: string, end?: string): void;
|
|
59
59
|
initXAxes(): void;
|
|
60
60
|
initYScale(): void;
|
|
61
|
+
updateYScaleDomain(): void;
|
|
61
62
|
initZoomBehavior(): void;
|
|
62
63
|
initSelectedTimestampCursor(): void;
|
|
63
64
|
updateAndRedrawTimeline(): void;
|
|
@@ -186,6 +187,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
186
187
|
placeholderLineChartGroup: TimelineEvent[];
|
|
187
188
|
filledGapsLineGraphGroups: TimelineEventsByType;
|
|
188
189
|
isInteractingWithCurtain: boolean;
|
|
190
|
+
flattenedCounts: TimelineCountEvent[];
|
|
189
191
|
}, {
|
|
190
192
|
eventsGroups: {};
|
|
191
193
|
xAxesConfig: TimelineAxesConfig;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -227,6 +227,7 @@ export declare const components: {
|
|
|
227
227
|
initTimeScale(start?: string | undefined, end?: string | undefined): void;
|
|
228
228
|
initXAxes(): void;
|
|
229
229
|
initYScale(): void;
|
|
230
|
+
updateYScaleDomain(): void;
|
|
230
231
|
initZoomBehavior(): void;
|
|
231
232
|
initSelectedTimestampCursor(): void;
|
|
232
233
|
updateAndRedrawTimeline(): void;
|
|
@@ -355,6 +356,7 @@ export declare const components: {
|
|
|
355
356
|
placeholderLineChartGroup: import('./types').TimelineEvent[];
|
|
356
357
|
filledGapsLineGraphGroups: import('./types').TimelineEventsByType;
|
|
357
358
|
isInteractingWithCurtain: boolean;
|
|
359
|
+
flattenedCounts: import('./types').TimelineCountEvent[];
|
|
358
360
|
}, {
|
|
359
361
|
eventsGroups: {};
|
|
360
362
|
xAxesConfig: import('./types').TimelineAxesConfig;
|
package/dist/web-types.json
CHANGED