@evercam/ui 1.0.0-preview-compare-xray-e5e03fe78 → 1.0.0-preview-fix-gr-count-tl-date-selection-48630d989
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/README.md +0 -1
- package/dist/attributes.json +5 -20
- package/dist/components/EImagesComparator.vue.d.ts +11 -24
- package/dist/index.d.ts +12 -52
- package/dist/index.mjs +1595 -1769
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +16 -16
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +1 -1
- package/dist/styles.css +1 -1
- package/dist/tags.json +1 -10
- package/dist/web-types.json +4 -51
- package/package.json +1 -1
- package/dist/components/EDragResize.vue.d.ts +0 -28
package/README.md
CHANGED
package/dist/attributes.json
CHANGED
|
@@ -572,35 +572,20 @@
|
|
|
572
572
|
"description": "",
|
|
573
573
|
"default": 50
|
|
574
574
|
},
|
|
575
|
-
"EDragResize/bounds": {
|
|
576
|
-
"type": "object",
|
|
577
|
-
"description": ""
|
|
578
|
-
},
|
|
579
|
-
"EDragResize/initial": {
|
|
580
|
-
"type": "object",
|
|
581
|
-
"description": ""
|
|
582
|
-
},
|
|
583
575
|
"EImagesComparator/before-image-src": {
|
|
584
576
|
"type": "string",
|
|
585
|
-
"description": ""
|
|
577
|
+
"description": "",
|
|
578
|
+
"default": null
|
|
586
579
|
},
|
|
587
580
|
"EImagesComparator/after-image-src": {
|
|
588
581
|
"type": "string",
|
|
589
|
-
"description": ""
|
|
582
|
+
"description": "",
|
|
583
|
+
"default": null
|
|
590
584
|
},
|
|
591
585
|
"EImagesComparator/is-loading": {
|
|
592
586
|
"type": "boolean",
|
|
593
|
-
"description": ""
|
|
594
|
-
},
|
|
595
|
-
"EImagesComparator/mode": {
|
|
596
|
-
"type": "string",
|
|
597
587
|
"description": "",
|
|
598
|
-
"default":
|
|
599
|
-
},
|
|
600
|
-
"EImagesComparator/transparency": {
|
|
601
|
-
"type": "number",
|
|
602
|
-
"description": "",
|
|
603
|
-
"default": 0.5
|
|
588
|
+
"default": false
|
|
604
589
|
},
|
|
605
590
|
"EToggleSwitch/value": {
|
|
606
591
|
"type": "string|number|boolean|object|array",
|
|
@@ -1,44 +1,31 @@
|
|
|
1
1
|
import Vue from "vue";
|
|
2
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
3
|
separatorPositionX: number;
|
|
4
|
+
startSeparatorPositionX: number;
|
|
5
|
+
computedImageDimension: Record<string, any>;
|
|
4
6
|
isSeparatorDragging: boolean;
|
|
5
|
-
|
|
6
|
-
computedImageDimension: {
|
|
7
|
-
width: number;
|
|
8
|
-
height: number;
|
|
9
|
-
left: number;
|
|
10
|
-
top: number;
|
|
11
|
-
};
|
|
12
|
-
zoomState: {};
|
|
7
|
+
watermarkDimension: Record<string, any>;
|
|
13
8
|
touchIdentifier: number | null;
|
|
14
9
|
startTouchX: number;
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
y: number;
|
|
19
|
-
width: number;
|
|
20
|
-
height: number;
|
|
21
|
-
};
|
|
10
|
+
containerRect: DOMRect;
|
|
11
|
+
container: HTMLElement;
|
|
12
|
+
afterImage: HTMLImageElement;
|
|
22
13
|
}, {
|
|
23
|
-
onZoomChange(state: Record<string, any>): void;
|
|
24
14
|
handleResize(): void;
|
|
15
|
+
handleWatermarkResize(): void;
|
|
25
16
|
handleMouseMove(event: MouseEvent): void;
|
|
26
17
|
handleMouseDown(): void;
|
|
27
18
|
handleMouseUp(): void;
|
|
28
19
|
handleTouchStart(event: TouchEvent): void;
|
|
29
20
|
handleTouchMove(event: TouchEvent): void;
|
|
30
|
-
handleTouchEnd(): void;
|
|
31
|
-
handleWindowChange(state: any): void;
|
|
21
|
+
handleTouchEnd(event: TouchEvent): void;
|
|
32
22
|
}, {
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
watermarkStyle: Record<string, string>;
|
|
23
|
+
clipStyle: Record<string, string>;
|
|
24
|
+
contentStyle: Record<string, string>;
|
|
25
|
+
imageSizeClasses: "e-w-full e-h-full" | "e-w-0 e-h-0";
|
|
37
26
|
}, {
|
|
38
27
|
beforeImageSrc: string;
|
|
39
28
|
afterImageSrc: string;
|
|
40
29
|
isLoading: boolean;
|
|
41
|
-
mode: string;
|
|
42
|
-
transparency: number;
|
|
43
30
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
44
31
|
export default _default;
|
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,6 @@ 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 EDragResize from './components/EDragResize.vue';
|
|
16
15
|
import EImagesComparator from './components/EImagesComparator.vue';
|
|
17
16
|
import EExpandableMenu from './components/EExpandableMenu.vue';
|
|
18
17
|
import ESvgIcon from './components/ESvgIcon.vue';
|
|
@@ -481,73 +480,34 @@ export declare const components: {
|
|
|
481
480
|
}, {
|
|
482
481
|
xOffset: string | number;
|
|
483
482
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
484
|
-
EDragResize: 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>>, {
|
|
485
|
-
lens: any;
|
|
486
|
-
isDragging: boolean;
|
|
487
|
-
dragOffset: {
|
|
488
|
-
x: number;
|
|
489
|
-
y: number;
|
|
490
|
-
};
|
|
491
|
-
resizeHandles: string[];
|
|
492
|
-
currentHandle: null;
|
|
493
|
-
}, {
|
|
494
|
-
startDrag(e: MouseEvent | TouchEvent): void;
|
|
495
|
-
onDrag(e: MouseEvent | TouchEvent): void;
|
|
496
|
-
endDrag(): void;
|
|
497
|
-
startResize(handle: string, e: MouseEvent | TouchEvent): void;
|
|
498
|
-
onResize(e: MouseEvent | TouchEvent): void;
|
|
499
|
-
endResize(): void;
|
|
500
|
-
getPoint(e: MouseEvent | TouchEvent): {
|
|
501
|
-
x: number;
|
|
502
|
-
y: number;
|
|
503
|
-
};
|
|
504
|
-
}, {
|
|
505
|
-
windowStyle: Record<string, string>;
|
|
506
|
-
}, {
|
|
507
|
-
bounds: any;
|
|
508
|
-
initial: any;
|
|
509
|
-
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
510
483
|
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>>, {
|
|
511
484
|
separatorPositionX: number;
|
|
485
|
+
startSeparatorPositionX: number;
|
|
486
|
+
computedImageDimension: Record<string, any>;
|
|
512
487
|
isSeparatorDragging: boolean;
|
|
513
|
-
|
|
514
|
-
computedImageDimension: {
|
|
515
|
-
width: number;
|
|
516
|
-
height: number;
|
|
517
|
-
left: number;
|
|
518
|
-
top: number;
|
|
519
|
-
};
|
|
520
|
-
zoomState: {};
|
|
488
|
+
watermarkDimension: Record<string, any>;
|
|
521
489
|
touchIdentifier: number | null;
|
|
522
490
|
startTouchX: number;
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
y: number;
|
|
527
|
-
width: number;
|
|
528
|
-
height: number;
|
|
529
|
-
};
|
|
491
|
+
containerRect: DOMRect;
|
|
492
|
+
container: HTMLElement;
|
|
493
|
+
afterImage: HTMLImageElement;
|
|
530
494
|
}, {
|
|
531
|
-
onZoomChange(state: Record<string, any>): void;
|
|
532
495
|
handleResize(): void;
|
|
496
|
+
handleWatermarkResize(): void;
|
|
533
497
|
handleMouseMove(event: MouseEvent): void;
|
|
534
498
|
handleMouseDown(): void;
|
|
535
499
|
handleMouseUp(): void;
|
|
536
500
|
handleTouchStart(event: TouchEvent): void;
|
|
537
501
|
handleTouchMove(event: TouchEvent): void;
|
|
538
|
-
handleTouchEnd(): void;
|
|
539
|
-
handleWindowChange(state: any): void;
|
|
502
|
+
handleTouchEnd(event: TouchEvent): void;
|
|
540
503
|
}, {
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
watermarkStyle: Record<string, string>;
|
|
504
|
+
clipStyle: Record<string, string>;
|
|
505
|
+
contentStyle: Record<string, string>;
|
|
506
|
+
imageSizeClasses: "e-w-full e-h-full" | "e-w-0 e-h-0";
|
|
545
507
|
}, {
|
|
546
508
|
beforeImageSrc: string;
|
|
547
509
|
afterImageSrc: string;
|
|
548
510
|
isLoading: boolean;
|
|
549
|
-
mode: string;
|
|
550
|
-
transparency: number;
|
|
551
511
|
}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin>;
|
|
552
512
|
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>>, unknown, {
|
|
553
513
|
getButtonClasses(item: import('./types').ESelectionGroupOption): {
|
|
@@ -1348,7 +1308,7 @@ declare const _default: {
|
|
|
1348
1308
|
install(Vue: VueConstructor): void;
|
|
1349
1309
|
};
|
|
1350
1310
|
export default _default;
|
|
1351
|
-
export { EAvatar, EBadge, EIcon, ESpinner, ERow, ECol, EVideoPlayer, ETimeline, EVideoEmbed, EHeatmapBar, EHoursHeatmap, EReadMore, ETruncatedDiv, ECompareSeparator, EImagesComparator,
|
|
1311
|
+
export { EAvatar, EBadge, EIcon, ESpinner, ERow, ECol, EVideoPlayer, ETimeline, EVideoEmbed, EHeatmapBar, EHoursHeatmap, EReadMore, ETruncatedDiv, ECompareSeparator, EImagesComparator, EToggleSwitch, EExpandableMenu, EZoomable, EGlobalSearch, ESvgIcon, ECalendarHeatmap, EImagePlayer, EZoomableImg, EZoomSlider, EActionButton, ETooltip, ELayout, ECopyToClipboardBtn, EPopover, EVoiceRecorderToText, ERadioGroup, ESelect, ETabs, ESchedulePicker, };
|
|
1352
1312
|
export * from './constants';
|
|
1353
1313
|
export * from './types';
|
|
1354
1314
|
export * from './utils';
|