@payloadcms/richtext-lexical 3.71.0-canary.3 → 3.71.0-internal-debug.dea9d74

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 (1047) hide show
  1. package/dist/cell/rscEntry.js +74 -72
  2. package/dist/cell/rscEntry.js.map +1 -1
  3. package/dist/dependencyChecker.spec.js +8 -7
  4. package/dist/dependencyChecker.spec.js.map +1 -1
  5. package/dist/exports/client/index.js +85 -65
  6. package/dist/exports/client/index.js.map +1 -7
  7. package/dist/exports/cssEntry.js +1 -0
  8. package/dist/exports/cssEntry.js.map +1 -1
  9. package/dist/exports/html/index.js +1 -0
  10. package/dist/exports/html/index.js.map +1 -1
  11. package/dist/exports/html-async/index.js +1 -0
  12. package/dist/exports/html-async/index.js.map +1 -1
  13. package/dist/exports/plaintext/index.js +1 -0
  14. package/dist/exports/plaintext/index.js.map +1 -1
  15. package/dist/exports/react/index.js +1 -0
  16. package/dist/exports/react/index.js.map +1 -1
  17. package/dist/exports/server/ast/mdx.js +37 -35
  18. package/dist/exports/server/ast/mdx.js.map +1 -1
  19. package/dist/exports/server/migrate.js +1 -0
  20. package/dist/exports/server/migrate.js.map +1 -1
  21. package/dist/exports/server/rsc.js +1 -0
  22. package/dist/exports/server/rsc.js.map +1 -1
  23. package/dist/exports/shared.js +1 -0
  24. package/dist/exports/shared.js.map +1 -1
  25. package/dist/features/align/client/index.js +168 -195
  26. package/dist/features/align/client/index.js.map +1 -1
  27. package/dist/features/align/client/toolbarAlignGroup.js +9 -9
  28. package/dist/features/align/client/toolbarAlignGroup.js.map +1 -1
  29. package/dist/features/align/server/i18n.js +223 -222
  30. package/dist/features/align/server/i18n.js.map +1 -1
  31. package/dist/features/align/server/index.js +6 -5
  32. package/dist/features/align/server/index.js.map +1 -1
  33. package/dist/features/blockquote/client/index.js +65 -60
  34. package/dist/features/blockquote/client/index.js.map +1 -1
  35. package/dist/features/blockquote/markdownTransformer.js +33 -28
  36. package/dist/features/blockquote/markdownTransformer.js.map +1 -1
  37. package/dist/features/blockquote/server/i18n.js +112 -111
  38. package/dist/features/blockquote/server/i18n.js.map +1 -1
  39. package/dist/features/blockquote/server/index.js +47 -48
  40. package/dist/features/blockquote/server/index.js.map +1 -1
  41. package/dist/features/blocks/client/component/BlockContent.js +95 -69
  42. package/dist/features/blocks/client/component/BlockContent.js.map +1 -1
  43. package/dist/features/blocks/client/component/components/BlockCollapsible.js +13 -14
  44. package/dist/features/blocks/client/component/components/BlockCollapsible.js.map +1 -1
  45. package/dist/features/blocks/client/component/components/BlockEditButton.js +9 -17
  46. package/dist/features/blocks/client/component/components/BlockEditButton.js.map +1 -1
  47. package/dist/features/blocks/client/component/components/BlockRemoveButton.js +9 -17
  48. package/dist/features/blocks/client/component/components/BlockRemoveButton.js.map +1 -1
  49. package/dist/features/blocks/client/component/index.js +553 -410
  50. package/dist/features/blocks/client/component/index.js.map +1 -1
  51. package/dist/features/blocks/client/component/index.scss +188 -0
  52. package/dist/features/blocks/client/component/removeEmptyArrayValues.js +8 -11
  53. package/dist/features/blocks/client/component/removeEmptyArrayValues.js.map +1 -1
  54. package/dist/features/blocks/client/componentInline/components/InlineBlockContainer.js +11 -23
  55. package/dist/features/blocks/client/componentInline/components/InlineBlockContainer.js.map +1 -1
  56. package/dist/features/blocks/client/componentInline/components/InlineBlockEditButton.js +9 -17
  57. package/dist/features/blocks/client/componentInline/components/InlineBlockEditButton.js.map +1 -1
  58. package/dist/features/blocks/client/componentInline/components/InlineBlockLabel.js +9 -17
  59. package/dist/features/blocks/client/componentInline/components/InlineBlockLabel.js.map +1 -1
  60. package/dist/features/blocks/client/componentInline/components/InlineBlockRemoveButton.js +9 -17
  61. package/dist/features/blocks/client/componentInline/components/InlineBlockRemoveButton.js.map +1 -1
  62. package/dist/features/blocks/client/componentInline/index.js +468 -340
  63. package/dist/features/blocks/client/componentInline/index.js.map +1 -1
  64. package/dist/features/blocks/client/componentInline/index.scss +100 -0
  65. package/dist/features/blocks/client/getBlockImageComponent.js +17 -12
  66. package/dist/features/blocks/client/getBlockImageComponent.js.map +1 -1
  67. package/dist/features/blocks/client/index.js +141 -146
  68. package/dist/features/blocks/client/index.js.map +1 -1
  69. package/dist/features/blocks/client/markdown/getLexicalToMarkdown.js +18 -18
  70. package/dist/features/blocks/client/markdown/getLexicalToMarkdown.js.map +1 -1
  71. package/dist/features/blocks/client/markdown/getMarkdownToLexical.js +14 -15
  72. package/dist/features/blocks/client/markdown/getMarkdownToLexical.js.map +1 -1
  73. package/dist/features/blocks/client/markdown/markdownTransformer.js +328 -330
  74. package/dist/features/blocks/client/markdown/markdownTransformer.js.map +1 -1
  75. package/dist/features/blocks/client/nodes/BlocksNode.js +44 -40
  76. package/dist/features/blocks/client/nodes/BlocksNode.js.map +1 -1
  77. package/dist/features/blocks/client/nodes/InlineBlocksNode.js +37 -33
  78. package/dist/features/blocks/client/nodes/InlineBlocksNode.js.map +1 -1
  79. package/dist/features/blocks/client/plugin/commands.js +1 -1
  80. package/dist/features/blocks/client/plugin/commands.js.map +1 -1
  81. package/dist/features/blocks/client/plugin/index.js +59 -87
  82. package/dist/features/blocks/client/plugin/index.js.map +1 -1
  83. package/dist/features/blocks/premade/CodeBlock/Component/Block.js +158 -101
  84. package/dist/features/blocks/premade/CodeBlock/Component/Block.js.map +1 -1
  85. package/dist/features/blocks/premade/CodeBlock/Component/Code.js +119 -93
  86. package/dist/features/blocks/premade/CodeBlock/Component/Code.js.map +1 -1
  87. package/dist/features/blocks/premade/CodeBlock/Component/Collapse/index.js +19 -11
  88. package/dist/features/blocks/premade/CodeBlock/Component/Collapse/index.js.map +1 -1
  89. package/dist/features/blocks/premade/CodeBlock/Component/Collapse/index.scss +6 -0
  90. package/dist/features/blocks/premade/CodeBlock/Component/FloatingCollapse/index.js +32 -20
  91. package/dist/features/blocks/premade/CodeBlock/Component/FloatingCollapse/index.js.map +1 -1
  92. package/dist/features/blocks/premade/CodeBlock/Component/FloatingCollapse/index.scss +29 -0
  93. package/dist/features/blocks/premade/CodeBlock/Component/defaultLanguages.js +84 -83
  94. package/dist/features/blocks/premade/CodeBlock/Component/defaultLanguages.js.map +1 -1
  95. package/dist/features/blocks/premade/CodeBlock/Component/index.scss +97 -0
  96. package/dist/features/blocks/premade/CodeBlock/converter.js +36 -40
  97. package/dist/features/blocks/premade/CodeBlock/converter.js.map +1 -1
  98. package/dist/features/blocks/premade/CodeBlock/converterClient.js +1 -1
  99. package/dist/features/blocks/premade/CodeBlock/converterClient.js.map +1 -1
  100. package/dist/features/blocks/premade/CodeBlock/index.js +49 -49
  101. package/dist/features/blocks/premade/CodeBlock/index.js.map +1 -1
  102. package/dist/features/blocks/server/graphQLPopulationPromise.js +29 -44
  103. package/dist/features/blocks/server/graphQLPopulationPromise.js.map +1 -1
  104. package/dist/features/blocks/server/i18n.js +334 -333
  105. package/dist/features/blocks/server/i18n.js.map +1 -1
  106. package/dist/features/blocks/server/index.js +238 -218
  107. package/dist/features/blocks/server/index.js.map +1 -1
  108. package/dist/features/blocks/server/markdown/linesFromMatchToContentAndPropsString.js +123 -122
  109. package/dist/features/blocks/server/markdown/linesFromMatchToContentAndPropsString.js.map +1 -1
  110. package/dist/features/blocks/server/markdown/markdownTransformer.js +347 -349
  111. package/dist/features/blocks/server/markdown/markdownTransformer.js.map +1 -1
  112. package/dist/features/blocks/server/nodes/BlocksNode.js +86 -90
  113. package/dist/features/blocks/server/nodes/BlocksNode.js.map +1 -1
  114. package/dist/features/blocks/server/nodes/InlineBlocksNode.js +84 -87
  115. package/dist/features/blocks/server/nodes/InlineBlocksNode.js.map +1 -1
  116. package/dist/features/blocks/server/validate.js +42 -55
  117. package/dist/features/blocks/server/validate.js.map +1 -1
  118. package/dist/features/converters/htmlToLexical/index.js +21 -24
  119. package/dist/features/converters/htmlToLexical/index.js.map +1 -1
  120. package/dist/features/converters/lexicalToHtml/async/converters/blockquote.js +7 -10
  121. package/dist/features/converters/lexicalToHtml/async/converters/blockquote.js.map +1 -1
  122. package/dist/features/converters/lexicalToHtml/async/converters/heading.js +7 -10
  123. package/dist/features/converters/lexicalToHtml/async/converters/heading.js.map +1 -1
  124. package/dist/features/converters/lexicalToHtml/async/converters/horizontalRule.js +2 -1
  125. package/dist/features/converters/lexicalToHtml/async/converters/horizontalRule.js.map +1 -1
  126. package/dist/features/converters/lexicalToHtml/async/converters/linebreak.js +2 -1
  127. package/dist/features/converters/lexicalToHtml/async/converters/linebreak.js.map +1 -1
  128. package/dist/features/converters/lexicalToHtml/async/converters/link.js +28 -37
  129. package/dist/features/converters/lexicalToHtml/async/converters/link.js.map +1 -1
  130. package/dist/features/converters/lexicalToHtml/async/converters/list.js +18 -26
  131. package/dist/features/converters/lexicalToHtml/async/converters/list.js.map +1 -1
  132. package/dist/features/converters/lexicalToHtml/async/converters/paragraph.js +9 -12
  133. package/dist/features/converters/lexicalToHtml/async/converters/paragraph.js.map +1 -1
  134. package/dist/features/converters/lexicalToHtml/async/converters/tab.js +2 -1
  135. package/dist/features/converters/lexicalToHtml/async/converters/tab.js.map +1 -1
  136. package/dist/features/converters/lexicalToHtml/async/converters/table.js +27 -38
  137. package/dist/features/converters/lexicalToHtml/async/converters/table.js.map +1 -1
  138. package/dist/features/converters/lexicalToHtml/async/converters/text.js +25 -26
  139. package/dist/features/converters/lexicalToHtml/async/converters/text.js.map +1 -1
  140. package/dist/features/converters/lexicalToHtml/async/converters/upload.js +41 -44
  141. package/dist/features/converters/lexicalToHtml/async/converters/upload.js.map +1 -1
  142. package/dist/features/converters/lexicalToHtml/async/defaultConverters.js +12 -11
  143. package/dist/features/converters/lexicalToHtml/async/defaultConverters.js.map +1 -1
  144. package/dist/features/converters/lexicalToHtml/async/field/index.js +56 -56
  145. package/dist/features/converters/lexicalToHtml/async/field/index.js.map +1 -1
  146. package/dist/features/converters/lexicalToHtml/async/index.js +87 -97
  147. package/dist/features/converters/lexicalToHtml/async/index.js.map +1 -1
  148. package/dist/features/converters/lexicalToHtml/async/types.js +4 -1
  149. package/dist/features/converters/lexicalToHtml/async/types.js.map +1 -1
  150. package/dist/features/converters/lexicalToHtml/shared/findConverterForNode.js +57 -62
  151. package/dist/features/converters/lexicalToHtml/shared/findConverterForNode.js.map +1 -1
  152. package/dist/features/converters/lexicalToHtml/shared/types.js +2 -1
  153. package/dist/features/converters/lexicalToHtml/shared/types.js.map +1 -1
  154. package/dist/features/converters/lexicalToHtml/sync/converters/blockquote.js +7 -10
  155. package/dist/features/converters/lexicalToHtml/sync/converters/blockquote.js.map +1 -1
  156. package/dist/features/converters/lexicalToHtml/sync/converters/heading.js +7 -10
  157. package/dist/features/converters/lexicalToHtml/sync/converters/heading.js.map +1 -1
  158. package/dist/features/converters/lexicalToHtml/sync/converters/horizontalRule.js +2 -1
  159. package/dist/features/converters/lexicalToHtml/sync/converters/horizontalRule.js.map +1 -1
  160. package/dist/features/converters/lexicalToHtml/sync/converters/linebreak.js +2 -1
  161. package/dist/features/converters/lexicalToHtml/sync/converters/linebreak.js.map +1 -1
  162. package/dist/features/converters/lexicalToHtml/sync/converters/link.js +27 -35
  163. package/dist/features/converters/lexicalToHtml/sync/converters/link.js.map +1 -1
  164. package/dist/features/converters/lexicalToHtml/sync/converters/list.js +18 -26
  165. package/dist/features/converters/lexicalToHtml/sync/converters/list.js.map +1 -1
  166. package/dist/features/converters/lexicalToHtml/sync/converters/paragraph.js +9 -12
  167. package/dist/features/converters/lexicalToHtml/sync/converters/paragraph.js.map +1 -1
  168. package/dist/features/converters/lexicalToHtml/sync/converters/tab.js +2 -1
  169. package/dist/features/converters/lexicalToHtml/sync/converters/tab.js.map +1 -1
  170. package/dist/features/converters/lexicalToHtml/sync/converters/table.js +27 -38
  171. package/dist/features/converters/lexicalToHtml/sync/converters/table.js.map +1 -1
  172. package/dist/features/converters/lexicalToHtml/sync/converters/text.js +25 -26
  173. package/dist/features/converters/lexicalToHtml/sync/converters/text.js.map +1 -1
  174. package/dist/features/converters/lexicalToHtml/sync/converters/upload.js +35 -37
  175. package/dist/features/converters/lexicalToHtml/sync/converters/upload.js.map +1 -1
  176. package/dist/features/converters/lexicalToHtml/sync/defaultConverters.js +12 -11
  177. package/dist/features/converters/lexicalToHtml/sync/defaultConverters.js.map +1 -1
  178. package/dist/features/converters/lexicalToHtml/sync/index.js +84 -92
  179. package/dist/features/converters/lexicalToHtml/sync/index.js.map +1 -1
  180. package/dist/features/converters/lexicalToHtml/sync/types.js +4 -1
  181. package/dist/features/converters/lexicalToHtml/sync/types.js.map +1 -1
  182. package/dist/features/converters/lexicalToHtml_deprecated/converter/converters/linebreak.js +7 -4
  183. package/dist/features/converters/lexicalToHtml_deprecated/converter/converters/linebreak.js.map +1 -1
  184. package/dist/features/converters/lexicalToHtml_deprecated/converter/converters/paragraph.js +29 -34
  185. package/dist/features/converters/lexicalToHtml_deprecated/converter/converters/paragraph.js.map +1 -1
  186. package/dist/features/converters/lexicalToHtml_deprecated/converter/converters/tab.js +7 -6
  187. package/dist/features/converters/lexicalToHtml_deprecated/converter/converters/tab.js.map +1 -1
  188. package/dist/features/converters/lexicalToHtml_deprecated/converter/converters/text.js +29 -28
  189. package/dist/features/converters/lexicalToHtml_deprecated/converter/converters/text.js.map +1 -1
  190. package/dist/features/converters/lexicalToHtml_deprecated/converter/defaultConverters.js +7 -2
  191. package/dist/features/converters/lexicalToHtml_deprecated/converter/defaultConverters.js.map +1 -1
  192. package/dist/features/converters/lexicalToHtml_deprecated/converter/index.js +84 -84
  193. package/dist/features/converters/lexicalToHtml_deprecated/converter/index.js.map +1 -1
  194. package/dist/features/converters/lexicalToHtml_deprecated/converter/types.js +6 -1
  195. package/dist/features/converters/lexicalToHtml_deprecated/converter/types.js.map +1 -1
  196. package/dist/features/converters/lexicalToHtml_deprecated/field/index.js +107 -107
  197. package/dist/features/converters/lexicalToHtml_deprecated/field/index.js.map +1 -1
  198. package/dist/features/converters/lexicalToHtml_deprecated/index.js +4 -4
  199. package/dist/features/converters/lexicalToHtml_deprecated/index.js.map +1 -1
  200. package/dist/features/converters/lexicalToJSX/Component/index.js +46 -36
  201. package/dist/features/converters/lexicalToJSX/Component/index.js.map +1 -1
  202. package/dist/features/converters/lexicalToJSX/converter/converters/blockquote.js +14 -12
  203. package/dist/features/converters/lexicalToJSX/converter/converters/blockquote.js.map +1 -1
  204. package/dist/features/converters/lexicalToJSX/converter/converters/heading.js +15 -13
  205. package/dist/features/converters/lexicalToJSX/converter/converters/heading.js.map +1 -1
  206. package/dist/features/converters/lexicalToJSX/converter/converters/horizontalRule.js +7 -2
  207. package/dist/features/converters/lexicalToJSX/converter/converters/horizontalRule.js.map +1 -1
  208. package/dist/features/converters/lexicalToJSX/converter/converters/linebreak.js +7 -2
  209. package/dist/features/converters/lexicalToJSX/converter/converters/linebreak.js.map +1 -1
  210. package/dist/features/converters/lexicalToJSX/converter/converters/link.js +49 -47
  211. package/dist/features/converters/lexicalToJSX/converter/converters/link.js.map +1 -1
  212. package/dist/features/converters/lexicalToJSX/converter/converters/list.js +78 -56
  213. package/dist/features/converters/lexicalToJSX/converter/converters/list.js.map +1 -1
  214. package/dist/features/converters/lexicalToJSX/converter/converters/paragraph.js +26 -16
  215. package/dist/features/converters/lexicalToJSX/converter/converters/paragraph.js.map +1 -1
  216. package/dist/features/converters/lexicalToJSX/converter/converters/tab.js +2 -1
  217. package/dist/features/converters/lexicalToJSX/converter/converters/tab.js.map +1 -1
  218. package/dist/features/converters/lexicalToJSX/converter/converters/table.js +73 -59
  219. package/dist/features/converters/lexicalToJSX/converter/converters/table.js.map +1 -1
  220. package/dist/features/converters/lexicalToJSX/converter/converters/text.js +74 -47
  221. package/dist/features/converters/lexicalToJSX/converter/converters/text.js.map +1 -1
  222. package/dist/features/converters/lexicalToJSX/converter/converters/upload.js +77 -61
  223. package/dist/features/converters/lexicalToJSX/converter/converters/upload.js.map +1 -1
  224. package/dist/features/converters/lexicalToJSX/converter/defaultConverters.js +12 -11
  225. package/dist/features/converters/lexicalToJSX/converter/defaultConverters.js.map +1 -1
  226. package/dist/features/converters/lexicalToJSX/converter/index.js +123 -128
  227. package/dist/features/converters/lexicalToJSX/converter/index.js.map +1 -1
  228. package/dist/features/converters/lexicalToJSX/converter/types.js +4 -1
  229. package/dist/features/converters/lexicalToJSX/converter/types.js.map +1 -1
  230. package/dist/features/converters/lexicalToMarkdown/index.js +17 -19
  231. package/dist/features/converters/lexicalToMarkdown/index.js.map +1 -1
  232. package/dist/features/converters/lexicalToPlaintext/convertLexicalToPlaintext.spec.js +223 -146
  233. package/dist/features/converters/lexicalToPlaintext/convertLexicalToPlaintext.spec.js.map +1 -1
  234. package/dist/features/converters/lexicalToPlaintext/shared/findConverterForNode.js +11 -13
  235. package/dist/features/converters/lexicalToPlaintext/shared/findConverterForNode.js.map +1 -1
  236. package/dist/features/converters/lexicalToPlaintext/shared/types.js +2 -1
  237. package/dist/features/converters/lexicalToPlaintext/shared/types.js.map +1 -1
  238. package/dist/features/converters/lexicalToPlaintext/sync/index.js +83 -82
  239. package/dist/features/converters/lexicalToPlaintext/sync/index.js.map +1 -1
  240. package/dist/features/converters/lexicalToPlaintext/sync/types.js +3 -1
  241. package/dist/features/converters/lexicalToPlaintext/sync/types.js.map +1 -1
  242. package/dist/features/converters/markdownToLexical/index.js +14 -16
  243. package/dist/features/converters/markdownToLexical/index.js.map +1 -1
  244. package/dist/features/converters/utilities/payloadPopulateFn.js +37 -38
  245. package/dist/features/converters/utilities/payloadPopulateFn.js.map +1 -1
  246. package/dist/features/converters/utilities/restPopulateFn.js +24 -30
  247. package/dist/features/converters/utilities/restPopulateFn.js.map +1 -1
  248. package/dist/features/debug/jsxConverter/client/index.js +7 -5
  249. package/dist/features/debug/jsxConverter/client/index.js.map +1 -1
  250. package/dist/features/debug/jsxConverter/client/plugin/index.js +27 -47
  251. package/dist/features/debug/jsxConverter/client/plugin/index.js.map +1 -1
  252. package/dist/features/debug/jsxConverter/client/plugin/style.scss +12 -0
  253. package/dist/features/debug/jsxConverter/server/index.js +5 -4
  254. package/dist/features/debug/jsxConverter/server/index.js.map +1 -1
  255. package/dist/features/debug/testRecorder/client/index.js +7 -5
  256. package/dist/features/debug/testRecorder/client/index.js.map +1 -1
  257. package/dist/features/debug/testRecorder/client/plugin/index.js +456 -365
  258. package/dist/features/debug/testRecorder/client/plugin/index.js.map +1 -1
  259. package/dist/features/debug/testRecorder/client/plugin/index.scss +53 -0
  260. package/dist/features/debug/testRecorder/server/index.js +5 -4
  261. package/dist/features/debug/testRecorder/server/index.js.map +1 -1
  262. package/dist/features/debug/treeView/client/index.js +7 -5
  263. package/dist/features/debug/treeView/client/index.js.map +1 -1
  264. package/dist/features/debug/treeView/client/plugin/index.js +18 -23
  265. package/dist/features/debug/treeView/client/plugin/index.js.map +1 -1
  266. package/dist/features/debug/treeView/client/plugin/index.scss +80 -0
  267. package/dist/features/debug/treeView/server/index.js +5 -4
  268. package/dist/features/debug/treeView/server/index.js.map +1 -1
  269. package/dist/features/experimental_table/client/index.js +61 -42
  270. package/dist/features/experimental_table/client/index.js.map +1 -1
  271. package/dist/features/experimental_table/client/plugins/TableActionMenuPlugin/index.js +752 -517
  272. package/dist/features/experimental_table/client/plugins/TableActionMenuPlugin/index.js.map +1 -1
  273. package/dist/features/experimental_table/client/plugins/TableActionMenuPlugin/index.scss +87 -0
  274. package/dist/features/experimental_table/client/plugins/TableCellResizerPlugin/index.js +350 -316
  275. package/dist/features/experimental_table/client/plugins/TableCellResizerPlugin/index.js.map +1 -1
  276. package/dist/features/experimental_table/client/plugins/TableCellResizerPlugin/index.scss +11 -0
  277. package/dist/features/experimental_table/client/plugins/TableHoverActionsPlugin/index.js +215 -225
  278. package/dist/features/experimental_table/client/plugins/TableHoverActionsPlugin/index.js.map +1 -1
  279. package/dist/features/experimental_table/client/plugins/TablePlugin/index.js +104 -133
  280. package/dist/features/experimental_table/client/plugins/TablePlugin/index.js.map +1 -1
  281. package/dist/features/experimental_table/client/plugins/TablePlugin/index.scss +233 -0
  282. package/dist/features/experimental_table/client/utils/debounce.js +89 -107
  283. package/dist/features/experimental_table/client/utils/debounce.js.map +1 -1
  284. package/dist/features/experimental_table/client/utils/useDebounce.js +21 -39
  285. package/dist/features/experimental_table/client/utils/useDebounce.js.map +1 -1
  286. package/dist/features/experimental_table/markdownTransformer.js +123 -118
  287. package/dist/features/experimental_table/markdownTransformer.js.map +1 -1
  288. package/dist/features/experimental_table/server/index.js +125 -143
  289. package/dist/features/experimental_table/server/index.js.map +1 -1
  290. package/dist/features/format/bold/feature.client.js +38 -35
  291. package/dist/features/format/bold/feature.client.js.map +1 -1
  292. package/dist/features/format/bold/feature.server.js +18 -14
  293. package/dist/features/format/bold/feature.server.js.map +1 -1
  294. package/dist/features/format/bold/markdownTransformers.js +25 -14
  295. package/dist/features/format/bold/markdownTransformers.js.map +1 -1
  296. package/dist/features/format/inlineCode/feature.client.js +31 -27
  297. package/dist/features/format/inlineCode/feature.client.js.map +1 -1
  298. package/dist/features/format/inlineCode/feature.server.js +8 -5
  299. package/dist/features/format/inlineCode/feature.server.js.map +1 -1
  300. package/dist/features/format/inlineCode/markdownTransformers.js +6 -3
  301. package/dist/features/format/inlineCode/markdownTransformers.js.map +1 -1
  302. package/dist/features/format/italic/feature.client.js +32 -27
  303. package/dist/features/format/italic/feature.client.js.map +1 -1
  304. package/dist/features/format/italic/feature.server.js +9 -5
  305. package/dist/features/format/italic/feature.server.js.map +1 -1
  306. package/dist/features/format/italic/markdownTransformers.js +12 -7
  307. package/dist/features/format/italic/markdownTransformers.js.map +1 -1
  308. package/dist/features/format/shared/toolbarFormatGroup.js +8 -8
  309. package/dist/features/format/shared/toolbarFormatGroup.js.map +1 -1
  310. package/dist/features/format/strikethrough/feature.client.js +31 -27
  311. package/dist/features/format/strikethrough/feature.client.js.map +1 -1
  312. package/dist/features/format/strikethrough/feature.server.js +8 -5
  313. package/dist/features/format/strikethrough/feature.server.js.map +1 -1
  314. package/dist/features/format/strikethrough/markdownTransformers.js +6 -3
  315. package/dist/features/format/strikethrough/markdownTransformers.js.map +1 -1
  316. package/dist/features/format/subscript/feature.client.js +28 -26
  317. package/dist/features/format/subscript/feature.client.js.map +1 -1
  318. package/dist/features/format/subscript/feature.server.js +5 -4
  319. package/dist/features/format/subscript/feature.server.js.map +1 -1
  320. package/dist/features/format/superscript/feature.client.js +28 -26
  321. package/dist/features/format/superscript/feature.client.js.map +1 -1
  322. package/dist/features/format/superscript/feature.server.js +5 -4
  323. package/dist/features/format/superscript/feature.server.js.map +1 -1
  324. package/dist/features/format/underline/feature.client.js +28 -26
  325. package/dist/features/format/underline/feature.client.js.map +1 -1
  326. package/dist/features/format/underline/feature.server.js +5 -4
  327. package/dist/features/format/underline/feature.server.js.map +1 -1
  328. package/dist/features/heading/client/index.js +121 -142
  329. package/dist/features/heading/client/index.js.map +1 -1
  330. package/dist/features/heading/markdownTransformer.js +25 -22
  331. package/dist/features/heading/markdownTransformer.js.map +1 -1
  332. package/dist/features/heading/server/i18n.js +112 -111
  333. package/dist/features/heading/server/i18n.js.map +1 -1
  334. package/dist/features/heading/server/index.js +62 -60
  335. package/dist/features/heading/server/index.js.map +1 -1
  336. package/dist/features/horizontalRule/client/index.js +57 -48
  337. package/dist/features/horizontalRule/client/index.js.map +1 -1
  338. package/dist/features/horizontalRule/client/markdownTransformer.js +18 -15
  339. package/dist/features/horizontalRule/client/markdownTransformer.js.map +1 -1
  340. package/dist/features/horizontalRule/client/nodes/HorizontalRuleNode.js +25 -27
  341. package/dist/features/horizontalRule/client/nodes/HorizontalRuleNode.js.map +1 -1
  342. package/dist/features/horizontalRule/client/plugin/index.js +21 -32
  343. package/dist/features/horizontalRule/client/plugin/index.js.map +1 -1
  344. package/dist/features/horizontalRule/client/plugin/index.scss +23 -0
  345. package/dist/features/horizontalRule/server/i18n.js +112 -111
  346. package/dist/features/horizontalRule/server/i18n.js.map +1 -1
  347. package/dist/features/horizontalRule/server/index.js +24 -17
  348. package/dist/features/horizontalRule/server/index.js.map +1 -1
  349. package/dist/features/horizontalRule/server/markdownTransformer.js +18 -15
  350. package/dist/features/horizontalRule/server/markdownTransformer.js.map +1 -1
  351. package/dist/features/horizontalRule/server/nodes/HorizontalRuleNode.js +69 -72
  352. package/dist/features/horizontalRule/server/nodes/HorizontalRuleNode.js.map +1 -1
  353. package/dist/features/indent/client/IndentPlugin.js +78 -78
  354. package/dist/features/indent/client/IndentPlugin.js.map +1 -1
  355. package/dist/features/indent/client/index.js +68 -77
  356. package/dist/features/indent/client/index.js.map +1 -1
  357. package/dist/features/indent/client/toolbarIndentGroup.js +8 -8
  358. package/dist/features/indent/client/toolbarIndentGroup.js.map +1 -1
  359. package/dist/features/indent/server/i18n.js +149 -148
  360. package/dist/features/indent/server/i18n.js.map +1 -1
  361. package/dist/features/indent/server/index.js +18 -11
  362. package/dist/features/indent/server/index.js.map +1 -1
  363. package/dist/features/link/client/index.js +83 -80
  364. package/dist/features/link/client/index.js.map +1 -1
  365. package/dist/features/link/client/plugins/autoLink/index.js +280 -273
  366. package/dist/features/link/client/plugins/autoLink/index.js.map +1 -1
  367. package/dist/features/link/client/plugins/clickableLink/index.js +8 -4
  368. package/dist/features/link/client/plugins/clickableLink/index.js.map +1 -1
  369. package/dist/features/link/client/plugins/floatingLinkEditor/LinkEditor/commands.js +1 -1
  370. package/dist/features/link/client/plugins/floatingLinkEditor/LinkEditor/commands.js.map +1 -1
  371. package/dist/features/link/client/plugins/floatingLinkEditor/LinkEditor/index.js +378 -297
  372. package/dist/features/link/client/plugins/floatingLinkEditor/LinkEditor/index.js.map +1 -1
  373. package/dist/features/link/client/plugins/floatingLinkEditor/index.js +12 -9
  374. package/dist/features/link/client/plugins/floatingLinkEditor/index.js.map +1 -1
  375. package/dist/features/link/client/plugins/floatingLinkEditor/index.scss +92 -0
  376. package/dist/features/link/client/plugins/floatingLinkEditor/types.js +6 -1
  377. package/dist/features/link/client/plugins/floatingLinkEditor/types.js.map +1 -1
  378. package/dist/features/link/client/plugins/link/index.js +53 -68
  379. package/dist/features/link/client/plugins/link/index.js.map +1 -1
  380. package/dist/features/link/markdownTransformer.js +34 -33
  381. package/dist/features/link/markdownTransformer.js.map +1 -1
  382. package/dist/features/link/nodes/AutoLinkNode.js +56 -58
  383. package/dist/features/link/nodes/AutoLinkNode.js.map +1 -1
  384. package/dist/features/link/nodes/LinkNode.js +286 -288
  385. package/dist/features/link/nodes/LinkNode.js.map +1 -1
  386. package/dist/features/link/nodes/types.js +6 -1
  387. package/dist/features/link/nodes/types.js.map +1 -1
  388. package/dist/features/link/server/baseFields.js +115 -140
  389. package/dist/features/link/server/baseFields.js.map +1 -1
  390. package/dist/features/link/server/graphQLPopulationPromise.js +29 -45
  391. package/dist/features/link/server/graphQLPopulationPromise.js.map +1 -1
  392. package/dist/features/link/server/i18n.js +149 -148
  393. package/dist/features/link/server/i18n.js.map +1 -1
  394. package/dist/features/link/server/index.js +156 -143
  395. package/dist/features/link/server/index.js.map +1 -1
  396. package/dist/features/link/server/transformExtraFields.js +15 -15
  397. package/dist/features/link/server/transformExtraFields.js.map +1 -1
  398. package/dist/features/link/server/validate.js +35 -46
  399. package/dist/features/link/server/validate.js.map +1 -1
  400. package/dist/features/lists/checklist/client/index.js +86 -78
  401. package/dist/features/lists/checklist/client/index.js.map +1 -1
  402. package/dist/features/lists/checklist/client/plugin/index.js +8 -4
  403. package/dist/features/lists/checklist/client/plugin/index.js.map +1 -1
  404. package/dist/features/lists/checklist/markdownTransformers.js +11 -7
  405. package/dist/features/lists/checklist/markdownTransformers.js.map +1 -1
  406. package/dist/features/lists/checklist/server/i18n.js +112 -111
  407. package/dist/features/lists/checklist/server/i18n.js.map +1 -1
  408. package/dist/features/lists/checklist/server/index.js +26 -21
  409. package/dist/features/lists/checklist/server/index.js.map +1 -1
  410. package/dist/features/lists/htmlConverter.js +47 -62
  411. package/dist/features/lists/htmlConverter.js.map +1 -1
  412. package/dist/features/lists/orderedList/client/index.js +78 -72
  413. package/dist/features/lists/orderedList/client/index.js.map +1 -1
  414. package/dist/features/lists/orderedList/markdownTransformer.js +11 -7
  415. package/dist/features/lists/orderedList/markdownTransformer.js.map +1 -1
  416. package/dist/features/lists/orderedList/server/i18n.js +112 -111
  417. package/dist/features/lists/orderedList/server/i18n.js.map +1 -1
  418. package/dist/features/lists/orderedList/server/index.js +26 -21
  419. package/dist/features/lists/orderedList/server/index.js.map +1 -1
  420. package/dist/features/lists/plugin/index.js +8 -4
  421. package/dist/features/lists/plugin/index.js.map +1 -1
  422. package/dist/features/lists/shared/markdown.js +49 -48
  423. package/dist/features/lists/shared/markdown.js.map +1 -1
  424. package/dist/features/lists/shared/shouldRegisterListBaseNodes.js +10 -9
  425. package/dist/features/lists/shared/shouldRegisterListBaseNodes.js.map +1 -1
  426. package/dist/features/lists/shared/slashMenuListGroup.js +8 -9
  427. package/dist/features/lists/shared/slashMenuListGroup.js.map +1 -1
  428. package/dist/features/lists/unorderedList/client/index.js +76 -68
  429. package/dist/features/lists/unorderedList/client/index.js.map +1 -1
  430. package/dist/features/lists/unorderedList/markdownTransformer.js +11 -7
  431. package/dist/features/lists/unorderedList/markdownTransformer.js.map +1 -1
  432. package/dist/features/lists/unorderedList/server/i18n.js +112 -111
  433. package/dist/features/lists/unorderedList/server/i18n.js.map +1 -1
  434. package/dist/features/lists/unorderedList/server/index.js +24 -17
  435. package/dist/features/lists/unorderedList/server/index.js.map +1 -1
  436. package/dist/features/migrations/lexicalPluginToLexical/converter/converters/heading/converter.js +17 -18
  437. package/dist/features/migrations/lexicalPluginToLexical/converter/converters/heading/converter.js.map +1 -1
  438. package/dist/features/migrations/lexicalPluginToLexical/converter/converters/link/converter.js +29 -30
  439. package/dist/features/migrations/lexicalPluginToLexical/converter/converters/link/converter.js.map +1 -1
  440. package/dist/features/migrations/lexicalPluginToLexical/converter/converters/list/converter.js +20 -21
  441. package/dist/features/migrations/lexicalPluginToLexical/converter/converters/list/converter.js.map +1 -1
  442. package/dist/features/migrations/lexicalPluginToLexical/converter/converters/listItem/converter.js +19 -21
  443. package/dist/features/migrations/lexicalPluginToLexical/converter/converters/listItem/converter.js.map +1 -1
  444. package/dist/features/migrations/lexicalPluginToLexical/converter/converters/quote/converter.js +17 -18
  445. package/dist/features/migrations/lexicalPluginToLexical/converter/converters/quote/converter.js.map +1 -1
  446. package/dist/features/migrations/lexicalPluginToLexical/converter/converters/unknown/converter.js +23 -24
  447. package/dist/features/migrations/lexicalPluginToLexical/converter/converters/unknown/converter.js.map +1 -1
  448. package/dist/features/migrations/lexicalPluginToLexical/converter/converters/upload/converter.js +21 -20
  449. package/dist/features/migrations/lexicalPluginToLexical/converter/converters/upload/converter.js.map +1 -1
  450. package/dist/features/migrations/lexicalPluginToLexical/converter/defaultConverters.js +10 -1
  451. package/dist/features/migrations/lexicalPluginToLexical/converter/defaultConverters.js.map +1 -1
  452. package/dist/features/migrations/lexicalPluginToLexical/converter/index.js +64 -70
  453. package/dist/features/migrations/lexicalPluginToLexical/converter/index.js.map +1 -1
  454. package/dist/features/migrations/lexicalPluginToLexical/converter/types.js +2 -1
  455. package/dist/features/migrations/lexicalPluginToLexical/converter/types.js.map +1 -1
  456. package/dist/features/migrations/lexicalPluginToLexical/feature.client.js +7 -5
  457. package/dist/features/migrations/lexicalPluginToLexical/feature.client.js.map +1 -1
  458. package/dist/features/migrations/lexicalPluginToLexical/feature.server.js +43 -42
  459. package/dist/features/migrations/lexicalPluginToLexical/feature.server.js.map +1 -1
  460. package/dist/features/migrations/lexicalPluginToLexical/nodes/unknownConvertedNode/Component.js +21 -11
  461. package/dist/features/migrations/lexicalPluginToLexical/nodes/unknownConvertedNode/Component.js.map +1 -1
  462. package/dist/features/migrations/lexicalPluginToLexical/nodes/unknownConvertedNode/index.js +65 -66
  463. package/dist/features/migrations/lexicalPluginToLexical/nodes/unknownConvertedNode/index.js.map +1 -1
  464. package/dist/features/migrations/lexicalPluginToLexical/nodes/unknownConvertedNode/index.scss +16 -0
  465. package/dist/features/migrations/slateToLexical/converter/converters/blockquote/converter.js +19 -19
  466. package/dist/features/migrations/slateToLexical/converter/converters/blockquote/converter.js.map +1 -1
  467. package/dist/features/migrations/slateToLexical/converter/converters/heading/converter.js +26 -20
  468. package/dist/features/migrations/slateToLexical/converter/converters/heading/converter.js.map +1 -1
  469. package/dist/features/migrations/slateToLexical/converter/converters/indent/converter.js +30 -28
  470. package/dist/features/migrations/slateToLexical/converter/converters/indent/converter.js.map +1 -1
  471. package/dist/features/migrations/slateToLexical/converter/converters/link/converter.js +27 -26
  472. package/dist/features/migrations/slateToLexical/converter/converters/link/converter.js.map +1 -1
  473. package/dist/features/migrations/slateToLexical/converter/converters/listItem/converter.js +21 -22
  474. package/dist/features/migrations/slateToLexical/converter/converters/listItem/converter.js.map +1 -1
  475. package/dist/features/migrations/slateToLexical/converter/converters/orderedList/converter.js +22 -22
  476. package/dist/features/migrations/slateToLexical/converter/converters/orderedList/converter.js.map +1 -1
  477. package/dist/features/migrations/slateToLexical/converter/converters/relationship/converter.js +13 -12
  478. package/dist/features/migrations/slateToLexical/converter/converters/relationship/converter.js.map +1 -1
  479. package/dist/features/migrations/slateToLexical/converter/converters/unknown/converter.js +23 -23
  480. package/dist/features/migrations/slateToLexical/converter/converters/unknown/converter.js.map +1 -1
  481. package/dist/features/migrations/slateToLexical/converter/converters/unorderedList/converter.js +22 -22
  482. package/dist/features/migrations/slateToLexical/converter/converters/unorderedList/converter.js.map +1 -1
  483. package/dist/features/migrations/slateToLexical/converter/converters/upload/converter.js +16 -15
  484. package/dist/features/migrations/slateToLexical/converter/converters/upload/converter.js.map +1 -1
  485. package/dist/features/migrations/slateToLexical/converter/defaultConverters.js +13 -1
  486. package/dist/features/migrations/slateToLexical/converter/defaultConverters.js.map +1 -1
  487. package/dist/features/migrations/slateToLexical/converter/index.js +110 -117
  488. package/dist/features/migrations/slateToLexical/converter/index.js.map +1 -1
  489. package/dist/features/migrations/slateToLexical/converter/types.js +2 -1
  490. package/dist/features/migrations/slateToLexical/converter/types.js.map +1 -1
  491. package/dist/features/migrations/slateToLexical/feature.client.js +7 -5
  492. package/dist/features/migrations/slateToLexical/feature.client.js.map +1 -1
  493. package/dist/features/migrations/slateToLexical/feature.server.js +54 -45
  494. package/dist/features/migrations/slateToLexical/feature.server.js.map +1 -1
  495. package/dist/features/migrations/slateToLexical/nodes/unknownConvertedNode/Component.js +21 -11
  496. package/dist/features/migrations/slateToLexical/nodes/unknownConvertedNode/Component.js.map +1 -1
  497. package/dist/features/migrations/slateToLexical/nodes/unknownConvertedNode/index.js +65 -66
  498. package/dist/features/migrations/slateToLexical/nodes/unknownConvertedNode/index.js.map +1 -1
  499. package/dist/features/migrations/slateToLexical/nodes/unknownConvertedNode/index.scss +16 -0
  500. package/dist/features/paragraph/client/index.js +61 -58
  501. package/dist/features/paragraph/client/index.js.map +1 -1
  502. package/dist/features/paragraph/server/i18n.js +149 -148
  503. package/dist/features/paragraph/server/i18n.js.map +1 -1
  504. package/dist/features/paragraph/server/index.js +7 -6
  505. package/dist/features/paragraph/server/index.js.map +1 -1
  506. package/dist/features/relationship/client/components/RelationshipComponent.js +147 -118
  507. package/dist/features/relationship/client/components/RelationshipComponent.js.map +1 -1
  508. package/dist/features/relationship/client/components/index.scss +95 -0
  509. package/dist/features/relationship/client/drawer/commands.js +1 -0
  510. package/dist/features/relationship/client/drawer/commands.js.map +1 -1
  511. package/dist/features/relationship/client/drawer/index.js +81 -132
  512. package/dist/features/relationship/client/drawer/index.js.map +1 -1
  513. package/dist/features/relationship/client/index.js +59 -53
  514. package/dist/features/relationship/client/index.js.map +1 -1
  515. package/dist/features/relationship/client/nodes/RelationshipNode.js +64 -60
  516. package/dist/features/relationship/client/nodes/RelationshipNode.js.map +1 -1
  517. package/dist/features/relationship/client/plugins/index.js +39 -69
  518. package/dist/features/relationship/client/plugins/index.js.map +1 -1
  519. package/dist/features/relationship/client/utils/useEnabledRelationships.js +48 -58
  520. package/dist/features/relationship/client/utils/useEnabledRelationships.js.map +1 -1
  521. package/dist/features/relationship/server/graphQLPopulationPromise.js +26 -34
  522. package/dist/features/relationship/server/graphQLPopulationPromise.js.map +1 -1
  523. package/dist/features/relationship/server/i18n.js +112 -111
  524. package/dist/features/relationship/server/i18n.js.map +1 -1
  525. package/dist/features/relationship/server/index.js +64 -59
  526. package/dist/features/relationship/server/index.js.map +1 -1
  527. package/dist/features/relationship/server/nodes/RelationshipNode.js +92 -95
  528. package/dist/features/relationship/server/nodes/RelationshipNode.js.map +1 -1
  529. package/dist/features/shared/slashMenu/basicGroup.js +8 -9
  530. package/dist/features/shared/slashMenu/basicGroup.js.map +1 -1
  531. package/dist/features/shared/toolbar/addDropdownGroup.js +9 -8
  532. package/dist/features/shared/toolbar/addDropdownGroup.js.map +1 -1
  533. package/dist/features/shared/toolbar/featureButtonsGroup.js +8 -7
  534. package/dist/features/shared/toolbar/featureButtonsGroup.js.map +1 -1
  535. package/dist/features/shared/toolbar/textDropdownGroup.js +9 -8
  536. package/dist/features/shared/toolbar/textDropdownGroup.js.map +1 -1
  537. package/dist/features/textState/defaultColors.js +370 -370
  538. package/dist/features/textState/defaultColors.js.map +1 -1
  539. package/dist/features/textState/feature.client.js +77 -64
  540. package/dist/features/textState/feature.client.js.map +1 -1
  541. package/dist/features/textState/feature.server.js +46 -14
  542. package/dist/features/textState/feature.server.js.map +1 -1
  543. package/dist/features/textState/i18n.js +112 -111
  544. package/dist/features/textState/i18n.js.map +1 -1
  545. package/dist/features/textState/textState.js +64 -62
  546. package/dist/features/textState/textState.js.map +1 -1
  547. package/dist/features/toolbars/fixed/client/Toolbar/index.js +263 -297
  548. package/dist/features/toolbars/fixed/client/Toolbar/index.js.map +1 -1
  549. package/dist/features/toolbars/fixed/client/Toolbar/index.scss +113 -0
  550. package/dist/features/toolbars/fixed/client/index.js +7 -5
  551. package/dist/features/toolbars/fixed/client/index.js.map +1 -1
  552. package/dist/features/toolbars/fixed/server/index.js +32 -16
  553. package/dist/features/toolbars/fixed/server/index.js.map +1 -1
  554. package/dist/features/toolbars/inline/client/Toolbar/index.js +343 -366
  555. package/dist/features/toolbars/inline/client/Toolbar/index.js.map +1 -1
  556. package/dist/features/toolbars/inline/client/Toolbar/index.scss +58 -0
  557. package/dist/features/toolbars/inline/client/index.js +7 -5
  558. package/dist/features/toolbars/inline/client/index.js.map +1 -1
  559. package/dist/features/toolbars/inline/server/index.js +5 -4
  560. package/dist/features/toolbars/inline/server/index.js.map +1 -1
  561. package/dist/features/toolbars/shared/ToolbarButton/index.js +103 -145
  562. package/dist/features/toolbars/shared/ToolbarButton/index.js.map +1 -1
  563. package/dist/features/toolbars/shared/ToolbarButton/index.scss +46 -0
  564. package/dist/features/toolbars/shared/ToolbarDropdown/DropDown.js +264 -208
  565. package/dist/features/toolbars/shared/ToolbarDropdown/DropDown.js.map +1 -1
  566. package/dist/features/toolbars/shared/ToolbarDropdown/index.js +172 -176
  567. package/dist/features/toolbars/shared/ToolbarDropdown/index.js.map +1 -1
  568. package/dist/features/toolbars/shared/ToolbarDropdown/index.scss +129 -0
  569. package/dist/features/toolbars/types.js +29 -1
  570. package/dist/features/toolbars/types.js.map +1 -1
  571. package/dist/features/typeUtilities.js +3 -2
  572. package/dist/features/typeUtilities.js.map +1 -1
  573. package/dist/features/typesClient.js +61 -1
  574. package/dist/features/typesClient.js.map +1 -1
  575. package/dist/features/typesServer.js +90 -1
  576. package/dist/features/typesServer.js.map +1 -1
  577. package/dist/features/upload/client/component/index.js +242 -189
  578. package/dist/features/upload/client/component/index.js.map +1 -1
  579. package/dist/features/upload/client/component/index.scss +191 -0
  580. package/dist/features/upload/client/component/pending/index.js +19 -10
  581. package/dist/features/upload/client/component/pending/index.js.map +1 -1
  582. package/dist/features/upload/client/drawer/commands.js +1 -1
  583. package/dist/features/upload/client/drawer/commands.js.map +1 -1
  584. package/dist/features/upload/client/drawer/index.js +83 -132
  585. package/dist/features/upload/client/drawer/index.js.map +1 -1
  586. package/dist/features/upload/client/index.js +61 -51
  587. package/dist/features/upload/client/index.js.map +1 -1
  588. package/dist/features/upload/client/nodes/UploadNode.js +67 -61
  589. package/dist/features/upload/client/nodes/UploadNode.js.map +1 -1
  590. package/dist/features/upload/client/plugin/index.js +290 -331
  591. package/dist/features/upload/client/plugin/index.js.map +1 -1
  592. package/dist/features/upload/server/graphQLPopulationPromise.js +48 -63
  593. package/dist/features/upload/server/graphQLPopulationPromise.js.map +1 -1
  594. package/dist/features/upload/server/i18n.js +112 -111
  595. package/dist/features/upload/server/i18n.js.map +1 -1
  596. package/dist/features/upload/server/index.js +197 -207
  597. package/dist/features/upload/server/index.js.map +1 -1
  598. package/dist/features/upload/server/nodes/UploadNode.js +115 -99
  599. package/dist/features/upload/server/nodes/UploadNode.js.map +1 -1
  600. package/dist/features/upload/server/nodes/conversions.js +41 -40
  601. package/dist/features/upload/server/nodes/conversions.js.map +1 -1
  602. package/dist/features/upload/server/validate.js +48 -62
  603. package/dist/features/upload/server/validate.js.map +1 -1
  604. package/dist/field/Diff/converters/link.js +32 -41
  605. package/dist/field/Diff/converters/link.js.map +1 -1
  606. package/dist/field/Diff/converters/listitem/index.js +75 -55
  607. package/dist/field/Diff/converters/listitem/index.js.map +1 -1
  608. package/dist/field/Diff/converters/listitem/index.scss +47 -0
  609. package/dist/field/Diff/converters/relationship/index.js +85 -63
  610. package/dist/field/Diff/converters/relationship/index.js.map +1 -1
  611. package/dist/field/Diff/converters/relationship/index.scss +73 -0
  612. package/dist/field/Diff/converters/unknown/index.js +64 -41
  613. package/dist/field/Diff/converters/unknown/index.js.map +1 -1
  614. package/dist/field/Diff/converters/unknown/index.scss +40 -0
  615. package/dist/field/Diff/converters/upload/index.js +122 -66
  616. package/dist/field/Diff/converters/upload/index.js.map +1 -1
  617. package/dist/field/Diff/converters/upload/index.scss +115 -0
  618. package/dist/field/Diff/index.js +59 -66
  619. package/dist/field/Diff/index.js.map +1 -1
  620. package/dist/field/Diff/index.scss +102 -0
  621. package/dist/field/Field.js +226 -167
  622. package/dist/field/Field.js.map +1 -1
  623. package/dist/field/RenderLexical/index.js +123 -119
  624. package/dist/field/RenderLexical/index.js.map +1 -1
  625. package/dist/field/bundled.css +0 -1
  626. package/dist/field/index.js +61 -97
  627. package/dist/field/index.js.map +1 -1
  628. package/dist/field/index.scss +41 -0
  629. package/dist/field/rscEntry.js +86 -84
  630. package/dist/field/rscEntry.js.map +1 -1
  631. package/dist/i18n.js +223 -222
  632. package/dist/i18n.js.map +1 -1
  633. package/dist/index.js +639 -704
  634. package/dist/index.js.map +1 -1
  635. package/dist/lexical/EditorPlugin.js +21 -17
  636. package/dist/lexical/EditorPlugin.js.map +1 -1
  637. package/dist/lexical/LexicalEditor.js +274 -171
  638. package/dist/lexical/LexicalEditor.js.map +1 -1
  639. package/dist/lexical/LexicalEditor.scss +54 -0
  640. package/dist/lexical/LexicalProvider.js +109 -86
  641. package/dist/lexical/LexicalProvider.js.map +1 -1
  642. package/dist/lexical/config/client/EditorConfigProvider.js +94 -81
  643. package/dist/lexical/config/client/EditorConfigProvider.js.map +1 -1
  644. package/dist/lexical/config/client/default.js +3 -3
  645. package/dist/lexical/config/client/default.js.map +1 -1
  646. package/dist/lexical/config/client/loader.js +30 -38
  647. package/dist/lexical/config/client/loader.js.map +1 -1
  648. package/dist/lexical/config/client/sanitize.js +188 -187
  649. package/dist/lexical/config/client/sanitize.js.map +1 -1
  650. package/dist/lexical/config/server/default.js +27 -5
  651. package/dist/lexical/config/server/default.js.map +1 -1
  652. package/dist/lexical/config/server/loader.js +105 -106
  653. package/dist/lexical/config/server/loader.js.map +1 -1
  654. package/dist/lexical/config/server/sanitize.js +114 -113
  655. package/dist/lexical/config/server/sanitize.js.map +1 -1
  656. package/dist/lexical/config/types.js +4 -1
  657. package/dist/lexical/config/types.js.map +1 -1
  658. package/dist/lexical/nodes/index.js +12 -15
  659. package/dist/lexical/nodes/index.js.map +1 -1
  660. package/dist/lexical/plugins/ClipboardPlugin/index.js +66 -70
  661. package/dist/lexical/plugins/ClipboardPlugin/index.js.map +1 -1
  662. package/dist/lexical/plugins/DecoratorPlugin/index.js +208 -225
  663. package/dist/lexical/plugins/DecoratorPlugin/index.js.map +1 -1
  664. package/dist/lexical/plugins/DecoratorPlugin/index.scss +13 -0
  665. package/dist/lexical/plugins/InsertParagraphAtEnd/index.js +42 -41
  666. package/dist/lexical/plugins/InsertParagraphAtEnd/index.js.map +1 -1
  667. package/dist/lexical/plugins/InsertParagraphAtEnd/index.scss +54 -0
  668. package/dist/lexical/plugins/MarkdownShortcut/index.js +11 -23
  669. package/dist/lexical/plugins/MarkdownShortcut/index.js.map +1 -1
  670. package/dist/lexical/plugins/NormalizeSelection/index.js +21 -19
  671. package/dist/lexical/plugins/NormalizeSelection/index.js.map +1 -1
  672. package/dist/lexical/plugins/SelectAllPlugin/index.js +19 -17
  673. package/dist/lexical/plugins/SelectAllPlugin/index.js.map +1 -1
  674. package/dist/lexical/plugins/SlashMenu/LexicalTypeaheadMenuPlugin/LexicalMenu.js +399 -420
  675. package/dist/lexical/plugins/SlashMenu/LexicalTypeaheadMenuPlugin/LexicalMenu.js.map +1 -1
  676. package/dist/lexical/plugins/SlashMenu/LexicalTypeaheadMenuPlugin/index.js +164 -155
  677. package/dist/lexical/plugins/SlashMenu/LexicalTypeaheadMenuPlugin/index.js.map +1 -1
  678. package/dist/lexical/plugins/SlashMenu/LexicalTypeaheadMenuPlugin/types.js +10 -1
  679. package/dist/lexical/plugins/SlashMenu/LexicalTypeaheadMenuPlugin/types.js.map +1 -1
  680. package/dist/lexical/plugins/SlashMenu/index.js +204 -181
  681. package/dist/lexical/plugins/SlashMenu/index.js.map +1 -1
  682. package/dist/lexical/plugins/SlashMenu/index.scss +68 -0
  683. package/dist/lexical/plugins/SlashMenu/useMenuTriggerMatch.js +28 -41
  684. package/dist/lexical/plugins/SlashMenu/useMenuTriggerMatch.js.map +1 -1
  685. package/dist/lexical/plugins/TextPlugin/index.js +27 -42
  686. package/dist/lexical/plugins/TextPlugin/index.js.map +1 -1
  687. package/dist/lexical/plugins/handles/AddBlockHandlePlugin/index.js +145 -130
  688. package/dist/lexical/plugins/handles/AddBlockHandlePlugin/index.js.map +1 -1
  689. package/dist/lexical/plugins/handles/AddBlockHandlePlugin/index.scss +35 -0
  690. package/dist/lexical/plugins/handles/DraggableBlockPlugin/debounce.js +10 -10
  691. package/dist/lexical/plugins/handles/DraggableBlockPlugin/debounce.js.map +1 -1
  692. package/dist/lexical/plugins/handles/DraggableBlockPlugin/getBoundingRectWithoutTransform.js +10 -10
  693. package/dist/lexical/plugins/handles/DraggableBlockPlugin/getBoundingRectWithoutTransform.js.map +1 -1
  694. package/dist/lexical/plugins/handles/DraggableBlockPlugin/highlightElemOriginalPosition.js +23 -26
  695. package/dist/lexical/plugins/handles/DraggableBlockPlugin/highlightElemOriginalPosition.js.map +1 -1
  696. package/dist/lexical/plugins/handles/DraggableBlockPlugin/index.js +325 -317
  697. package/dist/lexical/plugins/handles/DraggableBlockPlugin/index.js.map +1 -1
  698. package/dist/lexical/plugins/handles/DraggableBlockPlugin/index.scss +80 -0
  699. package/dist/lexical/plugins/handles/DraggableBlockPlugin/setTargetLine.js +86 -98
  700. package/dist/lexical/plugins/handles/DraggableBlockPlugin/setTargetLine.js.map +1 -1
  701. package/dist/lexical/plugins/handles/utils/calculateDistanceFromScrollerElem.js +16 -22
  702. package/dist/lexical/plugins/handles/utils/calculateDistanceFromScrollerElem.js.map +1 -1
  703. package/dist/lexical/plugins/handles/utils/doesLineHeightAffectElement.js +29 -19
  704. package/dist/lexical/plugins/handles/utils/doesLineHeightAffectElement.js.map +1 -1
  705. package/dist/lexical/plugins/handles/utils/getCollapsedMargins.js +11 -14
  706. package/dist/lexical/plugins/handles/utils/getCollapsedMargins.js.map +1 -1
  707. package/dist/lexical/plugins/handles/utils/getNodeCloseToPoint.js +122 -133
  708. package/dist/lexical/plugins/handles/utils/getNodeCloseToPoint.js.map +1 -1
  709. package/dist/lexical/plugins/handles/utils/getTopLevelNodeKeys.js +2 -2
  710. package/dist/lexical/plugins/handles/utils/getTopLevelNodeKeys.js.map +1 -1
  711. package/dist/lexical/plugins/handles/utils/isOnHandleElement.js +2 -2
  712. package/dist/lexical/plugins/handles/utils/isOnHandleElement.js.map +1 -1
  713. package/dist/lexical/plugins/handles/utils/setHandlePosition.js +29 -24
  714. package/dist/lexical/plugins/handles/utils/setHandlePosition.js.map +1 -1
  715. package/dist/lexical/theme/EditorTheme.js +72 -65
  716. package/dist/lexical/theme/EditorTheme.js.map +1 -1
  717. package/dist/lexical/theme/EditorTheme.scss +357 -0
  718. package/dist/lexical/ui/ContentEditable.js +22 -35
  719. package/dist/lexical/ui/ContentEditable.js.map +1 -1
  720. package/dist/lexical/ui/ContentEditable.scss +105 -0
  721. package/dist/lexical/ui/icons/AI/index.js +58 -31
  722. package/dist/lexical/ui/icons/AI/index.js.map +1 -1
  723. package/dist/lexical/ui/icons/Add/index.js +31 -16
  724. package/dist/lexical/ui/icons/Add/index.js.map +1 -1
  725. package/dist/lexical/ui/icons/AlignCenter/index.js +45 -25
  726. package/dist/lexical/ui/icons/AlignCenter/index.js.map +1 -1
  727. package/dist/lexical/ui/icons/AlignJustify/index.js +45 -25
  728. package/dist/lexical/ui/icons/AlignJustify/index.js.map +1 -1
  729. package/dist/lexical/ui/icons/AlignLeft/index.js +45 -25
  730. package/dist/lexical/ui/icons/AlignLeft/index.js.map +1 -1
  731. package/dist/lexical/ui/icons/AlignRight/index.js +45 -25
  732. package/dist/lexical/ui/icons/AlignRight/index.js.map +1 -1
  733. package/dist/lexical/ui/icons/Block/index.js +54 -34
  734. package/dist/lexical/ui/icons/Block/index.js.map +1 -1
  735. package/dist/lexical/ui/icons/Blockquote/index.js +24 -16
  736. package/dist/lexical/ui/icons/Blockquote/index.js.map +1 -1
  737. package/dist/lexical/ui/icons/Bold/index.js +24 -16
  738. package/dist/lexical/ui/icons/Bold/index.js.map +1 -1
  739. package/dist/lexical/ui/icons/Checklist/index.js +39 -24
  740. package/dist/lexical/ui/icons/Checklist/index.js.map +1 -1
  741. package/dist/lexical/ui/icons/Code/index.js +34 -19
  742. package/dist/lexical/ui/icons/Code/index.js.map +1 -1
  743. package/dist/lexical/ui/icons/CodeBlock/index.js +22 -14
  744. package/dist/lexical/ui/icons/CodeBlock/index.js.map +1 -1
  745. package/dist/lexical/ui/icons/Collapse/index.js +23 -15
  746. package/dist/lexical/ui/icons/Collapse/index.js.map +1 -1
  747. package/dist/lexical/ui/icons/H1/index.js +24 -16
  748. package/dist/lexical/ui/icons/H1/index.js.map +1 -1
  749. package/dist/lexical/ui/icons/H2/index.js +24 -16
  750. package/dist/lexical/ui/icons/H2/index.js.map +1 -1
  751. package/dist/lexical/ui/icons/H3/index.js +24 -16
  752. package/dist/lexical/ui/icons/H3/index.js.map +1 -1
  753. package/dist/lexical/ui/icons/H4/index.js +24 -16
  754. package/dist/lexical/ui/icons/H4/index.js.map +1 -1
  755. package/dist/lexical/ui/icons/H5/index.js +24 -16
  756. package/dist/lexical/ui/icons/H5/index.js.map +1 -1
  757. package/dist/lexical/ui/icons/H6/index.js +24 -16
  758. package/dist/lexical/ui/icons/H6/index.js.map +1 -1
  759. package/dist/lexical/ui/icons/HorizontalRule/index.js +27 -19
  760. package/dist/lexical/ui/icons/HorizontalRule/index.js.map +1 -1
  761. package/dist/lexical/ui/icons/IndentDecrease/index.js +53 -28
  762. package/dist/lexical/ui/icons/IndentDecrease/index.js.map +1 -1
  763. package/dist/lexical/ui/icons/IndentIncrease/index.js +53 -28
  764. package/dist/lexical/ui/icons/IndentIncrease/index.js.map +1 -1
  765. package/dist/lexical/ui/icons/InlineBlocks/index.js +26 -18
  766. package/dist/lexical/ui/icons/InlineBlocks/index.js.map +1 -1
  767. package/dist/lexical/ui/icons/Italic/index.js +24 -16
  768. package/dist/lexical/ui/icons/Italic/index.js.map +1 -1
  769. package/dist/lexical/ui/icons/Link/index.js +25 -17
  770. package/dist/lexical/ui/icons/Link/index.js.map +1 -1
  771. package/dist/lexical/ui/icons/Meatballs/index.js +39 -19
  772. package/dist/lexical/ui/icons/Meatballs/index.js.map +1 -1
  773. package/dist/lexical/ui/icons/OrderedList/index.js +61 -31
  774. package/dist/lexical/ui/icons/OrderedList/index.js.map +1 -1
  775. package/dist/lexical/ui/icons/Relationship/index.js +58 -31
  776. package/dist/lexical/ui/icons/Relationship/index.js.map +1 -1
  777. package/dist/lexical/ui/icons/Strikethrough/index.js +34 -19
  778. package/dist/lexical/ui/icons/Strikethrough/index.js.map +1 -1
  779. package/dist/lexical/ui/icons/Subscript/index.js +24 -16
  780. package/dist/lexical/ui/icons/Subscript/index.js.map +1 -1
  781. package/dist/lexical/ui/icons/Superscript/index.js +24 -16
  782. package/dist/lexical/ui/icons/Superscript/index.js.map +1 -1
  783. package/dist/lexical/ui/icons/Table/index.js +25 -17
  784. package/dist/lexical/ui/icons/Table/index.js.map +1 -1
  785. package/dist/lexical/ui/icons/Text/index.js +24 -16
  786. package/dist/lexical/ui/icons/Text/index.js.map +1 -1
  787. package/dist/lexical/ui/icons/TextState/index.js +25 -19
  788. package/dist/lexical/ui/icons/TextState/index.js.map +1 -1
  789. package/dist/lexical/ui/icons/Underline/index.js +34 -19
  790. package/dist/lexical/ui/icons/Underline/index.js.map +1 -1
  791. package/dist/lexical/ui/icons/UnorderedList/index.js +81 -46
  792. package/dist/lexical/ui/icons/UnorderedList/index.js.map +1 -1
  793. package/dist/lexical/ui/icons/Upload/index.js +48 -28
  794. package/dist/lexical/ui/icons/Upload/index.js.map +1 -1
  795. package/dist/lexical/utils/canUseDOM.js +1 -1
  796. package/dist/lexical/utils/canUseDOM.js.map +1 -1
  797. package/dist/lexical/utils/environment.js +1 -1
  798. package/dist/lexical/utils/environment.js.map +1 -1
  799. package/dist/lexical/utils/getDOMRangeRect.js +12 -12
  800. package/dist/lexical/utils/getDOMRangeRect.js.map +1 -1
  801. package/dist/lexical/utils/getSelectedNode.js +13 -17
  802. package/dist/lexical/utils/getSelectedNode.js.map +1 -1
  803. package/dist/lexical/utils/guard.js +3 -4
  804. package/dist/lexical/utils/guard.js.map +1 -1
  805. package/dist/lexical/utils/joinClasses.js +2 -2
  806. package/dist/lexical/utils/joinClasses.js.map +1 -1
  807. package/dist/lexical/utils/markdown/createBlockNode.js +10 -9
  808. package/dist/lexical/utils/markdown/createBlockNode.js.map +1 -1
  809. package/dist/lexical/utils/nodeFormat.js +59 -58
  810. package/dist/lexical/utils/nodeFormat.js.map +1 -1
  811. package/dist/lexical/utils/point.js +32 -39
  812. package/dist/lexical/utils/point.js.map +1 -1
  813. package/dist/lexical/utils/rect.js +136 -166
  814. package/dist/lexical/utils/rect.js.map +1 -1
  815. package/dist/lexical/utils/setFloatingElemPosition.js +48 -56
  816. package/dist/lexical/utils/setFloatingElemPosition.js.map +1 -1
  817. package/dist/lexical/utils/setFloatingElemPositionForLinkEditor.js +22 -22
  818. package/dist/lexical/utils/setFloatingElemPositionForLinkEditor.js.map +1 -1
  819. package/dist/lexical/utils/swipe.js +83 -81
  820. package/dist/lexical/utils/swipe.js.map +1 -1
  821. package/dist/lexical/utils/url.js +53 -53
  822. package/dist/lexical/utils/url.js.map +1 -1
  823. package/dist/lexical/utils/url.spec.js +214 -98
  824. package/dist/lexical/utils/url.spec.js.map +1 -1
  825. package/dist/lexical-proxy/@lexical-headless.js +1 -0
  826. package/dist/lexical-proxy/@lexical-headless.js.map +1 -1
  827. package/dist/lexical-proxy/@lexical-html.js +1 -0
  828. package/dist/lexical-proxy/@lexical-html.js.map +1 -1
  829. package/dist/lexical-proxy/@lexical-link.js +1 -0
  830. package/dist/lexical-proxy/@lexical-link.js.map +1 -1
  831. package/dist/lexical-proxy/@lexical-list.js +1 -0
  832. package/dist/lexical-proxy/@lexical-list.js.map +1 -1
  833. package/dist/lexical-proxy/@lexical-mark.js +1 -0
  834. package/dist/lexical-proxy/@lexical-mark.js.map +1 -1
  835. package/dist/lexical-proxy/@lexical-markdown.js +1 -0
  836. package/dist/lexical-proxy/@lexical-markdown.js.map +1 -1
  837. package/dist/lexical-proxy/@lexical-react/LexicalAutoEmbedPlugin.js +1 -0
  838. package/dist/lexical-proxy/@lexical-react/LexicalAutoEmbedPlugin.js.map +1 -1
  839. package/dist/lexical-proxy/@lexical-react/LexicalAutoFocusPlugin.js +1 -0
  840. package/dist/lexical-proxy/@lexical-react/LexicalAutoFocusPlugin.js.map +1 -1
  841. package/dist/lexical-proxy/@lexical-react/LexicalAutoLinkPlugin.js +1 -0
  842. package/dist/lexical-proxy/@lexical-react/LexicalAutoLinkPlugin.js.map +1 -1
  843. package/dist/lexical-proxy/@lexical-react/LexicalBlockWithAlignableContents.js +1 -0
  844. package/dist/lexical-proxy/@lexical-react/LexicalBlockWithAlignableContents.js.map +1 -1
  845. package/dist/lexical-proxy/@lexical-react/LexicalCharacterLimitPlugin.js +1 -0
  846. package/dist/lexical-proxy/@lexical-react/LexicalCharacterLimitPlugin.js.map +1 -1
  847. package/dist/lexical-proxy/@lexical-react/LexicalCheckListPlugin.js +1 -0
  848. package/dist/lexical-proxy/@lexical-react/LexicalCheckListPlugin.js.map +1 -1
  849. package/dist/lexical-proxy/@lexical-react/LexicalClearEditorPlugin.js +1 -0
  850. package/dist/lexical-proxy/@lexical-react/LexicalClearEditorPlugin.js.map +1 -1
  851. package/dist/lexical-proxy/@lexical-react/LexicalClickableLinkPlugin.js +1 -0
  852. package/dist/lexical-proxy/@lexical-react/LexicalClickableLinkPlugin.js.map +1 -1
  853. package/dist/lexical-proxy/@lexical-react/LexicalCollaborationContext.js +1 -0
  854. package/dist/lexical-proxy/@lexical-react/LexicalCollaborationContext.js.map +1 -1
  855. package/dist/lexical-proxy/@lexical-react/LexicalCollaborationPlugin.js +1 -0
  856. package/dist/lexical-proxy/@lexical-react/LexicalCollaborationPlugin.js.map +1 -1
  857. package/dist/lexical-proxy/@lexical-react/LexicalComposer.js +1 -0
  858. package/dist/lexical-proxy/@lexical-react/LexicalComposer.js.map +1 -1
  859. package/dist/lexical-proxy/@lexical-react/LexicalComposerContext.js +1 -0
  860. package/dist/lexical-proxy/@lexical-react/LexicalComposerContext.js.map +1 -1
  861. package/dist/lexical-proxy/@lexical-react/LexicalContentEditable.js +1 -0
  862. package/dist/lexical-proxy/@lexical-react/LexicalContentEditable.js.map +1 -1
  863. package/dist/lexical-proxy/@lexical-react/LexicalContextMenuPlugin.js +1 -0
  864. package/dist/lexical-proxy/@lexical-react/LexicalContextMenuPlugin.js.map +1 -1
  865. package/dist/lexical-proxy/@lexical-react/LexicalDecoratorBlockNode.js +1 -0
  866. package/dist/lexical-proxy/@lexical-react/LexicalDecoratorBlockNode.js.map +1 -1
  867. package/dist/lexical-proxy/@lexical-react/LexicalDraggableBlockPlugin.js +1 -0
  868. package/dist/lexical-proxy/@lexical-react/LexicalDraggableBlockPlugin.js.map +1 -1
  869. package/dist/lexical-proxy/@lexical-react/LexicalEditorRefPlugin.js +1 -0
  870. package/dist/lexical-proxy/@lexical-react/LexicalEditorRefPlugin.js.map +1 -1
  871. package/dist/lexical-proxy/@lexical-react/LexicalErrorBoundary.js +1 -0
  872. package/dist/lexical-proxy/@lexical-react/LexicalErrorBoundary.js.map +1 -1
  873. package/dist/lexical-proxy/@lexical-react/LexicalHashtagPlugin.js +1 -0
  874. package/dist/lexical-proxy/@lexical-react/LexicalHashtagPlugin.js.map +1 -1
  875. package/dist/lexical-proxy/@lexical-react/LexicalHistoryPlugin.js +1 -0
  876. package/dist/lexical-proxy/@lexical-react/LexicalHistoryPlugin.js.map +1 -1
  877. package/dist/lexical-proxy/@lexical-react/LexicalHorizontalRuleNode.js +1 -0
  878. package/dist/lexical-proxy/@lexical-react/LexicalHorizontalRuleNode.js.map +1 -1
  879. package/dist/lexical-proxy/@lexical-react/LexicalHorizontalRulePlugin.js +1 -0
  880. package/dist/lexical-proxy/@lexical-react/LexicalHorizontalRulePlugin.js.map +1 -1
  881. package/dist/lexical-proxy/@lexical-react/LexicalLinkPlugin.js +1 -0
  882. package/dist/lexical-proxy/@lexical-react/LexicalLinkPlugin.js.map +1 -1
  883. package/dist/lexical-proxy/@lexical-react/LexicalListPlugin.js +1 -0
  884. package/dist/lexical-proxy/@lexical-react/LexicalListPlugin.js.map +1 -1
  885. package/dist/lexical-proxy/@lexical-react/LexicalMarkdownShortcutPlugin.js +1 -0
  886. package/dist/lexical-proxy/@lexical-react/LexicalMarkdownShortcutPlugin.js.map +1 -1
  887. package/dist/lexical-proxy/@lexical-react/LexicalNestedComposer.js +1 -0
  888. package/dist/lexical-proxy/@lexical-react/LexicalNestedComposer.js.map +1 -1
  889. package/dist/lexical-proxy/@lexical-react/LexicalNodeContextMenuPlugin.js +1 -0
  890. package/dist/lexical-proxy/@lexical-react/LexicalNodeContextMenuPlugin.js.map +1 -1
  891. package/dist/lexical-proxy/@lexical-react/LexicalNodeEventPlugin.js +1 -0
  892. package/dist/lexical-proxy/@lexical-react/LexicalNodeEventPlugin.js.map +1 -1
  893. package/dist/lexical-proxy/@lexical-react/LexicalNodeMenuPlugin.js +1 -0
  894. package/dist/lexical-proxy/@lexical-react/LexicalNodeMenuPlugin.js.map +1 -1
  895. package/dist/lexical-proxy/@lexical-react/LexicalOnChangePlugin.js +1 -0
  896. package/dist/lexical-proxy/@lexical-react/LexicalOnChangePlugin.js.map +1 -1
  897. package/dist/lexical-proxy/@lexical-react/LexicalPlainTextPlugin.js +1 -0
  898. package/dist/lexical-proxy/@lexical-react/LexicalPlainTextPlugin.js.map +1 -1
  899. package/dist/lexical-proxy/@lexical-react/LexicalRichTextPlugin.js +1 -0
  900. package/dist/lexical-proxy/@lexical-react/LexicalRichTextPlugin.js.map +1 -1
  901. package/dist/lexical-proxy/@lexical-react/LexicalTabIndentationPlugin.js +1 -0
  902. package/dist/lexical-proxy/@lexical-react/LexicalTabIndentationPlugin.js.map +1 -1
  903. package/dist/lexical-proxy/@lexical-react/LexicalTableOfContentsPlugin.js +1 -0
  904. package/dist/lexical-proxy/@lexical-react/LexicalTableOfContentsPlugin.js.map +1 -1
  905. package/dist/lexical-proxy/@lexical-react/LexicalTablePlugin.js +1 -0
  906. package/dist/lexical-proxy/@lexical-react/LexicalTablePlugin.js.map +1 -1
  907. package/dist/lexical-proxy/@lexical-react/LexicalTreeView.js +1 -0
  908. package/dist/lexical-proxy/@lexical-react/LexicalTreeView.js.map +1 -1
  909. package/dist/lexical-proxy/@lexical-react/LexicalTypeaheadMenuPlugin.js +1 -0
  910. package/dist/lexical-proxy/@lexical-react/LexicalTypeaheadMenuPlugin.js.map +1 -1
  911. package/dist/lexical-proxy/@lexical-react/useLexicalEditable.js +1 -0
  912. package/dist/lexical-proxy/@lexical-react/useLexicalEditable.js.map +1 -1
  913. package/dist/lexical-proxy/@lexical-react/useLexicalIsTextContentEmpty.js +1 -0
  914. package/dist/lexical-proxy/@lexical-react/useLexicalIsTextContentEmpty.js.map +1 -1
  915. package/dist/lexical-proxy/@lexical-react/useLexicalNodeSelection.js +1 -0
  916. package/dist/lexical-proxy/@lexical-react/useLexicalNodeSelection.js.map +1 -1
  917. package/dist/lexical-proxy/@lexical-react/useLexicalSubscription.js +1 -0
  918. package/dist/lexical-proxy/@lexical-react/useLexicalSubscription.js.map +1 -1
  919. package/dist/lexical-proxy/@lexical-react/useLexicalTextEntity.js +1 -0
  920. package/dist/lexical-proxy/@lexical-react/useLexicalTextEntity.js.map +1 -1
  921. package/dist/lexical-proxy/@lexical-rich-text.js +1 -0
  922. package/dist/lexical-proxy/@lexical-rich-text.js.map +1 -1
  923. package/dist/lexical-proxy/@lexical-selection.js +1 -0
  924. package/dist/lexical-proxy/@lexical-selection.js.map +1 -1
  925. package/dist/lexical-proxy/@lexical-utils.js +1 -0
  926. package/dist/lexical-proxy/@lexical-utils.js.map +1 -1
  927. package/dist/lexical-proxy/lexical.js +1 -0
  928. package/dist/lexical-proxy/lexical.js.map +1 -1
  929. package/dist/nodeTypes.js +35 -1
  930. package/dist/nodeTypes.js.map +1 -1
  931. package/dist/packages/@lexical/markdown/MarkdownExport.js +184 -179
  932. package/dist/packages/@lexical/markdown/MarkdownExport.js.map +1 -1
  933. package/dist/packages/@lexical/markdown/MarkdownImport.js +174 -169
  934. package/dist/packages/@lexical/markdown/MarkdownImport.js.map +1 -1
  935. package/dist/packages/@lexical/markdown/MarkdownShortcuts.js +258 -268
  936. package/dist/packages/@lexical/markdown/MarkdownShortcuts.js.map +1 -1
  937. package/dist/packages/@lexical/markdown/MarkdownTransformers.js +305 -209
  938. package/dist/packages/@lexical/markdown/MarkdownTransformers.js.map +1 -1
  939. package/dist/packages/@lexical/markdown/importTextFormatTransformer.js +76 -73
  940. package/dist/packages/@lexical/markdown/importTextFormatTransformer.js.map +1 -1
  941. package/dist/packages/@lexical/markdown/importTextMatchTransformer.js +59 -48
  942. package/dist/packages/@lexical/markdown/importTextMatchTransformer.js.map +1 -1
  943. package/dist/packages/@lexical/markdown/importTextTransformers.js +51 -45
  944. package/dist/packages/@lexical/markdown/importTextTransformers.js.map +1 -1
  945. package/dist/packages/@lexical/markdown/index.js +33 -14
  946. package/dist/packages/@lexical/markdown/index.js.map +1 -1
  947. package/dist/packages/@lexical/markdown/utils.js +217 -185
  948. package/dist/packages/@lexical/markdown/utils.js.map +1 -1
  949. package/dist/populateGraphQL/defaultValue.js +29 -24
  950. package/dist/populateGraphQL/defaultValue.js.map +1 -1
  951. package/dist/populateGraphQL/populate.js +26 -37
  952. package/dist/populateGraphQL/populate.js.map +1 -1
  953. package/dist/populateGraphQL/populateLexicalPopulationPromises.js +34 -50
  954. package/dist/populateGraphQL/populateLexicalPopulationPromises.js.map +1 -1
  955. package/dist/populateGraphQL/recursivelyPopulateFieldsForGraphQL.js +35 -42
  956. package/dist/populateGraphQL/recursivelyPopulateFieldsForGraphQL.js.map +1 -1
  957. package/dist/types.js +40 -1
  958. package/dist/types.js.map +1 -1
  959. package/dist/utilities/applyBaseFilterToFields.js +81 -84
  960. package/dist/utilities/applyBaseFilterToFields.js.map +1 -1
  961. package/dist/utilities/buildEditorState.js +39 -40
  962. package/dist/utilities/buildEditorState.js.map +1 -1
  963. package/dist/utilities/buildInitialState.js +51 -52
  964. package/dist/utilities/buildInitialState.js.map +1 -1
  965. package/dist/utilities/createClientFeature.js +42 -48
  966. package/dist/utilities/createClientFeature.js.map +1 -1
  967. package/dist/utilities/createServerFeature.js +38 -48
  968. package/dist/utilities/createServerFeature.js.map +1 -1
  969. package/dist/utilities/editorConfigFactory.js +78 -79
  970. package/dist/utilities/editorConfigFactory.js.map +1 -1
  971. package/dist/utilities/fieldsDrawer/Drawer.js +45 -70
  972. package/dist/utilities/fieldsDrawer/Drawer.js.map +1 -1
  973. package/dist/utilities/fieldsDrawer/DrawerContent.js +130 -120
  974. package/dist/utilities/fieldsDrawer/DrawerContent.js.map +1 -1
  975. package/dist/utilities/fieldsDrawer/useLexicalDocumentDrawer.js +64 -115
  976. package/dist/utilities/fieldsDrawer/useLexicalDocumentDrawer.js.map +1 -1
  977. package/dist/utilities/fieldsDrawer/useLexicalDrawer.js +76 -121
  978. package/dist/utilities/fieldsDrawer/useLexicalDrawer.js.map +1 -1
  979. package/dist/utilities/fieldsDrawer/useLexicalListDrawer.js +79 -141
  980. package/dist/utilities/fieldsDrawer/useLexicalListDrawer.js.map +1 -1
  981. package/dist/utilities/forEachNodeRecursively.js +19 -24
  982. package/dist/utilities/forEachNodeRecursively.js.map +1 -1
  983. package/dist/utilities/generateImportMap.js +43 -49
  984. package/dist/utilities/generateImportMap.js.map +1 -1
  985. package/dist/utilities/generateSchemaMap.js +32 -37
  986. package/dist/utilities/generateSchemaMap.js.map +1 -1
  987. package/dist/utilities/getDefaultSanitizedEditorConfig.js +12 -14
  988. package/dist/utilities/getDefaultSanitizedEditorConfig.js.map +1 -1
  989. package/dist/utilities/initLexicalFeatures.js +68 -65
  990. package/dist/utilities/initLexicalFeatures.js.map +1 -1
  991. package/dist/utilities/jsx/collectTopLevelJSXInLines.js +26 -29
  992. package/dist/utilities/jsx/collectTopLevelJSXInLines.js.map +1 -1
  993. package/dist/utilities/jsx/declare.d.js.map +1 -1
  994. package/dist/utilities/jsx/extractPropsFromJSXPropsString.js +100 -102
  995. package/dist/utilities/jsx/extractPropsFromJSXPropsString.js.map +1 -1
  996. package/dist/utilities/jsx/jsx.js +76 -80
  997. package/dist/utilities/jsx/jsx.js.map +1 -1
  998. package/dist/utilities/jsx/jsx.spec.js +225 -171
  999. package/dist/utilities/jsx/jsx.spec.js.map +1 -1
  1000. package/dist/utilities/migrateSlateToLexical/index.js +112 -128
  1001. package/dist/utilities/migrateSlateToLexical/index.js.map +1 -1
  1002. package/dist/utilities/migrateSlateToLexical/migrateDocumentFieldsRecursively.js +74 -78
  1003. package/dist/utilities/migrateSlateToLexical/migrateDocumentFieldsRecursively.js.map +1 -1
  1004. package/dist/utilities/recurseNodeTree.js +22 -25
  1005. package/dist/utilities/recurseNodeTree.js.map +1 -1
  1006. package/dist/utilities/upgradeLexicalData/index.js +88 -102
  1007. package/dist/utilities/upgradeLexicalData/index.js.map +1 -1
  1008. package/dist/utilities/upgradeLexicalData/upgradeDocumentFieldsRecursively.js +78 -80
  1009. package/dist/utilities/upgradeLexicalData/upgradeDocumentFieldsRecursively.js.map +1 -1
  1010. package/dist/utilities/useLexicalFeature.js +14 -16
  1011. package/dist/utilities/useLexicalFeature.js.map +1 -1
  1012. package/dist/utilities/useRunDeprioritized.js +41 -37
  1013. package/dist/utilities/useRunDeprioritized.js.map +1 -1
  1014. package/dist/validate/hasText.js +21 -20
  1015. package/dist/validate/hasText.js.map +1 -1
  1016. package/dist/validate/index.js +22 -28
  1017. package/dist/validate/index.js.map +1 -1
  1018. package/dist/validate/validateNodes.js +28 -31
  1019. package/dist/validate/validateNodes.js.map +1 -1
  1020. package/package.json +6 -6
  1021. package/dist/exports/client/Component-DOSSWC76.js +0 -2
  1022. package/dist/exports/client/Component-DOSSWC76.js.map +0 -7
  1023. package/dist/exports/client/Component-MBLHTKDK.js +0 -2
  1024. package/dist/exports/client/Component-MBLHTKDK.js.map +0 -7
  1025. package/dist/exports/client/Field-2A2VQXKP.js +0 -2
  1026. package/dist/exports/client/Field-2A2VQXKP.js.map +0 -7
  1027. package/dist/exports/client/RelationshipComponent-BG3DPV3T.js +0 -2
  1028. package/dist/exports/client/RelationshipComponent-BG3DPV3T.js.map +0 -7
  1029. package/dist/exports/client/bundled.css +0 -1
  1030. package/dist/exports/client/chunk-AFXLIYGL.js +0 -12
  1031. package/dist/exports/client/chunk-AFXLIYGL.js.map +0 -7
  1032. package/dist/exports/client/chunk-BZZVLW4U.js +0 -2
  1033. package/dist/exports/client/chunk-BZZVLW4U.js.map +0 -7
  1034. package/dist/exports/client/chunk-DBWINSQN.js +0 -2
  1035. package/dist/exports/client/chunk-DBWINSQN.js.map +0 -7
  1036. package/dist/exports/client/chunk-F26IQ5RE.js +0 -2
  1037. package/dist/exports/client/chunk-F26IQ5RE.js.map +0 -7
  1038. package/dist/exports/client/chunk-INBEEENE.js +0 -2
  1039. package/dist/exports/client/chunk-INBEEENE.js.map +0 -7
  1040. package/dist/exports/client/chunk-O6XRT2H3.js +0 -2
  1041. package/dist/exports/client/chunk-O6XRT2H3.js.map +0 -7
  1042. package/dist/exports/client/chunk-TRHFMZ3F.js +0 -2
  1043. package/dist/exports/client/chunk-TRHFMZ3F.js.map +0 -7
  1044. package/dist/exports/client/component-YQ22OGQW.js +0 -2
  1045. package/dist/exports/client/component-YQ22OGQW.js.map +0 -7
  1046. package/dist/exports/client/componentInline-5OVPQNQH.js +0 -2
  1047. package/dist/exports/client/componentInline-5OVPQNQH.js.map +0 -7
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":["useLexicalComposerContext","useLexicalEditable","getTranslation","Button","Collapsible","Drawer","EditDepthProvider","ErrorPill","Form","formatDrawerSlug","FormSubmit","Pill","RenderFields","SectionTitle","useConfig","useDocumentForm","useDocumentInfo","useEditDepth","useFormSubmitted","useServerFunctions","useTranslation","abortAndIgnore","$getNodeByKey","deepCopyObjectSimpleWithoutReactComponents","reduceFieldsToValues","React","useCallback","useEffect","useMemo","useRef","v4","uuid","useEditorConfigContext","useLexicalDrawer","$isBlockNode","BlockContent","removeEmptyArrayValues","BlockComponent","props","cacheBuster","className","baseClass","formData","nodeKey","submitted","id","collectionSlug","globalSlug","fieldProps","featureClientSchemaMap","field","parentLexicalRichTextField","initialLexicalFormState","schemaPath","uuidFromContext","fields","parentDocumentFields","onChangeAbortControllerRef","AbortController","editDepth","errorCount","setErrorCount","useState","config","drawerSlug","slug","depth","toggleDrawer","getDocPreferences","setDocFieldPreferences","editor","isEditable","blockType","getFormState","schemaFieldsPath","initialState","setInitialState","cachedFormState","formState","mergedState","Object","fromEntries","entries","map","fieldName","fieldState","initialValue","value","blockName","passesCondition","valid","hasMounted","prevCacheBuster","current","CustomLabel","setCustomLabel","customComponents","BlockLabel","undefined","CustomBlock","setCustomBlock","Block","abortController","awaitInitialState","state","data","docPermissions","docPreferences","documentFormState","initialBlockData","operation","readOnly","renderAllFields","signal","newFormStateData","update","node","newData","setFields","_components","isCollapsed","setIsCollapsed","collapsed","componentMapRenderedBlockPath","clientSchemaMap","blocksField","clientBlock","blockReferences","blocksMap","blocks","i18n","t","onChange","prevFormState","submit","controller","newFormState","initialBlockFormState","setTimeout","rowErrorCount","formField","values","removeBlock","remove","blockDisplayName","labels","singular","onCollapsedChange","changedCollapsed","then","currentDocPreferences","currentFieldPreferences","name","collapsedArray","newCollapsed","length","includes","push","splice","indexOf","hello","EditButton","_jsx","buttonStyle","disabled","el","icon","onClick","e","preventDefault","stopPropagation","onMouseDown","round","size","tooltip","label","RemoveButton","BlockCollapsible","Actions","children","collapsibleProps","disableBlockName","editButton","fieldHasErrors","Label","CustomPill","removeButton","filter","Boolean","join","collapsibleStyle","header","_jsxs","pillStyle","admin","path","count","withMessage","_Fragment","onToggle","incomingCollapsedState","blockID","BlockDrawer","title","forceRender","parentIndexPath","parentPath","parentSchemaPath","permissions","programmaticSubmit","beforeSubmit","onSubmit","formSchema"],"sources":["../../../../../src/features/blocks/client/component/index.tsx"],"sourcesContent":["'use client'\n\nimport { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext'\nimport { useLexicalEditable } from '@lexical/react/useLexicalEditable'\nimport { getTranslation } from '@payloadcms/translations'\nimport {\n Button,\n Collapsible,\n Drawer,\n EditDepthProvider,\n ErrorPill,\n Form,\n formatDrawerSlug,\n FormSubmit,\n Pill,\n RenderFields,\n SectionTitle,\n useConfig,\n useDocumentForm,\n useDocumentInfo,\n useEditDepth,\n useFormSubmitted,\n useServerFunctions,\n useTranslation,\n} from '@payloadcms/ui'\nimport { abortAndIgnore } from '@payloadcms/ui/shared'\nimport { $getNodeByKey } from 'lexical'\nimport {\n type BlocksFieldClient,\n type ClientBlock,\n type CollapsedPreferences,\n type FormState,\n} from 'payload'\nimport { deepCopyObjectSimpleWithoutReactComponents, reduceFieldsToValues } from 'payload/shared'\nimport React, { useCallback, useEffect, useMemo, useRef } from 'react'\nimport { v4 as uuid } from 'uuid'\n\nimport type { BlockFields } from '../../server/nodes/BlocksNode.js'\n\nimport { useEditorConfigContext } from '../../../../lexical/config/client/EditorConfigProvider.js'\nimport './index.scss'\nimport { useLexicalDrawer } from '../../../../utilities/fieldsDrawer/useLexicalDrawer.js'\nimport { $isBlockNode } from '../nodes/BlocksNode.js'\nimport { type BlockCollapsibleWithErrorProps, BlockContent } from './BlockContent.js'\nimport { removeEmptyArrayValues } from './removeEmptyArrayValues.js'\n\ntype Props = {\n /**\n * Can be modified by the node in order to trigger the re-fetch of the initial state based on the\n * formData. This is useful when node.setFields() is explicitly called from outside of the form - in\n * this case, the new field state is likely not reflected in the form state, so we need to re-fetch\n */\n readonly cacheBuster: number\n readonly className: string\n readonly formData: BlockFields\n readonly nodeKey: string\n}\n\nexport const BlockComponent: React.FC<Props> = (props) => {\n const { cacheBuster, className: baseClass, formData, nodeKey } = props\n const submitted = useFormSubmitted()\n const { id, collectionSlug, globalSlug } = useDocumentInfo()\n const {\n fieldProps: {\n featureClientSchemaMap,\n field: parentLexicalRichTextField,\n initialLexicalFormState,\n schemaPath,\n },\n uuid: uuidFromContext,\n } = useEditorConfigContext()\n\n const { fields: parentDocumentFields } = useDocumentForm()\n const onChangeAbortControllerRef = useRef(new AbortController())\n const editDepth = useEditDepth()\n const [errorCount, setErrorCount] = React.useState(0)\n\n const { config } = useConfig()\n\n const drawerSlug = formatDrawerSlug({\n slug: `lexical-blocks-create-${uuidFromContext}-${formData.id}`,\n depth: editDepth,\n })\n const { toggleDrawer } = useLexicalDrawer(drawerSlug)\n\n // Used for saving collapsed to preferences (and gettin' it from there again)\n // Remember, these preferences are scoped to the whole document, not just this form. This\n // is important to consider for the data path used in setDocFieldPreferences\n const { getDocPreferences, setDocFieldPreferences } = useDocumentInfo()\n const [editor] = useLexicalComposerContext()\n const isEditable = useLexicalEditable()\n\n const blockType = formData.blockType\n\n const { getFormState } = useServerFunctions()\n const schemaFieldsPath = `${schemaPath}.lexical_internal_feature.blocks.lexical_blocks.${blockType}.fields`\n\n const [initialState, setInitialState] = React.useState<false | FormState | undefined>(() => {\n // Initial form state that was calculated server-side. May have stale values\n const cachedFormState = initialLexicalFormState?.[formData.id]?.formState\n if (!cachedFormState) {\n return false\n }\n\n // Merge current formData values into the cached form state\n // This ensures that when the component remounts (e.g., due to view changes), we don't lose user edits\n const mergedState = Object.fromEntries(\n Object.entries(cachedFormState).map(([fieldName, fieldState]) => [\n fieldName,\n fieldName in formData\n ? {\n ...fieldState,\n initialValue: formData[fieldName],\n value: formData[fieldName],\n }\n : fieldState,\n ]),\n )\n\n // Manually add blockName, as it's not part of cachedFormState\n mergedState.blockName = {\n initialValue: formData.blockName,\n passesCondition: true,\n valid: true,\n value: formData.blockName,\n }\n\n return mergedState\n })\n\n const hasMounted = useRef(false)\n const prevCacheBuster = useRef(cacheBuster)\n useEffect(() => {\n if (hasMounted.current) {\n if (prevCacheBuster.current !== cacheBuster) {\n setInitialState(false)\n }\n prevCacheBuster.current = cacheBuster\n } else {\n hasMounted.current = true\n }\n }, [cacheBuster])\n\n const [CustomLabel, setCustomLabel] = React.useState<React.ReactNode | undefined>(\n // @ts-expect-error - vestiges of when tsconfig was not strict. Feel free to improve\n initialState?.['_components']?.customComponents?.BlockLabel ?? undefined,\n )\n\n const [CustomBlock, setCustomBlock] = React.useState<React.ReactNode | undefined>(\n // @ts-expect-error - vestiges of when tsconfig was not strict. Feel free to improve\n initialState?.['_components']?.customComponents?.Block ?? undefined,\n )\n\n // Initial state for newly created blocks\n useEffect(() => {\n const abortController = new AbortController()\n\n const awaitInitialState = async () => {\n /*\n * This will only run if a new block is created. For all existing blocks that are loaded when the document is loaded, or when the form is saved,\n * this is not run, as the lexical field RSC will fetch the state server-side and pass it to the client. That way, we avoid unnecessary client-side\n * requests. Though for newly created blocks, we need to fetch the state client-side, as the server doesn't know about the block yet.\n */\n const { state } = await getFormState({\n id,\n collectionSlug,\n data: formData,\n docPermissions: { fields: true },\n docPreferences: await getDocPreferences(),\n documentFormState: deepCopyObjectSimpleWithoutReactComponents(parentDocumentFields),\n globalSlug,\n initialBlockData: formData,\n operation: 'update',\n readOnly: !isEditable,\n renderAllFields: true,\n schemaPath: schemaFieldsPath,\n signal: abortController.signal,\n })\n\n if (state) {\n state.blockName = {\n initialValue: formData.blockName,\n passesCondition: true,\n valid: true,\n value: formData.blockName,\n }\n\n const newFormStateData: BlockFields = reduceFieldsToValues(\n deepCopyObjectSimpleWithoutReactComponents(state),\n true,\n ) as BlockFields\n\n // Things like default values may come back from the server => update the node with the new data\n editor.update(() => {\n const node = $getNodeByKey(nodeKey)\n if (node && $isBlockNode(node)) {\n const newData = newFormStateData\n newData.blockType = blockType\n\n node.setFields(newData, true)\n }\n })\n\n setInitialState(state)\n setCustomLabel(state._components?.customComponents?.BlockLabel ?? undefined)\n setCustomBlock(state._components?.customComponents?.Block ?? undefined)\n }\n }\n\n if (formData && !initialState) {\n void awaitInitialState()\n }\n\n return () => {\n abortAndIgnore(abortController)\n }\n }, [\n getFormState,\n schemaFieldsPath,\n isEditable,\n id,\n formData,\n editor,\n nodeKey,\n initialState,\n collectionSlug,\n globalSlug,\n getDocPreferences,\n parentDocumentFields,\n blockType,\n ])\n\n const [isCollapsed, setIsCollapsed] = React.useState<boolean>(\n initialLexicalFormState?.[formData.id]?.collapsed ?? false,\n )\n\n const componentMapRenderedBlockPath = `${schemaPath}.lexical_internal_feature.blocks.lexical_blocks.${blockType}`\n\n const clientSchemaMap = featureClientSchemaMap['blocks']\n\n const blocksField: BlocksFieldClient | undefined = clientSchemaMap?.[\n componentMapRenderedBlockPath\n ]?.[0] as BlocksFieldClient\n\n const clientBlock: ClientBlock | undefined = blocksField.blockReferences\n ? typeof blocksField?.blockReferences?.[0] === 'string'\n ? config.blocksMap[blocksField?.blockReferences?.[0]]\n : blocksField?.blockReferences?.[0]\n : blocksField?.blocks?.[0]\n\n const { i18n, t } = useTranslation<object, string>()\n\n const onChange = useCallback(\n async ({ formState: prevFormState, submit }: { formState: FormState; submit?: boolean }) => {\n abortAndIgnore(onChangeAbortControllerRef.current)\n\n const controller = new AbortController()\n onChangeAbortControllerRef.current = controller\n\n const { state: newFormState } = await getFormState({\n id,\n collectionSlug,\n docPermissions: {\n fields: true,\n },\n docPreferences: await getDocPreferences(),\n documentFormState: deepCopyObjectSimpleWithoutReactComponents(parentDocumentFields),\n formState: prevFormState,\n globalSlug,\n initialBlockFormState: prevFormState,\n operation: 'update',\n readOnly: !isEditable,\n renderAllFields: submit ? true : false,\n schemaPath: schemaFieldsPath,\n signal: controller.signal,\n })\n\n if (!newFormState) {\n return prevFormState\n }\n\n if (prevFormState.blockName) {\n newFormState.blockName = prevFormState.blockName\n }\n\n const newFormStateData: BlockFields = reduceFieldsToValues(\n removeEmptyArrayValues({\n fields: deepCopyObjectSimpleWithoutReactComponents(newFormState),\n }),\n true,\n ) as BlockFields\n\n setTimeout(() => {\n editor.update(() => {\n const node = $getNodeByKey(nodeKey)\n if (node && $isBlockNode(node)) {\n const newData = newFormStateData\n newData.blockType = blockType\n node.setFields(newData, true)\n }\n })\n }, 0)\n\n if (submit) {\n setCustomLabel(newFormState._components?.customComponents?.BlockLabel ?? undefined)\n setCustomBlock(newFormState._components?.customComponents?.Block ?? undefined)\n\n let rowErrorCount = 0\n for (const formField of Object.values(newFormState)) {\n if (formField?.valid === false) {\n rowErrorCount++\n }\n }\n setErrorCount(rowErrorCount)\n }\n\n return newFormState\n },\n\n [\n getFormState,\n id,\n collectionSlug,\n getDocPreferences,\n globalSlug,\n schemaFieldsPath,\n blockType,\n parentDocumentFields,\n isEditable,\n editor,\n nodeKey,\n ],\n )\n\n useEffect(() => {\n return () => {\n abortAndIgnore(onChangeAbortControllerRef.current)\n }\n }, [])\n\n const removeBlock = useCallback(() => {\n editor.update(() => {\n $getNodeByKey(nodeKey)?.remove()\n })\n }, [editor, nodeKey])\n\n const blockDisplayName = clientBlock?.labels?.singular\n ? getTranslation(clientBlock.labels.singular, i18n)\n : clientBlock?.slug\n\n const onCollapsedChange = useCallback(\n (changedCollapsed: boolean) => {\n void getDocPreferences().then((currentDocPreferences) => {\n const currentFieldPreferences =\n currentDocPreferences?.fields?.[parentLexicalRichTextField.name]\n\n const collapsedArray = currentFieldPreferences?.collapsed\n\n const newCollapsed: CollapsedPreferences =\n collapsedArray && collapsedArray?.length ? collapsedArray : []\n\n if (changedCollapsed) {\n if (!newCollapsed.includes(formData.id)) {\n newCollapsed.push(formData.id)\n }\n } else {\n if (newCollapsed.includes(formData.id)) {\n newCollapsed.splice(newCollapsed.indexOf(formData.id), 1)\n }\n }\n\n setDocFieldPreferences(parentLexicalRichTextField.name, {\n collapsed: newCollapsed,\n hello: 'hi',\n })\n })\n },\n [getDocPreferences, parentLexicalRichTextField.name, setDocFieldPreferences, formData.id],\n )\n\n const EditButton = useMemo(\n () => () => (\n <Button\n buttonStyle=\"icon-label\"\n className={`${baseClass}__editButton`}\n disabled={!isEditable}\n el=\"button\"\n icon=\"edit\"\n onClick={(e) => {\n e.preventDefault()\n e.stopPropagation()\n toggleDrawer()\n return false\n }}\n onMouseDown={(e) => {\n // Needed to preserve lexical selection for toggleDrawer lexical selection restore.\n // I believe this is needed due to this button (usually) being inside of a collapsible.\n e.preventDefault()\n }}\n round\n size=\"small\"\n tooltip={t('lexical:blocks:inlineBlocks:edit', { label: blockDisplayName })}\n />\n ),\n [baseClass, isEditable, t, blockDisplayName, toggleDrawer],\n )\n\n const RemoveButton = useMemo(\n () => () => (\n <Button\n buttonStyle=\"icon-label\"\n className={`${baseClass}__removeButton`}\n disabled={!isEditable}\n icon=\"x\"\n onClick={(e) => {\n e.preventDefault()\n removeBlock()\n }}\n round\n tooltip=\"Remove Block\"\n />\n ),\n [baseClass, isEditable, removeBlock],\n )\n\n const BlockCollapsible = useMemo(\n () =>\n ({\n Actions,\n children,\n className,\n collapsibleProps,\n disableBlockName,\n editButton,\n errorCount,\n fieldHasErrors,\n Label,\n Pill: CustomPill,\n removeButton,\n }: BlockCollapsibleWithErrorProps) => {\n return (\n <div className={`${baseClass}__container ${baseClass}-${blockType}`}>\n <Collapsible\n className={[\n `${baseClass}__row`,\n fieldHasErrors ? `${baseClass}__row--has-errors` : `${baseClass}__row--no-errors`,\n className,\n ]\n .filter(Boolean)\n .join(' ')}\n collapsibleStyle={fieldHasErrors ? 'error' : 'default'}\n header={\n <div className={`${baseClass}__block-header`}>\n {typeof Label !== 'undefined' ? (\n Label\n ) : typeof CustomLabel !== 'undefined' ? (\n CustomLabel\n ) : (\n <div className={`${baseClass}__block-label`}>\n {typeof CustomPill !== 'undefined' ? (\n CustomPill\n ) : (\n <Pill\n className={`${baseClass}__block-pill ${baseClass}__block-pill-${blockType}`}\n pillStyle=\"white\"\n size=\"small\"\n >\n {blockDisplayName ?? blockType}\n </Pill>\n )}\n {!disableBlockName && !clientBlock?.admin?.disableBlockName && (\n <SectionTitle path=\"blockName\" readOnly={!isEditable} />\n )}\n\n {fieldHasErrors && (\n <ErrorPill count={errorCount ?? 0} i18n={i18n} withMessage />\n )}\n </div>\n )}\n\n <div className={`${baseClass}__block-actions`}>\n {typeof Actions !== 'undefined' ? (\n Actions\n ) : (\n <>\n {(CustomBlock && editButton !== false) || (!CustomBlock && editButton) ? (\n <EditButton />\n ) : null}\n {removeButton !== false && isEditable ? <RemoveButton /> : null}\n </>\n )}\n </div>\n </div>\n }\n isCollapsed={isCollapsed}\n key={0}\n onToggle={(incomingCollapsedState) => {\n onCollapsedChange(incomingCollapsedState)\n setIsCollapsed(incomingCollapsedState)\n }}\n {...(collapsibleProps || {})}\n >\n {children}\n </Collapsible>\n </div>\n )\n },\n [\n CustomBlock,\n CustomLabel,\n EditButton,\n RemoveButton,\n blockDisplayName,\n baseClass,\n clientBlock?.admin?.disableBlockName,\n blockType,\n i18n,\n isCollapsed,\n onCollapsedChange,\n isEditable,\n ],\n )\n\n const blockID = formData?.id\n\n const BlockDrawer = useMemo(\n () => () => (\n <EditDepthProvider>\n <Drawer\n className={''}\n slug={drawerSlug}\n title={t(`lexical:blocks:inlineBlocks:${blockID ? 'edit' : 'create'}`, {\n label: blockDisplayName ?? t('lexical:blocks:inlineBlocks:label'),\n })}\n >\n {initialState ? (\n <>\n <RenderFields\n fields={clientBlock?.fields ?? []}\n forceRender\n parentIndexPath=\"\"\n parentPath=\"\" // See Blocks feature path for details as for why this is empty\n parentSchemaPath={schemaFieldsPath}\n permissions={true}\n readOnly={!isEditable}\n />\n <FormSubmit programmaticSubmit={true}>{t('fields:saveChanges')}</FormSubmit>\n </>\n ) : null}\n </Drawer>\n </EditDepthProvider>\n ),\n [\n initialState,\n drawerSlug,\n blockID,\n blockDisplayName,\n t,\n isEditable,\n clientBlock?.fields,\n schemaFieldsPath,\n // DO NOT ADD FORMDATA HERE! Adding formData will kick you out of sub block editors while writing.\n ],\n )\n\n // Memoized Form JSX\n const Block = useMemo(() => {\n if (!initialState) {\n return null\n }\n return (\n <Form\n beforeSubmit={[\n async ({ formState }) => {\n // This is only called when form is submitted from drawer - usually only the case if the block has a custom Block component\n return await onChange({ formState, submit: true })\n },\n ]}\n el=\"div\"\n fields={clientBlock?.fields ?? []}\n initialState={initialState}\n onChange={[onChange]}\n onSubmit={(formState, newData) => {\n // This is only called when form is submitted from drawer - usually only the case if the block has a custom Block component\n newData.blockType = blockType\n editor.update(() => {\n const node = $getNodeByKey(nodeKey)\n if (node && $isBlockNode(node)) {\n node.setFields(newData as BlockFields, true)\n }\n })\n toggleDrawer()\n }}\n submitted={submitted}\n uuid={uuid()}\n >\n <BlockContent\n baseClass={baseClass}\n BlockDrawer={BlockDrawer}\n Collapsible={BlockCollapsible}\n CustomBlock={CustomBlock}\n EditButton={EditButton}\n errorCount={errorCount}\n formSchema={clientBlock?.fields ?? []}\n initialState={initialState}\n nodeKey={nodeKey}\n RemoveButton={RemoveButton}\n />\n </Form>\n )\n }, [\n BlockCollapsible,\n BlockDrawer,\n CustomBlock,\n blockType,\n RemoveButton,\n EditButton,\n baseClass,\n editor,\n errorCount,\n toggleDrawer,\n clientBlock?.fields,\n // DO NOT ADD FORMDATA HERE! Adding formData will kick you out of sub block editors while writing.\n initialState,\n nodeKey,\n onChange,\n submitted,\n ])\n\n if (!clientBlock) {\n return (\n <BlockCollapsible disableBlockName={true} fieldHasErrors={true}>\n <div className={`${baseClass}-not-found`}>\n Error: Block '{blockType}' not found in the config but exists in the lexical data\n </div>\n </BlockCollapsible>\n )\n }\n\n return Block\n}\n"],"mappings":"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","ignoreList":[]}
1
+ {"version":3,"sources":["../../../../../src/features/blocks/client/component/index.tsx"],"sourcesContent":["'use client'\n\nimport { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext'\nimport { useLexicalEditable } from '@lexical/react/useLexicalEditable'\nimport { getTranslation } from '@payloadcms/translations'\nimport {\n Button,\n Collapsible,\n Drawer,\n EditDepthProvider,\n ErrorPill,\n Form,\n formatDrawerSlug,\n FormSubmit,\n Pill,\n RenderFields,\n SectionTitle,\n useConfig,\n useDocumentForm,\n useDocumentInfo,\n useEditDepth,\n useFormSubmitted,\n useServerFunctions,\n useTranslation,\n} from '@payloadcms/ui'\nimport { abortAndIgnore } from '@payloadcms/ui/shared'\nimport { $getNodeByKey } from 'lexical'\nimport {\n type BlocksFieldClient,\n type ClientBlock,\n type CollapsedPreferences,\n type FormState,\n} from 'payload'\nimport { deepCopyObjectSimpleWithoutReactComponents, reduceFieldsToValues } from 'payload/shared'\nimport React, { useCallback, useEffect, useMemo, useRef } from 'react'\nimport { v4 as uuid } from 'uuid'\n\nimport type { BlockFields } from '../../server/nodes/BlocksNode.js'\n\nimport { useEditorConfigContext } from '../../../../lexical/config/client/EditorConfigProvider.js'\nimport './index.scss'\nimport { useLexicalDrawer } from '../../../../utilities/fieldsDrawer/useLexicalDrawer.js'\nimport { $isBlockNode } from '../nodes/BlocksNode.js'\nimport { type BlockCollapsibleWithErrorProps, BlockContent } from './BlockContent.js'\nimport { removeEmptyArrayValues } from './removeEmptyArrayValues.js'\n\ntype Props = {\n /**\n * Can be modified by the node in order to trigger the re-fetch of the initial state based on the\n * formData. This is useful when node.setFields() is explicitly called from outside of the form - in\n * this case, the new field state is likely not reflected in the form state, so we need to re-fetch\n */\n readonly cacheBuster: number\n readonly className: string\n readonly formData: BlockFields\n readonly nodeKey: string\n}\n\nexport const BlockComponent: React.FC<Props> = (props) => {\n const { cacheBuster, className: baseClass, formData, nodeKey } = props\n const submitted = useFormSubmitted()\n const { id, collectionSlug, globalSlug } = useDocumentInfo()\n const {\n fieldProps: {\n featureClientSchemaMap,\n field: parentLexicalRichTextField,\n initialLexicalFormState,\n schemaPath,\n },\n uuid: uuidFromContext,\n } = useEditorConfigContext()\n\n const { fields: parentDocumentFields } = useDocumentForm()\n const onChangeAbortControllerRef = useRef(new AbortController())\n const editDepth = useEditDepth()\n const [errorCount, setErrorCount] = React.useState(0)\n\n const { config } = useConfig()\n\n const drawerSlug = formatDrawerSlug({\n slug: `lexical-blocks-create-${uuidFromContext}-${formData.id}`,\n depth: editDepth,\n })\n const { toggleDrawer } = useLexicalDrawer(drawerSlug)\n\n // Used for saving collapsed to preferences (and gettin' it from there again)\n // Remember, these preferences are scoped to the whole document, not just this form. This\n // is important to consider for the data path used in setDocFieldPreferences\n const { getDocPreferences, setDocFieldPreferences } = useDocumentInfo()\n const [editor] = useLexicalComposerContext()\n const isEditable = useLexicalEditable()\n\n const blockType = formData.blockType\n\n const { getFormState } = useServerFunctions()\n const schemaFieldsPath = `${schemaPath}.lexical_internal_feature.blocks.lexical_blocks.${blockType}.fields`\n\n const [initialState, setInitialState] = React.useState<false | FormState | undefined>(() => {\n // Initial form state that was calculated server-side. May have stale values\n const cachedFormState = initialLexicalFormState?.[formData.id]?.formState\n if (!cachedFormState) {\n return false\n }\n\n // Merge current formData values into the cached form state\n // This ensures that when the component remounts (e.g., due to view changes), we don't lose user edits\n const mergedState = Object.fromEntries(\n Object.entries(cachedFormState).map(([fieldName, fieldState]) => [\n fieldName,\n fieldName in formData\n ? {\n ...fieldState,\n initialValue: formData[fieldName],\n value: formData[fieldName],\n }\n : fieldState,\n ]),\n )\n\n // Manually add blockName, as it's not part of cachedFormState\n mergedState.blockName = {\n initialValue: formData.blockName,\n passesCondition: true,\n valid: true,\n value: formData.blockName,\n }\n\n return mergedState\n })\n\n const hasMounted = useRef(false)\n const prevCacheBuster = useRef(cacheBuster)\n useEffect(() => {\n if (hasMounted.current) {\n if (prevCacheBuster.current !== cacheBuster) {\n setInitialState(false)\n }\n prevCacheBuster.current = cacheBuster\n } else {\n hasMounted.current = true\n }\n }, [cacheBuster])\n\n const [CustomLabel, setCustomLabel] = React.useState<React.ReactNode | undefined>(\n // @ts-expect-error - vestiges of when tsconfig was not strict. Feel free to improve\n initialState?.['_components']?.customComponents?.BlockLabel ?? undefined,\n )\n\n const [CustomBlock, setCustomBlock] = React.useState<React.ReactNode | undefined>(\n // @ts-expect-error - vestiges of when tsconfig was not strict. Feel free to improve\n initialState?.['_components']?.customComponents?.Block ?? undefined,\n )\n\n // Initial state for newly created blocks\n useEffect(() => {\n const abortController = new AbortController()\n\n const awaitInitialState = async () => {\n /*\n * This will only run if a new block is created. For all existing blocks that are loaded when the document is loaded, or when the form is saved,\n * this is not run, as the lexical field RSC will fetch the state server-side and pass it to the client. That way, we avoid unnecessary client-side\n * requests. Though for newly created blocks, we need to fetch the state client-side, as the server doesn't know about the block yet.\n */\n const { state } = await getFormState({\n id,\n collectionSlug,\n data: formData,\n docPermissions: { fields: true },\n docPreferences: await getDocPreferences(),\n documentFormState: deepCopyObjectSimpleWithoutReactComponents(parentDocumentFields),\n globalSlug,\n initialBlockData: formData,\n operation: 'update',\n readOnly: !isEditable,\n renderAllFields: true,\n schemaPath: schemaFieldsPath,\n signal: abortController.signal,\n })\n\n if (state) {\n state.blockName = {\n initialValue: formData.blockName,\n passesCondition: true,\n valid: true,\n value: formData.blockName,\n }\n\n const newFormStateData: BlockFields = reduceFieldsToValues(\n deepCopyObjectSimpleWithoutReactComponents(state),\n true,\n ) as BlockFields\n\n // Things like default values may come back from the server => update the node with the new data\n editor.update(() => {\n const node = $getNodeByKey(nodeKey)\n if (node && $isBlockNode(node)) {\n const newData = newFormStateData\n newData.blockType = blockType\n\n node.setFields(newData, true)\n }\n })\n\n setInitialState(state)\n setCustomLabel(state._components?.customComponents?.BlockLabel ?? undefined)\n setCustomBlock(state._components?.customComponents?.Block ?? undefined)\n }\n }\n\n if (formData && !initialState) {\n void awaitInitialState()\n }\n\n return () => {\n abortAndIgnore(abortController)\n }\n }, [\n getFormState,\n schemaFieldsPath,\n isEditable,\n id,\n formData,\n editor,\n nodeKey,\n initialState,\n collectionSlug,\n globalSlug,\n getDocPreferences,\n parentDocumentFields,\n blockType,\n ])\n\n const [isCollapsed, setIsCollapsed] = React.useState<boolean>(\n initialLexicalFormState?.[formData.id]?.collapsed ?? false,\n )\n\n const componentMapRenderedBlockPath = `${schemaPath}.lexical_internal_feature.blocks.lexical_blocks.${blockType}`\n\n const clientSchemaMap = featureClientSchemaMap['blocks']\n\n const blocksField: BlocksFieldClient | undefined = clientSchemaMap?.[\n componentMapRenderedBlockPath\n ]?.[0] as BlocksFieldClient\n\n const clientBlock: ClientBlock | undefined = blocksField.blockReferences\n ? typeof blocksField?.blockReferences?.[0] === 'string'\n ? config.blocksMap[blocksField?.blockReferences?.[0]]\n : blocksField?.blockReferences?.[0]\n : blocksField?.blocks?.[0]\n\n const { i18n, t } = useTranslation<object, string>()\n\n const onChange = useCallback(\n async ({ formState: prevFormState, submit }: { formState: FormState; submit?: boolean }) => {\n abortAndIgnore(onChangeAbortControllerRef.current)\n\n const controller = new AbortController()\n onChangeAbortControllerRef.current = controller\n\n const { state: newFormState } = await getFormState({\n id,\n collectionSlug,\n docPermissions: {\n fields: true,\n },\n docPreferences: await getDocPreferences(),\n documentFormState: deepCopyObjectSimpleWithoutReactComponents(parentDocumentFields),\n formState: prevFormState,\n globalSlug,\n initialBlockFormState: prevFormState,\n operation: 'update',\n readOnly: !isEditable,\n renderAllFields: submit ? true : false,\n schemaPath: schemaFieldsPath,\n signal: controller.signal,\n })\n\n if (!newFormState) {\n return prevFormState\n }\n\n if (prevFormState.blockName) {\n newFormState.blockName = prevFormState.blockName\n }\n\n const newFormStateData: BlockFields = reduceFieldsToValues(\n removeEmptyArrayValues({\n fields: deepCopyObjectSimpleWithoutReactComponents(newFormState),\n }),\n true,\n ) as BlockFields\n\n setTimeout(() => {\n editor.update(() => {\n const node = $getNodeByKey(nodeKey)\n if (node && $isBlockNode(node)) {\n const newData = newFormStateData\n newData.blockType = blockType\n node.setFields(newData, true)\n }\n })\n }, 0)\n\n if (submit) {\n setCustomLabel(newFormState._components?.customComponents?.BlockLabel ?? undefined)\n setCustomBlock(newFormState._components?.customComponents?.Block ?? undefined)\n\n let rowErrorCount = 0\n for (const formField of Object.values(newFormState)) {\n if (formField?.valid === false) {\n rowErrorCount++\n }\n }\n setErrorCount(rowErrorCount)\n }\n\n return newFormState\n },\n\n [\n getFormState,\n id,\n collectionSlug,\n getDocPreferences,\n globalSlug,\n schemaFieldsPath,\n blockType,\n parentDocumentFields,\n isEditable,\n editor,\n nodeKey,\n ],\n )\n\n useEffect(() => {\n return () => {\n abortAndIgnore(onChangeAbortControllerRef.current)\n }\n }, [])\n\n const removeBlock = useCallback(() => {\n editor.update(() => {\n $getNodeByKey(nodeKey)?.remove()\n })\n }, [editor, nodeKey])\n\n const blockDisplayName = clientBlock?.labels?.singular\n ? getTranslation(clientBlock.labels.singular, i18n)\n : clientBlock?.slug\n\n const onCollapsedChange = useCallback(\n (changedCollapsed: boolean) => {\n void getDocPreferences().then((currentDocPreferences) => {\n const currentFieldPreferences =\n currentDocPreferences?.fields?.[parentLexicalRichTextField.name]\n\n const collapsedArray = currentFieldPreferences?.collapsed\n\n const newCollapsed: CollapsedPreferences =\n collapsedArray && collapsedArray?.length ? collapsedArray : []\n\n if (changedCollapsed) {\n if (!newCollapsed.includes(formData.id)) {\n newCollapsed.push(formData.id)\n }\n } else {\n if (newCollapsed.includes(formData.id)) {\n newCollapsed.splice(newCollapsed.indexOf(formData.id), 1)\n }\n }\n\n setDocFieldPreferences(parentLexicalRichTextField.name, {\n collapsed: newCollapsed,\n hello: 'hi',\n })\n })\n },\n [getDocPreferences, parentLexicalRichTextField.name, setDocFieldPreferences, formData.id],\n )\n\n const EditButton = useMemo(\n () => () => (\n <Button\n buttonStyle=\"icon-label\"\n className={`${baseClass}__editButton`}\n disabled={!isEditable}\n el=\"button\"\n icon=\"edit\"\n onClick={(e) => {\n e.preventDefault()\n e.stopPropagation()\n toggleDrawer()\n return false\n }}\n onMouseDown={(e) => {\n // Needed to preserve lexical selection for toggleDrawer lexical selection restore.\n // I believe this is needed due to this button (usually) being inside of a collapsible.\n e.preventDefault()\n }}\n round\n size=\"small\"\n tooltip={t('lexical:blocks:inlineBlocks:edit', { label: blockDisplayName })}\n />\n ),\n [baseClass, isEditable, t, blockDisplayName, toggleDrawer],\n )\n\n const RemoveButton = useMemo(\n () => () => (\n <Button\n buttonStyle=\"icon-label\"\n className={`${baseClass}__removeButton`}\n disabled={!isEditable}\n icon=\"x\"\n onClick={(e) => {\n e.preventDefault()\n removeBlock()\n }}\n round\n tooltip=\"Remove Block\"\n />\n ),\n [baseClass, isEditable, removeBlock],\n )\n\n const BlockCollapsible = useMemo(\n () =>\n ({\n Actions,\n children,\n className,\n collapsibleProps,\n disableBlockName,\n editButton,\n errorCount,\n fieldHasErrors,\n Label,\n Pill: CustomPill,\n removeButton,\n }: BlockCollapsibleWithErrorProps) => {\n return (\n <div className={`${baseClass}__container ${baseClass}-${blockType}`}>\n <Collapsible\n className={[\n `${baseClass}__row`,\n fieldHasErrors ? `${baseClass}__row--has-errors` : `${baseClass}__row--no-errors`,\n className,\n ]\n .filter(Boolean)\n .join(' ')}\n collapsibleStyle={fieldHasErrors ? 'error' : 'default'}\n header={\n <div className={`${baseClass}__block-header`}>\n {typeof Label !== 'undefined' ? (\n Label\n ) : typeof CustomLabel !== 'undefined' ? (\n CustomLabel\n ) : (\n <div className={`${baseClass}__block-label`}>\n {typeof CustomPill !== 'undefined' ? (\n CustomPill\n ) : (\n <Pill\n className={`${baseClass}__block-pill ${baseClass}__block-pill-${blockType}`}\n pillStyle=\"white\"\n size=\"small\"\n >\n {blockDisplayName ?? blockType}\n </Pill>\n )}\n {!disableBlockName && !clientBlock?.admin?.disableBlockName && (\n <SectionTitle path=\"blockName\" readOnly={!isEditable} />\n )}\n\n {fieldHasErrors && (\n <ErrorPill count={errorCount ?? 0} i18n={i18n} withMessage />\n )}\n </div>\n )}\n\n <div className={`${baseClass}__block-actions`}>\n {typeof Actions !== 'undefined' ? (\n Actions\n ) : (\n <>\n {(CustomBlock && editButton !== false) || (!CustomBlock && editButton) ? (\n <EditButton />\n ) : null}\n {removeButton !== false && isEditable ? <RemoveButton /> : null}\n </>\n )}\n </div>\n </div>\n }\n isCollapsed={isCollapsed}\n key={0}\n onToggle={(incomingCollapsedState) => {\n onCollapsedChange(incomingCollapsedState)\n setIsCollapsed(incomingCollapsedState)\n }}\n {...(collapsibleProps || {})}\n >\n {children}\n </Collapsible>\n </div>\n )\n },\n [\n CustomBlock,\n CustomLabel,\n EditButton,\n RemoveButton,\n blockDisplayName,\n baseClass,\n clientBlock?.admin?.disableBlockName,\n blockType,\n i18n,\n isCollapsed,\n onCollapsedChange,\n isEditable,\n ],\n )\n\n const blockID = formData?.id\n\n const BlockDrawer = useMemo(\n () => () => (\n <EditDepthProvider>\n <Drawer\n className={''}\n slug={drawerSlug}\n title={t(`lexical:blocks:inlineBlocks:${blockID ? 'edit' : 'create'}`, {\n label: blockDisplayName ?? t('lexical:blocks:inlineBlocks:label'),\n })}\n >\n {initialState ? (\n <>\n <RenderFields\n fields={clientBlock?.fields ?? []}\n forceRender\n parentIndexPath=\"\"\n parentPath=\"\" // See Blocks feature path for details as for why this is empty\n parentSchemaPath={schemaFieldsPath}\n permissions={true}\n readOnly={!isEditable}\n />\n <FormSubmit programmaticSubmit={true}>{t('fields:saveChanges')}</FormSubmit>\n </>\n ) : null}\n </Drawer>\n </EditDepthProvider>\n ),\n [\n initialState,\n drawerSlug,\n blockID,\n blockDisplayName,\n t,\n isEditable,\n clientBlock?.fields,\n schemaFieldsPath,\n // DO NOT ADD FORMDATA HERE! Adding formData will kick you out of sub block editors while writing.\n ],\n )\n\n // Memoized Form JSX\n const Block = useMemo(() => {\n if (!initialState) {\n return null\n }\n return (\n <Form\n beforeSubmit={[\n async ({ formState }) => {\n // This is only called when form is submitted from drawer - usually only the case if the block has a custom Block component\n return await onChange({ formState, submit: true })\n },\n ]}\n el=\"div\"\n fields={clientBlock?.fields ?? []}\n initialState={initialState}\n onChange={[onChange]}\n onSubmit={(formState, newData) => {\n // This is only called when form is submitted from drawer - usually only the case if the block has a custom Block component\n newData.blockType = blockType\n editor.update(() => {\n const node = $getNodeByKey(nodeKey)\n if (node && $isBlockNode(node)) {\n node.setFields(newData as BlockFields, true)\n }\n })\n toggleDrawer()\n }}\n submitted={submitted}\n uuid={uuid()}\n >\n <BlockContent\n baseClass={baseClass}\n BlockDrawer={BlockDrawer}\n Collapsible={BlockCollapsible}\n CustomBlock={CustomBlock}\n EditButton={EditButton}\n errorCount={errorCount}\n formSchema={clientBlock?.fields ?? []}\n initialState={initialState}\n nodeKey={nodeKey}\n RemoveButton={RemoveButton}\n />\n </Form>\n )\n }, [\n BlockCollapsible,\n BlockDrawer,\n CustomBlock,\n blockType,\n RemoveButton,\n EditButton,\n baseClass,\n editor,\n errorCount,\n toggleDrawer,\n clientBlock?.fields,\n // DO NOT ADD FORMDATA HERE! Adding formData will kick you out of sub block editors while writing.\n initialState,\n nodeKey,\n onChange,\n submitted,\n ])\n\n if (!clientBlock) {\n return (\n <BlockCollapsible disableBlockName={true} fieldHasErrors={true}>\n <div className={`${baseClass}-not-found`}>\n Error: Block '{blockType}' not found in the config but exists in the lexical data\n </div>\n </BlockCollapsible>\n )\n }\n\n return Block\n}\n"],"names":["useLexicalComposerContext","useLexicalEditable","getTranslation","Button","Collapsible","Drawer","EditDepthProvider","ErrorPill","Form","formatDrawerSlug","FormSubmit","Pill","RenderFields","SectionTitle","useConfig","useDocumentForm","useDocumentInfo","useEditDepth","useFormSubmitted","useServerFunctions","useTranslation","abortAndIgnore","$getNodeByKey","deepCopyObjectSimpleWithoutReactComponents","reduceFieldsToValues","React","useCallback","useEffect","useMemo","useRef","v4","uuid","useEditorConfigContext","useLexicalDrawer","$isBlockNode","BlockContent","removeEmptyArrayValues","BlockComponent","props","cacheBuster","className","baseClass","formData","nodeKey","submitted","id","collectionSlug","globalSlug","fieldProps","featureClientSchemaMap","field","parentLexicalRichTextField","initialLexicalFormState","schemaPath","uuidFromContext","fields","parentDocumentFields","onChangeAbortControllerRef","AbortController","editDepth","errorCount","setErrorCount","useState","config","drawerSlug","slug","depth","toggleDrawer","getDocPreferences","setDocFieldPreferences","editor","isEditable","blockType","getFormState","schemaFieldsPath","initialState","setInitialState","cachedFormState","formState","mergedState","Object","fromEntries","entries","map","fieldName","fieldState","initialValue","value","blockName","passesCondition","valid","hasMounted","prevCacheBuster","current","CustomLabel","setCustomLabel","customComponents","BlockLabel","undefined","CustomBlock","setCustomBlock","Block","abortController","awaitInitialState","state","data","docPermissions","docPreferences","documentFormState","initialBlockData","operation","readOnly","renderAllFields","signal","newFormStateData","update","node","newData","setFields","_components","isCollapsed","setIsCollapsed","collapsed","componentMapRenderedBlockPath","clientSchemaMap","blocksField","clientBlock","blockReferences","blocksMap","blocks","i18n","t","onChange","prevFormState","submit","controller","newFormState","initialBlockFormState","setTimeout","rowErrorCount","formField","values","removeBlock","remove","blockDisplayName","labels","singular","onCollapsedChange","changedCollapsed","then","currentDocPreferences","currentFieldPreferences","name","collapsedArray","newCollapsed","length","includes","push","splice","indexOf","hello","EditButton","buttonStyle","disabled","el","icon","onClick","e","preventDefault","stopPropagation","onMouseDown","round","size","tooltip","label","RemoveButton","BlockCollapsible","Actions","children","collapsibleProps","disableBlockName","editButton","fieldHasErrors","Label","CustomPill","removeButton","div","filter","Boolean","join","collapsibleStyle","header","pillStyle","admin","path","count","withMessage","onToggle","incomingCollapsedState","blockID","BlockDrawer","title","forceRender","parentIndexPath","parentPath","parentSchemaPath","permissions","programmaticSubmit","beforeSubmit","onSubmit","formSchema"],"mappings":"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"}
@@ -0,0 +1,188 @@
1
+ @import '~@payloadcms/ui/scss';
2
+
3
+ @layer payload-default {
4
+ .LexicalEditorTheme__block {
5
+ @extend %body;
6
+ margin-block: base(0.4);
7
+ // Fixes a bug where, if the block field has a Select field, the Select field's dropdown menu would be hidden behind the lexical editor.
8
+ z-index: 1;
9
+ color: var(--theme-text);
10
+
11
+ &[data-lexical-decorator='true'] {
12
+ // Increase specifity
13
+ width: auto;
14
+ }
15
+
16
+ &__container {
17
+ display: flex;
18
+ flex-direction: column;
19
+ gap: calc(var(--base) / 2);
20
+ }
21
+
22
+ &__row {
23
+ .collapsible__toggle-wrap {
24
+ padding-inline-start: base(0.4);
25
+ }
26
+ }
27
+
28
+ &__header {
29
+ h3 {
30
+ margin: 0;
31
+ }
32
+ }
33
+
34
+ &__header-wrap {
35
+ display: flex;
36
+ align-items: flex-end;
37
+ width: 100%;
38
+ justify-content: space-between;
39
+ }
40
+
41
+ &__heading-with-error {
42
+ display: flex;
43
+ align-items: center;
44
+ gap: calc(var(--base) * 0.5);
45
+ }
46
+
47
+ &--has-no-error {
48
+ > .array-field__header .array-field__heading-with-error {
49
+ color: var(--theme-text);
50
+ }
51
+ }
52
+
53
+ &--has-error {
54
+ > .array-field__header {
55
+ color: var(--theme-error-500);
56
+ }
57
+ }
58
+
59
+ &__error-pill {
60
+ align-self: center;
61
+ }
62
+
63
+ &__header-actions {
64
+ list-style: none;
65
+ margin: 0;
66
+ padding: 0;
67
+ display: flex;
68
+ }
69
+
70
+ &__header-action {
71
+ @extend %btn-reset;
72
+ cursor: pointer;
73
+ margin-left: calc(var(--base) * 0.5);
74
+
75
+ &:hover,
76
+ &:focus-visible {
77
+ text-decoration: underline;
78
+ }
79
+ }
80
+
81
+ .collapsible {
82
+ &__header-wrap {
83
+ // Make more space for the block header (default right: is `calc(var(--base) * 3)`) so that the remove button aligns nicely to the right
84
+ right: calc(var(--base) * 1.5);
85
+ }
86
+ }
87
+
88
+ &__removeButton.btn {
89
+ margin: 0;
90
+ &:hover {
91
+ background-color: var(--theme-elevation-200);
92
+ }
93
+ }
94
+
95
+ &__editButton.btn {
96
+ margin: 0;
97
+ width: 24px;
98
+
99
+ &:hover {
100
+ background-color: var(--theme-elevation-200);
101
+ }
102
+ }
103
+
104
+ &__block-header {
105
+ pointer-events: none;
106
+ }
107
+
108
+ &__block-header * {
109
+ pointer-events: all;
110
+ }
111
+
112
+ &__block-header,
113
+ &__block-header > div:first-child {
114
+ display: flex;
115
+ max-width: 100%;
116
+ width: 100%;
117
+ overflow: hidden;
118
+ gap: calc(var(--base) * 0.375);
119
+ justify-content: flex-start;
120
+ pointer-events: none;
121
+
122
+ & > * {
123
+ pointer-events: all;
124
+ }
125
+ }
126
+
127
+ &__block-header > div:nth-child(2) {
128
+ display: flex;
129
+ justify-content: flex-end;
130
+ }
131
+
132
+ &__block-number {
133
+ flex-shrink: 0;
134
+ }
135
+
136
+ &__block-pill {
137
+ flex-shrink: 0;
138
+ display: block;
139
+ line-height: unset;
140
+ }
141
+
142
+ &__rows {
143
+ display: flex;
144
+ flex-direction: column;
145
+ gap: calc(var(--base) / 2);
146
+ }
147
+
148
+ &__drawer-toggler {
149
+ background-color: transparent;
150
+ margin: 0;
151
+ padding: 0;
152
+ border: none;
153
+ align-self: flex-start;
154
+
155
+ .btn {
156
+ color: var(--theme-elevation-400);
157
+ margin: 0;
158
+
159
+ &:hover {
160
+ color: var(--theme-elevation-800);
161
+ }
162
+ }
163
+ }
164
+
165
+ &-not-found {
166
+ color: var(--theme-error-500);
167
+ font-size: 1.1rem;
168
+ }
169
+ }
170
+
171
+ html[data-theme='light'] {
172
+ .blocks-field--has-error {
173
+ .section-title__input,
174
+ .blocks-field__heading-with-error {
175
+ color: var(--theme-error-750);
176
+ }
177
+ }
178
+ }
179
+
180
+ html[data-theme='dark'] {
181
+ .blocks-field--has-error {
182
+ .section-title__input,
183
+ .blocks-field__heading-with-error {
184
+ color: var(--theme-error-500);
185
+ }
186
+ }
187
+ }
188
+ }
@@ -1,20 +1,17 @@
1
1
  'use client';
2
-
3
2
  /**
4
3
  * By default, if an array field is empty, it will be included in the form state with a value of 0.
5
4
  * We do not need this behavior here, By setting `disableFormData` to true, we can prevent the field from being included in the form state
6
5
  * like that.
7
6
  * @param fields form state
8
- */
9
- export function removeEmptyArrayValues({
10
- fields
11
- }) {
12
- for (const key in fields) {
13
- const field = fields[key];
14
- if (Array.isArray(field?.rows) && 'value' in field) {
15
- field.disableFormData = true;
7
+ */ export function removeEmptyArrayValues({ fields }) {
8
+ for(const key in fields){
9
+ const field = fields[key];
10
+ if (Array.isArray(field?.rows) && 'value' in field) {
11
+ field.disableFormData = true;
12
+ }
16
13
  }
17
- }
18
- return fields;
14
+ return fields;
19
15
  }
16
+
20
17
  //# sourceMappingURL=removeEmptyArrayValues.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"removeEmptyArrayValues.js","names":["removeEmptyArrayValues","fields","key","field","Array","isArray","rows","disableFormData"],"sources":["../../../../../src/features/blocks/client/component/removeEmptyArrayValues.ts"],"sourcesContent":["'use client'\nimport type { FormState } from 'payload'\n\n/**\n * By default, if an array field is empty, it will be included in the form state with a value of 0.\n * We do not need this behavior here, By setting `disableFormData` to true, we can prevent the field from being included in the form state\n * like that.\n * @param fields form state\n */\nexport function removeEmptyArrayValues({ fields }: { fields: FormState }): FormState {\n for (const key in fields) {\n const field = fields[key]\n if (Array.isArray(field?.rows) && 'value' in field) {\n field.disableFormData = true\n }\n }\n return fields\n}\n"],"mappings":"AAAA;;AAGA;;;;;;AAMA,OAAO,SAASA,uBAAuB;EAAEC;AAAM,CAAyB;EACtE,KAAK,MAAMC,GAAA,IAAOD,MAAA,EAAQ;IACxB,MAAME,KAAA,GAAQF,MAAM,CAACC,GAAA,CAAI;IACzB,IAAIE,KAAA,CAAMC,OAAO,CAACF,KAAA,EAAOG,IAAA,KAAS,WAAWH,KAAA,EAAO;MAClDA,KAAA,CAAMI,eAAe,GAAG;IAC1B;EACF;EACA,OAAON,MAAA;AACT","ignoreList":[]}
1
+ {"version":3,"sources":["../../../../../src/features/blocks/client/component/removeEmptyArrayValues.ts"],"sourcesContent":["'use client'\nimport type { FormState } from 'payload'\n\n/**\n * By default, if an array field is empty, it will be included in the form state with a value of 0.\n * We do not need this behavior here, By setting `disableFormData` to true, we can prevent the field from being included in the form state\n * like that.\n * @param fields form state\n */\nexport function removeEmptyArrayValues({ fields }: { fields: FormState }): FormState {\n for (const key in fields) {\n const field = fields[key]\n if (Array.isArray(field?.rows) && 'value' in field) {\n field.disableFormData = true\n }\n }\n return fields\n}\n"],"names":["removeEmptyArrayValues","fields","key","field","Array","isArray","rows","disableFormData"],"mappings":"AAAA;AAGA;;;;;CAKC,GACD,OAAO,SAASA,uBAAuB,EAAEC,MAAM,EAAyB;IACtE,IAAK,MAAMC,OAAOD,OAAQ;QACxB,MAAME,QAAQF,MAAM,CAACC,IAAI;QACzB,IAAIE,MAAMC,OAAO,CAACF,OAAOG,SAAS,WAAWH,OAAO;YAClDA,MAAMI,eAAe,GAAG;QAC1B;IACF;IACA,OAAON;AACT"}
@@ -1,28 +1,16 @@
1
1
  'use client';
2
-
3
- import { c as _c } from "react/compiler-runtime";
4
- import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
5
3
  import React from 'react';
6
4
  import { useInlineBlockComponentContext } from '../index.js';
7
- export const InlineBlockContainer = t0 => {
8
- const $ = _c(3);
9
- const {
10
- children
11
- } = t0;
12
- const {
13
- InlineBlockContainer
14
- } = useInlineBlockComponentContext();
15
- let t1;
16
- if ($[0] !== InlineBlockContainer || $[1] !== children) {
17
- t1 = InlineBlockContainer ? _jsx(InlineBlockContainer, {
18
- children
19
- }) : null;
20
- $[0] = InlineBlockContainer;
21
- $[1] = children;
22
- $[2] = t1;
23
- } else {
24
- t1 = $[2];
25
- }
26
- return t1;
5
+ export const InlineBlockContainer = ({ children })=>{
6
+ const { InlineBlockContainer } = useInlineBlockComponentContext();
7
+ return InlineBlockContainer ? /*#__PURE__*/ _jsxDEV(InlineBlockContainer, {
8
+ children: children
9
+ }, void 0, false, {
10
+ fileName: "src/features/blocks/client/componentInline/components/InlineBlockContainer.tsx",
11
+ lineNumber: 9,
12
+ columnNumber: 33
13
+ }, this) : null;
27
14
  };
15
+
28
16
  //# sourceMappingURL=InlineBlockContainer.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"InlineBlockContainer.js","names":["c","_c","React","useInlineBlockComponentContext","InlineBlockContainer","t0","$","children","t1","_jsx"],"sources":["../../../../../../src/features/blocks/client/componentInline/components/InlineBlockContainer.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nimport { useInlineBlockComponentContext } from '../index.js'\n\nexport const InlineBlockContainer = ({ children }: { children: React.ReactNode }) => {\n const { InlineBlockContainer } = useInlineBlockComponentContext()\n\n return InlineBlockContainer ? <InlineBlockContainer>{children}</InlineBlockContainer> : null\n}\n"],"mappings":"AAAA;;AAAA,SAAAA,CAAA,IAAAC,EAAA;;AACA,OAAOC,KAAA,MAAW;AAElB,SAASC,8BAA8B,QAAQ;AAE/C,OAAO,MAAMC,oBAAA,GAAuBC,EAAA;EAAA,MAAAC,CAAA,GAAAL,EAAA;EAAC;IAAAM;EAAA,IAAAF,EAA2C;EAC9E;IAAAD;EAAA,IAAiCD,8BAAA;EAAA,IAAAK,EAAA;EAAA,IAAAF,CAAA,QAAAF,oBAAA,IAAAE,CAAA,QAAAC,QAAA;IAE1BC,EAAA,GAAAJ,oBAAA,GAAuBK,IAAA,CAACL,oBAAA;MAAAG;IAAA,C,QAAyD;IAAAD,CAAA,MAAAF,oBAAA;IAAAE,CAAA,MAAAC,QAAA;IAAAD,CAAA,MAAAE,EAAA;EAAA;IAAAA,EAAA,GAAAF,CAAA;EAAA;EAAA,OAAjFE,EAAiF;AAAA,CAC1F","ignoreList":[]}
1
+ {"version":3,"sources":["../../../../../../src/features/blocks/client/componentInline/components/InlineBlockContainer.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nimport { useInlineBlockComponentContext } from '../index.js'\n\nexport const InlineBlockContainer = ({ children }: { children: React.ReactNode }) => {\n const { InlineBlockContainer } = useInlineBlockComponentContext()\n\n return InlineBlockContainer ? <InlineBlockContainer>{children}</InlineBlockContainer> : null\n}\n"],"names":["React","useInlineBlockComponentContext","InlineBlockContainer","children"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,SAASC,8BAA8B,QAAQ,cAAa;AAE5D,OAAO,MAAMC,uBAAuB,CAAC,EAAEC,QAAQ,EAAiC;IAC9E,MAAM,EAAED,oBAAoB,EAAE,GAAGD;IAEjC,OAAOC,qCAAuB,QAACA;kBAAsBC;;;;;eAAmC;AAC1F,EAAC"}
@@ -1,22 +1,14 @@
1
1
  'use client';
2
-
3
- import { c as _c } from "react/compiler-runtime";
4
- import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
5
3
  import React from 'react';
6
4
  import { useInlineBlockComponentContext } from '../index.js';
7
- export const InlineBlockEditButton = () => {
8
- const $ = _c(2);
9
- const {
10
- EditButton
11
- } = useInlineBlockComponentContext();
12
- let t0;
13
- if ($[0] !== EditButton) {
14
- t0 = EditButton ? _jsx(EditButton, {}) : null;
15
- $[0] = EditButton;
16
- $[1] = t0;
17
- } else {
18
- t0 = $[1];
19
- }
20
- return t0;
5
+ export const InlineBlockEditButton = ()=>{
6
+ const { EditButton } = useInlineBlockComponentContext();
7
+ return EditButton ? /*#__PURE__*/ _jsxDEV(EditButton, {}, void 0, false, {
8
+ fileName: "src/features/blocks/client/componentInline/components/InlineBlockEditButton.tsx",
9
+ lineNumber: 9,
10
+ columnNumber: 23
11
+ }, this) : null;
21
12
  };
13
+
22
14
  //# sourceMappingURL=InlineBlockEditButton.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"InlineBlockEditButton.js","names":["c","_c","React","useInlineBlockComponentContext","InlineBlockEditButton","$","EditButton","t0","_jsx"],"sources":["../../../../../../src/features/blocks/client/componentInline/components/InlineBlockEditButton.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nimport { useInlineBlockComponentContext } from '../index.js'\n\nexport const InlineBlockEditButton = () => {\n const { EditButton } = useInlineBlockComponentContext()\n\n return EditButton ? <EditButton /> : null\n}\n"],"mappings":"AAAA;;AAAA,SAAAA,CAAA,IAAAC,EAAA;;AACA,OAAOC,KAAA,MAAW;AAElB,SAASC,8BAA8B,QAAQ;AAE/C,OAAO,MAAMC,qBAAA,GAAwBA,CAAA;EAAA,MAAAC,CAAA,GAAAJ,EAAA;EACnC;IAAAK;EAAA,IAAuBH,8BAAA;EAAA,IAAAI,EAAA;EAAA,IAAAF,CAAA,QAAAC,UAAA;IAEhBC,EAAA,GAAAD,UAAA,GAAaE,IAAA,CAACF,UAAA,YAAgB;IAAAD,CAAA,MAAAC,UAAA;IAAAD,CAAA,MAAAE,EAAA;EAAA;IAAAA,EAAA,GAAAF,CAAA;EAAA;EAAA,OAA9BE,EAA8B;AAAA,CACvC","ignoreList":[]}
1
+ {"version":3,"sources":["../../../../../../src/features/blocks/client/componentInline/components/InlineBlockEditButton.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nimport { useInlineBlockComponentContext } from '../index.js'\n\nexport const InlineBlockEditButton = () => {\n const { EditButton } = useInlineBlockComponentContext()\n\n return EditButton ? <EditButton /> : null\n}\n"],"names":["React","useInlineBlockComponentContext","InlineBlockEditButton","EditButton"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,SAASC,8BAA8B,QAAQ,cAAa;AAE5D,OAAO,MAAMC,wBAAwB;IACnC,MAAM,EAAEC,UAAU,EAAE,GAAGF;IAEvB,OAAOE,2BAAa,QAACA;;;;eAAgB;AACvC,EAAC"}
@@ -1,22 +1,14 @@
1
1
  'use client';
2
-
3
- import { c as _c } from "react/compiler-runtime";
4
- import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
5
3
  import React from 'react';
6
4
  import { useInlineBlockComponentContext } from '../index.js';
7
- export const InlineBlockLabel = () => {
8
- const $ = _c(2);
9
- const {
10
- Label
11
- } = useInlineBlockComponentContext();
12
- let t0;
13
- if ($[0] !== Label) {
14
- t0 = Label ? _jsx(Label, {}) : null;
15
- $[0] = Label;
16
- $[1] = t0;
17
- } else {
18
- t0 = $[1];
19
- }
20
- return t0;
5
+ export const InlineBlockLabel = ()=>{
6
+ const { Label } = useInlineBlockComponentContext();
7
+ return Label ? /*#__PURE__*/ _jsxDEV(Label, {}, void 0, false, {
8
+ fileName: "src/features/blocks/client/componentInline/components/InlineBlockLabel.tsx",
9
+ lineNumber: 9,
10
+ columnNumber: 18
11
+ }, this) : null;
21
12
  };
13
+
22
14
  //# sourceMappingURL=InlineBlockLabel.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"InlineBlockLabel.js","names":["c","_c","React","useInlineBlockComponentContext","InlineBlockLabel","$","Label","t0","_jsx"],"sources":["../../../../../../src/features/blocks/client/componentInline/components/InlineBlockLabel.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nimport { useInlineBlockComponentContext } from '../index.js'\n\nexport const InlineBlockLabel = () => {\n const { Label } = useInlineBlockComponentContext()\n\n return Label ? <Label /> : null\n}\n"],"mappings":"AAAA;;AAAA,SAAAA,CAAA,IAAAC,EAAA;;AACA,OAAOC,KAAA,MAAW;AAElB,SAASC,8BAA8B,QAAQ;AAE/C,OAAO,MAAMC,gBAAA,GAAmBA,CAAA;EAAA,MAAAC,CAAA,GAAAJ,EAAA;EAC9B;IAAAK;EAAA,IAAkBH,8BAAA;EAAA,IAAAI,EAAA;EAAA,IAAAF,CAAA,QAAAC,KAAA;IAEXC,EAAA,GAAAD,KAAA,GAAQE,IAAA,CAACF,KAAA,YAAW;IAAAD,CAAA,MAAAC,KAAA;IAAAD,CAAA,MAAAE,EAAA;EAAA;IAAAA,EAAA,GAAAF,CAAA;EAAA;EAAA,OAApBE,EAAoB;AAAA,CAC7B","ignoreList":[]}
1
+ {"version":3,"sources":["../../../../../../src/features/blocks/client/componentInline/components/InlineBlockLabel.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nimport { useInlineBlockComponentContext } from '../index.js'\n\nexport const InlineBlockLabel = () => {\n const { Label } = useInlineBlockComponentContext()\n\n return Label ? <Label /> : null\n}\n"],"names":["React","useInlineBlockComponentContext","InlineBlockLabel","Label"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,SAASC,8BAA8B,QAAQ,cAAa;AAE5D,OAAO,MAAMC,mBAAmB;IAC9B,MAAM,EAAEC,KAAK,EAAE,GAAGF;IAElB,OAAOE,sBAAQ,QAACA;;;;eAAW;AAC7B,EAAC"}
@@ -1,22 +1,14 @@
1
1
  'use client';
2
-
3
- import { c as _c } from "react/compiler-runtime";
4
- import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
5
3
  import React from 'react';
6
4
  import { useInlineBlockComponentContext } from '../index.js';
7
- export const InlineBlockRemoveButton = () => {
8
- const $ = _c(2);
9
- const {
10
- RemoveButton
11
- } = useInlineBlockComponentContext();
12
- let t0;
13
- if ($[0] !== RemoveButton) {
14
- t0 = RemoveButton ? _jsx(RemoveButton, {}) : null;
15
- $[0] = RemoveButton;
16
- $[1] = t0;
17
- } else {
18
- t0 = $[1];
19
- }
20
- return t0;
5
+ export const InlineBlockRemoveButton = ()=>{
6
+ const { RemoveButton } = useInlineBlockComponentContext();
7
+ return RemoveButton ? /*#__PURE__*/ _jsxDEV(RemoveButton, {}, void 0, false, {
8
+ fileName: "src/features/blocks/client/componentInline/components/InlineBlockRemoveButton.tsx",
9
+ lineNumber: 9,
10
+ columnNumber: 25
11
+ }, this) : null;
21
12
  };
13
+
22
14
  //# sourceMappingURL=InlineBlockRemoveButton.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"InlineBlockRemoveButton.js","names":["c","_c","React","useInlineBlockComponentContext","InlineBlockRemoveButton","$","RemoveButton","t0","_jsx"],"sources":["../../../../../../src/features/blocks/client/componentInline/components/InlineBlockRemoveButton.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nimport { useInlineBlockComponentContext } from '../index.js'\n\nexport const InlineBlockRemoveButton = () => {\n const { RemoveButton } = useInlineBlockComponentContext()\n\n return RemoveButton ? <RemoveButton /> : null\n}\n"],"mappings":"AAAA;;AAAA,SAAAA,CAAA,IAAAC,EAAA;;AACA,OAAOC,KAAA,MAAW;AAElB,SAASC,8BAA8B,QAAQ;AAE/C,OAAO,MAAMC,uBAAA,GAA0BA,CAAA;EAAA,MAAAC,CAAA,GAAAJ,EAAA;EACrC;IAAAK;EAAA,IAAyBH,8BAAA;EAAA,IAAAI,EAAA;EAAA,IAAAF,CAAA,QAAAC,YAAA;IAElBC,EAAA,GAAAD,YAAA,GAAeE,IAAA,CAACF,YAAA,YAAkB;IAAAD,CAAA,MAAAC,YAAA;IAAAD,CAAA,MAAAE,EAAA;EAAA;IAAAA,EAAA,GAAAF,CAAA;EAAA;EAAA,OAAlCE,EAAkC;AAAA,CAC3C","ignoreList":[]}
1
+ {"version":3,"sources":["../../../../../../src/features/blocks/client/componentInline/components/InlineBlockRemoveButton.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nimport { useInlineBlockComponentContext } from '../index.js'\n\nexport const InlineBlockRemoveButton = () => {\n const { RemoveButton } = useInlineBlockComponentContext()\n\n return RemoveButton ? <RemoveButton /> : null\n}\n"],"names":["React","useInlineBlockComponentContext","InlineBlockRemoveButton","RemoveButton"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,SAASC,8BAA8B,QAAQ,cAAa;AAE5D,OAAO,MAAMC,0BAA0B;IACrC,MAAM,EAAEC,YAAY,EAAE,GAAGF;IAEzB,OAAOE,6BAAe,QAACA;;;;eAAkB;AAC3C,EAAC"}