fcr-ui-scene 3.8.2 → 3.9.0-alpha

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 (872) hide show
  1. package/lib/base.js +2 -2
  2. package/lib/creator/index.js +25 -10
  3. package/lib/creator/provider-initializer.browser.js +28 -3
  4. package/lib/creator/provider-initializer.electron.js +28 -5
  5. package/lib/electron/app.js +26 -9
  6. package/lib/electron/asar-validation.js +5 -1
  7. package/lib/electron/env.d.ts +1 -0
  8. package/lib/electron/env.js +2 -2
  9. package/lib/electron/injections.d.ts +2 -1
  10. package/lib/electron/injections.js +23 -17
  11. package/lib/electron/ipc/type.d.ts +2 -1
  12. package/lib/electron/ipc/type.js +1 -0
  13. package/lib/electron/ipc-protocol.d.ts +2 -0
  14. package/lib/electron/main.js +6 -6
  15. package/lib/electron/plugins/main-window-display.d.ts +8 -0
  16. package/lib/electron/plugins/main-window-display.js +23 -0
  17. package/lib/electron/preload.js +2 -1
  18. package/lib/electron/process-manager/index.d.ts +1 -0
  19. package/lib/electron/process-manager/index.js +37 -0
  20. package/lib/electron/process-manager/state-manager.d.ts +10 -0
  21. package/lib/electron/process-manager/state-manager.js +46 -4
  22. package/lib/electron/sdk-helper.js +4 -0
  23. package/lib/electron/window-proxy/browser-window-proxy-factory.d.ts +7 -0
  24. package/lib/electron/window-proxy/browser-window-proxy-factory.js +46 -0
  25. package/lib/electron/window-proxy/{browser-window-proxy.d.ts → implementations/browser-window-proxy.d.ts} +3 -24
  26. package/lib/electron/window-proxy/implementations/browser-window-proxy.js +335 -0
  27. package/lib/electron/window-proxy/implementations/electron-event-broadcaster.d.ts +9 -0
  28. package/lib/electron/window-proxy/implementations/electron-event-broadcaster.js +32 -0
  29. package/lib/electron/window-proxy/implementations/electron-ipc-handler.d.ts +6 -0
  30. package/lib/electron/window-proxy/implementations/electron-ipc-handler.js +27 -0
  31. package/lib/electron/window-proxy/implementations/electron-logger.d.ts +7 -0
  32. package/lib/electron/window-proxy/implementations/electron-logger.js +34 -0
  33. package/lib/electron/window-proxy/{main-process-handler.d.ts → implementations/main-process-handler.d.ts} +16 -9
  34. package/lib/electron/window-proxy/{main-process-handler.js → implementations/main-process-handler.js} +111 -111
  35. package/lib/electron/window-proxy/interfaces.d.ts +52 -0
  36. package/lib/electron/window-proxy/interfaces.js +6 -0
  37. package/lib/fragments/annotation/cursor.css +77 -0
  38. package/lib/fragments/annotation/index.d.ts +2 -4
  39. package/lib/fragments/annotation/index.js +4 -82
  40. package/lib/fragments/annotation/libs.d.ts +15 -11
  41. package/lib/fragments/annotation/libs.js +75 -26
  42. package/lib/fragments/annotation/store.d.ts +23 -43
  43. package/lib/fragments/annotation/store.js +319 -709
  44. package/lib/fragments/annotation/style.css +5 -6
  45. package/lib/fragments/annotation/view.d.ts +1 -0
  46. package/lib/fragments/annotation/view.js +8 -48
  47. package/lib/fragments/base.js +1 -1
  48. package/lib/fragments/whiteboard/libs.d.ts +72 -0
  49. package/lib/fragments/whiteboard/libs.js +155 -0
  50. package/lib/fragments/whiteboard/store.d.ts +1 -4
  51. package/lib/fragments/whiteboard/store.js +64 -128
  52. package/lib/modules/action-bar/components/apps/index.js +2 -2
  53. package/lib/modules/action-bar/components/collapse/index.js +8 -3
  54. package/lib/modules/action-bar/components/{confirm-leave-meeting → confirm-end-meeting}/index.d.ts +1 -1
  55. package/lib/modules/action-bar/components/{confirm-leave-meeting → confirm-end-meeting}/index.js +14 -33
  56. package/lib/modules/action-bar/components/leave/index.js +1 -1
  57. package/lib/modules/action-bar/components/notification-bar/components/interpreter/index.css +6 -0
  58. package/lib/modules/action-bar/components/notification-bar/components/interpreter/index.d.ts +3 -7
  59. package/lib/modules/action-bar/components/notification-bar/components/interpreter/index.js +66 -42
  60. package/lib/modules/action-bar/components/notification-bar/components/virtual-image/index.d.ts +2 -2
  61. package/lib/modules/action-bar/components/notification-bar/components/virtual-image/index.js +11 -7
  62. package/lib/modules/action-bar/components/notification-bar/index.js +12 -70
  63. package/lib/modules/action-bar/components/screen-share/submenu.js +39 -2
  64. package/lib/modules/action-bar/components/trigger-subscribe-language/guide-tooltip/index.css +1 -0
  65. package/lib/modules/action-bar/components/trigger-subscribe-language/guide-tooltip/index.js +10 -7
  66. package/lib/modules/action-bar/index.css +1 -1
  67. package/lib/modules/action-bar/main-scene/index.d.ts +1 -1
  68. package/lib/modules/action-bar/main-scene/index.js +4 -4
  69. package/lib/modules/action-bar/main-scene/store.base.d.ts +16 -9
  70. package/lib/modules/action-bar/main-scene/store.base.js +165 -94
  71. package/lib/modules/action-bar/type.d.ts +1 -15
  72. package/lib/modules/action-bar/type.js +14 -0
  73. package/lib/modules/action-bar/waiting-scene/view.js +1 -1
  74. package/lib/modules/annotation/board-cursor.css +77 -0
  75. package/lib/modules/annotation/components/color-picker/components/color.d.ts +5 -0
  76. package/lib/modules/annotation/components/color-picker/components/color.js +37 -0
  77. package/lib/modules/annotation/components/color-picker/components/panel.d.ts +1 -0
  78. package/lib/modules/annotation/components/color-picker/components/panel.js +108 -0
  79. package/lib/modules/annotation/components/color-picker/components/picker.d.ts +1 -0
  80. package/lib/modules/annotation/components/color-picker/components/picker.js +75 -0
  81. package/lib/modules/annotation/components/color-picker/index.d.ts +2 -0
  82. package/lib/modules/annotation/components/color-picker/index.js +45 -0
  83. package/lib/modules/annotation/components/eraser-picker.d.ts +4 -0
  84. package/lib/modules/annotation/components/eraser-picker.js +142 -0
  85. package/lib/modules/annotation/components/expansion/index.d.ts +1 -0
  86. package/lib/modules/annotation/components/expansion/index.js +100 -0
  87. package/lib/modules/annotation/components/extra-tool-picker.d.ts +1 -0
  88. package/lib/modules/annotation/components/extra-tool-picker.js +62 -0
  89. package/lib/modules/annotation/components/history.d.ts +2 -0
  90. package/lib/modules/annotation/components/history.js +76 -0
  91. package/lib/modules/annotation/components/icons/fold-icon.d.ts +2 -0
  92. package/lib/modules/annotation/components/icons/fold-icon.js +41 -0
  93. package/lib/modules/annotation/components/icons/move-icon.d.ts +1 -0
  94. package/lib/modules/annotation/components/icons/move-icon.js +66 -0
  95. package/lib/modules/annotation/components/item/index.d.ts +1 -0
  96. package/lib/modules/annotation/components/item/index.js +43 -0
  97. package/lib/modules/annotation/components/move-handle.d.ts +5 -0
  98. package/lib/modules/annotation/components/move-handle.js +134 -0
  99. package/lib/modules/annotation/components/pen-picker.d.ts +4 -0
  100. package/lib/modules/annotation/components/pen-picker.js +150 -0
  101. package/lib/modules/annotation/components/screen-capture-picker.d.ts +4 -0
  102. package/lib/modules/annotation/components/screen-capture-picker.js +84 -0
  103. package/lib/modules/annotation/components/shape-picker.d.ts +4 -0
  104. package/lib/modules/annotation/components/shape-picker.js +201 -0
  105. package/lib/modules/annotation/hooks/index.d.ts +14 -0
  106. package/lib/modules/annotation/hooks/index.js +164 -0
  107. package/lib/modules/annotation/index.d.ts +31 -0
  108. package/lib/modules/annotation/index.js +152 -0
  109. package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/color-tool/color-panel/index.js +2 -2
  110. package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/color-tool/index.js +22 -9
  111. package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/graphic-panel/index.js +2 -3
  112. package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/index.js +22 -9
  113. package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/pen-tool/index.js +22 -9
  114. package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/pen-tool/pen-panel/index.js +1 -1
  115. package/lib/modules/annotation/standalone-toolbar/components/permission-tool/index.d.ts +1 -0
  116. package/lib/modules/annotation/standalone-toolbar/components/permission-tool/index.js +52 -0
  117. package/lib/modules/annotation/standalone-toolbar/store.d.ts +104 -0
  118. package/lib/modules/annotation/standalone-toolbar/store.js +618 -0
  119. package/{lib-es/fragments/annotation/toolbar → lib/modules/annotation/standalone-toolbar}/style.css +4 -1
  120. package/lib/modules/annotation/standalone-toolbar/view.js +193 -0
  121. package/lib/modules/annotation/store.base.d.ts +27 -0
  122. package/lib/modules/annotation/store.base.js +185 -0
  123. package/lib/modules/annotation/store.browser.d.ts +3 -0
  124. package/lib/modules/annotation/store.browser.js +25 -0
  125. package/lib/modules/annotation/store.electron.d.ts +8 -0
  126. package/lib/modules/annotation/store.electron.js +75 -0
  127. package/lib/modules/annotation/style.css +36 -0
  128. package/lib/modules/annotation/toolbar-store.d.ts +86 -0
  129. package/lib/modules/annotation/toolbar-store.js +473 -0
  130. package/lib/modules/annotation/type.d.ts +7 -0
  131. package/lib/modules/annotation/type.js +6 -0
  132. package/lib/modules/annotation/view.d.ts +5 -0
  133. package/lib/modules/annotation/view.js +107 -0
  134. package/lib/modules/chat/chat-room-store.d.ts +8 -1
  135. package/lib/modules/chat/chat-room-store.js +152 -72
  136. package/lib/modules/chat/components/message-list/index.js +123 -93
  137. package/lib/modules/chat/components/message-list/message-item/index.js +89 -67
  138. package/lib/modules/chat/components/message-list/scroll-bottom-button/index.js +6 -8
  139. package/lib/modules/chat/index.css +1 -9
  140. package/lib/modules/chat/store.js +7 -5
  141. package/lib/modules/chat/view.js +4 -9
  142. package/lib/modules/components/annotation-menu/index.d.ts +5 -3
  143. package/lib/modules/components/annotation-menu/index.js +29 -34
  144. package/lib/modules/components/apps/index.css +3 -2
  145. package/lib/modules/components/caption-menu/translation-setting-options.js +2 -2
  146. package/lib/modules/components/confirm-wrapper/index.css +48 -0
  147. package/lib/modules/components/confirm-wrapper/index.d.ts +25 -0
  148. package/lib/modules/components/confirm-wrapper/index.js +87 -0
  149. package/lib/modules/components/control-bar/index.d.ts +40 -8
  150. package/lib/modules/components/control-bar/index.js +350 -200
  151. package/lib/modules/components/device-control/components/audio-menu/index.js +3 -2
  152. package/lib/modules/components/device-control/components/video-menu/index.js +5 -3
  153. package/lib/modules/components/device-control/store.base.d.ts +5 -0
  154. package/lib/modules/components/device-control/store.base.js +17 -1
  155. package/lib/modules/components/leave-meeting/index.css +21 -0
  156. package/lib/modules/components/leave-meeting/index.d.ts +0 -2
  157. package/lib/modules/components/leave-meeting/index.js +63 -103
  158. package/lib/modules/components/leave-meeting/portal.d.ts +0 -1
  159. package/lib/modules/components/leave-meeting/portal.js +4 -6
  160. package/lib/modules/components/leave-meeting/store.base.d.ts +3 -4
  161. package/lib/modules/components/leave-meeting/store.base.js +49 -55
  162. package/lib/modules/components/leave-meeting/style.css +0 -1
  163. package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +2 -1
  164. package/lib/modules/components/member-window/components/member-actions/provider.js +1 -1
  165. package/lib/modules/components/member-window/index.d.ts +1 -1
  166. package/lib/modules/components/member-window/index.js +3 -3
  167. package/lib/modules/components/security-menu/store.js +7 -9
  168. package/lib/modules/components/tab-frame/index.css +2 -2
  169. package/lib/modules/connection-gateway/components/phone/index.js +1 -1
  170. package/lib/modules/connection-gateway/store.js +6 -8
  171. package/lib/modules/control-bar/components/annotation-button/index.d.ts +11 -0
  172. package/lib/modules/control-bar/components/annotation-button/index.js +51 -0
  173. package/lib/modules/control-bar/components/apps-popover/index.css +3 -0
  174. package/lib/modules/control-bar/components/apps-popover/index.d.ts +1 -0
  175. package/lib/modules/control-bar/components/apps-popover/index.js +2 -0
  176. package/lib/modules/control-bar/components/carmera/index.js +1 -1
  177. package/lib/modules/control-bar/components/meeting-details/index.js +14 -20
  178. package/lib/modules/control-bar/components/microphone/index.js +2 -2
  179. package/lib/modules/control-bar/hooks.js +1 -1
  180. package/lib/modules/control-bar/index.css +11 -0
  181. package/lib/modules/control-bar/store.d.ts +20 -5
  182. package/lib/modules/control-bar/store.js +190 -59
  183. package/lib/modules/control-bar/view.js +72 -39
  184. package/lib/modules/device-pretest/audio-preview/microphone-detection.js +3 -9
  185. package/lib/modules/device-pretest/audio-preview/speaker-detection.js +1 -1
  186. package/lib/modules/device-pretest/index.js +1 -1
  187. package/lib/modules/device-pretest/settings/beauty.js +1 -1
  188. package/lib/modules/device-pretest/settings/video-effect.d.ts +2 -0
  189. package/lib/modules/device-pretest/settings/video-effect.js +27 -12
  190. package/lib/modules/device-pretest/settings/video-settings-basic.js +1 -1
  191. package/lib/modules/device-pretest/settings/virtual-background-setting.js +1 -1
  192. package/lib/modules/dialog/components/confirm/index.css +0 -18
  193. package/lib/modules/dialog/components/confirm/index.d.ts +1 -0
  194. package/lib/modules/dialog/components/confirm/index.js +2 -2
  195. package/lib/modules/dialog/components/dialog-container/index.css +3 -4
  196. package/lib/modules/dialog/components/dialog-container/index.d.ts +6 -21
  197. package/lib/modules/dialog/components/dialog-container/index.js +80 -132
  198. package/lib/modules/dialog/components/normal-window/index.d.ts +8 -20
  199. package/lib/modules/dialog/components/normal-window/index.js +14 -34
  200. package/lib/modules/dialog/dialogConfig/browser.d.ts +12 -0
  201. package/lib/modules/dialog/dialogConfig/browser.js +11 -0
  202. package/lib/modules/dialog/dialogConfig/electron.d.ts +4 -0
  203. package/lib/modules/dialog/dialogConfig/electron.js +15 -0
  204. package/lib/modules/dialog/dialogs/annotation-mask/index.d.ts +8 -0
  205. package/lib/modules/dialog/dialogs/annotation-mask/index.js +41 -0
  206. package/lib/modules/dialog/dialogs/annotation-tool/index.d.ts +5 -4
  207. package/lib/modules/dialog/dialogs/annotation-tool/index.js +19 -35
  208. package/lib/modules/dialog/dialogs/caption/index.d.ts +4 -16
  209. package/lib/modules/dialog/dialogs/caption/index.js +25 -19
  210. package/lib/modules/dialog/dialogs/chat/index.d.ts +4 -18
  211. package/lib/modules/dialog/dialogs/chat/index.js +33 -54
  212. package/lib/modules/dialog/dialogs/confirm/index.css +2 -13
  213. package/lib/modules/dialog/dialogs/confirm/index.d.ts +2 -17
  214. package/lib/modules/dialog/dialogs/confirm/index.js +5 -7
  215. package/lib/modules/dialog/dialogs/confirm-leave-meeting/index.d.ts +5 -16
  216. package/lib/modules/dialog/dialogs/confirm-leave-meeting/index.js +4 -24
  217. package/lib/modules/dialog/dialogs/connection-gateway/index.d.ts +4 -20
  218. package/lib/modules/dialog/dialogs/connection-gateway/index.js +6 -29
  219. package/lib/modules/dialog/dialogs/control-bar/index.d.ts +2 -16
  220. package/lib/modules/dialog/dialogs/control-bar/index.js +4 -6
  221. package/lib/modules/dialog/dialogs/control-bar-leave-meeting/index.d.ts +4 -14
  222. package/lib/modules/dialog/dialogs/control-bar-leave-meeting/index.js +3 -21
  223. package/lib/modules/dialog/dialogs/device-setting/index.d.ts +4 -13
  224. package/lib/modules/dialog/dialogs/device-setting/index.js +4 -20
  225. package/lib/modules/dialog/dialogs/end-meeting-notice/index.d.ts +8 -0
  226. package/lib/modules/dialog/dialogs/{end-meeting → end-meeting-notice}/index.js +4 -14
  227. package/lib/modules/dialog/dialogs/interpreter/index.d.ts +4 -14
  228. package/lib/modules/dialog/dialogs/interpreter/index.js +33 -24
  229. package/lib/modules/dialog/dialogs/invite/index.d.ts +4 -18
  230. package/lib/modules/dialog/dialogs/invite/index.js +25 -24
  231. package/lib/modules/dialog/dialogs/live-streaming/index.d.ts +4 -8
  232. package/lib/modules/dialog/dialogs/live-streaming/index.js +7 -11
  233. package/lib/modules/dialog/dialogs/mute-all/index.d.ts +4 -15
  234. package/lib/modules/dialog/dialogs/mute-all/index.js +4 -20
  235. package/lib/modules/dialog/dialogs/participant/index.d.ts +4 -18
  236. package/lib/modules/dialog/dialogs/participant/index.js +31 -31
  237. package/lib/modules/dialog/dialogs/rename/index.d.ts +2 -14
  238. package/lib/modules/dialog/dialogs/rename/index.js +2 -13
  239. package/lib/modules/dialog/dialogs/sample-dialog/index.d.ts +2 -13
  240. package/lib/modules/dialog/dialogs/sample-dialog/index.js +2 -2
  241. package/lib/modules/dialog/dialogs/share-screen-selection/index.d.ts +2 -14
  242. package/lib/modules/dialog/dialogs/share-screen-selection/index.js +3 -12
  243. package/lib/modules/dialog/dialogs/sub-window/index.d.ts +2 -17
  244. package/lib/modules/dialog/dialogs/sub-window/index.js +4 -3
  245. package/lib/modules/dialog/dialogs/subtitles-history/index.d.ts +4 -19
  246. package/lib/modules/dialog/dialogs/subtitles-history/index.js +32 -25
  247. package/lib/modules/dialog/dialogs/system-preference/index.css +3 -2
  248. package/lib/modules/dialog/dialogs/system-preference/index.d.ts +5 -28
  249. package/lib/modules/dialog/dialogs/system-preference/index.js +13 -13
  250. package/lib/modules/dialog/dialogs/toast/index.d.ts +2 -16
  251. package/lib/modules/dialog/dialogs/toast/index.js +5 -5
  252. package/lib/modules/dialog/dialogs/video-window/index.d.ts +2 -18
  253. package/lib/modules/dialog/dialogs/video-window/index.js +4 -4
  254. package/lib/modules/dialog/dialogs/whiteboard/index.d.ts +2 -18
  255. package/lib/modules/dialog/dialogs/whiteboard/index.js +2 -2
  256. package/lib/modules/dialog/dialogs/widget/index.d.ts +4 -14
  257. package/lib/modules/dialog/dialogs/widget/index.js +22 -26
  258. package/lib/modules/dialog/index.css +4 -11
  259. package/lib/modules/dialog/level-config.d.ts +1 -0
  260. package/lib/modules/dialog/level-config.js +1 -0
  261. package/lib/modules/dialog/store.base.js +0 -3
  262. package/lib/modules/dialog/store.electron.d.ts +1 -0
  263. package/lib/modules/dialog/store.electron.js +16 -9
  264. package/lib/modules/dialog/type.d.ts +3 -1
  265. package/lib/modules/dialog/view.js +25 -1
  266. package/lib/modules/dialog/web-dialog-wrapper.d.ts +3 -0
  267. package/lib/modules/dialog/web-dialog-wrapper.js +154 -0
  268. package/lib/modules/event-toast/index.css +5 -2
  269. package/lib/modules/event-toast/store.browser.js +1 -1
  270. package/lib/modules/event-toast/store.electron.js +1 -1
  271. package/lib/modules/interpreter/index.css +1 -2
  272. package/lib/modules/interpreter/store.js +22 -19
  273. package/lib/modules/interpreter/utils.js +1 -1
  274. package/lib/modules/invite/components/pstn-invite.js +5 -5
  275. package/lib/modules/invite/store.d.ts +2 -2
  276. package/lib/modules/invite/store.js +1 -1
  277. package/lib/modules/layout/components/Aside.js +1 -1
  278. package/lib/modules/layout/components/Carousel.js +1 -1
  279. package/lib/modules/layout/components/CommonVideoRenderer.js +14 -4
  280. package/lib/modules/layout/components/Gallery.js +1 -1
  281. package/lib/modules/layout/index.css +0 -31
  282. package/lib/modules/layout/store.base.d.ts +9 -15
  283. package/lib/modules/layout/store.base.js +69 -198
  284. package/lib/modules/layout/store.browser.d.ts +2 -1
  285. package/lib/modules/layout/store.browser.js +62 -2
  286. package/lib/modules/layout/store.electron.d.ts +1 -3
  287. package/lib/modules/layout/store.electron.js +10 -28
  288. package/lib/modules/layout/view.js +1 -3
  289. package/lib/modules/live-streaming/index.dev.js +1 -1
  290. package/lib/modules/live-streaming/store.js +3 -4
  291. package/lib/modules/participant/components/confirm-input/index.css +15 -0
  292. package/lib/modules/participant/components/confirm-input/index.js +10 -13
  293. package/lib/modules/participant/components/mute-all/index.css +34 -0
  294. package/lib/modules/participant/components/mute-all/index.d.ts +1 -0
  295. package/lib/modules/participant/components/mute-all/index.js +21 -15
  296. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/index.js +16 -2
  297. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/util.d.ts +2 -1
  298. package/lib/modules/participant/components/participants/components/footer/components/drop-menu/util.js +3 -1
  299. package/lib/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.js +3 -2
  300. package/lib/modules/participant/components/participants/components/render-user/components/user-action/index.js +1 -1
  301. package/lib/modules/participant/index.css +0 -16
  302. package/lib/modules/participant/store.base.d.ts +18 -5
  303. package/lib/modules/participant/store.base.js +219 -127
  304. package/lib/modules/participant/store.browser.d.ts +2 -1
  305. package/lib/modules/participant/store.browser.js +2 -2
  306. package/lib/modules/participant/store.electron.d.ts +2 -1
  307. package/lib/modules/participant/store.electron.js +2 -2
  308. package/lib/modules/pc-audio-connect/waiting-scene/index.js +6 -1
  309. package/lib/modules/phone-audio-connect/store.js +1 -1
  310. package/lib/modules/phone-audio-connect/view.js +1 -1
  311. package/lib/modules/secondary-window/index.d.ts +14 -7
  312. package/lib/modules/secondary-window/index.js +51 -25
  313. package/lib/modules/secondary-window/store.d.ts +4 -2
  314. package/lib/modules/secondary-window/store.js +39 -8
  315. package/lib/modules/secondary-window/type.d.ts +16 -25
  316. package/lib/modules/secondary-window/type.js +1 -0
  317. package/lib/modules/secondary-window/view.js +59 -58
  318. package/lib/modules/setting/audio-settings/audio-settings.js +2 -2
  319. package/lib/modules/setting/audio-whiteList/audio-device-adaptation.js +2 -2
  320. package/lib/modules/setting/audio-whiteList/audio-whiteList-manager.js +1 -1
  321. package/lib/modules/setting/caption_and_transcribing/index.js +1 -1
  322. package/lib/modules/setting/general-settings/general-settings.js +4 -4
  323. package/lib/modules/setting/index.css +2 -3
  324. package/lib/modules/setting/index.d.ts +1 -2
  325. package/lib/modules/setting/index.js +3 -10
  326. package/lib/modules/setting/minutes-settings/minutes-settings.js +1 -1
  327. package/lib/modules/setting/state/index.js +1 -1
  328. package/lib/modules/setting/storage-settings/storage-settings.js +1 -1
  329. package/lib/modules/setting/store.base.d.ts +11 -9
  330. package/lib/modules/setting/store.base.js +103 -88
  331. package/lib/modules/setting/store.electron.d.ts +2 -1
  332. package/lib/modules/setting/store.electron.js +19 -1
  333. package/lib/modules/setting/translate-settings/translate-settings.js +1 -1
  334. package/lib/modules/setting/type.d.ts +1 -9
  335. package/lib/modules/setting/video-settings/video-settings-basic.js +1 -1
  336. package/lib/modules/setting/video-settings/video-settings.js +11 -7
  337. package/lib/modules/setting/view.js +1 -1
  338. package/lib/modules/share-screen/components/control-bar/index.js +0 -86
  339. package/lib/modules/share-screen/components/selection/index.js +3 -1
  340. package/lib/modules/share-screen/store.base.d.ts +1 -1
  341. package/lib/modules/share-screen/store.base.js +10 -14
  342. package/lib/modules/share-screen/store.electron.d.ts +4 -0
  343. package/lib/modules/share-screen/store.electron.js +108 -34
  344. package/lib/modules/state-bar/layout-config.js +1 -1
  345. package/lib/modules/state-bar/live-streaming-state.js +6 -7
  346. package/lib/modules/state-bar/main-scene/store.browser.js +1 -1
  347. package/lib/modules/state-bar/main-scene/store.electron.js +1 -1
  348. package/lib/modules/state-bar/meeting-details.js +14 -21
  349. package/lib/modules/state-bar/meeting-network-state.css +5 -1
  350. package/lib/modules/state-bar/meeting-network-state.js +7 -1
  351. package/lib/modules/state-bar/meeting-time.js +1 -1
  352. package/lib/modules/state-bar/network-quality.js +1 -1
  353. package/lib/modules/state-bar/recording.js +1 -1
  354. package/lib/modules/state-bar/store.base.d.ts +3 -3
  355. package/lib/modules/state-bar/store.base.js +15 -24
  356. package/lib/modules/state-bar/view.js +6 -7
  357. package/lib/modules/subtitles-history/components/list-item.js +6 -1
  358. package/lib/modules/subtitles-history/index.css +2 -5
  359. package/lib/modules/subtitles-history/store.base.js +24 -12
  360. package/lib/modules/subtitles-history/store.electron.js +8 -2
  361. package/lib/modules/subtitles-history/view.js +7 -5
  362. package/lib/modules/toast-manager/index.d.ts +8 -0
  363. package/lib/modules/toast-manager/index.js +58 -0
  364. package/lib/modules/toast-manager/store.d.ts +28 -0
  365. package/lib/modules/toast-manager/store.js +391 -0
  366. package/lib/modules/toast-manager/toast-params.d.ts +7 -0
  367. package/lib/modules/toast-manager/toast-params.js +89 -0
  368. package/lib/modules/toast-manager/type.d.ts +112 -0
  369. package/lib/modules/toast-manager/type.js +337 -0
  370. package/lib/modules/video-window/store.d.ts +2 -2
  371. package/lib/modules/video-window/store.js +28 -50
  372. package/lib/modules/whiteboard/components/control-bar/store.d.ts +0 -1
  373. package/lib/modules/whiteboard/components/control-bar/store.js +0 -6
  374. package/lib/modules/whiteboard/components/toolbar/store.d.ts +1 -0
  375. package/lib/modules/whiteboard/components/toolbar/store.js +25 -14
  376. package/lib/modules/whiteboard/store.js +10 -9
  377. package/lib/modules/whiteboard/view.js +0 -1
  378. package/lib/modules/widget/store.electron.d.ts +0 -4
  379. package/lib/modules/widget/store.electron.js +3 -38
  380. package/lib/modules/widget/view.js +1 -1
  381. package/lib/modules/widget/web-widget.d.ts +1 -1
  382. package/lib/object-manager.d.ts +2 -0
  383. package/lib/object-manager.js +2 -0
  384. package/lib/plugins/multi-lang-plugin.js +1 -1
  385. package/lib/providers/ability-provider.d.ts +33 -1
  386. package/lib/providers/ability-provider.js +29 -1
  387. package/lib/providers/annotation/provider.base.d.ts +39 -0
  388. package/lib/providers/annotation/provider.base.js +270 -0
  389. package/lib/providers/annotation/provider.browser.d.ts +3 -0
  390. package/lib/providers/annotation/provider.browser.js +25 -0
  391. package/lib/providers/annotation/provider.electron.d.ts +34 -0
  392. package/lib/providers/annotation/provider.electron.js +231 -0
  393. package/lib/providers/annotation/standalone-toolbar-control/index.d.ts +26 -0
  394. package/lib/{fragments/annotation/toolbar/store.js → providers/annotation/standalone-toolbar-control/index.js} +103 -175
  395. package/lib/providers/annotation/toolbar-control/index.d.ts +31 -0
  396. package/lib/providers/annotation/toolbar-control/index.js +205 -0
  397. package/lib/providers/annotation/type.d.ts +64 -21
  398. package/lib/providers/app-list-provider.d.ts +4 -1
  399. package/lib/providers/app-list-provider.js +13 -7
  400. package/lib/providers/board-share/bar-control/base.d.ts +6 -8
  401. package/lib/providers/board-share/bar-control/base.js +7 -36
  402. package/lib/providers/board-share/bar-control/browser.d.ts +4 -1
  403. package/lib/providers/board-share/bar-control/browser.js +76 -3
  404. package/lib/providers/board-share/bar-control/electron.d.ts +4 -6
  405. package/lib/providers/board-share/bar-control/electron.js +36 -12
  406. package/lib/providers/board-share/provider.base.d.ts +11 -8
  407. package/lib/providers/board-share/provider.base.js +72 -13
  408. package/lib/providers/board-share/type.d.ts +11 -12
  409. package/lib/providers/device-privilege-provider.d.ts +5 -4
  410. package/lib/providers/device-privilege-provider.js +85 -62
  411. package/lib/providers/device-provider.d.ts +32 -1
  412. package/lib/providers/device-provider.js +412 -161
  413. package/lib/providers/device-stream-provider.d.ts +3 -3
  414. package/lib/providers/device-stream-provider.js +37 -111
  415. package/lib/providers/dialog/provider.electron.js +6 -1
  416. package/lib/providers/interpreter-provider.js +5 -5
  417. package/lib/providers/message/provider.d.ts +3 -1
  418. package/lib/providers/message/provider.js +12 -0
  419. package/lib/providers/message/type.d.ts +15 -0
  420. package/lib/providers/mouse-detect/provider.js +2 -2
  421. package/lib/providers/mouse-detect/struct.d.ts +2 -1
  422. package/lib/providers/mouse-detect/struct.js +1 -0
  423. package/lib/providers/multi-display-provider.d.ts +1 -0
  424. package/lib/providers/multi-display-provider.js +13 -0
  425. package/lib/providers/phone-audio-provider.d.ts +15 -0
  426. package/lib/providers/phone-audio-provider.js +17 -10
  427. package/lib/providers/privilege-provider.d.ts +15 -15
  428. package/lib/providers/room-provider/room-provider.d.ts +23 -11
  429. package/lib/providers/room-provider/room-provider.js +93 -199
  430. package/lib/providers/room-provider/waiting-room-control-manager.d.ts +2 -2
  431. package/lib/providers/room-provider/waiting-room-control-manager.js +2 -2
  432. package/lib/providers/screen-share/provider.base.d.ts +1 -0
  433. package/lib/providers/screen-share/provider.base.js +6 -1
  434. package/lib/providers/screen-share/provider.browser.js +13 -9
  435. package/lib/providers/screen-share/provider.electron.d.ts +1 -1
  436. package/lib/providers/screen-share/provider.electron.js +54 -44
  437. package/lib/providers/screen-share/strategy/electron.js +18 -3
  438. package/lib/providers/screen-share/stream-state-sync.d.ts +1 -1
  439. package/lib/providers/screen-share/stream-state-sync.js +4 -4
  440. package/lib/providers/screen-share/type.d.ts +9 -1
  441. package/lib/providers/session-provider.d.ts +1 -1
  442. package/lib/providers/stt-provider/stt-provider.d.ts +1 -1
  443. package/lib/providers/stt-provider/stt-provider.js +40 -77
  444. package/lib/providers/stt-provider/type.d.ts +5 -3
  445. package/lib/providers/stt-provider/type.js +4 -2
  446. package/lib/providers/user-audio-volume-provider.d.ts +47 -0
  447. package/lib/providers/user-audio-volume-provider.js +319 -0
  448. package/lib/providers/window/provider.d.ts +1 -1
  449. package/lib/providers/window/provider.js +23 -12
  450. package/lib/providers/window/renderer-window.d.ts +8 -2
  451. package/lib/providers/window/renderer-window.js +118 -33
  452. package/lib/providers/window/type.d.ts +1 -3
  453. package/lib/runtime.d.ts +12 -13
  454. package/lib/scenes/main-scene.js +98 -69
  455. package/lib/scenes/waiting-scene.js +4 -4
  456. package/lib/shared-data/member-data.d.ts +0 -9
  457. package/lib/shared-data/member-data.js +35 -61
  458. package/lib/shared-data/pin-data.d.ts +3 -2
  459. package/lib/shared-data/pin-data.js +8 -11
  460. package/lib/shared-data/setting.js +1 -1
  461. package/lib/shared-data/user-audio-volume.d.ts +19 -0
  462. package/lib/shared-data/user-audio-volume.js +104 -0
  463. package/lib/shared-data/video-window.js +49 -60
  464. package/lib/translations/enUS.d.ts +10 -0
  465. package/lib/translations/enUS.js +13 -3
  466. package/lib/translations/zhCN.d.ts +10 -0
  467. package/lib/translations/zhCN.js +12 -2
  468. package/lib/type.d.ts +27 -19
  469. package/lib/type.js +20 -2
  470. package/lib/ui-manager.js +1 -1
  471. package/lib/ui-scene-switch.d.ts +1 -0
  472. package/lib/ui-scene-switch.js +197 -87
  473. package/lib/utilities/browser-api.d.ts +0 -1
  474. package/lib/utilities/browser-api.js +0 -42
  475. package/lib/utilities/constant.d.ts +4 -4
  476. package/lib/utilities/constant.js +4 -5
  477. package/lib/utilities/default-config.d.ts +2 -8
  478. package/lib/utilities/default-config.js +8 -48
  479. package/lib/utilities/dialog-utils.js +1 -2
  480. package/lib/utilities/focus-helper.js +2 -2
  481. package/lib/utilities/logger.d.ts +1 -2
  482. package/lib/utilities/logger.js +12 -40
  483. package/lib/utilities/package-info.d.ts +1 -2
  484. package/lib/utilities/package-info.js +5 -6
  485. package/lib/utilities/renderer.d.ts +1 -0
  486. package/lib/utilities/renderer.js +7 -1
  487. package/lib/utilities/shared-storage.d.ts +2 -3
  488. package/lib/utilities/shared-storage.js +15 -11
  489. package/lib/utilities/tools.d.ts +1 -44
  490. package/lib/utilities/tools.js +28 -193
  491. package/lib/utilities/validate-params.js +3 -5
  492. package/lib-es/base.js +2 -2
  493. package/lib-es/creator/index.js +28 -12
  494. package/lib-es/creator/provider-initializer.browser.js +28 -3
  495. package/lib-es/creator/provider-initializer.electron.js +28 -5
  496. package/lib-es/electron/app.js +24 -7
  497. package/lib-es/electron/asar-validation.js +5 -1
  498. package/lib-es/electron/env.js +1 -1
  499. package/lib-es/electron/injections.js +22 -17
  500. package/lib-es/electron/ipc/type.js +1 -0
  501. package/lib-es/electron/main.js +3 -2
  502. package/lib-es/electron/plugins/main-window-display.js +16 -0
  503. package/lib-es/electron/preload.js +3 -2
  504. package/lib-es/electron/process-manager/index.js +37 -0
  505. package/lib-es/electron/process-manager/state-manager.js +46 -4
  506. package/lib-es/electron/sdk-helper.js +4 -0
  507. package/lib-es/electron/window-proxy/browser-window-proxy-factory.js +38 -0
  508. package/lib-es/electron/window-proxy/implementations/browser-window-proxy.js +328 -0
  509. package/lib-es/electron/window-proxy/implementations/electron-event-broadcaster.js +24 -0
  510. package/lib-es/electron/window-proxy/implementations/electron-ipc-handler.js +19 -0
  511. package/lib-es/electron/window-proxy/implementations/electron-logger.js +26 -0
  512. package/lib-es/electron/window-proxy/{main-process-handler.js → implementations/main-process-handler.js} +110 -113
  513. package/lib-es/electron/window-proxy/interfaces.js +1 -0
  514. package/lib-es/fragments/annotation/cursor.css +77 -0
  515. package/lib-es/fragments/annotation/index.js +5 -83
  516. package/lib-es/fragments/annotation/libs.js +63 -14
  517. package/lib-es/fragments/annotation/store.js +321 -711
  518. package/lib-es/fragments/annotation/style.css +5 -6
  519. package/lib-es/fragments/annotation/view.js +9 -48
  520. package/lib-es/fragments/base.js +1 -1
  521. package/lib-es/fragments/whiteboard/libs.js +147 -0
  522. package/lib-es/fragments/whiteboard/store.js +65 -129
  523. package/lib-es/modules/action-bar/components/apps/index.js +2 -2
  524. package/lib-es/modules/action-bar/components/collapse/index.js +8 -3
  525. package/lib-es/modules/action-bar/components/{confirm-leave-meeting → confirm-end-meeting}/index.js +14 -33
  526. package/lib-es/modules/action-bar/components/leave/index.js +1 -1
  527. package/lib-es/modules/action-bar/components/notification-bar/components/interpreter/index.css +6 -0
  528. package/lib-es/modules/action-bar/components/notification-bar/components/interpreter/index.js +66 -42
  529. package/lib-es/modules/action-bar/components/notification-bar/components/virtual-image/index.js +11 -7
  530. package/lib-es/modules/action-bar/components/notification-bar/index.js +13 -71
  531. package/lib-es/modules/action-bar/components/screen-share/submenu.js +39 -2
  532. package/lib-es/modules/action-bar/components/trigger-subscribe-language/guide-tooltip/index.css +1 -0
  533. package/lib-es/modules/action-bar/components/trigger-subscribe-language/guide-tooltip/index.js +11 -8
  534. package/lib-es/modules/action-bar/index.css +1 -1
  535. package/lib-es/modules/action-bar/main-scene/index.js +4 -4
  536. package/lib-es/modules/action-bar/main-scene/store.base.js +165 -94
  537. package/lib-es/modules/action-bar/type.js +15 -0
  538. package/lib-es/modules/action-bar/waiting-scene/view.js +1 -1
  539. package/lib-es/modules/annotation/board-cursor.css +77 -0
  540. package/lib-es/modules/annotation/components/color-picker/components/color.js +29 -0
  541. package/lib-es/modules/annotation/components/color-picker/components/panel.js +100 -0
  542. package/lib-es/modules/annotation/components/color-picker/components/picker.js +67 -0
  543. package/lib-es/modules/annotation/components/color-picker/index.js +38 -0
  544. package/lib-es/modules/annotation/components/eraser-picker.js +134 -0
  545. package/lib-es/modules/annotation/components/expansion/index.js +85 -0
  546. package/lib-es/modules/annotation/components/extra-tool-picker.js +46 -0
  547. package/lib-es/modules/annotation/components/history.js +68 -0
  548. package/lib-es/modules/annotation/components/icons/fold-icon.js +33 -0
  549. package/lib-es/modules/annotation/components/icons/move-icon.js +59 -0
  550. package/lib-es/modules/annotation/components/item/index.js +35 -0
  551. package/lib-es/modules/annotation/components/move-handle.js +127 -0
  552. package/lib-es/modules/annotation/components/pen-picker.js +142 -0
  553. package/lib-es/modules/annotation/components/screen-capture-picker.js +77 -0
  554. package/lib-es/modules/annotation/components/shape-picker.js +193 -0
  555. package/lib-es/modules/annotation/hooks/index.js +156 -0
  556. package/lib-es/modules/annotation/index.js +144 -0
  557. package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/color-tool/color-panel/index.js +2 -2
  558. package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/color-tool/index.js +23 -10
  559. package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/graphic-panel/index.js +2 -3
  560. package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/index.js +23 -10
  561. package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/pen-tool/index.js +23 -10
  562. package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/pen-tool/pen-panel/index.js +2 -2
  563. package/lib-es/modules/annotation/standalone-toolbar/components/permission-tool/index.js +44 -0
  564. package/lib-es/modules/annotation/standalone-toolbar/store.js +611 -0
  565. package/{lib/fragments/annotation/toolbar → lib-es/modules/annotation/standalone-toolbar}/style.css +4 -1
  566. package/lib-es/modules/annotation/standalone-toolbar/view.js +186 -0
  567. package/lib-es/modules/annotation/store.base.js +178 -0
  568. package/lib-es/modules/annotation/store.browser.js +17 -0
  569. package/lib-es/modules/annotation/store.electron.js +67 -0
  570. package/lib-es/modules/annotation/style.css +36 -0
  571. package/lib-es/modules/annotation/toolbar-store.js +466 -0
  572. package/lib-es/modules/annotation/type.js +1 -0
  573. package/lib-es/modules/annotation/view.js +99 -0
  574. package/lib-es/modules/chat/chat-room-store.js +152 -72
  575. package/lib-es/modules/chat/components/message-list/index.js +123 -89
  576. package/lib-es/modules/chat/components/message-list/message-item/index.js +89 -67
  577. package/lib-es/modules/chat/components/message-list/scroll-bottom-button/index.js +6 -8
  578. package/lib-es/modules/chat/index.css +1 -9
  579. package/lib-es/modules/chat/store.js +7 -5
  580. package/lib-es/modules/chat/view.js +2 -7
  581. package/lib-es/modules/components/annotation-menu/index.js +28 -33
  582. package/lib-es/modules/components/apps/index.css +3 -2
  583. package/lib-es/modules/components/caption-menu/translation-setting-options.js +2 -2
  584. package/lib-es/modules/components/confirm-wrapper/index.css +48 -0
  585. package/lib-es/modules/components/confirm-wrapper/index.js +80 -0
  586. package/lib-es/modules/components/control-bar/index.js +349 -199
  587. package/lib-es/modules/components/device-control/components/audio-menu/index.js +3 -2
  588. package/lib-es/modules/components/device-control/components/video-menu/index.js +5 -3
  589. package/lib-es/modules/components/device-control/store.base.js +17 -1
  590. package/lib-es/modules/components/leave-meeting/index.css +21 -0
  591. package/lib-es/modules/components/leave-meeting/index.js +63 -102
  592. package/lib-es/modules/components/leave-meeting/portal.js +3 -5
  593. package/lib-es/modules/components/leave-meeting/store.base.js +49 -55
  594. package/lib-es/modules/components/leave-meeting/style.css +0 -1
  595. package/lib-es/modules/components/member-window/components/member-actions/components/more-actions.js +2 -1
  596. package/lib-es/modules/components/member-window/components/member-actions/provider.js +1 -1
  597. package/lib-es/modules/components/member-window/index.js +3 -3
  598. package/lib-es/modules/components/security-menu/store.js +7 -9
  599. package/lib-es/modules/components/tab-frame/index.css +2 -2
  600. package/lib-es/modules/connection-gateway/components/phone/index.js +1 -1
  601. package/lib-es/modules/connection-gateway/store.js +6 -8
  602. package/lib-es/modules/control-bar/components/annotation-button/index.js +43 -0
  603. package/lib-es/modules/control-bar/components/apps-popover/index.css +3 -0
  604. package/lib-es/modules/control-bar/components/apps-popover/index.js +2 -0
  605. package/lib-es/modules/control-bar/components/carmera/index.js +1 -1
  606. package/lib-es/modules/control-bar/components/meeting-details/index.js +10 -16
  607. package/lib-es/modules/control-bar/components/microphone/index.js +2 -2
  608. package/lib-es/modules/control-bar/hooks.js +1 -1
  609. package/lib-es/modules/control-bar/index.css +11 -0
  610. package/lib-es/modules/control-bar/store.js +184 -53
  611. package/lib-es/modules/control-bar/view.js +72 -39
  612. package/lib-es/modules/device-pretest/audio-preview/microphone-detection.js +4 -10
  613. package/lib-es/modules/device-pretest/audio-preview/speaker-detection.js +1 -1
  614. package/lib-es/modules/device-pretest/index.js +1 -1
  615. package/lib-es/modules/device-pretest/settings/beauty.js +1 -1
  616. package/lib-es/modules/device-pretest/settings/video-effect.js +27 -12
  617. package/lib-es/modules/device-pretest/settings/video-settings-basic.js +1 -1
  618. package/lib-es/modules/device-pretest/settings/virtual-background-setting.js +1 -1
  619. package/lib-es/modules/dialog/components/confirm/index.css +0 -18
  620. package/lib-es/modules/dialog/components/confirm/index.js +2 -1
  621. package/lib-es/modules/dialog/components/dialog-container/index.css +3 -4
  622. package/lib-es/modules/dialog/components/dialog-container/index.js +80 -126
  623. package/lib-es/modules/dialog/components/normal-window/index.js +15 -35
  624. package/lib-es/modules/dialog/dialogConfig/browser.js +4 -0
  625. package/lib-es/modules/dialog/dialogConfig/electron.js +8 -0
  626. package/lib-es/modules/dialog/dialogs/annotation-mask/index.js +34 -0
  627. package/lib-es/modules/dialog/dialogs/annotation-tool/index.js +18 -34
  628. package/lib-es/modules/dialog/dialogs/caption/index.js +24 -18
  629. package/lib-es/modules/dialog/dialogs/chat/index.js +32 -53
  630. package/lib-es/modules/dialog/dialogs/confirm/index.css +2 -13
  631. package/lib-es/modules/dialog/dialogs/confirm/index.js +4 -6
  632. package/lib-es/modules/dialog/dialogs/confirm-leave-meeting/index.js +3 -23
  633. package/lib-es/modules/dialog/dialogs/connection-gateway/index.js +5 -28
  634. package/lib-es/modules/dialog/dialogs/control-bar/index.js +3 -5
  635. package/lib-es/modules/dialog/dialogs/control-bar-leave-meeting/index.js +2 -20
  636. package/lib-es/modules/dialog/dialogs/device-setting/index.js +3 -19
  637. package/lib-es/modules/dialog/dialogs/{end-meeting → end-meeting-notice}/index.js +3 -13
  638. package/lib-es/modules/dialog/dialogs/interpreter/index.js +32 -23
  639. package/lib-es/modules/dialog/dialogs/invite/index.js +24 -23
  640. package/lib-es/modules/dialog/dialogs/live-streaming/index.js +6 -10
  641. package/lib-es/modules/dialog/dialogs/mute-all/index.js +3 -19
  642. package/lib-es/modules/dialog/dialogs/participant/index.js +31 -30
  643. package/lib-es/modules/dialog/dialogs/rename/index.js +1 -12
  644. package/lib-es/modules/dialog/dialogs/sample-dialog/index.js +1 -1
  645. package/lib-es/modules/dialog/dialogs/share-screen-selection/index.js +2 -11
  646. package/lib-es/modules/dialog/dialogs/sub-window/index.js +3 -2
  647. package/lib-es/modules/dialog/dialogs/subtitles-history/index.js +31 -24
  648. package/lib-es/modules/dialog/dialogs/system-preference/index.css +3 -2
  649. package/lib-es/modules/dialog/dialogs/system-preference/index.js +12 -12
  650. package/lib-es/modules/dialog/dialogs/toast/index.js +4 -4
  651. package/lib-es/modules/dialog/dialogs/video-window/index.js +3 -3
  652. package/lib-es/modules/dialog/dialogs/whiteboard/index.js +1 -1
  653. package/lib-es/modules/dialog/dialogs/widget/index.js +21 -25
  654. package/lib-es/modules/dialog/index.css +4 -11
  655. package/lib-es/modules/dialog/level-config.js +1 -0
  656. package/lib-es/modules/dialog/store.base.js +0 -3
  657. package/lib-es/modules/dialog/store.electron.js +16 -9
  658. package/lib-es/modules/dialog/view.js +25 -1
  659. package/lib-es/modules/dialog/web-dialog-wrapper.js +147 -0
  660. package/lib-es/modules/event-toast/index.css +5 -2
  661. package/lib-es/modules/event-toast/store.browser.js +1 -1
  662. package/lib-es/modules/event-toast/store.electron.js +1 -1
  663. package/lib-es/modules/interpreter/index.css +1 -2
  664. package/lib-es/modules/interpreter/store.js +22 -19
  665. package/lib-es/modules/interpreter/utils.js +1 -1
  666. package/lib-es/modules/invite/components/pstn-invite.js +4 -4
  667. package/lib-es/modules/invite/store.js +1 -1
  668. package/lib-es/modules/layout/components/Aside.js +1 -1
  669. package/lib-es/modules/layout/components/Carousel.js +1 -1
  670. package/lib-es/modules/layout/components/CommonVideoRenderer.js +15 -5
  671. package/lib-es/modules/layout/components/Gallery.js +1 -1
  672. package/lib-es/modules/layout/index.css +0 -31
  673. package/lib-es/modules/layout/store.base.js +71 -200
  674. package/lib-es/modules/layout/store.browser.js +62 -1
  675. package/lib-es/modules/layout/store.electron.js +10 -28
  676. package/lib-es/modules/layout/view.js +1 -3
  677. package/lib-es/modules/live-streaming/index.dev.js +1 -1
  678. package/lib-es/modules/live-streaming/store.js +3 -4
  679. package/lib-es/modules/participant/components/confirm-input/index.css +15 -0
  680. package/lib-es/modules/participant/components/confirm-input/index.js +10 -13
  681. package/lib-es/modules/participant/components/mute-all/index.css +34 -0
  682. package/lib-es/modules/participant/components/mute-all/index.js +21 -15
  683. package/lib-es/modules/participant/components/participants/components/footer/components/drop-menu/index.js +17 -3
  684. package/lib-es/modules/participant/components/participants/components/footer/components/drop-menu/util.js +3 -1
  685. package/lib-es/modules/participant/components/participants/components/render-user/components/attendee/components/microphone-indicator/index.js +3 -2
  686. package/lib-es/modules/participant/components/participants/components/render-user/components/user-action/index.js +1 -1
  687. package/lib-es/modules/participant/index.css +0 -16
  688. package/lib-es/modules/participant/store.base.js +219 -127
  689. package/lib-es/modules/participant/store.browser.js +2 -2
  690. package/lib-es/modules/participant/store.electron.js +2 -2
  691. package/lib-es/modules/pc-audio-connect/waiting-scene/index.js +6 -1
  692. package/lib-es/modules/phone-audio-connect/store.js +1 -1
  693. package/lib-es/modules/phone-audio-connect/view.js +1 -1
  694. package/lib-es/modules/secondary-window/index.js +51 -25
  695. package/lib-es/modules/secondary-window/store.js +40 -9
  696. package/lib-es/modules/secondary-window/type.js +1 -0
  697. package/lib-es/modules/secondary-window/view.js +60 -59
  698. package/lib-es/modules/setting/audio-settings/audio-settings.js +2 -2
  699. package/lib-es/modules/setting/audio-whiteList/audio-device-adaptation.js +2 -2
  700. package/lib-es/modules/setting/audio-whiteList/audio-whiteList-manager.js +1 -1
  701. package/lib-es/modules/setting/caption_and_transcribing/index.js +1 -1
  702. package/lib-es/modules/setting/general-settings/general-settings.js +5 -5
  703. package/lib-es/modules/setting/index.css +2 -3
  704. package/lib-es/modules/setting/index.js +3 -10
  705. package/lib-es/modules/setting/minutes-settings/minutes-settings.js +1 -1
  706. package/lib-es/modules/setting/state/index.js +1 -1
  707. package/lib-es/modules/setting/storage-settings/storage-settings.js +1 -1
  708. package/lib-es/modules/setting/store.base.js +103 -88
  709. package/lib-es/modules/setting/store.electron.js +19 -1
  710. package/lib-es/modules/setting/translate-settings/translate-settings.js +1 -1
  711. package/lib-es/modules/setting/video-settings/video-settings-basic.js +1 -1
  712. package/lib-es/modules/setting/video-settings/video-settings.js +11 -7
  713. package/lib-es/modules/setting/view.js +1 -1
  714. package/lib-es/modules/share-screen/components/control-bar/index.js +0 -86
  715. package/lib-es/modules/share-screen/components/selection/index.js +3 -1
  716. package/lib-es/modules/share-screen/store.base.js +10 -14
  717. package/lib-es/modules/share-screen/store.electron.js +109 -35
  718. package/lib-es/modules/state-bar/layout-config.js +1 -1
  719. package/lib-es/modules/state-bar/live-streaming-state.js +5 -6
  720. package/lib-es/modules/state-bar/main-scene/store.browser.js +1 -1
  721. package/lib-es/modules/state-bar/main-scene/store.electron.js +1 -1
  722. package/lib-es/modules/state-bar/meeting-details.js +10 -17
  723. package/lib-es/modules/state-bar/meeting-network-state.css +5 -1
  724. package/lib-es/modules/state-bar/meeting-network-state.js +7 -1
  725. package/lib-es/modules/state-bar/meeting-time.js +1 -1
  726. package/lib-es/modules/state-bar/network-quality.js +1 -1
  727. package/lib-es/modules/state-bar/recording.js +1 -1
  728. package/lib-es/modules/state-bar/store.base.js +15 -24
  729. package/lib-es/modules/state-bar/view.js +5 -6
  730. package/lib-es/modules/subtitles-history/components/list-item.js +6 -1
  731. package/lib-es/modules/subtitles-history/index.css +2 -5
  732. package/lib-es/modules/subtitles-history/store.base.js +24 -12
  733. package/lib-es/modules/subtitles-history/store.electron.js +8 -2
  734. package/lib-es/modules/subtitles-history/view.js +7 -5
  735. package/lib-es/modules/toast-manager/index.js +50 -0
  736. package/lib-es/modules/toast-manager/store.js +383 -0
  737. package/lib-es/modules/toast-manager/toast-params.js +82 -0
  738. package/lib-es/modules/toast-manager/type.js +329 -0
  739. package/lib-es/modules/video-window/store.js +28 -50
  740. package/lib-es/modules/whiteboard/components/control-bar/store.js +0 -6
  741. package/lib-es/modules/whiteboard/components/toolbar/store.js +25 -14
  742. package/lib-es/modules/whiteboard/store.js +10 -9
  743. package/lib-es/modules/whiteboard/view.js +0 -1
  744. package/lib-es/modules/widget/store.electron.js +12 -47
  745. package/lib-es/modules/widget/view.js +1 -1
  746. package/lib-es/object-manager.js +2 -0
  747. package/lib-es/plugins/multi-lang-plugin.js +1 -1
  748. package/lib-es/providers/ability-provider.js +29 -1
  749. package/lib-es/providers/annotation/provider.base.js +263 -0
  750. package/lib-es/providers/annotation/provider.browser.js +17 -0
  751. package/lib-es/providers/annotation/provider.electron.js +224 -0
  752. package/lib-es/{fragments/annotation/toolbar/store.js → providers/annotation/standalone-toolbar-control/index.js} +102 -174
  753. package/lib-es/providers/annotation/toolbar-control/index.js +198 -0
  754. package/lib-es/providers/app-list-provider.js +13 -7
  755. package/lib-es/providers/board-share/bar-control/base.js +7 -36
  756. package/lib-es/providers/board-share/bar-control/browser.js +78 -4
  757. package/lib-es/providers/board-share/bar-control/electron.js +36 -12
  758. package/lib-es/providers/board-share/provider.base.js +73 -14
  759. package/lib-es/providers/device-privilege-provider.js +85 -62
  760. package/lib-es/providers/device-provider.js +413 -162
  761. package/lib-es/providers/device-stream-provider.js +37 -111
  762. package/lib-es/providers/dialog/provider.electron.js +6 -1
  763. package/lib-es/providers/interpreter-provider.js +5 -5
  764. package/lib-es/providers/message/provider.js +12 -0
  765. package/lib-es/providers/mouse-detect/provider.js +1 -1
  766. package/lib-es/providers/mouse-detect/struct.js +1 -0
  767. package/lib-es/providers/multi-display-provider.js +15 -2
  768. package/lib-es/providers/phone-audio-provider.js +17 -10
  769. package/lib-es/providers/room-provider/room-provider.js +95 -201
  770. package/lib-es/providers/room-provider/waiting-room-control-manager.js +1 -1
  771. package/lib-es/providers/screen-share/provider.base.js +6 -1
  772. package/lib-es/providers/screen-share/provider.browser.js +13 -9
  773. package/lib-es/providers/screen-share/provider.electron.js +54 -44
  774. package/lib-es/providers/screen-share/strategy/electron.js +18 -3
  775. package/lib-es/providers/screen-share/stream-state-sync.js +4 -4
  776. package/lib-es/providers/stt-provider/stt-provider.js +65 -102
  777. package/lib-es/providers/stt-provider/type.js +4 -2
  778. package/lib-es/providers/user-audio-volume-provider.js +312 -0
  779. package/lib-es/providers/window/provider.js +23 -13
  780. package/lib-es/providers/window/renderer-window.js +118 -33
  781. package/lib-es/scenes/main-scene.js +113 -83
  782. package/lib-es/scenes/waiting-scene.js +5 -5
  783. package/lib-es/shared-data/member-data.js +35 -61
  784. package/lib-es/shared-data/pin-data.js +8 -11
  785. package/lib-es/shared-data/setting.js +1 -1
  786. package/lib-es/shared-data/user-audio-volume.js +97 -0
  787. package/lib-es/shared-data/video-window.js +49 -60
  788. package/lib-es/translations/enUS.js +13 -3
  789. package/lib-es/translations/zhCN.js +12 -2
  790. package/lib-es/type.js +19 -1
  791. package/lib-es/ui-manager.js +1 -1
  792. package/lib-es/ui-scene-switch.js +199 -88
  793. package/lib-es/utilities/browser-api.js +0 -40
  794. package/lib-es/utilities/constant.js +4 -5
  795. package/lib-es/utilities/default-config.js +8 -48
  796. package/lib-es/utilities/dialog-utils.js +1 -1
  797. package/lib-es/utilities/focus-helper.js +1 -1
  798. package/lib-es/utilities/logger.js +12 -40
  799. package/lib-es/utilities/package-info.js +5 -6
  800. package/lib-es/utilities/renderer.js +7 -1
  801. package/lib-es/utilities/shared-storage.js +16 -12
  802. package/lib-es/utilities/tools.js +2 -188
  803. package/lib-es/utilities/validate-params.js +3 -5
  804. package/package.json +7 -8
  805. package/public/js/meeting-manager.js +13 -11
  806. package/lib/electron/window-proxy/browser-window-proxy.js +0 -728
  807. package/lib/fragments/annotation/toolbar/store.d.ts +0 -64
  808. package/lib/fragments/annotation/toolbar/view.js +0 -148
  809. package/lib/fragments/annotation/utils.d.ts +0 -1
  810. package/lib/fragments/annotation/utils.js +0 -27
  811. package/lib/modules/dialog/components/dialog-container/component/body.d.ts +0 -20
  812. package/lib/modules/dialog/components/dialog-container/component/body.js +0 -111
  813. package/lib/modules/dialog/components/host-area-container/index.d.ts +0 -12
  814. package/lib/modules/dialog/components/host-area-container/index.js +0 -153
  815. package/lib/modules/dialog/dialogs/end-meeting/index.d.ts +0 -13
  816. package/lib/modules/dialog/dialogs/interpreter/index.css +0 -30
  817. package/lib/modules/dialog/dialogs/mute-all/index.css +0 -20
  818. package/lib/modules/whiteboard/components/multi-window/index.css +0 -63
  819. package/lib/modules/whiteboard/components/multi-window/index.d.ts +0 -5
  820. package/lib/modules/whiteboard/components/multi-window/index.js +0 -39
  821. package/lib/providers/annotation/provider.d.ts +0 -15
  822. package/lib/providers/annotation/provider.js +0 -69
  823. package/lib/utilities/hooks.d.ts +0 -14
  824. package/lib/utilities/hooks.js +0 -100
  825. package/lib/utilities/mute-action.d.ts +0 -4
  826. package/lib/utilities/mute-action.js +0 -48
  827. package/lib/utilities/platform.d.ts +0 -2
  828. package/lib/utilities/platform.js +0 -14
  829. package/lib/utilities/regex.d.ts +0 -1
  830. package/lib/utilities/regex.js +0 -14
  831. package/lib/utilities/useNamespace.d.ts +0 -15
  832. package/lib/utilities/useNamespace.js +0 -66
  833. package/lib-es/electron/window-proxy/browser-window-proxy.js +0 -720
  834. package/lib-es/fragments/annotation/toolbar/view.js +0 -140
  835. package/lib-es/fragments/annotation/utils.js +0 -20
  836. package/lib-es/modules/dialog/components/dialog-container/component/body.js +0 -103
  837. package/lib-es/modules/dialog/components/host-area-container/index.js +0 -146
  838. package/lib-es/modules/dialog/dialogs/interpreter/index.css +0 -30
  839. package/lib-es/modules/dialog/dialogs/mute-all/index.css +0 -20
  840. package/lib-es/modules/whiteboard/components/multi-window/index.css +0 -63
  841. package/lib-es/modules/whiteboard/components/multi-window/index.js +0 -31
  842. package/lib-es/providers/annotation/provider.js +0 -61
  843. package/lib-es/utilities/hooks.js +0 -82
  844. package/lib-es/utilities/mute-action.js +0 -41
  845. package/lib-es/utilities/platform.js +0 -7
  846. package/lib-es/utilities/regex.js +0 -7
  847. package/lib-es/utilities/useNamespace.js +0 -59
  848. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/color-tool/color-panel/index.d.ts +0 -0
  849. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/color-tool/index.d.ts +0 -0
  850. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/graphic-panel/index.d.ts +0 -0
  851. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/graphic-panel/libs.d.ts +0 -0
  852. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/graphic-panel/libs.js +0 -0
  853. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/index.d.ts +0 -0
  854. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/item/item.d.ts +0 -0
  855. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/item/item.js +0 -0
  856. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/item/style.css +0 -0
  857. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/panel/index.d.ts +0 -0
  858. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/panel/index.js +0 -0
  859. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/panel/style.css +0 -0
  860. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/pen-tool/index.d.ts +0 -0
  861. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/pen-tool/pen-panel/index.d.ts +0 -0
  862. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/tips/index.d.ts +0 -0
  863. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/tips/index.js +0 -0
  864. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/tips/style.css +0 -0
  865. /package/lib/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/view.d.ts +0 -0
  866. /package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/graphic-tool/graphic-panel/libs.js +0 -0
  867. /package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/item/item.js +0 -0
  868. /package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/item/style.css +0 -0
  869. /package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/panel/index.js +0 -0
  870. /package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/panel/style.css +0 -0
  871. /package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/tips/index.js +0 -0
  872. /package/lib-es/{fragments/annotation/toolbar → modules/annotation/standalone-toolbar}/components/tips/style.css +0 -0
@@ -0,0 +1,77 @@
1
+ .board-widget-app {
2
+ height: 100%;
3
+ cursor:
4
+ url('data:image/svg+xml,%3Csvg width="18" height="18" viewBox="0 0 " fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0_71146_163811)"%3E%3Cg filter="url(%23filter0_d_71146_163811)"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M4.95701 14.2575L1.05431 2.41514C0.867777 1.84912 1.1772 1.23963 1.74543 1.05381C1.96805 0.981012 2.20837 0.982105 2.43032 1.05693L14.264 5.04624C14.8305 5.23722 15.1343 5.84949 14.9426 6.4138C14.8422 6.70924 14.6183 6.94694 14.3288 7.0656L9.3004 9.12601C9.08832 9.21291 8.92123 9.38255 8.83806 9.59543L6.99502 14.3123C6.77809 14.8675 6.15043 15.1423 5.59309 14.9263C5.29135 14.8093 5.058 14.5639 4.95701 14.2575Z" fill="%234262FF"/%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M4.95701 14.2575L1.05431 2.41514C0.867777 1.84912 1.1772 1.23963 1.74543 1.05381C1.96805 0.981012 2.20837 0.982105 2.43032 1.05693L14.264 5.04624C14.8305 5.23722 15.1343 5.84949 14.9426 6.4138C14.8422 6.70924 14.6183 6.94694 14.3288 7.0656L9.3004 9.12601C9.08832 9.21291 8.92123 9.38255 8.83806 9.59543L6.99502 14.3123C6.77809 14.8675 6.15043 15.1423 5.59309 14.9263C5.29135 14.8093 5.058 14.5639 4.95701 14.2575Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_d_71146_163811" x="-2.5" y="-1.5" width="23" height="23" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dx="1" dy="2"/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="out"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.14 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_71146_163811"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_71146_163811" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0_71146_163811"%3E%3Crect width="18" height="18" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E'),
5
+ auto;
6
+ }
7
+
8
+ .annotation-container {
9
+ height: 100%;
10
+ }
11
+
12
+ .board-widget-cursor-normal {
13
+ cursor:
14
+ url('data:image/svg+xml,%3Csvg width="18" height="18" viewBox="0 0 " fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0_71146_163811)"%3E%3Cg filter="url(%23filter0_d_71146_163811)"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M4.95701 14.2575L1.05431 2.41514C0.867777 1.84912 1.1772 1.23963 1.74543 1.05381C1.96805 0.981012 2.20837 0.982105 2.43032 1.05693L14.264 5.04624C14.8305 5.23722 15.1343 5.84949 14.9426 6.4138C14.8422 6.70924 14.6183 6.94694 14.3288 7.0656L9.3004 9.12601C9.08832 9.21291 8.92123 9.38255 8.83806 9.59543L6.99502 14.3123C6.77809 14.8675 6.15043 15.1423 5.59309 14.9263C5.29135 14.8093 5.058 14.5639 4.95701 14.2575Z" fill="%234262FF"/%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M4.95701 14.2575L1.05431 2.41514C0.867777 1.84912 1.1772 1.23963 1.74543 1.05381C1.96805 0.981012 2.20837 0.982105 2.43032 1.05693L14.264 5.04624C14.8305 5.23722 15.1343 5.84949 14.9426 6.4138C14.8422 6.70924 14.6183 6.94694 14.3288 7.0656L9.3004 9.12601C9.08832 9.21291 8.92123 9.38255 8.83806 9.59543L6.99502 14.3123C6.77809 14.8675 6.15043 15.1423 5.59309 14.9263C5.29135 14.8093 5.058 14.5639 4.95701 14.2575Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_d_71146_163811" x="-2.5" y="-1.5" width="23" height="23" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dx="1" dy="2"/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="out"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.14 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_71146_163811"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_71146_163811" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0_71146_163811"%3E%3Crect width="18" height="18" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E'),
15
+ auto;
16
+ }
17
+
18
+ .board-widget-cursor-none {
19
+ cursor:
20
+ url('data:image/svg+xml,%3Csvg width="18" height="18" viewBox="0 0 " fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0_71146_163811)"%3E%3Cg filter="url(%23filter0_d_71146_163811)"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M4.95701 14.2575L1.05431 2.41514C0.867777 1.84912 1.1772 1.23963 1.74543 1.05381C1.96805 0.981012 2.20837 0.982105 2.43032 1.05693L14.264 5.04624C14.8305 5.23722 15.1343 5.84949 14.9426 6.4138C14.8422 6.70924 14.6183 6.94694 14.3288 7.0656L9.3004 9.12601C9.08832 9.21291 8.92123 9.38255 8.83806 9.59543L6.99502 14.3123C6.77809 14.8675 6.15043 15.1423 5.59309 14.9263C5.29135 14.8093 5.058 14.5639 4.95701 14.2575Z" fill="%234262FF"/%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M4.95701 14.2575L1.05431 2.41514C0.867777 1.84912 1.1772 1.23963 1.74543 1.05381C1.96805 0.981012 2.20837 0.982105 2.43032 1.05693L14.264 5.04624C14.8305 5.23722 15.1343 5.84949 14.9426 6.4138C14.8422 6.70924 14.6183 6.94694 14.3288 7.0656L9.3004 9.12601C9.08832 9.21291 8.92123 9.38255 8.83806 9.59543L6.99502 14.3123C6.77809 14.8675 6.15043 15.1423 5.59309 14.9263C5.29135 14.8093 5.058 14.5639 4.95701 14.2575Z" stroke="white" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_d_71146_163811" x="-2.5" y="-1.5" width="23" height="23" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dx="1" dy="2"/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="out"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.14 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_71146_163811"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_71146_163811" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0_71146_163811"%3E%3Crect width="18" height="18" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E'),
21
+ auto;
22
+ }
23
+
24
+ .board-widget-cursor-curve {
25
+ cursor:
26
+ url('data:image/svg+xml,%3Csvg width="18" height="18" viewBox="0 0 " fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M2.39931 16.9972C2.41668 16.9977 2.43414 16.998 2.45168 16.998C2.4606 16.998 2.46574 16.998 2.4703 16.9964C2.47376 16.9952 2.47689 16.993 2.4811 16.9893C2.54809 16.9807 2.6135 16.967 2.67693 16.9487L6.17048 16.4097C6.54866 16.4097 6.88482 16.2417 7.13694 15.9895L14.5745 8.57295C15.1418 8.00567 15.1418 7.06021 14.5745 6.49294L11.5071 3.42546C10.9398 2.85818 9.99433 2.85818 9.42705 3.42546L8.01261 4.83989L7.99897 4.85315C7.98482 4.86613 7.97145 4.87964 7.95889 4.89362L1.98945 10.8631C1.73733 11.1362 1.59026 11.4724 1.56925 11.8295L1.00197 15.4223V15.5063C0.999702 15.5495 0.999396 15.5924 1.00103 15.635C1.00035 15.6524 1 15.6699 1 15.6875C1 16.4124 1.58763 17 2.3125 17C2.34167 17 2.37061 16.999 2.39931 16.9972ZM3.6232 15.6181C3.58855 14.9532 3.05908 14.4193 2.39607 14.3776L2.7529 12.131L5.9026 15.2987L3.6232 15.6181ZM11.8094 9.56554L8.43535 6.1742L3.48939 11.0998L6.93648 14.5273L11.8094 9.56554Z" fill="black" fill-opacity="0.8"/%3E%3Cpath d="M2.39931 16.9972L2.40745 16.7473C2.39931 16.747 2.39115 16.7472 2.38301 16.7477L2.39931 16.9972ZM2.4703 16.9964L2.55354 17.2322L2.55358 17.2321L2.4703 16.9964ZM2.4811 16.9893L2.4493 16.7413C2.39903 16.7477 2.3519 16.7693 2.31417 16.8032L2.4811 16.9893ZM2.67693 16.9487L2.63881 16.7017C2.62829 16.7033 2.61788 16.7056 2.60765 16.7085L2.67693 16.9487ZM6.17048 16.4097V16.1597C6.15771 16.1597 6.14497 16.1607 6.13236 16.1627L6.17048 16.4097ZM7.13694 15.9895L6.96042 15.8125L6.96017 15.8128L7.13694 15.9895ZM14.5745 8.57295L14.7511 8.74997L14.7513 8.74972L14.5745 8.57295ZM14.5745 6.49294L14.7513 6.31616V6.31616L14.5745 6.49294ZM11.5071 3.42546L11.3303 3.60223V3.60223L11.5071 3.42546ZM9.42705 3.42546L9.60383 3.60223V3.60223L9.42705 3.42546ZM8.01261 4.83989L8.18689 5.01917L8.18939 5.01667L8.01261 4.83989ZM7.99897 4.85315L8.16798 5.03752L8.17324 5.03241L7.99897 4.85315ZM7.95889 4.89362L8.13591 5.07065L8.14482 5.06074L7.95889 4.89362ZM1.98945 10.8631L1.81253 10.6861L1.80575 10.6935L1.98945 10.8631ZM1.56925 11.8295L1.81619 11.8685C1.81746 11.8605 1.81834 11.8523 1.81882 11.8442L1.56925 11.8295ZM1.00197 15.4223L0.755034 15.3833C0.752998 15.3962 0.751975 15.4092 0.751975 15.4223H1.00197ZM1.00197 15.5063L1.25197 15.5195V15.5063H1.00197ZM1.00103 15.635L1.25084 15.6448C1.25109 15.6384 1.25109 15.6319 1.25085 15.6254L1.00103 15.635ZM2.39607 14.3776L2.14916 14.3384C2.13812 14.4079 2.15691 14.4789 2.20093 14.5339C2.24495 14.5889 2.31011 14.6227 2.38039 14.6271L2.39607 14.3776ZM3.6232 15.6181L3.37353 15.6311C3.37718 15.7011 3.41004 15.7663 3.46411 15.8109C3.51817 15.8555 3.58848 15.8754 3.65789 15.8657L3.6232 15.6181ZM2.7529 12.131L2.93018 11.9547C2.86382 11.888 2.7656 11.8642 2.67604 11.8931C2.58648 11.922 2.52076 11.9988 2.506 12.0918L2.7529 12.131ZM5.9026 15.2987L5.9373 15.5463C6.03107 15.5331 6.10936 15.4681 6.13955 15.3784C6.16974 15.2886 6.14664 15.1896 6.07988 15.1224L5.9026 15.2987ZM8.43535 6.1742L8.61258 5.99787C8.5658 5.95086 8.50226 5.92435 8.43593 5.9242C8.36961 5.92405 8.30594 5.95025 8.25894 5.99706L8.43535 6.1742ZM11.8094 9.56554L11.9878 9.74072C12.0837 9.64301 12.0832 9.4863 11.9866 9.38922L11.8094 9.56554ZM3.48939 11.0998L3.31298 10.9226C3.26585 10.9696 3.23937 11.0334 3.23939 11.0999C3.23942 11.1664 3.26595 11.2302 3.31312 11.2771L3.48939 11.0998ZM6.93648 14.5273L6.76021 14.7046C6.80742 14.7515 6.8714 14.7777 6.93797 14.7773C7.00454 14.7769 7.0682 14.75 7.11485 14.7025L6.93648 14.5273ZM2.45168 16.748C2.43683 16.748 2.42209 16.7478 2.40745 16.7473L2.39116 17.247C2.41127 17.2477 2.43145 17.248 2.45168 17.248V16.748ZM2.38707 16.7607C2.41363 16.7513 2.4356 16.7491 2.44571 16.7484C2.45051 16.7481 2.45385 16.748 2.45423 16.748C2.45451 16.748 2.45437 16.748 2.45168 16.748V17.248C2.45318 17.248 2.46626 17.2482 2.47954 17.2473C2.49559 17.2462 2.52242 17.2431 2.55354 17.2322L2.38707 16.7607ZM2.31417 16.8032C2.3192 16.7987 2.34496 16.7756 2.38703 16.7607L2.55358 17.2321C2.60256 17.2148 2.63459 17.1874 2.64802 17.1754L2.31417 16.8032ZM2.60765 16.7085C2.55641 16.7233 2.50352 16.7343 2.4493 16.7413L2.5129 17.2372C2.59265 17.227 2.67059 17.2108 2.74622 17.189L2.60765 16.7085ZM6.13236 16.1627L2.63881 16.7017L2.71506 17.1958L6.2086 16.6568L6.13236 16.1627ZM6.96017 15.8128C6.74659 16.0263 6.47143 16.1597 6.17048 16.1597V16.6597C6.62589 16.6597 7.02305 16.457 7.31372 16.1663L6.96017 15.8128ZM14.398 8.39592L6.96042 15.8125L7.31347 16.1666L14.7511 8.74997L14.398 8.39592ZM14.3978 6.66972C14.8674 7.13936 14.8674 7.92653 14.3978 8.39617L14.7513 8.74972C15.4162 8.08482 15.4162 6.98107 14.7513 6.31616L14.3978 6.66972ZM11.3303 3.60223L14.3978 6.66972L14.7513 6.31616L11.6838 3.24868L11.3303 3.60223ZM9.60383 3.60223C10.0735 3.13259 10.8606 3.13259 11.3303 3.60223L11.6838 3.24868C11.0189 2.58377 9.91518 2.58377 9.25027 3.24868L9.60383 3.60223ZM8.18939 5.01667L9.60383 3.60223L9.25027 3.24868L7.83584 4.66312L8.18939 5.01667ZM8.17324 5.03241L8.18688 5.01915L7.83835 4.66064L7.82471 4.6739L8.17324 5.03241ZM8.14482 5.06074C8.152 5.05275 8.15969 5.04498 8.16791 5.03744L7.83004 4.66887C7.80995 4.68729 7.79091 4.70652 7.77296 4.7265L8.14482 5.06074ZM2.16623 11.0398L8.13566 5.0704L7.78211 4.71684L1.81268 10.6863L2.16623 11.0398ZM1.81882 11.8442C1.83626 11.5477 1.95813 11.2656 2.17315 11.0326L1.80575 10.6935C1.51653 11.0068 1.34426 11.397 1.31968 11.8148L1.81882 11.8442ZM1.24892 15.4613L1.81619 11.8685L1.32231 11.7905L0.755034 15.3833L1.24892 15.4613ZM1.25197 15.5063V15.4223H0.751975V15.5063H1.25197ZM1.25085 15.6254C1.24951 15.5905 1.24975 15.5551 1.25163 15.5194L0.75232 15.4932C0.749652 15.5439 0.749287 15.5944 0.751214 15.6446L1.25085 15.6254ZM1.25 15.6875C1.25 15.6732 1.25028 15.659 1.25084 15.6448L0.751223 15.6252C0.75041 15.6459 0.75 15.6666 0.75 15.6875H1.25ZM2.3125 16.75C1.7257 16.75 1.25 16.2743 1.25 15.6875H0.75C0.75 16.5504 1.44956 17.25 2.3125 17.25V16.75ZM2.38301 16.7477C2.35974 16.7492 2.33623 16.75 2.3125 16.75V17.25C2.3471 17.25 2.38148 17.2489 2.4156 17.2466L2.38301 16.7477ZM2.38039 14.6271C2.9168 14.6608 3.34551 15.0932 3.37353 15.6311L3.87286 15.6051C3.8316 14.8132 3.20136 14.1777 2.41174 14.1281L2.38039 14.6271ZM2.506 12.0918L2.14916 14.3384L2.64297 14.4168L2.99981 12.1702L2.506 12.0918ZM6.07988 15.1224L2.93018 11.9547L2.57562 12.3073L5.72532 15.475L6.07988 15.1224ZM3.65789 15.8657L5.9373 15.5463L5.86791 15.0511L3.5885 15.3705L3.65789 15.8657ZM8.25812 6.35052L11.6322 9.74187L11.9866 9.38922L8.61258 5.99787L8.25812 6.35052ZM3.6658 11.2769L8.61176 6.35134L8.25894 5.99706L3.31298 10.9226L3.6658 11.2769ZM7.11276 14.35L3.66567 10.9225L3.31312 11.2771L6.76021 14.7046L7.11276 14.35ZM11.631 9.39037L6.75812 14.3521L7.11485 14.7025L11.9878 9.74072L11.631 9.39037Z" fill="white"/%3E%3C/svg%3E')
27
+ 0 18,
28
+ auto !important;
29
+ }
30
+
31
+ .board-widget-cursor-text {
32
+ cursor:
33
+ url('data:image/svg+xml,%3Csvg width="18" height="18" viewBox="0 0 " fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0_71146_163815)"%3E%3Cg filter="url(%23filter0_d_71146_163815)"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M12.0667 2C12.5821 2 13 2.41787 13 2.93333C13 3.4488 12.5821 3.86667 12.0667 3.86667H10.2637C10.2276 3.86667 10.1992 3.89722 10.1992 3.93333V13.1328C10.1992 13.6851 10.6469 14.1328 11.1992 14.1328H12.0667C12.5821 14.1328 13 14.5507 13 15.0661C13 15.5816 12.5821 15.9995 12.0667 15.9995H9.2318C9.22098 15.9998 9.21012 16 9.19922 16C9.18832 16 9.17746 15.9998 9.16664 15.9995H5.93333C5.41787 15.9995 5 15.5816 5 15.0661C5 14.5507 5.41787 14.1328 5.93333 14.1328H7.19922C7.7515 14.1328 8.19922 13.6851 8.19922 13.1328V3.93333C8.19922 3.89722 8.17081 3.86667 8.13469 3.86667H5.93333C5.41787 3.86667 5 3.4488 5 2.93333C5 2.41787 5.41787 2 5.93333 2H12.0667Z" fill="black" fill-opacity="0.8" shape-rendering="crispEdges"/%3E%3Cpath d="M9.2318 15.9995V15.4995C9.22647 15.4995 9.22114 15.4996 9.21581 15.4997L9.2318 15.9995ZM9.16664 15.9995L9.18263 15.4997C9.1773 15.4996 9.17197 15.4995 9.16664 15.4995V15.9995ZM13.5 2.93333C13.5 2.14172 12.8583 1.5 12.0667 1.5V2.5C12.306 2.5 12.5 2.69401 12.5 2.93333H13.5ZM12.0667 4.36667C12.8583 4.36667 13.5 3.72494 13.5 2.93333H12.5C12.5 3.17266 12.306 3.36667 12.0667 3.36667V4.36667ZM10.2637 4.36667H12.0667V3.36667H10.2637V4.36667ZM9.69922 3.93333V13.1328H10.6992V3.93333H9.69922ZM12.0667 13.6328H11.1992V14.6328H12.0667V13.6328ZM13.5 15.0661C13.5 14.2745 12.8583 13.6328 12.0667 13.6328V14.6328C12.306 14.6328 12.5 14.8268 12.5 15.0661H13.5ZM12.0667 16.4995C12.8583 16.4995 13.5 15.8578 13.5 15.0661H12.5C12.5 15.3055 12.306 15.4995 12.0667 15.4995V16.4995ZM9.2318 16.4995H12.0667V15.4995H9.2318V16.4995ZM9.21581 15.4997C9.21031 15.4999 9.20478 15.5 9.19922 15.5V16.5C9.21546 16.5 9.23165 16.4997 9.24779 16.4992L9.21581 15.4997ZM9.19922 15.5C9.19365 15.5 9.18812 15.4999 9.18263 15.4997L9.15065 16.4992C9.16679 16.4997 9.18298 16.5 9.19922 16.5V15.5ZM5.93333 16.4995H9.16664V15.4995H5.93333V16.4995ZM4.5 15.0661C4.5 15.8578 5.14173 16.4995 5.93333 16.4995V15.4995C5.69401 15.4995 5.5 15.3055 5.5 15.0661H4.5ZM5.93333 13.6328C5.14173 13.6328 4.5 14.2745 4.5 15.0661H5.5C5.5 14.8268 5.69401 14.6328 5.93333 14.6328V13.6328ZM7.19922 13.6328H5.93333V14.6328H7.19922V13.6328ZM8.69922 13.1328V3.93333H7.69922V13.1328H8.69922ZM5.93333 4.36667H8.13469V3.36667H5.93333V4.36667ZM4.5 2.93333C4.5 3.72494 5.14173 4.36667 5.93333 4.36667V3.36667C5.69401 3.36667 5.5 3.17266 5.5 2.93333H4.5ZM5.93333 1.5C5.14173 1.5 4.5 2.14172 4.5 2.93333H5.5C5.5 2.69401 5.69401 2.5 5.93333 2.5V1.5ZM12.0667 1.5H5.93333V2.5H12.0667V1.5ZM8.69922 3.93333C8.69922 3.64252 8.46792 3.36667 8.13469 3.36667V4.36667C7.8737 4.36667 7.69922 4.15192 7.69922 3.93333H8.69922ZM7.19922 14.6328C8.02765 14.6328 8.69922 13.9612 8.69922 13.1328H7.69922C7.69922 13.409 7.47536 13.6328 7.19922 13.6328V14.6328ZM9.69922 13.1328C9.69922 13.9612 10.3708 14.6328 11.1992 14.6328V13.6328C10.9231 13.6328 10.6992 13.409 10.6992 13.1328H9.69922ZM10.2637 3.36667C9.93052 3.36667 9.69922 3.64252 9.69922 3.93333H10.6992C10.6992 4.15192 10.5247 4.36667 10.2637 4.36667V3.36667Z" fill="white"/%3E%3C/g%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_d_71146_163815" x="0.5" y="-2.5" width="17" height="23" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="out"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.14 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_71146_163815"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_71146_163815" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0_71146_163815"%3E%3Crect width="18" height="18" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E'),
34
+ auto !important;
35
+ }
36
+
37
+ .board-widget-cursor-ellipse {
38
+ cursor:
39
+ url('data:image/svg+xml,%3Csvg width="18" height="18" viewBox="0 0 " fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0_71146_163812)"%3E%3Cg filter="url(%23filter0_d_71146_163812)"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M9.2 3C9.2 2.44772 8.75229 2 8.2 2H8C7.44772 2 7 2.44772 7 3V7C7 7.55228 6.55228 8 6 8H2C1.44772 8 1 8.44771 1 9V9.2C1 9.75228 1.44772 10.2 2 10.2H6C6.55228 10.2 7 10.6477 7 11.2V15C7 15.5523 7.44771 16 8 16H8.2C8.75228 16 9.2 15.5523 9.2 15V11.2C9.2 10.6477 9.64771 10.2 10.2 10.2H14C14.5523 10.2 15 9.75229 15 9.2V9C15 8.44772 14.5523 8 14 8H10.2C9.64772 8 9.2 7.55228 9.2 7V3Z" fill="black" fill-opacity="0.8" shape-rendering="crispEdges"/%3E%3Cpath d="M8 2.5H8.2V1.5H8V2.5ZM7.5 7V3H6.5V7H7.5ZM2 8.5H6V7.5H2V8.5ZM1.5 9.2V9H0.5V9.2H1.5ZM6 9.7H2V10.7H6V9.7ZM7.5 15V11.2H6.5V15H7.5ZM8.2 15.5H8V16.5H8.2V15.5ZM8.7 11.2V15H9.7V11.2H8.7ZM14 9.7H10.2V10.7H14V9.7ZM14.5 9V9.2H15.5V9H14.5ZM10.2 8.5H14V7.5H10.2V8.5ZM8.7 3V7H9.7V3H8.7ZM10.2 7.5C9.92386 7.5 9.7 7.27614 9.7 7H8.7C8.7 7.82843 9.37157 8.5 10.2 8.5V7.5ZM15.5 9C15.5 8.17157 14.8284 7.5 14 7.5V8.5C14.2761 8.5 14.5 8.72386 14.5 9H15.5ZM14 10.7C14.8284 10.7 15.5 10.0284 15.5 9.2H14.5C14.5 9.47614 14.2761 9.7 14 9.7V10.7ZM9.7 11.2C9.7 10.9239 9.92386 10.7 10.2 10.7V9.7C9.37157 9.7 8.7 10.3716 8.7 11.2H9.7ZM8.2 16.5C9.02843 16.5 9.7 15.8284 9.7 15H8.7C8.7 15.2761 8.47614 15.5 8.2 15.5V16.5ZM6.5 15C6.5 15.8284 7.17157 16.5 8 16.5V15.5C7.72386 15.5 7.5 15.2761 7.5 15H6.5ZM6 10.7C6.27614 10.7 6.5 10.9239 6.5 11.2H7.5C7.5 10.3716 6.82843 9.7 6 9.7V10.7ZM0.5 9.2C0.5 10.0284 1.17157 10.7 2 10.7V9.7C1.72386 9.7 1.5 9.47614 1.5 9.2H0.5ZM2 7.5C1.17157 7.5 0.5 8.17157 0.5 9H1.5C1.5 8.72386 1.72386 8.5 2 8.5V7.5ZM6.5 7C6.5 7.27614 6.27614 7.5 6 7.5V8.5C6.82843 8.5 7.5 7.82843 7.5 7H6.5ZM8.2 2.5C8.47614 2.5 8.7 2.72386 8.7 3H9.7C9.7 2.17157 9.02843 1.5 8.2 1.5V2.5ZM8 1.5C7.17157 1.5 6.5 2.17157 6.5 3H7.5C7.5 2.72386 7.72386 2.5 8 2.5V1.5Z" fill="white"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d_71146_163812)"%3E%3Ccircle cx="13.5" cy="3.5" r="3" stroke="white" stroke-linecap="round" stroke-linejoin="round" shape-rendering="crispEdges"/%3E%3C/g%3E%3Ccircle cx="13.5" cy="3.5" r="1.5" fill="white"/%3E%3Ccircle cx="13.5" cy="3.5" r="2" stroke="black" stroke-opacity="0.8" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_d_71146_163812" x="-2.5" y="-1.5" width="21" height="21" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="1.5"/%3E%3CfeComposite in2="hardAlpha" operator="out"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_71146_163812"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_71146_163812" result="shape"/%3E%3C/filter%3E%3Cfilter id="filter1_d_71146_163812" x="6" y="-3" width="15" height="15" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="1"/%3E%3CfeGaussianBlur stdDeviation="2"/%3E%3CfeComposite in2="hardAlpha" operator="out"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.14 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_71146_163812"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_71146_163812" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0_71146_163812"%3E%3Crect width="18" height="18" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E'),
40
+ auto !important;
41
+ }
42
+
43
+ .board-widget-cursor-triangle {
44
+ cursor:
45
+ url('data:image/svg+xml,%3Csvg width="18" height="18" viewBox="0 0 " fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0_71146_163813)"%3E%3Cg filter="url(%23filter0_d_71146_163813)"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M9.2 3C9.2 2.44772 8.75229 2 8.2 2H8C7.44772 2 7 2.44772 7 3V7C7 7.55228 6.55228 8 6 8H2C1.44772 8 1 8.44771 1 9V9.2C1 9.75228 1.44772 10.2 2 10.2H6C6.55228 10.2 7 10.6477 7 11.2V15C7 15.5523 7.44771 16 8 16H8.2C8.75228 16 9.2 15.5523 9.2 15V11.2C9.2 10.6477 9.64771 10.2 10.2 10.2H14C14.5523 10.2 15 9.75229 15 9.2V9C15 8.44772 14.5523 8 14 8H10.2C9.64772 8 9.2 7.55228 9.2 7V3Z" fill="black" fill-opacity="0.8" shape-rendering="crispEdges"/%3E%3Cpath d="M8 2.5H8.2V1.5H8V2.5ZM7.5 7V3H6.5V7H7.5ZM2 8.5H6V7.5H2V8.5ZM1.5 9.2V9H0.5V9.2H1.5ZM6 9.7H2V10.7H6V9.7ZM7.5 15V11.2H6.5V15H7.5ZM8.2 15.5H8V16.5H8.2V15.5ZM8.7 11.2V15H9.7V11.2H8.7ZM14 9.7H10.2V10.7H14V9.7ZM14.5 9V9.2H15.5V9H14.5ZM10.2 8.5H14V7.5H10.2V8.5ZM8.7 3V7H9.7V3H8.7ZM10.2 7.5C9.92386 7.5 9.7 7.27614 9.7 7H8.7C8.7 7.82843 9.37157 8.5 10.2 8.5V7.5ZM15.5 9C15.5 8.17157 14.8284 7.5 14 7.5V8.5C14.2761 8.5 14.5 8.72386 14.5 9H15.5ZM14 10.7C14.8284 10.7 15.5 10.0284 15.5 9.2H14.5C14.5 9.47614 14.2761 9.7 14 9.7V10.7ZM9.7 11.2C9.7 10.9239 9.92386 10.7 10.2 10.7V9.7C9.37157 9.7 8.7 10.3716 8.7 11.2H9.7ZM8.2 16.5C9.02843 16.5 9.7 15.8284 9.7 15H8.7C8.7 15.2761 8.47614 15.5 8.2 15.5V16.5ZM6.5 15C6.5 15.8284 7.17157 16.5 8 16.5V15.5C7.72386 15.5 7.5 15.2761 7.5 15H6.5ZM6 10.7C6.27614 10.7 6.5 10.9239 6.5 11.2H7.5C7.5 10.3716 6.82843 9.7 6 9.7V10.7ZM0.5 9.2C0.5 10.0284 1.17157 10.7 2 10.7V9.7C1.72386 9.7 1.5 9.47614 1.5 9.2H0.5ZM2 7.5C1.17157 7.5 0.5 8.17157 0.5 9H1.5C1.5 8.72386 1.72386 8.5 2 8.5V7.5ZM6.5 7C6.5 7.27614 6.27614 7.5 6 7.5V8.5C6.82843 8.5 7.5 7.82843 7.5 7H6.5ZM8.2 2.5C8.47614 2.5 8.7 2.72386 8.7 3H9.7C9.7 2.17157 9.02843 1.5 8.2 1.5V2.5ZM8 1.5C7.17157 1.5 6.5 2.17157 6.5 3H7.5C7.5 2.72386 7.72386 2.5 8 2.5V1.5Z" fill="white"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d_71146_163813)"%3E%3Cpath d="M14.067 0.75C14.2594 0.416666 14.7406 0.416667 14.933 0.75L17.9641 6C18.1566 6.33333 17.916 6.75 17.5311 6.75H11.4689C11.084 6.75 10.8434 6.33333 11.0359 6L14.067 0.75Z" fill="white"/%3E%3Cpath d="M17.5312 6.25H11.4688L14.5 1L17.5312 6.25Z" stroke="white"/%3E%3C/g%3E%3Cpath d="M14.1536 1.6C14.3075 1.33333 14.6925 1.33333 14.8464 1.6L17.1847 5.65C17.3386 5.91667 17.1462 6.25 16.8383 6.25H12.1617C11.8538 6.25 11.6614 5.91667 11.8153 5.65L14.1536 1.6Z" fill="white"/%3E%3Cpath d="M16.752 5.7998H12.248L14.5 1.89941L16.752 5.7998Z" stroke="black" stroke-opacity="0.8" stroke-width="0.9"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_d_71146_163813" x="-2.5" y="-1.5" width="21" height="21" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="1.5"/%3E%3CfeComposite in2="hardAlpha" operator="out"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_71146_163813"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_71146_163813" result="shape"/%3E%3C/filter%3E%3Cfilter id="filter1_d_71146_163813" x="7.96875" y="-0.5" width="13.0625" height="12.25" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset dy="2"/%3E%3CfeGaussianBlur stdDeviation="1.5"/%3E%3CfeComposite in2="hardAlpha" operator="out"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_71146_163813"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_71146_163813" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0_71146_163813"%3E%3Crect width="18" height="18" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E'),
46
+ auto !important;
47
+ }
48
+
49
+ .board-widget-cursor-rectangle {
50
+ cursor:
51
+ url('data:image/svg+xml,%3Csvg width="18" height="18" viewBox="0 0 " fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0_71146_163814)"%3E%3Cg filter="url(%23filter0_d_71146_163814)"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M10.2 3C10.2 2.44772 9.75229 2 9.2 2H9C8.44772 2 8 2.44772 8 3V7C8 7.55228 7.55228 8 7 8H3C2.44772 8 2 8.44771 2 9V9.2C2 9.75228 2.44772 10.2 3 10.2H7C7.55228 10.2 8 10.6477 8 11.2V15C8 15.5523 8.44771 16 9 16H9.2C9.75228 16 10.2 15.5523 10.2 15V11.2C10.2 10.6477 10.6477 10.2 11.2 10.2H15C15.5523 10.2 16 9.75229 16 9.2V9C16 8.44772 15.5523 8 15 8H11.2C10.6477 8 10.2 7.55228 10.2 7V3Z" fill="black" fill-opacity="0.8" shape-rendering="crispEdges"/%3E%3Cpath d="M9 2.5H9.2V1.5H9V2.5ZM8.5 7V3H7.5V7H8.5ZM3 8.5H7V7.5H3V8.5ZM2.5 9.2V9H1.5V9.2H2.5ZM7 9.7H3V10.7H7V9.7ZM8.5 15V11.2H7.5V15H8.5ZM9.2 15.5H9V16.5H9.2V15.5ZM9.7 11.2V15H10.7V11.2H9.7ZM15 9.7H11.2V10.7H15V9.7ZM15.5 9V9.2H16.5V9H15.5ZM11.2 8.5H15V7.5H11.2V8.5ZM9.7 3V7H10.7V3H9.7ZM11.2 7.5C10.9239 7.5 10.7 7.27614 10.7 7H9.7C9.7 7.82843 10.3716 8.5 11.2 8.5V7.5ZM16.5 9C16.5 8.17157 15.8284 7.5 15 7.5V8.5C15.2761 8.5 15.5 8.72386 15.5 9H16.5ZM15 10.7C15.8284 10.7 16.5 10.0284 16.5 9.2H15.5C15.5 9.47614 15.2761 9.7 15 9.7V10.7ZM10.7 11.2C10.7 10.9239 10.9239 10.7 11.2 10.7V9.7C10.3716 9.7 9.7 10.3716 9.7 11.2H10.7ZM9.2 16.5C10.0284 16.5 10.7 15.8284 10.7 15H9.7C9.7 15.2761 9.47614 15.5 9.2 15.5V16.5ZM7.5 15C7.5 15.8284 8.17157 16.5 9 16.5V15.5C8.72386 15.5 8.5 15.2761 8.5 15H7.5ZM7 10.7C7.27614 10.7 7.5 10.9239 7.5 11.2H8.5C8.5 10.3716 7.82843 9.7 7 9.7V10.7ZM1.5 9.2C1.5 10.0284 2.17157 10.7 3 10.7V9.7C2.72386 9.7 2.5 9.47614 2.5 9.2H1.5ZM3 7.5C2.17157 7.5 1.5 8.17157 1.5 9H2.5C2.5 8.72386 2.72386 8.5 3 8.5V7.5ZM7.5 7C7.5 7.27614 7.27614 7.5 7 7.5V8.5C7.82843 8.5 8.5 7.82843 8.5 7H7.5ZM9.2 2.5C9.47614 2.5 9.7 2.72386 9.7 3H10.7C10.7 2.17157 10.0284 1.5 9.2 1.5V2.5ZM9 1.5C8.17157 1.5 7.5 2.17157 7.5 3H8.5C8.5 2.72386 8.72386 2.5 9 2.5V1.5Z" fill="white"/%3E%3C/g%3E%3Cg filter="url(%23filter1_d_71146_163814)"%3E%3Crect x="11.1992" y="0.199951" width="6.6" height="6.6" rx="1.2" fill="white"/%3E%3C/g%3E%3Crect x="12" y="1" width="5" height="5" rx="1" fill="white"/%3E%3Crect x="12.5" y="1.5" width="4" height="4" rx="0.5" stroke="black" stroke-opacity="0.8"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_d_71146_163814" x="-1.5" y="-1.5" width="21" height="21" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="1.5"/%3E%3CfeComposite in2="hardAlpha" operator="out"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_71146_163814"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_71146_163814" result="shape"/%3E%3C/filter%3E%3Cfilter id="filter1_d_71146_163814" x="9.19922" y="-1.80005" width="10.5996" height="10.6001" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="1"/%3E%3CfeComposite in2="hardAlpha" operator="out"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.1 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_71146_163814"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_71146_163814" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0_71146_163814"%3E%3Crect width="18" height="18" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E'),
52
+ auto !important;
53
+ }
54
+
55
+ .board-widget-cursor-straight {
56
+ cursor:
57
+ url('data:image/svg+xml,%3Csvg width="18" height="18" viewBox="0 0 " fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0_71146_163817)"%3E%3Cg filter="url(%23filter0_d_71146_163817)"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M9.2 3C9.2 2.44772 8.75229 2 8.2 2H8C7.44772 2 7 2.44772 7 3V7C7 7.55228 6.55228 8 6 8H2C1.44772 8 1 8.44771 1 9V9.2C1 9.75228 1.44772 10.2 2 10.2H6C6.55228 10.2 7 10.6477 7 11.2V15C7 15.5523 7.44771 16 8 16H8.2C8.75228 16 9.2 15.5523 9.2 15V11.2C9.2 10.6477 9.64771 10.2 10.2 10.2H14C14.5523 10.2 15 9.75229 15 9.2V9C15 8.44772 14.5523 8 14 8H10.2C9.64772 8 9.2 7.55228 9.2 7V3Z" fill="black" fill-opacity="0.8" shape-rendering="crispEdges"/%3E%3Cpath d="M8 2.5H8.2V1.5H8V2.5ZM7.5 7V3H6.5V7H7.5ZM2 8.5H6V7.5H2V8.5ZM1.5 9.2V9H0.5V9.2H1.5ZM6 9.7H2V10.7H6V9.7ZM7.5 15V11.2H6.5V15H7.5ZM8.2 15.5H8V16.5H8.2V15.5ZM8.7 11.2V15H9.7V11.2H8.7ZM14 9.7H10.2V10.7H14V9.7ZM14.5 9V9.2H15.5V9H14.5ZM10.2 8.5H14V7.5H10.2V8.5ZM8.7 3V7H9.7V3H8.7ZM10.2 7.5C9.92386 7.5 9.7 7.27614 9.7 7H8.7C8.7 7.82843 9.37157 8.5 10.2 8.5V7.5ZM15.5 9C15.5 8.17157 14.8284 7.5 14 7.5V8.5C14.2761 8.5 14.5 8.72386 14.5 9H15.5ZM14 10.7C14.8284 10.7 15.5 10.0284 15.5 9.2H14.5C14.5 9.47614 14.2761 9.7 14 9.7V10.7ZM9.7 11.2C9.7 10.9239 9.92386 10.7 10.2 10.7V9.7C9.37157 9.7 8.7 10.3716 8.7 11.2H9.7ZM8.2 16.5C9.02843 16.5 9.7 15.8284 9.7 15H8.7C8.7 15.2761 8.47614 15.5 8.2 15.5V16.5ZM6.5 15C6.5 15.8284 7.17157 16.5 8 16.5V15.5C7.72386 15.5 7.5 15.2761 7.5 15H6.5ZM6 10.7C6.27614 10.7 6.5 10.9239 6.5 11.2H7.5C7.5 10.3716 6.82843 9.7 6 9.7V10.7ZM0.5 9.2C0.5 10.0284 1.17157 10.7 2 10.7V9.7C1.72386 9.7 1.5 9.47614 1.5 9.2H0.5ZM2 7.5C1.17157 7.5 0.5 8.17157 0.5 9H1.5C1.5 8.72386 1.72386 8.5 2 8.5V7.5ZM6.5 7C6.5 7.27614 6.27614 7.5 6 7.5V8.5C6.82843 8.5 7.5 7.82843 7.5 7H6.5ZM8.2 2.5C8.47614 2.5 8.7 2.72386 8.7 3H9.7C9.7 2.17157 9.02843 1.5 8.2 1.5V2.5ZM8 1.5C7.17157 1.5 6.5 2.17157 6.5 3H7.5C7.5 2.72386 7.72386 2.5 8 2.5V1.5Z" fill="white"/%3E%3C/g%3E%3Crect x="11.5" y="3.5" width="6" height="2" rx="0.7" fill="black" fill-opacity="0.8" stroke="white"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_d_71146_163817" x="-2.5" y="-1.5" width="21" height="21" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="1.5"/%3E%3CfeComposite in2="hardAlpha" operator="out"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_71146_163817"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_71146_163817" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0_71146_163817"%3E%3Crect width="18" height="18" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E'),
58
+ auto !important;
59
+ }
60
+
61
+ .board-widget-cursor-line {
62
+ cursor:
63
+ url('data:image/svg+xml,%3Csvg width="18" height="18" viewBox="0 0 " fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0_71146_163817)"%3E%3Cg filter="url(%23filter0_d_71146_163817)"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M9.2 3C9.2 2.44772 8.75229 2 8.2 2H8C7.44772 2 7 2.44772 7 3V7C7 7.55228 6.55228 8 6 8H2C1.44772 8 1 8.44771 1 9V9.2C1 9.75228 1.44772 10.2 2 10.2H6C6.55228 10.2 7 10.6477 7 11.2V15C7 15.5523 7.44771 16 8 16H8.2C8.75228 16 9.2 15.5523 9.2 15V11.2C9.2 10.6477 9.64771 10.2 10.2 10.2H14C14.5523 10.2 15 9.75229 15 9.2V9C15 8.44772 14.5523 8 14 8H10.2C9.64772 8 9.2 7.55228 9.2 7V3Z" fill="black" fill-opacity="0.8" shape-rendering="crispEdges"/%3E%3Cpath d="M8 2.5H8.2V1.5H8V2.5ZM7.5 7V3H6.5V7H7.5ZM2 8.5H6V7.5H2V8.5ZM1.5 9.2V9H0.5V9.2H1.5ZM6 9.7H2V10.7H6V9.7ZM7.5 15V11.2H6.5V15H7.5ZM8.2 15.5H8V16.5H8.2V15.5ZM8.7 11.2V15H9.7V11.2H8.7ZM14 9.7H10.2V10.7H14V9.7ZM14.5 9V9.2H15.5V9H14.5ZM10.2 8.5H14V7.5H10.2V8.5ZM8.7 3V7H9.7V3H8.7ZM10.2 7.5C9.92386 7.5 9.7 7.27614 9.7 7H8.7C8.7 7.82843 9.37157 8.5 10.2 8.5V7.5ZM15.5 9C15.5 8.17157 14.8284 7.5 14 7.5V8.5C14.2761 8.5 14.5 8.72386 14.5 9H15.5ZM14 10.7C14.8284 10.7 15.5 10.0284 15.5 9.2H14.5C14.5 9.47614 14.2761 9.7 14 9.7V10.7ZM9.7 11.2C9.7 10.9239 9.92386 10.7 10.2 10.7V9.7C9.37157 9.7 8.7 10.3716 8.7 11.2H9.7ZM8.2 16.5C9.02843 16.5 9.7 15.8284 9.7 15H8.7C8.7 15.2761 8.47614 15.5 8.2 15.5V16.5ZM6.5 15C6.5 15.8284 7.17157 16.5 8 16.5V15.5C7.72386 15.5 7.5 15.2761 7.5 15H6.5ZM6 10.7C6.27614 10.7 6.5 10.9239 6.5 11.2H7.5C7.5 10.3716 6.82843 9.7 6 9.7V10.7ZM0.5 9.2C0.5 10.0284 1.17157 10.7 2 10.7V9.7C1.72386 9.7 1.5 9.47614 1.5 9.2H0.5ZM2 7.5C1.17157 7.5 0.5 8.17157 0.5 9H1.5C1.5 8.72386 1.72386 8.5 2 8.5V7.5ZM6.5 7C6.5 7.27614 6.27614 7.5 6 7.5V8.5C6.82843 8.5 7.5 7.82843 7.5 7H6.5ZM8.2 2.5C8.47614 2.5 8.7 2.72386 8.7 3H9.7C9.7 2.17157 9.02843 1.5 8.2 1.5V2.5ZM8 1.5C7.17157 1.5 6.5 2.17157 6.5 3H7.5C7.5 2.72386 7.72386 2.5 8 2.5V1.5Z" fill="white"/%3E%3C/g%3E%3Crect x="11.5" y="3.5" width="6" height="2" rx="0.7" fill="black" fill-opacity="0.8" stroke="white"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_d_71146_163817" x="-2.5" y="-1.5" width="21" height="21" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="1.5"/%3E%3CfeComposite in2="hardAlpha" operator="out"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_71146_163817"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_71146_163817" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0_71146_163817"%3E%3Crect width="18" height="18" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E'),
64
+ auto !important;
65
+ }
66
+
67
+ .board-widget-cursor-arrow {
68
+ cursor:
69
+ url('data:image/svg+xml,%3Csvg width="18" height="18" viewBox="0 0 " fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cg clip-path="url(%23clip0_71146_163818)"%3E%3Cg filter="url(%23filter0_d_71146_163818)"%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M9.2 3C9.2 2.44772 8.75229 2 8.2 2H8C7.44772 2 7 2.44772 7 3V7C7 7.55228 6.55228 8 6 8H2C1.44772 8 1 8.44771 1 9V9.2C1 9.75228 1.44772 10.2 2 10.2H6C6.55228 10.2 7 10.6477 7 11.2V15C7 15.5523 7.44771 16 8 16H8.2C8.75228 16 9.2 15.5523 9.2 15V11.2C9.2 10.6477 9.64771 10.2 10.2 10.2H14C14.5523 10.2 15 9.75229 15 9.2V9C15 8.44772 14.5523 8 14 8H10.2C9.64772 8 9.2 7.55228 9.2 7V3Z" fill="black" fill-opacity="0.8" shape-rendering="crispEdges"/%3E%3Cpath d="M8 2.5H8.2V1.5H8V2.5ZM7.5 7V3H6.5V7H7.5ZM2 8.5H6V7.5H2V8.5ZM1.5 9.2V9H0.5V9.2H1.5ZM6 9.7H2V10.7H6V9.7ZM7.5 15V11.2H6.5V15H7.5ZM8.2 15.5H8V16.5H8.2V15.5ZM8.7 11.2V15H9.7V11.2H8.7ZM14 9.7H10.2V10.7H14V9.7ZM14.5 9V9.2H15.5V9H14.5ZM10.2 8.5H14V7.5H10.2V8.5ZM8.7 3V7H9.7V3H8.7ZM10.2 7.5C9.92386 7.5 9.7 7.27614 9.7 7H8.7C8.7 7.82843 9.37157 8.5 10.2 8.5V7.5ZM15.5 9C15.5 8.17157 14.8284 7.5 14 7.5V8.5C14.2761 8.5 14.5 8.72386 14.5 9H15.5ZM14 10.7C14.8284 10.7 15.5 10.0284 15.5 9.2H14.5C14.5 9.47614 14.2761 9.7 14 9.7V10.7ZM9.7 11.2C9.7 10.9239 9.92386 10.7 10.2 10.7V9.7C9.37157 9.7 8.7 10.3716 8.7 11.2H9.7ZM8.2 16.5C9.02843 16.5 9.7 15.8284 9.7 15H8.7C8.7 15.2761 8.47614 15.5 8.2 15.5V16.5ZM6.5 15C6.5 15.8284 7.17157 16.5 8 16.5V15.5C7.72386 15.5 7.5 15.2761 7.5 15H6.5ZM6 10.7C6.27614 10.7 6.5 10.9239 6.5 11.2H7.5C7.5 10.3716 6.82843 9.7 6 9.7V10.7ZM0.5 9.2C0.5 10.0284 1.17157 10.7 2 10.7V9.7C1.72386 9.7 1.5 9.47614 1.5 9.2H0.5ZM2 7.5C1.17157 7.5 0.5 8.17157 0.5 9H1.5C1.5 8.72386 1.72386 8.5 2 8.5V7.5ZM6.5 7C6.5 7.27614 6.27614 7.5 6 7.5V8.5C6.82843 8.5 7.5 7.82843 7.5 7H6.5ZM8.2 2.5C8.47614 2.5 8.7 2.72386 8.7 3H9.7C9.7 2.17157 9.02843 1.5 8.2 1.5V2.5ZM8 1.5C7.17157 1.5 6.5 2.17157 6.5 3H7.5C7.5 2.72386 7.72386 2.5 8 2.5V1.5Z" fill="white"/%3E%3C/g%3E%3Cmask id="path-3-outside-1_71146_163818" maskUnits="userSpaceOnUse" x="8.58579" y="-1.53608" width="10.6066" height="10.6066" fill="black"%3E%3Crect fill="white" x="8.58579" y="-1.53608" width="10.6066" height="10.6066"/%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M13.7144 1.33625C13.4384 1.32775 13.2077 1.54461 13.1992 1.82062C13.1907 2.09663 13.4076 2.32727 13.6836 2.33577L14.5857 2.36356L11.4142 5.535C11.219 5.73026 11.219 6.04684 11.4142 6.2421C11.6095 6.43737 11.9261 6.43737 12.1213 6.2421L15.2928 3.07068L15.3205 3.97272C15.329 4.24873 15.5597 4.46559 15.8357 4.45709C16.1117 4.44859 16.3286 4.21795 16.3201 3.94194L16.2567 1.884L16.2422 1.4141L15.7723 1.39963L13.7144 1.33625Z"/%3E%3C/mask%3E%3Cpath fill-rule="evenodd" clip-rule="evenodd" d="M13.7144 1.33625C13.4384 1.32775 13.2077 1.54461 13.1992 1.82062C13.1907 2.09663 13.4076 2.32727 13.6836 2.33577L14.5857 2.36356L11.4142 5.535C11.219 5.73026 11.219 6.04684 11.4142 6.2421C11.6095 6.43737 11.9261 6.43737 12.1213 6.2421L15.2928 3.07068L15.3205 3.97272C15.329 4.24873 15.5597 4.46559 15.8357 4.45709C16.1117 4.44859 16.3286 4.21795 16.3201 3.94194L16.2567 1.884L16.2422 1.4141L15.7723 1.39963L13.7144 1.33625Z" fill="black" fill-opacity="0.8"/%3E%3Cpath d="M13.1992 1.82062L12.5995 1.80215L12.5995 1.80215L13.1992 1.82062ZM13.7144 1.33625L13.7328 0.736532L13.7328 0.736532L13.7144 1.33625ZM13.6836 2.33577L13.6651 2.93549L13.6836 2.33577ZM14.5857 2.36356L15.0099 2.78782L15.9912 1.80656L14.6041 1.76384L14.5857 2.36356ZM11.4142 5.535L10.99 5.11073L11.4142 5.535ZM15.2928 3.07068L15.8925 3.05221L15.8498 1.66515L14.8685 2.64641L15.2928 3.07068ZM15.3205 3.97272L14.7208 3.99119L14.7208 3.99119L15.3205 3.97272ZM16.3201 3.94194L15.7203 3.96041L15.7203 3.96041L16.3201 3.94194ZM16.2567 1.884L16.8564 1.86553L16.8564 1.86553L16.2567 1.884ZM16.2422 1.4141L16.8419 1.39563L16.8246 0.831749L16.2607 0.814383L16.2422 1.4141ZM15.7723 1.39963L15.7908 0.799911L15.7908 0.799911L15.7723 1.39963ZM13.7989 1.83909C13.7972 1.89429 13.7511 1.93766 13.6959 1.93596L13.7328 0.736532C13.1256 0.717831 12.6182 1.19492 12.5995 1.80215L13.7989 1.83909ZM13.7021 1.73606C13.7573 1.73776 13.8006 1.78389 13.7989 1.83909L12.5995 1.80215C12.5808 2.40938 13.0579 2.91679 13.6651 2.93549L13.7021 1.73606ZM14.6041 1.76384L13.7021 1.73606L13.6651 2.93549L14.5672 2.96327L14.6041 1.76384ZM11.8385 5.95926L15.0099 2.78782L14.1614 1.93929L10.99 5.11073L11.8385 5.95926ZM11.8385 5.81784C11.8775 5.85689 11.8775 5.92021 11.8385 5.95926L10.99 5.11073C10.5604 5.54031 10.5604 6.23679 10.99 6.66637L11.8385 5.81784ZM11.6971 5.81784C11.7361 5.77879 11.7994 5.77879 11.8385 5.81784L10.99 6.66637C11.4195 7.09594 12.116 7.09594 12.5456 6.66637L11.6971 5.81784ZM14.8685 2.64641L11.6971 5.81784L12.5456 6.66637L15.717 3.49494L14.8685 2.64641ZM15.9203 3.95425L15.8925 3.05221L14.693 3.08915L14.7208 3.99119L15.9203 3.95425ZM15.8172 3.85738C15.8724 3.85568 15.9186 3.89905 15.9203 3.95425L14.7208 3.99119C14.7395 4.59842 15.2469 5.07551 15.8542 5.05681L15.8172 3.85738ZM15.7203 3.96041C15.7186 3.90521 15.762 3.85908 15.8172 3.85738L15.8542 5.05681C16.4614 5.03811 16.9385 4.5307 16.9198 3.92347L15.7203 3.96041ZM15.657 1.90247L15.7203 3.96041L16.9198 3.92347L16.8564 1.86553L15.657 1.90247ZM15.6425 1.43257L15.657 1.90247L16.8564 1.86553L16.8419 1.39563L15.6425 1.43257ZM15.7538 1.99934L16.2237 2.01381L16.2607 0.814383L15.7908 0.799911L15.7538 1.99934ZM13.6959 1.93596L15.7538 1.99934L15.7908 0.799911L13.7328 0.736532L13.6959 1.93596Z" fill="white" mask="url(%23path-3-outside-1_71146_163818)"/%3E%3C/g%3E%3Cdefs%3E%3Cfilter id="filter0_d_71146_163818" x="-2.5" y="-1.5" width="21" height="21" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"%3E%3CfeFlood flood-opacity="0" result="BackgroundImageFix"/%3E%3CfeColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/%3E%3CfeOffset/%3E%3CfeGaussianBlur stdDeviation="1.5"/%3E%3CfeComposite in2="hardAlpha" operator="out"/%3E%3CfeColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.2 0"/%3E%3CfeBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_71146_163818"/%3E%3CfeBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_71146_163818" result="shape"/%3E%3C/filter%3E%3CclipPath id="clip0_71146_163818"%3E%3Crect width="18" height="18" fill="white"/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E'),
70
+ auto !important;
71
+ }
72
+
73
+ .board-widget-cursor-eraser {
74
+ cursor:
75
+ url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAYAAABWzo5XAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAIgSURBVHgBdZQ7a0JBEIWviTHmBRaKYAQtbBKTWFgH/ROSzjZpbNMJ2iQptExnIyRptBFiITYigoWFJK2NKRQUER+Fj8LNnGVHro+7MLiss9+eObN7Nc1gCCFM9GOKRCKH4XDYTPMjhJofJhKJA5Ujh9kAoCWTSQlqNpvm+Xx+gLnL5dLa7faK5qtKpSJ/BTaYTLsQBKvw+XzHDofjfDgcPi8WixGCxgulnuE/pU4esgMCJBgMHnm9Xqvdbr8YDAavrVZLBAIB4fF4RKPREP1+/w0H0BY9bD0kRJUrIaREQggqcA7CZrMJrAHGyuDZhhKY6Xa7T1gJTsdGhnBAGWA4iHw7lYfrPeFyptPppxFEDyNVol6vX/n9fouGNqo6JWQ8Hn8tl0uRSqUMIRz5fF50Op0Hmlv4ChwryGe5XBYAIeLxuCEE5qOLUCRB6JDT6TybzWa/mUxGJkWj0TUsFovthfR6vVG3232Cp7IiuE6Lj7lcbiNZD8Oc10OhkITUarV7CIA/qlGalcz90CdzoDQ9DIFyGAJL0Hr5GqAIEo26pIfRU/ljCPZBif7NWXBLYTR7tB1oACCFQuEOlxB74MvGw1X1WSku6B19bcOgCJBisXjLnuxAMLCAzvGNnkwm3zAenUmn0xJSKpVuKPUUecjH2yKItgHavtnZbPaSynwnwA+aUK1Wr7GOcpDHXwhtezBZnSQ/HdgIhQzAOpeyF0LjH2xW1lC0K3IoAAAAAElFTkSuQmCC'),
76
+ auto;
77
+ }
@@ -0,0 +1,5 @@
1
+ import { FC } from 'react';
2
+ export declare const Color: FC<{
3
+ value: string;
4
+ showCurrentColor: boolean;
5
+ }>;
@@ -0,0 +1,37 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.object.define-property.js");
4
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.Color = void 0;
9
+ var _mobxReact = require("mobx-react");
10
+ var _react = require("react");
11
+ var _classnames = _interopRequireDefault(require("classnames"));
12
+ var _toolbarStore = require("../../../toolbar-store");
13
+ var _jsxRuntime = require("react/jsx-runtime");
14
+ var Color = exports.Color = (0, _mobxReact.observer)(function (_ref) {
15
+ var value = _ref.value;
16
+ var _useContext = (0, _react.useContext)(_toolbarStore.AnnotationToolbarContext),
17
+ setStrokeColor = _useContext.setStrokeColor,
18
+ strokeColor = _useContext.toolbarState.strokeColor,
19
+ isShapeToolSelected = _useContext.isShapeToolSelected;
20
+ var isActive = strokeColor === value;
21
+ var isDisabled = isShapeToolSelected;
22
+ var cls = (0, _classnames["default"])('fcr-board-toolbar__color-item', {
23
+ 'fcr-board-toolbar__color-item--active': isActive,
24
+ 'fcr-board-toolbar__color-item--disabled': isDisabled
25
+ });
26
+ var handleClick = function handleClick() {
27
+ setStrokeColor(value);
28
+ };
29
+ var style = {
30
+ backgroundColor: value
31
+ };
32
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
33
+ className: cls,
34
+ onClick: isDisabled ? undefined : handleClick,
35
+ style: style
36
+ });
37
+ });
@@ -0,0 +1 @@
1
+ export declare const ColorPickerPanel: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,108 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.object.define-property.js");
4
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.ColorPickerPanel = void 0;
9
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
10
+ require("core-js/modules/es.array.includes.js");
11
+ require("core-js/modules/es.array.map.js");
12
+ require("core-js/modules/es.object.to-string.js");
13
+ require("core-js/modules/es.string.includes.js");
14
+ require("core-js/modules/esnext.iterator.constructor.js");
15
+ require("core-js/modules/esnext.iterator.map.js");
16
+ var _mobxReact = require("mobx-react");
17
+ var _react = require("react");
18
+ var _button = require("agora-ui-foundation/lib/components/button");
19
+ var _popover = require("agora-ui-foundation/lib/components/popover");
20
+ var _classnames = _interopRequireDefault(require("classnames"));
21
+ var _icon = require("agora-ui-foundation/lib/components/icon");
22
+ var _type = require("agora-ui-foundation/lib/components/icon/type");
23
+ var _i18n = require("agora-ui-foundation/lib/i18n");
24
+ var _toolbarStore = require("../../../toolbar-store");
25
+ var _jsxRuntime = require("react/jsx-runtime");
26
+ var ColorPickerPanel = exports.ColorPickerPanel = (0, _mobxReact.observer)(function () {
27
+ var _useContext = (0, _react.useContext)(_toolbarStore.AnnotationToolbarContext),
28
+ colors = _useContext.observables.colors,
29
+ strokeColor = _useContext.toolbarState.strokeColor;
30
+ var transI18n = (0, _i18n.useI18n)();
31
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
32
+ className: "fcr-board-toolbar-panel fcr-board-toolbar-panel--color",
33
+ children: [colors === null || colors === void 0 ? void 0 : colors.map(function (color) {
34
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(CommonColorMenu, {
35
+ isActive: strokeColor === color,
36
+ color: color
37
+ }, color);
38
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)("footer", {
39
+ className: "fcr-board-toolbar-panel--footer",
40
+ children: transI18n('fmt_screenshare_whiteboard_tips_righclick')
41
+ })]
42
+ });
43
+ });
44
+ var CommonColorMenu = (0, _mobxReact.observer)(function (_ref) {
45
+ var color = _ref.color,
46
+ isActive = _ref.isActive;
47
+ var _useState = (0, _react.useState)(false),
48
+ _useState2 = (0, _slicedToArray2["default"])(_useState, 2),
49
+ visibleMenu = _useState2[0],
50
+ setMenuVisible = _useState2[1];
51
+ var _useContext2 = (0, _react.useContext)(_toolbarStore.AnnotationToolbarContext),
52
+ setStrokeColor = _useContext2.setStrokeColor,
53
+ setCommonColor = _useContext2.setCommonColor,
54
+ commonColors = _useContext2.observables.commonColors;
55
+ var cls = (0, _classnames["default"])({
56
+ 'fcr-board-toolbar__picker-color--active': isActive,
57
+ 'fcr-board-toolbar__picker-color--border': ['#E2E2E2', '#FFFFFF', '#EFEFEF'].includes(color)
58
+ });
59
+ var transI18n = (0, _i18n.useI18n)();
60
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_popover.FcrPopover, {
61
+ showArrow: false,
62
+ visible: visibleMenu,
63
+ overlayInnerStyle: {
64
+ borderRadius: '4px',
65
+ padding: '5px',
66
+ boxShadow: 'var(--fcr_web_light_dropup)',
67
+ width: 'auto'
68
+ },
69
+ overlayClassName: "fcr-board-toolbar__set-common__overlay",
70
+ placement: "right",
71
+ content: /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
72
+ onMouseLeave: function onMouseLeave() {
73
+ return setMenuVisible(false);
74
+ },
75
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_button.FcrButton, {
76
+ type: "gray",
77
+ block: true,
78
+ size: "XXS",
79
+ shape: "rounded",
80
+ onClick: function onClick() {
81
+ setMenuVisible(false);
82
+ setCommonColor(color);
83
+ },
84
+ children: transI18n('fmt_screenshare_whiteboard_button_setcolor')
85
+ })
86
+ }),
87
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
88
+ className: cls,
89
+ onClick: function onClick() {
90
+ return setStrokeColor(color);
91
+ },
92
+ onContextMenu: function onContextMenu(e) {
93
+ e.preventDefault();
94
+ setMenuVisible(true);
95
+ },
96
+ style: {
97
+ color: color,
98
+ background: color
99
+ },
100
+ children: commonColors.includes(color) && /*#__PURE__*/(0, _jsxRuntime.jsx)(_icon.FcrIcon, {
101
+ type: _type.FcrIconType.FCR_CHOOSEIT,
102
+ colors: {
103
+ iconPrimary: '#fff'
104
+ }
105
+ })
106
+ }, color)
107
+ });
108
+ });
@@ -0,0 +1 @@
1
+ export declare const Picker: () => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,75 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.object.define-property.js");
4
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.Picker = void 0;
9
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
10
+ require("core-js/modules/es.array.includes.js");
11
+ require("core-js/modules/es.string.includes.js");
12
+ var _mobxReact = require("mobx-react");
13
+ var _react = require("react");
14
+ var _classnames = _interopRequireDefault(require("classnames"));
15
+ var _popover = require("agora-ui-foundation/lib/components/popover");
16
+ var _panel = require("./panel");
17
+ var _icon = require("agora-ui-foundation/lib/components/icon");
18
+ var _type = require("agora-ui-foundation/lib/components/icon/type");
19
+ var _enum = require("fcr-core/lib/room-control/whiteboard-control-v2/enum");
20
+ var _toolbarStore = require("../../../toolbar-store");
21
+ var _jsxRuntime = require("react/jsx-runtime");
22
+ var Picker = exports.Picker = (0, _mobxReact.observer)(function () {
23
+ var _useContext = (0, _react.useContext)(_toolbarStore.AnnotationToolbarContext),
24
+ _useContext$observabl = _useContext.observables,
25
+ toolbarDockPosition = _useContext$observabl.toolbarDockPosition,
26
+ commonColors = _useContext$observabl.commonColors,
27
+ _useContext$toolbarSt = _useContext.toolbarState,
28
+ currentTool = _useContext$toolbarSt.currentTool,
29
+ strokeColor = _useContext$toolbarSt.strokeColor;
30
+ var isOtherColorActive = !!strokeColor && !commonColors.includes(strokeColor);
31
+ var _useState = (0, _react.useState)(false),
32
+ _useState2 = (0, _slicedToArray2["default"])(_useState, 2),
33
+ visible = _useState2[0],
34
+ setVisible = _useState2[1];
35
+ var canShowColorPicker = currentTool === _enum.FcrBoardToolType.TEXT;
36
+ var cls = (0, _classnames["default"])('fcr-board-toolbar__color-item fcr-board-toolbar__color-item--picker', {
37
+ // 'fcr-board-toolbar__color-item--active': isOtherColorActive,
38
+ 'fcr-board-toolbar__color-item--disabled': !canShowColorPicker
39
+ });
40
+ // const [currentPickVisible, setCurrentPickVisible] = useState(false);
41
+
42
+ (0, _react.useEffect)(function () {
43
+ setVisible(false);
44
+ }, [strokeColor]);
45
+ return !canShowColorPicker ? /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
46
+ className: cls
47
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_popover.FcrPopover, {
48
+ showArrow: false,
49
+ content: /*#__PURE__*/(0, _jsxRuntime.jsx)(_panel.ColorPickerPanel, {}),
50
+ visible: visible,
51
+ trigger: "click",
52
+ placement: toolbarDockPosition.placement === 'left' ? 'right' : 'left',
53
+ overlayClassName: "fcr-board-toolbar__picker__overlay",
54
+ overlayOffset: 18,
55
+ onVisibleChange: function onVisibleChange(visible) {
56
+ setVisible(visible);
57
+ },
58
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
59
+ className: cls,
60
+ children: !commonColors.includes(strokeColor) && /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
61
+ className: "fcr-board-toolbar__color-item-inner",
62
+ style: {
63
+ background: strokeColor,
64
+ borderWidth: 0
65
+ },
66
+ children: strokeColor && /*#__PURE__*/(0, _jsxRuntime.jsx)(_icon.FcrIcon, {
67
+ type: _type.FcrIconType.FCR_CHOOSEIT,
68
+ colors: {
69
+ iconPrimary: '#fff'
70
+ }
71
+ })
72
+ })
73
+ })
74
+ });
75
+ });
@@ -0,0 +1,2 @@
1
+ import { FC } from 'react';
2
+ export declare const ColorPickerItem: FC;
@@ -0,0 +1,45 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.object.define-property.js");
4
+ Object.defineProperty(exports, "__esModule", {
5
+ value: true
6
+ });
7
+ exports.ColorPickerItem = void 0;
8
+ require("core-js/modules/es.array.map.js");
9
+ require("core-js/modules/es.array.push.js");
10
+ require("core-js/modules/es.array.slice.js");
11
+ require("core-js/modules/es.object.to-string.js");
12
+ require("core-js/modules/esnext.iterator.constructor.js");
13
+ require("core-js/modules/esnext.iterator.map.js");
14
+ var _mobxReact = require("mobx-react");
15
+ var _react = require("react");
16
+ var _picker = require("./components/picker");
17
+ var _color = require("./components/color");
18
+ var _hooks = require("../../hooks");
19
+ var _toolbarStore = require("../../toolbar-store");
20
+ var _jsxRuntime = require("react/jsx-runtime");
21
+ var ColorPickerItem = exports.ColorPickerItem = (0, _mobxReact.observer)(function () {
22
+ var _useAnnotationVisible = (0, _hooks.useAnnotationVisibleTools)(),
23
+ showColorCount = _useAnnotationVisible.showColorCount,
24
+ isShinked = _useAnnotationVisible.isShinked;
25
+ var _useContext = (0, _react.useContext)(_toolbarStore.AnnotationToolbarContext),
26
+ commonColors = _useContext.observables.commonColors;
27
+ var list = [];
28
+ if (!isShinked) {
29
+ list = commonColors.map(function (color, idx) {
30
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_color.Color, {
31
+ value: color,
32
+ showCurrentColor: idx === 0
33
+ }, color);
34
+ }).slice(0, Math.min(showColorCount - commonColors.length + 1, commonColors.length));
35
+ if (showColorCount > 0) {
36
+ list.push(/*#__PURE__*/(0, _jsxRuntime.jsx)(_picker.Picker, {}, "picker"));
37
+ }
38
+ } else {
39
+ list = [/*#__PURE__*/(0, _jsxRuntime.jsx)(_picker.Picker, {}, "picker")];
40
+ }
41
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
42
+ className: "fcr-board-toolbar__color-items",
43
+ children: list
44
+ });
45
+ });
@@ -0,0 +1,4 @@
1
+ import { FC } from 'react';
2
+ export declare const EraserPickerItem: FC<{
3
+ offset?: number;
4
+ }>;
@@ -0,0 +1,142 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.object.define-property.js");
4
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.EraserPickerItem = void 0;
9
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
10
+ var _mobxReact = require("mobx-react");
11
+ var _react = require("react");
12
+ var _classnames = _interopRequireDefault(require("classnames"));
13
+ var _i18n = require("agora-ui-foundation/lib/i18n");
14
+ var _type = require("agora-ui-foundation/lib/components/icon/type");
15
+ var _icon = require("agora-ui-foundation/lib/components/icon");
16
+ var _tooltip = require("agora-ui-foundation/lib/components/tooltip");
17
+ var _enum = require("fcr-core/lib/room-control/whiteboard-control-v2/enum");
18
+ var _expansion = require("./expansion");
19
+ var _toolbarStore = require("../toolbar-store");
20
+ var _jsxRuntime = require("react/jsx-runtime");
21
+ var EraserPickerItem = exports.EraserPickerItem = (0, _mobxReact.observer)(function (_ref) {
22
+ var offset = _ref.offset;
23
+ var _useContext = (0, _react.useContext)(_toolbarStore.AnnotationToolbarContext),
24
+ toolbarDockPosition = _useContext.observables.toolbarDockPosition,
25
+ currentTool = _useContext.toolbarState.currentTool;
26
+ var transI18n = (0, _i18n.useI18n)();
27
+ var _useState = (0, _react.useState)(false),
28
+ _useState2 = (0, _slicedToArray2["default"])(_useState, 2),
29
+ isHover = _useState2[0],
30
+ setIsHover = _useState2[1];
31
+ var isActive = currentTool === _enum.FcrBoardToolType.ERASER;
32
+ var handleMouseEnter = function handleMouseEnter() {
33
+ setIsHover(true);
34
+ };
35
+ var handleMouseLeave = function handleMouseLeave() {
36
+ setIsHover(false);
37
+ };
38
+ var popoverRef = (0, _react.useRef)(null);
39
+ var hidePopover = function hidePopover() {
40
+ var _popoverRef$current;
41
+ (_popoverRef$current = popoverRef.current) === null || _popoverRef$current === void 0 || _popoverRef$current.closePopover();
42
+ };
43
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
44
+ onMouseEnter: handleMouseEnter,
45
+ onMouseLeave: handleMouseLeave,
46
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_expansion.ExpansionToolbarItem, {
47
+ ref: popoverRef,
48
+ isActive: isActive,
49
+ tooltip: transI18n('fmt_screenshare_whiteboard_button_eraser'),
50
+ tooltipPlacement: toolbarDockPosition.placement === 'left' ? 'right' : 'left',
51
+ popoverPlacement: toolbarDockPosition.placement === 'left' ? 'right' : 'left',
52
+ icon: _type.FcrIconType.FCR_WHITEBOARD_ERASER,
53
+ popoverOverlayClassName: "fcr-board-toolbar__picker__overlay",
54
+ popoverContent: /*#__PURE__*/(0, _jsxRuntime.jsx)(EraserPickerPanel, {
55
+ hidePopover: hidePopover
56
+ }),
57
+ popoverOffset: offset,
58
+ iconProps: {
59
+ colors: {
60
+ iconPrimary: isActive || isHover ? 'var(--fcr_ui_scene_ramp_brand6)' : 'var(--fcr_ui_scene_black8)'
61
+ }
62
+ }
63
+ })
64
+ });
65
+ });
66
+ var EraserPickerPanel = (0, _mobxReact.observer)(function (_ref2) {
67
+ var hidePopover = _ref2.hidePopover;
68
+ var _useContext2 = (0, _react.useContext)(_toolbarStore.AnnotationToolbarContext),
69
+ toolbarDockPosition = _useContext2.observables.toolbarDockPosition,
70
+ clean = _useContext2.clean,
71
+ setTool = _useContext2.setTool,
72
+ currentTool = _useContext2.toolbarState.currentTool;
73
+ var transI18n = (0, _i18n.useI18n)();
74
+ var eraserCls = (0, _classnames["default"])({
75
+ 'fcr-board-toolbar-panel--active': currentTool === _enum.FcrBoardToolType.ERASER
76
+ });
77
+ var handleEraserClick = function handleEraserClick() {
78
+ hidePopover();
79
+ setTool(_enum.FcrBoardToolType.ERASER);
80
+ };
81
+ var handleCleanClick = function handleCleanClick() {
82
+ hidePopover();
83
+ clean();
84
+ };
85
+ var _useState3 = (0, _react.useState)(false),
86
+ _useState4 = (0, _slicedToArray2["default"])(_useState3, 2),
87
+ isEraserHover = _useState4[0],
88
+ setIsEraserHover = _useState4[1];
89
+ var _useState5 = (0, _react.useState)(false),
90
+ _useState6 = (0, _slicedToArray2["default"])(_useState5, 2),
91
+ isCleanHover = _useState6[0],
92
+ setIsCleanHover = _useState6[1];
93
+ var handleMouseEnter = function handleMouseEnter() {
94
+ setIsEraserHover(true);
95
+ };
96
+ var handleMouseLeave = function handleMouseLeave() {
97
+ setIsEraserHover(false);
98
+ };
99
+ var handleCleanMouseEnter = function handleCleanMouseEnter() {
100
+ setIsCleanHover(true);
101
+ };
102
+ var handleCleanMouseLeave = function handleCleanMouseLeave() {
103
+ setIsCleanHover(false);
104
+ };
105
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)("div", {
106
+ className: "fcr-board-toolbar-panel fcr-board-toolbar-panel--eraser",
107
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_tooltip.FcrToolTip, {
108
+ trigger: "hover",
109
+ content: transI18n('fmt_screenshare_whiteboard_button_eraser'),
110
+ placement: toolbarDockPosition.placement === 'left' ? 'right' : 'left',
111
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
112
+ className: eraserCls,
113
+ onClick: handleEraserClick,
114
+ onMouseEnter: handleMouseEnter,
115
+ onMouseLeave: handleMouseLeave,
116
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_icon.FcrIcon, {
117
+ type: _type.FcrIconType.FCR_WHITEBOARD_ERASER,
118
+ size: 28,
119
+ colors: {
120
+ iconPrimary: currentTool === _enum.FcrBoardToolType.ERASER || isEraserHover ? 'var(--fcr_ui_scene_ramp_brand6)' : 'var(--fcr_ui_scene_black8)'
121
+ }
122
+ })
123
+ })
124
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_tooltip.FcrToolTip, {
125
+ trigger: "hover",
126
+ content: transI18n('fmt_screenshare_whiteboard_button_empty'),
127
+ placement: toolbarDockPosition.placement === 'left' ? 'right' : 'left',
128
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)("div", {
129
+ onClick: handleCleanClick,
130
+ onMouseEnter: handleCleanMouseEnter,
131
+ onMouseLeave: handleCleanMouseLeave,
132
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_icon.FcrIcon, {
133
+ type: _type.FcrIconType.FCR_WHITEBOARD_ELIMINATE,
134
+ size: 28,
135
+ colors: {
136
+ iconPrimary: isCleanHover ? 'var(--fcr_ui_scene_ramp_brand6)' : 'var(--fcr_ui_scene_black8)'
137
+ }
138
+ })
139
+ })
140
+ })]
141
+ });
142
+ });