@fraku/video 0.0.2 → 0.0.6
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/App.d.ts +3 -0
- package/dist/components/ZoomVideoPlugin/ZoomVideoPlugin.d.ts +4 -0
- package/dist/components/ZoomVideoPlugin/ZoomVideoPlugin.stories.d.ts +27 -0
- package/dist/components/ZoomVideoPlugin/components/ButtonsDock/ButtonsDock.d.ts +13 -0
- package/dist/components/ZoomVideoPlugin/components/ButtonsDock/DockButton.d.ts +30 -0
- package/dist/components/ZoomVideoPlugin/components/ButtonsDock/MenuItemTemplate.d.ts +9 -0
- package/dist/components/ZoomVideoPlugin/components/ButtonsDock/index.d.ts +1 -0
- package/dist/components/ZoomVideoPlugin/components/MobileIconButton/MobileIconButton.d.ts +9 -0
- package/dist/components/ZoomVideoPlugin/components/MobileIconButton/index.d.ts +1 -0
- package/dist/components/ZoomVideoPlugin/components/Overlay/Overlay.d.ts +13 -0
- package/dist/components/ZoomVideoPlugin/components/Overlay/index.d.ts +1 -0
- package/dist/components/ZoomVideoPlugin/components/ParticipantsList.d.ts +11 -0
- package/dist/components/ZoomVideoPlugin/components/SettingsOverlay/SettingsContent.d.ts +2 -0
- package/dist/components/ZoomVideoPlugin/components/SettingsOverlay/SettingsMenu.d.ts +2 -0
- package/dist/components/ZoomVideoPlugin/components/SettingsOverlay/SettingsOverlay.d.ts +11 -0
- package/dist/components/ZoomVideoPlugin/components/SettingsOverlay/Tabs/AudioSettings.d.ts +2 -0
- package/dist/components/ZoomVideoPlugin/components/SettingsOverlay/Tabs/BackgroundSettings.d.ts +2 -0
- package/dist/components/ZoomVideoPlugin/components/SettingsOverlay/Tabs/DropdownItemTemplate.d.ts +8 -0
- package/dist/components/ZoomVideoPlugin/components/SettingsOverlay/Tabs/DropdownValueTemplate.d.ts +8 -0
- package/dist/components/ZoomVideoPlugin/components/SettingsOverlay/Tabs/VideoSettings.d.ts +2 -0
- package/dist/components/ZoomVideoPlugin/components/SettingsOverlay/context.d.ts +13 -0
- package/dist/components/ZoomVideoPlugin/components/SettingsOverlay/index.d.ts +1 -0
- package/dist/components/ZoomVideoPlugin/components/Video.d.ts +5 -0
- package/dist/components/ZoomVideoPlugin/constants.d.ts +2 -0
- package/dist/components/ZoomVideoPlugin/context.d.ts +38 -0
- package/dist/components/ZoomVideoPlugin/hooks/useClientMessages.d.ts +21 -0
- package/dist/components/ZoomVideoPlugin/hooks/useDeviceSize.d.ts +10 -0
- package/dist/components/ZoomVideoPlugin/hooks/useStartVideoOptions.d.ts +10 -0
- package/dist/components/ZoomVideoPlugin/hooks/useZoomVideoPlayer.d.ts +7 -0
- package/dist/components/ZoomVideoPlugin/index.d.ts +2 -0
- package/dist/components/ZoomVideoPlugin/lib/platforms.d.ts +4 -0
- package/dist/components/ZoomVideoPlugin/pages/AfterSession.d.ts +4 -0
- package/dist/components/ZoomVideoPlugin/pages/MainSession.d.ts +2 -0
- package/dist/components/ZoomVideoPlugin/pages/PanelistsSession.d.ts +4 -0
- package/dist/components/ZoomVideoPlugin/pages/PreSessionConfiguration.d.ts +4 -0
- package/dist/components/ZoomVideoPlugin/types.d.ts +20 -0
- package/dist/index.cjs +1504 -0
- package/dist/index.css +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +31236 -0
- package/dist/main.d.ts +1 -0
- package/package.json +5 -2
package/dist/main.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fraku/video",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.6",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
7
7
|
"module": "./dist/index.js",
|
|
@@ -38,13 +38,16 @@
|
|
|
38
38
|
"classnames": "^2.5.1",
|
|
39
39
|
"primeicons": "^7.0.0",
|
|
40
40
|
"primereact": "^10.9.6",
|
|
41
|
-
"react-use": "^17.6.0"
|
|
41
|
+
"react-use": "^17.6.0",
|
|
42
|
+
"styled-components": "^5.3.11"
|
|
42
43
|
},
|
|
43
44
|
"devDependencies": {
|
|
44
45
|
"@storybook/react-vite": "^9.1.13",
|
|
46
|
+
"@tailwindcss/container-queries": "^0.1.1",
|
|
45
47
|
"@types/node": "^24.8.1",
|
|
46
48
|
"@types/react": "^18.2.43",
|
|
47
49
|
"@types/react-dom": "^18.2.17",
|
|
50
|
+
"@types/styled-components": "^5.1.34",
|
|
48
51
|
"@typescript-eslint/eslint-plugin": "^6.14.0",
|
|
49
52
|
"@typescript-eslint/parser": "^6.14.0",
|
|
50
53
|
"@vitejs/plugin-react": "^4.2.1",
|