@100mslive/roomkit-react 0.1.9 → 0.1.10
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/{HLSView-VGJ2XUDT.js → HLSView-7WXNI2WP.js} +14 -10
- package/dist/HLSView-7WXNI2WP.js.map +7 -0
- package/dist/Modal/Dialog.d.ts +878 -9
- package/dist/Modal/DialogContent.d.ts +2 -2
- package/dist/Prebuilt/components/Leave/DesktopLeaveRoom.d.ts +4 -4
- package/dist/Prebuilt/components/Leave/EndSessionContent.d.ts +3 -3
- package/dist/Prebuilt/components/Leave/LeaveSessionContent.d.ts +3 -3
- package/dist/Prebuilt/components/Leave/MwebLeaveRoom.d.ts +4 -4
- package/dist/Prebuilt/components/VirtualBackground/VBCollection.d.ts +13 -0
- package/dist/Prebuilt/components/VirtualBackground/VBOption.d.ts +15 -0
- package/dist/Prebuilt/components/VirtualBackground/constants.d.ts +9 -0
- package/dist/Prebuilt/layouts/SidePane.d.ts +2 -2
- package/dist/{chunk-EDGWHFCM.js → chunk-N5HPVHTK.js} +6091 -4897
- package/dist/chunk-N5HPVHTK.js.map +7 -0
- package/dist/index.cjs.js +5217 -5060
- package/dist/index.cjs.js.map +4 -4
- package/dist/index.js +11 -13
- package/dist/meta.cjs.json +1567 -1385
- package/dist/meta.esbuild.json +1657 -1551
- package/package.json +6 -6
- package/src/Modal/Dialog.tsx +3 -11
- package/src/Modal/DialogContent.tsx +4 -4
- package/src/Prebuilt/common/constants.js +3 -0
- package/src/Prebuilt/components/AppData/AppData.jsx +4 -11
- package/src/Prebuilt/components/AppData/useSidepane.js +1 -1
- package/src/Prebuilt/components/Connection/ConnectionIndicator.tsx +2 -2
- package/src/Prebuilt/components/Footer/Footer.tsx +4 -8
- package/src/Prebuilt/components/Footer/ParticipantList.jsx +1 -6
- package/src/Prebuilt/components/Header/Header.tsx +2 -2
- package/src/Prebuilt/components/Header/common.jsx +46 -23
- package/src/Prebuilt/components/Leave/DesktopLeaveRoom.tsx +5 -5
- package/src/Prebuilt/components/Leave/EndSessionContent.tsx +2 -2
- package/src/Prebuilt/components/Leave/LeaveRoom.tsx +6 -5
- package/src/Prebuilt/components/Leave/LeaveSessionContent.tsx +2 -2
- package/src/Prebuilt/components/Leave/MwebLeaveRoom.tsx +3 -3
- package/src/Prebuilt/components/Notifications/HLSFailureModal.tsx +1 -4
- package/src/Prebuilt/components/Preview/PreviewForm.tsx +7 -2
- package/src/Prebuilt/components/Preview/PreviewJoin.tsx +62 -57
- package/src/Prebuilt/components/RoleChangeRequest/RequestPrompt.tsx +2 -3
- package/src/Prebuilt/components/Settings/DeviceSettings.jsx +11 -0
- package/src/Prebuilt/components/VirtualBackground/VBCollection.tsx +50 -0
- package/src/Prebuilt/components/VirtualBackground/VBOption.tsx +50 -0
- package/src/Prebuilt/components/VirtualBackground/VBPicker.jsx +165 -0
- package/src/Prebuilt/components/VirtualBackground/VBToggle.jsx +25 -0
- package/src/Prebuilt/components/VirtualBackground/constants.ts +26 -0
- package/src/Prebuilt/components/hooks/useAutoStartStreaming.tsx +4 -7
- package/src/Prebuilt/layouts/HLSView.jsx +7 -1
- package/src/Prebuilt/layouts/SidePane.tsx +21 -5
- package/dist/HLSView-VGJ2XUDT.js.map +0 -7
- package/dist/VirtualBackground-2VZVBRIC.js +0 -175
- package/dist/VirtualBackground-2VZVBRIC.js.map +0 -7
- package/dist/chunk-EDGWHFCM.js.map +0 -7
- package/dist/chunk-SONHO3VM.js +0 -962
- package/dist/chunk-SONHO3VM.js.map +0 -7
package/dist/index.js
CHANGED
@@ -2,6 +2,7 @@ import {
|
|
2
2
|
Accordion,
|
3
3
|
AudioLevel,
|
4
4
|
Avatar,
|
5
|
+
Box,
|
5
6
|
Button,
|
6
7
|
Checkbox,
|
7
8
|
Collapsible,
|
@@ -10,13 +11,16 @@ import {
|
|
10
11
|
DialogContainerProvider,
|
11
12
|
Dropdown,
|
12
13
|
Fieldset,
|
14
|
+
Flex,
|
13
15
|
Footer,
|
14
16
|
HMSPrebuilt,
|
15
17
|
HMSThemeProvider,
|
16
18
|
HorizontalDivider,
|
19
|
+
IconButton,
|
17
20
|
Input,
|
18
21
|
Label,
|
19
22
|
Link,
|
23
|
+
Loading,
|
20
24
|
PasswordInput,
|
21
25
|
Popover,
|
22
26
|
Progress,
|
@@ -33,37 +37,31 @@ import {
|
|
33
37
|
StyledVideoTile,
|
34
38
|
Switch,
|
35
39
|
Tabs,
|
40
|
+
Text,
|
36
41
|
ThemeContext,
|
37
42
|
ThemeTypes,
|
38
43
|
Toast,
|
44
|
+
Tooltip,
|
39
45
|
VerticalDivider,
|
40
46
|
Video,
|
41
47
|
VideoTileStats,
|
42
|
-
getLeft,
|
43
|
-
useBorderAudioLevel,
|
44
|
-
useTheme
|
45
|
-
} from "./chunk-EDGWHFCM.js";
|
46
|
-
import {
|
47
|
-
Box,
|
48
|
-
Flex,
|
49
|
-
IconButton,
|
50
|
-
Loading,
|
51
|
-
Text,
|
52
|
-
Tooltip,
|
53
48
|
config,
|
54
49
|
createTheme,
|
55
50
|
createThemeBase,
|
56
51
|
css,
|
57
52
|
flexCenter,
|
58
53
|
getCssText,
|
54
|
+
getLeft,
|
59
55
|
globalCss,
|
60
56
|
globalStyles,
|
61
57
|
keyframes,
|
62
58
|
slideLeftAndFade,
|
63
59
|
styled,
|
64
60
|
textEllipsis,
|
65
|
-
theme
|
66
|
-
|
61
|
+
theme,
|
62
|
+
useBorderAudioLevel,
|
63
|
+
useTheme
|
64
|
+
} from "./chunk-N5HPVHTK.js";
|
67
65
|
export {
|
68
66
|
Accordion,
|
69
67
|
AudioLevel,
|