@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.
- package/dist/components/ConfigDialog/ConfigDialog.stories.d.ts +4 -0
- package/dist/i18n/locales/ca.json.d.ts +17 -3
- package/dist/i18n/locales/de.json.d.ts +17 -3
- package/dist/i18n/locales/en.json.d.ts +17 -3
- package/dist/i18n/locales/es.json.d.ts +17 -3
- package/dist/i18n/locales/fr.json.d.ts +17 -3
- package/dist/index.cjs +77 -77
- package/dist/index.css +1 -1
- package/dist/index.js +12709 -12439
- package/dist/pages/MainSessionPage/ButtonsDock/ButtonsDock.stories.d.ts +21 -0
- package/dist/pages/MainSessionPage/Video/RecordingBanner.d.ts +2 -0
- package/dist/pages/MainSessionPage/Video/VideoContainer.d.ts +1 -0
- package/dist/pages/MainSessionPage/Video/tests/RecordingBanner.test.d.ts +1 -0
- package/dist/providers/VideoProvider/context.d.ts +2 -0
- package/dist/providers/VideoProvider/tests/useMirrorSelfView.test.d.ts +1 -0
- package/dist/providers/VideoProvider/useMirrorSelfView.d.ts +4 -0
- package/package.json +1 -1
- package/dist/pages/MainSessionPage/Video/RecordingIndicator.d.ts +0 -2
- /package/dist/{pages/MainSessionPage/Video/tests/RecordingIndicator.test.d.ts → components/ConfigDialog/tests/VideoSettings.test.d.ts} +0 -0
|
@@ -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
|
+
};
|
|
@@ -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;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -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 @@
|
|
|
1
|
+
export {};
|
package/package.json
CHANGED