@fraku/video 0.1.92 → 0.1.94

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.
@@ -0,0 +1,21 @@
1
+ import { Meta } from '@storybook/react-vite';
2
+ import { default as ButtonsDock } from './ButtonsDock';
3
+
4
+ declare const meta: Meta<typeof ButtonsDock>;
5
+ export default meta;
6
+ export declare const RecordingAllowed: {
7
+ (): import("react/jsx-runtime").JSX.Element;
8
+ storyName: string;
9
+ };
10
+ export declare const RecordingActiveAllowed: {
11
+ (): import("react/jsx-runtime").JSX.Element;
12
+ storyName: string;
13
+ };
14
+ export declare const RecordingPaused: {
15
+ (): import("react/jsx-runtime").JSX.Element;
16
+ storyName: string;
17
+ };
18
+ export declare const RecordingDisabled: {
19
+ (): import("react/jsx-runtime").JSX.Element;
20
+ storyName: string;
21
+ };
@@ -0,0 +1,2 @@
1
+ declare const RecordingBanner: () => import("react/jsx-runtime").JSX.Element | null;
2
+ export default RecordingBanner;
@@ -2,6 +2,7 @@ type VideoContainerProps = {
2
2
  visible: boolean;
3
3
  className?: string;
4
4
  element?: 'video' | 'video-player';
5
+ mirror?: boolean;
5
6
  };
6
7
  declare const VideoContainer: import('react').ForwardRefExoticComponent<VideoContainerProps & import('react').RefAttributes<HTMLElement | HTMLVideoElement>>;
7
8
  export default VideoContainer;
@@ -16,6 +16,8 @@ export type PinnedVideoAttachmentOwner = `pinned-view:grid:${number}` | `pinned-
16
16
  export type VideoAttachmentOwner = 'active-video' | PinnedVideoAttachmentOwner;
17
17
  export type VideoContextType = {
18
18
  activeCameraId: string;
19
+ mirrorSelfView: boolean;
20
+ toggleMirrorSelfView: () => void;
19
21
  selfCameraPermission: BrowserPermissionState;
20
22
  selfMicPermission: BrowserPermissionState;
21
23
  attachSharedVideo: ({ userId, videoPlayer }: {
@@ -0,0 +1,4 @@
1
+ export declare const useMirrorSelfView: () => {
2
+ mirrorSelfView: boolean;
3
+ toggleMirrorSelfView: () => void;
4
+ };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@fraku/video",
3
3
  "private": false,
4
- "version": "0.1.92",
4
+ "version": "0.1.94",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.js",
@@ -1,2 +0,0 @@
1
- declare const RecordingIndicator: () => import("react/jsx-runtime").JSX.Element | null;
2
- export default RecordingIndicator;