fcr-ui-scene 3.7.5 → 3.7.7

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 (401) hide show
  1. package/installer/icons/icon.png +0 -0
  2. package/installer/mac/entitlements.mac.plist +1 -5
  3. package/lib/creator/index.js +15 -7
  4. package/lib/creator/provider-initializer.browser.js +13 -4
  5. package/lib/creator/provider-initializer.electron.js +22 -10
  6. package/lib/creator.d.ts +36 -0
  7. package/lib/creator.js +465 -0
  8. package/lib/electron/bootstrap-sdk.js +90 -6
  9. package/lib/electron/injections.d.ts +1 -0
  10. package/lib/electron/injections.js +5 -1
  11. package/lib/electron/ipc/type.d.ts +1 -0
  12. package/lib/electron/ipc/type.js +1 -0
  13. package/lib/electron/preload.js +1 -0
  14. package/lib/electron/sdk-helper.d.ts +3 -0
  15. package/lib/electron/sdk-helper.js +53 -19
  16. package/lib/electron/struct.d.ts +7 -1
  17. package/lib/electron/struct.js +8 -1
  18. package/lib/electron/until.d.ts +7 -1
  19. package/lib/electron/until.js +11 -2
  20. package/lib/fragments/annotation/store.js +2 -0
  21. package/lib/modules/action-bar/components/item/index.js +1 -0
  22. package/lib/modules/action-bar/components/more/poppover-content.js +1 -1
  23. package/lib/modules/action-bar/components/screen-share/index.browser.js +4 -2
  24. package/lib/modules/action-bar/components/screen-share/index.electron.js +4 -2
  25. package/lib/modules/action-bar/components/screen-share/submenu.d.ts +5 -1
  26. package/lib/modules/action-bar/components/screen-share/submenu.js +12 -9
  27. package/lib/modules/action-bar/index.d.ts +55 -14
  28. package/lib/modules/action-bar/index.dev.js +94 -0
  29. package/lib/modules/action-bar/index.js +78 -32
  30. package/lib/modules/action-bar/store.d.ts +259 -0
  31. package/lib/modules/action-bar/store.js +1529 -0
  32. package/lib/modules/action-bar/types.d.ts +90 -0
  33. package/lib/modules/action-bar/types.js +6 -0
  34. package/lib/modules/action-bar/view.d.ts +1 -1
  35. package/lib/modules/action-bar/view.js +2 -2
  36. package/lib/modules/annotation/annotation-index.d.ts +2 -0
  37. package/lib/modules/annotation/annotation-index.js +80 -0
  38. package/lib/modules/annotation/annotation-toolbar-store.d.ts +75 -0
  39. package/lib/modules/annotation/annotation-toolbar-store.js +459 -0
  40. package/lib/modules/annotation/board-cursor.css +77 -0
  41. package/lib/modules/annotation/components/color-picker/components/color.d.ts +5 -0
  42. package/lib/modules/annotation/components/color-picker/components/color.js +38 -0
  43. package/lib/modules/annotation/components/color-picker/components/panel.d.ts +1 -0
  44. package/lib/modules/annotation/components/color-picker/components/panel.js +109 -0
  45. package/lib/modules/annotation/components/color-picker/components/picker.d.ts +1 -0
  46. package/lib/modules/annotation/components/color-picker/components/picker.js +75 -0
  47. package/lib/modules/annotation/components/color-picker/index.d.ts +2 -0
  48. package/lib/modules/annotation/components/color-picker/index.js +47 -0
  49. package/lib/modules/annotation/components/eraser-picker.d.ts +4 -0
  50. package/lib/modules/annotation/components/eraser-picker.js +144 -0
  51. package/lib/modules/annotation/components/expansion/index.d.ts +1 -0
  52. package/lib/modules/annotation/components/expansion/index.js +100 -0
  53. package/lib/modules/annotation/components/extra-tool-picker.d.ts +1 -0
  54. package/lib/modules/annotation/components/extra-tool-picker.js +62 -0
  55. package/lib/modules/annotation/components/history.d.ts +2 -0
  56. package/lib/modules/annotation/components/history.js +78 -0
  57. package/lib/modules/annotation/components/icons/fold-icon.d.ts +2 -0
  58. package/lib/modules/annotation/components/icons/fold-icon.js +41 -0
  59. package/lib/modules/annotation/components/icons/move-icon.d.ts +1 -0
  60. package/lib/modules/annotation/components/icons/move-icon.js +66 -0
  61. package/lib/modules/annotation/components/item/index.d.ts +1 -0
  62. package/lib/modules/annotation/components/item/index.js +43 -0
  63. package/lib/modules/annotation/components/move-handle.d.ts +5 -0
  64. package/lib/modules/annotation/components/move-handle.js +134 -0
  65. package/lib/modules/annotation/components/pen-picker.d.ts +4 -0
  66. package/lib/modules/annotation/components/pen-picker.js +155 -0
  67. package/lib/modules/annotation/components/screen-capture-picker.d.ts +4 -0
  68. package/lib/modules/annotation/components/screen-capture-picker.js +85 -0
  69. package/lib/modules/annotation/components/shape-picker.d.ts +4 -0
  70. package/lib/modules/annotation/components/shape-picker.js +210 -0
  71. package/lib/modules/annotation/hooks/index.d.ts +14 -0
  72. package/lib/modules/annotation/hooks/index.js +292 -0
  73. package/lib/modules/annotation/index.d.ts +45 -0
  74. package/lib/modules/annotation/index.js +168 -0
  75. package/lib/modules/annotation/store.d.ts +98 -0
  76. package/lib/modules/annotation/store.js +620 -0
  77. package/lib/modules/annotation/style.css +36 -0
  78. package/lib/modules/annotation/view.d.ts +3 -0
  79. package/lib/modules/annotation/view.js +44 -0
  80. package/lib/modules/audio-stream/index.js +4 -2
  81. package/lib/modules/chat/index.css +8 -0
  82. package/lib/modules/chat/view.js +7 -1
  83. package/lib/modules/components/control-bar/components/switch-theme/index.css +2 -0
  84. package/lib/modules/components/control-bar/components/switch-theme/index.js +5 -7
  85. package/lib/modules/components/control-bar/index.css +0 -2
  86. package/lib/modules/components/control-bar/index.d.ts +1 -0
  87. package/lib/modules/components/control-bar/index.js +51 -15
  88. package/lib/modules/components/device-control/store.d.ts +42 -0
  89. package/lib/modules/components/device-control/store.js +241 -0
  90. package/lib/modules/components/leave-meeting/main-scene/store.d.ts +3 -0
  91. package/lib/modules/components/leave-meeting/main-scene/store.js +12 -0
  92. package/lib/modules/components/leave-meeting/store.base.d.ts +4 -3
  93. package/lib/modules/components/leave-meeting/store.base.js +0 -10
  94. package/lib/modules/components/leave-meeting/store.d.ts +39 -0
  95. package/lib/modules/components/leave-meeting/store.js +270 -0
  96. package/lib/modules/components/leave-meeting/waiting-scene/store.d.ts +5 -1
  97. package/lib/modules/components/leave-meeting/waiting-scene/store.js +17 -3
  98. package/lib/modules/components/member-window/components/member-actions/components/more-actions.js +1 -2
  99. package/lib/modules/components/member-window/components/video-player/components/local-video-player-with-zoom.js +4 -3
  100. package/lib/modules/components/member-window/components/video-player/components/zoomable-container.js +18 -32
  101. package/lib/modules/components/toolbar/components/capture-tool/index.d.ts +0 -1
  102. package/lib/modules/components/toolbar/components/capture-tool/index.js +1 -2
  103. package/lib/modules/components/toolbar/components/vertical-frame/index.js +2 -2
  104. package/lib/modules/components/toolbar/hooks/use-resize-visible.js +45 -32
  105. package/lib/modules/components/toolbar/index.js +6 -24
  106. package/lib/modules/control-bar/components/annotation-button/index.d.ts +1 -0
  107. package/lib/modules/control-bar/components/annotation-button/index.js +72 -0
  108. package/lib/modules/control-bar/components/boundary-detector.d.ts +7 -5
  109. package/lib/modules/control-bar/components/boundary-detector.js +22 -2
  110. package/lib/modules/control-bar/components/cloud-recording-buttons.d.ts +3 -0
  111. package/lib/modules/control-bar/components/cloud-recording-buttons.js +68 -3
  112. package/lib/modules/control-bar/hooks.js +2 -1
  113. package/lib/modules/control-bar/store.d.ts +1 -0
  114. package/lib/modules/control-bar/store.js +21 -7
  115. package/lib/modules/control-bar/types.d.ts +5 -16
  116. package/lib/modules/control-bar/view.js +96 -28
  117. package/lib/modules/dialog/components/confirm/index.js +6 -24
  118. package/lib/modules/dialog/components/dialog-container/component/body.d.ts +1 -0
  119. package/lib/modules/dialog/components/dialog-container/component/body.js +3 -2
  120. package/lib/modules/dialog/components/dialog-container/index.css +8 -1
  121. package/lib/modules/dialog/components/dialog-container/index.d.ts +1 -0
  122. package/lib/modules/dialog/components/dialog-container/index.js +4 -1
  123. package/lib/modules/dialog/components/normal-window/index.d.ts +1 -0
  124. package/lib/modules/dialog/components/normal-window/index.js +3 -1
  125. package/lib/modules/dialog/dialogs/chat/index.js +2 -1
  126. package/lib/modules/dialog/dialogs/control-bar-leave-meeting/index.js +0 -1
  127. package/lib/modules/dialog/dialogs/device-setting/index.d.ts +1 -0
  128. package/lib/modules/dialog/dialogs/device-setting/index.js +4 -2
  129. package/lib/modules/dialog/dialogs/end-meeting/index.d.ts +1 -0
  130. package/lib/modules/dialog/dialogs/end-meeting/index.js +2 -1
  131. package/lib/modules/dialog/dialogs/invite/index.d.ts +1 -0
  132. package/lib/modules/dialog/dialogs/invite/index.js +2 -1
  133. package/lib/modules/dialog/dialogs/mute-all/index.d.ts +1 -0
  134. package/lib/modules/dialog/dialogs/mute-all/index.js +2 -1
  135. package/lib/modules/dialog/dialogs/participant/index.js +9 -2
  136. package/lib/modules/dialog/dialogs/pre-setting/index.d.ts +3 -3
  137. package/lib/modules/dialog/dialogs/pre-setting/index.js +25 -20
  138. package/lib/modules/dialog/dialogs/share-screen-selection/index.js +1 -1
  139. package/lib/modules/dialog/dialogs/sub-window/index.js +1 -7
  140. package/lib/modules/dialog/dialogs/toast/index.d.ts +1 -1
  141. package/lib/modules/dialog/dialogs/toast/index.js +1 -1
  142. package/lib/modules/dialog/dialogs/video-window/index.d.ts +4 -1
  143. package/lib/modules/dialog/dialogs/video-window/index.js +5 -2
  144. package/lib/modules/dialog/dialogs/widget/electron.d.ts +6 -0
  145. package/lib/modules/dialog/dialogs/widget/electron.js +38 -0
  146. package/lib/modules/dialog/dialogs/widget/index.d.ts +2 -0
  147. package/lib/modules/dialog/dialogs/widget/index.js +11 -3
  148. package/lib/modules/dialog/hooks/use-popover-watcher.js +1 -3
  149. package/lib/modules/dialog/hooks/useElectron.d.ts +28 -0
  150. package/lib/modules/dialog/hooks/useElectron.js +277 -0
  151. package/lib/modules/dialog/index.css +6 -2
  152. package/lib/modules/dialog/level-config.d.ts +1 -0
  153. package/lib/modules/dialog/level-config.js +2 -1
  154. package/lib/modules/dialog/store.base.d.ts +2 -0
  155. package/lib/modules/dialog/store.browser.d.ts +2 -0
  156. package/lib/modules/dialog/store.browser.js +6 -1
  157. package/lib/modules/dialog/store.d.ts +135 -0
  158. package/lib/modules/dialog/store.electron.d.ts +9 -1
  159. package/lib/modules/dialog/store.electron.js +64 -4
  160. package/lib/modules/dialog/store.js +616 -0
  161. package/lib/modules/dialog/type.d.ts +3 -0
  162. package/lib/modules/event-confirm/components/window/index.d.ts +7 -0
  163. package/lib/modules/event-confirm/components/window/index.js +221 -0
  164. package/lib/modules/event-confirm/index.css +24 -0
  165. package/lib/modules/event-confirm/index.d.ts +27 -0
  166. package/lib/modules/event-confirm/index.js +76 -0
  167. package/lib/modules/event-confirm/store.d.ts +50 -0
  168. package/lib/modules/event-confirm/store.js +394 -0
  169. package/lib/modules/event-confirm/view.d.ts +2 -0
  170. package/lib/modules/event-confirm/view.js +55 -0
  171. package/lib/modules/event-toast/index.css +0 -1
  172. package/lib/modules/event-toast/index.js +1 -0
  173. package/lib/modules/event-toast/store.base.d.ts +2 -0
  174. package/lib/modules/event-toast/store.base.js +40 -21
  175. package/lib/modules/event-toast/store.d.ts +9 -5
  176. package/lib/modules/event-toast/store.electron.d.ts +2 -0
  177. package/lib/modules/event-toast/store.electron.js +19 -9
  178. package/lib/modules/event-toast/store.js +57 -39
  179. package/lib/modules/layout/components/CommonVideoRenderer.js +1 -0
  180. package/lib/modules/layout/store.d.ts +176 -0
  181. package/lib/modules/layout/store.electron.js +1 -1
  182. package/lib/modules/layout/store.js +1452 -0
  183. package/lib/modules/participant/components/confirm-input/index.js +1 -1
  184. package/lib/modules/participant/store.base.d.ts +30 -3
  185. package/lib/modules/participant/store.base.js +249 -96
  186. package/lib/modules/participant/store.browser.js +4 -3
  187. package/lib/modules/participant/store.d.ts +222 -0
  188. package/lib/modules/participant/store.electron.js +5 -3
  189. package/lib/modules/participant/store.js +1929 -0
  190. package/lib/modules/pc-audio-connect/index.d.ts +22 -0
  191. package/lib/modules/pc-audio-connect/index.js +67 -0
  192. package/lib/modules/pc-audio-connect/main-scene/store.js +1 -0
  193. package/lib/modules/pc-audio-connect/store.d.ts +46 -0
  194. package/lib/modules/pc-audio-connect/store.js +304 -0
  195. package/lib/modules/secondary-window/store.d.ts +1 -1
  196. package/lib/modules/secondary-window/store.js +14 -22
  197. package/lib/modules/secondary-window/view.js +10 -10
  198. package/lib/modules/setting/audio-settings/audio-settings.js +0 -17
  199. package/lib/modules/setting/dialog-wrapper.d.ts +2 -0
  200. package/lib/modules/setting/dialog-wrapper.js +110 -0
  201. package/lib/modules/setting/index.js +1 -1
  202. package/lib/modules/setting/state/index.js +1 -1
  203. package/lib/modules/setting/store.base.d.ts +5 -2
  204. package/lib/modules/setting/store.base.js +72 -26
  205. package/lib/modules/setting/store.d.ts +261 -0
  206. package/lib/modules/setting/store.js +1321 -0
  207. package/lib/modules/share-screen/components/selection/index.css +4 -0
  208. package/lib/modules/share-screen/store.base.js +17 -4
  209. package/lib/modules/share-screen/store.d.ts +148 -0
  210. package/lib/modules/share-screen/store.electron.js +5 -2
  211. package/lib/modules/share-screen/store.js +960 -0
  212. package/lib/modules/share-screen/types.d.ts +26 -0
  213. package/lib/modules/share-screen/types.js +6 -0
  214. package/lib/modules/state-bar/layout-config.js +6 -0
  215. package/lib/modules/state-bar/main-scene/store.base.d.ts +2 -0
  216. package/lib/modules/state-bar/main-scene/store.base.js +6 -0
  217. package/lib/modules/state-bar/store.d.ts +124 -0
  218. package/lib/modules/state-bar/store.js +664 -0
  219. package/lib/modules/video-window/index.css +6 -0
  220. package/lib/modules/video-window/popover-watcher.d.ts +5 -10
  221. package/lib/modules/video-window/popover-watcher.js +34 -31
  222. package/lib/modules/video-window/store.d.ts +32 -5
  223. package/lib/modules/video-window/store.js +156 -63
  224. package/lib/modules/video-window/view.js +50 -1
  225. package/lib/modules/whiteboard/components/progress/electron.d.ts +1 -0
  226. package/lib/modules/whiteboard/components/progress/electron.js +33 -0
  227. package/lib/modules/whiteboard/index.d.ts +1 -1
  228. package/lib/modules/whiteboard/index.js +1 -1
  229. package/lib/modules/whiteboard/store.d.ts +3 -0
  230. package/lib/modules/whiteboard/store.js +31 -2
  231. package/lib/modules/whiteboard/view.js +10 -1
  232. package/lib/modules/widget/sdk.js +1 -1
  233. package/lib/modules/widget/store.base.d.ts +1 -0
  234. package/lib/modules/widget/store.browser.d.ts +1 -0
  235. package/lib/modules/widget/store.browser.js +60 -4
  236. package/lib/modules/widget/store.d.ts +5 -8
  237. package/lib/modules/widget/store.electron.d.ts +1 -0
  238. package/lib/modules/widget/store.electron.js +59 -2
  239. package/lib/modules/widget/store.js +4 -47
  240. package/lib/modules/widget/type.d.ts +3 -2
  241. package/lib/modules/widget/view.js +9 -4
  242. package/lib/modules/widget/web-widget.d.ts +2 -1
  243. package/lib/modules/widget/web-widget.js +7 -5
  244. package/lib/object-manager.d.ts +2 -2
  245. package/lib/object-manager.js +1 -1
  246. package/lib/providers/annotation-provider.d.ts +124 -0
  247. package/lib/providers/annotation-provider.js +369 -0
  248. package/lib/providers/board-share/bar-control/base.d.ts +1 -1
  249. package/lib/providers/board-share/bar-control/base.js +37 -28
  250. package/lib/providers/board-share/bar-control/electron.d.ts +1 -1
  251. package/lib/providers/board-share/bar-control/electron.js +19 -16
  252. package/lib/providers/board-share/provider.base.d.ts +8 -1
  253. package/lib/providers/board-share/provider.base.js +12 -2
  254. package/lib/providers/board-share/provider.browser.d.ts +3 -0
  255. package/lib/providers/board-share/provider.browser.js +21 -3
  256. package/lib/providers/device-provider.d.ts +16 -2
  257. package/lib/providers/device-provider.js +53 -60
  258. package/lib/providers/dialog/provider.base.d.ts +1 -0
  259. package/lib/providers/dialog/provider.browser.d.ts +1 -0
  260. package/lib/providers/dialog/provider.browser.js +7 -2
  261. package/lib/providers/dialog/provider.electron.d.ts +4 -1
  262. package/lib/providers/dialog/provider.electron.js +94 -2
  263. package/lib/providers/dialog/type.d.ts +7 -0
  264. package/lib/providers/dialog-provider.d.ts +137 -0
  265. package/lib/providers/dialog-provider.js +194 -0
  266. package/lib/providers/message-provider.d.ts +69 -0
  267. package/lib/providers/message-provider.js +140 -0
  268. package/lib/providers/mouse-detect/provider.d.ts +9 -1
  269. package/lib/providers/mouse-detect/provider.js +119 -5
  270. package/lib/providers/mouse-detect/struct.d.ts +2 -1
  271. package/lib/providers/mouse-detect/struct.js +1 -0
  272. package/lib/providers/mouse-detect/type.d.ts +2 -0
  273. package/lib/providers/multi-display-provider.d.ts +3 -5
  274. package/lib/providers/multi-display-provider.js +0 -9
  275. package/lib/providers/renderer-provider.d.ts +5 -0
  276. package/lib/providers/renderer-provider.js +5 -0
  277. package/lib/providers/room-provider/room-provider.d.ts +4 -14
  278. package/lib/providers/room-provider/room-provider.js +28 -39
  279. package/lib/providers/room-provider.d.ts +194 -0
  280. package/lib/providers/room-provider.js +916 -0
  281. package/lib/providers/screen-share/provider.base.js +3 -11
  282. package/lib/providers/screen-share/provider.browser.js +23 -14
  283. package/lib/providers/screen-share/provider.electron.d.ts +1 -0
  284. package/lib/providers/screen-share/provider.electron.js +44 -17
  285. package/lib/providers/screen-share/strategy/browser.js +16 -13
  286. package/lib/providers/screen-share/strategy/electron.d.ts +2 -2
  287. package/lib/providers/screen-share/strategy/electron.js +15 -10
  288. package/lib/providers/screen-share/strategy/type.d.ts +6 -0
  289. package/lib/providers/screen-share/stream-state-sync.d.ts +3 -2
  290. package/lib/providers/screen-share/stream-state-sync.js +26 -16
  291. package/lib/providers/screen-share/struct.d.ts +9 -7
  292. package/lib/providers/screen-share/struct.js +11 -8
  293. package/lib/providers/screen-share/type.d.ts +7 -1
  294. package/lib/providers/screen-share-provider.d.ts +245 -0
  295. package/lib/providers/screen-share-provider.js +850 -0
  296. package/lib/providers/sharing-provider.d.ts +42 -0
  297. package/lib/providers/sharing-provider.js +228 -0
  298. package/lib/providers/user-setting-storage-provider.d.ts +21 -0
  299. package/lib/providers/user-setting-storage-provider.js +65 -0
  300. package/lib/providers/whiteboard-provider.d.ts +2 -4
  301. package/lib/providers/whiteboard-provider.js +4 -7
  302. package/lib/providers/widget-provider.d.ts +5 -3
  303. package/lib/providers/widget-provider.js +12 -18
  304. package/lib/providers/window/main-window.d.ts +0 -5
  305. package/lib/providers/window/main-window.js +3 -44
  306. package/lib/providers/window/renderer-window.d.ts +1 -0
  307. package/lib/providers/window/renderer-window.js +13 -2
  308. package/lib/runtime.d.ts +1 -0
  309. package/lib/runtime.js +2 -1
  310. package/lib/scenes/main-scene.js +5 -0
  311. package/lib/shared-context/board-context.d.ts +2 -0
  312. package/lib/shared-context/board-context.js +2 -0
  313. package/lib/shared-data/member-data.d.ts +0 -8
  314. package/lib/shared-data/member-data.js +26 -78
  315. package/lib/shared-data/widget-data.d.ts +13 -0
  316. package/lib/shared-data/widget-data.js +50 -0
  317. package/lib/shared-data-source/annotation-data.d.ts +17 -0
  318. package/lib/{modules/action-bar/store.base.js → shared-data-source/annotation-data.js} +34 -41
  319. package/lib/shared-data-source/app-list-data.d.ts +34 -0
  320. package/lib/shared-data-source/app-list-data.js +133 -0
  321. package/lib/shared-data-source/chat-data.d.ts +25 -0
  322. package/lib/shared-data-source/chat-data.js +139 -0
  323. package/lib/shared-data-source/config.d.ts +35 -0
  324. package/lib/shared-data-source/config.js +40 -0
  325. package/lib/shared-data-source/confirm-data.d.ts +44 -0
  326. package/lib/shared-data-source/confirm-data.js +201 -0
  327. package/lib/shared-data-source/device-privilege-data.d.ts +8 -0
  328. package/lib/shared-data-source/device-privilege-data.js +25 -0
  329. package/lib/shared-data-source/interpreter.d.ts +77 -0
  330. package/lib/shared-data-source/interpreter.js +247 -0
  331. package/lib/shared-data-source/layout-data.d.ts +31 -0
  332. package/lib/shared-data-source/layout-data.js +189 -0
  333. package/lib/shared-data-source/meeting-time.d.ts +90 -0
  334. package/lib/shared-data-source/meeting-time.js +416 -0
  335. package/lib/shared-data-source/member-data.d.ts +139 -0
  336. package/lib/shared-data-source/member-data.js +517 -0
  337. package/lib/shared-data-source/pin-data.d.ts +13 -0
  338. package/lib/{modules/action-bar/waiting-scene/store.js → shared-data-source/pin-data.js} +55 -35
  339. package/lib/shared-data-source/screen-share-data.d.ts +357 -0
  340. package/lib/shared-data-source/screen-share-data.js +513 -0
  341. package/lib/shared-data-source/security-data.d.ts +39 -0
  342. package/lib/shared-data-source/security-data.js +156 -0
  343. package/lib/shared-data-source/setting.d.ts +67 -0
  344. package/lib/shared-data-source/setting.js +220 -0
  345. package/lib/shared-data-source/speaker-spotlight.d.ts +5 -0
  346. package/lib/shared-data-source/speaker-spotlight.js +15 -0
  347. package/lib/shared-data-source/video-window.d.ts +165 -0
  348. package/lib/shared-data-source/video-window.js +1266 -0
  349. package/lib/shared-data-source/waiting-room.d.ts +46 -0
  350. package/lib/shared-data-source/waiting-room.js +222 -0
  351. package/lib/{shared-data → shared-data-source}/whiteboard-data.d.ts +2 -2
  352. package/lib/{shared-data → shared-data-source}/whiteboard-data.js +23 -17
  353. package/lib/translations/enUS.d.ts +0 -2
  354. package/lib/translations/enUS.js +4 -6
  355. package/lib/translations/zhCN.d.ts +0 -2
  356. package/lib/translations/zhCN.js +4 -6
  357. package/lib/type.d.ts +5 -0
  358. package/lib/ui-scene.d.ts +2 -4
  359. package/lib/ui-scene.js +31 -42
  360. package/lib/utilities/board-context.d.ts +4 -0
  361. package/lib/utilities/board-context.js +12 -0
  362. package/lib/utilities/constant.d.ts +3 -1
  363. package/lib/utilities/constant.js +5 -2
  364. package/lib/utilities/copyText.d.ts +2 -0
  365. package/lib/utilities/copyText.js +48 -0
  366. package/lib/utilities/default-config.d.ts +18 -0
  367. package/lib/utilities/default-config.js +19 -1
  368. package/lib/utilities/focus-helper.js +10 -3
  369. package/lib/utilities/logger.js +3 -1
  370. package/lib/utilities/renderer-event.d.ts +10 -0
  371. package/lib/utilities/renderer-event.js +95 -0
  372. package/lib/utilities/renderer.d.ts +1 -0
  373. package/lib/utilities/renderer.js +7 -1
  374. package/lib/utilities/screen-capture-permission.d.ts +2 -0
  375. package/lib/utilities/screen-capture-permission.js +24 -0
  376. package/lib/utilities/screen.d.ts +3 -0
  377. package/lib/utilities/screen.js +53 -0
  378. package/lib/utilities/video-track-render-context.d.ts +6 -0
  379. package/lib/utilities/video-track-render-context.js +9 -0
  380. package/lib/waiting-room-control-manager.d.ts +28 -0
  381. package/lib/waiting-room-control-manager.js +230 -0
  382. package/package.json +5 -5
  383. package/public/index.html +35 -4
  384. package/lib/modules/action-bar/store.base.d.ts +0 -15
  385. package/lib/modules/action-bar/waiting-scene/store.d.ts +0 -6
  386. package/lib/providers/board-share/bar-control.d.ts +0 -51
  387. package/lib/providers/board-share/bar-control.js +0 -390
  388. package/lib/providers/board-share/provider.d.ts +0 -66
  389. package/lib/providers/board-share/provider.js +0 -456
  390. package/lib/providers/screen-share/provider.d.ts +0 -69
  391. package/lib/providers/screen-share/provider.js +0 -615
  392. package/lib/providers/window/browser-window-proxy.js +0 -1
  393. package/lib/providers/window/ipc-protocol.d.ts +0 -0
  394. package/lib/providers/window/ipc-protocol.js +0 -1
  395. package/lib/providers/window/main-process-handler.d.ts +0 -0
  396. package/lib/providers/window/main-process-handler.js +0 -1
  397. package/lib/providers/window/main-process-integration.d.ts +0 -0
  398. package/lib/providers/window/main-process-integration.js +0 -1
  399. package/lib/utilities/ipc-protocol.d.ts +0 -91
  400. package/lib/utilities/ipc-protocol.js +0 -61
  401. /package/lib/{providers/window/browser-window-proxy.d.ts → modules/action-bar/index.dev.d.ts} +0 -0
@@ -0,0 +1,459 @@
1
+ "use strict";
2
+
3
+ require("core-js/modules/es.symbol.js");
4
+ require("core-js/modules/es.symbol.description.js");
5
+ require("core-js/modules/es.symbol.to-primitive.js");
6
+ require("core-js/modules/es.error.cause.js");
7
+ require("core-js/modules/es.error.to-string.js");
8
+ require("core-js/modules/es.array.is-array.js");
9
+ require("core-js/modules/es.date.to-primitive.js");
10
+ require("core-js/modules/es.function.bind.js");
11
+ require("core-js/modules/es.function.name.js");
12
+ require("core-js/modules/es.map.js");
13
+ require("core-js/modules/es.number.constructor.js");
14
+ require("core-js/modules/es.object.create.js");
15
+ require("core-js/modules/es.object.define-property.js");
16
+ require("core-js/modules/es.object.get-own-property-descriptor.js");
17
+ require("core-js/modules/esnext.function.metadata.js");
18
+ require("core-js/modules/esnext.map.delete-all.js");
19
+ require("core-js/modules/esnext.map.emplace.js");
20
+ require("core-js/modules/esnext.map.every.js");
21
+ require("core-js/modules/esnext.map.filter.js");
22
+ require("core-js/modules/esnext.map.find.js");
23
+ require("core-js/modules/esnext.map.find-key.js");
24
+ require("core-js/modules/esnext.map.includes.js");
25
+ require("core-js/modules/esnext.map.key-of.js");
26
+ require("core-js/modules/esnext.map.map-keys.js");
27
+ require("core-js/modules/esnext.map.map-values.js");
28
+ require("core-js/modules/esnext.map.merge.js");
29
+ require("core-js/modules/esnext.map.reduce.js");
30
+ require("core-js/modules/esnext.map.some.js");
31
+ require("core-js/modules/esnext.map.update.js");
32
+ require("core-js/modules/esnext.symbol.metadata.js");
33
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault");
34
+ var _typeof = require("@babel/runtime/helpers/typeof");
35
+ Object.defineProperty(exports, "__esModule", {
36
+ value: true
37
+ });
38
+ exports.AnnotationReceiverToolbarStore = exports.AnnotationReceiverToolbarContext = void 0;
39
+ var _regenerator = _interopRequireDefault(require("@babel/runtime/regenerator"));
40
+ require("core-js/modules/es.array.concat.js");
41
+ require("core-js/modules/es.array.iterator.js");
42
+ require("core-js/modules/es.array.push.js");
43
+ require("core-js/modules/es.object.to-string.js");
44
+ require("core-js/modules/es.string.iterator.js");
45
+ require("core-js/modules/es.weak-map.js");
46
+ require("core-js/modules/esnext.weak-map.delete-all.js");
47
+ require("core-js/modules/esnext.weak-map.emplace.js");
48
+ require("core-js/modules/web.dom-collections.iterator.js");
49
+ require("core-js/modules/web.timers.js");
50
+ var _slicedToArray2 = _interopRequireDefault(require("@babel/runtime/helpers/slicedToArray"));
51
+ var _asyncToGenerator2 = _interopRequireDefault(require("@babel/runtime/helpers/asyncToGenerator"));
52
+ var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));
53
+ var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass"));
54
+ var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty"));
55
+ var _mobx = require("mobx");
56
+ var _type = require("../whiteboard/type");
57
+ var _react = require("react");
58
+ var _enums = require("fcr-core/lib/room-control/whiteboard-control/enums");
59
+ var _libs = _interopRequireDefault(require("../whiteboard/components/switch-theme/libs"));
60
+ var _tinycolor = _interopRequireDefault(require("tinycolor2"));
61
+ var _type2 = require("fcr-core/lib/type");
62
+ var _decorator = require("agora-foundation/lib/decorator");
63
+ var _utils = require("../whiteboard/utils");
64
+ var _dayjs = _interopRequireDefault(require("dayjs"));
65
+ var _logger = require("../../utilities/logger");
66
+ var _AnnotationReceiverToolbarStore;
67
+ var _initProto, _init_observables, _resetToolbarVarsDecs, _redoDecs, _undoDecs, _cleanDecs, _setToolDecs, _setPenDecs, _setShapeDecs, _setStrokeColorDecs, _setStrokeWidthDecs, _clickExpansionToolDecs, _setToolbarPositionDecs, _dragToolbarDecs, _releaseToolbarDecs, _captureScreenDecs, _saveDraftDecs, _setCommonColorDecs, _repositionToolbarDecs, _getSnapshotImageDecs, _ref;
68
+ function _classPrivateFieldInitSpec(e, t, a) { _checkPrivateRedeclaration(e, t), t.set(e, a); }
69
+ function _checkPrivateRedeclaration(e, t) { if (t.has(e)) throw new TypeError("Cannot initialize the same private elements twice on an object"); }
70
+ function _classPrivateFieldSet(s, a, r) { return s.set(_assertClassBrand(s, a), r), r; }
71
+ function _classPrivateFieldGet(s, a) { return s.get(_assertClassBrand(s, a)); }
72
+ function _assertClassBrand(e, t, n) { if ("function" == typeof e ? e === t : e.has(t)) return arguments.length < 3 ? t : n; throw new TypeError("Private element is not present on this object"); }
73
+ function _applyDecs(e, t, r, n, o, a) { function i(e, t, r) { return function (n, o) { return r && r(n), e[t].call(n, o); }; } function c(e, t) { for (var r = 0; r < e.length; r++) e[r].call(t); return t; } function s(e, t, r, n) { if ("function" != typeof e && (n || void 0 !== e)) throw new TypeError(t + " must " + (r || "be") + " a function" + (n ? "" : " or undefined")); return e; } function applyDec(e, t, r, n, o, a, c, u, l, f, p, d, h) { function m(e) { if (!h(e)) throw new TypeError("Attempted to access private element on non-instance"); } var y, v = t[0], g = t[3], b = !u; if (!b) { r || Array.isArray(v) || (v = [v]); var w = {}, S = [], A = 3 === o ? "get" : 4 === o || d ? "set" : "value"; f ? (p || d ? w = { get: _setFunctionName(function () { return g(this); }, n, "get"), set: function set(e) { t[4](this, e); } } : w[A] = g, p || _setFunctionName(w[A], n, 2 === o ? "" : A)) : p || (w = Object.getOwnPropertyDescriptor(e, n)); } for (var P = e, j = v.length - 1; j >= 0; j -= r ? 2 : 1) { var D = v[j], E = r ? v[j - 1] : void 0, I = {}, O = { kind: ["field", "accessor", "method", "getter", "setter", "class"][o], name: n, metadata: a, addInitializer: function (e, t) { if (e.v) throw Error("attempted to call addInitializer after decoration was finished"); s(t, "An initializer", "be", !0), c.push(t); }.bind(null, I) }; try { if (b) (y = s(D.call(E, P, O), "class decorators", "return")) && (P = y);else { var k, F; O["static"] = l, O["private"] = f, f ? 2 === o ? k = function k(e) { return m(e), w.value; } : (o < 4 && (k = i(w, "get", m)), 3 !== o && (F = i(w, "set", m))) : (k = function k(e) { return e[n]; }, (o < 2 || 4 === o) && (F = function F(e, t) { e[n] = t; })); var N = O.access = { has: f ? h.bind() : function (e) { return n in e; } }; if (k && (N.get = k), F && (N.set = F), P = D.call(E, d ? { get: w.get, set: w.set } : w[A], O), d) { if ("object" == _typeof(P) && P) (y = s(P.get, "accessor.get")) && (w.get = y), (y = s(P.set, "accessor.set")) && (w.set = y), (y = s(P.init, "accessor.init")) && S.push(y);else if (void 0 !== P) throw new TypeError("accessor decorators must return an object with get, set, or init properties or void 0"); } else s(P, (p ? "field" : "method") + " decorators", "return") && (p ? S.push(P) : w[A] = P); } } finally { I.v = !0; } } return (p || d) && u.push(function (e, t) { for (var r = S.length - 1; r >= 0; r--) t = S[r].call(e, t); return t; }), p || b || (f ? d ? u.push(i(w, "get"), i(w, "set")) : u.push(2 === o ? w[A] : i.call.bind(w[A])) : Object.defineProperty(e, n, w)), P; } function u(e, t) { return Object.defineProperty(e, Symbol.metadata || Symbol["for"]("Symbol.metadata"), { configurable: !0, enumerable: !0, value: t }); } if (arguments.length >= 6) var l = a[Symbol.metadata || Symbol["for"]("Symbol.metadata")]; var f = Object.create(null == l ? null : l), p = function (e, t, r, n) { var o, a, i = [], s = function s(t) { return _checkInRHS(t) === e; }, u = new Map(); function l(e) { e && i.push(c.bind(null, e)); } for (var f = 0; f < t.length; f++) { var p = t[f]; if (Array.isArray(p)) { var d = p[1], h = p[2], m = p.length > 3, y = 16 & d, v = !!(8 & d), g = 0 == (d &= 7), b = h + "/" + v; if (!g && !m) { var w = u.get(b); if (!0 === w || 3 === w && 4 !== d || 4 === w && 3 !== d) throw Error("Attempted to decorate a public method/accessor that has the same name as a previously decorated public method/accessor. This is not currently supported by the decorators plugin. Property name was: " + h); u.set(b, !(d > 2) || d); } applyDec(v ? e : e.prototype, p, y, m ? "#" + h : _toPropertyKey(h), d, n, v ? a = a || [] : o = o || [], i, v, m, g, 1 === d, v && m ? s : r); } } return l(o), l(a), i; }(e, t, o, f); return r.length || u(e, f), { e: p, get c() { var t = []; return r.length && [u(applyDec(e, [r], n, e.name, 5, f, t), f), c.bind(null, t, e)]; } }; }
74
+ function _toPropertyKey(t) { var i = _toPrimitive(t, "string"); return "symbol" == _typeof(i) ? i : i + ""; }
75
+ function _toPrimitive(t, r) { if ("object" != _typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != _typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
76
+ function _setFunctionName(e, t, n) { "symbol" == _typeof(t) && (t = (t = t.description) ? "[" + t + "]" : ""); try { Object.defineProperty(e, "name", { configurable: !0, value: n ? n + " " + t : t }); } catch (e) {} return e; }
77
+ function _checkInRHS(e) { if (Object(e) !== e) throw TypeError("right-hand side of 'in' should be an object, got " + (null !== e ? _typeof(e) : "null")); return e; }
78
+ var colors = ['#EFEFEF', '#FFEC42', '#FFB545', '#E44A19', '#4A4C5F', '#A1C573', '#51BD69', '#EB47A2', '#0E0E0E', '#50E3C2', '#547AFF', '#79479F'];
79
+ var _A = /*#__PURE__*/new WeakMap();
80
+ _ref = (_resetToolbarVarsDecs = [_mobx.action, _mobx.action.bound, void 0, _decorator.trace], _redoDecs = [_mobx.action, _mobx.action.bound], _undoDecs = [_mobx.action, _mobx.action.bound], _cleanDecs = [_mobx.action, _mobx.action.bound], _setToolDecs = [_mobx.action, _mobx.action.bound], _setPenDecs = [_mobx.action, _mobx.action.bound], _setShapeDecs = [_mobx.action, _mobx.action.bound], _setStrokeColorDecs = [_mobx.action, _mobx.action.bound], _setStrokeWidthDecs = [_mobx.action, _mobx.action.bound], _clickExpansionToolDecs = [_mobx.action, _mobx.action.bound], _setToolbarPositionDecs = [_mobx.action, _mobx.action.bound], _dragToolbarDecs = [_mobx.action, _mobx.action.bound], _releaseToolbarDecs = [_mobx.action, _mobx.action.bound], _captureScreenDecs = [_mobx.action, _mobx.action.bound], _saveDraftDecs = [_mobx.action, _mobx.action.bound], _setCommonColorDecs = [_mobx.action, _mobx.action.bound], _repositionToolbarDecs = [_mobx.action, _mobx.action.bound], _getSnapshotImageDecs = [_mobx.action, _mobx.action.bound], "logger");
81
+ var AnnotationReceiverToolbarStore = exports.AnnotationReceiverToolbarStore = /*#__PURE__*/function () {
82
+ function AnnotationReceiverToolbarStore(_whiteboardControl, _roomControl, _eventProvider, _sharedAnnotationDataSource) {
83
+ var _this = this;
84
+ (0, _classCallCheck2["default"])(this, AnnotationReceiverToolbarStore);
85
+ (0, _defineProperty2["default"])(this, _ref, (_initProto(this), (0, _logger.createLogger)({
86
+ prefix: 'AnnotationReceiverToolbarStore'
87
+ })));
88
+ (0, _defineProperty2["default"])(this, "_lastStrokeWidth", 0);
89
+ (0, _defineProperty2["default"])(this, "_boardObserver", {
90
+ onRedoStateUpdated: function onRedoStateUpdated(enable) {
91
+ _this.observables.redoSteps = enable;
92
+ },
93
+ onUndoStateUpdated: function onUndoStateUpdated(enable) {
94
+ _this.observables.undoSteps = enable;
95
+ }
96
+ });
97
+ (0, _defineProperty2["default"])(this, "_whiteboardObserver", {
98
+ onConnectionStateUpdated: function onConnectionStateUpdated(state) {
99
+ if (!_this._whiteboardControl) {
100
+ return;
101
+ }
102
+ if (state === _type2.FcrConnectionState.CONNECTED) {
103
+ var _this$boardMainWindow;
104
+ _this._lastStrokeWidth = 0;
105
+ (_this$boardMainWindow = _this.boardMainWindow) === null || _this$boardMainWindow === void 0 || _this$boardMainWindow.addObserver(_this._boardObserver);
106
+ } else {
107
+ var _this$boardMainWindow2;
108
+ (_this$boardMainWindow2 = _this.boardMainWindow) === null || _this$boardMainWindow2 === void 0 || _this$boardMainWindow2.removeObserver(_this._boardObserver);
109
+ }
110
+ }
111
+ });
112
+ _classPrivateFieldInitSpec(this, _A, _init_observables(this, {
113
+ currentTool: _enums.FcrBoardToolType.CURVE,
114
+ currentShape: undefined,
115
+ currentColor: colors[2],
116
+ currentStrokeWidth: 2,
117
+ currentThemeType: (0, _libs["default"])()[0],
118
+ toolbarPosition: {
119
+ x: 0,
120
+ y: 0
121
+ },
122
+ toolbarReleased: true,
123
+ toolbarDockPosition: {
124
+ x: 0,
125
+ y: 0,
126
+ placement: 'left'
127
+ },
128
+ redoSteps: true,
129
+ undoSteps: true,
130
+ lastPen: undefined,
131
+ lastShape: undefined,
132
+ maxCountVisibleTools: 4,
133
+ layoutReady: true,
134
+ colors: colors,
135
+ commonColorIndex: 0,
136
+ background: '#fff',
137
+ commonColors: ['#FFC908', '#4262FF'],
138
+ progress: 0
139
+ }));
140
+ this._whiteboardControl = _whiteboardControl;
141
+ this._roomControl = _roomControl;
142
+ this._eventProvider = _eventProvider;
143
+ this._sharedAnnotationDataSource = _sharedAnnotationDataSource;
144
+ this._whiteboardControl.addObserver(this._whiteboardObserver);
145
+ }
146
+ return (0, _createClass2["default"])(AnnotationReceiverToolbarStore, [{
147
+ key: "observables",
148
+ get: function get() {
149
+ return _classPrivateFieldGet(_A, this);
150
+ },
151
+ set: function set(v) {
152
+ _classPrivateFieldSet(_A, this, v);
153
+ }
154
+ }, {
155
+ key: "roomInfo",
156
+ get: function get() {
157
+ return this._roomControl.getRoomInfo();
158
+ }
159
+ }, {
160
+ key: "boardMainWindow",
161
+ get: function get() {
162
+ return this._sharedAnnotationDataSource.boardMainWindow;
163
+ }
164
+ }, {
165
+ key: "resetToolbarVars",
166
+ value: function resetToolbarVars() {
167
+ if (this.boardMainWindow) {
168
+ this.setStrokeColor(colors[2]);
169
+ this.setStrokeWidth(2);
170
+ this.setPen(_type.FcrBoardShape.Curve);
171
+ } else {
172
+ this.logger.error('cannot reset toolbar, boardMainWindow is undefined');
173
+ }
174
+ }
175
+ }, {
176
+ key: "annotationHasStart",
177
+ get: function get() {
178
+ return this._sharedAnnotationDataSource.annotationHasStart;
179
+ }
180
+ }, {
181
+ key: "redo",
182
+ value: function redo() {
183
+ var _this$boardMainWindow3;
184
+ (_this$boardMainWindow3 = this.boardMainWindow) === null || _this$boardMainWindow3 === void 0 || _this$boardMainWindow3.redo();
185
+ }
186
+ }, {
187
+ key: "undo",
188
+ value: function undo() {
189
+ var _this$boardMainWindow4;
190
+ (_this$boardMainWindow4 = this.boardMainWindow) === null || _this$boardMainWindow4 === void 0 || _this$boardMainWindow4.undo();
191
+ }
192
+ }, {
193
+ key: "clean",
194
+ value: function clean() {
195
+ var _this$boardMainWindow5;
196
+ (_this$boardMainWindow5 = this.boardMainWindow) === null || _this$boardMainWindow5 === void 0 || _this$boardMainWindow5.clean();
197
+ }
198
+ }, {
199
+ key: "setTool",
200
+ value: function setTool(tool) {
201
+ var _this$boardMainWindow6;
202
+ this.observables.currentTool = tool;
203
+ this.observables.currentShape = undefined;
204
+ (_this$boardMainWindow6 = this.boardMainWindow) === null || _this$boardMainWindow6 === void 0 || _this$boardMainWindow6.setToolType(tool);
205
+ }
206
+ }, {
207
+ key: "setPen",
208
+ value: function setPen(shape) {
209
+ var _this$boardMainWindow7, _this$boardMainWindow8, _this$boardMainWindow9;
210
+ this.observables.currentShape = shape;
211
+ this.observables.lastPen = shape;
212
+ this.observables.currentTool = this._convertShapeToBoardToolType(shape);
213
+ (_this$boardMainWindow7 = this.boardMainWindow) === null || _this$boardMainWindow7 === void 0 || _this$boardMainWindow7.setToolType(this._convertShapeToBoardToolType(shape));
214
+ (_this$boardMainWindow8 = this.boardMainWindow) === null || _this$boardMainWindow8 === void 0 || _this$boardMainWindow8.setStrokeWidth(this.observables.currentStrokeWidth);
215
+ (_this$boardMainWindow9 = this.boardMainWindow) === null || _this$boardMainWindow9 === void 0 || _this$boardMainWindow9.setStrokeColor((0, _tinycolor["default"])(this.observables.currentColor).toRgb());
216
+ }
217
+ }, {
218
+ key: "setShape",
219
+ value: function setShape(shape) {
220
+ var _this$boardMainWindow0, _this$boardMainWindow1, _this$boardMainWindow10;
221
+ this.observables.currentShape = shape;
222
+ this.observables.lastShape = shape;
223
+ this.observables.currentTool = this._convertShapeToBoardToolType(shape);
224
+ (_this$boardMainWindow0 = this.boardMainWindow) === null || _this$boardMainWindow0 === void 0 || _this$boardMainWindow0.setToolType(this._convertShapeToBoardToolType(shape));
225
+ (_this$boardMainWindow1 = this.boardMainWindow) === null || _this$boardMainWindow1 === void 0 || _this$boardMainWindow1.setStrokeWidth(this.observables.currentStrokeWidth);
226
+ (_this$boardMainWindow10 = this.boardMainWindow) === null || _this$boardMainWindow10 === void 0 || _this$boardMainWindow10.setStrokeColor((0, _tinycolor["default"])(this.observables.currentColor).toRgb());
227
+ }
228
+ }, {
229
+ key: "setStrokeColor",
230
+ value: function setStrokeColor(color) {
231
+ var _this$boardMainWindow11;
232
+ this.observables.currentColor = color;
233
+ (_this$boardMainWindow11 = this.boardMainWindow) === null || _this$boardMainWindow11 === void 0 || _this$boardMainWindow11.setStrokeColor((0, _tinycolor["default"])(color).toRgb());
234
+ }
235
+ }, {
236
+ key: "setStrokeWidth",
237
+ value: function setStrokeWidth(strokeWidth) {
238
+ var _this$boardMainWindow12;
239
+ this.observables.currentStrokeWidth = strokeWidth;
240
+ (_this$boardMainWindow12 = this.boardMainWindow) === null || _this$boardMainWindow12 === void 0 || _this$boardMainWindow12.setStrokeWidth(strokeWidth);
241
+ }
242
+ }, {
243
+ key: "clickExpansionTool",
244
+ value: function clickExpansionTool() {}
245
+ }, {
246
+ key: "setToolbarPosition",
247
+ value: function setToolbarPosition(pos) {
248
+ this.observables.toolbarPosition = pos;
249
+ }
250
+ }, {
251
+ key: "dragToolbar",
252
+ value: function dragToolbar() {
253
+ this.observables.toolbarReleased = false;
254
+ }
255
+ }, {
256
+ key: "releaseToolbar",
257
+ value: function releaseToolbar() {
258
+ this.observables.toolbarReleased = true;
259
+ this._updateDockPlacement();
260
+ this.repositionToolbar();
261
+ }
262
+ }, {
263
+ key: "captureScreen",
264
+ value: function captureScreen() {
265
+ var hideWindow = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
266
+ window.runtime.captureScreen({
267
+ hideWindow: hideWindow
268
+ });
269
+ }
270
+ }, {
271
+ key: "saveDraft",
272
+ value: function saveDraft() {
273
+ this._getSnapshotImage();
274
+ }
275
+ }, {
276
+ key: "setCommonColor",
277
+ value: function setCommonColor(color) {
278
+ if (this.observables.commonColors.length < 2) this.observables.commonColors.push(color);
279
+ if (this.observables.commonColors.length === 2) {
280
+ this.observables.commonColors = [color, this.observables.commonColors[0]];
281
+ }
282
+ }
283
+ }, {
284
+ key: "repositionToolbar",
285
+ value: function repositionToolbar() {
286
+ var toolbarDom = document.querySelector(".".concat(_utils.toolbarClassName));
287
+ var containerDom = document.querySelector(".".concat(_utils.windowClassName));
288
+ if (containerDom && toolbarDom) {
289
+ setTimeout(this._updateMaxVisibleTools);
290
+ // wait until the UI rerenders, then actual dimensions can be obtained
291
+ setTimeout(this._updateDockPosition);
292
+ }
293
+ }
294
+ }, {
295
+ key: "release",
296
+ value: function release() {
297
+ var _this$boardMainWindow13;
298
+ (_this$boardMainWindow13 = this.boardMainWindow) === null || _this$boardMainWindow13 === void 0 || _this$boardMainWindow13.removeObserver(this._boardObserver);
299
+ this._whiteboardControl.removeObserver(this._whiteboardObserver);
300
+ }
301
+ }, {
302
+ key: "_updateDockPlacement",
303
+ value: function _updateDockPlacement() {
304
+ var _this2 = this;
305
+ var toolbarDom = document.querySelector(".".concat(_utils.toolbarClassName));
306
+ var containerDom = document.querySelector(".".concat(_utils.windowClassName));
307
+ if (containerDom && toolbarDom) {
308
+ var containerClientRect = containerDom.getBoundingClientRect();
309
+ var toolbarClientRect = toolbarDom.getBoundingClientRect();
310
+ var toolbarCenterPos = toolbarClientRect.left - containerClientRect.left + toolbarClientRect.width / 2;
311
+ (0, _mobx.runInAction)(function () {
312
+ if (toolbarCenterPos > containerClientRect.width / 2) {
313
+ // right
314
+ _this2.observables.toolbarDockPosition.placement = 'right';
315
+ } else {
316
+ // left
317
+ _this2.observables.toolbarDockPosition.placement = 'left';
318
+ }
319
+ });
320
+ }
321
+ }
322
+ }, {
323
+ key: "_updateDockPosition",
324
+ value: function _updateDockPosition() {
325
+ var _this3 = this;
326
+ var toolbarDom = document.querySelector(".".concat(_utils.toolbarClassName));
327
+ var containerDom = document.querySelector(".".concat(_utils.windowClassName));
328
+ if (containerDom && toolbarDom) {
329
+ var containerClientRect = containerDom.getBoundingClientRect();
330
+ var toolbarClientRect = toolbarDom.getBoundingClientRect();
331
+ var toolbarOffsetTop = 4;
332
+ (0, _mobx.runInAction)(function () {
333
+ if (_this3.observables.toolbarDockPosition.placement === 'right') {
334
+ // right
335
+ _this3.observables.toolbarDockPosition = {
336
+ x: containerClientRect.width - toolbarClientRect.width,
337
+ y: toolbarOffsetTop,
338
+ placement: 'right'
339
+ };
340
+ } else {
341
+ // left
342
+ _this3.observables.toolbarDockPosition = {
343
+ x: 0,
344
+ y: toolbarOffsetTop,
345
+ placement: 'left'
346
+ };
347
+ }
348
+ });
349
+ }
350
+ }
351
+ }, {
352
+ key: "_updateMaxVisibleTools",
353
+ value: function _updateMaxVisibleTools() {
354
+ var _this4 = this;
355
+ var containerDom = document.querySelector(".".concat(_utils.windowClassName));
356
+ if (containerDom) {
357
+ var containerClientRect = containerDom.getBoundingClientRect();
358
+ var placement = this.observables.toolbarDockPosition.placement;
359
+ (0, _mobx.runInAction)(function () {
360
+ if (placement === 'right') {
361
+ var availableHeight = containerClientRect.height - _utils.verticalPadding - _utils.defaultToolsRetain - _utils.sceneNavHeight;
362
+ _this4.observables.maxCountVisibleTools = Math.floor(availableHeight / _utils.heightPerTool);
363
+ if (_this4.observables.maxCountVisibleTools >= 9) {
364
+ var visibleTools = _this4.observables.maxCountVisibleTools;
365
+ _this4.observables.maxCountVisibleTools += Math.floor((availableHeight - visibleTools * _utils.heightPerTool) / _utils.heightPerColor);
366
+ }
367
+ } else {
368
+ var _availableHeight = containerClientRect.height - _utils.verticalPadding - _utils.defaultToolsRetain - _utils.sceneNavHeight;
369
+ _this4.observables.maxCountVisibleTools = Math.floor(_availableHeight / _utils.heightPerTool);
370
+ if (_this4.observables.maxCountVisibleTools >= 9) {
371
+ var _visibleTools = _this4.observables.maxCountVisibleTools;
372
+ _this4.observables.maxCountVisibleTools += Math.floor((_availableHeight - _visibleTools * _utils.heightPerTool) / _utils.heightPerColor);
373
+ }
374
+ }
375
+ });
376
+ }
377
+ }
378
+ }, {
379
+ key: "_getSnapshotImage",
380
+ value: function () {
381
+ var _getSnapshotImage2 = (0, _asyncToGenerator2["default"])(/*#__PURE__*/_regenerator["default"].mark(function _callee() {
382
+ var _this5 = this;
383
+ var mainWindow, progress, imageData;
384
+ return _regenerator["default"].wrap(function (_context) {
385
+ while (1) switch (_context.prev = _context.next) {
386
+ case 0:
387
+ this.observables.progress = 0;
388
+ mainWindow = this.boardMainWindow;
389
+ if (!mainWindow) {
390
+ _context.next = 2;
391
+ break;
392
+ }
393
+ progress = setInterval(function () {
394
+ if (_this5.observables.progress < 100) {
395
+ _this5.observables.progress += 1;
396
+ } else {
397
+ clearInterval(progress);
398
+ }
399
+ }, 4);
400
+ _context.next = 1;
401
+ return mainWindow.getSnapshotImage();
402
+ case 1:
403
+ imageData = _context.sent;
404
+ (0, _mobx.runInAction)(function () {
405
+ setTimeout(function () {
406
+ var _this5$roomInfo;
407
+ _this5.observables.progress = 100;
408
+ clearInterval(progress);
409
+ var fileName = "".concat((_this5$roomInfo = _this5.roomInfo) === null || _this5$roomInfo === void 0 ? void 0 : _this5$roomInfo.roomName, "_").concat((0, _dayjs["default"])().format('YYYYMMDD_HHmmSSS'), ".jpg");
410
+ (0, _utils.downloadImageData)(imageData, fileName);
411
+
412
+ // this._uiEventStore?.showToast({
413
+ // type: 'info',
414
+ // message: transI18n('fmt_screenshare_whiteboard_tips_savedsuccessfully'),
415
+ // });
416
+ }, 400);
417
+ });
418
+ case 2:
419
+ case "end":
420
+ return _context.stop();
421
+ }
422
+ }, _callee, this);
423
+ }));
424
+ function _getSnapshotImage() {
425
+ return _getSnapshotImage2.apply(this, arguments);
426
+ }
427
+ return _getSnapshotImage;
428
+ }()
429
+ }, {
430
+ key: "_convertShapeToBoardToolType",
431
+ value: function _convertShapeToBoardToolType(shape) {
432
+ switch (shape) {
433
+ case _type.FcrBoardShape.Arrow:
434
+ return _enums.FcrBoardToolType.ARROW;
435
+ case _type.FcrBoardShape.Curve:
436
+ return _enums.FcrBoardToolType.CURVE;
437
+ case _type.FcrBoardShape.Ellipse:
438
+ return _enums.FcrBoardToolType.ELLIPSE;
439
+ case _type.FcrBoardShape.Pentagram:
440
+ return _enums.FcrBoardToolType.PENTAGRAM;
441
+ case _type.FcrBoardShape.Rectangle:
442
+ return _enums.FcrBoardToolType.RECTANGLE;
443
+ case _type.FcrBoardShape.Rhombus:
444
+ return _enums.FcrBoardToolType.RHOMBUS;
445
+ case _type.FcrBoardShape.Straight:
446
+ return _enums.FcrBoardToolType.STRAIGHT;
447
+ case _type.FcrBoardShape.Triangle:
448
+ return _enums.FcrBoardToolType.TRIANGLE;
449
+ default:
450
+ return _enums.FcrBoardToolType.NONE;
451
+ }
452
+ }
453
+ }]);
454
+ }();
455
+ _AnnotationReceiverToolbarStore = AnnotationReceiverToolbarStore;
456
+ var _applyDecs$e = (0, _slicedToArray2["default"])(_applyDecs(_AnnotationReceiverToolbarStore, [[_mobx.observable, 1, "observables"], [_resetToolbarVarsDecs, 18, "resetToolbarVars"], [_redoDecs, 18, "redo"], [_undoDecs, 18, "undo"], [_cleanDecs, 18, "clean"], [_setToolDecs, 18, "setTool"], [_setPenDecs, 18, "setPen"], [_setShapeDecs, 18, "setShape"], [_setStrokeColorDecs, 18, "setStrokeColor"], [_setStrokeWidthDecs, 18, "setStrokeWidth"], [_clickExpansionToolDecs, 18, "clickExpansionTool"], [_setToolbarPositionDecs, 18, "setToolbarPosition"], [_dragToolbarDecs, 18, "dragToolbar"], [_releaseToolbarDecs, 18, "releaseToolbar"], [_captureScreenDecs, 18, "captureScreen"], [_saveDraftDecs, 18, "saveDraft"], [_setCommonColorDecs, 18, "setCommonColor"], [_repositionToolbarDecs, 18, "repositionToolbar"], [_decorator.bound, 2, "release"], [_decorator.bound, 2, "_updateDockPlacement"], [_decorator.bound, 2, "_updateDockPosition"], [_decorator.bound, 2, "_updateMaxVisibleTools"], [_getSnapshotImageDecs, 18, "_getSnapshotImage"]], []).e, 2);
457
+ _init_observables = _applyDecs$e[0];
458
+ _initProto = _applyDecs$e[1];
459
+ var AnnotationReceiverToolbarContext = exports.AnnotationReceiverToolbarContext = /*#__PURE__*/(0, _react.createContext)({});
@@ -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
+ }