@selfcommunity/react-ui 0.11.0-alpha.23 → 0.11.0-alpha.24
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/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/ControlBar.js +3 -1
- package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/LiveStreamSettingsMenu.d.ts +8 -0
- package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/LiveStreamSettingsMenu.js +69 -0
- package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/PreJoin.d.ts +3 -2
- package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/PreJoin.js +31 -2
- package/lib/cjs/components/LiveStreamRoom/LiveStreamVideoConference/VideoConference.js +43 -4
- package/lib/cjs/constants/LiveStream.d.ts +1 -0
- package/lib/cjs/constants/LiveStream.js +2 -1
- package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/ControlBar.js +3 -1
- package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/LiveStreamSettingsMenu.d.ts +8 -0
- package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/LiveStreamSettingsMenu.js +66 -0
- package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/PreJoin.d.ts +3 -2
- package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/PreJoin.js +31 -2
- package/lib/esm/components/LiveStreamRoom/LiveStreamVideoConference/VideoConference.js +45 -6
- package/lib/esm/constants/LiveStream.d.ts +1 -0
- package/lib/esm/constants/LiveStream.js +1 -0
- package/lib/umd/{653.js → 212.js} +2 -2
- package/lib/umd/react-ui.js +1 -1
- package/package.json +6 -5
- /package/lib/umd/{653.js.LICENSE.txt → 212.js.LICENSE.txt} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@selfcommunity/react-ui",
|
|
3
|
-
"version": "0.11.0-alpha.
|
|
3
|
+
"version": "0.11.0-alpha.24",
|
|
4
4
|
"description": "React UI Components to integrate a Community created with SelfCommunity Platform.",
|
|
5
5
|
"author": "SelfCommunity <https://www.selfcommunity.com>",
|
|
6
6
|
"homepage": "https://www.selfcommunity.com",
|
|
@@ -84,6 +84,7 @@
|
|
|
84
84
|
"@livekit/components-react": "2.6.5",
|
|
85
85
|
"@livekit/components-styles": "1.1.4",
|
|
86
86
|
"@livekit/krisp-noise-filter": "0.2.12",
|
|
87
|
+
"@livekit/track-processors": "^0.3.3",
|
|
87
88
|
"@lottiefiles/react-lottie-player": "^3.5.4",
|
|
88
89
|
"@mui/lab": "~5.0.0-alpha.159",
|
|
89
90
|
"@mui/material": "^5.15.3",
|
|
@@ -96,9 +97,9 @@
|
|
|
96
97
|
"@rpldy/upload-preview": "^1.7.1",
|
|
97
98
|
"@rpldy/uploady": "^1.7.1",
|
|
98
99
|
"@selfcommunity/api-services": "^0.6.7-alpha.2",
|
|
99
|
-
"@selfcommunity/react-core": "^0.6.7-alpha.
|
|
100
|
-
"@selfcommunity/react-i18n": "^0.8.0-alpha.
|
|
101
|
-
"@selfcommunity/react-theme-default": "^0.4.5-alpha.
|
|
100
|
+
"@selfcommunity/react-core": "^0.6.7-alpha.12",
|
|
101
|
+
"@selfcommunity/react-i18n": "^0.8.0-alpha.5",
|
|
102
|
+
"@selfcommunity/react-theme-default": "^0.4.5-alpha.17",
|
|
102
103
|
"@selfcommunity/types": "^0.7.7-alpha.2",
|
|
103
104
|
"@selfcommunity/utils": "^0.2.64-alpha.1",
|
|
104
105
|
"@types/classnames": "^2.3.1",
|
|
@@ -195,5 +196,5 @@
|
|
|
195
196
|
"engines": {
|
|
196
197
|
"node": ">=20.x"
|
|
197
198
|
},
|
|
198
|
-
"gitHead": "
|
|
199
|
+
"gitHead": "c87ad12369c35e7812da23eced7839dbbdb9eeec"
|
|
199
200
|
}
|
|
File without changes
|