@evercam/ui 0.0.55-beta.5 → 0.0.55-beta.6
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 +135 -114
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +8 -8
- package/dist/index.umd.js.map +1 -1
- package/dist/src/components/ETimeline.vue.d.ts +6 -2
- package/dist/src/index.d.ts +6 -2
- package/dist/src/types.d.ts +2 -0
- package/dist/web-types.json +1 -1
- package/package.json +1 -1
|
@@ -154,12 +154,14 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
154
154
|
color: string;
|
|
155
155
|
type: string;
|
|
156
156
|
}): void;
|
|
157
|
-
drawSingleBarEventsGroup({ type, eventsGroup, index, milestone, height, }: {
|
|
157
|
+
drawSingleBarEventsGroup({ type, eventsGroup, index, milestone, height, dots, dotsSize, }: {
|
|
158
158
|
type: string;
|
|
159
159
|
eventsGroup: TimelineEventsGroup;
|
|
160
160
|
index?: number | undefined;
|
|
161
161
|
milestone?: boolean | undefined;
|
|
162
162
|
height?: number | undefined;
|
|
163
|
+
dots?: boolean | undefined;
|
|
164
|
+
dotsSize?: number | undefined;
|
|
163
165
|
}): void;
|
|
164
166
|
drawBarEventsGroups(): void;
|
|
165
167
|
drawMilestonesPlaceholder(): void;
|
|
@@ -183,12 +185,14 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
183
185
|
color: string;
|
|
184
186
|
height?: number | undefined;
|
|
185
187
|
}): void;
|
|
186
|
-
drawBars({ events, gElement, yPosition, color, type, }: {
|
|
188
|
+
drawBars({ events, gElement, yPosition, color, type, dots, dotsSize, }: {
|
|
187
189
|
events: TimelineEvent[];
|
|
188
190
|
gElement: d3.Selection<SVGGElement, any, any, any>;
|
|
189
191
|
yPosition: number;
|
|
190
192
|
color: string;
|
|
191
193
|
type: string;
|
|
194
|
+
dots?: boolean | undefined;
|
|
195
|
+
dotsSize?: number | undefined;
|
|
192
196
|
}): void;
|
|
193
197
|
drawBarsChart({ events, gElement, color, yOffset, type, index, }: {
|
|
194
198
|
events: TimelineEvent[];
|
package/dist/src/index.d.ts
CHANGED
|
@@ -327,12 +327,14 @@ export declare const components: {
|
|
|
327
327
|
color: string;
|
|
328
328
|
type: string;
|
|
329
329
|
}): void;
|
|
330
|
-
drawSingleBarEventsGroup({ type, eventsGroup, index, milestone, height, }: {
|
|
330
|
+
drawSingleBarEventsGroup({ type, eventsGroup, index, milestone, height, dots, dotsSize, }: {
|
|
331
331
|
type: string;
|
|
332
332
|
eventsGroup: import('./types').TimelineEventsGroup;
|
|
333
333
|
index?: number | undefined;
|
|
334
334
|
milestone?: boolean | undefined;
|
|
335
335
|
height?: number | undefined;
|
|
336
|
+
dots?: boolean | undefined;
|
|
337
|
+
dotsSize?: number | undefined;
|
|
336
338
|
}): void;
|
|
337
339
|
drawBarEventsGroups(): void;
|
|
338
340
|
drawMilestonesPlaceholder(): void;
|
|
@@ -356,12 +358,14 @@ export declare const components: {
|
|
|
356
358
|
color: string;
|
|
357
359
|
height?: number | undefined;
|
|
358
360
|
}): void;
|
|
359
|
-
drawBars({ events, gElement, yPosition, color, type, }: {
|
|
361
|
+
drawBars({ events, gElement, yPosition, color, type, dots, dotsSize, }: {
|
|
360
362
|
events: import('./types').TimelineEvent[];
|
|
361
363
|
gElement: import("d3-selection").Selection<SVGGElement, any, any, any>;
|
|
362
364
|
yPosition: number;
|
|
363
365
|
color: string;
|
|
364
366
|
type: string;
|
|
367
|
+
dots?: boolean | undefined;
|
|
368
|
+
dotsSize?: number | undefined;
|
|
365
369
|
}): void;
|
|
366
370
|
drawBarsChart({ events, gElement, color, yOffset, type, index, }: {
|
|
367
371
|
events: import('./types').TimelineEvent[];
|
package/dist/src/types.d.ts
CHANGED
|
@@ -79,6 +79,7 @@ export type TimelineMilestoneEvent = {
|
|
|
79
79
|
export type TimelineEvent = TimelineBarEvent | TimelineRangeEvent | TimelineCountEvent | TimelineMilestoneEvent;
|
|
80
80
|
export declare enum TimelineChartType {
|
|
81
81
|
bars = "bars",
|
|
82
|
+
dots = "dots",
|
|
82
83
|
lineGraph = "lineGraph",
|
|
83
84
|
barChart = "barGraph",
|
|
84
85
|
milestones = "milestones"
|
|
@@ -96,6 +97,7 @@ export type TimelineEventsGroup = {
|
|
|
96
97
|
milestonesLineHeight?: number;
|
|
97
98
|
milestonesDotSize?: number;
|
|
98
99
|
height?: number;
|
|
100
|
+
dotsSize?: number;
|
|
99
101
|
};
|
|
100
102
|
export type TimelineEventsByType = {
|
|
101
103
|
[eventsType: string]: TimelineEventsGroup;
|
package/dist/web-types.json
CHANGED