@webitel/ui-sdk 25.12.30 → 25.12.32
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/img/sprite/index.js +3 -1
- package/dist/img/sprite/video-cam-off--filled.svg +3 -0
- package/dist/{install-D_xtJZB0.js → install-DPTNK_y8.js} +7311 -7275
- package/dist/{plyr-DNPJWtDF.js → plyr-S_HQR9HD.js} +1 -1
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +1 -1
- package/dist/ui-sdk.umd.cjs +724 -724
- package/dist/{vidstack-Bq6c3Bam-iboJqKVr.js → vidstack-Bq6c3Bam-7dUj8HJJ.js} +2 -2
- package/dist/{vidstack-D2pY00kU-Ct14APC8.js → vidstack-D2pY00kU-B4w_mKZl.js} +2 -2
- package/dist/{vidstack-DDXt6fpN-Dt79RJ4W.js → vidstack-DDXt6fpN-CDgv4Ulh.js} +1 -1
- package/dist/{vidstack-D_-9AA6_-DDXWcVDN.js → vidstack-D_-9AA6_-CT5H9lb4.js} +1 -1
- package/dist/{vidstack-DqAw8m9J-DRb_cwVy.js → vidstack-DqAw8m9J-Un0fJP1z.js} +1 -1
- package/dist/{vidstack-audio-ciWGdZoD.js → vidstack-audio-CiqSEu9s.js} +2 -2
- package/dist/{vidstack-dash-BjbkCaQh.js → vidstack-dash-X_IrTs8m.js} +3 -3
- package/dist/{vidstack-google-cast-BWfbN1oJ.js → vidstack-google-cast-DcYQ7uwa.js} +3 -3
- package/dist/{vidstack-hls-BqpGa4dW.js → vidstack-hls-2XBuX8OU.js} +3 -3
- package/dist/{vidstack-video-5xriTd1y.js → vidstack-video-BSFI-cVG.js} +2 -2
- package/dist/{vidstack-vimeo-BC8x2jc8.js → vidstack-vimeo-DgfVtsI6.js} +3 -3
- package/dist/{vidstack-youtube-B8OrDxFV.js → vidstack-youtube-RFa4SZBA.js} +2 -2
- package/dist/{vuex.esm-bundler-BOZ1SHXV.js → vuex.esm-bundler-D3tAy2Z7.js} +1 -1
- package/package.json +9 -1
- package/src/assets/icons/sprite/index.js +3 -1
- package/src/assets/icons/sprite/video-cam-off--filled.svg +3 -0
- package/src/components/wt-switcher/wt-switcher.vue +19 -2
- package/src/components/wt-tree/wt-tree.vue +11 -1
- package/src/components/wt-tree-line/wt-tree-line.vue +21 -1
- package/src/components/wt-vidstack-player/components/layouts/video-layout.vue +7 -1
- package/src/components/wt-vidstack-player/components/panels/video-call-controls-panel/video-call-controls-panel.vue +86 -41
- package/src/components/wt-vidstack-player/wt-vidstack-player.vue +51 -40
- package/src/modules/CallSession/index.ts +3 -4
- package/src/modules/CallSession/modules/ScreenSharing/screen-sharing.vue +1 -1
- package/src/modules/CallSession/modules/VideoCall/enums/VideoCallAction.enum.ts +11 -0
- package/src/modules/CallSession/modules/VideoCall/video-call.vue +133 -42
- package/types/components/wt-switcher/wt-switcher.vue.d.ts +6 -4
- package/types/components/wt-tree/wt-tree.vue.d.ts +11 -1
- package/types/components/wt-tree-line/wt-tree-line.vue.d.ts +21 -1
- package/types/components/wt-vidstack-player/components/panels/video-call-controls-panel/video-call-controls-panel.vue.d.ts +29 -16
- package/types/components/wt-vidstack-player/wt-vidstack-player.vue.d.ts +9 -4
- package/types/modules/CallSession/index.d.ts +3 -3
- package/types/modules/CallSession/modules/VideoCall/enums/VideoCallAction.enum.d.ts +10 -0
- package/types/modules/CallSession/modules/VideoCall/video-call.vue.d.ts +34 -18
- package/types/types/ResultCallbacks.types.d.ts +5 -0
- package/types/types/index.d.ts +1 -0
|
@@ -1,20 +1,36 @@
|
|
|
1
1
|
import { ScreenshotStatus } from '../../types';
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
}
|
|
19
|
-
declare const _default: import("vue").DefineComponent<
|
|
2
|
+
import { ResultCallbacks } from '../../../../types';
|
|
3
|
+
import { VideoCallAction } from './enums/VideoCallAction.enum';
|
|
4
|
+
type __VLS_Props = {
|
|
5
|
+
'sender:stream'?: MediaStream | null;
|
|
6
|
+
'sender:mic:enabled'?: boolean;
|
|
7
|
+
'sender:mic:accessed'?: boolean;
|
|
8
|
+
'sender:video:enabled'?: boolean;
|
|
9
|
+
'sender:video:accessed'?: boolean;
|
|
10
|
+
'receiver:stream'?: MediaStream | null;
|
|
11
|
+
'receiver:mic:enabled'?: boolean;
|
|
12
|
+
'receiver:video:enabled'?: boolean;
|
|
13
|
+
'screenshot:status'?: ScreenshotStatus | null;
|
|
14
|
+
'screenshot:loading'?: boolean;
|
|
15
|
+
recordings?: boolean;
|
|
16
|
+
position?: 'static' | 'left' | 'right';
|
|
17
|
+
actions: VideoCallAction[];
|
|
18
|
+
};
|
|
19
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
20
|
+
"action:screenshot": (payload?: unknown, options?: ResultCallbacks) => any;
|
|
21
|
+
"action:recordings": (payload?: unknown, options?: ResultCallbacks) => any;
|
|
22
|
+
"action:mic": (payload?: unknown, options?: ResultCallbacks) => any;
|
|
23
|
+
"action:video": (payload?: unknown, options?: ResultCallbacks) => any;
|
|
24
|
+
"action:settings": (payload?: unknown, options?: ResultCallbacks) => any;
|
|
25
|
+
"action:chat": (payload?: unknown, options?: ResultCallbacks) => any;
|
|
26
|
+
"action:hangup": (payload?: unknown, options?: ResultCallbacks) => any;
|
|
27
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
28
|
+
"onAction:screenshot"?: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
29
|
+
"onAction:recordings"?: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
30
|
+
"onAction:mic"?: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
31
|
+
"onAction:video"?: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
32
|
+
"onAction:settings"?: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
33
|
+
"onAction:chat"?: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
34
|
+
"onAction:hangup"?: (payload?: unknown, options?: ResultCallbacks) => any;
|
|
35
|
+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
20
36
|
export default _default;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export type { ResultCallbacks } from './ResultCallbacks.types';
|