@webitel/ui-sdk 26.8.7 → 26.8.8

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.
@@ -1,10 +1,8 @@
1
+ import type { PlayerSrc } from 'vidstack';
1
2
  export declare const useVidstackSrc: ({ src, type, stream }: {
2
3
  src: any;
3
4
  type: any;
4
5
  stream: any;
5
6
  }) => {
6
- normalizedSrcObject: import("vue").ComputedRef<{
7
- src: unknown;
8
- type: string;
9
- }>;
7
+ normalizedSrcObject: import("vue").ComputedRef<PlayerSrc>;
10
8
  };
@@ -22,19 +22,15 @@ interface Props {
22
22
  videoObjectFit?: 'cover' | 'contain';
23
23
  mirrorVideo?: boolean;
24
24
  }
25
- declare var __VLS_26: {}, __VLS_29: {}, __VLS_32: {
26
- size: ComponentSize;
27
- }, __VLS_35: {
28
- size: ComponentSize;
29
- };
30
- type __VLS_Slots = {} & {
31
- avatar?: (props: typeof __VLS_26) => any;
32
- } & {
33
- 'display-panel-actions'?: (props: typeof __VLS_29) => any;
34
- } & {
35
- 'controls-panel'?: (props: typeof __VLS_32) => any;
36
- } & {
37
- content?: (props: typeof __VLS_35) => any;
25
+ type __VLS_Slots = {
26
+ avatar?: () => unknown;
27
+ 'display-panel-actions'?: () => unknown;
28
+ content?: (scope: {
29
+ size: ComponentSize;
30
+ }) => unknown;
31
+ 'controls-panel'?: (scope: {
32
+ size: ComponentSize;
33
+ }) => unknown;
38
34
  };
39
35
  declare const __VLS_base: import("vue").DefineComponent<Props, {
40
36
  rootEl: Readonly<import("vue").ShallowRef<HTMLElement>>;