@webitel/ui-sdk 25.12.41 → 25.12.43
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/{install-B4Nk3OEz.js → install-tvT8zDE5.js} +13 -14
- package/dist/{plyr-KaDfMO3z.js → plyr-0zimYSFX.js} +1 -1
- package/dist/ui-sdk.css +1 -1
- package/dist/ui-sdk.js +1 -1
- package/dist/ui-sdk.umd.cjs +1 -1
- package/dist/{vidstack-Bq6c3Bam-wTVq5dCD.js → vidstack-Bq6c3Bam-Bc0FszIe.js} +2 -2
- package/dist/{vidstack-D2pY00kU-BDY1tl0N.js → vidstack-D2pY00kU-wDcUmTEI.js} +2 -2
- package/dist/{vidstack-DDXt6fpN-DFzqLOOW.js → vidstack-DDXt6fpN-BwtmhBpj.js} +1 -1
- package/dist/{vidstack-D_-9AA6_-Doy3hgnN.js → vidstack-D_-9AA6_-CBfwel7Q.js} +1 -1
- package/dist/{vidstack-DqAw8m9J-CF8Kjm2j.js → vidstack-DqAw8m9J-BK4ngCzx.js} +1 -1
- package/dist/{vidstack-audio-CP2NCp0l.js → vidstack-audio-Cq-mSNMI.js} +2 -2
- package/dist/{vidstack-dash-D2mGrqE7.js → vidstack-dash-ilhx9uCU.js} +3 -3
- package/dist/{vidstack-google-cast-Buijkdak.js → vidstack-google-cast-DQXgZ9pD.js} +3 -3
- package/dist/{vidstack-hls-CmjSG0jl.js → vidstack-hls-CrdV_anM.js} +3 -3
- package/dist/{vidstack-video-1yX47WpZ.js → vidstack-video-BZIV5nR5.js} +2 -2
- package/dist/{vidstack-vimeo-CHLHywMZ.js → vidstack-vimeo-C0TUmhZ_.js} +3 -3
- package/dist/{vidstack-youtube-DT3G83C6.js → vidstack-youtube-B9NPUb5Z.js} +2 -2
- package/dist/{vuex.esm-bundler-GW6Qg-nV.js → vuex.esm-bundler-DmFRqPPK.js} +1 -1
- package/package.json +1 -1
- package/src/components/wt-vidstack-player/components/buttons/play-button.vue +3 -1
- package/src/components/wt-vidstack-player/components/controls-group/controls-group.vue +3 -1
- package/src/components/wt-vidstack-player/components/layouts/video-layout.vue +2 -1
- package/src/components/wt-vidstack-player/components/panels/media-controls-panel/components/buttons/play-button.vue +3 -1
- package/src/components/wt-vidstack-player/components/panels/screen-sharing-controls-panel/screen-sharing-controls-panel.vue +3 -2
- package/src/components/wt-vidstack-player/components/panels/video-call-controls-panel/video-call-controls-panel.vue +1 -1
- package/src/components/wt-vidstack-player/components/panels/video-display-panel/video-display-panel.vue +2 -10
- package/src/components/wt-vidstack-player/types/WtVidstackPlayerSizeProvider.ts +9 -0
- package/src/components/wt-vidstack-player/wt-vidstack-player.vue +16 -9
- package/src/modules/CallSession/modules/VideoCall/video-call.vue +12 -7
- package/types/components/wt-vidstack-player/components/panels/screen-sharing-controls-panel/screen-sharing-controls-panel.vue.d.ts +1 -1
- package/types/components/wt-vidstack-player/types/WtVidstackPlayerSizeProvider.d.ts +7 -0
- package/types/components/wt-vidstack-player/wt-vidstack-player.vue.d.ts +0 -2
- package/types/modules/CallSession/modules/VideoCall/video-call.vue.d.ts +2 -2
|
@@ -15,7 +15,7 @@ type __VLS_Props = {
|
|
|
15
15
|
'screenshot:src'?: string;
|
|
16
16
|
recordings?: boolean;
|
|
17
17
|
static?: boolean;
|
|
18
|
-
position?: 'left-bottom' | 'right-bottom';
|
|
18
|
+
position?: 'left-bottom' | 'right-bottom' | 'center';
|
|
19
19
|
size?: ComponentSize;
|
|
20
20
|
hideHeader?: boolean;
|
|
21
21
|
resizable?: boolean;
|
|
@@ -39,7 +39,7 @@ declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}
|
|
|
39
39
|
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
40
40
|
[x: `on${Capitalize<any>}`]: (...args: any) => any;
|
|
41
41
|
}>, {
|
|
42
|
-
position: "left-bottom" | "right-bottom";
|
|
42
|
+
position: "left-bottom" | "right-bottom" | "center";
|
|
43
43
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
44
44
|
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
45
45
|
export default _default;
|