@evercam/ui 0.0.63 → 0.0.65
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 +24 -0
- package/dist/components/EFlagIcon.vue.d.ts +3 -0
- package/dist/components/EImagesComparator.vue.d.ts +31 -0
- package/dist/components/ETimeline.vue.d.ts +9 -2
- package/dist/components/svgIcons/Robot.vue.d.ts +3 -0
- package/dist/index.d.ts +44 -3
- package/dist/index.mjs +2270 -1664
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +23 -23
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/styles.css +74 -0
- package/dist/tags.json +16 -1
- package/dist/web-types.json +79 -2
- package/package.json +4 -2
package/dist/attributes.json
CHANGED
|
@@ -460,6 +460,11 @@
|
|
|
460
460
|
"description": "",
|
|
461
461
|
"default": false
|
|
462
462
|
},
|
|
463
|
+
"ETimeline/tooltip-position": {
|
|
464
|
+
"type": "string",
|
|
465
|
+
"description": "",
|
|
466
|
+
"default": "top"
|
|
467
|
+
},
|
|
463
468
|
"EVideoEmbed/video-url": {
|
|
464
469
|
"type": "string",
|
|
465
470
|
"description": ""
|
|
@@ -579,6 +584,21 @@
|
|
|
579
584
|
"description": "",
|
|
580
585
|
"default": 50
|
|
581
586
|
},
|
|
587
|
+
"EImagesComparator/before-image-src": {
|
|
588
|
+
"type": "string",
|
|
589
|
+
"description": "",
|
|
590
|
+
"default": null
|
|
591
|
+
},
|
|
592
|
+
"EImagesComparator/after-image-src": {
|
|
593
|
+
"type": "string",
|
|
594
|
+
"description": "",
|
|
595
|
+
"default": null
|
|
596
|
+
},
|
|
597
|
+
"EImagesComparator/is-loading": {
|
|
598
|
+
"type": "boolean",
|
|
599
|
+
"description": "",
|
|
600
|
+
"default": false
|
|
601
|
+
},
|
|
582
602
|
"EToggleSwitch/options": {
|
|
583
603
|
"type": "array",
|
|
584
604
|
"description": ""
|
|
@@ -671,5 +691,9 @@
|
|
|
671
691
|
"type": "string",
|
|
672
692
|
"description": "",
|
|
673
693
|
"default": ""
|
|
694
|
+
},
|
|
695
|
+
"EFlagIcon/code": {
|
|
696
|
+
"type": "string",
|
|
697
|
+
"description": ""
|
|
674
698
|
}
|
|
675
699
|
}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import Vue from "vue";
|
|
2
|
+
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>>, {}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
3
|
+
export default _default;
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import Vue from "vue";
|
|
2
|
+
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>>, {
|
|
3
|
+
separatorPositionX: number;
|
|
4
|
+
startSeparatorPositionX: number;
|
|
5
|
+
computedImageDimension: Record<string, any>;
|
|
6
|
+
isSeparatorDragging: boolean;
|
|
7
|
+
watermarkDimension: Record<string, any>;
|
|
8
|
+
touchIdentifier: number | null;
|
|
9
|
+
startTouchX: number;
|
|
10
|
+
containerRect: DOMRect;
|
|
11
|
+
container: HTMLElement;
|
|
12
|
+
afterImage: HTMLImageElement;
|
|
13
|
+
}, {
|
|
14
|
+
handleResize(): void;
|
|
15
|
+
handleWatermarkResize(): void;
|
|
16
|
+
handleMouseMove(event: MouseEvent): void;
|
|
17
|
+
handleMouseDown(): void;
|
|
18
|
+
handleMouseUp(): void;
|
|
19
|
+
handleTouchStart(event: TouchEvent): void;
|
|
20
|
+
handleTouchMove(event: TouchEvent): void;
|
|
21
|
+
handleTouchEnd(event: TouchEvent): void;
|
|
22
|
+
}, {
|
|
23
|
+
clipStyle: Record<string, string>;
|
|
24
|
+
contentStyle: Record<string, string>;
|
|
25
|
+
imageSizeClasses: "e-w-full e-h-full" | "e-w-0 e-h-0";
|
|
26
|
+
}, {
|
|
27
|
+
beforeImageSrc: string;
|
|
28
|
+
afterImageSrc: string;
|
|
29
|
+
isLoading: boolean;
|
|
30
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
31
|
+
export default _default;
|
|
@@ -74,19 +74,24 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
74
74
|
initTimeline(startDate?: string, endDate?: string): void;
|
|
75
75
|
initRefs(): void;
|
|
76
76
|
initOrUpdateSvg(): void;
|
|
77
|
-
|
|
77
|
+
initOrUpdateDefs(): void;
|
|
78
78
|
initUtcOffset(): void;
|
|
79
79
|
initTimeScale(start?: string, end?: string): void;
|
|
80
80
|
initXAxes(): void;
|
|
81
81
|
updateXAxes(): void;
|
|
82
82
|
initYScale(): void;
|
|
83
|
-
|
|
83
|
+
updateYScale(): void;
|
|
84
84
|
initZoomBehavior(): void;
|
|
85
85
|
zoomToFitMarkers(): void;
|
|
86
86
|
zoomToTargetInterval(start?: string | number, end?: string | number): void;
|
|
87
87
|
translateIntervalIntoView(minTimestamp: number, maxTimestamp: number, scaleFactor: number): void;
|
|
88
88
|
initSelectedTimestampCursor(): void;
|
|
89
89
|
updateMarkers(): void;
|
|
90
|
+
selectOrAppend({ parent, targetId, targetType, }: {
|
|
91
|
+
parent: any;
|
|
92
|
+
selector: string;
|
|
93
|
+
nodeType: string;
|
|
94
|
+
}): any;
|
|
90
95
|
updateAndRedrawTimeline(): void;
|
|
91
96
|
clearTimeline(): void;
|
|
92
97
|
repositionSelectedTimestampCursor(): void;
|
|
@@ -286,6 +291,7 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
286
291
|
hiddenGroupsLabels: string[];
|
|
287
292
|
minHoverZone: number;
|
|
288
293
|
sortedMarkers: TimelineMarker[];
|
|
294
|
+
maxVisibleCount: number;
|
|
289
295
|
}, {
|
|
290
296
|
eventsGroups: {};
|
|
291
297
|
xAxesConfig: TimelineAxesConfig;
|
|
@@ -328,5 +334,6 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
328
334
|
locked: boolean;
|
|
329
335
|
timezone: string | undefined;
|
|
330
336
|
stopClickPropagation: boolean;
|
|
337
|
+
tooltipPosition: string;
|
|
331
338
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
332
339
|
export default _default;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
import Vue from "vue";
|
|
2
|
+
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>>, unknown, unknown, unknown, Record<never, any>, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
3
|
+
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -12,8 +12,11 @@ import EHoursHeatmap from './components/EHoursHeatmap.vue';
|
|
|
12
12
|
import EReadMore from './components/EReadMore.vue';
|
|
13
13
|
import ETruncatedDiv from './components/ETruncatedDiv.vue';
|
|
14
14
|
import ECompareSeparator from './components/ECompareSeparator.vue';
|
|
15
|
+
import EImagesComparator from './components/EImagesComparator.vue';
|
|
15
16
|
import EExpandableMenu from './components/EExpandableMenu.vue';
|
|
16
17
|
import ESvgIcon from './components/ESvgIcon.vue';
|
|
18
|
+
import ECalendarHeatmap from './components/ECalendarHeatmap.vue';
|
|
19
|
+
import EFlagIcon from './components/EFlagIcon.vue';
|
|
17
20
|
import EToggleSwitch from './components/EToggleSwitch.vue';
|
|
18
21
|
import EZoomable from './components/EZoomable.vue';
|
|
19
22
|
import { VueConstructor } from "vue";
|
|
@@ -281,19 +284,24 @@ export declare const components: {
|
|
|
281
284
|
initTimeline(startDate?: string | undefined, endDate?: string | undefined): void;
|
|
282
285
|
initRefs(): void;
|
|
283
286
|
initOrUpdateSvg(): void;
|
|
284
|
-
|
|
287
|
+
initOrUpdateDefs(): void;
|
|
285
288
|
initUtcOffset(): void;
|
|
286
289
|
initTimeScale(start?: string | undefined, end?: string | undefined): void;
|
|
287
290
|
initXAxes(): void;
|
|
288
291
|
updateXAxes(): void;
|
|
289
292
|
initYScale(): void;
|
|
290
|
-
|
|
293
|
+
updateYScale(): void;
|
|
291
294
|
initZoomBehavior(): void;
|
|
292
295
|
zoomToFitMarkers(): void;
|
|
293
296
|
zoomToTargetInterval(start?: string | number | undefined, end?: string | number | undefined): void;
|
|
294
297
|
translateIntervalIntoView(minTimestamp: number, maxTimestamp: number, scaleFactor: number): void;
|
|
295
298
|
initSelectedTimestampCursor(): void;
|
|
296
299
|
updateMarkers(): void;
|
|
300
|
+
selectOrAppend({ parent, targetId, targetType, }: {
|
|
301
|
+
parent: any;
|
|
302
|
+
selector: string;
|
|
303
|
+
nodeType: string;
|
|
304
|
+
}): any;
|
|
297
305
|
updateAndRedrawTimeline(): void;
|
|
298
306
|
clearTimeline(): void;
|
|
299
307
|
repositionSelectedTimestampCursor(): void;
|
|
@@ -493,6 +501,7 @@ export declare const components: {
|
|
|
493
501
|
hiddenGroupsLabels: string[];
|
|
494
502
|
minHoverZone: number;
|
|
495
503
|
sortedMarkers: import('./types').TimelineMarker[];
|
|
504
|
+
maxVisibleCount: number;
|
|
496
505
|
}, {
|
|
497
506
|
eventsGroups: {};
|
|
498
507
|
xAxesConfig: import('./types').TimelineAxesConfig;
|
|
@@ -535,6 +544,7 @@ export declare const components: {
|
|
|
535
544
|
locked: boolean;
|
|
536
545
|
timezone: string | undefined;
|
|
537
546
|
stopClickPropagation: boolean;
|
|
547
|
+
tooltipPosition: string;
|
|
538
548
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
539
549
|
EVideoEmbed: 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>>, unknown, unknown, {
|
|
540
550
|
videoId: string | undefined;
|
|
@@ -609,6 +619,35 @@ export declare const components: {
|
|
|
609
619
|
}, {
|
|
610
620
|
xOffset: string | number;
|
|
611
621
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
622
|
+
EImagesComparator: 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>>, {
|
|
623
|
+
separatorPositionX: number;
|
|
624
|
+
startSeparatorPositionX: number;
|
|
625
|
+
computedImageDimension: Record<string, any>;
|
|
626
|
+
isSeparatorDragging: boolean;
|
|
627
|
+
watermarkDimension: Record<string, any>;
|
|
628
|
+
touchIdentifier: number | null;
|
|
629
|
+
startTouchX: number;
|
|
630
|
+
containerRect: DOMRect;
|
|
631
|
+
container: HTMLElement;
|
|
632
|
+
afterImage: HTMLImageElement;
|
|
633
|
+
}, {
|
|
634
|
+
handleResize(): void;
|
|
635
|
+
handleWatermarkResize(): void;
|
|
636
|
+
handleMouseMove(event: MouseEvent): void;
|
|
637
|
+
handleMouseDown(): void;
|
|
638
|
+
handleMouseUp(): void;
|
|
639
|
+
handleTouchStart(event: TouchEvent): void;
|
|
640
|
+
handleTouchMove(event: TouchEvent): void;
|
|
641
|
+
handleTouchEnd(event: TouchEvent): void;
|
|
642
|
+
}, {
|
|
643
|
+
clipStyle: Record<string, string>;
|
|
644
|
+
contentStyle: Record<string, string>;
|
|
645
|
+
imageSizeClasses: "e-w-full e-h-full" | "e-w-0 e-h-0";
|
|
646
|
+
}, {
|
|
647
|
+
beforeImageSrc: string;
|
|
648
|
+
afterImageSrc: string;
|
|
649
|
+
isLoading: boolean;
|
|
650
|
+
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
612
651
|
EToggleSwitch: 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>>, {
|
|
613
652
|
value: any;
|
|
614
653
|
}, {
|
|
@@ -739,12 +778,14 @@ export declare const components: {
|
|
|
739
778
|
}, {
|
|
740
779
|
icon: string;
|
|
741
780
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
781
|
+
ECalendarHeatmap: any;
|
|
782
|
+
EFlagIcon: 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>>, {}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
742
783
|
};
|
|
743
784
|
declare const _default: {
|
|
744
785
|
install(Vue: VueConstructor): void;
|
|
745
786
|
};
|
|
746
787
|
export default _default;
|
|
747
|
-
export { EAvatar, EBadge, EIcon, ESpinner, ERow, ECol, EVideoPlayer, ETimeline, EVideoEmbed, EHeatmapBar, EHoursHeatmap, EReadMore, ETruncatedDiv, ECompareSeparator, EToggleSwitch, EExpandableMenu, EZoomable, EGlobalSearch, ESvgIcon, };
|
|
788
|
+
export { EAvatar, EBadge, EIcon, ESpinner, ERow, ECol, EVideoPlayer, ETimeline, EVideoEmbed, EHeatmapBar, EHoursHeatmap, EReadMore, ETruncatedDiv, ECompareSeparator, EImagesComparator, EToggleSwitch, EExpandableMenu, EZoomable, EGlobalSearch, ESvgIcon, ECalendarHeatmap, EFlagIcon, };
|
|
748
789
|
export * from './constants';
|
|
749
790
|
export * from './types';
|
|
750
791
|
export * from './utils';
|