@fraku/video 0.1.10 → 0.1.11
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/ConfigContent.d.ts +2 -0
- package/dist/components/ConfigDialog/ConfigDialog.stories.d.ts +5 -13
- package/dist/components/ConfigDialog/ConfigMenu.d.ts +2 -0
- package/dist/components/ConfigDialog/MenuButton.d.ts +9 -0
- package/dist/components/ConfigDialog/Tabs/AudioSettings.d.ts +2 -0
- package/dist/components/ConfigDialog/Tabs/BackgroundSettings.d.ts +2 -0
- package/dist/components/ConfigDialog/Tabs/DropdownItemTemplate.d.ts +8 -0
- package/dist/components/ConfigDialog/Tabs/DropdownValueTemplate.d.ts +8 -0
- package/dist/components/ConfigDialog/Tabs/VideoSettings.d.ts +2 -0
- package/dist/components/ConfigDialog/context.d.ts +13 -0
- package/dist/components/Overlay/Overlay.d.ts +4 -0
- package/dist/components/Overlay/index.d.ts +2 -0
- package/dist/components/Overlay/types.d.ts +8 -0
- package/dist/index.cjs +493 -232
- package/dist/index.css +1 -1
- package/dist/index.js +19087 -18056
- package/dist/providers/VideoPluginProvider/types.d.ts +5 -1
- package/dist/providers/VideoProvider/context.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,14 +1,6 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Meta, StoryObj } from '@storybook/react-vite';
|
|
2
|
+
import { default as ConfigDialog } from './ConfigDialog';
|
|
2
3
|
|
|
3
|
-
declare const
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
layout: string;
|
|
7
|
-
};
|
|
8
|
-
decorators: ((Story: StoryFn) => import("react/jsx-runtime").JSX.Element)[];
|
|
9
|
-
};
|
|
10
|
-
export default _default;
|
|
11
|
-
export declare const Default: {
|
|
12
|
-
(): import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
storyName: string;
|
|
14
|
-
};
|
|
4
|
+
declare const meta: Meta<typeof ConfigDialog>;
|
|
5
|
+
export default meta;
|
|
6
|
+
export declare const Default: StoryObj<typeof ConfigDialog>;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
type MenuButtonProps = {
|
|
2
|
+
className?: string;
|
|
3
|
+
icon: string;
|
|
4
|
+
onClick: () => void;
|
|
5
|
+
title?: string;
|
|
6
|
+
id?: string;
|
|
7
|
+
};
|
|
8
|
+
declare const MenuButton: ({ className, icon, onClick, title, id }: MenuButtonProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
export default MenuButton;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { ReactSetter } from '../../types';
|
|
2
|
+
|
|
3
|
+
export declare enum SettingsTab {
|
|
4
|
+
Audio = "Audio",
|
|
5
|
+
Video = "Video",
|
|
6
|
+
Background = "Background"
|
|
7
|
+
}
|
|
8
|
+
export type SettingsOverlayContextProps = {
|
|
9
|
+
selectedSettingsTab: SettingsTab;
|
|
10
|
+
setSelectedSettingsTab: ReactSetter<SettingsTab>;
|
|
11
|
+
};
|
|
12
|
+
export declare const SettingsOverlayContext: import('react').Context<SettingsOverlayContextProps>;
|
|
13
|
+
export declare const useSettingsOverlayContext: () => SettingsOverlayContextProps;
|