@evercam/ui 0.0.52-beta.10 → 0.0.52-beta.11
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 +545 -544
- 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 +2 -0
- package/dist/src/index.d.ts +2 -0
- package/dist/web-types.json +1 -1
- package/package.json +1 -1
|
@@ -150,6 +150,8 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
150
150
|
yOffset: number;
|
|
151
151
|
type: string;
|
|
152
152
|
}): void;
|
|
153
|
+
onBarChartBarMouseOver(container: d3.Selection<SVGGElement, any, any, any>, eventType: string, color: any): void;
|
|
154
|
+
onBarChartBarMouseOut(container: d3.Selection<SVGGElement, any, any, any>, eventType: string): void;
|
|
153
155
|
drawTextLabel({ gElement, yPosition, color, label, }: {
|
|
154
156
|
gElement: d3.Selection<SVGGElement, any, any, any>;
|
|
155
157
|
yPosition: number;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -319,6 +319,8 @@ export declare const components: {
|
|
|
319
319
|
yOffset: number;
|
|
320
320
|
type: string;
|
|
321
321
|
}): void;
|
|
322
|
+
onBarChartBarMouseOver(container: import("d3-selection").Selection<SVGGElement, any, any, any>, eventType: string, color: any): void;
|
|
323
|
+
onBarChartBarMouseOut(container: import("d3-selection").Selection<SVGGElement, any, any, any>, eventType: string): void;
|
|
322
324
|
drawTextLabel({ gElement, yPosition, color, label, }: {
|
|
323
325
|
gElement: import("d3-selection").Selection<SVGGElement, any, any, any>;
|
|
324
326
|
yPosition: number;
|
package/dist/web-types.json
CHANGED