@evercam/ui 0.0.52-beta.16 → 0.0.52-beta.18
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 +438 -430
- 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 -1
- package/dist/src/index.d.ts +2 -1
- package/dist/src/types.d.ts +1 -0
- package/dist/styles.css +9 -0
- package/dist/web-types.json +1 -1
- package/package.json +1 -1
|
@@ -143,12 +143,13 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
143
143
|
color: string;
|
|
144
144
|
type: string;
|
|
145
145
|
}): void;
|
|
146
|
-
drawBarsChart({ events, gElement, color, yOffset, type, }: {
|
|
146
|
+
drawBarsChart({ events, gElement, color, yOffset, type, index, }: {
|
|
147
147
|
events: TimelineEvent[];
|
|
148
148
|
gElement: d3.Selection<SVGGElement, any, any, any>;
|
|
149
149
|
color: string;
|
|
150
150
|
yOffset: number;
|
|
151
151
|
type: string;
|
|
152
|
+
index: number;
|
|
152
153
|
}): void;
|
|
153
154
|
onBarChartBarMouseOver(container: d3.Selection<SVGGElement, any, any, any>, color: string): void;
|
|
154
155
|
onBarChartBarMouseOut(container: d3.Selection<SVGGElement, any, any, any>, eventType: string): void;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -312,12 +312,13 @@ export declare const components: {
|
|
|
312
312
|
color: string;
|
|
313
313
|
type: string;
|
|
314
314
|
}): void;
|
|
315
|
-
drawBarsChart({ events, gElement, color, yOffset, type, }: {
|
|
315
|
+
drawBarsChart({ events, gElement, color, yOffset, type, index, }: {
|
|
316
316
|
events: import('./types').TimelineEvent[];
|
|
317
317
|
gElement: import("d3-selection").Selection<SVGGElement, any, any, any>;
|
|
318
318
|
color: string;
|
|
319
319
|
yOffset: number;
|
|
320
320
|
type: string;
|
|
321
|
+
index: number;
|
|
321
322
|
}): void;
|
|
322
323
|
onBarChartBarMouseOver(container: import("d3-selection").Selection<SVGGElement, any, any, any>, color: string): void;
|
|
323
324
|
onBarChartBarMouseOut(container: import("d3-selection").Selection<SVGGElement, any, any, any>, eventType: string): void;
|
package/dist/src/types.d.ts
CHANGED
package/dist/styles.css
CHANGED
|
@@ -868,9 +868,18 @@
|
|
|
868
868
|
.e-object-cover{
|
|
869
869
|
object-fit: cover;
|
|
870
870
|
}
|
|
871
|
+
.e-p-1{
|
|
872
|
+
padding: 0.25rem;
|
|
873
|
+
}
|
|
874
|
+
.e-p-2{
|
|
875
|
+
padding: 0.5rem;
|
|
876
|
+
}
|
|
871
877
|
.e-p-3{
|
|
872
878
|
padding: 0.75rem;
|
|
873
879
|
}
|
|
880
|
+
.e-p-4{
|
|
881
|
+
padding: 1rem;
|
|
882
|
+
}
|
|
874
883
|
.e-p-5{
|
|
875
884
|
padding: 1.25rem;
|
|
876
885
|
}
|
package/dist/web-types.json
CHANGED