fcr-ui-scene 3.4.5 → 3.5.1

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.
Files changed (421) hide show
  1. package/lib/base.js +4 -1
  2. package/lib/creator.d.ts +4 -1
  3. package/lib/creator.js +66 -3
  4. package/lib/electron/app.js +0 -3
  5. package/lib/electron/bootstrap-dev.js +2 -0
  6. package/lib/electron/bootstrap-sdk.js +2 -0
  7. package/lib/electron/main.js +14 -3
  8. package/lib/electron/plugins/devtool-shortcut.js +5 -0
  9. package/lib/electron/plugins/screenshot.js +4 -1
  10. package/lib/modules/action-bar/components/apps/app-item/index.css +3 -3
  11. package/lib/modules/action-bar/components/apps/app-item/index.js +35 -24
  12. package/lib/modules/action-bar/components/apps/app-list.d.ts +3 -0
  13. package/lib/modules/action-bar/components/apps/app-list.js +45 -0
  14. package/lib/modules/action-bar/components/apps/index.css +1 -0
  15. package/lib/modules/action-bar/components/apps/index.js +7 -4
  16. package/lib/modules/action-bar/components/apps/useAppItemOptions.d.ts +10 -2
  17. package/lib/modules/action-bar/components/apps/useAppItemOptions.js +10 -6
  18. package/lib/modules/action-bar/components/apps/useBeautyBackground.d.ts +1 -1
  19. package/lib/modules/action-bar/components/apps/useBeautyBackground.js +2 -2
  20. package/lib/modules/action-bar/components/apps/useInterpreter.d.ts +1 -1
  21. package/lib/modules/action-bar/components/apps/useInterpreter.js +6 -6
  22. package/lib/modules/action-bar/components/apps/useLiveStreaming.d.ts +1 -1
  23. package/lib/modules/action-bar/components/apps/useLiveStreaming.js +2 -2
  24. package/lib/modules/action-bar/components/apps/useWidgetList.d.ts +10 -0
  25. package/lib/modules/action-bar/components/apps/useWidgetList.js +38 -0
  26. package/lib/modules/action-bar/components/chat/index.css +8 -0
  27. package/lib/modules/action-bar/components/chat/index.js +2 -1
  28. package/lib/modules/action-bar/components/collapse/index.d.ts +8 -6
  29. package/lib/modules/action-bar/components/collapse/index.js +60 -74
  30. package/lib/modules/action-bar/components/interpreter/index.js +3 -3
  31. package/lib/modules/action-bar/components/item/index.js +1 -1
  32. package/lib/modules/action-bar/components/more/index.js +13 -7
  33. package/lib/modules/action-bar/components/notification-bar/index.d.ts +1 -1
  34. package/lib/modules/action-bar/components/notification-bar/index.js +13 -6
  35. package/lib/modules/action-bar/components/participants/index.js +1 -1
  36. package/lib/modules/action-bar/components/screen-share/index.js +1 -1
  37. package/lib/modules/action-bar/components/screen-share/submenu.js +55 -18
  38. package/lib/modules/action-bar/components/security/index.js +8 -2
  39. package/lib/modules/action-bar/components/trigger-output-language/index.js +68 -55
  40. package/lib/modules/action-bar/components/trigger-subscribe-language/index.js +35 -18
  41. package/lib/modules/action-bar/index.css +8 -0
  42. package/lib/modules/action-bar/index.d.ts +8 -0
  43. package/lib/modules/action-bar/index.js +6 -3
  44. package/lib/modules/action-bar/store.d.ts +37 -22
  45. package/lib/modules/action-bar/store.js +275 -375
  46. package/lib/modules/action-bar/types.d.ts +8 -13
  47. package/lib/modules/action-bar/view.js +3 -8
  48. package/lib/modules/audio-stream/index.d.ts +6 -1
  49. package/lib/modules/audio-stream/index.js +77 -11
  50. package/lib/modules/chat/chat-room-store.d.ts +4 -7
  51. package/lib/modules/chat/chat-room-store.js +39 -62
  52. package/lib/modules/chat/components/chat-action/index.js +2 -2
  53. package/lib/modules/chat/components/chat-bar/index.css +4 -0
  54. package/lib/modules/chat/components/chat-bar/index.d.ts +1 -1
  55. package/lib/modules/chat/components/chat-bar/index.js +18 -16
  56. package/lib/modules/chat/components/chat-select/index.js +16 -147
  57. package/lib/modules/chat/components/chat-select/select-input/index.d.ts +7 -0
  58. package/lib/modules/chat/components/chat-select/select-input/index.js +35 -0
  59. package/lib/modules/chat/components/chat-select/select-item/index.d.ts +12 -0
  60. package/lib/modules/chat/components/chat-select/select-item/index.js +153 -0
  61. package/lib/modules/chat/components/chat-tabs/index.d.ts +2 -0
  62. package/lib/modules/chat/components/chat-tabs/index.js +61 -0
  63. package/lib/modules/chat/components/message-list/chat-empty/index.d.ts +2 -0
  64. package/lib/modules/chat/components/message-list/chat-empty/index.js +26 -0
  65. package/lib/modules/chat/components/message-list/history-unread-message-button/index.d.ts +7 -0
  66. package/lib/modules/chat/components/message-list/history-unread-message-button/index.js +55 -0
  67. package/lib/modules/chat/components/message-list/index.d.ts +1 -1
  68. package/lib/modules/chat/components/message-list/index.js +55 -359
  69. package/lib/modules/chat/components/message-list/message-item/index.d.ts +15 -0
  70. package/lib/modules/chat/components/message-list/message-item/index.js +309 -0
  71. package/lib/modules/chat/components/message-list/scroll-bottom-button/index.d.ts +9 -0
  72. package/lib/modules/chat/components/message-list/scroll-bottom-button/index.js +67 -0
  73. package/lib/modules/chat/index.css +9 -0
  74. package/lib/modules/chat/index.d.ts +6 -0
  75. package/lib/modules/chat/index.js +4 -1
  76. package/lib/modules/chat/store.d.ts +17 -7
  77. package/lib/modules/chat/store.js +75 -72
  78. package/lib/modules/chat/types.d.ts +7 -7
  79. package/lib/modules/chat/types.js +2 -1
  80. package/lib/modules/chat/view.js +22 -102
  81. package/lib/modules/components/device-control/store.d.ts +4 -3
  82. package/lib/modules/components/device-control/store.js +13 -24
  83. package/lib/modules/components/leave-meeting/components/assign-host.js +17 -2
  84. package/lib/modules/components/leave-meeting/index.js +8 -7
  85. package/lib/modules/components/leave-meeting/store.d.ts +15 -7
  86. package/lib/modules/components/leave-meeting/store.js +116 -95
  87. package/lib/modules/components/member-window/components/member-actions/components/audio-control.d.ts +6 -0
  88. package/lib/modules/components/member-window/components/member-actions/components/audio-control.js +36 -0
  89. package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.d.ts +40 -0
  90. package/lib/modules/components/member-window/components/member-actions/components/icon-buttons/index.js +170 -0
  91. package/lib/modules/components/member-window/components/member-actions/components/icon-status.d.ts +11 -0
  92. package/lib/modules/components/member-window/components/member-actions/components/icon-status.js +105 -0
  93. package/lib/modules/components/member-window/components/member-actions/components/layout/index.d.ts +9 -0
  94. package/lib/modules/components/member-window/components/member-actions/components/layout/index.js +42 -0
  95. package/lib/modules/components/member-window/components/member-actions/components/more-actions.d.ts +11 -0
  96. package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +157 -0
  97. package/lib/modules/components/member-window/components/member-actions/components/share-status.d.ts +2 -0
  98. package/lib/modules/components/member-window/components/member-actions/components/share-status.js +34 -0
  99. package/lib/modules/components/member-window/components/member-actions/components/user-info.d.ts +16 -0
  100. package/lib/modules/components/member-window/components/member-actions/components/user-info.js +130 -0
  101. package/lib/modules/components/member-window/components/member-actions/components/user-tag.d.ts +12 -0
  102. package/lib/modules/components/member-window/components/member-actions/components/user-tag.js +57 -0
  103. package/lib/modules/components/member-window/components/member-actions/index.d.ts +3 -0
  104. package/lib/modules/components/member-window/components/member-actions/index.js +122 -0
  105. package/lib/modules/components/member-window/components/member-actions/libs/index.d.ts +2 -0
  106. package/lib/modules/components/member-window/components/member-actions/libs/index.js +24 -0
  107. package/lib/modules/components/member-window/components/member-actions/provider.d.ts +21 -0
  108. package/lib/modules/components/member-window/components/member-actions/provider.js +77 -0
  109. package/lib/modules/components/member-window/components/member-actions/store.d.ts +48 -0
  110. package/lib/modules/components/member-window/components/member-actions/store.js +307 -0
  111. package/lib/modules/components/member-window/components/member-board.d.ts +2 -0
  112. package/lib/modules/components/member-window/components/member-board.js +63 -0
  113. package/lib/modules/components/member-window/components/mic-volume.d.ts +2 -0
  114. package/lib/modules/components/member-window/components/mic-volume.js +23 -0
  115. package/lib/modules/components/member-window/components/video-player/components/local-video-player.d.ts +4 -0
  116. package/lib/modules/components/member-window/components/video-player/components/local-video-player.js +40 -0
  117. package/lib/modules/components/member-window/components/video-player/components/remote-video-player.d.ts +8 -0
  118. package/lib/modules/components/member-window/components/video-player/components/remote-video-player.js +62 -0
  119. package/lib/modules/components/member-window/components/video-player/index.d.ts +9 -0
  120. package/lib/modules/components/member-window/components/video-player/index.js +38 -0
  121. package/lib/modules/components/member-window/index.css +22 -2
  122. package/lib/modules/components/member-window/index.d.ts +10 -75
  123. package/lib/modules/components/member-window/index.js +20 -738
  124. package/lib/modules/components/member-window/types.d.ts +79 -0
  125. package/lib/modules/components/member-window/types.js +6 -0
  126. package/lib/modules/components/security-menu/index.css +0 -2
  127. package/lib/modules/components/security-menu/index.d.ts +5 -1
  128. package/lib/modules/components/security-menu/index.js +37 -59
  129. package/lib/modules/connection-gateway/index.d.ts +6 -0
  130. package/lib/modules/connection-gateway/index.js +4 -1
  131. package/lib/modules/connection-gateway/store.d.ts +12 -3
  132. package/lib/modules/connection-gateway/store.js +29 -27
  133. package/lib/modules/control-bar/components/meeting-details/index.js +11 -17
  134. package/lib/modules/control-bar/components/more-actions/index.js +5 -4
  135. package/lib/modules/control-bar/components/share-state-nav/index.js +22 -10
  136. package/lib/modules/control-bar/index.css +1 -2
  137. package/lib/modules/control-bar/index.d.ts +14 -0
  138. package/lib/modules/control-bar/index.js +10 -4
  139. package/lib/modules/control-bar/store.d.ts +40 -20
  140. package/lib/modules/control-bar/store.js +156 -191
  141. package/lib/modules/control-bar/view.js +65 -25
  142. package/lib/modules/device-pretest/audio-preview/microphone-detection.js +1 -1
  143. package/lib/modules/dialog/components/control-bar/index.d.ts +1 -1
  144. package/lib/modules/dialog/components/control-bar/index.js +43 -43
  145. package/lib/modules/dialog/components/device-setting/index.js +2 -1
  146. package/lib/modules/dialog/components/dialog-container/component/body.d.ts +1 -0
  147. package/lib/modules/dialog/components/dialog-container/component/body.js +3 -2
  148. package/lib/modules/dialog/components/dialog-container/index.d.ts +2 -0
  149. package/lib/modules/dialog/components/dialog-container/index.js +19 -13
  150. package/lib/modules/dialog/components/live-streaming/index.js +4 -2
  151. package/lib/modules/dialog/components/participant/index.js +2 -2
  152. package/lib/modules/dialog/components/share-screen-selection/index.js +3 -1
  153. package/lib/modules/dialog/components/system-preference/assets/bg1.png +0 -0
  154. package/lib/modules/dialog/components/system-preference/assets/bg2.png +0 -0
  155. package/lib/modules/dialog/components/system-preference/assets/fcr_png_host.png +0 -0
  156. package/lib/modules/dialog/components/system-preference/electron.js +6 -6
  157. package/lib/modules/dialog/components/system-preference/index.css +3 -0
  158. package/lib/modules/dialog/components/system-preference/index.d.ts +17 -2
  159. package/lib/modules/dialog/components/system-preference/index.js +47 -55
  160. package/lib/modules/dialog/components/video-window/index.d.ts +1 -1
  161. package/lib/modules/dialog/components/video-window/index.js +216 -101
  162. package/lib/modules/dialog/components/widget/electron.d.ts +5 -0
  163. package/lib/modules/dialog/components/widget/electron.js +37 -0
  164. package/lib/modules/dialog/components/widget/index.d.ts +6 -0
  165. package/lib/modules/dialog/components/widget/index.js +43 -0
  166. package/lib/modules/dialog/hooks/useElectron.d.ts +7 -0
  167. package/lib/modules/dialog/hooks/useElectron.js +226 -28
  168. package/lib/modules/dialog/index.css +1 -11
  169. package/lib/modules/dialog/index.d.ts +9 -6
  170. package/lib/modules/dialog/index.js +12 -12
  171. package/lib/modules/dialog/store.d.ts +26 -10
  172. package/lib/modules/dialog/store.js +151 -82
  173. package/lib/modules/dialog/type.d.ts +84 -0
  174. package/lib/modules/dialog/type.js +6 -0
  175. package/lib/modules/dialog/view.d.ts +1 -4
  176. package/lib/modules/dialog/view.js +12 -9
  177. package/lib/modules/event-confirm/index.css +11 -0
  178. package/lib/modules/event-confirm/index.d.ts +6 -0
  179. package/lib/modules/event-confirm/index.js +3 -2
  180. package/lib/modules/event-confirm/store.d.ts +10 -4
  181. package/lib/modules/event-confirm/store.js +91 -32
  182. package/lib/modules/event-confirm/view.js +63 -24
  183. package/lib/modules/event-toast/store.js +4 -2
  184. package/lib/modules/interpreter/action/edit-btn/index.js +5 -5
  185. package/lib/modules/interpreter/action/switch-btn/index.js +7 -7
  186. package/lib/modules/interpreter/index.d.ts +5 -1
  187. package/lib/modules/interpreter/index.js +4 -2
  188. package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-language/index.js +3 -3
  189. package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-user/index.js +6 -5
  190. package/lib/modules/interpreter/interpreter-list/interpreter-item/components/pick-user/option-Item.js +2 -2
  191. package/lib/modules/interpreter/interpreter-list/interpreter-item/index.js +2 -2
  192. package/lib/modules/interpreter/store.d.ts +8 -5
  193. package/lib/modules/interpreter/store.js +90 -39
  194. package/lib/modules/interpreter/type.d.ts +5 -1
  195. package/lib/modules/interpreter/utils.d.ts +0 -1
  196. package/lib/modules/interpreter/utils.js +2 -23
  197. package/lib/modules/interpreter/view.js +2 -6
  198. package/lib/modules/invite/index.d.ts +4 -0
  199. package/lib/modules/invite/index.js +3 -1
  200. package/lib/modules/invite/store.d.ts +11 -2
  201. package/lib/modules/invite/store.js +27 -4
  202. package/lib/modules/layout/components/Aside.js +1 -1
  203. package/lib/modules/layout/components/Carousel.js +36 -14
  204. package/lib/modules/layout/components/Gallery.js +33 -11
  205. package/lib/modules/layout/index.css +2 -2
  206. package/lib/modules/layout/index.d.ts +6 -0
  207. package/lib/modules/layout/index.js +4 -1
  208. package/lib/modules/layout/store.d.ts +23 -10
  209. package/lib/modules/layout/store.js +185 -163
  210. package/lib/modules/layout/type.d.ts +2 -0
  211. package/lib/modules/live-streaming/index.d.ts +2 -0
  212. package/lib/modules/live-streaming/index.js +2 -2
  213. package/lib/modules/live-streaming/store.d.ts +4 -8
  214. package/lib/modules/live-streaming/store.js +9 -19
  215. package/lib/modules/notification/index.css +17 -0
  216. package/lib/modules/notification/store.js +4 -2
  217. package/lib/modules/notification/view.js +7 -2
  218. package/lib/modules/offscreen-pulling/index.d.ts +1 -0
  219. package/lib/modules/offscreen-pulling/index.js +4 -0
  220. package/lib/modules/participant/components/confirm-input/index.d.ts +6 -0
  221. package/lib/modules/participant/components/confirm-input/index.js +50 -0
  222. package/lib/modules/participant/components/mute-all/index.d.ts +3 -7
  223. package/lib/modules/participant/components/mute-all/index.js +21 -33
  224. package/lib/modules/participant/components/participants/components/footer/components/buttons.d.ts +6 -0
  225. package/lib/modules/participant/components/participants/components/footer/components/buttons.js +52 -0
  226. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.css +60 -0
  227. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.d.ts +2 -0
  228. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.js +166 -0
  229. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/util.d.ts +5 -0
  230. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/util.js +28 -0
  231. package/lib/modules/participant/components/participants/components/footer/components/footer/index.css +13 -0
  232. package/lib/modules/participant/components/participants/components/footer/components/footer/index.d.ts +5 -0
  233. package/lib/modules/participant/components/participants/components/footer/components/footer/index.js +242 -0
  234. package/lib/modules/participant/components/participants/components/footer/index.d.ts +5 -0
  235. package/lib/modules/participant/components/participants/components/footer/index.js +48 -0
  236. package/lib/modules/participant/components/participants/components/merge/index.d.ts +11 -0
  237. package/lib/modules/participant/components/participants/components/merge/index.js +49 -0
  238. package/lib/modules/participant/components/participants/components/participants/components/attendee/index.css +191 -0
  239. package/lib/modules/participant/components/participants/components/participants/components/attendee/index.d.ts +4 -0
  240. package/lib/modules/participant/components/participants/components/participants/components/attendee/index.js +204 -0
  241. package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.css +49 -0
  242. package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.d.ts +5 -0
  243. package/lib/modules/participant/components/participants/components/participants/components/participants-more/index.js +219 -0
  244. package/lib/modules/participant/components/participants/components/participants/components/user-row/index.d.ts +5 -0
  245. package/lib/modules/participant/components/participants/components/participants/components/user-row/index.js +70 -0
  246. package/lib/modules/participant/components/participants/components/participants/index.css +104 -0
  247. package/lib/modules/participant/components/participants/components/participants/index.d.ts +3 -0
  248. package/lib/modules/participant/components/participants/components/participants/index.js +110 -0
  249. package/lib/modules/participant/components/participants/components/render-tab/index.d.ts +2 -0
  250. package/lib/modules/participant/components/participants/components/render-tab/index.js +49 -0
  251. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/interpreter-tag/index.d.ts +3 -0
  252. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/interpreter-tag/index.js +48 -0
  253. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.d.ts +6 -0
  254. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.js +28 -0
  255. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/user-avatar/index.d.ts +7 -0
  256. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/user-avatar/index.js +39 -0
  257. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.css +69 -0
  258. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.d.ts +5 -0
  259. package/lib/modules/participant/components/participants/components/render-user/components/attendee/index.js +135 -0
  260. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/audio-button/index.d.ts +7 -0
  261. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/audio-button/index.js +31 -0
  262. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.d.ts +12 -0
  263. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-actions-popover/index.js +82 -0
  264. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-to-mainroom-button/index.d.ts +4 -0
  265. package/lib/modules/participant/components/participants/components/render-user/components/user-action/components/move-to-mainroom-button/index.js +26 -0
  266. package/lib/modules/participant/components/participants/components/render-user/components/user-action/index.d.ts +2 -0
  267. package/lib/modules/participant/components/participants/components/render-user/components/user-action/index.js +75 -0
  268. package/lib/modules/participant/components/participants/components/render-user/index.d.ts +5 -0
  269. package/lib/modules/participant/components/participants/components/render-user/index.js +21 -0
  270. package/lib/modules/participant/components/participants/index.js +18 -112
  271. package/lib/modules/participant/components/participants/types.d.ts +96 -0
  272. package/lib/modules/participant/components/participants/types.js +37 -0
  273. package/lib/modules/participant/index.css +3 -0
  274. package/lib/modules/participant/index.d.ts +12 -0
  275. package/lib/modules/participant/index.js +7 -1
  276. package/lib/modules/participant/member-list-data-source.d.ts +2 -2
  277. package/lib/modules/participant/member-list-data-source.js +11 -17
  278. package/lib/modules/participant/store.d.ts +44 -37
  279. package/lib/modules/participant/store.js +527 -536
  280. package/lib/modules/participant/type.d.ts +2 -9
  281. package/lib/modules/pc-audio-connect/store.d.ts +1 -1
  282. package/lib/modules/pc-audio-connect/store.js +9 -6
  283. package/lib/modules/setting/audio-settings/audio-settings.js +5 -4
  284. package/lib/modules/setting/audio-settings/index.css +11 -2
  285. package/lib/modules/setting/config.js +1 -1
  286. package/lib/modules/setting/store.d.ts +1 -0
  287. package/lib/modules/setting/store.js +20 -2
  288. package/lib/modules/setting/video-settings/index.css +12 -17
  289. package/lib/modules/setting/video-settings/video-settings-basic.js +40 -44
  290. package/lib/modules/share-screen/components/selection/index.js +70 -80
  291. package/lib/modules/share-screen/index.d.ts +6 -1
  292. package/lib/modules/share-screen/index.js +4 -1
  293. package/lib/modules/share-screen/store.d.ts +37 -33
  294. package/lib/modules/share-screen/store.js +330 -438
  295. package/lib/modules/sound-effect/sound-effect-player.d.ts +0 -4
  296. package/lib/modules/sound-effect/sound-effect-player.js +4 -4
  297. package/lib/modules/state-bar/index.css +2 -15
  298. package/lib/modules/state-bar/index.d.ts +10 -0
  299. package/lib/modules/state-bar/index.js +6 -1
  300. package/lib/modules/state-bar/live-streaming-state.js +0 -17
  301. package/lib/modules/state-bar/meeting-details.js +12 -24
  302. package/lib/modules/state-bar/meeting-time.js +5 -10
  303. package/lib/modules/state-bar/store.d.ts +31 -8
  304. package/lib/modules/state-bar/store.js +146 -100
  305. package/lib/modules/state-bar/view.js +63 -32
  306. package/lib/modules/video-window/components/deviceState/index.d.ts +7 -0
  307. package/lib/modules/video-window/components/deviceState/index.js +75 -0
  308. package/lib/modules/video-window/components/members/index.css +51 -0
  309. package/lib/modules/video-window/components/members/index.d.ts +2 -0
  310. package/lib/modules/video-window/components/members/index.js +131 -0
  311. package/lib/modules/video-window/components/speaking/index.css +86 -0
  312. package/lib/modules/video-window/components/speaking/index.d.ts +3 -0
  313. package/lib/modules/video-window/components/speaking/index.js +48 -0
  314. package/lib/modules/video-window/components/topControl/index.css +35 -0
  315. package/lib/modules/video-window/components/topControl/index.d.ts +3 -0
  316. package/lib/modules/video-window/components/topControl/index.js +79 -0
  317. package/lib/modules/video-window/index.d.ts +7 -0
  318. package/lib/modules/video-window/index.js +14 -20
  319. package/lib/modules/video-window/store.d.ts +19 -88
  320. package/lib/modules/video-window/store.js +98 -365
  321. package/lib/modules/video-window/type.d.ts +40 -4
  322. package/lib/modules/video-window/type.js +4 -4
  323. package/lib/modules/video-window/view.js +11 -23
  324. package/lib/modules/whiteboard/index.d.ts +1 -0
  325. package/lib/modules/whiteboard/index.js +7 -4
  326. package/lib/modules/widget/index.css +17 -0
  327. package/lib/modules/widget/index.d.ts +10 -0
  328. package/lib/modules/widget/index.js +114 -0
  329. package/lib/modules/widget/sdk.d.ts +30 -0
  330. package/lib/modules/widget/sdk.js +224 -0
  331. package/lib/modules/widget/store.d.ts +14 -0
  332. package/lib/modules/widget/store.js +28 -0
  333. package/lib/modules/widget/type.d.ts +156 -0
  334. package/lib/modules/widget/type.js +6 -0
  335. package/lib/modules/widget/view.d.ts +2 -0
  336. package/lib/modules/widget/view.js +47 -0
  337. package/lib/modules/widget/web-widget.d.ts +29 -0
  338. package/lib/modules/widget/web-widget.js +234 -0
  339. package/lib/providers/ability-provider.d.ts +24 -0
  340. package/lib/providers/ability-provider.js +38 -0
  341. package/lib/providers/chat-provider.d.ts +16 -9
  342. package/lib/providers/chat-provider.js +76 -8
  343. package/lib/providers/device-privilege-provider.d.ts +5 -1
  344. package/lib/providers/device-privilege-provider.js +21 -1
  345. package/lib/providers/device-provider.js +5 -2
  346. package/lib/providers/device-stream-provider.d.ts +15 -3
  347. package/lib/providers/device-stream-provider.js +118 -34
  348. package/lib/providers/dialog-provider.d.ts +9 -8
  349. package/lib/providers/dialog-provider.js +8 -4
  350. package/lib/providers/event-provider.js +4 -2
  351. package/lib/providers/interpreter-provider.d.ts +7 -26
  352. package/lib/providers/interpreter-provider.js +473 -706
  353. package/lib/providers/local-storage-provider.d.ts +6 -1
  354. package/lib/providers/local-storage-provider.js +15 -2
  355. package/lib/providers/message-provider.js +4 -2
  356. package/lib/providers/phone-audio-provider.js +24 -18
  357. package/lib/providers/privilege-provider.d.ts +13 -12
  358. package/lib/providers/privilege-provider.js +19 -11
  359. package/lib/providers/renderer-provider.d.ts +5 -0
  360. package/lib/providers/renderer-provider.js +8 -1
  361. package/lib/providers/room-provider.d.ts +7 -17
  362. package/lib/providers/room-provider.js +113 -161
  363. package/lib/providers/screen-share-provider.d.ts +19 -0
  364. package/lib/providers/screen-share-provider.js +102 -10
  365. package/lib/providers/widget-provider.d.ts +52 -0
  366. package/lib/providers/widget-provider.js +171 -0
  367. package/lib/scenes/main-scene.d.ts +11 -0
  368. package/lib/scenes/main-scene.js +60 -33
  369. package/lib/scenes/waiting-scene.d.ts +9 -0
  370. package/lib/scenes/waiting-scene.js +27 -26
  371. package/lib/schema.d.ts +114 -0
  372. package/lib/schema.js +77 -0
  373. package/lib/shared-data-source/chat-data.d.ts +11 -0
  374. package/lib/shared-data-source/chat-data.js +17 -6
  375. package/lib/shared-data-source/interpreter.d.ts +34 -21
  376. package/lib/shared-data-source/interpreter.js +104 -103
  377. package/lib/shared-data-source/meeting-time.d.ts +68 -0
  378. package/lib/shared-data-source/meeting-time.js +299 -0
  379. package/lib/shared-data-source/member-data.d.ts +126 -0
  380. package/lib/shared-data-source/member-data.js +451 -0
  381. package/lib/shared-data-source/pin-data.d.ts +8 -4
  382. package/lib/shared-data-source/pin-data.js +92 -4
  383. package/lib/shared-data-source/security-data.d.ts +35 -0
  384. package/lib/shared-data-source/security-data.js +156 -0
  385. package/lib/shared-data-source/setting.d.ts +3 -1
  386. package/lib/shared-data-source/setting.js +12 -1
  387. package/lib/shared-data-source/video-window.d.ts +7 -8
  388. package/lib/shared-data-source/video-window.js +97 -94
  389. package/lib/shared-data-source/waiting-room.d.ts +29 -2
  390. package/lib/shared-data-source/waiting-room.js +103 -39
  391. package/lib/translations/enUS.d.ts +25 -12
  392. package/lib/translations/enUS.js +47 -68
  393. package/lib/translations/zhCN.d.ts +26 -12
  394. package/lib/translations/zhCN.js +63 -83
  395. package/lib/type.d.ts +64 -48
  396. package/lib/type.js +14 -1
  397. package/lib/ui-manager.d.ts +3 -2
  398. package/lib/ui-manager.js +8 -7
  399. package/lib/ui-scene.d.ts +7 -1
  400. package/lib/ui-scene.js +187 -97
  401. package/lib/utilities/constant.d.ts +7 -3
  402. package/lib/utilities/constant.js +4 -0
  403. package/lib/utilities/default-config.d.ts +5 -1
  404. package/lib/utilities/default-config.js +28 -2
  405. package/lib/utilities/logger.d.ts +8 -0
  406. package/lib/utilities/logger.js +42 -0
  407. package/lib/utilities/meeting-detail.js +11 -10
  408. package/lib/utilities/parameters.d.ts +4 -0
  409. package/lib/utilities/parameters.js +13 -1
  410. package/lib/utilities/renderer.d.ts +1 -0
  411. package/lib/utilities/renderer.js +4 -1
  412. package/lib/utilities/tools.d.ts +7 -6
  413. package/lib/utilities/tools.js +2 -6
  414. package/lib/utilities/validate-params.d.ts +2 -0
  415. package/lib/utilities/validate-params.js +16 -0
  416. package/lib/waiting-room-control-manager.d.ts +28 -0
  417. package/lib/waiting-room-control-manager.js +212 -0
  418. package/lib/widget-sdk.d.ts +2 -0
  419. package/lib/widget-sdk.js +13 -0
  420. package/package.json +7 -6
  421. package/public/index.html +12 -6
@@ -37,30 +37,36 @@ Object.defineProperty(exports, "__esModule", {
37
37
  });
38
38
  exports.FcrUISharedWaitingRoomDataSourceImpl = void 0;
39
39
  require("core-js/modules/es.array.filter.js");
40
+ require("core-js/modules/es.array.for-each.js");
40
41
  require("core-js/modules/es.array.includes.js");
41
42
  require("core-js/modules/es.array.iterator.js");
42
43
  require("core-js/modules/es.function.bind.js");
44
+ require("core-js/modules/es.object.entries.js");
43
45
  require("core-js/modules/es.object.to-string.js");
44
46
  require("core-js/modules/es.string.includes.js");
45
47
  require("core-js/modules/es.string.iterator.js");
46
48
  require("core-js/modules/es.weak-map.js");
47
49
  require("core-js/modules/esnext.async-iterator.filter.js");
50
+ require("core-js/modules/esnext.async-iterator.for-each.js");
48
51
  require("core-js/modules/esnext.iterator.constructor.js");
49
52
  require("core-js/modules/esnext.iterator.filter.js");
53
+ require("core-js/modules/esnext.iterator.for-each.js");
50
54
  require("core-js/modules/esnext.weak-map.delete-all.js");
51
55
  require("core-js/modules/esnext.weak-map.emplace.js");
56
+ require("core-js/modules/web.dom-collections.for-each.js");
52
57
  require("core-js/modules/web.dom-collections.iterator.js");
53
58
  var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
54
59
  var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
55
60
  var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
56
61
  var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
57
- var _type = require("fcr-core/lib/room-control/type");
58
- var _type2 = require("fcr-core/lib/room-control/privilege-control/type");
62
+ var _type = require("fcr-core/lib/room-control/privilege-control/type");
59
63
  var _mobx = require("mobx");
60
64
  var _constant = require("../utilities/constant");
61
65
  var _base = require("../base");
66
+ var _memberListDataSource = require("../modules/participant/member-list-data-source");
67
+ var _type2 = require("../type");
62
68
  var _FcrUISharedWaitingRoomDataSourceImpl;
63
- var _initProto, _init_totalWaitingRoomUser, _init_unReadState, _handleEventDecs, _ref;
69
+ var _initProto, _init_waitingRoomDataSource, _init_totalWaitingRoomUser, _init_unReadState, _initWaitingRoomUserListDecs, _releaseDecs, _ref;
64
70
  function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
65
71
  function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
66
72
  function _classPrivateFieldSet(s, a, r) { return s.set(_assertClassBrand(s, a), r), r; }
@@ -73,32 +79,45 @@ function _setFunctionName(e, t, n) { "symbol" == _typeof(t) && (t = (t = t.descr
73
79
  function _checkInRHS(e) { if (Object(e) !== e) throw TypeError("right-hand side of 'in' should be an object, got " + (null !== e ? _typeof(e) : "null")); return e; }
74
80
  var _A = /*#__PURE__*/new WeakMap();
75
81
  var _B = /*#__PURE__*/new WeakMap();
76
- _ref = (_handleEventDecs = [_mobx.action, _mobx.action.bound], "_waitingRoomControl");
82
+ var _C = /*#__PURE__*/new WeakMap();
83
+ _ref = (_initWaitingRoomUserListDecs = [_mobx.action, _mobx.action.bound], _releaseDecs = [_mobx.action, _mobx.action.bound], "_waitingRoomControl");
77
84
  var FcrUISharedWaitingRoomDataSourceImpl = exports.FcrUISharedWaitingRoomDataSourceImpl = /*#__PURE__*/function () {
78
- function FcrUISharedWaitingRoomDataSourceImpl(roomProvider, _uiEventStore) {
85
+ function FcrUISharedWaitingRoomDataSourceImpl(_roomProvider, _uiEventStore) {
79
86
  var _this = this;
80
87
  (0, _classCallCheck2["default"])(this, FcrUISharedWaitingRoomDataSourceImpl);
81
88
  (0, _defineProperty2["default"])(this, _ref, void _initProto(this));
82
- _classPrivateFieldInitSpec(this, _A, _init_totalWaitingRoomUser(this, 0));
83
- _classPrivateFieldInitSpec(this, _B, _init_unReadState(this, false));
89
+ _classPrivateFieldInitSpec(this, _A, _init_waitingRoomDataSource(this, new _memberListDataSource.FcrUIMemberListDataSourceImpl()));
90
+ (0, _defineProperty2["default"])(this, "_userControlObserver", {
91
+ onRemoteUsersJoined: this._handleRemoteWaitingUserJoined.bind(this),
92
+ onRemoteUsersLeft: this._handleRemoteWaitingUserLeft.bind(this)
93
+ });
94
+ _classPrivateFieldInitSpec(this, _B, _init_totalWaitingRoomUser(this, 0));
95
+ _classPrivateFieldInitSpec(this, _C, _init_unReadState(this, false));
96
+ this._roomProvider = _roomProvider;
84
97
  this._uiEventStore = _uiEventStore;
85
- this._mainRoomControl = roomProvider.mainRoomControl;
86
- roomProvider.addObserver({
98
+ this._mainRoomControl = _roomProvider.currentRoomControl;
99
+ this._roomProviderObserver = {
87
100
  onJoinWaitingRoom: function onJoinWaitingRoom(roomControl) {
101
+ var _privilegeControl$get;
88
102
  _this._waitingRoomControl = roomControl;
103
+ _this._waitingRoomUserControl = roomControl.getUserControl();
104
+ var privilegeControl = _this._mainRoomControl.getPrivilegeControl();
105
+ _this._waitingRoomTargetUserRole = (_privilegeControl$get = privilegeControl.getSecurityInfo(_type.FcrSecurityAction.WaitingRoom).info) === null || _privilegeControl$get === void 0 ? void 0 : _privilegeControl$get.targetRoles;
89
106
  _this.totalWaitingRoomUser = _this._getWaitingRoomUserCount();
90
- roomControl.getUserControl().addObserver({
91
- onRemoteUsersJoined: _this._handleRemoteWaitingUserJoined.bind(_this),
92
- onRemoteUsersLeft: _this._handleRemoteWaitingUserLeft.bind(_this)
93
- });
107
+ _this._localUserId = _this._waitingRoomUserControl.getLocalUser().userId;
108
+ _this._streamControl = _this._waitingRoomControl.getStreamControl();
109
+ _this._initWaitingRoomUserList();
110
+ roomControl.getUserControl().addObserver(_this._userControlObserver);
111
+ },
112
+ onWaitingRoomManageCanceled: function onWaitingRoomManageCanceled() {
113
+ _this.totalWaitingRoomUser = 0;
114
+ _this.unReadState = false;
94
115
  }
95
- });
96
- this._uiEventStore.addObserver({
97
- onEvent: this._handleEvent.bind(this)
98
- });
116
+ };
117
+ _roomProvider.addObserver(this._roomProviderObserver);
99
118
  }
100
119
  return (0, _createClass2["default"])(FcrUISharedWaitingRoomDataSourceImpl, [{
101
- key: "totalWaitingRoomUser",
120
+ key: "waitingRoomDataSource",
102
121
  get: function get() {
103
122
  return _classPrivateFieldGet(_A, this);
104
123
  },
@@ -106,53 +125,98 @@ var FcrUISharedWaitingRoomDataSourceImpl = exports.FcrUISharedWaitingRoomDataSou
106
125
  _classPrivateFieldSet(_A, this, v);
107
126
  }
108
127
  }, {
109
- key: "unReadState",
128
+ key: "totalWaitingRoomUser",
110
129
  get: function get() {
111
130
  return _classPrivateFieldGet(_B, this);
112
131
  },
113
132
  set: function set(v) {
114
133
  _classPrivateFieldSet(_B, this, v);
115
134
  }
135
+ }, {
136
+ key: "unReadState",
137
+ get: function get() {
138
+ return _classPrivateFieldGet(_C, this);
139
+ },
140
+ set: function set(v) {
141
+ _classPrivateFieldSet(_C, this, v);
142
+ }
143
+ }, {
144
+ key: "_isWaitingRoomTargetUser",
145
+ value: function _isWaitingRoomTargetUser(user) {
146
+ if (this._waitingRoomTargetUserRole) {
147
+ return this._waitingRoomTargetUserRole.includes(user.userRole);
148
+ }
149
+ }
116
150
  }, {
117
151
  key: "_getWaitingRoomUserCount",
118
152
  value: function _getWaitingRoomUserCount() {
119
- var _privilegeControl$get;
120
- var userControl = this._waitingRoomControl.getUserControl();
121
- var privilegeControl = this._mainRoomControl.getPrivilegeControl();
122
- var targetRoles = (_privilegeControl$get = privilegeControl.getSecurityInfo(_type2.FcrSecurityAction.WaitingRoom).info) === null || _privilegeControl$get === void 0 ? void 0 : _privilegeControl$get.targetRoles;
123
- this.totalWaitingRoomUser = userControl.getUserList().filter(function (user) {
124
- return targetRoles.includes(user.userRole);
125
- }).length;
126
- if (this.totalWaitingRoomUser === 0) {
127
- this._uiEventStore.sendEvent(_constant.FcrUIAction.CHANGE_PARTICIPANT_TAB, _type.FcrRoomType.Mainroom);
128
- this.unReadState = false;
153
+ var _this2 = this;
154
+ if (this._waitingRoomUserControl) {
155
+ this.totalWaitingRoomUser = this._waitingRoomUserControl.getUserList().filter(function (user) {
156
+ return _this2._isWaitingRoomTargetUser(user);
157
+ }).length;
158
+ if (this.totalWaitingRoomUser === 0) {
159
+ this._uiEventStore.sendEvent(_constant.FcrUIAction.CHANGE_PARTICIPANT_TAB, _type2.FcrUIRoomType.MAIN_ROOM);
160
+ this.unReadState = false;
161
+ }
162
+ return this.totalWaitingRoomUser;
163
+ } else {
164
+ return 0;
129
165
  }
130
- return this.totalWaitingRoomUser;
131
166
  }
132
167
  }, {
133
168
  key: "_handleRemoteWaitingUserJoined",
134
169
  value: function _handleRemoteWaitingUserJoined(roomId, events) {
170
+ var _this3 = this;
135
171
  this._getWaitingRoomUserCount();
136
172
  this.unReadState = true;
173
+ events.forEach(function (event) {
174
+ var userInfo = event.userInfo;
175
+ _this3._addWaitingRoomDataSource(userInfo);
176
+ });
137
177
  }
138
178
  }, {
139
179
  key: "_handleRemoteWaitingUserLeft",
140
180
  value: function _handleRemoteWaitingUserLeft(roomId, events) {
181
+ var _this4 = this;
141
182
  this._getWaitingRoomUserCount();
183
+ events.forEach(function (event) {
184
+ var userInfo = event.userInfo;
185
+ _this4.waitingRoomDataSource["delete"](userInfo);
186
+ });
142
187
  }
143
188
  }, {
144
- key: "_handleEvent",
145
- value: function _handleEvent(action, payload) {
146
- if (action === _constant.FcrUIAction.WAITING_ROOM_DESTROYED) {
147
- this.totalWaitingRoomUser = 0;
148
- this.unReadState = false;
189
+ key: "_addWaitingRoomDataSource",
190
+ value: function _addWaitingRoomDataSource(modifiedUser) {
191
+ if (modifiedUser.userId !== this._localUserId && this._isWaitingRoomTargetUser(modifiedUser)) {
192
+ this.waitingRoomDataSource.add(modifiedUser, this._streamControl.getStreamsByUserId(modifiedUser.userId), false);
149
193
  }
150
194
  }
195
+ }, {
196
+ key: "_initWaitingRoomUserList",
197
+ value: function _initWaitingRoomUserList() {
198
+ if (!this._waitingRoomUserControl) return;
199
+ var users = this._waitingRoomUserControl.getUsers();
200
+ for (var _i = 0, _Object$entries = Object.entries(users); _i < _Object$entries.length; _i++) {
201
+ var _Object$entries$_i = (0, _slicedToArray2["default"])(_Object$entries[_i], 2),
202
+ userId = _Object$entries$_i[0],
203
+ user = _Object$entries$_i[1];
204
+ this._addWaitingRoomDataSource(user);
205
+ }
206
+ }
207
+ }, {
208
+ key: "release",
209
+ value: function release() {
210
+ var _this$_waitingRoomUse;
211
+ (_this$_waitingRoomUse = this._waitingRoomUserControl) === null || _this$_waitingRoomUse === void 0 || _this$_waitingRoomUse.removeObserver(this._userControlObserver);
212
+ this._roomProvider.removeObserver(this._roomProviderObserver);
213
+ }
151
214
  }]);
152
215
  }();
153
216
  _FcrUISharedWaitingRoomDataSourceImpl = FcrUISharedWaitingRoomDataSourceImpl;
154
- var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_FcrUISharedWaitingRoomDataSourceImpl, [[_mobx.observable, 1, "totalWaitingRoomUser"], [_mobx.observable, 1, "unReadState"], [_handleEventDecs, 18, "_handleEvent"]], []).e, 3);
155
- _init_totalWaitingRoomUser = _applyDecs$e[0];
156
- _init_unReadState = _applyDecs$e[1];
157
- _initProto = _applyDecs$e[2];
217
+ var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_FcrUISharedWaitingRoomDataSourceImpl, [[_mobx.observable, 1, "waitingRoomDataSource"], [_mobx.observable, 1, "totalWaitingRoomUser"], [_mobx.observable, 1, "unReadState"], [_initWaitingRoomUserListDecs, 18, "_initWaitingRoomUserList"], [_releaseDecs, 18, "release"]], []).e, 4);
218
+ _init_waitingRoomDataSource = _applyDecs$e[0];
219
+ _init_totalWaitingRoomUser = _applyDecs$e[1];
220
+ _init_unReadState = _applyDecs$e[2];
221
+ _initProto = _applyDecs$e[3];
158
222
  (0, _base.registerDependency)('sharedWaitingRoomDataSource');
@@ -31,6 +31,9 @@ export declare const enUs: {
31
31
  fmt_attendies_options_sethost: string;
32
32
  fmt_attendies_options_revokecohost: string;
33
33
  fmt_attendies_options_setcohost: string;
34
+ fmt_attendies_toast_cant_sethost: string;
35
+ fmt_attendies_toast_cant_setcohost: string;
36
+ fmt_attendies_button_revokehost_error: string;
34
37
  fmt_attendies_button_rename: string;
35
38
  fmt_attendies_options_allowlocalrecord: string;
36
39
  fmt_attendies_options_putinwaitingroom: string;
@@ -91,7 +94,6 @@ export declare const enUs: {
91
94
  fmt_additional_popup_label_enter_nickname_ok: string;
92
95
  fmt_additional_label_toast_rename_off: string;
93
96
  fmt_actionbar_tips_leavemeeting: string;
94
- fmt_actionbar_button_plenarysession: string;
95
97
  fmt_actionbar_tips_locked: string;
96
98
  fmt_actionbar_tips_recheckleave: string;
97
99
  fmt_aside_status_connecting: string;
@@ -187,6 +189,7 @@ export declare const enUs: {
187
189
  fmt_toolbar_tips_leave_host_select_submit_tips: string;
188
190
  fmt_toolbar_leave_confirm_dialog_kick_title: string;
189
191
  fmt_toolbar_tips_leave_confirm_dialog_kick_info: string;
192
+ fmt_toolbar_tips_leave_confirm_dialog_kick_info_content: string;
190
193
  fmt_toolbar_leave_confirm_dialog_submit: string;
191
194
  fmt_toolbar_tips_leave_confirm_dialog_end_title: string;
192
195
  fmt_toolbar_tips_leave_confirm_dialog_end_info: string;
@@ -238,6 +241,8 @@ export declare const enUs: {
238
241
  fmt_broadcast_livestream_tips_hand_over_pc_to_mobile: string;
239
242
  fmt_broadcast_livestream_tips_hand_over_mobile: string;
240
243
  fmt_broadcast_livestream_label_stop_pc_only: string;
244
+ fmt_broadcast_livestream_button_hide: string;
245
+ fmt_broadcast_livestream_button_show: string;
241
246
  fmt_device_label_audio_mute: string;
242
247
  fmt_device_label_audio_unmute: string;
243
248
  fmt_device_label_video_start: string;
@@ -327,15 +332,12 @@ export declare const enUs: {
327
332
  fmt_uimanager_option_Selfieview: string;
328
333
  fmt_uimanager_tips_urmuted: string;
329
334
  fmt_uimanager_tips_urturnedoff: string;
330
- fmt_uimanager_tips_norightsvideo: string;
331
- fmt_uimanager_tips_norightsaudio: string;
332
335
  fmt_uimanager_tips_inviteturnon: string;
333
336
  fmt_uimanager_tips_Remove: string;
334
337
  fmt_uimanager_tips_designedas: string;
335
338
  fmt_uimanager_tips_userleaft: string;
336
339
  fmt_uimanager_labels_Setas: string;
337
340
  fmt_uimanager_tips_allmuted: string;
338
- fmt_uimanager_tips_meetinglocked: string;
339
341
  fmt_uimanager_tips_meetingunlocked: string;
340
342
  fmt_uimanager_labels_designate: string;
341
343
  fmt_uimanager_labels_Becoming: string;
@@ -363,7 +365,6 @@ export declare const enUs: {
363
365
  fmt_uimanager_window_un_pin: string;
364
366
  fmt_uimanager_window_pin_success: string;
365
367
  fmt_uimanager_window_un_pin_success: string;
366
- fmt_uimanager_window_pin_error_hide_mine: string;
367
368
  fmt_uimanager_window_pin_error_hide_no_video: string;
368
369
  fmt_uimanager_follow_pc: string;
369
370
  fmt_chat_label_chat: string;
@@ -495,7 +496,6 @@ export declare const enUs: {
495
496
  fmt_screenshare_tips_hostprohibitssharing: string;
496
497
  fmt_screenshare_tips_faild_reselect: string;
497
498
  fmt_screenshare_tips_faild_screenselect: string;
498
- fmt_screenshare_tips_faild_nopermission: string;
499
499
  fmt_screenshare_tips_faild_restrict: string;
500
500
  fmt_screenshare_tips_faild_alreadysharing: string;
501
501
  fmt_screenshare_options_allowshare: string;
@@ -504,7 +504,6 @@ export declare const enUs: {
504
504
  fmt_screenshare_options_enableedit: string;
505
505
  fmt_actionbar_screenshare_option_selectcontent: string;
506
506
  fmt_actionbar_screenshare_labels_others: string;
507
- fmt_actionbar_screenshare_tips_restrictshare: string;
508
507
  fmt_modules_labels_sharing: string;
509
508
  fmt_share_tips_othsersharing: string;
510
509
  fmt_share_tips_stopothersharing: string;
@@ -532,7 +531,6 @@ export declare const enUs: {
532
531
  fmt_screenshare_stop_share_board: string;
533
532
  fmt_screenshare_stop_share_screen: string;
534
533
  fmt_screenshare_no_permission_open_board: string;
535
- fmt_screenshare_administrator_disables_share_screen_board: string;
536
534
  fmt_screenshare_no_permission_close_board: string;
537
535
  fmt_screenshare_clash_board_remind_title: string;
538
536
  fmt_screenshare_clash_board_remind_content: string;
@@ -731,8 +729,6 @@ export declare const enUs: {
731
729
  fmt_security_tips_share_screen_off: string;
732
730
  fmt_security_tips_start_audio_on: string;
733
731
  fmt_security_tips_start_audio_off: string;
734
- fmt_security_tips_host_start_audio_on: string;
735
- fmt_security_tips_host_start_audio_off: string;
736
732
  fmt_security_tips_start_video_on: string;
737
733
  fmt_security_tips_start_video_off: string;
738
734
  fmt_security_tips_host_start_video_on: string;
@@ -972,6 +968,8 @@ export declare const enUs: {
972
968
  fmt_record_record_started: string;
973
969
  fmt_record_record_stop_ask: string;
974
970
  fmt_record_record_stop_confirm: string;
971
+ fmt_record_toast_record_paused: string;
972
+ fmt_record_toast_record_resumed: string;
975
973
  fmt_pstn_label_accessmethod: string;
976
974
  fmt_pstn_options_PCaudioconnet: string;
977
975
  fmt_pstn_options_phoneaudioconnet: string;
@@ -1118,7 +1116,6 @@ export declare const enUs: {
1118
1116
  fmt_waitingroom_mainwindow_popup_button_view_detailed: string;
1119
1117
  fmt_waitingroom_mainwindow_popup_button_not_remind: string;
1120
1118
  fmt_waitingroom_attendie_popup_label_Leave: string;
1121
- fmt_waitingroom_attendie_popup_label_click_leave: string;
1122
1119
  fmt_waitingroom_attendie_overview_label_waitingroom: string;
1123
1120
  fmt_waitingroom_attendie_overview_label_wait_moment: string;
1124
1121
  fmt_waitingroom_attendie_overview_label_move_in_by_host: string;
@@ -1327,7 +1324,6 @@ export declare const enUs: {
1327
1324
  fmt_security_setting_mobile_label_rename: string;
1328
1325
  fmt_security_setting_mobile_label_unmute: string;
1329
1326
  fmt_security_setting_mobile_label_start_video: string;
1330
- fmt_security_setting_mobile_popup_toast_lock_meeting: string;
1331
1327
  fmt_security_setting_mobile_popup_toast_unlock_meeting: string;
1332
1328
  fmt_security_setting_mobile_chat_popup_label_participants: string;
1333
1329
  fmt_security_setting_mobile_chat_popup_option_no_one: string;
@@ -1876,4 +1872,21 @@ export declare const enUs: {
1876
1872
  fmt_lock_error: string;
1877
1873
  fmt_end_error: string;
1878
1874
  fmt_host_leave_error: string;
1875
+ fmt_hostkey_window_title_reclaim_host: string;
1876
+ fmt_hostkey_window_content_reclaim_host: string;
1877
+ fmt_hostkey_window_button_reclaim_host: string;
1878
+ fmt_hostkey_window_button_remain_cohost: string;
1879
+ fmt_hostkey_window_button_remain_attendees: string;
1880
+ fmt_hostkey_meetingroom_toast_now_host: string;
1881
+ fmt_hostkey_participant_button_reclaim_host: string;
1882
+ fmt_hostkey_participant_button_claim_host: string;
1883
+ fmt_hostkey_input_hostkey_title_enter_key: string;
1884
+ fmt_hostkey_input_hostkey_text_hint_enter_key: string;
1885
+ fmt_hostkey_input_hostkey_button_cancel: string;
1886
+ fmt_hostkey_input_hostkey_button_ok: string;
1887
+ fmt_hostkey_input_hostkey_tips_incorrect_key: string;
1888
+ fmt_hostkey_meetingroom_toast_unable_to_claim_host: string;
1889
+ fmt_jbh_title_host_not_in_meeting: string;
1890
+ fmt_jbh_title_host_in_meeting: string;
1891
+ fmt_jbh_title_meeting_topic: string;
1879
1892
  };