@datalayer/lexical-loro 0.2.4 → 0.2.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (399) hide show
  1. package/lib/App.d.ts +2 -0
  2. package/lib/App.js +141 -0
  3. package/lib/Editor.d.ts +2 -0
  4. package/lib/Editor.js +115 -0
  5. package/lib/Settings.d.ts +2 -0
  6. package/lib/Settings.js +57 -0
  7. package/lib/appSettings.d.ts +36 -0
  8. package/lib/appSettings.js +48 -0
  9. package/lib/collab/loro/Bindings.d.ts +41 -0
  10. package/lib/collab/loro/Bindings.js +99 -0
  11. package/lib/collab/loro/Debug.d.ts +33 -0
  12. package/lib/collab/loro/Debug.js +452 -0
  13. package/lib/collab/loro/LexicalCollaborationContext.d.ts +19 -0
  14. package/lib/collab/loro/LexicalCollaborationContext.js +52 -0
  15. package/lib/collab/loro/LexicalCollaborationPlugin.d.ts +24 -0
  16. package/lib/collab/loro/LexicalCollaborationPlugin.js +83 -0
  17. package/lib/collab/loro/State.d.ts +53 -0
  18. package/lib/collab/loro/State.js +94 -0
  19. package/lib/collab/loro/components/LoroCollaborationUI.d.ts +13 -0
  20. package/lib/collab/loro/components/LoroCollaborationUI.js +9 -0
  21. package/lib/collab/loro/components/LoroCollaborators.d.ts +8 -0
  22. package/lib/collab/loro/components/LoroCollaborators.js +102 -0
  23. package/lib/collab/loro/components/index.d.ts +2 -0
  24. package/lib/collab/loro/components/index.js +6 -0
  25. package/lib/collab/loro/index.d.ts +6 -0
  26. package/lib/collab/loro/index.js +10 -0
  27. package/lib/collab/loro/integrators/BaseIntegrator.d.ts +14 -0
  28. package/lib/collab/loro/integrators/BaseIntegrator.js +5 -0
  29. package/lib/collab/loro/integrators/CounterIntegrator.d.ts +23 -0
  30. package/lib/collab/loro/integrators/CounterIntegrator.js +44 -0
  31. package/lib/collab/loro/integrators/ListIntegrator.d.ts +23 -0
  32. package/lib/collab/loro/integrators/ListIntegrator.js +53 -0
  33. package/lib/collab/loro/integrators/MapIntegrator.d.ts +24 -0
  34. package/lib/collab/loro/integrators/MapIntegrator.js +235 -0
  35. package/lib/collab/loro/integrators/TextIntegrator.d.ts +25 -0
  36. package/lib/collab/loro/integrators/TextIntegrator.js +55 -0
  37. package/lib/collab/loro/integrators/TreeIntegrator.d.ts +36 -0
  38. package/lib/collab/loro/integrators/TreeIntegrator.js +251 -0
  39. package/lib/collab/loro/nodes/NodeFactory.d.ts +15 -0
  40. package/lib/collab/loro/nodes/NodeFactory.js +101 -0
  41. package/lib/collab/loro/nodes/NodesMapper.d.ts +120 -0
  42. package/lib/collab/loro/nodes/NodesMapper.js +277 -0
  43. package/lib/collab/loro/propagators/DecoratorNodePropagator.d.ts +60 -0
  44. package/lib/collab/loro/propagators/DecoratorNodePropagator.js +306 -0
  45. package/lib/collab/loro/propagators/ElementNodePropagator.d.ts +62 -0
  46. package/lib/collab/loro/propagators/ElementNodePropagator.js +326 -0
  47. package/lib/collab/loro/propagators/LineBreakNodePropagator.d.ts +57 -0
  48. package/lib/collab/loro/propagators/LineBreakNodePropagator.js +200 -0
  49. package/lib/collab/loro/propagators/RootNodePropagator.d.ts +55 -0
  50. package/lib/collab/loro/propagators/RootNodePropagator.js +174 -0
  51. package/lib/collab/loro/propagators/TextNodePropagator.d.ts +60 -0
  52. package/lib/collab/loro/propagators/TextNodePropagator.js +440 -0
  53. package/lib/collab/loro/propagators/index.d.ts +49 -0
  54. package/lib/collab/loro/propagators/index.js +30 -0
  55. package/lib/collab/loro/provider/websocket.d.ts +116 -0
  56. package/lib/collab/loro/provider/websocket.js +911 -0
  57. package/lib/collab/loro/servers/index.d.ts +0 -0
  58. package/lib/collab/loro/servers/index.js +4 -0
  59. package/lib/collab/loro/servers/ws/callback.d.ts +5 -0
  60. package/lib/collab/loro/servers/ws/callback.js +89 -0
  61. package/lib/collab/loro/servers/ws/server.d.ts +2 -0
  62. package/lib/collab/loro/servers/ws/server.js +29 -0
  63. package/lib/collab/loro/servers/ws/utils.d.ts +40 -0
  64. package/lib/collab/loro/servers/ws/utils.js +517 -0
  65. package/lib/collab/loro/sync/SyncCursors.d.ts +32 -0
  66. package/lib/collab/loro/sync/SyncCursors.js +475 -0
  67. package/lib/collab/loro/sync/SyncLexicalToLoro.d.ts +4 -0
  68. package/lib/collab/loro/sync/SyncLexicalToLoro.js +113 -0
  69. package/lib/collab/loro/sync/SyncLoroToLexical.d.ts +5 -0
  70. package/lib/collab/loro/sync/SyncLoroToLexical.js +100 -0
  71. package/lib/collab/loro/types/LexicalNodeData.d.ts +32 -0
  72. package/lib/collab/loro/types/LexicalNodeData.js +75 -0
  73. package/lib/collab/loro/useCollaboration.d.ts +12 -0
  74. package/lib/collab/loro/useCollaboration.js +260 -0
  75. package/lib/collab/loro/utils/InitialContent.d.ts +64 -0
  76. package/lib/collab/loro/utils/InitialContent.js +113 -0
  77. package/lib/collab/loro/utils/LexicalToLoro.d.ts +18 -0
  78. package/lib/collab/loro/utils/LexicalToLoro.js +100 -0
  79. package/lib/collab/loro/utils/Utils.d.ts +44 -0
  80. package/lib/collab/loro/utils/Utils.js +157 -0
  81. package/lib/collab/loro/wsProvider.d.ts +8 -0
  82. package/lib/collab/loro/wsProvider.js +35 -0
  83. package/lib/collab/utils/invariant.d.ts +1 -0
  84. package/lib/collab/utils/invariant.js +15 -0
  85. package/lib/collab/utils/simpleDiffWithCursor.d.ts +5 -0
  86. package/lib/collab/utils/simpleDiffWithCursor.js +35 -0
  87. package/lib/collab/yjs/Bindings.d.ts +23 -0
  88. package/lib/collab/yjs/Bindings.js +26 -0
  89. package/lib/collab/yjs/Debug.d.ts +23 -0
  90. package/lib/collab/yjs/Debug.js +213 -0
  91. package/lib/collab/yjs/LexicalCollaborationContext.d.ts +10 -0
  92. package/lib/collab/yjs/LexicalCollaborationContext.js +37 -0
  93. package/lib/collab/yjs/LexicalCollaborationPlugin.d.ts +21 -0
  94. package/lib/collab/yjs/LexicalCollaborationPlugin.js +63 -0
  95. package/lib/collab/yjs/State.d.ts +51 -0
  96. package/lib/collab/yjs/State.js +35 -0
  97. package/lib/collab/yjs/nodes/AnyCollabNode.d.ts +5 -0
  98. package/lib/collab/yjs/nodes/AnyCollabNode.js +1 -0
  99. package/lib/collab/yjs/nodes/CollabDecoratorNode.d.ts +22 -0
  100. package/lib/collab/yjs/nodes/CollabDecoratorNode.js +64 -0
  101. package/lib/collab/yjs/nodes/CollabElementNode.d.ts +40 -0
  102. package/lib/collab/yjs/nodes/CollabElementNode.js +462 -0
  103. package/lib/collab/yjs/nodes/CollabLineBreakNode.d.ts +19 -0
  104. package/lib/collab/yjs/nodes/CollabLineBreakNode.js +44 -0
  105. package/lib/collab/yjs/nodes/CollabTextNode.d.ts +25 -0
  106. package/lib/collab/yjs/nodes/CollabTextNode.js +103 -0
  107. package/lib/collab/yjs/provider/websocket.d.ts +88 -0
  108. package/lib/collab/yjs/provider/websocket.js +415 -0
  109. package/lib/collab/yjs/servers/index.d.ts +0 -0
  110. package/lib/collab/yjs/servers/index.js +0 -0
  111. package/lib/collab/yjs/servers/ws/callback.d.ts +5 -0
  112. package/lib/collab/yjs/servers/ws/callback.js +72 -0
  113. package/lib/collab/yjs/servers/ws/server.d.ts +2 -0
  114. package/lib/collab/yjs/servers/ws/server.js +25 -0
  115. package/lib/collab/yjs/servers/ws/utils.d.ts +49 -0
  116. package/lib/collab/yjs/servers/ws/utils.js +284 -0
  117. package/lib/collab/yjs/sync/SyncCursors.d.ts +39 -0
  118. package/lib/collab/yjs/sync/SyncCursors.js +351 -0
  119. package/lib/collab/yjs/sync/SyncEditorStates.d.ts +10 -0
  120. package/lib/collab/yjs/sync/SyncEditorStates.js +200 -0
  121. package/lib/collab/yjs/useCollaboration.d.ts +12 -0
  122. package/lib/collab/yjs/useCollaboration.js +255 -0
  123. package/lib/collab/yjs/utils/Utils.d.ts +25 -0
  124. package/lib/collab/yjs/utils/Utils.js +402 -0
  125. package/lib/collab/yjs/wsProvider.d.ts +3 -0
  126. package/lib/collab/yjs/wsProvider.js +21 -0
  127. package/lib/commenting/index.d.ts +41 -0
  128. package/lib/commenting/index.js +328 -0
  129. package/lib/context/FlashMessageContext.d.ts +7 -0
  130. package/lib/context/FlashMessageContext.js +24 -0
  131. package/lib/context/SettingsContext.d.ts +12 -0
  132. package/lib/context/SettingsContext.js +38 -0
  133. package/lib/context/SharedHistoryContext.d.ts +11 -0
  134. package/lib/context/SharedHistoryContext.js +11 -0
  135. package/lib/context/ToolbarContext.d.ts +65 -0
  136. package/lib/context/ToolbarContext.js +84 -0
  137. package/lib/demo.d.ts +12 -0
  138. package/lib/demo.js +45 -0
  139. package/lib/hooks/useFlashMessage.d.ts +2 -0
  140. package/lib/hooks/useFlashMessage.js +8 -0
  141. package/lib/hooks/useModal.d.ts +5 -0
  142. package/lib/hooks/useModal.js +26 -0
  143. package/lib/hooks/useReport.d.ts +1 -0
  144. package/lib/hooks/useReport.js +50 -0
  145. package/lib/index.d.ts +1 -0
  146. package/lib/index.js +5 -0
  147. package/lib/nodes/AutocompleteNode.d.ts +27 -0
  148. package/lib/nodes/AutocompleteNode.js +60 -0
  149. package/lib/nodes/CounterComponent.d.ts +6 -0
  150. package/lib/nodes/CounterComponent.js +137 -0
  151. package/lib/nodes/CounterNode.d.ts +23 -0
  152. package/lib/nodes/CounterNode.js +47 -0
  153. package/lib/nodes/DateTimeNode/DateTimeComponent.d.ts +8 -0
  154. package/lib/nodes/DateTimeNode/DateTimeComponent.js +119 -0
  155. package/lib/nodes/DateTimeNode/DateTimeNode.d.ts +27 -0
  156. package/lib/nodes/DateTimeNode/DateTimeNode.js +82 -0
  157. package/lib/nodes/EmojiNode.d.ts +18 -0
  158. package/lib/nodes/EmojiNode.js +54 -0
  159. package/lib/nodes/EquationComponent.d.ts +9 -0
  160. package/lib/nodes/EquationComponent.js +75 -0
  161. package/lib/nodes/EquationNode.d.ts +26 -0
  162. package/lib/nodes/EquationNode.js +109 -0
  163. package/lib/nodes/ExcalidrawNode/ExcalidrawComponent.d.ts +8 -0
  164. package/lib/nodes/ExcalidrawNode/ExcalidrawComponent.js +110 -0
  165. package/lib/nodes/ExcalidrawNode/ExcalidrawImage.d.ts +50 -0
  166. package/lib/nodes/ExcalidrawNode/ExcalidrawImage.js +55 -0
  167. package/lib/nodes/ExcalidrawNode/index.d.ts +32 -0
  168. package/lib/nodes/ExcalidrawNode/index.js +117 -0
  169. package/lib/nodes/FigmaNode.d.ts +20 -0
  170. package/lib/nodes/FigmaNode.js +52 -0
  171. package/lib/nodes/ImageComponent.d.ts +16 -0
  172. package/lib/nodes/ImageComponent.js +272 -0
  173. package/lib/nodes/ImageNode.d.ts +50 -0
  174. package/lib/nodes/ImageNode.js +151 -0
  175. package/lib/nodes/InlineImageNode/InlineImageComponent.d.ts +26 -0
  176. package/lib/nodes/InlineImageNode/InlineImageComponent.js +161 -0
  177. package/lib/nodes/InlineImageNode/InlineImageNode.d.ts +59 -0
  178. package/lib/nodes/InlineImageNode/InlineImageNode.js +162 -0
  179. package/lib/nodes/KeywordNode.d.ts +14 -0
  180. package/lib/nodes/KeywordNode.js +37 -0
  181. package/lib/nodes/LayoutContainerNode.d.ts +24 -0
  182. package/lib/nodes/LayoutContainerNode.js +95 -0
  183. package/lib/nodes/LayoutItemNode.d.ts +16 -0
  184. package/lib/nodes/LayoutItemNode.js +69 -0
  185. package/lib/nodes/MentionNode.d.ts +20 -0
  186. package/lib/nodes/MentionNode.js +85 -0
  187. package/lib/nodes/PageBreakNode/index.d.ts +17 -0
  188. package/lib/nodes/PageBreakNode/index.js +83 -0
  189. package/lib/nodes/PlaygroundNodes.d.ts +3 -0
  190. package/lib/nodes/PlaygroundNodes.js +75 -0
  191. package/lib/nodes/PollComponent.d.ts +9 -0
  192. package/lib/nodes/PollComponent.js +85 -0
  193. package/lib/nodes/PollNode.d.ts +43 -0
  194. package/lib/nodes/PollNode.js +153 -0
  195. package/lib/nodes/SpecialTextNode.d.ts +24 -0
  196. package/lib/nodes/SpecialTextNode.js +54 -0
  197. package/lib/nodes/StickyComponent.d.ts +10 -0
  198. package/lib/nodes/StickyComponent.js +162 -0
  199. package/lib/nodes/StickyNode.d.ts +31 -0
  200. package/lib/nodes/StickyNode.js +76 -0
  201. package/lib/nodes/TweetNode.d.ts +21 -0
  202. package/lib/nodes/TweetNode.js +119 -0
  203. package/lib/nodes/YouTubeNode.d.ts +22 -0
  204. package/lib/nodes/YouTubeNode.js +84 -0
  205. package/lib/plugins/ActionsPlugin/index.d.ts +5 -0
  206. package/lib/plugins/ActionsPlugin/index.js +168 -0
  207. package/lib/plugins/AutoEmbedPlugin/index.d.ts +19 -0
  208. package/lib/plugins/AutoEmbedPlugin/index.js +158 -0
  209. package/lib/plugins/AutoLinkPlugin/index.d.ts +2 -0
  210. package/lib/plugins/AutoLinkPlugin/index.js +15 -0
  211. package/lib/plugins/AutocompletePlugin/index.d.ts +10 -0
  212. package/lib/plugins/AutocompletePlugin/index.js +2477 -0
  213. package/lib/plugins/CodeActionMenuPlugin/components/CopyButton/index.d.ts +7 -0
  214. package/lib/plugins/CodeActionMenuPlugin/components/CopyButton/index.js +46 -0
  215. package/lib/plugins/CodeActionMenuPlugin/components/PrettierButton/index.d.ts +17 -0
  216. package/lib/plugins/CodeActionMenuPlugin/components/PrettierButton/index.js +115 -0
  217. package/lib/plugins/CodeActionMenuPlugin/index.d.ts +5 -0
  218. package/lib/plugins/CodeActionMenuPlugin/index.js +104 -0
  219. package/lib/plugins/CodeActionMenuPlugin/utils.d.ts +1 -0
  220. package/lib/plugins/CodeActionMenuPlugin/utils.js +22 -0
  221. package/lib/plugins/CodeHighlightPrismPlugin/index.d.ts +2 -0
  222. package/lib/plugins/CodeHighlightPrismPlugin/index.js +14 -0
  223. package/lib/plugins/CodeHighlightShikiPlugin/index.d.ts +2 -0
  224. package/lib/plugins/CodeHighlightShikiPlugin/index.js +14 -0
  225. package/lib/plugins/CollapsiblePlugin/CollapsibleContainerNode.d.ts +25 -0
  226. package/lib/plugins/CollapsiblePlugin/CollapsibleContainerNode.js +135 -0
  227. package/lib/plugins/CollapsiblePlugin/CollapsibleContentNode.d.ts +16 -0
  228. package/lib/plugins/CollapsiblePlugin/CollapsibleContentNode.js +83 -0
  229. package/lib/plugins/CollapsiblePlugin/CollapsibleTitleNode.d.ts +16 -0
  230. package/lib/plugins/CollapsiblePlugin/CollapsibleTitleNode.js +85 -0
  231. package/lib/plugins/CollapsiblePlugin/CollapsibleUtils.d.ts +2 -0
  232. package/lib/plugins/CollapsiblePlugin/CollapsibleUtils.js +12 -0
  233. package/lib/plugins/CollapsiblePlugin/index.d.ts +3 -0
  234. package/lib/plugins/CollapsiblePlugin/index.js +132 -0
  235. package/lib/plugins/CommentPlugin/index.d.ts +9 -0
  236. package/lib/plugins/CommentPlugin/index.js +460 -0
  237. package/lib/plugins/ComponentPickerPlugin/index.d.ts +2 -0
  238. package/lib/plugins/ComponentPickerPlugin/index.js +276 -0
  239. package/lib/plugins/ContextMenuPlugin/index.d.ts +2 -0
  240. package/lib/plugins/ContextMenuPlugin/index.js +112 -0
  241. package/lib/plugins/CounterPlugin/index.d.ts +3 -0
  242. package/lib/plugins/CounterPlugin/index.js +24 -0
  243. package/lib/plugins/DateTimePlugin/index.d.ts +8 -0
  244. package/lib/plugins/DateTimePlugin/index.js +28 -0
  245. package/lib/plugins/DebugPlugin/index.d.ts +3 -0
  246. package/lib/plugins/DebugPlugin/index.js +219 -0
  247. package/lib/plugins/DocsPlugin/index.d.ts +2 -0
  248. package/lib/plugins/DocsPlugin/index.js +4 -0
  249. package/lib/plugins/DragDropPastePlugin/index.d.ts +1 -0
  250. package/lib/plugins/DragDropPastePlugin/index.js +37 -0
  251. package/lib/plugins/DraggableBlockPlugin/index.d.ts +12 -0
  252. package/lib/plugins/DraggableBlockPlugin/index.js +36 -0
  253. package/lib/plugins/EmojiPickerPlugin/index.d.ts +1 -0
  254. package/lib/plugins/EmojiPickerPlugin/index.js +84 -0
  255. package/lib/plugins/EmojisPlugin/index.d.ts +2 -0
  256. package/lib/plugins/EmojisPlugin/index.js +56 -0
  257. package/lib/plugins/EquationsPlugin/index.d.ts +14 -0
  258. package/lib/plugins/EquationsPlugin/index.js +34 -0
  259. package/lib/plugins/ExcalidrawPlugin/index.d.ts +5 -0
  260. package/lib/plugins/ExcalidrawPlugin/index.js +44 -0
  261. package/lib/plugins/FigmaPlugin/index.d.ts +4 -0
  262. package/lib/plugins/FigmaPlugin/index.js +24 -0
  263. package/lib/plugins/FloatingLinkEditorPlugin/index.d.ts +15 -0
  264. package/lib/plugins/FloatingLinkEditorPlugin/index.js +280 -0
  265. package/lib/plugins/FloatingTextFormatToolbarPlugin/index.d.ts +7 -0
  266. package/lib/plugins/FloatingTextFormatToolbarPlugin/index.js +219 -0
  267. package/lib/plugins/ImagesPlugin/index.d.ts +24 -0
  268. package/lib/plugins/ImagesPlugin/index.js +195 -0
  269. package/lib/plugins/InlineImagePlugin/index.d.ts +17 -0
  270. package/lib/plugins/InlineImagePlugin/index.js +180 -0
  271. package/lib/plugins/KeywordsPlugin/index.d.ts +2 -0
  272. package/lib/plugins/KeywordsPlugin/index.js +35 -0
  273. package/lib/plugins/LayoutPlugin/InsertLayoutDialog.d.ts +6 -0
  274. package/lib/plugins/LayoutPlugin/InsertLayoutDialog.js +21 -0
  275. package/lib/plugins/LayoutPlugin/LayoutPlugin.d.ts +7 -0
  276. package/lib/plugins/LayoutPlugin/LayoutPlugin.js +135 -0
  277. package/lib/plugins/LinkPlugin/index.d.ts +6 -0
  278. package/lib/plugins/LinkPlugin/index.js +11 -0
  279. package/lib/plugins/MarkdownShortcutPlugin/index.d.ts +2 -0
  280. package/lib/plugins/MarkdownShortcutPlugin/index.js +6 -0
  281. package/lib/plugins/MarkdownTransformers/index.d.ts +8 -0
  282. package/lib/plugins/MarkdownTransformers/index.js +238 -0
  283. package/lib/plugins/MaxLengthPlugin/index.d.ts +3 -0
  284. package/lib/plugins/MaxLengthPlugin/index.js +41 -0
  285. package/lib/plugins/MentionsPlugin/index.d.ts +2 -0
  286. package/lib/plugins/MentionsPlugin/index.js +564 -0
  287. package/lib/plugins/PageBreakPlugin/index.d.ts +4 -0
  288. package/lib/plugins/PageBreakPlugin/index.js +31 -0
  289. package/lib/plugins/PasteLogPlugin/index.d.ts +2 -0
  290. package/lib/plugins/PasteLogPlugin/index.js +27 -0
  291. package/lib/plugins/PollPlugin/index.d.ts +8 -0
  292. package/lib/plugins/PollPlugin/index.js +38 -0
  293. package/lib/plugins/ShortcutsPlugin/index.d.ts +6 -0
  294. package/lib/plugins/ShortcutsPlugin/index.js +116 -0
  295. package/lib/plugins/ShortcutsPlugin/shortcuts.d.ts +59 -0
  296. package/lib/plugins/ShortcutsPlugin/shortcuts.js +173 -0
  297. package/lib/plugins/SpecialTextPlugin/index.d.ts +2 -0
  298. package/lib/plugins/SpecialTextPlugin/index.js +50 -0
  299. package/lib/plugins/SpeechToTextPlugin/index.d.ts +5 -0
  300. package/lib/plugins/SpeechToTextPlugin/index.js +86 -0
  301. package/lib/plugins/StickyPlugin/index.d.ts +2 -0
  302. package/lib/plugins/StickyPlugin/index.js +16 -0
  303. package/lib/plugins/TabFocusPlugin/index.d.ts +1 -0
  304. package/lib/plugins/TabFocusPlugin/index.js +38 -0
  305. package/lib/plugins/TableActionMenuPlugin/index.d.ts +5 -0
  306. package/lib/plugins/TableActionMenuPlugin/index.js +492 -0
  307. package/lib/plugins/TableCellResizer/index.d.ts +3 -0
  308. package/lib/plugins/TableCellResizer/index.js +297 -0
  309. package/lib/plugins/TableHoverActionsPlugin/index.d.ts +4 -0
  310. package/lib/plugins/TableHoverActionsPlugin/index.js +188 -0
  311. package/lib/plugins/TableOfContentsPlugin/index.d.ts +2 -0
  312. package/lib/plugins/TableOfContentsPlugin/index.js +116 -0
  313. package/lib/plugins/TablePlugin.d.ts +31 -0
  314. package/lib/plugins/TablePlugin.js +63 -0
  315. package/lib/plugins/TestRecorderPlugin/index.d.ts +3 -0
  316. package/lib/plugins/TestRecorderPlugin/index.js +346 -0
  317. package/lib/plugins/ToolbarPlugin/fontSize.d.ts +9 -0
  318. package/lib/plugins/ToolbarPlugin/fontSize.js +84 -0
  319. package/lib/plugins/ToolbarPlugin/index.d.ts +9 -0
  320. package/lib/plugins/ToolbarPlugin/index.js +500 -0
  321. package/lib/plugins/ToolbarPlugin/utils.d.ts +26 -0
  322. package/lib/plugins/ToolbarPlugin/utils.js +247 -0
  323. package/lib/plugins/TreeViewPlugin/index.d.ts +2 -0
  324. package/lib/plugins/TreeViewPlugin/index.js +7 -0
  325. package/lib/plugins/TwitterPlugin/index.d.ts +4 -0
  326. package/lib/plugins/TwitterPlugin/index.js +24 -0
  327. package/lib/plugins/TypingPerfPlugin/index.d.ts +2 -0
  328. package/lib/plugins/TypingPerfPlugin/index.js +97 -0
  329. package/lib/plugins/YouTubePlugin/index.d.ts +4 -0
  330. package/lib/plugins/YouTubePlugin/index.js +24 -0
  331. package/lib/server/validation.d.ts +1 -0
  332. package/lib/server/validation.js +115 -0
  333. package/lib/setupEnv.d.ts +2 -0
  334. package/lib/setupEnv.js +29 -0
  335. package/lib/themes/CommentEditorTheme.d.ts +4 -0
  336. package/lib/themes/CommentEditorTheme.js +11 -0
  337. package/lib/themes/PlaygroundEditorTheme.d.ts +4 -0
  338. package/lib/themes/PlaygroundEditorTheme.js +124 -0
  339. package/lib/themes/StickyEditorTheme.d.ts +4 -0
  340. package/lib/themes/StickyEditorTheme.js +11 -0
  341. package/lib/tyes.dt.d.ts +12 -0
  342. package/lib/tyes.dt.js +4 -0
  343. package/lib/ui/Button.d.ts +12 -0
  344. package/lib/ui/Button.js +6 -0
  345. package/lib/ui/ColorPicker.d.ts +14 -0
  346. package/lib/ui/ColorPicker.js +219 -0
  347. package/lib/ui/ContentEditable.d.ts +9 -0
  348. package/lib/ui/ContentEditable.js +6 -0
  349. package/lib/ui/Dialog.d.ts +10 -0
  350. package/lib/ui/Dialog.js +8 -0
  351. package/lib/ui/DropDown.d.ts +18 -0
  352. package/lib/ui/DropDown.js +133 -0
  353. package/lib/ui/DropdownColorPicker.d.ts +13 -0
  354. package/lib/ui/DropdownColorPicker.js +6 -0
  355. package/lib/ui/EquationEditor.d.ts +8 -0
  356. package/lib/ui/EquationEditor.js +11 -0
  357. package/lib/ui/ExcalidrawModal.d.ts +42 -0
  358. package/lib/ui/ExcalidrawModal.js +103 -0
  359. package/lib/ui/FileInput.d.ts +10 -0
  360. package/lib/ui/FileInput.js +5 -0
  361. package/lib/ui/FlashMessage.d.ts +7 -0
  362. package/lib/ui/FlashMessage.js +6 -0
  363. package/lib/ui/ImageResizer.d.ts +17 -0
  364. package/lib/ui/ImageResizer.js +171 -0
  365. package/lib/ui/KatexEquationAlterer.d.ts +8 -0
  366. package/lib/ui/KatexEquationAlterer.js +23 -0
  367. package/lib/ui/KatexRenderer.d.ts +6 -0
  368. package/lib/ui/KatexRenderer.js +24 -0
  369. package/lib/ui/Modal.d.ts +9 -0
  370. package/lib/ui/Modal.js +48 -0
  371. package/lib/ui/Select.d.ts +8 -0
  372. package/lib/ui/Select.js +5 -0
  373. package/lib/ui/Switch.d.ts +8 -0
  374. package/lib/ui/Switch.js +6 -0
  375. package/lib/ui/TextInput.d.ts +13 -0
  376. package/lib/ui/TextInput.js +7 -0
  377. package/lib/utils/docSerialization.d.ts +3 -0
  378. package/lib/utils/docSerialization.js +60 -0
  379. package/lib/utils/emoji-list.d.ts +20 -0
  380. package/lib/utils/emoji-list.js +16609 -0
  381. package/lib/utils/getDOMRangeRect.d.ts +8 -0
  382. package/lib/utils/getDOMRangeRect.js +26 -0
  383. package/lib/utils/getSelectedNode.d.ts +2 -0
  384. package/lib/utils/getSelectedNode.js +28 -0
  385. package/lib/utils/getThemeSelector.d.ts +2 -0
  386. package/lib/utils/getThemeSelector.js +14 -0
  387. package/lib/utils/isMobileWidth.d.ts +7 -0
  388. package/lib/utils/isMobileWidth.js +11 -0
  389. package/lib/utils/joinClasses.d.ts +1 -0
  390. package/lib/utils/joinClasses.js +7 -0
  391. package/lib/utils/setFloatingElemPosition.d.ts +1 -0
  392. package/lib/utils/setFloatingElemPosition.js +59 -0
  393. package/lib/utils/setFloatingElemPositionForLinkEditor.d.ts +1 -0
  394. package/lib/utils/setFloatingElemPositionForLinkEditor.js +36 -0
  395. package/lib/utils/swipe.d.ts +4 -0
  396. package/lib/utils/swipe.js +94 -0
  397. package/lib/utils/url.d.ts +2 -0
  398. package/lib/utils/url.js +31 -0
  399. package/package.json +1 -1
@@ -0,0 +1,500 @@
1
+ import { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from "react/jsx-runtime";
2
+ import { $isCodeNode, getCodeLanguageOptions as getCodeLanguageOptionsPrism, normalizeCodeLanguage as normalizeCodeLanguagePrism, } from '@lexical/code';
3
+ import { getCodeLanguageOptions as getCodeLanguageOptionsShiki, getCodeThemeOptions as getCodeThemeOptionsShiki, normalizeCodeLanguage as normalizeCodeLanguageShiki, } from '@lexical/code-shiki';
4
+ import { $isLinkNode, TOGGLE_LINK_COMMAND } from '@lexical/link';
5
+ import { $isListNode, ListNode } from '@lexical/list';
6
+ import { INSERT_EMBED_COMMAND } from '@lexical/react/LexicalAutoEmbedPlugin';
7
+ import { INSERT_HORIZONTAL_RULE_COMMAND } from '@lexical/react/LexicalHorizontalRuleNode';
8
+ import { $isHeadingNode } from '@lexical/rich-text';
9
+ import { $getSelectionStyleValueForProperty, $isParentElementRTL, $patchStyleText, } from '@lexical/selection';
10
+ import { $isTableNode, $isTableSelection } from '@lexical/table';
11
+ import { $findMatchingParent, $getNearestNodeOfType, $isEditorIsNestedEditor, IS_APPLE, mergeRegister, } from '@lexical/utils';
12
+ import { $getNodeByKey, $getRoot, $getSelection, $isElementNode, $isNodeSelection, $isRangeSelection, $isRootOrShadowRoot, CAN_REDO_COMMAND, CAN_UNDO_COMMAND, COMMAND_PRIORITY_CRITICAL, FORMAT_ELEMENT_COMMAND, FORMAT_TEXT_COMMAND, HISTORIC_TAG, INDENT_CONTENT_COMMAND, OUTDENT_CONTENT_COMMAND, REDO_COMMAND, SELECTION_CHANGE_COMMAND, UNDO_COMMAND, } from 'lexical';
13
+ import { useCallback, useEffect, useState } from 'react';
14
+ import { useSettings } from '../../context/SettingsContext';
15
+ import { blockTypeToBlockName, useToolbarState, } from '../../context/ToolbarContext';
16
+ import useModal from '../../hooks/useModal';
17
+ import { $createStickyNode } from '../../nodes/StickyNode';
18
+ import DropDown, { DropDownItem } from '../../ui/DropDown';
19
+ import DropdownColorPicker from '../../ui/DropdownColorPicker';
20
+ import { getSelectedNode } from '../../utils/getSelectedNode';
21
+ import { sanitizeUrl } from '../../utils/url';
22
+ import { EmbedConfigs } from '../AutoEmbedPlugin';
23
+ import { INSERT_COLLAPSIBLE_COMMAND } from '../CollapsiblePlugin';
24
+ import { INSERT_COUNTER_COMMAND } from '../CounterPlugin';
25
+ import { INSERT_DATETIME_COMMAND } from '../DateTimePlugin';
26
+ import { InsertEquationDialog } from '../EquationsPlugin';
27
+ import { INSERT_EXCALIDRAW_COMMAND } from '../ExcalidrawPlugin';
28
+ import { INSERT_IMAGE_COMMAND, InsertImageDialog, } from '../ImagesPlugin';
29
+ import { InsertInlineImageDialog } from '../InlineImagePlugin';
30
+ import InsertLayoutDialog from '../LayoutPlugin/InsertLayoutDialog';
31
+ import { INSERT_PAGE_BREAK } from '../PageBreakPlugin';
32
+ import { InsertPollDialog } from '../PollPlugin';
33
+ import { SHORTCUTS } from '../ShortcutsPlugin/shortcuts';
34
+ import { InsertTableDialog } from '../TablePlugin';
35
+ import FontSize, { parseFontSizeForToolbar } from './fontSize';
36
+ import { clearFormatting, formatBulletList, formatCheckList, formatCode, formatHeading, formatNumberedList, formatParagraph, formatQuote, } from './utils';
37
+ import catTypingGif from '../../images/cat-typing.gif';
38
+ const rootTypeToRootName = {
39
+ root: 'Root',
40
+ table: 'Table',
41
+ };
42
+ const CODE_LANGUAGE_OPTIONS_PRISM = getCodeLanguageOptionsPrism().filter((option) => [
43
+ 'c',
44
+ 'clike',
45
+ 'cpp',
46
+ 'css',
47
+ 'html',
48
+ 'java',
49
+ 'js',
50
+ 'javascript',
51
+ 'markdown',
52
+ 'objc',
53
+ 'objective-c',
54
+ 'plain',
55
+ 'powershell',
56
+ 'py',
57
+ 'python',
58
+ 'rust',
59
+ 'sql',
60
+ 'swift',
61
+ 'typescript',
62
+ 'xml',
63
+ ].includes(option[0]));
64
+ const CODE_LANGUAGE_OPTIONS_SHIKI = getCodeLanguageOptionsShiki().filter((option) => [
65
+ 'c',
66
+ 'clike',
67
+ 'cpp',
68
+ 'css',
69
+ 'html',
70
+ 'java',
71
+ 'js',
72
+ 'javascript',
73
+ 'markdown',
74
+ 'objc',
75
+ 'objective-c',
76
+ 'plain',
77
+ 'powershell',
78
+ 'py',
79
+ 'python',
80
+ 'rust',
81
+ 'sql',
82
+ 'typescript',
83
+ 'xml',
84
+ ].includes(option[0]));
85
+ const CODE_THEME_OPTIONS_SHIKI = getCodeThemeOptionsShiki().filter((option) => [
86
+ 'catppuccin-latte',
87
+ 'everforest-light',
88
+ 'github-light',
89
+ 'gruvbox-light-medium',
90
+ 'kanagawa-lotus',
91
+ 'dark-plus',
92
+ 'light-plus',
93
+ 'material-theme-lighter',
94
+ 'min-light',
95
+ 'one-light',
96
+ 'rose-pine-dawn',
97
+ 'slack-ochin',
98
+ 'snazzy-light',
99
+ 'solarized-light',
100
+ 'vitesse-light',
101
+ ].includes(option[0]));
102
+ const FONT_FAMILY_OPTIONS = [
103
+ ['Arial', 'Arial'],
104
+ ['Courier New', 'Courier New'],
105
+ ['Georgia', 'Georgia'],
106
+ ['Times New Roman', 'Times New Roman'],
107
+ ['Trebuchet MS', 'Trebuchet MS'],
108
+ ['Verdana', 'Verdana'],
109
+ ];
110
+ const FONT_SIZE_OPTIONS = [
111
+ ['10px', '10px'],
112
+ ['11px', '11px'],
113
+ ['12px', '12px'],
114
+ ['13px', '13px'],
115
+ ['14px', '14px'],
116
+ ['15px', '15px'],
117
+ ['16px', '16px'],
118
+ ['17px', '17px'],
119
+ ['18px', '18px'],
120
+ ['19px', '19px'],
121
+ ['20px', '20px'],
122
+ ];
123
+ const ELEMENT_FORMAT_OPTIONS = {
124
+ center: {
125
+ icon: 'center-align',
126
+ iconRTL: 'center-align',
127
+ name: 'Center Align',
128
+ },
129
+ end: {
130
+ icon: 'right-align',
131
+ iconRTL: 'left-align',
132
+ name: 'End Align',
133
+ },
134
+ justify: {
135
+ icon: 'justify-align',
136
+ iconRTL: 'justify-align',
137
+ name: 'Justify Align',
138
+ },
139
+ left: {
140
+ icon: 'left-align',
141
+ iconRTL: 'left-align',
142
+ name: 'Left Align',
143
+ },
144
+ right: {
145
+ icon: 'right-align',
146
+ iconRTL: 'right-align',
147
+ name: 'Right Align',
148
+ },
149
+ start: {
150
+ icon: 'left-align',
151
+ iconRTL: 'right-align',
152
+ name: 'Start Align',
153
+ },
154
+ };
155
+ function dropDownActiveClass(active) {
156
+ if (active) {
157
+ return 'active dropdown-item-active';
158
+ }
159
+ else {
160
+ return '';
161
+ }
162
+ }
163
+ function BlockFormatDropDown({ editor, blockType, rootType, disabled = false, }) {
164
+ return (_jsxs(DropDown, { disabled: disabled, buttonClassName: "toolbar-item block-controls", buttonIconClassName: 'icon block-type ' + blockType, buttonLabel: blockTypeToBlockName[blockType], buttonAriaLabel: "Formatting options for text style", children: [_jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'paragraph'), onClick: () => formatParagraph(editor), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon paragraph" }), _jsx("span", { className: "text", children: "Normal" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.NORMAL })] }), _jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'h1'), onClick: () => formatHeading(editor, blockType, 'h1'), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon h1" }), _jsx("span", { className: "text", children: "Heading 1" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.HEADING1 })] }), _jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'h2'), onClick: () => formatHeading(editor, blockType, 'h2'), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon h2" }), _jsx("span", { className: "text", children: "Heading 2" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.HEADING2 })] }), _jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'h3'), onClick: () => formatHeading(editor, blockType, 'h3'), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon h3" }), _jsx("span", { className: "text", children: "Heading 3" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.HEADING3 })] }), _jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'number'), onClick: () => formatNumberedList(editor, blockType), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon numbered-list" }), _jsx("span", { className: "text", children: "Numbered List" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.NUMBERED_LIST })] }), _jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'bullet'), onClick: () => formatBulletList(editor, blockType), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon bullet-list" }), _jsx("span", { className: "text", children: "Bullet List" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.BULLET_LIST })] }), _jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'check'), onClick: () => formatCheckList(editor, blockType), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon check-list" }), _jsx("span", { className: "text", children: "Check List" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.CHECK_LIST })] }), _jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'quote'), onClick: () => formatQuote(editor, blockType), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon quote" }), _jsx("span", { className: "text", children: "Quote" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.QUOTE })] }), _jsxs(DropDownItem, { className: 'item wide ' + dropDownActiveClass(blockType === 'code'), onClick: () => formatCode(editor, blockType), children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon code" }), _jsx("span", { className: "text", children: "Code Block" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.CODE_BLOCK })] })] }));
165
+ }
166
+ function Divider() {
167
+ return _jsx("div", { className: "divider" });
168
+ }
169
+ function FontDropDown({ editor, value, style, disabled = false, }) {
170
+ const handleClick = useCallback((option) => {
171
+ editor.update(() => {
172
+ const selection = $getSelection();
173
+ if (selection !== null) {
174
+ $patchStyleText(selection, {
175
+ [style]: option,
176
+ });
177
+ }
178
+ });
179
+ }, [editor, style]);
180
+ const buttonAriaLabel = style === 'font-family'
181
+ ? 'Formatting options for font family'
182
+ : 'Formatting options for font size';
183
+ return (_jsx(DropDown, { disabled: disabled, buttonClassName: 'toolbar-item ' + style, buttonLabel: value, buttonIconClassName: style === 'font-family' ? 'icon block-type font-family' : '', buttonAriaLabel: buttonAriaLabel, children: (style === 'font-family' ? FONT_FAMILY_OPTIONS : FONT_SIZE_OPTIONS).map(([option, text]) => (_jsx(DropDownItem, { className: `item ${dropDownActiveClass(value === option)} ${style === 'font-size' ? 'fontsize-item' : ''}`, onClick: () => handleClick(option), children: _jsx("span", { className: "text", children: text }) }, option))) }));
184
+ }
185
+ function ElementFormatDropdown({ editor, value, isRTL, disabled = false, }) {
186
+ const formatOption = ELEMENT_FORMAT_OPTIONS[value || 'left'];
187
+ return (_jsxs(DropDown, { disabled: disabled, buttonLabel: formatOption.name, buttonIconClassName: `icon ${isRTL ? formatOption.iconRTL : formatOption.icon}`, buttonClassName: "toolbar-item spaced alignment", buttonAriaLabel: "Formatting options for text alignment", children: [_jsxs(DropDownItem, { onClick: () => {
188
+ editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, 'left');
189
+ }, className: "item wide", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon left-align" }), _jsx("span", { className: "text", children: "Left Align" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.LEFT_ALIGN })] }), _jsxs(DropDownItem, { onClick: () => {
190
+ editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, 'center');
191
+ }, className: "item wide", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon center-align" }), _jsx("span", { className: "text", children: "Center Align" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.CENTER_ALIGN })] }), _jsxs(DropDownItem, { onClick: () => {
192
+ editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, 'right');
193
+ }, className: "item wide", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon right-align" }), _jsx("span", { className: "text", children: "Right Align" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.RIGHT_ALIGN })] }), _jsxs(DropDownItem, { onClick: () => {
194
+ editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, 'justify');
195
+ }, className: "item wide", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon justify-align" }), _jsx("span", { className: "text", children: "Justify Align" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.JUSTIFY_ALIGN })] }), _jsxs(DropDownItem, { onClick: () => {
196
+ editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, 'start');
197
+ }, className: "item wide", children: [_jsx("i", { className: `icon ${isRTL
198
+ ? ELEMENT_FORMAT_OPTIONS.start.iconRTL
199
+ : ELEMENT_FORMAT_OPTIONS.start.icon}` }), _jsx("span", { className: "text", children: "Start Align" })] }), _jsxs(DropDownItem, { onClick: () => {
200
+ editor.dispatchCommand(FORMAT_ELEMENT_COMMAND, 'end');
201
+ }, className: "item wide", children: [_jsx("i", { className: `icon ${isRTL
202
+ ? ELEMENT_FORMAT_OPTIONS.end.iconRTL
203
+ : ELEMENT_FORMAT_OPTIONS.end.icon}` }), _jsx("span", { className: "text", children: "End Align" })] }), _jsx(Divider, {}), _jsxs(DropDownItem, { onClick: () => {
204
+ editor.dispatchCommand(OUTDENT_CONTENT_COMMAND, undefined);
205
+ }, className: "item wide", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: 'icon ' + (isRTL ? 'indent' : 'outdent') }), _jsx("span", { className: "text", children: "Outdent" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.OUTDENT })] }), _jsxs(DropDownItem, { onClick: () => {
206
+ editor.dispatchCommand(INDENT_CONTENT_COMMAND, undefined);
207
+ }, className: "item wide", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: 'icon ' + (isRTL ? 'outdent' : 'indent') }), _jsx("span", { className: "text", children: "Indent" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.INDENT })] })] }));
208
+ }
209
+ function $findTopLevelElement(node) {
210
+ let topLevelElement = node.getKey() === 'root'
211
+ ? node
212
+ : $findMatchingParent(node, (e) => {
213
+ const parent = e.getParent();
214
+ return parent !== null && $isRootOrShadowRoot(parent);
215
+ });
216
+ if (topLevelElement === null) {
217
+ topLevelElement = node.getTopLevelElementOrThrow();
218
+ }
219
+ return topLevelElement;
220
+ }
221
+ export default function ToolbarPlugin({ editor, activeEditor, setActiveEditor, setIsLinkEditMode, }) {
222
+ const [selectedElementKey, setSelectedElementKey] = useState(null);
223
+ const [modal, showModal] = useModal();
224
+ const [isEditable, setIsEditable] = useState(() => editor.isEditable());
225
+ const { toolbarState, updateToolbarState } = useToolbarState();
226
+ const $handleHeadingNode = useCallback((selectedElement) => {
227
+ const type = $isHeadingNode(selectedElement)
228
+ ? selectedElement.getTag()
229
+ : selectedElement.getType();
230
+ if (type in blockTypeToBlockName) {
231
+ updateToolbarState('blockType', type);
232
+ }
233
+ }, [updateToolbarState]);
234
+ const { settings: { isCodeHighlighted, isCodeShiki }, } = useSettings();
235
+ const $handleCodeNode = useCallback((element) => {
236
+ if ($isCodeNode(element)) {
237
+ const language = element.getLanguage();
238
+ updateToolbarState('codeLanguage', language
239
+ ? (isCodeHighlighted &&
240
+ (isCodeShiki
241
+ ? normalizeCodeLanguageShiki(language)
242
+ : normalizeCodeLanguagePrism(language))) ||
243
+ language
244
+ : '');
245
+ const theme = element.getTheme();
246
+ updateToolbarState('codeTheme', theme || '');
247
+ return;
248
+ }
249
+ }, [updateToolbarState, isCodeHighlighted, isCodeShiki]);
250
+ const $updateToolbar = useCallback(() => {
251
+ const selection = $getSelection();
252
+ if ($isRangeSelection(selection)) {
253
+ if (activeEditor !== editor && $isEditorIsNestedEditor(activeEditor)) {
254
+ const rootElement = activeEditor.getRootElement();
255
+ updateToolbarState('isImageCaption', !!rootElement?.parentElement?.classList.contains('image-caption-container'));
256
+ }
257
+ else {
258
+ updateToolbarState('isImageCaption', false);
259
+ }
260
+ const anchorNode = selection.anchor.getNode();
261
+ const element = $findTopLevelElement(anchorNode);
262
+ const elementKey = element.getKey();
263
+ const elementDOM = activeEditor.getElementByKey(elementKey);
264
+ updateToolbarState('isRTL', $isParentElementRTL(selection));
265
+ // Update links
266
+ const node = getSelectedNode(selection);
267
+ const parent = node.getParent();
268
+ const isLink = $isLinkNode(parent) || $isLinkNode(node);
269
+ updateToolbarState('isLink', isLink);
270
+ const tableNode = $findMatchingParent(node, $isTableNode);
271
+ if ($isTableNode(tableNode)) {
272
+ updateToolbarState('rootType', 'table');
273
+ }
274
+ else {
275
+ updateToolbarState('rootType', 'root');
276
+ }
277
+ if (elementDOM !== null) {
278
+ setSelectedElementKey(elementKey);
279
+ if ($isListNode(element)) {
280
+ const parentList = $getNearestNodeOfType(anchorNode, ListNode);
281
+ const type = parentList
282
+ ? parentList.getListType()
283
+ : element.getListType();
284
+ updateToolbarState('blockType', type);
285
+ }
286
+ else {
287
+ $handleHeadingNode(element);
288
+ $handleCodeNode(element);
289
+ }
290
+ }
291
+ // Handle buttons
292
+ updateToolbarState('fontColor', $getSelectionStyleValueForProperty(selection, 'color', '#000'));
293
+ updateToolbarState('bgColor', $getSelectionStyleValueForProperty(selection, 'background-color', '#fff'));
294
+ updateToolbarState('fontFamily', $getSelectionStyleValueForProperty(selection, 'font-family', 'Arial'));
295
+ let matchingParent;
296
+ if ($isLinkNode(parent)) {
297
+ // If node is a link, we need to fetch the parent paragraph node to set format
298
+ matchingParent = $findMatchingParent(node, (parentNode) => $isElementNode(parentNode) && !parentNode.isInline());
299
+ }
300
+ // If matchingParent is a valid node, pass it's format type
301
+ updateToolbarState('elementFormat', $isElementNode(matchingParent)
302
+ ? matchingParent.getFormatType()
303
+ : $isElementNode(node)
304
+ ? node.getFormatType()
305
+ : parent?.getFormatType() || 'left');
306
+ }
307
+ if ($isRangeSelection(selection) || $isTableSelection(selection)) {
308
+ // Update text format
309
+ updateToolbarState('isBold', selection.hasFormat('bold'));
310
+ updateToolbarState('isItalic', selection.hasFormat('italic'));
311
+ updateToolbarState('isUnderline', selection.hasFormat('underline'));
312
+ updateToolbarState('isStrikethrough', selection.hasFormat('strikethrough'));
313
+ updateToolbarState('isSubscript', selection.hasFormat('subscript'));
314
+ updateToolbarState('isSuperscript', selection.hasFormat('superscript'));
315
+ updateToolbarState('isHighlight', selection.hasFormat('highlight'));
316
+ updateToolbarState('isCode', selection.hasFormat('code'));
317
+ updateToolbarState('fontSize', $getSelectionStyleValueForProperty(selection, 'font-size', '15px'));
318
+ updateToolbarState('isLowercase', selection.hasFormat('lowercase'));
319
+ updateToolbarState('isUppercase', selection.hasFormat('uppercase'));
320
+ updateToolbarState('isCapitalize', selection.hasFormat('capitalize'));
321
+ }
322
+ if ($isNodeSelection(selection)) {
323
+ const nodes = selection.getNodes();
324
+ for (const selectedNode of nodes) {
325
+ const parentList = $getNearestNodeOfType(selectedNode, ListNode);
326
+ if (parentList) {
327
+ const type = parentList.getListType();
328
+ updateToolbarState('blockType', type);
329
+ }
330
+ else {
331
+ const selectedElement = $findTopLevelElement(selectedNode);
332
+ $handleHeadingNode(selectedElement);
333
+ $handleCodeNode(selectedElement);
334
+ // Update elementFormat for node selection (e.g., images)
335
+ if ($isElementNode(selectedElement)) {
336
+ updateToolbarState('elementFormat', selectedElement.getFormatType());
337
+ }
338
+ }
339
+ }
340
+ }
341
+ }, [
342
+ activeEditor,
343
+ editor,
344
+ updateToolbarState,
345
+ $handleHeadingNode,
346
+ $handleCodeNode,
347
+ ]);
348
+ useEffect(() => {
349
+ return editor.registerCommand(SELECTION_CHANGE_COMMAND, (_payload, newEditor) => {
350
+ setActiveEditor(newEditor);
351
+ $updateToolbar();
352
+ return false;
353
+ }, COMMAND_PRIORITY_CRITICAL);
354
+ }, [editor, $updateToolbar, setActiveEditor]);
355
+ useEffect(() => {
356
+ activeEditor.getEditorState().read(() => {
357
+ $updateToolbar();
358
+ }, { editor: activeEditor });
359
+ }, [activeEditor, $updateToolbar]);
360
+ useEffect(() => {
361
+ return mergeRegister(editor.registerEditableListener((editable) => {
362
+ setIsEditable(editable);
363
+ }), activeEditor.registerUpdateListener(({ editorState }) => {
364
+ editorState.read(() => {
365
+ $updateToolbar();
366
+ }, { editor: activeEditor });
367
+ }), activeEditor.registerCommand(CAN_UNDO_COMMAND, (payload) => {
368
+ updateToolbarState('canUndo', payload);
369
+ return false;
370
+ }, COMMAND_PRIORITY_CRITICAL), activeEditor.registerCommand(CAN_REDO_COMMAND, (payload) => {
371
+ updateToolbarState('canRedo', payload);
372
+ return false;
373
+ }, COMMAND_PRIORITY_CRITICAL));
374
+ }, [$updateToolbar, activeEditor, editor, updateToolbarState]);
375
+ const applyStyleText = useCallback((styles, skipHistoryStack) => {
376
+ activeEditor.update(() => {
377
+ const selection = $getSelection();
378
+ if (selection !== null) {
379
+ $patchStyleText(selection, styles);
380
+ }
381
+ }, skipHistoryStack ? { tag: HISTORIC_TAG } : {});
382
+ }, [activeEditor]);
383
+ const onFontColorSelect = useCallback((value, skipHistoryStack) => {
384
+ applyStyleText({ color: value }, skipHistoryStack);
385
+ }, [applyStyleText]);
386
+ const onBgColorSelect = useCallback((value, skipHistoryStack) => {
387
+ applyStyleText({ 'background-color': value }, skipHistoryStack);
388
+ }, [applyStyleText]);
389
+ const insertLink = useCallback(() => {
390
+ if (!toolbarState.isLink) {
391
+ setIsLinkEditMode(true);
392
+ activeEditor.dispatchCommand(TOGGLE_LINK_COMMAND, sanitizeUrl('https://'));
393
+ }
394
+ else {
395
+ setIsLinkEditMode(false);
396
+ activeEditor.dispatchCommand(TOGGLE_LINK_COMMAND, null);
397
+ }
398
+ }, [activeEditor, setIsLinkEditMode, toolbarState.isLink]);
399
+ const onCodeLanguageSelect = useCallback((value) => {
400
+ activeEditor.update(() => {
401
+ if (selectedElementKey !== null) {
402
+ const node = $getNodeByKey(selectedElementKey);
403
+ if ($isCodeNode(node)) {
404
+ node.setLanguage(value);
405
+ }
406
+ }
407
+ });
408
+ }, [activeEditor, selectedElementKey]);
409
+ const onCodeThemeSelect = useCallback((value) => {
410
+ activeEditor.update(() => {
411
+ if (selectedElementKey !== null) {
412
+ const node = $getNodeByKey(selectedElementKey);
413
+ if ($isCodeNode(node)) {
414
+ node.setTheme(value);
415
+ }
416
+ }
417
+ });
418
+ }, [activeEditor, selectedElementKey]);
419
+ const insertGifOnClick = (payload) => {
420
+ activeEditor.dispatchCommand(INSERT_IMAGE_COMMAND, payload);
421
+ };
422
+ const canViewerSeeInsertDropdown = !toolbarState.isImageCaption;
423
+ const canViewerSeeInsertCodeButton = !toolbarState.isImageCaption;
424
+ return (_jsxs("div", { className: "toolbar", children: [_jsx("button", { disabled: !toolbarState.canUndo || !isEditable, onClick: () => {
425
+ activeEditor.dispatchCommand(UNDO_COMMAND, undefined);
426
+ }, title: IS_APPLE ? 'Undo (⌘Z)' : 'Undo (Ctrl+Z)', type: "button", className: "toolbar-item spaced", "aria-label": "Undo", children: _jsx("i", { className: "format undo" }) }), _jsx("button", { disabled: !toolbarState.canRedo || !isEditable, onClick: () => {
427
+ activeEditor.dispatchCommand(REDO_COMMAND, undefined);
428
+ }, title: IS_APPLE ? 'Redo (⇧⌘Z)' : 'Redo (Ctrl+Y)', type: "button", className: "toolbar-item", "aria-label": "Redo", children: _jsx("i", { className: "format redo" }) }), _jsx(Divider, {}), toolbarState.blockType in blockTypeToBlockName &&
429
+ activeEditor === editor && (_jsxs(_Fragment, { children: [_jsx(BlockFormatDropDown, { disabled: !isEditable, blockType: toolbarState.blockType, rootType: toolbarState.rootType, editor: activeEditor }), _jsx(Divider, {})] })), toolbarState.blockType === 'code' && isCodeHighlighted ? (_jsxs(_Fragment, { children: [!isCodeShiki && (_jsx(DropDown, { disabled: !isEditable, buttonClassName: "toolbar-item code-language", buttonLabel: (CODE_LANGUAGE_OPTIONS_PRISM.find((opt) => opt[0] ===
430
+ normalizeCodeLanguagePrism(toolbarState.codeLanguage)) || ['', ''])[1], buttonAriaLabel: "Select language", children: CODE_LANGUAGE_OPTIONS_PRISM.map(([value, name]) => {
431
+ return (_jsx(DropDownItem, { className: `item ${dropDownActiveClass(value === toolbarState.codeLanguage)}`, onClick: () => onCodeLanguageSelect(value), children: _jsx("span", { className: "text", children: name }) }, value));
432
+ }) })), isCodeShiki && (_jsxs(_Fragment, { children: [_jsx(DropDown, { disabled: !isEditable, buttonClassName: "toolbar-item code-language", buttonLabel: (CODE_LANGUAGE_OPTIONS_SHIKI.find((opt) => opt[0] ===
433
+ normalizeCodeLanguageShiki(toolbarState.codeLanguage)) || ['', ''])[1], buttonAriaLabel: "Select language", children: CODE_LANGUAGE_OPTIONS_SHIKI.map(([value, name]) => {
434
+ return (_jsx(DropDownItem, { className: `item ${dropDownActiveClass(value === toolbarState.codeLanguage)}`, onClick: () => onCodeLanguageSelect(value), children: _jsx("span", { className: "text", children: name }) }, value));
435
+ }) }), _jsx(DropDown, { disabled: !isEditable, buttonClassName: "toolbar-item code-language", buttonLabel: (CODE_THEME_OPTIONS_SHIKI.find((opt) => opt[0] === toolbarState.codeTheme) || ['', ''])[1], buttonAriaLabel: "Select theme", children: CODE_THEME_OPTIONS_SHIKI.map(([value, name]) => {
436
+ return (_jsx(DropDownItem, { className: `item ${dropDownActiveClass(value === toolbarState.codeTheme)}`, onClick: () => onCodeThemeSelect(value), children: _jsx("span", { className: "text", children: name }) }, value));
437
+ }) })] }))] })) : (_jsxs(_Fragment, { children: [_jsx(FontDropDown, { disabled: !isEditable, style: 'font-family', value: toolbarState.fontFamily, editor: activeEditor }), _jsx(Divider, {}), _jsx(FontSize, { selectionFontSize: parseFontSizeForToolbar(toolbarState.fontSize).slice(0, -2), editor: activeEditor, disabled: !isEditable }), _jsx(Divider, {}), _jsx("button", { disabled: !isEditable, onClick: () => {
438
+ activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'bold');
439
+ }, className: 'toolbar-item spaced ' + (toolbarState.isBold ? 'active' : ''), title: `Bold (${SHORTCUTS.BOLD})`, type: "button", "aria-label": `Format text as bold. Shortcut: ${SHORTCUTS.BOLD}`, children: _jsx("i", { className: "format bold" }) }), _jsx("button", { disabled: !isEditable, onClick: () => {
440
+ activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'italic');
441
+ }, className: 'toolbar-item spaced ' + (toolbarState.isItalic ? 'active' : ''), title: `Italic (${SHORTCUTS.ITALIC})`, type: "button", "aria-label": `Format text as italics. Shortcut: ${SHORTCUTS.ITALIC}`, children: _jsx("i", { className: "format italic" }) }), _jsx("button", { disabled: !isEditable, onClick: () => {
442
+ activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'underline');
443
+ }, className: 'toolbar-item spaced ' +
444
+ (toolbarState.isUnderline ? 'active' : ''), title: `Underline (${SHORTCUTS.UNDERLINE})`, type: "button", "aria-label": `Format text to underlined. Shortcut: ${SHORTCUTS.UNDERLINE}`, children: _jsx("i", { className: "format underline" }) }), canViewerSeeInsertCodeButton && (_jsx("button", { disabled: !isEditable, onClick: () => {
445
+ activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'code');
446
+ }, className: 'toolbar-item spaced ' + (toolbarState.isCode ? 'active' : ''), title: `Insert code block (${SHORTCUTS.INSERT_CODE_BLOCK})`, type: "button", "aria-label": "Insert code block", children: _jsx("i", { className: "format code" }) })), _jsx("button", { disabled: !isEditable, onClick: insertLink, className: 'toolbar-item spaced ' + (toolbarState.isLink ? 'active' : ''), "aria-label": "Insert link", title: `Insert link (${SHORTCUTS.INSERT_LINK})`, type: "button", children: _jsx("i", { className: "format link" }) }), _jsx(DropdownColorPicker, { disabled: !isEditable, buttonClassName: "toolbar-item color-picker", buttonAriaLabel: "Formatting text color", buttonIconClassName: "icon font-color", color: toolbarState.fontColor, onChange: onFontColorSelect, title: "text color" }), _jsx(DropdownColorPicker, { disabled: !isEditable, buttonClassName: "toolbar-item color-picker", buttonAriaLabel: "Formatting background color", buttonIconClassName: "icon bg-color", color: toolbarState.bgColor, onChange: onBgColorSelect, title: "bg color" }), _jsxs(DropDown, { disabled: !isEditable, buttonClassName: "toolbar-item spaced", buttonLabel: "", buttonAriaLabel: "Formatting options for additional text styles", buttonIconClassName: "icon dropdown-more", children: [_jsxs(DropDownItem, { onClick: () => {
447
+ activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'lowercase');
448
+ }, className: 'item wide ' + dropDownActiveClass(toolbarState.isLowercase), title: "Lowercase", "aria-label": "Format text to lowercase", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon lowercase" }), _jsx("span", { className: "text", children: "Lowercase" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.LOWERCASE })] }), _jsxs(DropDownItem, { onClick: () => {
449
+ activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'uppercase');
450
+ }, className: 'item wide ' + dropDownActiveClass(toolbarState.isUppercase), title: "Uppercase", "aria-label": "Format text to uppercase", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon uppercase" }), _jsx("span", { className: "text", children: "Uppercase" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.UPPERCASE })] }), _jsxs(DropDownItem, { onClick: () => {
451
+ activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'capitalize');
452
+ }, className: 'item wide ' + dropDownActiveClass(toolbarState.isCapitalize), title: "Capitalize", "aria-label": "Format text to capitalize", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon capitalize" }), _jsx("span", { className: "text", children: "Capitalize" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.CAPITALIZE })] }), _jsxs(DropDownItem, { onClick: () => {
453
+ activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'strikethrough');
454
+ }, className: 'item wide ' + dropDownActiveClass(toolbarState.isStrikethrough), title: "Strikethrough", "aria-label": "Format text with a strikethrough", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon strikethrough" }), _jsx("span", { className: "text", children: "Strikethrough" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.STRIKETHROUGH })] }), _jsxs(DropDownItem, { onClick: () => {
455
+ activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'subscript');
456
+ }, className: 'item wide ' + dropDownActiveClass(toolbarState.isSubscript), title: "Subscript", "aria-label": "Format text with a subscript", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon subscript" }), _jsx("span", { className: "text", children: "Subscript" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.SUBSCRIPT })] }), _jsxs(DropDownItem, { onClick: () => {
457
+ activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'superscript');
458
+ }, className: 'item wide ' + dropDownActiveClass(toolbarState.isSuperscript), title: "Superscript", "aria-label": "Format text with a superscript", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon superscript" }), _jsx("span", { className: "text", children: "Superscript" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.SUPERSCRIPT })] }), _jsx(DropDownItem, { onClick: () => {
459
+ activeEditor.dispatchCommand(FORMAT_TEXT_COMMAND, 'highlight');
460
+ }, className: 'item wide ' + dropDownActiveClass(toolbarState.isHighlight), title: "Highlight", "aria-label": "Format text with a highlight", children: _jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon highlight" }), _jsx("span", { className: "text", children: "Highlight" })] }) }), _jsxs(DropDownItem, { onClick: () => clearFormatting(activeEditor), className: "item wide", title: "Clear text formatting", "aria-label": "Clear all text formatting", children: [_jsxs("div", { className: "icon-text-container", children: [_jsx("i", { className: "icon clear" }), _jsx("span", { className: "text", children: "Clear Formatting" })] }), _jsx("span", { className: "shortcut", children: SHORTCUTS.CLEAR_FORMATTING })] })] }), canViewerSeeInsertDropdown && (_jsxs(_Fragment, { children: [_jsx(Divider, {}), _jsxs(DropDown, { disabled: !isEditable, buttonClassName: "toolbar-item spaced", buttonLabel: "Insert", buttonAriaLabel: "Insert specialized editor node", buttonIconClassName: "icon plus", children: [_jsxs(DropDownItem, { onClick: () => {
461
+ activeEditor.dispatchCommand(INSERT_HORIZONTAL_RULE_COMMAND, undefined);
462
+ }, className: "item", children: [_jsx("i", { className: "icon horizontal-rule" }), _jsx("span", { className: "text", children: "Horizontal Rule" })] }), _jsxs(DropDownItem, { onClick: () => {
463
+ activeEditor.dispatchCommand(INSERT_COUNTER_COMMAND, 0);
464
+ }, className: "item", children: [_jsx("i", { className: "icon number" }), _jsx("span", { className: "text", children: "Counter" })] }), _jsxs(DropDownItem, { onClick: () => {
465
+ activeEditor.dispatchCommand(INSERT_PAGE_BREAK, undefined);
466
+ }, className: "item", children: [_jsx("i", { className: "icon page-break" }), _jsx("span", { className: "text", children: "Page Break" })] }), _jsxs(DropDownItem, { onClick: () => {
467
+ showModal('Insert Image', (onClose) => (_jsx(InsertImageDialog, { activeEditor: activeEditor, onClose: onClose })));
468
+ }, className: "item", children: [_jsx("i", { className: "icon image" }), _jsx("span", { className: "text", children: "Image" })] }), _jsxs(DropDownItem, { onClick: () => {
469
+ showModal('Insert Inline Image', (onClose) => (_jsx(InsertInlineImageDialog, { activeEditor: activeEditor, onClose: onClose })));
470
+ }, className: "item", children: [_jsx("i", { className: "icon image" }), _jsx("span", { className: "text", children: "Inline Image" })] }), _jsxs(DropDownItem, { onClick: () => insertGifOnClick({
471
+ altText: 'Cat typing on a laptop',
472
+ src: catTypingGif,
473
+ }), className: "item", children: [_jsx("i", { className: "icon gif" }), _jsx("span", { className: "text", children: "GIF" })] }), _jsxs(DropDownItem, { onClick: () => {
474
+ activeEditor.dispatchCommand(INSERT_EXCALIDRAW_COMMAND, undefined);
475
+ }, className: "item", children: [_jsx("i", { className: "icon diagram-2" }), _jsx("span", { className: "text", children: "Excalidraw" })] }), _jsxs(DropDownItem, { onClick: () => {
476
+ showModal('Insert Table', (onClose) => (_jsx(InsertTableDialog, { activeEditor: activeEditor, onClose: onClose })));
477
+ }, className: "item", children: [_jsx("i", { className: "icon table" }), _jsx("span", { className: "text", children: "Table" })] }), _jsxs(DropDownItem, { onClick: () => {
478
+ showModal('Insert Poll', (onClose) => (_jsx(InsertPollDialog, { activeEditor: activeEditor, onClose: onClose })));
479
+ }, className: "item", children: [_jsx("i", { className: "icon poll" }), _jsx("span", { className: "text", children: "Poll" })] }), _jsxs(DropDownItem, { onClick: () => {
480
+ showModal('Insert Columns Layout', (onClose) => (_jsx(InsertLayoutDialog, { activeEditor: activeEditor, onClose: onClose })));
481
+ }, className: "item", children: [_jsx("i", { className: "icon columns" }), _jsx("span", { className: "text", children: "Columns Layout" })] }), _jsxs(DropDownItem, { onClick: () => {
482
+ showModal('Insert Equation', (onClose) => (_jsx(InsertEquationDialog, { activeEditor: activeEditor, onClose: onClose })));
483
+ }, className: "item", children: [_jsx("i", { className: "icon equation" }), _jsx("span", { className: "text", children: "Equation" })] }), _jsxs(DropDownItem, { onClick: () => {
484
+ editor.update(() => {
485
+ const root = $getRoot();
486
+ const stickyNode = $createStickyNode(0, 0);
487
+ root.append(stickyNode);
488
+ });
489
+ }, className: "item", children: [_jsx("i", { className: "icon sticky" }), _jsx("span", { className: "text", children: "Sticky Note" })] }), _jsxs(DropDownItem, { onClick: () => {
490
+ editor.dispatchCommand(INSERT_COLLAPSIBLE_COMMAND, undefined);
491
+ }, className: "item", children: [_jsx("i", { className: "icon caret-right" }), _jsx("span", { className: "text", children: "Collapsible container" })] }), _jsxs(DropDownItem, { onClick: () => {
492
+ const dateTime = new Date();
493
+ dateTime.setHours(0, 0, 0, 0);
494
+ activeEditor.dispatchCommand(INSERT_DATETIME_COMMAND, {
495
+ dateTime,
496
+ });
497
+ }, className: "item", children: [_jsx("i", { className: "icon calendar" }), _jsx("span", { className: "text", children: "Date" })] }), EmbedConfigs.map((embedConfig) => (_jsxs(DropDownItem, { onClick: () => {
498
+ activeEditor.dispatchCommand(INSERT_EMBED_COMMAND, embedConfig.type);
499
+ }, className: "item", children: [embedConfig.icon, _jsx("span", { className: "text", children: embedConfig.contentName })] }, embedConfig.type)))] })] }))] })), _jsx(Divider, {}), _jsx(ElementFormatDropdown, { disabled: !isEditable, value: toolbarState.elementFormat, editor: activeEditor, isRTL: toolbarState.isRTL }), modal] }));
500
+ }
@@ -0,0 +1,26 @@
1
+ import { HeadingTagType } from '@lexical/rich-text';
2
+ import { LexicalEditor } from 'lexical';
3
+ export declare enum UpdateFontSizeType {
4
+ increment = 1,
5
+ decrement = 2
6
+ }
7
+ /**
8
+ * Calculates the new font size based on the update type.
9
+ * @param currentFontSize - The current font size
10
+ * @param updateType - The type of change, either increment or decrement
11
+ * @returns the next font size
12
+ */
13
+ export declare const calculateNextFontSize: (currentFontSize: number, updateType: UpdateFontSizeType | null) => number;
14
+ /**
15
+ * Patches the selection with the updated font size.
16
+ */
17
+ export declare const updateFontSizeInSelection: (editor: LexicalEditor, newFontSize: string | null, updateType: UpdateFontSizeType | null) => void;
18
+ export declare const updateFontSize: (editor: LexicalEditor, updateType: UpdateFontSizeType, inputValue: string) => void;
19
+ export declare const formatParagraph: (editor: LexicalEditor) => void;
20
+ export declare const formatHeading: (editor: LexicalEditor, blockType: string, headingSize: HeadingTagType) => void;
21
+ export declare const formatBulletList: (editor: LexicalEditor, blockType: string) => void;
22
+ export declare const formatCheckList: (editor: LexicalEditor, blockType: string) => void;
23
+ export declare const formatNumberedList: (editor: LexicalEditor, blockType: string) => void;
24
+ export declare const formatQuote: (editor: LexicalEditor, blockType: string) => void;
25
+ export declare const formatCode: (editor: LexicalEditor, blockType: string) => void;
26
+ export declare const clearFormatting: (editor: LexicalEditor) => void;