@100mslive/roomkit-react 0.3.14-alpha.4 → 0.3.14-alpha.5
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/{HLSView-PALIXUNG.js → HLSView-AV4CONPM.js} +2 -2
- package/dist/{HLSView-5DK2ZOZY.css → HLSView-HMJGKVNU.css} +3 -3
- package/dist/{HLSView-5DK2ZOZY.css.map → HLSView-HMJGKVNU.css.map} +1 -1
- package/dist/{chunk-MBMF75ZJ.js → chunk-W6E3MUWX.js} +8 -5
- package/dist/{chunk-MBMF75ZJ.js.map → chunk-W6E3MUWX.js.map} +2 -2
- package/dist/index.cjs.css +2 -2
- package/dist/index.cjs.css.map +1 -1
- package/dist/index.cjs.js +10 -7
- package/dist/index.cjs.js.map +3 -3
- package/dist/index.css +2 -2
- package/dist/index.css.map +1 -1
- package/dist/index.js +1 -1
- package/dist/meta.cjs.json +14 -14
- package/dist/meta.esbuild.json +24 -24
- package/package.json +7 -7
- package/src/Prebuilt/components/Chat/ChatFooter.tsx +4 -1
- /package/dist/{HLSView-PALIXUNG.js.map → HLSView-AV4CONPM.js.map} +0 -0
package/package.json
CHANGED
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"prebuilt",
|
|
11
11
|
"roomkit"
|
|
12
12
|
],
|
|
13
|
-
"version": "0.3.14-alpha.
|
|
13
|
+
"version": "0.3.14-alpha.5",
|
|
14
14
|
"author": "100ms",
|
|
15
15
|
"license": "MIT",
|
|
16
16
|
"repository": {
|
|
@@ -74,12 +74,12 @@
|
|
|
74
74
|
"react": ">=17.0.2 <19.0.0"
|
|
75
75
|
},
|
|
76
76
|
"dependencies": {
|
|
77
|
-
"@100mslive/hls-player": "0.3.14-alpha.
|
|
77
|
+
"@100mslive/hls-player": "0.3.14-alpha.5",
|
|
78
78
|
"@100mslive/hms-noise-cancellation": "0.0.1",
|
|
79
|
-
"@100mslive/hms-virtual-background": "1.13.14-alpha.
|
|
80
|
-
"@100mslive/hms-whiteboard": "0.0.4-alpha.
|
|
81
|
-
"@100mslive/react-icons": "0.10.14-alpha.
|
|
82
|
-
"@100mslive/react-sdk": "0.10.14-alpha.
|
|
79
|
+
"@100mslive/hms-virtual-background": "1.13.14-alpha.5",
|
|
80
|
+
"@100mslive/hms-whiteboard": "0.0.4-alpha.5",
|
|
81
|
+
"@100mslive/react-icons": "0.10.14-alpha.5",
|
|
82
|
+
"@100mslive/react-sdk": "0.10.14-alpha.5",
|
|
83
83
|
"@100mslive/types-prebuilt": "0.12.9",
|
|
84
84
|
"@emoji-mart/data": "^1.0.6",
|
|
85
85
|
"@emoji-mart/react": "^1.0.1",
|
|
@@ -115,5 +115,5 @@
|
|
|
115
115
|
"uuid": "^8.3.2",
|
|
116
116
|
"worker-timers": "^7.0.40"
|
|
117
117
|
},
|
|
118
|
-
"gitHead": "
|
|
118
|
+
"gitHead": "2d512204b017ee7b52ba3459eb0af1ef57cd8568"
|
|
119
119
|
}
|
|
@@ -108,7 +108,10 @@ export const ChatFooter = ({ onSend, children }: { onSend: (count: number) => vo
|
|
|
108
108
|
|
|
109
109
|
const resetInputHeight = useCallback(() => {
|
|
110
110
|
if (inputRef.current) {
|
|
111
|
-
inputRef.current.style.height = `${Math.max(
|
|
111
|
+
inputRef.current.style.height = `${Math.max(
|
|
112
|
+
32,
|
|
113
|
+
inputRef.current.value ? Math.min(inputRef.current.scrollHeight, 24 * 4) : 0,
|
|
114
|
+
)}px`;
|
|
112
115
|
}
|
|
113
116
|
}, []);
|
|
114
117
|
|
|
File without changes
|