@blocknote/core 0.21.0 → 0.23.0

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 (444) hide show
  1. package/dist/blocknote.js +2320 -1692
  2. package/dist/blocknote.js.map +1 -1
  3. package/dist/blocknote.umd.cjs +7 -7
  4. package/dist/blocknote.umd.cjs.map +1 -1
  5. package/dist/style.css +1 -1
  6. package/dist/tsconfig.tsbuildinfo +1 -1
  7. package/dist/webpack-stats.json +1 -1
  8. package/package.json +3 -3
  9. package/src/api/clipboard/__snapshots__/external/pasteEndOfParagraph.html +96 -0
  10. package/src/api/clipboard/__snapshots__/external/pasteEndOfParagraphText.html +96 -0
  11. package/src/api/clipboard/__snapshots__/external/pasteImage.html +111 -0
  12. package/src/api/clipboard/__snapshots__/external/pasteParagraphInCustomBlock.html +96 -0
  13. package/src/api/clipboard/__snapshots__/external/pasteTable.html +149 -0
  14. package/src/api/clipboard/__snapshots__/external/pasteTableInExistingTable.html +124 -0
  15. package/src/api/clipboard/__snapshots__/internal/basicBlocks.html +1 -0
  16. package/src/api/clipboard/__snapshots__/internal/basicBlocksWithProps.html +1 -0
  17. package/src/api/clipboard/__snapshots__/internal/paragraphInCustomBlock.html +1 -0
  18. package/src/api/clipboard/clipboardExternal.test.ts +161 -0
  19. package/src/api/clipboard/{clipboard.test.ts → clipboardInternal.test.ts} +186 -38
  20. package/src/api/clipboard/testUtil.ts +27 -0
  21. package/src/api/clipboard/toClipboard/copyExtension.ts +1 -0
  22. package/src/api/exporters/html/__snapshots__/pageBreak/basic/external.html +1 -0
  23. package/src/api/exporters/html/__snapshots__/pageBreak/basic/internal.html +1 -0
  24. package/src/api/exporters/html/util/serializeBlocksExternalHTML.ts +7 -1
  25. package/src/api/exporters/html/util/serializeBlocksInternalHTML.ts +3 -1
  26. package/src/api/exporters/markdown/__snapshots__/pageBreak/basic/markdown.md +0 -0
  27. package/src/api/nodeConversions/__snapshots__/nodeConversions.test.ts.snap +16 -0
  28. package/src/api/nodeConversions/nodeToBlock.ts +4 -1
  29. package/src/api/parsers/html/__snapshots__/parse-codeblocks.json +62 -0
  30. package/src/api/parsers/html/parseHTML.test.ts +9 -0
  31. package/src/api/parsers/markdown/__snapshots__/pasted/styled.json +2 -2
  32. package/src/api/testUtil/cases/defaultSchema.ts +15 -1
  33. package/src/api/testUtil/partialBlockTestUtil.ts +4 -1
  34. package/src/blocks/CodeBlockContent/CodeBlockContent.ts +32 -11
  35. package/src/blocks/HeadingBlockContent/HeadingBlockContent.ts +3 -28
  36. package/src/blocks/ListItemBlockContent/BulletListItemBlockContent/BulletListItemBlockContent.ts +1 -1
  37. package/src/blocks/ListItemBlockContent/CheckListItemBlockContent/CheckListItemBlockContent.ts +4 -16
  38. package/src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListIndexingPlugin.ts +11 -3
  39. package/src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListItemBlockContent.ts +26 -6
  40. package/src/blocks/PageBreakBlockContent/PageBreakBlockContent.ts +49 -0
  41. package/src/blocks/PageBreakBlockContent/getPageBreakSlashMenuItems.ts +45 -0
  42. package/src/blocks/PageBreakBlockContent/schema.ts +40 -0
  43. package/src/editor/Block.css +18 -4
  44. package/src/editor/BlockNoteEditor.test.ts +21 -1
  45. package/src/editor/BlockNoteEditor.ts +17 -0
  46. package/src/editor/BlockNoteExtensions.ts +111 -16
  47. package/src/editor/editor.css +28 -13
  48. package/src/editor/transformPasted.ts +57 -4
  49. package/src/extensions/SideMenu/SideMenuPlugin.ts +115 -23
  50. package/src/extensions/SideMenu/dragging.ts +0 -1
  51. package/src/extensions/SuggestionMenu/DefaultSuggestionItem.ts +1 -1
  52. package/src/i18n/locales/ar.ts +6 -0
  53. package/src/i18n/locales/de.ts +6 -0
  54. package/src/i18n/locales/en.ts +6 -0
  55. package/src/i18n/locales/es.ts +6 -0
  56. package/src/i18n/locales/fr.ts +47 -17
  57. package/src/i18n/locales/hr.ts +72 -54
  58. package/src/i18n/locales/index.ts +1 -0
  59. package/src/i18n/locales/is.ts +6 -0
  60. package/src/i18n/locales/it.ts +315 -0
  61. package/src/i18n/locales/ja.ts +6 -0
  62. package/src/i18n/locales/ko.ts +6 -0
  63. package/src/i18n/locales/nl.ts +6 -0
  64. package/src/i18n/locales/pl.ts +6 -0
  65. package/src/i18n/locales/pt.ts +6 -0
  66. package/src/i18n/locales/ru.ts +6 -0
  67. package/src/i18n/locales/vi.ts +6 -0
  68. package/src/i18n/locales/zh.ts +6 -0
  69. package/src/index.ts +3 -0
  70. package/src/schema/blocks/createSpec.ts +1 -1
  71. package/src/schema/blocks/internal.ts +16 -6
  72. package/src/schema/inlineContent/internal.ts +4 -1
  73. package/src/schema/propTypes.ts +41 -18
  74. package/types/src/api/blockManipulation/setupTestEnv.d.ts +8 -0
  75. package/types/src/api/clipboard/clipboardInternal.test.d.ts +1 -0
  76. package/types/src/api/clipboard/testUtil.d.ts +509 -0
  77. package/types/src/api/testUtil/cases/customBlocks.d.ts +8 -0
  78. package/types/src/api/testUtil/cases/customInlineContent.d.ts +8 -0
  79. package/types/src/api/testUtil/cases/customStyles.d.ts +8 -0
  80. package/types/src/api/testUtil/cases/defaultSchema.d.ts +2 -1
  81. package/types/src/blocks/CodeBlockContent/CodeBlockContent.d.ts +2 -0
  82. package/types/src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListItemBlockContent.d.ts +12 -0
  83. package/types/src/blocks/PageBreakBlockContent/PageBreakBlockContent.d.ts +31 -0
  84. package/types/src/blocks/PageBreakBlockContent/getPageBreakSlashMenuItems.d.ts +8 -0
  85. package/types/src/blocks/PageBreakBlockContent/schema.d.ts +86 -0
  86. package/types/src/blocks/defaultBlocks.d.ts +16 -0
  87. package/types/src/editor/BlockNoteEditor.d.ts +15 -0
  88. package/types/src/editor/BlockNoteExtensions.d.ts +2 -0
  89. package/types/src/editor/transformPasted.d.ts +8 -4
  90. package/types/src/extensions/SideMenu/SideMenuPlugin.d.ts +25 -5
  91. package/types/src/extensions/SuggestionMenu/DefaultSuggestionItem.d.ts +1 -1
  92. package/types/src/i18n/locales/de.d.ts +6 -0
  93. package/types/src/i18n/locales/en.d.ts +6 -0
  94. package/types/src/i18n/locales/es.d.ts +6 -0
  95. package/types/src/i18n/locales/hr.d.ts +6 -0
  96. package/types/src/i18n/locales/index.d.ts +1 -0
  97. package/types/src/i18n/locales/it.d.ts +245 -0
  98. package/types/src/index.d.ts +3 -0
  99. package/types/src/schema/propTypes.d.ts +20 -2
  100. package/dist/src/api/blockManipulation/commands/insertBlocks/insertBlocks.js +0 -30
  101. package/dist/src/api/blockManipulation/commands/insertBlocks/insertBlocks.js.map +0 -1
  102. package/dist/src/api/blockManipulation/commands/insertBlocks/insertBlocks.test.js +0 -99
  103. package/dist/src/api/blockManipulation/commands/insertBlocks/insertBlocks.test.js.map +0 -1
  104. package/dist/src/api/blockManipulation/commands/mergeBlocks/mergeBlocks.js +0 -97
  105. package/dist/src/api/blockManipulation/commands/mergeBlocks/mergeBlocks.js.map +0 -1
  106. package/dist/src/api/blockManipulation/commands/mergeBlocks/mergeBlocks.test.js +0 -88
  107. package/dist/src/api/blockManipulation/commands/mergeBlocks/mergeBlocks.test.js.map +0 -1
  108. package/dist/src/api/blockManipulation/commands/moveBlocks/moveBlocks.js +0 -219
  109. package/dist/src/api/blockManipulation/commands/moveBlocks/moveBlocks.js.map +0 -1
  110. package/dist/src/api/blockManipulation/commands/moveBlocks/moveBlocks.test.js +0 -175
  111. package/dist/src/api/blockManipulation/commands/moveBlocks/moveBlocks.test.js.map +0 -1
  112. package/dist/src/api/blockManipulation/commands/nestBlock/nestBlock.js +0 -57
  113. package/dist/src/api/blockManipulation/commands/nestBlock/nestBlock.js.map +0 -1
  114. package/dist/src/api/blockManipulation/commands/removeBlocks/removeBlocks.js +0 -5
  115. package/dist/src/api/blockManipulation/commands/removeBlocks/removeBlocks.js.map +0 -1
  116. package/dist/src/api/blockManipulation/commands/removeBlocks/removeBlocks.test.js +0 -31
  117. package/dist/src/api/blockManipulation/commands/removeBlocks/removeBlocks.test.js.map +0 -1
  118. package/dist/src/api/blockManipulation/commands/replaceBlocks/replaceBlocks.js +0 -71
  119. package/dist/src/api/blockManipulation/commands/replaceBlocks/replaceBlocks.js.map +0 -1
  120. package/dist/src/api/blockManipulation/commands/replaceBlocks/replaceBlocks.test.js +0 -157
  121. package/dist/src/api/blockManipulation/commands/replaceBlocks/replaceBlocks.test.js.map +0 -1
  122. package/dist/src/api/blockManipulation/commands/splitBlock/splitBlock.js +0 -27
  123. package/dist/src/api/blockManipulation/commands/splitBlock/splitBlock.js.map +0 -1
  124. package/dist/src/api/blockManipulation/commands/splitBlock/splitBlock.test.js +0 -67
  125. package/dist/src/api/blockManipulation/commands/splitBlock/splitBlock.test.js.map +0 -1
  126. package/dist/src/api/blockManipulation/commands/updateBlock/updateBlock.js +0 -148
  127. package/dist/src/api/blockManipulation/commands/updateBlock/updateBlock.js.map +0 -1
  128. package/dist/src/api/blockManipulation/commands/updateBlock/updateBlock.test.js +0 -252
  129. package/dist/src/api/blockManipulation/commands/updateBlock/updateBlock.test.js.map +0 -1
  130. package/dist/src/api/blockManipulation/getBlock/getBlock.js +0 -56
  131. package/dist/src/api/blockManipulation/getBlock/getBlock.js.map +0 -1
  132. package/dist/src/api/blockManipulation/insertContentAt.js +0 -64
  133. package/dist/src/api/blockManipulation/insertContentAt.js.map +0 -1
  134. package/dist/src/api/blockManipulation/selections/selection.js +0 -149
  135. package/dist/src/api/blockManipulation/selections/selection.js.map +0 -1
  136. package/dist/src/api/blockManipulation/selections/selection.test.js +0 -39
  137. package/dist/src/api/blockManipulation/selections/selection.test.js.map +0 -1
  138. package/dist/src/api/blockManipulation/selections/textCursorPosition/textCursorPosition.js +0 -79
  139. package/dist/src/api/blockManipulation/selections/textCursorPosition/textCursorPosition.js.map +0 -1
  140. package/dist/src/api/blockManipulation/selections/textCursorPosition/textCursorPosition.test.js +0 -33
  141. package/dist/src/api/blockManipulation/selections/textCursorPosition/textCursorPosition.test.js.map +0 -1
  142. package/dist/src/api/blockManipulation/setupTestEnv.js +0 -172
  143. package/dist/src/api/blockManipulation/setupTestEnv.js.map +0 -1
  144. package/dist/src/api/clipboard/clipboard.test.js +0 -249
  145. package/dist/src/api/clipboard/clipboard.test.js.map +0 -1
  146. package/dist/src/api/clipboard/fromClipboard/acceptedMIMETypes.js +0 -8
  147. package/dist/src/api/clipboard/fromClipboard/acceptedMIMETypes.js.map +0 -1
  148. package/dist/src/api/clipboard/fromClipboard/fileDropExtension.js +0 -38
  149. package/dist/src/api/clipboard/fromClipboard/fileDropExtension.js.map +0 -1
  150. package/dist/src/api/clipboard/fromClipboard/handleFileInsertion.js +0 -111
  151. package/dist/src/api/clipboard/fromClipboard/handleFileInsertion.js.map +0 -1
  152. package/dist/src/api/clipboard/fromClipboard/handleVSCodePaste.js +0 -25
  153. package/dist/src/api/clipboard/fromClipboard/handleVSCodePaste.js.map +0 -1
  154. package/dist/src/api/clipboard/fromClipboard/pasteExtension.js +0 -57
  155. package/dist/src/api/clipboard/fromClipboard/pasteExtension.js.map +0 -1
  156. package/dist/src/api/clipboard/toClipboard/copyExtension.js +0 -134
  157. package/dist/src/api/clipboard/toClipboard/copyExtension.js.map +0 -1
  158. package/dist/src/api/exporters/html/externalHTMLExporter.js +0 -35
  159. package/dist/src/api/exporters/html/externalHTMLExporter.js.map +0 -1
  160. package/dist/src/api/exporters/html/htmlConversion.test.js +0 -72
  161. package/dist/src/api/exporters/html/htmlConversion.test.js.map +0 -1
  162. package/dist/src/api/exporters/html/internalHTMLSerializer.js +0 -21
  163. package/dist/src/api/exporters/html/internalHTMLSerializer.js.map +0 -1
  164. package/dist/src/api/exporters/html/util/serializeBlocksExternalHTML.js +0 -141
  165. package/dist/src/api/exporters/html/util/serializeBlocksExternalHTML.js.map +0 -1
  166. package/dist/src/api/exporters/html/util/serializeBlocksInternalHTML.js +0 -96
  167. package/dist/src/api/exporters/html/util/serializeBlocksInternalHTML.js.map +0 -1
  168. package/dist/src/api/exporters/markdown/markdownExporter.js +0 -31
  169. package/dist/src/api/exporters/markdown/markdownExporter.js.map +0 -1
  170. package/dist/src/api/exporters/markdown/markdownExporter.test.js +0 -57
  171. package/dist/src/api/exporters/markdown/markdownExporter.test.js.map +0 -1
  172. package/dist/src/api/exporters/markdown/removeUnderlinesRehypePlugin.js +0 -33
  173. package/dist/src/api/exporters/markdown/removeUnderlinesRehypePlugin.js.map +0 -1
  174. package/dist/src/api/exporters/markdown/util/addSpacesToCheckboxesRehypePlugin.js +0 -37
  175. package/dist/src/api/exporters/markdown/util/addSpacesToCheckboxesRehypePlugin.js.map +0 -1
  176. package/dist/src/api/getBlockInfoFromPos.js +0 -165
  177. package/dist/src/api/getBlockInfoFromPos.js.map +0 -1
  178. package/dist/src/api/nodeConversions/blockToNode.js +0 -197
  179. package/dist/src/api/nodeConversions/blockToNode.js.map +0 -1
  180. package/dist/src/api/nodeConversions/fragmentToBlocks.js +0 -50
  181. package/dist/src/api/nodeConversions/fragmentToBlocks.js.map +0 -1
  182. package/dist/src/api/nodeConversions/nodeConversions.test.js +0 -54
  183. package/dist/src/api/nodeConversions/nodeConversions.test.js.map +0 -1
  184. package/dist/src/api/nodeConversions/nodeToBlock.js +0 -316
  185. package/dist/src/api/nodeConversions/nodeToBlock.js.map +0 -1
  186. package/dist/src/api/nodeUtil.js +0 -28
  187. package/dist/src/api/nodeUtil.js.map +0 -1
  188. package/dist/src/api/parsers/html/parseHTML.js +0 -19
  189. package/dist/src/api/parsers/html/parseHTML.js.map +0 -1
  190. package/dist/src/api/parsers/html/parseHTML.test.js +0 -470
  191. package/dist/src/api/parsers/html/parseHTML.test.js.map +0 -1
  192. package/dist/src/api/parsers/html/util/nestedLists.js +0 -106
  193. package/dist/src/api/parsers/html/util/nestedLists.js.map +0 -1
  194. package/dist/src/api/parsers/html/util/nestedLists.test.js +0 -166
  195. package/dist/src/api/parsers/html/util/nestedLists.test.js.map +0 -1
  196. package/dist/src/api/parsers/markdown/parseMarkdown.js +0 -52
  197. package/dist/src/api/parsers/markdown/parseMarkdown.js.map +0 -1
  198. package/dist/src/api/parsers/markdown/parseMarkdown.test.js +0 -112
  199. package/dist/src/api/parsers/markdown/parseMarkdown.test.js.map +0 -1
  200. package/dist/src/api/testUtil/cases/customBlocks.js +0 -313
  201. package/dist/src/api/testUtil/cases/customBlocks.js.map +0 -1
  202. package/dist/src/api/testUtil/cases/customInlineContent.js +0 -91
  203. package/dist/src/api/testUtil/cases/customInlineContent.js.map +0 -1
  204. package/dist/src/api/testUtil/cases/customStyles.js +0 -83
  205. package/dist/src/api/testUtil/cases/customStyles.js.map +0 -1
  206. package/dist/src/api/testUtil/cases/defaultSchema.js +0 -673
  207. package/dist/src/api/testUtil/cases/defaultSchema.js.map +0 -1
  208. package/dist/src/api/testUtil/index.js +0 -2
  209. package/dist/src/api/testUtil/index.js.map +0 -1
  210. package/dist/src/api/testUtil/partialBlockTestUtil.js +0 -114
  211. package/dist/src/api/testUtil/partialBlockTestUtil.js.map +0 -1
  212. package/dist/src/api/testUtil/paste.js +0 -29
  213. package/dist/src/api/testUtil/paste.js.map +0 -1
  214. package/dist/src/blocks/AudioBlockContent/AudioBlockContent.js +0 -104
  215. package/dist/src/blocks/AudioBlockContent/AudioBlockContent.js.map +0 -1
  216. package/dist/src/blocks/AudioBlockContent/parseAudioElement.js +0 -5
  217. package/dist/src/blocks/AudioBlockContent/parseAudioElement.js.map +0 -1
  218. package/dist/src/blocks/CodeBlockContent/CodeBlockContent.js +0 -281
  219. package/dist/src/blocks/CodeBlockContent/CodeBlockContent.js.map +0 -1
  220. package/dist/src/blocks/CodeBlockContent/defaultSupportedLanguages.js +0 -110
  221. package/dist/src/blocks/CodeBlockContent/defaultSupportedLanguages.js.map +0 -1
  222. package/dist/src/blocks/FileBlockContent/FileBlockContent.js +0 -71
  223. package/dist/src/blocks/FileBlockContent/FileBlockContent.js.map +0 -1
  224. package/dist/src/blocks/FileBlockContent/helpers/parse/parseEmbedElement.js +0 -5
  225. package/dist/src/blocks/FileBlockContent/helpers/parse/parseEmbedElement.js.map +0 -1
  226. package/dist/src/blocks/FileBlockContent/helpers/parse/parseFigureElement.js +0 -10
  227. package/dist/src/blocks/FileBlockContent/helpers/parse/parseFigureElement.js.map +0 -1
  228. package/dist/src/blocks/FileBlockContent/helpers/render/createAddFileButton.js +0 -39
  229. package/dist/src/blocks/FileBlockContent/helpers/render/createAddFileButton.js.map +0 -1
  230. package/dist/src/blocks/FileBlockContent/helpers/render/createFileBlockWrapper.js +0 -51
  231. package/dist/src/blocks/FileBlockContent/helpers/render/createFileBlockWrapper.js.map +0 -1
  232. package/dist/src/blocks/FileBlockContent/helpers/render/createFileNameWithIcon.js +0 -17
  233. package/dist/src/blocks/FileBlockContent/helpers/render/createFileNameWithIcon.js.map +0 -1
  234. package/dist/src/blocks/FileBlockContent/helpers/render/createResizableFileBlockWrapper.js +0 -147
  235. package/dist/src/blocks/FileBlockContent/helpers/render/createResizableFileBlockWrapper.js.map +0 -1
  236. package/dist/src/blocks/FileBlockContent/helpers/toExternalHTML/createFigureWithCaption.js +0 -9
  237. package/dist/src/blocks/FileBlockContent/helpers/toExternalHTML/createFigureWithCaption.js.map +0 -1
  238. package/dist/src/blocks/FileBlockContent/helpers/toExternalHTML/createLinkWithCaption.js +0 -11
  239. package/dist/src/blocks/FileBlockContent/helpers/toExternalHTML/createLinkWithCaption.js.map +0 -1
  240. package/dist/src/blocks/FileBlockContent/uploadToTmpFilesDotOrg_DEV_ONLY.js +0 -15
  241. package/dist/src/blocks/FileBlockContent/uploadToTmpFilesDotOrg_DEV_ONLY.js.map +0 -1
  242. package/dist/src/blocks/HeadingBlockContent/HeadingBlockContent.js +0 -145
  243. package/dist/src/blocks/HeadingBlockContent/HeadingBlockContent.js.map +0 -1
  244. package/dist/src/blocks/ImageBlockContent/ImageBlockContent.js +0 -114
  245. package/dist/src/blocks/ImageBlockContent/ImageBlockContent.js.map +0 -1
  246. package/dist/src/blocks/ImageBlockContent/parseImageElement.js +0 -6
  247. package/dist/src/blocks/ImageBlockContent/parseImageElement.js.map +0 -1
  248. package/dist/src/blocks/ListItemBlockContent/BulletListItemBlockContent/BulletListItemBlockContent.js +0 -113
  249. package/dist/src/blocks/ListItemBlockContent/BulletListItemBlockContent/BulletListItemBlockContent.js.map +0 -1
  250. package/dist/src/blocks/ListItemBlockContent/CheckListItemBlockContent/CheckListItemBlockContent.js +0 -224
  251. package/dist/src/blocks/ListItemBlockContent/CheckListItemBlockContent/CheckListItemBlockContent.js.map +0 -1
  252. package/dist/src/blocks/ListItemBlockContent/ListItemKeyboardShortcuts.js +0 -45
  253. package/dist/src/blocks/ListItemBlockContent/ListItemKeyboardShortcuts.js.map +0 -1
  254. package/dist/src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListIndexingPlugin.js +0 -58
  255. package/dist/src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListIndexingPlugin.js.map +0 -1
  256. package/dist/src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListItemBlockContent.js +0 -130
  257. package/dist/src/blocks/ListItemBlockContent/NumberedListItemBlockContent/NumberedListItemBlockContent.js.map +0 -1
  258. package/dist/src/blocks/ParagraphBlockContent/ParagraphBlockContent.js +0 -52
  259. package/dist/src/blocks/ParagraphBlockContent/ParagraphBlockContent.js.map +0 -1
  260. package/dist/src/blocks/TableBlockContent/TableBlockContent.js +0 -129
  261. package/dist/src/blocks/TableBlockContent/TableBlockContent.js.map +0 -1
  262. package/dist/src/blocks/TableBlockContent/TableExtension.js +0 -64
  263. package/dist/src/blocks/TableBlockContent/TableExtension.js.map +0 -1
  264. package/dist/src/blocks/VideoBlockContent/VideoBlockContent.js +0 -114
  265. package/dist/src/blocks/VideoBlockContent/VideoBlockContent.js.map +0 -1
  266. package/dist/src/blocks/VideoBlockContent/parseVideoElement.js +0 -6
  267. package/dist/src/blocks/VideoBlockContent/parseVideoElement.js.map +0 -1
  268. package/dist/src/blocks/defaultBlockHelpers.js +0 -50
  269. package/dist/src/blocks/defaultBlockHelpers.js.map +0 -1
  270. package/dist/src/blocks/defaultBlockTypeGuards.js +0 -40
  271. package/dist/src/blocks/defaultBlockTypeGuards.js.map +0 -1
  272. package/dist/src/blocks/defaultBlocks.js +0 -50
  273. package/dist/src/blocks/defaultBlocks.js.map +0 -1
  274. package/dist/src/blocks/defaultProps.js +0 -19
  275. package/dist/src/blocks/defaultProps.js.map +0 -1
  276. package/dist/src/editor/BlockNoteEditor.js +0 -751
  277. package/dist/src/editor/BlockNoteEditor.js.map +0 -1
  278. package/dist/src/editor/BlockNoteEditor.test.js +0 -65
  279. package/dist/src/editor/BlockNoteEditor.test.js.map +0 -1
  280. package/dist/src/editor/BlockNoteExtensions.js +0 -192
  281. package/dist/src/editor/BlockNoteExtensions.js.map +0 -1
  282. package/dist/src/editor/BlockNoteSchema.js +0 -38
  283. package/dist/src/editor/BlockNoteSchema.js.map +0 -1
  284. package/dist/src/editor/BlockNoteTipTapEditor.js +0 -169
  285. package/dist/src/editor/BlockNoteTipTapEditor.js.map +0 -1
  286. package/dist/src/editor/cursorPositionTypes.js +0 -2
  287. package/dist/src/editor/cursorPositionTypes.js.map +0 -1
  288. package/dist/src/editor/defaultColors.js +0 -77
  289. package/dist/src/editor/defaultColors.js.map +0 -1
  290. package/dist/src/editor/selectionTypes.js +0 -2
  291. package/dist/src/editor/selectionTypes.js.map +0 -1
  292. package/dist/src/editor/transformPasted.js +0 -79
  293. package/dist/src/editor/transformPasted.js.map +0 -1
  294. package/dist/src/exporter/Exporter.js +0 -36
  295. package/dist/src/exporter/Exporter.js.map +0 -1
  296. package/dist/src/exporter/index.js +0 -3
  297. package/dist/src/exporter/index.js.map +0 -1
  298. package/dist/src/exporter/mapping.js +0 -12
  299. package/dist/src/exporter/mapping.js.map +0 -1
  300. package/dist/src/extensions/BackgroundColor/BackgroundColorExtension.js +0 -30
  301. package/dist/src/extensions/BackgroundColor/BackgroundColorExtension.js.map +0 -1
  302. package/dist/src/extensions/BackgroundColor/BackgroundColorMark.js +0 -39
  303. package/dist/src/extensions/BackgroundColor/BackgroundColorMark.js.map +0 -1
  304. package/dist/src/extensions/FilePanel/FilePanelPlugin.js +0 -131
  305. package/dist/src/extensions/FilePanel/FilePanelPlugin.js.map +0 -1
  306. package/dist/src/extensions/FormattingToolbar/FormattingToolbarPlugin.js +0 -197
  307. package/dist/src/extensions/FormattingToolbar/FormattingToolbarPlugin.js.map +0 -1
  308. package/dist/src/extensions/KeyboardShortcuts/KeyboardShortcutsExtension.js +0 -341
  309. package/dist/src/extensions/KeyboardShortcuts/KeyboardShortcutsExtension.js.map +0 -1
  310. package/dist/src/extensions/LinkToolbar/LinkToolbarPlugin.js +0 -251
  311. package/dist/src/extensions/LinkToolbar/LinkToolbarPlugin.js.map +0 -1
  312. package/dist/src/extensions/LinkToolbar/protocols.js +0 -14
  313. package/dist/src/extensions/LinkToolbar/protocols.js.map +0 -1
  314. package/dist/src/extensions/NodeSelectionKeyboard/NodeSelectionKeyboardPlugin.js +0 -54
  315. package/dist/src/extensions/NodeSelectionKeyboard/NodeSelectionKeyboardPlugin.js.map +0 -1
  316. package/dist/src/extensions/Placeholder/PlaceholderPlugin.js +0 -90
  317. package/dist/src/extensions/Placeholder/PlaceholderPlugin.js.map +0 -1
  318. package/dist/src/extensions/PreviousBlockType/PreviousBlockTypePlugin.js +0 -187
  319. package/dist/src/extensions/PreviousBlockType/PreviousBlockTypePlugin.js.map +0 -1
  320. package/dist/src/extensions/SideMenu/MultipleNodeSelection.js +0 -68
  321. package/dist/src/extensions/SideMenu/MultipleNodeSelection.js.map +0 -1
  322. package/dist/src/extensions/SideMenu/SideMenuPlugin.js +0 -347
  323. package/dist/src/extensions/SideMenu/SideMenuPlugin.js.map +0 -1
  324. package/dist/src/extensions/SideMenu/dragging.js +0 -135
  325. package/dist/src/extensions/SideMenu/dragging.js.map +0 -1
  326. package/dist/src/extensions/SuggestionMenu/DefaultGridSuggestionItem.js +0 -2
  327. package/dist/src/extensions/SuggestionMenu/DefaultGridSuggestionItem.js.map +0 -1
  328. package/dist/src/extensions/SuggestionMenu/DefaultSuggestionItem.js +0 -2
  329. package/dist/src/extensions/SuggestionMenu/DefaultSuggestionItem.js.map +0 -1
  330. package/dist/src/extensions/SuggestionMenu/SuggestionPlugin.js +0 -245
  331. package/dist/src/extensions/SuggestionMenu/SuggestionPlugin.js.map +0 -1
  332. package/dist/src/extensions/SuggestionMenu/getDefaultEmojiPickerItems.js +0 -26
  333. package/dist/src/extensions/SuggestionMenu/getDefaultEmojiPickerItems.js.map +0 -1
  334. package/dist/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.js +0 -241
  335. package/dist/src/extensions/SuggestionMenu/getDefaultSlashMenuItems.js.map +0 -1
  336. package/dist/src/extensions/TableHandles/TableHandlesPlugin.js +0 -579
  337. package/dist/src/extensions/TableHandles/TableHandlesPlugin.js.map +0 -1
  338. package/dist/src/extensions/TextAlignment/TextAlignmentExtension.js +0 -36
  339. package/dist/src/extensions/TextAlignment/TextAlignmentExtension.js.map +0 -1
  340. package/dist/src/extensions/TextColor/TextColorExtension.js +0 -29
  341. package/dist/src/extensions/TextColor/TextColorExtension.js.map +0 -1
  342. package/dist/src/extensions/TextColor/TextColorMark.js +0 -37
  343. package/dist/src/extensions/TextColor/TextColorMark.js.map +0 -1
  344. package/dist/src/extensions/TrailingNode/TrailingNodeExtension.js +0 -58
  345. package/dist/src/extensions/TrailingNode/TrailingNodeExtension.js.map +0 -1
  346. package/dist/src/extensions/UniqueID/UniqueID.js +0 -283
  347. package/dist/src/extensions/UniqueID/UniqueID.js.map +0 -1
  348. package/dist/src/extensions/getDraggableBlockFromElement.js +0 -13
  349. package/dist/src/extensions/getDraggableBlockFromElement.js.map +0 -1
  350. package/dist/src/extensions-shared/UiElementPosition.js +0 -2
  351. package/dist/src/extensions-shared/UiElementPosition.js.map +0 -1
  352. package/dist/src/i18n/dictionary.js +0 -4
  353. package/dist/src/i18n/dictionary.js.map +0 -1
  354. package/dist/src/i18n/locales/ar.js +0 -298
  355. package/dist/src/i18n/locales/ar.js.map +0 -1
  356. package/dist/src/i18n/locales/de.js +0 -313
  357. package/dist/src/i18n/locales/de.js.map +0 -1
  358. package/dist/src/i18n/locales/en.js +0 -314
  359. package/dist/src/i18n/locales/en.js.map +0 -1
  360. package/dist/src/i18n/locales/es.js +0 -312
  361. package/dist/src/i18n/locales/es.js.map +0 -1
  362. package/dist/src/i18n/locales/fr.js +0 -313
  363. package/dist/src/i18n/locales/fr.js.map +0 -1
  364. package/dist/src/i18n/locales/hr.js +0 -308
  365. package/dist/src/i18n/locales/hr.js.map +0 -1
  366. package/dist/src/i18n/locales/index.js +0 -16
  367. package/dist/src/i18n/locales/index.js.map +0 -1
  368. package/dist/src/i18n/locales/is.js +0 -305
  369. package/dist/src/i18n/locales/is.js.map +0 -1
  370. package/dist/src/i18n/locales/ja.js +0 -333
  371. package/dist/src/i18n/locales/ja.js.map +0 -1
  372. package/dist/src/i18n/locales/ko.js +0 -326
  373. package/dist/src/i18n/locales/ko.js.map +0 -1
  374. package/dist/src/i18n/locales/nl.js +0 -313
  375. package/dist/src/i18n/locales/nl.js.map +0 -1
  376. package/dist/src/i18n/locales/pl.js +0 -297
  377. package/dist/src/i18n/locales/pl.js.map +0 -1
  378. package/dist/src/i18n/locales/pt.js +0 -305
  379. package/dist/src/i18n/locales/pt.js.map +0 -1
  380. package/dist/src/i18n/locales/ru.js +0 -340
  381. package/dist/src/i18n/locales/ru.js.map +0 -1
  382. package/dist/src/i18n/locales/vi.js +0 -312
  383. package/dist/src/i18n/locales/vi.js.map +0 -1
  384. package/dist/src/i18n/locales/zh.js +0 -346
  385. package/dist/src/i18n/locales/zh.js.map +0 -1
  386. package/dist/src/index.js +0 -63
  387. package/dist/src/index.js.map +0 -1
  388. package/dist/src/pm-nodes/BlockContainer.js +0 -72
  389. package/dist/src/pm-nodes/BlockContainer.js.map +0 -1
  390. package/dist/src/pm-nodes/BlockGroup.js +0 -43
  391. package/dist/src/pm-nodes/BlockGroup.js.map +0 -1
  392. package/dist/src/pm-nodes/Doc.js +0 -7
  393. package/dist/src/pm-nodes/Doc.js.map +0 -1
  394. package/dist/src/pm-nodes/index.js +0 -4
  395. package/dist/src/pm-nodes/index.js.map +0 -1
  396. package/dist/src/schema/blocks/createSpec.js +0 -126
  397. package/dist/src/schema/blocks/createSpec.js.map +0 -1
  398. package/dist/src/schema/blocks/internal.js +0 -147
  399. package/dist/src/schema/blocks/internal.js.map +0 -1
  400. package/dist/src/schema/blocks/types.js +0 -2
  401. package/dist/src/schema/blocks/types.js.map +0 -1
  402. package/dist/src/schema/index.js +0 -11
  403. package/dist/src/schema/index.js.map +0 -1
  404. package/dist/src/schema/inlineContent/createSpec.js +0 -64
  405. package/dist/src/schema/inlineContent/createSpec.js.map +0 -1
  406. package/dist/src/schema/inlineContent/internal.js +0 -52
  407. package/dist/src/schema/inlineContent/internal.js.map +0 -1
  408. package/dist/src/schema/inlineContent/types.js +0 -10
  409. package/dist/src/schema/inlineContent/types.js.map +0 -1
  410. package/dist/src/schema/propTypes.js +0 -2
  411. package/dist/src/schema/propTypes.js.map +0 -1
  412. package/dist/src/schema/styles/createSpec.js +0 -48
  413. package/dist/src/schema/styles/createSpec.js.map +0 -1
  414. package/dist/src/schema/styles/internal.js +0 -53
  415. package/dist/src/schema/styles/internal.js.map +0 -1
  416. package/dist/src/schema/styles/types.js +0 -2
  417. package/dist/src/schema/styles/types.js.map +0 -1
  418. package/dist/src/util/EventEmitter.js +0 -33
  419. package/dist/src/util/EventEmitter.js.map +0 -1
  420. package/dist/src/util/browser.js +0 -17
  421. package/dist/src/util/browser.js.map +0 -1
  422. package/dist/src/util/combineByGroup.js +0 -20
  423. package/dist/src/util/combineByGroup.js.map +0 -1
  424. package/dist/src/util/esmDependencies.js +0 -35
  425. package/dist/src/util/esmDependencies.js.map +0 -1
  426. package/dist/src/util/string.js +0 -14
  427. package/dist/src/util/string.js.map +0 -1
  428. package/dist/src/util/typescript.js +0 -12
  429. package/dist/src/util/typescript.js.map +0 -1
  430. /package/src/api/clipboard/__snapshots__/{childToParent.html → internal/childToParent.html} +0 -0
  431. /package/src/api/clipboard/__snapshots__/{childrenToNextParent.html → internal/childrenToNextParent.html} +0 -0
  432. /package/src/api/clipboard/__snapshots__/{childrenToNextParentsChildren.html → internal/childrenToNextParentsChildren.html} +0 -0
  433. /package/src/api/clipboard/__snapshots__/{image.html → internal/image.html} +0 -0
  434. /package/src/api/clipboard/__snapshots__/{multipleChildren.html → internal/multipleChildren.html} +0 -0
  435. /package/src/api/clipboard/__snapshots__/{multipleStyledText.html → internal/multipleStyledText.html} +0 -0
  436. /package/src/api/clipboard/__snapshots__/{nestedImage.html → internal/nestedImage.html} +0 -0
  437. /package/src/api/clipboard/__snapshots__/{partialChildToParent.html → internal/partialChildToParent.html} +0 -0
  438. /package/src/api/clipboard/__snapshots__/{styledText.html → internal/styledText.html} +0 -0
  439. /package/src/api/clipboard/__snapshots__/{tableAllCells.html → internal/tableAllCells.html} +0 -0
  440. /package/src/api/clipboard/__snapshots__/{tableCell.html → internal/tableCell.html} +0 -0
  441. /package/src/api/clipboard/__snapshots__/{tableCellText.html → internal/tableCellText.html} +0 -0
  442. /package/src/api/clipboard/__snapshots__/{tableRow.html → internal/tableRow.html} +0 -0
  443. /package/src/api/clipboard/__snapshots__/{unstyledText.html → internal/unstyledText.html} +0 -0
  444. /package/types/src/api/clipboard/{clipboard.test.d.ts → clipboardExternal.test.d.ts} +0 -0
@@ -1,110 +0,0 @@
1
- import { bundledLanguagesInfo } from "shiki";
2
- export const defaultSupportedLanguages = [
3
- {
4
- id: "text",
5
- name: "Plain Text",
6
- match: ["text", "txt", "plain"],
7
- },
8
- ...bundledLanguagesInfo
9
- .filter((lang) => {
10
- return [
11
- "c",
12
- "cpp",
13
- "css",
14
- "glsl",
15
- "graphql",
16
- "haml",
17
- "html",
18
- "java",
19
- "javascript",
20
- "json",
21
- "jsonc",
22
- "jsonl",
23
- "jsx",
24
- "julia",
25
- "less",
26
- "markdown",
27
- "mdx",
28
- "php",
29
- "postcss",
30
- "pug",
31
- "python",
32
- "r",
33
- "regexp",
34
- "sass",
35
- "scss",
36
- "shellscript",
37
- "sql",
38
- "svelte",
39
- "typescript",
40
- "vue",
41
- "vue-html",
42
- "wasm",
43
- "wgsl",
44
- "xml",
45
- "yaml",
46
- ].includes(lang.id);
47
- })
48
- .map((lang) => ({
49
- match: [lang.id, ...(lang.aliases || [])],
50
- id: lang.id,
51
- name: lang.name,
52
- })),
53
- { id: "tsx", name: "TSX", match: ["tsx", "typescriptreact"] },
54
- {
55
- id: "haskell",
56
- name: "Haskell",
57
- match: ["haskell", "hs"],
58
- },
59
- {
60
- id: "csharp",
61
- name: "C#",
62
- match: ["c#", "csharp", "cs"],
63
- },
64
- {
65
- id: "latex",
66
- name: "LaTeX",
67
- match: ["latex"],
68
- },
69
- {
70
- id: "lua",
71
- name: "Lua",
72
- match: ["lua"],
73
- },
74
- {
75
- id: "mermaid",
76
- name: "Mermaid",
77
- match: ["mermaid", "mmd"],
78
- },
79
- {
80
- id: "ruby",
81
- name: "Ruby",
82
- match: ["ruby", "rb"],
83
- },
84
- {
85
- id: "rust",
86
- name: "Rust",
87
- match: ["rust", "rs"],
88
- },
89
- {
90
- id: "scala",
91
- name: "Scala",
92
- match: ["scala"],
93
- },
94
- {
95
- id: "swift",
96
- name: "Swift",
97
- match: ["swift"],
98
- },
99
- {
100
- id: "kotlin",
101
- name: "Kotlin",
102
- match: ["kotlin", "kt", "kts"],
103
- },
104
- {
105
- id: "objective-c",
106
- name: "Objective C",
107
- match: ["objective-c", "objc"],
108
- },
109
- ];
110
- //# sourceMappingURL=defaultSupportedLanguages.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"defaultSupportedLanguages.js","sourceRoot":"","sources":["../../../../src/blocks/CodeBlockContent/defaultSupportedLanguages.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,OAAO,CAAC;AAQ7C,MAAM,CAAC,MAAM,yBAAyB,GAA8B;IAClE;QACE,EAAE,EAAE,MAAM;QACV,IAAI,EAAE,YAAY;QAClB,KAAK,EAAE,CAAC,MAAM,EAAE,KAAK,EAAE,OAAO,CAAC;KAChC;IACD,GAAG,oBAAoB;SACpB,MAAM,CAAC,CAAC,IAAI,EAAE,EAAE;QACf,OAAO;YACL,GAAG;YACH,KAAK;YACL,KAAK;YACL,MAAM;YACN,SAAS;YACT,MAAM;YACN,MAAM;YACN,MAAM;YACN,YAAY;YACZ,MAAM;YACN,OAAO;YACP,OAAO;YACP,KAAK;YACL,OAAO;YACP,MAAM;YACN,UAAU;YACV,KAAK;YACL,KAAK;YACL,SAAS;YACT,KAAK;YACL,QAAQ;YACR,GAAG;YACH,QAAQ;YACR,MAAM;YACN,MAAM;YACN,aAAa;YACb,KAAK;YACL,QAAQ;YACR,YAAY;YACZ,KAAK;YACL,UAAU;YACV,MAAM;YACN,MAAM;YACN,KAAK;YACL,MAAM;SACP,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC;IACtB,CAAC,CAAC;SACD,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,CAAC;QACd,KAAK,EAAE,CAAC,IAAI,CAAC,EAAE,EAAE,GAAG,CAAC,IAAI,CAAC,OAAO,IAAI,EAAE,CAAC,CAAC;QACzC,EAAE,EAAE,IAAI,CAAC,EAAE;QACX,IAAI,EAAE,IAAI,CAAC,IAAI;KAChB,CAAC,CAAC;IACL,EAAE,EAAE,EAAE,KAAK,EAAE,IAAI,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC,KAAK,EAAE,iBAAiB,CAAC,EAAE;IAC7D;QACE,EAAE,EAAE,SAAS;QACb,IAAI,EAAE,SAAS;QACf,KAAK,EAAE,CAAC,SAAS,EAAE,IAAI,CAAC;KACzB;IACD;QACE,EAAE,EAAE,QAAQ;QACZ,IAAI,EAAE,IAAI;QACV,KAAK,EAAE,CAAC,IAAI,EAAE,QAAQ,EAAE,IAAI,CAAC;KAC9B;IACD;QACE,EAAE,EAAE,OAAO;QACX,IAAI,EAAE,OAAO;QACb,KAAK,EAAE,CAAC,OAAO,CAAC;KACjB;IACD;QACE,EAAE,EAAE,KAAK;QACT,IAAI,EAAE,KAAK;QACX,KAAK,EAAE,CAAC,KAAK,CAAC;KACf;IACD;QACE,EAAE,EAAE,SAAS;QACb,IAAI,EAAE,SAAS;QACf,KAAK,EAAE,CAAC,SAAS,EAAE,KAAK,CAAC;KAC1B;IACD;QACE,EAAE,EAAE,MAAM;QACV,IAAI,EAAE,MAAM;QACZ,KAAK,EAAE,CAAC,MAAM,EAAE,IAAI,CAAC;KACtB;IACD;QACE,EAAE,EAAE,MAAM;QACV,IAAI,EAAE,MAAM;QACZ,KAAK,EAAE,CAAC,MAAM,EAAE,IAAI,CAAC;KACtB;IACD;QACE,EAAE,EAAE,OAAO;QACX,IAAI,EAAE,OAAO;QACb,KAAK,EAAE,CAAC,OAAO,CAAC;KACjB;IACD;QACE,EAAE,EAAE,OAAO;QACX,IAAI,EAAE,OAAO;QACb,KAAK,EAAE,CAAC,OAAO,CAAC;KACjB;IACD;QACE,EAAE,EAAE,QAAQ;QACZ,IAAI,EAAE,QAAQ;QACd,KAAK,EAAE,CAAC,QAAQ,EAAE,IAAI,EAAE,KAAK,CAAC;KAC/B;IACD;QACE,EAAE,EAAE,aAAa;QACjB,IAAI,EAAE,aAAa;QACnB,KAAK,EAAE,CAAC,aAAa,EAAE,MAAM,CAAC;KAC/B;CACF,CAAC"}
@@ -1,71 +0,0 @@
1
- import { createBlockSpec, } from "../../schema/index.js";
2
- import { defaultProps } from "../defaultProps.js";
3
- import { parseEmbedElement } from "./helpers/parse/parseEmbedElement.js";
4
- import { parseFigureElement } from "./helpers/parse/parseFigureElement.js";
5
- import { createFileBlockWrapper } from "./helpers/render/createFileBlockWrapper.js";
6
- import { createLinkWithCaption } from "./helpers/toExternalHTML/createLinkWithCaption.js";
7
- export const filePropSchema = {
8
- backgroundColor: defaultProps.backgroundColor,
9
- // File name.
10
- name: {
11
- default: "",
12
- },
13
- // File url.
14
- url: {
15
- default: "",
16
- },
17
- // File caption.
18
- caption: {
19
- default: "",
20
- },
21
- };
22
- export const fileBlockConfig = {
23
- type: "file",
24
- propSchema: filePropSchema,
25
- content: "none",
26
- isFileBlock: true,
27
- };
28
- export const fileRender = (block, editor) => {
29
- return createFileBlockWrapper(block, editor);
30
- };
31
- export const fileParse = (element) => {
32
- if (element.tagName === "EMBED") {
33
- return parseEmbedElement(element);
34
- }
35
- if (element.tagName === "FIGURE") {
36
- const parsedFigure = parseFigureElement(element, "embed");
37
- if (!parsedFigure) {
38
- return undefined;
39
- }
40
- const { targetElement, caption } = parsedFigure;
41
- return {
42
- ...parseEmbedElement(targetElement),
43
- caption,
44
- };
45
- }
46
- return undefined;
47
- };
48
- export const fileToExternalHTML = (block) => {
49
- if (!block.props.url) {
50
- const div = document.createElement("p");
51
- div.textContent = "Add file";
52
- return {
53
- dom: div,
54
- };
55
- }
56
- const fileSrcLink = document.createElement("a");
57
- fileSrcLink.href = block.props.url;
58
- fileSrcLink.textContent = block.props.name || block.props.url;
59
- if (block.props.caption) {
60
- return createLinkWithCaption(fileSrcLink, block.props.caption);
61
- }
62
- return {
63
- dom: fileSrcLink,
64
- };
65
- };
66
- export const FileBlock = createBlockSpec(fileBlockConfig, {
67
- render: fileRender,
68
- parse: fileParse,
69
- toExternalHTML: fileToExternalHTML,
70
- });
71
- //# sourceMappingURL=FileBlockContent.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"FileBlockContent.js","sourceRoot":"","sources":["../../../../src/blocks/FileBlockContent/FileBlockContent.ts"],"names":[],"mappings":"AACA,OAAO,EAIL,eAAe,GAChB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAClD,OAAO,EAAE,iBAAiB,EAAE,MAAM,sCAAsC,CAAC;AACzE,OAAO,EAAE,kBAAkB,EAAE,MAAM,uCAAuC,CAAC;AAC3E,OAAO,EAAE,sBAAsB,EAAE,MAAM,4CAA4C,CAAC;AACpF,OAAO,EAAE,qBAAqB,EAAE,MAAM,mDAAmD,CAAC;AAE1F,MAAM,CAAC,MAAM,cAAc,GAAG;IAC5B,eAAe,EAAE,YAAY,CAAC,eAAe;IAC7C,aAAa;IACb,IAAI,EAAE;QACJ,OAAO,EAAE,EAAW;KACrB;IACD,YAAY;IACZ,GAAG,EAAE;QACH,OAAO,EAAE,EAAW;KACrB;IACD,gBAAgB;IAChB,OAAO,EAAE;QACP,OAAO,EAAE,EAAW;KACrB;CACmB,CAAC;AAEvB,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B,IAAI,EAAE,MAAe;IACrB,UAAU,EAAE,cAAc;IAC1B,OAAO,EAAE,MAAM;IACf,WAAW,EAAE,IAAI;CACQ,CAAC;AAE5B,MAAM,CAAC,MAAM,UAAU,GAAG,CACxB,KAAwD,EACxD,MAAsC,EACtC,EAAE;IACF,OAAO,sBAAsB,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC;AAC/C,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,SAAS,GAAG,CAAC,OAAoB,EAAE,EAAE;IAChD,IAAI,OAAO,CAAC,OAAO,KAAK,OAAO,EAAE,CAAC;QAChC,OAAO,iBAAiB,CAAC,OAA2B,CAAC,CAAC;IACxD,CAAC;IAED,IAAI,OAAO,CAAC,OAAO,KAAK,QAAQ,EAAE,CAAC;QACjC,MAAM,YAAY,GAAG,kBAAkB,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;QAC1D,IAAI,CAAC,YAAY,EAAE,CAAC;YAClB,OAAO,SAAS,CAAC;QACnB,CAAC;QAED,MAAM,EAAE,aAAa,EAAE,OAAO,EAAE,GAAG,YAAY,CAAC;QAEhD,OAAO;YACL,GAAG,iBAAiB,CAAC,aAAiC,CAAC;YACvD,OAAO;SACR,CAAC;IACJ,CAAC;IAED,OAAO,SAAS,CAAC;AACnB,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAChC,KAAwD,EACxD,EAAE;IACF,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,CAAC;QACrB,MAAM,GAAG,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;QACxC,GAAG,CAAC,WAAW,GAAG,UAAU,CAAC;QAE7B,OAAO;YACL,GAAG,EAAE,GAAG;SACT,CAAC;IACJ,CAAC;IAED,MAAM,WAAW,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;IAChD,WAAW,CAAC,IAAI,GAAG,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC;IACnC,WAAW,CAAC,WAAW,GAAG,KAAK,CAAC,KAAK,CAAC,IAAI,IAAI,KAAK,CAAC,KAAK,CAAC,GAAG,CAAC;IAE9D,IAAI,KAAK,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC;QACxB,OAAO,qBAAqB,CAAC,WAAW,EAAE,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC;IACjE,CAAC;IAED,OAAO;QACL,GAAG,EAAE,WAAW;KACjB,CAAC;AACJ,CAAC,CAAC;AAEF,MAAM,CAAC,MAAM,SAAS,GAAG,eAAe,CAAC,eAAe,EAAE;IACxD,MAAM,EAAE,UAAU;IAClB,KAAK,EAAE,SAAS;IAChB,cAAc,EAAE,kBAAkB;CACnC,CAAC,CAAC"}
@@ -1,5 +0,0 @@
1
- export const parseEmbedElement = (embedElement) => {
2
- const url = embedElement.src || undefined;
3
- return { url };
4
- };
5
- //# sourceMappingURL=parseEmbedElement.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parseEmbedElement.js","sourceRoot":"","sources":["../../../../../../src/blocks/FileBlockContent/helpers/parse/parseEmbedElement.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,iBAAiB,GAAG,CAAC,YAA8B,EAAE,EAAE;IAClE,MAAM,GAAG,GAAG,YAAY,CAAC,GAAG,IAAI,SAAS,CAAC;IAE1C,OAAO,EAAE,GAAG,EAAE,CAAC;AACjB,CAAC,CAAC"}
@@ -1,10 +0,0 @@
1
- export const parseFigureElement = (figureElement, targetTag) => {
2
- const targetElement = figureElement.querySelector(targetTag);
3
- if (!targetElement) {
4
- return undefined;
5
- }
6
- const captionElement = figureElement.querySelector("figcaption");
7
- const caption = captionElement?.textContent ?? undefined;
8
- return { targetElement, caption };
9
- };
10
- //# sourceMappingURL=parseFigureElement.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"parseFigureElement.js","sourceRoot":"","sources":["../../../../../../src/blocks/FileBlockContent/helpers/parse/parseFigureElement.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,kBAAkB,GAAG,CAChC,aAA0B,EAC1B,SAAiB,EACjB,EAAE;IACF,MAAM,aAAa,GAAG,aAAa,CAAC,aAAa,CAC/C,SAAS,CACY,CAAC;IACxB,IAAI,CAAC,aAAa,EAAE,CAAC;QACnB,OAAO,SAAS,CAAC;IACnB,CAAC;IAED,MAAM,cAAc,GAAG,aAAa,CAAC,aAAa,CAAC,YAAY,CAAC,CAAC;IACjE,MAAM,OAAO,GAAG,cAAc,EAAE,WAAW,IAAI,SAAS,CAAC;IAEzD,OAAO,EAAE,aAAa,EAAE,OAAO,EAAE,CAAC;AACpC,CAAC,CAAC"}
@@ -1,39 +0,0 @@
1
- export const createAddFileButton = (block, editor, buttonText, buttonIcon) => {
2
- const addFileButton = document.createElement("div");
3
- addFileButton.className = "bn-add-file-button";
4
- const addFileButtonIcon = document.createElement("div");
5
- addFileButtonIcon.className = "bn-add-file-button-icon";
6
- if (buttonIcon) {
7
- addFileButtonIcon.appendChild(buttonIcon);
8
- }
9
- else {
10
- addFileButtonIcon.innerHTML =
11
- '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M3 8L9.00319 2H19.9978C20.5513 2 21 2.45531 21 2.9918V21.0082C21 21.556 20.5551 22 20.0066 22H3.9934C3.44476 22 3 21.5501 3 20.9932V8ZM10 4V9H5V20H19V4H10Z"></path></svg>';
12
- }
13
- addFileButton.appendChild(addFileButtonIcon);
14
- const addFileButtonText = document.createElement("p");
15
- addFileButtonText.className = "bn-add-file-button-text";
16
- addFileButtonText.innerHTML =
17
- buttonText || editor.dictionary.file_blocks.file.add_button_text;
18
- addFileButton.appendChild(addFileButtonText);
19
- // Prevents focus from moving to the button.
20
- const addFileButtonMouseDownHandler = (event) => {
21
- event.preventDefault();
22
- };
23
- // Opens the file toolbar.
24
- const addFileButtonClickHandler = () => {
25
- editor.dispatch(editor._tiptapEditor.state.tr.setMeta(editor.filePanel.plugin, {
26
- block: block,
27
- }));
28
- };
29
- addFileButton.addEventListener("mousedown", addFileButtonMouseDownHandler, true);
30
- addFileButton.addEventListener("click", addFileButtonClickHandler, true);
31
- return {
32
- dom: addFileButton,
33
- destroy: () => {
34
- addFileButton.removeEventListener("mousedown", addFileButtonMouseDownHandler, true);
35
- addFileButton.removeEventListener("click", addFileButtonClickHandler, true);
36
- },
37
- };
38
- };
39
- //# sourceMappingURL=createAddFileButton.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"createAddFileButton.js","sourceRoot":"","sources":["../../../../../../src/blocks/FileBlockContent/helpers/render/createAddFileButton.ts"],"names":[],"mappings":"AAGA,MAAM,CAAC,MAAM,mBAAmB,GAAG,CACjC,KAAiD,EACjD,MAAsC,EACtC,UAAmB,EACnB,UAAwB,EACxB,EAAE;IACF,MAAM,aAAa,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IACpD,aAAa,CAAC,SAAS,GAAG,oBAAoB,CAAC;IAE/C,MAAM,iBAAiB,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IACxD,iBAAiB,CAAC,SAAS,GAAG,yBAAyB,CAAC;IACxD,IAAI,UAAU,EAAE,CAAC;QACf,iBAAiB,CAAC,WAAW,CAAC,UAAU,CAAC,CAAC;IAC5C,CAAC;SAAM,CAAC;QACN,iBAAiB,CAAC,SAAS;YACzB,qQAAqQ,CAAC;IAC1Q,CAAC;IACD,aAAa,CAAC,WAAW,CAAC,iBAAiB,CAAC,CAAC;IAE7C,MAAM,iBAAiB,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;IACtD,iBAAiB,CAAC,SAAS,GAAG,yBAAyB,CAAC;IACxD,iBAAiB,CAAC,SAAS;QACzB,UAAU,IAAI,MAAM,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,CAAC,eAAe,CAAC;IACnE,aAAa,CAAC,WAAW,CAAC,iBAAiB,CAAC,CAAC;IAE7C,4CAA4C;IAC5C,MAAM,6BAA6B,GAAG,CAAC,KAAiB,EAAE,EAAE;QAC1D,KAAK,CAAC,cAAc,EAAE,CAAC;IACzB,CAAC,CAAC;IACF,0BAA0B;IAC1B,MAAM,yBAAyB,GAAG,GAAG,EAAE;QACrC,MAAM,CAAC,QAAQ,CACb,MAAM,CAAC,aAAa,CAAC,KAAK,CAAC,EAAE,CAAC,OAAO,CAAC,MAAM,CAAC,SAAU,CAAC,MAAM,EAAE;YAC9D,KAAK,EAAE,KAAK;SACb,CAAC,CACH,CAAC;IACJ,CAAC,CAAC;IACF,aAAa,CAAC,gBAAgB,CAC5B,WAAW,EACX,6BAA6B,EAC7B,IAAI,CACL,CAAC;IACF,aAAa,CAAC,gBAAgB,CAAC,OAAO,EAAE,yBAAyB,EAAE,IAAI,CAAC,CAAC;IAEzE,OAAO;QACL,GAAG,EAAE,aAAa;QAClB,OAAO,EAAE,GAAG,EAAE;YACZ,aAAa,CAAC,mBAAmB,CAC/B,WAAW,EACX,6BAA6B,EAC7B,IAAI,CACL,CAAC;YACF,aAAa,CAAC,mBAAmB,CAC/B,OAAO,EACP,yBAAyB,EACzB,IAAI,CACL,CAAC;QACJ,CAAC;KACF,CAAC;AACJ,CAAC,CAAC"}
@@ -1,51 +0,0 @@
1
- import { createAddFileButton } from "./createAddFileButton.js";
2
- import { createFileNameWithIcon } from "./createFileNameWithIcon.js";
3
- export const createFileBlockWrapper = (block, editor, element, buttonText, buttonIcon) => {
4
- const wrapper = document.createElement("div");
5
- wrapper.className = "bn-file-block-content-wrapper";
6
- // Show the add file button if the file has not been uploaded yet. Change to
7
- // show a loader if a file upload for the block begins.
8
- if (block.props.url === "") {
9
- const addFileButton = createAddFileButton(block, editor, buttonText, buttonIcon);
10
- wrapper.appendChild(addFileButton.dom);
11
- const destroyUploadStartHandler = editor.onUploadStart((blockId) => {
12
- if (blockId === block.id) {
13
- wrapper.removeChild(addFileButton.dom);
14
- const loading = document.createElement("div");
15
- loading.className = "bn-file-loading-preview";
16
- loading.textContent = "Loading...";
17
- wrapper.appendChild(loading);
18
- }
19
- });
20
- return {
21
- dom: wrapper,
22
- destroy: () => {
23
- destroyUploadStartHandler();
24
- addFileButton.destroy();
25
- },
26
- };
27
- }
28
- const ret = { dom: wrapper };
29
- // Show the file preview, or the file name and icon.
30
- if (block.props.showPreview === false || !element) {
31
- // Show file name and icon.
32
- const fileNameWithIcon = createFileNameWithIcon(block);
33
- wrapper.appendChild(fileNameWithIcon.dom);
34
- ret.destroy = () => {
35
- fileNameWithIcon.destroy?.();
36
- };
37
- }
38
- else {
39
- // Show file preview.
40
- wrapper.appendChild(element.dom);
41
- }
42
- // Show the caption if there is one.
43
- if (block.props.caption) {
44
- const caption = document.createElement("p");
45
- caption.className = "bn-file-caption";
46
- caption.textContent = block.props.caption;
47
- wrapper.appendChild(caption);
48
- }
49
- return ret;
50
- };
51
- //# sourceMappingURL=createFileBlockWrapper.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"createFileBlockWrapper.js","sourceRoot":"","sources":["../../../../../../src/blocks/FileBlockContent/helpers/render/createFileBlockWrapper.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,mBAAmB,EAAE,MAAM,0BAA0B,CAAC;AAC/D,OAAO,EAAE,sBAAsB,EAAE,MAAM,6BAA6B,CAAC;AAErE,MAAM,CAAC,MAAM,sBAAsB,GAAG,CACpC,KAAiD,EACjD,MAIC,EACD,OAAoD,EACpD,UAAmB,EACnB,UAAwB,EACxB,EAAE;IACF,MAAM,OAAO,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC9C,OAAO,CAAC,SAAS,GAAG,+BAA+B,CAAC;IAEpD,4EAA4E;IAC5E,uDAAuD;IACvD,IAAI,KAAK,CAAC,KAAK,CAAC,GAAG,KAAK,EAAE,EAAE,CAAC;QAC3B,MAAM,aAAa,GAAG,mBAAmB,CACvC,KAAK,EACL,MAAM,EACN,UAAU,EACV,UAAU,CACX,CAAC;QACF,OAAO,CAAC,WAAW,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;QAEvC,MAAM,yBAAyB,GAAG,MAAM,CAAC,aAAa,CAAC,CAAC,OAAO,EAAE,EAAE;YACjE,IAAI,OAAO,KAAK,KAAK,CAAC,EAAE,EAAE,CAAC;gBACzB,OAAO,CAAC,WAAW,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;gBAEvC,MAAM,OAAO,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;gBAC9C,OAAO,CAAC,SAAS,GAAG,yBAAyB,CAAC;gBAC9C,OAAO,CAAC,WAAW,GAAG,YAAY,CAAC;gBACnC,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;YAC/B,CAAC;QACH,CAAC,CAAC,CAAC;QAEH,OAAO;YACL,GAAG,EAAE,OAAO;YACZ,OAAO,EAAE,GAAG,EAAE;gBACZ,yBAAyB,EAAE,CAAC;gBAC5B,aAAa,CAAC,OAAO,EAAE,CAAC;YAC1B,CAAC;SACF,CAAC;IACJ,CAAC;IAED,MAAM,GAAG,GAA+C,EAAE,GAAG,EAAE,OAAO,EAAE,CAAC;IAEzE,oDAAoD;IACpD,IAAI,KAAK,CAAC,KAAK,CAAC,WAAW,KAAK,KAAK,IAAI,CAAC,OAAO,EAAE,CAAC;QAClD,2BAA2B;QAC3B,MAAM,gBAAgB,GAAG,sBAAsB,CAAC,KAAK,CAAC,CAAC;QACvD,OAAO,CAAC,WAAW,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC;QAE1C,GAAG,CAAC,OAAO,GAAG,GAAG,EAAE;YACjB,gBAAgB,CAAC,OAAO,EAAE,EAAE,CAAC;QAC/B,CAAC,CAAC;IACJ,CAAC;SAAM,CAAC;QACN,qBAAqB;QACrB,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC,GAAG,CAAC,CAAC;IACnC,CAAC;IAED,oCAAoC;IACpC,IAAI,KAAK,CAAC,KAAK,CAAC,OAAO,EAAE,CAAC;QACxB,MAAM,OAAO,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;QAC5C,OAAO,CAAC,SAAS,GAAG,iBAAiB,CAAC;QACtC,OAAO,CAAC,WAAW,GAAG,KAAK,CAAC,KAAK,CAAC,OAAO,CAAC;QAC1C,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;IAC/B,CAAC;IAED,OAAO,GAAG,CAAC;AACb,CAAC,CAAC"}
@@ -1,17 +0,0 @@
1
- export const FILE_ICON_SVG = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M3 8L9.00319 2H19.9978C20.5513 2 21 2.45531 21 2.9918V21.0082C21 21.556 20.5551 22 20.0066 22H3.9934C3.44476 22 3 21.5501 3 20.9932V8ZM10 4V9H5V20H19V4H10Z"></path></svg>`;
2
- export const createFileNameWithIcon = (block) => {
3
- const file = document.createElement("div");
4
- file.className = "bn-file-name-with-icon";
5
- const icon = document.createElement("div");
6
- icon.className = "bn-file-icon";
7
- icon.innerHTML = FILE_ICON_SVG;
8
- file.appendChild(icon);
9
- const fileName = document.createElement("p");
10
- fileName.className = "bn-file-name";
11
- fileName.textContent = block.props.name;
12
- file.appendChild(fileName);
13
- return {
14
- dom: file,
15
- };
16
- };
17
- //# sourceMappingURL=createFileNameWithIcon.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"createFileNameWithIcon.js","sourceRoot":"","sources":["../../../../../../src/blocks/FileBlockContent/helpers/render/createFileNameWithIcon.ts"],"names":[],"mappings":"AAEA,MAAM,CAAC,MAAM,aAAa,GAAG,qQAAqQ,CAAC;AAEnS,MAAM,CAAC,MAAM,sBAAsB,GAAG,CACpC,KAAiD,EACL,EAAE;IAC9C,MAAM,IAAI,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC3C,IAAI,CAAC,SAAS,GAAG,wBAAwB,CAAC;IAE1C,MAAM,IAAI,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC3C,IAAI,CAAC,SAAS,GAAG,cAAc,CAAC;IAChC,IAAI,CAAC,SAAS,GAAG,aAAa,CAAC;IAC/B,IAAI,CAAC,WAAW,CAAC,IAAI,CAAC,CAAC;IAEvB,MAAM,QAAQ,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;IAC7C,QAAQ,CAAC,SAAS,GAAG,cAAc,CAAC;IACpC,QAAQ,CAAC,WAAW,GAAG,KAAK,CAAC,KAAK,CAAC,IAAI,CAAC;IACxC,IAAI,CAAC,WAAW,CAAC,QAAQ,CAAC,CAAC;IAE3B,OAAO;QACL,GAAG,EAAE,IAAI;KACV,CAAC;AACJ,CAAC,CAAC"}
@@ -1,147 +0,0 @@
1
- import { createFileBlockWrapper } from "./createFileBlockWrapper.js";
2
- export const createResizableFileBlockWrapper = (block, editor, element, resizeHandlesContainerElement, buttonText, buttonIcon) => {
3
- const { dom, destroy } = createFileBlockWrapper(block, editor, element, buttonText, buttonIcon);
4
- const wrapper = dom;
5
- if (block.props.url && block.props.showPreview) {
6
- wrapper.style.width = `${block.props.previewWidth}px`;
7
- }
8
- const leftResizeHandle = document.createElement("div");
9
- leftResizeHandle.className = "bn-resize-handle";
10
- leftResizeHandle.style.left = "4px";
11
- const rightResizeHandle = document.createElement("div");
12
- rightResizeHandle.className = "bn-resize-handle";
13
- rightResizeHandle.style.right = "4px";
14
- // Temporary parameters set when the user begins resizing the element, used to
15
- // calculate the new width of the element.
16
- let resizeParams;
17
- let width = block.props.previewWidth;
18
- // Updates the element width with an updated width depending on the cursor X
19
- // offset from when the resize began, and which resize handle is being used.
20
- const windowMouseMoveHandler = (event) => {
21
- if (!resizeParams) {
22
- if (!editor.isEditable &&
23
- resizeHandlesContainerElement.contains(leftResizeHandle) &&
24
- resizeHandlesContainerElement.contains(rightResizeHandle)) {
25
- resizeHandlesContainerElement.removeChild(leftResizeHandle);
26
- resizeHandlesContainerElement.removeChild(rightResizeHandle);
27
- }
28
- return;
29
- }
30
- let newWidth;
31
- if (block.props.textAlignment === "center") {
32
- if (resizeParams.handleUsed === "left") {
33
- newWidth =
34
- resizeParams.initialWidth +
35
- (resizeParams.initialClientX - event.clientX) * 2;
36
- }
37
- else {
38
- newWidth =
39
- resizeParams.initialWidth +
40
- (event.clientX - resizeParams.initialClientX) * 2;
41
- }
42
- }
43
- else {
44
- if (resizeParams.handleUsed === "left") {
45
- newWidth =
46
- resizeParams.initialWidth +
47
- resizeParams.initialClientX -
48
- event.clientX;
49
- }
50
- else {
51
- newWidth =
52
- resizeParams.initialWidth +
53
- event.clientX -
54
- resizeParams.initialClientX;
55
- }
56
- }
57
- // Min element width in px.
58
- const minWidth = 64;
59
- // Ensures the element is not wider than the editor and not narrower than a
60
- // predetermined minimum width.
61
- width = Math.max(newWidth, minWidth);
62
- wrapper.style.width = `${width}px`;
63
- };
64
- // Stops mouse movements from resizing the element and updates the block's
65
- // `width` prop to the new value.
66
- const windowMouseUpHandler = (event) => {
67
- // Hides the drag handles if the cursor is no longer over the element.
68
- if ((!event.target ||
69
- !wrapper.contains(event.target) ||
70
- !editor.isEditable) &&
71
- resizeHandlesContainerElement.contains(leftResizeHandle) &&
72
- resizeHandlesContainerElement.contains(rightResizeHandle)) {
73
- resizeHandlesContainerElement.removeChild(leftResizeHandle);
74
- resizeHandlesContainerElement.removeChild(rightResizeHandle);
75
- }
76
- if (!resizeParams) {
77
- return;
78
- }
79
- resizeParams = undefined;
80
- editor.updateBlock(block, {
81
- props: {
82
- previewWidth: width,
83
- },
84
- });
85
- };
86
- // Shows the resize handles when hovering over the wrapper with the cursor.
87
- const wrapperMouseEnterHandler = () => {
88
- if (editor.isEditable) {
89
- resizeHandlesContainerElement.appendChild(leftResizeHandle);
90
- resizeHandlesContainerElement.appendChild(rightResizeHandle);
91
- }
92
- };
93
- // Hides the resize handles when the cursor leaves the wrapper, unless the
94
- // cursor moves to one of the resize handles.
95
- const wrapperMouseLeaveHandler = (event) => {
96
- if (event.relatedTarget === leftResizeHandle ||
97
- event.relatedTarget === rightResizeHandle) {
98
- return;
99
- }
100
- if (resizeParams) {
101
- return;
102
- }
103
- if (editor.isEditable &&
104
- resizeHandlesContainerElement.contains(leftResizeHandle) &&
105
- resizeHandlesContainerElement.contains(rightResizeHandle)) {
106
- resizeHandlesContainerElement.removeChild(leftResizeHandle);
107
- resizeHandlesContainerElement.removeChild(rightResizeHandle);
108
- }
109
- };
110
- // Sets the resize params, allowing the user to begin resizing the element by
111
- // moving the cursor left or right.
112
- const leftResizeHandleMouseDownHandler = (event) => {
113
- event.preventDefault();
114
- resizeParams = {
115
- handleUsed: "left",
116
- initialWidth: wrapper.clientWidth,
117
- initialClientX: event.clientX,
118
- };
119
- };
120
- const rightResizeHandleMouseDownHandler = (event) => {
121
- event.preventDefault();
122
- resizeParams = {
123
- handleUsed: "right",
124
- initialWidth: wrapper.clientWidth,
125
- initialClientX: event.clientX,
126
- };
127
- };
128
- window.addEventListener("mousemove", windowMouseMoveHandler);
129
- window.addEventListener("mouseup", windowMouseUpHandler);
130
- wrapper.addEventListener("mouseenter", wrapperMouseEnterHandler);
131
- wrapper.addEventListener("mouseleave", wrapperMouseLeaveHandler);
132
- leftResizeHandle.addEventListener("mousedown", leftResizeHandleMouseDownHandler);
133
- rightResizeHandle.addEventListener("mousedown", rightResizeHandleMouseDownHandler);
134
- return {
135
- dom: wrapper,
136
- destroy: () => {
137
- destroy?.();
138
- window.removeEventListener("mousemove", windowMouseMoveHandler);
139
- window.removeEventListener("mouseup", windowMouseUpHandler);
140
- wrapper.removeEventListener("mouseenter", wrapperMouseEnterHandler);
141
- wrapper.removeEventListener("mouseleave", wrapperMouseLeaveHandler);
142
- leftResizeHandle.removeEventListener("mousedown", leftResizeHandleMouseDownHandler);
143
- rightResizeHandle.removeEventListener("mousedown", rightResizeHandleMouseDownHandler);
144
- },
145
- };
146
- };
147
- //# sourceMappingURL=createResizableFileBlockWrapper.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"createResizableFileBlockWrapper.js","sourceRoot":"","sources":["../../../../../../src/blocks/FileBlockContent/helpers/render/createResizableFileBlockWrapper.ts"],"names":[],"mappings":"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"}
@@ -1,9 +0,0 @@
1
- export const createFigureWithCaption = (element, caption) => {
2
- const figure = document.createElement("figure");
3
- const captionElement = document.createElement("figcaption");
4
- captionElement.textContent = caption;
5
- figure.appendChild(element);
6
- figure.appendChild(captionElement);
7
- return { dom: figure };
8
- };
9
- //# sourceMappingURL=createFigureWithCaption.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"createFigureWithCaption.js","sourceRoot":"","sources":["../../../../../../src/blocks/FileBlockContent/helpers/toExternalHTML/createFigureWithCaption.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,uBAAuB,GAAG,CACrC,OAAoB,EACpB,OAAe,EACf,EAAE;IACF,MAAM,MAAM,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;IAChD,MAAM,cAAc,GAAG,QAAQ,CAAC,aAAa,CAAC,YAAY,CAAC,CAAC;IAC5D,cAAc,CAAC,WAAW,GAAG,OAAO,CAAC;IAErC,MAAM,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;IAC5B,MAAM,CAAC,WAAW,CAAC,cAAc,CAAC,CAAC;IAEnC,OAAO,EAAE,GAAG,EAAE,MAAM,EAAE,CAAC;AACzB,CAAC,CAAC"}
@@ -1,11 +0,0 @@
1
- export const createLinkWithCaption = (element, caption) => {
2
- const wrapper = document.createElement("div");
3
- const fileCaption = document.createElement("p");
4
- fileCaption.textContent = caption;
5
- wrapper.appendChild(element);
6
- wrapper.appendChild(fileCaption);
7
- return {
8
- dom: wrapper,
9
- };
10
- };
11
- //# sourceMappingURL=createLinkWithCaption.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"createLinkWithCaption.js","sourceRoot":"","sources":["../../../../../../src/blocks/FileBlockContent/helpers/toExternalHTML/createLinkWithCaption.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,qBAAqB,GAAG,CACnC,OAAoB,EACpB,OAAe,EACf,EAAE;IACF,MAAM,OAAO,GAAG,QAAQ,CAAC,aAAa,CAAC,KAAK,CAAC,CAAC;IAC9C,MAAM,WAAW,GAAG,QAAQ,CAAC,aAAa,CAAC,GAAG,CAAC,CAAC;IAChD,WAAW,CAAC,WAAW,GAAG,OAAO,CAAC;IAElC,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC;IAC7B,OAAO,CAAC,WAAW,CAAC,WAAW,CAAC,CAAC;IAEjC,OAAO;QACL,GAAG,EAAE,OAAO;KACb,CAAC;AACJ,CAAC,CAAC"}
@@ -1,15 +0,0 @@
1
- /**
2
- * Uploads a file to tmpfiles.org and returns the URL to the uploaded file.
3
- *
4
- * @warning This function should only be used for development purposes, replace with your own backend!
5
- */
6
- export const uploadToTmpFilesDotOrg_DEV_ONLY = async (file) => {
7
- const body = new FormData();
8
- body.append("file", file);
9
- const ret = await fetch("https://tmpfiles.org/api/v1/upload", {
10
- method: "POST",
11
- body: body,
12
- });
13
- return (await ret.json()).data.url.replace("tmpfiles.org/", "tmpfiles.org/dl/");
14
- };
15
- //# sourceMappingURL=uploadToTmpFilesDotOrg_DEV_ONLY.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"uploadToTmpFilesDotOrg_DEV_ONLY.js","sourceRoot":"","sources":["../../../../src/blocks/FileBlockContent/uploadToTmpFilesDotOrg_DEV_ONLY.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AACH,MAAM,CAAC,MAAM,+BAA+B,GAAG,KAAK,EAClD,IAAU,EACO,EAAE;IACnB,MAAM,IAAI,GAAG,IAAI,QAAQ,EAAE,CAAC;IAC5B,IAAI,CAAC,MAAM,CAAC,MAAM,EAAE,IAAI,CAAC,CAAC;IAE1B,MAAM,GAAG,GAAG,MAAM,KAAK,CAAC,oCAAoC,EAAE;QAC5D,MAAM,EAAE,MAAM;QACd,IAAI,EAAE,IAAI;KACX,CAAC,CAAC;IACH,OAAO,CAAC,MAAM,GAAG,CAAC,IAAI,EAAE,CAAC,CAAC,IAAI,CAAC,GAAG,CAAC,OAAO,CACxC,eAAe,EACf,kBAAkB,CACnB,CAAC;AACJ,CAAC,CAAC"}