@evercam/ui 0.0.47-beta.4 → 0.0.48
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/attributes.json +6 -1
- package/dist/index.mjs +585 -478
- 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 +9 -4
- package/dist/src/components/EVideoEmbed.vue.d.ts +45 -0
- package/dist/src/index.d.ts +54 -5
- package/dist/src/types.d.ts +3 -0
- package/dist/src/utils.d.ts +3 -2
- package/dist/style.css +1 -1
- package/dist/styles.css +3 -0
- package/dist/tags.json +2 -1
- package/dist/web-types.json +22 -3
- package/package.json +3 -3
|
@@ -2,7 +2,7 @@ import * as d3 from "d3";
|
|
|
2
2
|
import Vue from "vue";
|
|
3
3
|
import { D3ZoomEvent } from "d3";
|
|
4
4
|
import { TimelineAxesConfig, TimelineAxis, TimelineTicksConfig, Timestamp, TimelineCountEvent, TimelineEvent, TimelineEventsByType } from '../types';
|
|
5
|
-
|
|
5
|
+
type TimelinePrecision = "hour" | "day" | "week" | "month" | "year";
|
|
6
6
|
declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => Vue<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
7
7
|
tooltip: HTMLElement;
|
|
8
8
|
cursor: HTMLElement;
|
|
@@ -17,7 +17,6 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
17
17
|
zoomBehavior: d3.ZoomBehavior<SVGSVGElement, unknown>;
|
|
18
18
|
isMouseDown: boolean;
|
|
19
19
|
axisHeight: number;
|
|
20
|
-
eventGroupPadding: number;
|
|
21
20
|
isHoveringEvent: boolean;
|
|
22
21
|
hoveredEvent: TimelineEvent;
|
|
23
22
|
isHoveringTimeline: boolean;
|
|
@@ -47,6 +46,9 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
47
46
|
rightCurtainWidth: number;
|
|
48
47
|
isHoveringCurtain: boolean;
|
|
49
48
|
isDraggingCurtain: boolean;
|
|
49
|
+
characterWidth: number;
|
|
50
|
+
textPadding: number;
|
|
51
|
+
debouncedOnResize: Function;
|
|
50
52
|
}, {
|
|
51
53
|
initTimeline(startDate?: string, endDate?: string): void;
|
|
52
54
|
initRefs(): void;
|
|
@@ -101,6 +103,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
101
103
|
updateLineGraphHoverZones(): void;
|
|
102
104
|
getEventRectX(d: TimelineEvent): any;
|
|
103
105
|
getEventRectWidth(d: TimelineEvent): number;
|
|
106
|
+
getEventText(e: TimelineEvent): string;
|
|
104
107
|
initCurtains(): void;
|
|
105
108
|
drawEventsGroups(): void;
|
|
106
109
|
drawLineGraphEventsGroups(): void;
|
|
@@ -141,7 +144,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
141
144
|
color: string;
|
|
142
145
|
label: string;
|
|
143
146
|
}): void;
|
|
144
|
-
getTextFillColor(baseColor: string): string;
|
|
147
|
+
getTextFillColor(baseColor: string, k?: number): string;
|
|
145
148
|
getLabelBackgroundColor(baseColor: string): string;
|
|
146
149
|
tzStringToDate(timestamp: Timestamp): Date;
|
|
147
150
|
dateToTzString(date: Date): string;
|
|
@@ -156,6 +159,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
156
159
|
})[];
|
|
157
160
|
fillEvents(events: TimelineEvent[]): TimelineEvent[];
|
|
158
161
|
}, {
|
|
162
|
+
barChartHeight: number;
|
|
159
163
|
classes: Record<string, string | Record<string, boolean>>;
|
|
160
164
|
lineGraphGroups: TimelineEventsByType;
|
|
161
165
|
lineGraphChartHeight: number;
|
|
@@ -186,7 +190,8 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
186
190
|
curtains: boolean;
|
|
187
191
|
showLabels: boolean;
|
|
188
192
|
rectMinWidth: number;
|
|
189
|
-
|
|
193
|
+
barHeight: number;
|
|
194
|
+
barYPadding: number;
|
|
190
195
|
lineGraphMinHeight: number;
|
|
191
196
|
minZoom: number;
|
|
192
197
|
maxZoom: number;
|
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
import { PropType } from "vue";
|
|
2
|
+
declare const _default: import("vue").DefineComponent<{
|
|
3
|
+
videoUrl: {
|
|
4
|
+
type: StringConstructor;
|
|
5
|
+
required: true;
|
|
6
|
+
};
|
|
7
|
+
platform: {
|
|
8
|
+
type: PropType<"youtube" | "vimeo">;
|
|
9
|
+
required: true;
|
|
10
|
+
validator: (value: string) => boolean;
|
|
11
|
+
};
|
|
12
|
+
iframeListeners: {
|
|
13
|
+
type: PropType<Partial<HTMLIFrameElement>>;
|
|
14
|
+
default: () => {};
|
|
15
|
+
};
|
|
16
|
+
iframeOptions: {
|
|
17
|
+
type: ObjectConstructor;
|
|
18
|
+
default: () => {};
|
|
19
|
+
};
|
|
20
|
+
}, {}, {}, {
|
|
21
|
+
videoId(): string | undefined;
|
|
22
|
+
embedUrl(): string;
|
|
23
|
+
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
24
|
+
videoUrl: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
platform: {
|
|
29
|
+
type: PropType<"youtube" | "vimeo">;
|
|
30
|
+
required: true;
|
|
31
|
+
validator: (value: string) => boolean;
|
|
32
|
+
};
|
|
33
|
+
iframeListeners: {
|
|
34
|
+
type: PropType<Partial<HTMLIFrameElement>>;
|
|
35
|
+
default: () => {};
|
|
36
|
+
};
|
|
37
|
+
iframeOptions: {
|
|
38
|
+
type: ObjectConstructor;
|
|
39
|
+
default: () => {};
|
|
40
|
+
};
|
|
41
|
+
}>>, {
|
|
42
|
+
iframeListeners: Partial<HTMLIFrameElement>;
|
|
43
|
+
iframeOptions: Record<string, any>;
|
|
44
|
+
}>;
|
|
45
|
+
export default _default;
|
package/dist/src/index.d.ts
CHANGED
|
@@ -6,6 +6,7 @@ import ERow from './components/ERow.vue';
|
|
|
6
6
|
import ECol from './components/ECol.vue';
|
|
7
7
|
import EVideoPlayer from './components/EVideoPlayer.vue';
|
|
8
8
|
import ETimeline from './components/ETimeline.vue';
|
|
9
|
+
import EVideoEmbed from './components/EVideoEmbed.vue';
|
|
9
10
|
import { VueConstructor } from "vue";
|
|
10
11
|
export declare const components: {
|
|
11
12
|
EAvatar: import("vue/types/vue").ExtendedVue<import("vue").default<Record<string, any>, Record<string, any>, never, never, (event: string, ...args: any[]) => import("vue").default<Record<string, any>, Record<string, any>, never, never, any>>, {
|
|
@@ -184,7 +185,6 @@ export declare const components: {
|
|
|
184
185
|
zoomBehavior: import("d3-zoom").ZoomBehavior<SVGSVGElement, unknown>;
|
|
185
186
|
isMouseDown: boolean;
|
|
186
187
|
axisHeight: number;
|
|
187
|
-
eventGroupPadding: number;
|
|
188
188
|
isHoveringEvent: boolean;
|
|
189
189
|
hoveredEvent: import('./types').TimelineEvent;
|
|
190
190
|
isHoveringTimeline: boolean;
|
|
@@ -214,6 +214,9 @@ export declare const components: {
|
|
|
214
214
|
rightCurtainWidth: number;
|
|
215
215
|
isHoveringCurtain: boolean;
|
|
216
216
|
isDraggingCurtain: boolean;
|
|
217
|
+
characterWidth: number;
|
|
218
|
+
textPadding: number;
|
|
219
|
+
debouncedOnResize: Function;
|
|
217
220
|
}, {
|
|
218
221
|
initTimeline(startDate?: string | undefined, endDate?: string | undefined): void;
|
|
219
222
|
initRefs(): void;
|
|
@@ -268,6 +271,7 @@ export declare const components: {
|
|
|
268
271
|
updateLineGraphHoverZones(): void;
|
|
269
272
|
getEventRectX(d: import('./types').TimelineEvent): any;
|
|
270
273
|
getEventRectWidth(d: import('./types').TimelineEvent): number;
|
|
274
|
+
getEventText(e: import('./types').TimelineEvent): string;
|
|
271
275
|
initCurtains(): void;
|
|
272
276
|
drawEventsGroups(): void;
|
|
273
277
|
drawLineGraphEventsGroups(): void;
|
|
@@ -308,7 +312,7 @@ export declare const components: {
|
|
|
308
312
|
color: string;
|
|
309
313
|
label: string;
|
|
310
314
|
}): void;
|
|
311
|
-
getTextFillColor(baseColor: string): string;
|
|
315
|
+
getTextFillColor(baseColor: string, k?: number): string;
|
|
312
316
|
getLabelBackgroundColor(baseColor: string): string;
|
|
313
317
|
tzStringToDate(timestamp: import('./types').Timestamp): Date;
|
|
314
318
|
dateToTzString(date: Date): string;
|
|
@@ -323,6 +327,7 @@ export declare const components: {
|
|
|
323
327
|
})[];
|
|
324
328
|
fillEvents(events: import('./types').TimelineEvent[]): import('./types').TimelineEvent[];
|
|
325
329
|
}, {
|
|
330
|
+
barChartHeight: number;
|
|
326
331
|
classes: Record<string, string | Record<string, boolean>>;
|
|
327
332
|
lineGraphGroups: import('./types').TimelineEventsByType;
|
|
328
333
|
lineGraphChartHeight: number;
|
|
@@ -348,23 +353,67 @@ export declare const components: {
|
|
|
348
353
|
selectedTimestamp: string;
|
|
349
354
|
showEventTooltip: boolean;
|
|
350
355
|
disableZoom: boolean;
|
|
351
|
-
insertZerosAtInterval:
|
|
356
|
+
insertZerosAtInterval: "hour" | "day" | "week" | "month" | "year";
|
|
352
357
|
flattenLineGraphEnds: boolean;
|
|
353
358
|
curtains: boolean;
|
|
354
359
|
showLabels: boolean;
|
|
355
360
|
rectMinWidth: number;
|
|
356
|
-
|
|
361
|
+
barHeight: number;
|
|
362
|
+
barYPadding: number;
|
|
357
363
|
lineGraphMinHeight: number;
|
|
358
364
|
minZoom: number;
|
|
359
365
|
maxZoom: number;
|
|
360
366
|
cursorTimestamp: string | undefined;
|
|
361
367
|
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin>;
|
|
368
|
+
EVideoEmbed: import("vue").DefineComponent<{
|
|
369
|
+
videoUrl: {
|
|
370
|
+
type: StringConstructor;
|
|
371
|
+
required: true;
|
|
372
|
+
};
|
|
373
|
+
platform: {
|
|
374
|
+
type: import("vue").PropType<"youtube" | "vimeo">;
|
|
375
|
+
required: true;
|
|
376
|
+
validator: (value: string) => boolean;
|
|
377
|
+
};
|
|
378
|
+
iframeListeners: {
|
|
379
|
+
type: import("vue").PropType<Partial<HTMLIFrameElement>>;
|
|
380
|
+
default: () => {};
|
|
381
|
+
};
|
|
382
|
+
iframeOptions: {
|
|
383
|
+
type: ObjectConstructor;
|
|
384
|
+
default: () => {};
|
|
385
|
+
};
|
|
386
|
+
}, {}, {}, {
|
|
387
|
+
videoId(): string | undefined;
|
|
388
|
+
embedUrl(): string;
|
|
389
|
+
}, {}, import("vue/types/v3-component-options").ComponentOptionsMixin, import("vue/types/v3-component-options").ComponentOptionsMixin, {}, string, Readonly<import("vue").ExtractPropTypes<{
|
|
390
|
+
videoUrl: {
|
|
391
|
+
type: StringConstructor;
|
|
392
|
+
required: true;
|
|
393
|
+
};
|
|
394
|
+
platform: {
|
|
395
|
+
type: import("vue").PropType<"youtube" | "vimeo">;
|
|
396
|
+
required: true;
|
|
397
|
+
validator: (value: string) => boolean;
|
|
398
|
+
};
|
|
399
|
+
iframeListeners: {
|
|
400
|
+
type: import("vue").PropType<Partial<HTMLIFrameElement>>;
|
|
401
|
+
default: () => {};
|
|
402
|
+
};
|
|
403
|
+
iframeOptions: {
|
|
404
|
+
type: ObjectConstructor;
|
|
405
|
+
default: () => {};
|
|
406
|
+
};
|
|
407
|
+
}>>, {
|
|
408
|
+
iframeListeners: Partial<HTMLIFrameElement>;
|
|
409
|
+
iframeOptions: Record<string, any>;
|
|
410
|
+
}>;
|
|
362
411
|
};
|
|
363
412
|
declare const _default: {
|
|
364
413
|
install(Vue: VueConstructor): void;
|
|
365
414
|
};
|
|
366
415
|
export default _default;
|
|
367
|
-
export { EAvatar, EBadge, EIcon, ESpinner, ERow, ECol, EVideoPlayer, ETimeline };
|
|
416
|
+
export { EAvatar, EBadge, EIcon, ESpinner, ERow, ECol, EVideoPlayer, ETimeline, EVideoEmbed, };
|
|
368
417
|
export * from './constants';
|
|
369
418
|
export * from './types';
|
|
370
419
|
export * from './utils';
|
package/dist/src/types.d.ts
CHANGED
|
@@ -50,6 +50,8 @@ export type TimelineAxesConfig = {
|
|
|
50
50
|
export type Timestamp = Date | string | number;
|
|
51
51
|
export type TimelineBarEvent = {
|
|
52
52
|
timestamp: string | Date;
|
|
53
|
+
color?: string;
|
|
54
|
+
text?: string;
|
|
53
55
|
[key: string]: any;
|
|
54
56
|
};
|
|
55
57
|
export type TimelineRangeEvent = {
|
|
@@ -70,6 +72,7 @@ export declare enum TimelineChartType {
|
|
|
70
72
|
export type TimelineEventsGroup = {
|
|
71
73
|
label: string;
|
|
72
74
|
color: string;
|
|
75
|
+
bgColor?: string;
|
|
73
76
|
isLoading?: Boolean;
|
|
74
77
|
isHidden?: Boolean;
|
|
75
78
|
chartType?: TimelineChartType;
|
package/dist/src/utils.d.ts
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
1
|
export declare function isFullScreen(): boolean;
|
|
2
|
-
export declare function makeFullScreen(element: HTMLElement):
|
|
3
|
-
export declare function exitFullScreen():
|
|
2
|
+
export declare function makeFullScreen(element: HTMLElement): Promise<unknown> | undefined;
|
|
3
|
+
export declare function exitFullScreen(): Promise<unknown> | undefined;
|
|
4
|
+
export declare function debounce<T extends (...args: any[]) => any>(func: T, wait?: number): (...args: Parameters<T>) => void;
|
package/dist/style.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.e-spinner[data-v-29711f67]{vertical-align:center}.e-spinner__primary[data-v-29711f67],.e-spinner__secondary[data-v-29711f67]{stroke-width:0;animation:fade-29711f67;animation-iteration-count:infinite}@keyframes fade-29711f67{0%{fill-opacity:0}50%{fill-opacity:1}to{fill-opacity:0}}.e-row.e-row--no-gutters{margin:0}.e-row.e-row--no-gutters>.e-col{padding:0}.e-col{padding:.75rem}.spinner-container[data-v-
|
|
1
|
+
.e-spinner[data-v-29711f67]{vertical-align:center}.e-spinner__primary[data-v-29711f67],.e-spinner__secondary[data-v-29711f67]{stroke-width:0;animation:fade-29711f67;animation-iteration-count:infinite}@keyframes fade-29711f67{0%{fill-opacity:0}50%{fill-opacity:1}to{fill-opacity:0}}.e-row.e-row--no-gutters{margin:0}.e-row.e-row--no-gutters>.e-col{padding:0}.e-col{padding:.75rem}.spinner-container[data-v-dd8ff405]{position:absolute;background:linear-gradient(to top,rgba(0,0,0,.65),transparent);inset:0;display:flex;justify-content:center;align-items:center;vertical-align:middle}.video-container[data-v-dd8ff405]{position:relative;width:100%;height:100%;display:flex;flex-direction:column;justify-content:center;margin:0 auto}.video-container.full-screen[data-v-dd8ff405]{max-width:initial;width:100%;max-height:100vh}video[data-v-dd8ff405]{width:100%;height:inherit}.video-controls-container[data-v-dd8ff405]{position:absolute;bottom:0;left:0;right:0;color:#fff;z-index:100;opacity:0;transition:opacity .15s ease-in-out}.hide[data-v-dd8ff405]{display:none}.video-controls-container[data-v-dd8ff405]:before{content:"";position:absolute;bottom:0;background:linear-gradient(to top,rgba(0,0,0,.75),transparent);width:100%;aspect-ratio:6 / 1;z-index:-1;pointer-events:none}.video-container:hover .video-controls-container[data-v-dd8ff405],.video-container:focus-within .video-controls-container[data-v-dd8ff405],.video-container.paused .video-controls-container[data-v-dd8ff405]{opacity:1}.video-controls-container .controls[data-v-dd8ff405]{display:flex;gap:.5rem;padding:.75rem 1rem;align-items:center;width:100%}.video-controls-container .controls button[data-v-dd8ff405]{background:none;border:none;color:inherit;padding:0;height:32px;width:32px;font-size:1.35rem;cursor:pointer;opacity:.85;transition:opacity .15s ease-in-out}.video-controls-container .controls button[data-v-dd8ff405]:hover{opacity:1}.duration-container[data-v-dd8ff405]{display:flex;align-items:center;gap:.25rem;flex-grow:1}.video-container.captions .captions-btn[data-v-dd8ff405]{border-bottom:3px solid red}.video-controls-container .controls button.wide-btn[data-v-dd8ff405]{width:50px}.timeline-container[data-v-dd8ff405]{width:100%;height:7px;margin-inline:.5rem;cursor:pointer;display:flex;align-items:center}.timeline[data-v-dd8ff405]{background-color:#64646480;height:3px;width:100%;position:relative}.timeline[data-v-dd8ff405]:before{content:"";position:absolute;left:0;top:0;bottom:0;right:calc(100% - var(--preview-position) * 100%);background-color:#969696;display:none}.timeline[data-v-dd8ff405]:after{content:"";position:absolute;left:0;top:0;bottom:0;right:calc(100% - var(--progress-position) * 100%);background-color:red}.timeline .thumb-indicator[data-v-dd8ff405]{--scale: 0;position:absolute;transform:translate(-50%) scale(var(--scale));height:200%;top:-50%;left:calc(var(--progress-position) * 100%);background-color:red;border-radius:50%;transition:transform .15s ease-in-out;aspect-ratio:1 / 1}.video-container.scrubbing .thumbnail-img[data-v-dd8ff405]{display:block}.video-container.scrubbing .timeline[data-v-dd8ff405]:before,.timeline-container:hover .timeline[data-v-dd8ff405]:before{display:block}.video-container.scrubbing .thumb-indicator[data-v-dd8ff405],.timeline-container:hover .thumb-indicator[data-v-dd8ff405]{--scale: 1}.video-container.scrubbing .timeline[data-v-dd8ff405],.timeline-container:hover .timeline[data-v-dd8ff405]{height:100%}.e-timeline svg{display:block}.e-timeline .x-axis-overview .domain,.e-timeline .x-axis-detailed .domain,.e-timeline .x-axis-overviewBackground .domain,.e-timeline .x-axis-detailedBackground .domain{display:none}.e-timeline .x-axis-detailedBackground .domain,.e-timeline .x-axis-detailedBackground text{display:none}.e-timeline .x-axis-overview>g.tick>line{opacity:.1;stroke-width:3;stroke-linecap:round}.e-timeline .x-axis-detailed>g.tick>line{opacity:.1;stroke-linecap:round}.e-timeline .x-axis-detailedBackground>g.tick>line{opacity:.075;stroke-linecap:round}.e-timeline--dark .tick line{stroke:#fff}.e-timeline--dark .tick text{fill:#fff}@keyframes moveGradient{0%{transform:translate(-50%)}to{transform:translate(100%)}}@keyframes pulse-rect{0%{filter:saturate(3.5) drop-shadow(0 0 1px #0008)}50%{filter:saturate(.5) drop-shadow(0 0 0 #0000)}to{filter:saturate(3.5) drop-shadow(0 0 1px #0008)}}@keyframes pulse-circle{0%{r:4px}50%{r:1px}to{r:4px}}.loading-indicator{animation:moveGradient 1.5s ease-in infinite}.line-graph-dot--active{animation:pulse-circle 1s ease-in-out infinite}.event-rect--hovered{animation:pulse-rect 1s ease-in-out infinite}@keyframes dash{0%{filter:saturate(1) drop-shadow(0 0 0 #0000)}50%{stroke-width:2px;filter:saturate(2.5) drop-shadow(0 0 0 #0006)}to{filter:saturate(1) drop-shadow(0 0 0 #0000)}}.line-graph-group--highlighted path{animation:dash 1s ease-in-out infinite}.e-timeline--dragging{cursor:ew-resize}.curtain{cursor:ew-resize;fill:#3332;stroke-width:1px;stroke:#3338;transition:stroke-width .2s}.e-timeline--dragging .curtain{stroke-width:3px}.e-timeline--dark .curtain{fill:#fff3;stroke:#fff7}.video-embed[data-v-0ecf4a71]{position:relative;width:100%!important;padding-bottom:56.25%}.video-embed iframe[data-v-0ecf4a71]{position:absolute;top:0;left:0;width:100%;height:100%}
|
package/dist/styles.css
CHANGED
package/dist/tags.json
CHANGED
package/dist/web-types.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"$schema": "http://json.schemastore.org/web-types",
|
|
3
3
|
"framework": "vue",
|
|
4
4
|
"name": "@evercam/ui",
|
|
5
|
-
"version": "0.0.
|
|
5
|
+
"version": "0.0.48",
|
|
6
6
|
"contributions": {
|
|
7
7
|
"html": {
|
|
8
8
|
"types-syntax": "typescript",
|
|
@@ -535,7 +535,7 @@
|
|
|
535
535
|
{
|
|
536
536
|
"name": "x-axes-config",
|
|
537
537
|
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
538
|
-
"default": "() =>
|
|
538
|
+
"default": "() => qt",
|
|
539
539
|
"value": {
|
|
540
540
|
"kind": "expression",
|
|
541
541
|
"type": "object"
|
|
@@ -641,7 +641,7 @@
|
|
|
641
641
|
}
|
|
642
642
|
},
|
|
643
643
|
{
|
|
644
|
-
"name": "bar-
|
|
644
|
+
"name": "bar-height",
|
|
645
645
|
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
646
646
|
"default": "18",
|
|
647
647
|
"value": {
|
|
@@ -649,6 +649,15 @@
|
|
|
649
649
|
"type": "number"
|
|
650
650
|
}
|
|
651
651
|
},
|
|
652
|
+
{
|
|
653
|
+
"name": "bar-ypadding",
|
|
654
|
+
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
655
|
+
"default": "0",
|
|
656
|
+
"value": {
|
|
657
|
+
"kind": "expression",
|
|
658
|
+
"type": "number"
|
|
659
|
+
}
|
|
660
|
+
},
|
|
652
661
|
{
|
|
653
662
|
"name": "line-graph-min-height",
|
|
654
663
|
"doc-url": "https://www.npmjs.com/package/@evercam/ui",
|
|
@@ -689,6 +698,16 @@
|
|
|
689
698
|
}
|
|
690
699
|
}
|
|
691
700
|
]
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
"name": "EVideoEmbed",
|
|
704
|
+
"source": {
|
|
705
|
+
"module": "./src/components/EVideoEmbed.vue",
|
|
706
|
+
"symbol": "EVideoEmbed"
|
|
707
|
+
},
|
|
708
|
+
"description": "",
|
|
709
|
+
"doc-url": "https://ui.evercam.io/",
|
|
710
|
+
"attributes": null
|
|
692
711
|
}
|
|
693
712
|
],
|
|
694
713
|
"attributes": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@evercam/ui",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.48",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"private": false,
|
|
6
6
|
"author": "Evercam - Constuction Cameras.",
|
|
@@ -65,8 +65,8 @@
|
|
|
65
65
|
"@fontsource-variable/inter": "^5.0.8",
|
|
66
66
|
"@fortawesome/fontawesome-free": "^5.15.3",
|
|
67
67
|
"d3": "^7.8.5",
|
|
68
|
-
"
|
|
69
|
-
"
|
|
68
|
+
"moment-timezone": "^0.5.43",
|
|
69
|
+
"vue": "^2.7.14"
|
|
70
70
|
},
|
|
71
71
|
"vetur": {
|
|
72
72
|
"tags": "dist/tags.json",
|