@webitel/ui-sdk 25.12.27 → 25.12.28

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.
Files changed (62) hide show
  1. package/dist/{install-A9G4M7-6.js → install-Bqlm16sb.js} +8558 -8653
  2. package/dist/{plyr-dI1qsIWm.js → plyr-Br33nnwi.js} +1 -1
  3. package/dist/ui-sdk.css +1 -1
  4. package/dist/ui-sdk.js +1 -1
  5. package/dist/ui-sdk.umd.cjs +227 -228
  6. package/dist/{vidstack-Bq6c3Bam-Bpshd13A.js → vidstack-Bq6c3Bam-CxzFv3Ko.js} +2 -2
  7. package/dist/{vidstack-D2pY00kU-DknwOKzI.js → vidstack-D2pY00kU-DcpelJcf.js} +2 -2
  8. package/dist/{vidstack-DDXt6fpN-2JcEs0WE.js → vidstack-DDXt6fpN-Cg0bEHId.js} +1 -1
  9. package/dist/{vidstack-D_-9AA6_-ltFyEXo5.js → vidstack-D_-9AA6_-bnYaKyO1.js} +1 -1
  10. package/dist/{vidstack-DqAw8m9J-CL4FNO5F.js → vidstack-DqAw8m9J-DdJYKLyM.js} +1 -1
  11. package/dist/{vidstack-audio-CnLJOsQb.js → vidstack-audio-DduGjEcQ.js} +2 -2
  12. package/dist/{vidstack-dash-DE9OxUbu.js → vidstack-dash-CKzRjcLs.js} +3 -3
  13. package/dist/{vidstack-google-cast-DUF-rvcM.js → vidstack-google-cast-BiPwnnpT.js} +3 -3
  14. package/dist/{vidstack-hls-B5QgAztZ.js → vidstack-hls-OkFNv20L.js} +3 -3
  15. package/dist/{vidstack-video-DK5nUu2T.js → vidstack-video-CB59bElo.js} +2 -2
  16. package/dist/{vidstack-vimeo-BPIRVQ20.js → vidstack-vimeo-NoVxwrcD.js} +3 -3
  17. package/dist/{vidstack-youtube-BBGQ_xiA.js → vidstack-youtube-C1voQhH8.js} +2 -2
  18. package/dist/{vuex.esm-bundler-07IDl-KX.js → vuex.esm-bundler-C04hKLcf.js} +1 -1
  19. package/package.json +2 -2
  20. package/src/components/wt-vidstack-player/components/{panels/media-control-panel/components/buttons → buttons}/fullscreen-button.vue +1 -1
  21. package/src/components/wt-vidstack-player/components/{panels/media-control-panel/media-control-panel.vue → controls-group/controls-group.vue} +15 -12
  22. package/src/components/wt-vidstack-player/components/index.ts +6 -0
  23. package/src/components/wt-vidstack-player/components/layouts/video-layout.vue +11 -36
  24. package/src/components/wt-vidstack-player/components/panels/media-controls-panel/components/buttons/fullscreen-button.vue +40 -0
  25. package/src/components/wt-vidstack-player/components/panels/media-controls-panel/components/buttons/play-button.vue +42 -0
  26. package/src/components/wt-vidstack-player/components/panels/{media-control-panel → media-controls-panel}/components/sliders/time-slider.vue +1 -1
  27. package/src/components/wt-vidstack-player/components/panels/media-controls-panel/media-controls-panel.vue +20 -0
  28. package/src/components/wt-vidstack-player/components/panels/screen-sharing-controls-panel/screen-sharing-controls-panel.vue +89 -0
  29. package/src/components/wt-vidstack-player/components/panels/video-call-controls-panel/video-call-controls-panel.vue +134 -0
  30. package/src/components/wt-vidstack-player/components/panels/video-display-panel/video-display-panel.vue +1 -1
  31. package/src/components/wt-vidstack-player/components/recording-indicator/recording-indicator.vue +64 -0
  32. package/src/components/wt-vidstack-player/wt-vidstack-player.vue +23 -40
  33. package/src/modules/CallSession/index.ts +4 -0
  34. package/src/modules/CallSession/modules/ScreenSharing/screen-sharing.vue +85 -0
  35. package/src/modules/CallSession/modules/VideoCall/video-call.vue +165 -0
  36. package/src/modules/CallSession/types/ScreenSharingSession.ts +7 -0
  37. package/src/modules/CallSession/types/index.ts +4 -0
  38. package/src/plugins/primevue/theme/extend/player/player.js +2 -3
  39. package/types/components/wt-vidstack-player/components/controls-group/controls-group.vue.d.ts +12 -0
  40. package/types/components/wt-vidstack-player/components/index.d.ts +6 -0
  41. package/types/components/wt-vidstack-player/components/layouts/video-layout.vue.d.ts +17 -11
  42. package/types/components/wt-vidstack-player/components/panels/media-controls-panel/components/buttons/fullscreen-button.vue.d.ts +6 -0
  43. package/types/components/wt-vidstack-player/components/panels/media-controls-panel/media-controls-panel.vue.d.ts +2 -0
  44. package/types/components/wt-vidstack-player/components/panels/{screen-sharing-control-panel/screen-sharing-control-panel.vue.d.ts → screen-sharing-controls-panel/screen-sharing-controls-panel.vue.d.ts} +2 -3
  45. package/types/components/wt-vidstack-player/components/panels/video-call-controls-panel/video-call-controls-panel.vue.d.ts +18 -0
  46. package/types/components/wt-vidstack-player/components/recording-indicator/recording-indicator.vue.d.ts +2 -0
  47. package/types/components/wt-vidstack-player/wt-vidstack-player.vue.d.ts +19 -15
  48. package/types/modules/CallSession/index.d.ts +3 -0
  49. package/types/modules/CallSession/modules/ScreenSharing/screen-sharing.vue.d.ts +16 -0
  50. package/types/modules/CallSession/modules/VideoCall/video-call.vue.d.ts +20 -0
  51. package/types/modules/CallSession/types/ScreenSharingSession.d.ts +7 -0
  52. package/types/modules/CallSession/types/index.d.ts +3 -0
  53. package/src/components/wt-vidstack-player/components/panels/screen-sharing-control-panel/screen-sharing-control-panel.vue +0 -195
  54. /package/src/components/wt-vidstack-player/components/{panels/media-control-panel/components/buttons → buttons}/play-button.vue +0 -0
  55. /package/src/components/wt-vidstack-player/components/panels/{media-control-panel → media-controls-panel}/components/time-group.vue +0 -0
  56. /package/src/{components/wt-vidstack-player → modules/CallSession}/types/ScreenshotStatus.ts +0 -0
  57. /package/types/components/wt-vidstack-player/components/{panels/media-control-panel/components/buttons → buttons}/fullscreen-button.vue.d.ts +0 -0
  58. /package/types/components/wt-vidstack-player/components/{panels/media-control-panel/components/buttons → buttons}/play-button.vue.d.ts +0 -0
  59. /package/types/components/wt-vidstack-player/components/panels/{media-control-panel/components/sliders/time-slider.vue.d.ts → media-controls-panel/components/buttons/play-button.vue.d.ts} +0 -0
  60. /package/types/components/wt-vidstack-player/components/panels/{media-control-panel/components/time-group.vue.d.ts → media-controls-panel/components/sliders/time-slider.vue.d.ts} +0 -0
  61. /package/types/components/wt-vidstack-player/components/panels/{media-control-panel/media-control-panel.vue.d.ts → media-controls-panel/components/time-group.vue.d.ts} +0 -0
  62. /package/types/{components/wt-vidstack-player → modules/CallSession}/types/ScreenshotStatus.d.ts +0 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.