@evercam/ui 0.0.42 → 0.0.44
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 +14 -15
- 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 -6
- package/dist/src/index.d.ts +2 -6
- package/dist/web-types.json +1 -1
- package/package.json +1 -1
|
@@ -69,10 +69,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
69
69
|
count: number;
|
|
70
70
|
type: string;
|
|
71
71
|
}[];
|
|
72
|
-
countsByTimestamp: Record<string,
|
|
73
|
-
count: number;
|
|
74
|
-
type: string;
|
|
75
|
-
}[]>;
|
|
72
|
+
countsByTimestamp: Record<string, Record<string, number>>;
|
|
76
73
|
dotsByTimestamp: Record<string, d3.Selection<SVGCircleElement, any, any, any>[]>;
|
|
77
74
|
visibleFrom: Date;
|
|
78
75
|
visibleTo: Date;
|
|
@@ -153,12 +150,11 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
153
150
|
color: string;
|
|
154
151
|
type: string;
|
|
155
152
|
}): void;
|
|
156
|
-
drawTextLabel({ gElement, yPosition, color, label,
|
|
153
|
+
drawTextLabel({ gElement, yPosition, color, label, }: {
|
|
157
154
|
gElement: d3.Selection<SVGGElement, any, any, any>;
|
|
158
155
|
yPosition: number;
|
|
159
156
|
color: string;
|
|
160
157
|
label: string;
|
|
161
|
-
type: string;
|
|
162
158
|
}): void;
|
|
163
159
|
getTextFillColor(baseColor: string): string;
|
|
164
160
|
getLabelBackgroundColor(baseColor: string): string;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -207,10 +207,7 @@ export declare const components: {
|
|
|
207
207
|
count: number;
|
|
208
208
|
type: string;
|
|
209
209
|
}[];
|
|
210
|
-
countsByTimestamp: Record<string,
|
|
211
|
-
count: number;
|
|
212
|
-
type: string;
|
|
213
|
-
}[]>;
|
|
210
|
+
countsByTimestamp: Record<string, Record<string, number>>;
|
|
214
211
|
dotsByTimestamp: Record<string, import("d3-selection").Selection<SVGCircleElement, any, any, any>[]>;
|
|
215
212
|
visibleFrom: Date;
|
|
216
213
|
visibleTo: Date;
|
|
@@ -291,12 +288,11 @@ export declare const components: {
|
|
|
291
288
|
color: string;
|
|
292
289
|
type: string;
|
|
293
290
|
}): void;
|
|
294
|
-
drawTextLabel({ gElement, yPosition, color, label,
|
|
291
|
+
drawTextLabel({ gElement, yPosition, color, label, }: {
|
|
295
292
|
gElement: import("d3-selection").Selection<SVGGElement, any, any, any>;
|
|
296
293
|
yPosition: number;
|
|
297
294
|
color: string;
|
|
298
295
|
label: string;
|
|
299
|
-
type: string;
|
|
300
296
|
}): void;
|
|
301
297
|
getTextFillColor(baseColor: string): string;
|
|
302
298
|
getLabelBackgroundColor(baseColor: string): string;
|
package/dist/web-types.json
CHANGED