@evercam/ui 0.0.52-beta.12 → 0.0.52-beta.14
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 +13 -10
- 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 -1
- package/dist/src/index.d.ts +2 -1
- package/dist/web-types.json +1 -1
- package/package.json +1 -1
|
@@ -49,6 +49,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
49
49
|
textPadding: number;
|
|
50
50
|
debouncedOnResize: Function;
|
|
51
51
|
isFirstPaint: boolean;
|
|
52
|
+
timeouts: number[];
|
|
52
53
|
}, {
|
|
53
54
|
initTimeline(startDate?: string, endDate?: string): void;
|
|
54
55
|
initRefs(): void;
|
|
@@ -149,7 +150,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
149
150
|
yOffset: number;
|
|
150
151
|
type: string;
|
|
151
152
|
}): void;
|
|
152
|
-
onBarChartBarMouseOver(container: d3.Selection<SVGGElement, any, any, any>,
|
|
153
|
+
onBarChartBarMouseOver(container: d3.Selection<SVGGElement, any, any, any>, color: string): void;
|
|
153
154
|
onBarChartBarMouseOut(container: d3.Selection<SVGGElement, any, any, any>, eventType: string): void;
|
|
154
155
|
drawTextLabel({ gElement, yPosition, color, label, }: {
|
|
155
156
|
gElement: d3.Selection<SVGGElement, any, any, any>;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -218,6 +218,7 @@ export declare const components: {
|
|
|
218
218
|
textPadding: number;
|
|
219
219
|
debouncedOnResize: Function;
|
|
220
220
|
isFirstPaint: boolean;
|
|
221
|
+
timeouts: number[];
|
|
221
222
|
}, {
|
|
222
223
|
initTimeline(startDate?: string | undefined, endDate?: string | undefined): void;
|
|
223
224
|
initRefs(): void;
|
|
@@ -318,7 +319,7 @@ export declare const components: {
|
|
|
318
319
|
yOffset: number;
|
|
319
320
|
type: string;
|
|
320
321
|
}): void;
|
|
321
|
-
onBarChartBarMouseOver(container: import("d3-selection").Selection<SVGGElement, any, any, any>,
|
|
322
|
+
onBarChartBarMouseOver(container: import("d3-selection").Selection<SVGGElement, any, any, any>, color: string): void;
|
|
322
323
|
onBarChartBarMouseOut(container: import("d3-selection").Selection<SVGGElement, any, any, any>, eventType: string): void;
|
|
323
324
|
drawTextLabel({ gElement, yPosition, color, label, }: {
|
|
324
325
|
gElement: import("d3-selection").Selection<SVGGElement, any, any, any>;
|
package/dist/web-types.json
CHANGED