@evercam/ui 0.0.63-preview-player-layout-issue-2ad5fae29 → 0.0.63-preview-chatbot-ui-69c4cf2ad
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/components/EImagePlayer.vue.d.ts +8 -2
- package/dist/components/ELayout.vue.d.ts +0 -1
- package/dist/index.d.ts +7 -2
- package/dist/index.mjs +567 -573
- package/dist/index.mjs.map +1 -1
- package/dist/index.umd.js +12 -12
- package/dist/index.umd.js.map +1 -1
- package/dist/styles.css +99 -0
- package/dist/types.d.ts +11 -0
- package/dist/web-types.json +2 -2
- package/package.json +1 -1
|
@@ -74,10 +74,16 @@ declare const _default: import("vue/types/vue").ExtendedVue<Vue<Record<string, a
|
|
|
74
74
|
togglePlay(): void;
|
|
75
75
|
handleKeyDown(e: KeyboardEvent): void;
|
|
76
76
|
}, {
|
|
77
|
-
imgProps:
|
|
77
|
+
imgProps: {
|
|
78
|
+
id: string;
|
|
79
|
+
ref: string;
|
|
80
|
+
crossorigin: string;
|
|
81
|
+
class: string;
|
|
82
|
+
dataTestId: string;
|
|
83
|
+
};
|
|
78
84
|
playerDimensions: {
|
|
79
85
|
width: string;
|
|
80
|
-
height:
|
|
86
|
+
height: string | number;
|
|
81
87
|
};
|
|
82
88
|
isLastFrame: boolean;
|
|
83
89
|
altText: string;
|
package/dist/index.d.ts
CHANGED
|
@@ -862,7 +862,13 @@ export declare const components: {
|
|
|
862
862
|
togglePlay(): void;
|
|
863
863
|
handleKeyDown(e: KeyboardEvent): void;
|
|
864
864
|
}, {
|
|
865
|
-
imgProps:
|
|
865
|
+
imgProps: {
|
|
866
|
+
id: string;
|
|
867
|
+
ref: string;
|
|
868
|
+
crossorigin: string;
|
|
869
|
+
class: string;
|
|
870
|
+
dataTestId: string;
|
|
871
|
+
};
|
|
866
872
|
playerDimensions: {
|
|
867
873
|
width: string;
|
|
868
874
|
height: string | number;
|
|
@@ -1091,7 +1097,6 @@ export declare const components: {
|
|
|
1091
1097
|
width: string;
|
|
1092
1098
|
height: string;
|
|
1093
1099
|
};
|
|
1094
|
-
mainHeight: string;
|
|
1095
1100
|
}, {
|
|
1096
1101
|
onResize(): void;
|
|
1097
1102
|
onOverlayClick(e: Event): void;
|