@payloadcms/richtext-lexical 3.68.0-internal-debug.2eb12b9 → 3.68.0-internal-debug.dafc24d

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 (306) hide show
  1. package/dist/cell/rscEntry.js +13 -5
  2. package/dist/cell/rscEntry.js.map +1 -1
  3. package/dist/features/blocks/client/component/BlockContent.js +29 -9
  4. package/dist/features/blocks/client/component/BlockContent.js.map +1 -1
  5. package/dist/features/blocks/client/component/components/BlockCollapsible.js +7 -3
  6. package/dist/features/blocks/client/component/components/BlockCollapsible.js.map +1 -1
  7. package/dist/features/blocks/client/component/components/BlockEditButton.js +6 -2
  8. package/dist/features/blocks/client/component/components/BlockEditButton.js.map +1 -1
  9. package/dist/features/blocks/client/component/components/BlockRemoveButton.js +6 -2
  10. package/dist/features/blocks/client/component/components/BlockRemoveButton.js.map +1 -1
  11. package/dist/features/blocks/client/component/index.js +124 -43
  12. package/dist/features/blocks/client/component/index.js.map +1 -1
  13. package/dist/features/blocks/client/component/index.scss +188 -0
  14. package/dist/features/blocks/client/componentInline/components/InlineBlockContainer.js +7 -3
  15. package/dist/features/blocks/client/componentInline/components/InlineBlockContainer.js.map +1 -1
  16. package/dist/features/blocks/client/componentInline/components/InlineBlockEditButton.js +6 -2
  17. package/dist/features/blocks/client/componentInline/components/InlineBlockEditButton.js.map +1 -1
  18. package/dist/features/blocks/client/componentInline/components/InlineBlockLabel.js +6 -2
  19. package/dist/features/blocks/client/componentInline/components/InlineBlockLabel.js.map +1 -1
  20. package/dist/features/blocks/client/componentInline/components/InlineBlockRemoveButton.js +6 -2
  21. package/dist/features/blocks/client/componentInline/components/InlineBlockRemoveButton.js.map +1 -1
  22. package/dist/features/blocks/client/componentInline/index.js +118 -37
  23. package/dist/features/blocks/client/componentInline/index.js.map +1 -1
  24. package/dist/features/blocks/client/componentInline/index.scss +90 -0
  25. package/dist/features/blocks/client/getBlockImageComponent.js +7 -3
  26. package/dist/features/blocks/client/getBlockImageComponent.js.map +1 -1
  27. package/dist/features/blocks/client/markdown/markdownTransformer.js +1 -0
  28. package/dist/features/blocks/client/markdown/markdownTransformer.js.map +1 -1
  29. package/dist/features/blocks/client/nodes/BlocksNode.js +7 -3
  30. package/dist/features/blocks/client/nodes/BlocksNode.js.map +1 -1
  31. package/dist/features/blocks/client/nodes/InlineBlocksNode.js +7 -3
  32. package/dist/features/blocks/client/nodes/InlineBlocksNode.js.map +1 -1
  33. package/dist/features/blocks/premade/CodeBlock/Component/Block.js +88 -27
  34. package/dist/features/blocks/premade/CodeBlock/Component/Block.js.map +1 -1
  35. package/dist/features/blocks/premade/CodeBlock/Component/Code.js +7 -3
  36. package/dist/features/blocks/premade/CodeBlock/Component/Code.js.map +1 -1
  37. package/dist/features/blocks/premade/CodeBlock/Component/Collapse/index.js +13 -4
  38. package/dist/features/blocks/premade/CodeBlock/Component/Collapse/index.js.map +1 -1
  39. package/dist/features/blocks/premade/CodeBlock/Component/Collapse/index.scss +6 -0
  40. package/dist/features/blocks/premade/CodeBlock/Component/FloatingCollapse/index.js +19 -6
  41. package/dist/features/blocks/premade/CodeBlock/Component/FloatingCollapse/index.js.map +1 -1
  42. package/dist/features/blocks/premade/CodeBlock/Component/FloatingCollapse/index.scss +29 -0
  43. package/dist/features/blocks/premade/CodeBlock/Component/index.scss +97 -0
  44. package/dist/features/blocks/server/markdown/markdownTransformer.js +1 -0
  45. package/dist/features/blocks/server/markdown/markdownTransformer.js.map +1 -1
  46. package/dist/features/converters/lexicalToJSX/Component/index.js +9 -5
  47. package/dist/features/converters/lexicalToJSX/Component/index.js.map +1 -1
  48. package/dist/features/converters/lexicalToJSX/converter/converters/blockquote.js +7 -3
  49. package/dist/features/converters/lexicalToJSX/converter/converters/blockquote.js.map +1 -1
  50. package/dist/features/converters/lexicalToJSX/converter/converters/heading.js +7 -3
  51. package/dist/features/converters/lexicalToJSX/converter/converters/heading.js.map +1 -1
  52. package/dist/features/converters/lexicalToJSX/converter/converters/horizontalRule.js +6 -2
  53. package/dist/features/converters/lexicalToJSX/converter/converters/horizontalRule.js.map +1 -1
  54. package/dist/features/converters/lexicalToJSX/converter/converters/linebreak.js +6 -2
  55. package/dist/features/converters/lexicalToJSX/converter/converters/linebreak.js.map +1 -1
  56. package/dist/features/converters/lexicalToJSX/converter/converters/link.js +13 -5
  57. package/dist/features/converters/lexicalToJSX/converter/converters/link.js.map +1 -1
  58. package/dist/features/converters/lexicalToJSX/converter/converters/list.js +38 -14
  59. package/dist/features/converters/lexicalToJSX/converter/converters/list.js.map +1 -1
  60. package/dist/features/converters/lexicalToJSX/converter/converters/paragraph.js +18 -6
  61. package/dist/features/converters/lexicalToJSX/converter/converters/paragraph.js.map +1 -1
  62. package/dist/features/converters/lexicalToJSX/converter/converters/table.js +31 -11
  63. package/dist/features/converters/lexicalToJSX/converter/converters/table.js.map +1 -1
  64. package/dist/features/converters/lexicalToJSX/converter/converters/text.js +43 -15
  65. package/dist/features/converters/lexicalToJSX/converter/converters/text.js.map +1 -1
  66. package/dist/features/converters/lexicalToJSX/converter/converters/upload.js +31 -11
  67. package/dist/features/converters/lexicalToJSX/converter/converters/upload.js.map +1 -1
  68. package/dist/features/converters/lexicalToJSX/converter/index.js +8 -4
  69. package/dist/features/converters/lexicalToJSX/converter/index.js.map +1 -1
  70. package/dist/features/debug/jsxConverter/client/plugin/index.js +14 -5
  71. package/dist/features/debug/jsxConverter/client/plugin/index.js.map +1 -1
  72. package/dist/features/debug/jsxConverter/client/plugin/style.scss +12 -0
  73. package/dist/features/debug/testRecorder/client/plugin/index.js +62 -21
  74. package/dist/features/debug/testRecorder/client/plugin/index.js.map +1 -1
  75. package/dist/features/debug/testRecorder/client/plugin/index.scss +53 -0
  76. package/dist/features/debug/treeView/client/plugin/index.js +8 -3
  77. package/dist/features/debug/treeView/client/plugin/index.js.map +1 -1
  78. package/dist/features/debug/treeView/client/plugin/index.scss +80 -0
  79. package/dist/features/experimental_table/client/plugins/TableActionMenuPlugin/index.js +225 -72
  80. package/dist/features/experimental_table/client/plugins/TableActionMenuPlugin/index.js.map +1 -1
  81. package/dist/features/experimental_table/client/plugins/TableActionMenuPlugin/index.scss +87 -0
  82. package/dist/features/experimental_table/client/plugins/TableCellResizerPlugin/index.js +32 -11
  83. package/dist/features/experimental_table/client/plugins/TableCellResizerPlugin/index.js.map +1 -1
  84. package/dist/features/experimental_table/client/plugins/TableCellResizerPlugin/index.scss +11 -0
  85. package/dist/features/experimental_table/client/plugins/TableHoverActionsPlugin/index.js +21 -9
  86. package/dist/features/experimental_table/client/plugins/TableHoverActionsPlugin/index.js.map +1 -1
  87. package/dist/features/experimental_table/client/plugins/TablePlugin/index.js +26 -9
  88. package/dist/features/experimental_table/client/plugins/TablePlugin/index.js.map +1 -1
  89. package/dist/features/experimental_table/client/plugins/TablePlugin/index.scss +233 -0
  90. package/dist/features/horizontalRule/client/plugin/index.js +1 -0
  91. package/dist/features/horizontalRule/client/plugin/index.js.map +1 -1
  92. package/dist/features/horizontalRule/client/plugin/index.scss +23 -0
  93. package/dist/features/indent/client/IndentPlugin.js +6 -2
  94. package/dist/features/indent/client/IndentPlugin.js.map +1 -1
  95. package/dist/features/link/client/plugins/autoLink/index.js +3 -0
  96. package/dist/features/link/client/plugins/autoLink/index.js.map +1 -1
  97. package/dist/features/link/client/plugins/clickableLink/index.js +6 -2
  98. package/dist/features/link/client/plugins/clickableLink/index.js.map +1 -1
  99. package/dist/features/link/client/plugins/floatingLinkEditor/LinkEditor/index.js +76 -24
  100. package/dist/features/link/client/plugins/floatingLinkEditor/LinkEditor/index.js.map +1 -1
  101. package/dist/features/link/client/plugins/floatingLinkEditor/index.js +8 -3
  102. package/dist/features/link/client/plugins/floatingLinkEditor/index.js.map +1 -1
  103. package/dist/features/link/client/plugins/floatingLinkEditor/index.scss +92 -0
  104. package/dist/features/link/server/baseFields.js +1 -0
  105. package/dist/features/link/server/baseFields.js.map +1 -1
  106. package/dist/features/lists/checklist/client/plugin/index.js +6 -2
  107. package/dist/features/lists/checklist/client/plugin/index.js.map +1 -1
  108. package/dist/features/lists/plugin/index.js +6 -2
  109. package/dist/features/lists/plugin/index.js.map +1 -1
  110. package/dist/features/migrations/lexicalPluginToLexical/nodes/unknownConvertedNode/Component.js +14 -5
  111. package/dist/features/migrations/lexicalPluginToLexical/nodes/unknownConvertedNode/Component.js.map +1 -1
  112. package/dist/features/migrations/lexicalPluginToLexical/nodes/unknownConvertedNode/index.js +7 -3
  113. package/dist/features/migrations/lexicalPluginToLexical/nodes/unknownConvertedNode/index.js.map +1 -1
  114. package/dist/features/migrations/lexicalPluginToLexical/nodes/unknownConvertedNode/index.scss +16 -0
  115. package/dist/features/migrations/slateToLexical/nodes/unknownConvertedNode/Component.js +14 -5
  116. package/dist/features/migrations/slateToLexical/nodes/unknownConvertedNode/Component.js.map +1 -1
  117. package/dist/features/migrations/slateToLexical/nodes/unknownConvertedNode/index.js +7 -3
  118. package/dist/features/migrations/slateToLexical/nodes/unknownConvertedNode/index.js.map +1 -1
  119. package/dist/features/migrations/slateToLexical/nodes/unknownConvertedNode/index.scss +16 -0
  120. package/dist/features/relationship/client/components/RelationshipComponent.js +56 -19
  121. package/dist/features/relationship/client/components/RelationshipComponent.js.map +1 -1
  122. package/dist/features/relationship/client/components/index.scss +95 -0
  123. package/dist/features/relationship/client/drawer/index.js +18 -6
  124. package/dist/features/relationship/client/drawer/index.js.map +1 -1
  125. package/dist/features/relationship/client/nodes/RelationshipNode.js +7 -3
  126. package/dist/features/relationship/client/nodes/RelationshipNode.js.map +1 -1
  127. package/dist/features/relationship/client/plugins/index.js +7 -3
  128. package/dist/features/relationship/client/plugins/index.js.map +1 -1
  129. package/dist/features/textState/feature.client.js +18 -6
  130. package/dist/features/textState/feature.client.js.map +1 -1
  131. package/dist/features/toolbars/fixed/client/Toolbar/index.js +72 -23
  132. package/dist/features/toolbars/fixed/client/Toolbar/index.js.map +1 -1
  133. package/dist/features/toolbars/fixed/client/Toolbar/index.scss +113 -0
  134. package/dist/features/toolbars/inline/client/Toolbar/index.js +72 -23
  135. package/dist/features/toolbars/inline/client/Toolbar/index.js.map +1 -1
  136. package/dist/features/toolbars/inline/client/Toolbar/index.scss +58 -0
  137. package/dist/features/toolbars/shared/ToolbarButton/index.js +8 -3
  138. package/dist/features/toolbars/shared/ToolbarButton/index.js.map +1 -1
  139. package/dist/features/toolbars/shared/ToolbarButton/index.scss +46 -0
  140. package/dist/features/toolbars/shared/ToolbarDropdown/DropDown.js +60 -20
  141. package/dist/features/toolbars/shared/ToolbarDropdown/DropDown.js.map +1 -1
  142. package/dist/features/toolbars/shared/ToolbarDropdown/index.js +37 -12
  143. package/dist/features/toolbars/shared/ToolbarDropdown/index.js.map +1 -1
  144. package/dist/features/toolbars/shared/ToolbarDropdown/index.scss +129 -0
  145. package/dist/features/upload/client/component/index.js +92 -31
  146. package/dist/features/upload/client/component/index.js.map +1 -1
  147. package/dist/features/upload/client/component/index.scss +191 -0
  148. package/dist/features/upload/client/component/pending/index.js +14 -5
  149. package/dist/features/upload/client/component/pending/index.js.map +1 -1
  150. package/dist/features/upload/client/drawer/index.js +18 -6
  151. package/dist/features/upload/client/drawer/index.js.map +1 -1
  152. package/dist/features/upload/client/nodes/UploadNode.js +12 -4
  153. package/dist/features/upload/client/nodes/UploadNode.js.map +1 -1
  154. package/dist/features/upload/client/plugin/index.js +7 -3
  155. package/dist/features/upload/client/plugin/index.js.map +1 -1
  156. package/dist/field/Diff/converters/listitem/index.js +37 -12
  157. package/dist/field/Diff/converters/listitem/index.js.map +1 -1
  158. package/dist/field/Diff/converters/listitem/index.scss +47 -0
  159. package/dist/field/Diff/converters/relationship/index.js +37 -12
  160. package/dist/field/Diff/converters/relationship/index.js.map +1 -1
  161. package/dist/field/Diff/converters/relationship/index.scss +73 -0
  162. package/dist/field/Diff/converters/unknown/index.js +31 -10
  163. package/dist/field/Diff/converters/unknown/index.js.map +1 -1
  164. package/dist/field/Diff/converters/unknown/index.scss +40 -0
  165. package/dist/field/Diff/converters/upload/index.js +60 -19
  166. package/dist/field/Diff/converters/upload/index.js.map +1 -1
  167. package/dist/field/Diff/converters/upload/index.scss +115 -0
  168. package/dist/field/Diff/index.js +8 -3
  169. package/dist/field/Diff/index.js.map +1 -1
  170. package/dist/field/Diff/index.scss +102 -0
  171. package/dist/field/Field.js +81 -27
  172. package/dist/field/Field.js.map +1 -1
  173. package/dist/field/RenderLexical/index.js +36 -12
  174. package/dist/field/RenderLexical/index.js.map +1 -1
  175. package/dist/field/index.js +19 -7
  176. package/dist/field/index.js.map +1 -1
  177. package/dist/field/index.scss +41 -0
  178. package/dist/field/rscEntry.js +7 -3
  179. package/dist/field/rscEntry.js.map +1 -1
  180. package/dist/index.js +2 -0
  181. package/dist/index.js.map +1 -1
  182. package/dist/lexical/EditorPlugin.js +13 -5
  183. package/dist/lexical/EditorPlugin.js.map +1 -1
  184. package/dist/lexical/LexicalEditor.js +163 -50
  185. package/dist/lexical/LexicalEditor.js.map +1 -1
  186. package/dist/lexical/LexicalEditor.scss +54 -0
  187. package/dist/lexical/LexicalProvider.js +49 -17
  188. package/dist/lexical/LexicalProvider.js.map +1 -1
  189. package/dist/lexical/config/client/EditorConfigProvider.js +7 -3
  190. package/dist/lexical/config/client/EditorConfigProvider.js.map +1 -1
  191. package/dist/lexical/plugins/DecoratorPlugin/index.js +1 -0
  192. package/dist/lexical/plugins/DecoratorPlugin/index.js.map +1 -1
  193. package/dist/lexical/plugins/DecoratorPlugin/index.scss +13 -0
  194. package/dist/lexical/plugins/InsertParagraphAtEnd/index.js +20 -7
  195. package/dist/lexical/plugins/InsertParagraphAtEnd/index.js.map +1 -1
  196. package/dist/lexical/plugins/InsertParagraphAtEnd/index.scss +54 -0
  197. package/dist/lexical/plugins/SlashMenu/LexicalTypeaheadMenuPlugin/LexicalMenu.js +2 -0
  198. package/dist/lexical/plugins/SlashMenu/LexicalTypeaheadMenuPlugin/LexicalMenu.js.map +1 -1
  199. package/dist/lexical/plugins/SlashMenu/LexicalTypeaheadMenuPlugin/index.js +7 -3
  200. package/dist/lexical/plugins/SlashMenu/LexicalTypeaheadMenuPlugin/index.js.map +1 -1
  201. package/dist/lexical/plugins/SlashMenu/index.js +50 -16
  202. package/dist/lexical/plugins/SlashMenu/index.js.map +1 -1
  203. package/dist/lexical/plugins/SlashMenu/index.scss +68 -0
  204. package/dist/lexical/plugins/handles/AddBlockHandlePlugin/index.js +20 -7
  205. package/dist/lexical/plugins/handles/AddBlockHandlePlugin/index.js.map +1 -1
  206. package/dist/lexical/plugins/handles/AddBlockHandlePlugin/index.scss +35 -0
  207. package/dist/lexical/plugins/handles/DraggableBlockPlugin/index.js +32 -11
  208. package/dist/lexical/plugins/handles/DraggableBlockPlugin/index.js.map +1 -1
  209. package/dist/lexical/plugins/handles/DraggableBlockPlugin/index.scss +80 -0
  210. package/dist/lexical/theme/EditorTheme.scss +357 -0
  211. package/dist/lexical/ui/ContentEditable.js +14 -5
  212. package/dist/lexical/ui/ContentEditable.js.map +1 -1
  213. package/dist/lexical/ui/ContentEditable.scss +105 -0
  214. package/dist/lexical/ui/icons/AI/index.js +37 -13
  215. package/dist/lexical/ui/icons/AI/index.js.map +1 -1
  216. package/dist/lexical/ui/icons/Add/index.js +19 -7
  217. package/dist/lexical/ui/icons/Add/index.js.map +1 -1
  218. package/dist/lexical/ui/icons/AlignCenter/index.js +25 -9
  219. package/dist/lexical/ui/icons/AlignCenter/index.js.map +1 -1
  220. package/dist/lexical/ui/icons/AlignJustify/index.js +25 -9
  221. package/dist/lexical/ui/icons/AlignJustify/index.js.map +1 -1
  222. package/dist/lexical/ui/icons/AlignLeft/index.js +25 -9
  223. package/dist/lexical/ui/icons/AlignLeft/index.js.map +1 -1
  224. package/dist/lexical/ui/icons/AlignRight/index.js +25 -9
  225. package/dist/lexical/ui/icons/AlignRight/index.js.map +1 -1
  226. package/dist/lexical/ui/icons/Block/index.js +25 -9
  227. package/dist/lexical/ui/icons/Block/index.js.map +1 -1
  228. package/dist/lexical/ui/icons/Blockquote/index.js +13 -5
  229. package/dist/lexical/ui/icons/Blockquote/index.js.map +1 -1
  230. package/dist/lexical/ui/icons/Bold/index.js +13 -5
  231. package/dist/lexical/ui/icons/Bold/index.js.map +1 -1
  232. package/dist/lexical/ui/icons/Checklist/index.js +19 -7
  233. package/dist/lexical/ui/icons/Checklist/index.js.map +1 -1
  234. package/dist/lexical/ui/icons/Code/index.js +19 -7
  235. package/dist/lexical/ui/icons/Code/index.js.map +1 -1
  236. package/dist/lexical/ui/icons/CodeBlock/index.js +13 -5
  237. package/dist/lexical/ui/icons/CodeBlock/index.js.map +1 -1
  238. package/dist/lexical/ui/icons/Collapse/index.js +13 -5
  239. package/dist/lexical/ui/icons/Collapse/index.js.map +1 -1
  240. package/dist/lexical/ui/icons/H1/index.js +13 -5
  241. package/dist/lexical/ui/icons/H1/index.js.map +1 -1
  242. package/dist/lexical/ui/icons/H2/index.js +13 -5
  243. package/dist/lexical/ui/icons/H2/index.js.map +1 -1
  244. package/dist/lexical/ui/icons/H3/index.js +13 -5
  245. package/dist/lexical/ui/icons/H3/index.js.map +1 -1
  246. package/dist/lexical/ui/icons/H4/index.js +13 -5
  247. package/dist/lexical/ui/icons/H4/index.js.map +1 -1
  248. package/dist/lexical/ui/icons/H5/index.js +13 -5
  249. package/dist/lexical/ui/icons/H5/index.js.map +1 -1
  250. package/dist/lexical/ui/icons/H6/index.js +13 -5
  251. package/dist/lexical/ui/icons/H6/index.js.map +1 -1
  252. package/dist/lexical/ui/icons/HorizontalRule/index.js +13 -5
  253. package/dist/lexical/ui/icons/HorizontalRule/index.js.map +1 -1
  254. package/dist/lexical/ui/icons/IndentDecrease/index.js +31 -11
  255. package/dist/lexical/ui/icons/IndentDecrease/index.js.map +1 -1
  256. package/dist/lexical/ui/icons/IndentIncrease/index.js +31 -11
  257. package/dist/lexical/ui/icons/IndentIncrease/index.js.map +1 -1
  258. package/dist/lexical/ui/icons/InlineBlocks/index.js +13 -5
  259. package/dist/lexical/ui/icons/InlineBlocks/index.js.map +1 -1
  260. package/dist/lexical/ui/icons/Italic/index.js +13 -5
  261. package/dist/lexical/ui/icons/Italic/index.js.map +1 -1
  262. package/dist/lexical/ui/icons/Link/index.js +13 -5
  263. package/dist/lexical/ui/icons/Link/index.js.map +1 -1
  264. package/dist/lexical/ui/icons/Meatballs/index.js +25 -9
  265. package/dist/lexical/ui/icons/Meatballs/index.js.map +1 -1
  266. package/dist/lexical/ui/icons/OrderedList/index.js +37 -13
  267. package/dist/lexical/ui/icons/OrderedList/index.js.map +1 -1
  268. package/dist/lexical/ui/icons/Relationship/index.js +37 -13
  269. package/dist/lexical/ui/icons/Relationship/index.js.map +1 -1
  270. package/dist/lexical/ui/icons/Strikethrough/index.js +19 -7
  271. package/dist/lexical/ui/icons/Strikethrough/index.js.map +1 -1
  272. package/dist/lexical/ui/icons/Subscript/index.js +13 -5
  273. package/dist/lexical/ui/icons/Subscript/index.js.map +1 -1
  274. package/dist/lexical/ui/icons/Superscript/index.js +13 -5
  275. package/dist/lexical/ui/icons/Superscript/index.js.map +1 -1
  276. package/dist/lexical/ui/icons/Table/index.js +13 -5
  277. package/dist/lexical/ui/icons/Table/index.js.map +1 -1
  278. package/dist/lexical/ui/icons/Text/index.js +13 -5
  279. package/dist/lexical/ui/icons/Text/index.js.map +1 -1
  280. package/dist/lexical/ui/icons/TextState/index.js +7 -3
  281. package/dist/lexical/ui/icons/TextState/index.js.map +1 -1
  282. package/dist/lexical/ui/icons/Underline/index.js +19 -7
  283. package/dist/lexical/ui/icons/Underline/index.js.map +1 -1
  284. package/dist/lexical/ui/icons/UnorderedList/index.js +43 -15
  285. package/dist/lexical/ui/icons/UnorderedList/index.js.map +1 -1
  286. package/dist/lexical/ui/icons/Upload/index.js +25 -9
  287. package/dist/lexical/ui/icons/Upload/index.js.map +1 -1
  288. package/dist/packages/@lexical/markdown/MarkdownShortcuts.js +2 -0
  289. package/dist/packages/@lexical/markdown/MarkdownShortcuts.js.map +1 -1
  290. package/dist/packages/@lexical/markdown/importTextFormatTransformer.js +2 -0
  291. package/dist/packages/@lexical/markdown/importTextFormatTransformer.js.map +1 -1
  292. package/dist/packages/@lexical/markdown/importTextMatchTransformer.js +2 -0
  293. package/dist/packages/@lexical/markdown/importTextMatchTransformer.js.map +1 -1
  294. package/dist/utilities/fieldsDrawer/Drawer.js +19 -7
  295. package/dist/utilities/fieldsDrawer/Drawer.js.map +1 -1
  296. package/dist/utilities/fieldsDrawer/DrawerContent.js +19 -7
  297. package/dist/utilities/fieldsDrawer/DrawerContent.js.map +1 -1
  298. package/dist/utilities/fieldsDrawer/useLexicalDocumentDrawer.js +7 -3
  299. package/dist/utilities/fieldsDrawer/useLexicalDocumentDrawer.js.map +1 -1
  300. package/dist/utilities/fieldsDrawer/useLexicalListDrawer.js +7 -3
  301. package/dist/utilities/fieldsDrawer/useLexicalListDrawer.js.map +1 -1
  302. package/dist/utilities/migrateSlateToLexical/migrateDocumentFieldsRecursively.js +2 -0
  303. package/dist/utilities/migrateSlateToLexical/migrateDocumentFieldsRecursively.js.map +1 -1
  304. package/dist/utilities/upgradeLexicalData/upgradeDocumentFieldsRecursively.js +2 -0
  305. package/dist/utilities/upgradeLexicalData/upgradeDocumentFieldsRecursively.js.map +1 -1
  306. package/package.json +8 -7
@@ -1,22 +1,34 @@
1
1
  'use client';
2
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
3
3
  import React from 'react';
4
- export const AddIcon = ()=>/*#__PURE__*/ _jsxs("svg", {
4
+ export const AddIcon = ()=>/*#__PURE__*/ _jsxDEV("svg", {
5
5
  fill: "none",
6
6
  height: "20",
7
7
  viewBox: "0 0 20 20",
8
8
  width: "20",
9
9
  xmlns: "http://www.w3.org/2000/svg",
10
10
  children: [
11
- /*#__PURE__*/ _jsx("path", {
11
+ /*#__PURE__*/ _jsxDEV("path", {
12
12
  d: "M5 10h10",
13
13
  stroke: "currentColor"
14
- }),
15
- /*#__PURE__*/ _jsx("path", {
14
+ }, void 0, false, {
15
+ fileName: "src/lexical/ui/icons/Add/index.tsx",
16
+ lineNumber: 6,
17
+ columnNumber: 5
18
+ }, this),
19
+ /*#__PURE__*/ _jsxDEV("path", {
16
20
  d: "M10 15V5",
17
21
  stroke: "currentColor"
18
- })
22
+ }, void 0, false, {
23
+ fileName: "src/lexical/ui/icons/Add/index.tsx",
24
+ lineNumber: 7,
25
+ columnNumber: 5
26
+ }, this)
19
27
  ]
20
- });
28
+ }, void 0, true, {
29
+ fileName: "src/lexical/ui/icons/Add/index.tsx",
30
+ lineNumber: 5,
31
+ columnNumber: 3
32
+ }, this);
21
33
 
22
34
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../src/lexical/ui/icons/Add/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const AddIcon: React.FC = () => (\n <svg fill=\"none\" height=\"20\" viewBox=\"0 0 20 20\" width=\"20\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M5 10h10\" stroke=\"currentColor\" />\n <path d=\"M10 15V5\" stroke=\"currentColor\" />\n </svg>\n)\n"],"names":["React","AddIcon","svg","fill","height","viewBox","width","xmlns","path","d","stroke"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,UAAoB,kBAC/B,MAACC;QAAIC,MAAK;QAAOC,QAAO;QAAKC,SAAQ;QAAYC,OAAM;QAAKC,OAAM;;0BAChE,KAACC;gBAAKC,GAAE;gBAAWC,QAAO;;0BAC1B,KAACF;gBAAKC,GAAE;gBAAWC,QAAO;;;OAE7B"}
1
+ {"version":3,"sources":["../../../../../src/lexical/ui/icons/Add/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const AddIcon: React.FC = () => (\n <svg fill=\"none\" height=\"20\" viewBox=\"0 0 20 20\" width=\"20\" xmlns=\"http://www.w3.org/2000/svg\">\n <path d=\"M5 10h10\" stroke=\"currentColor\" />\n <path d=\"M10 15V5\" stroke=\"currentColor\" />\n </svg>\n)\n"],"names":["React","AddIcon","svg","fill","height","viewBox","width","xmlns","path","d","stroke"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,UAAoB,kBAC/B,QAACC;QAAIC,MAAK;QAAOC,QAAO;QAAKC,SAAQ;QAAYC,OAAM;QAAKC,OAAM;;0BAChE,QAACC;gBAAKC,GAAE;gBAAWC,QAAO;;;;;;0BAC1B,QAACF;gBAAKC,GAAE;gBAAWC,QAAO;;;;;;;;;;;aAE7B"}
@@ -1,7 +1,7 @@
1
1
  'use client';
2
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
3
3
  import React from 'react';
4
- export const AlignCenterIcon = ()=>/*#__PURE__*/ _jsxs("svg", {
4
+ export const AlignCenterIcon = ()=>/*#__PURE__*/ _jsxDEV("svg", {
5
5
  "aria-hidden": "true",
6
6
  className: "icon",
7
7
  fill: "none",
@@ -11,22 +11,38 @@ export const AlignCenterIcon = ()=>/*#__PURE__*/ _jsxs("svg", {
11
11
  width: "20",
12
12
  xmlns: "http://www.w3.org/2000/svg",
13
13
  children: [
14
- /*#__PURE__*/ _jsx("path", {
14
+ /*#__PURE__*/ _jsxDEV("path", {
15
15
  d: "M2.5 5H17.5",
16
16
  stroke: "currentColor",
17
17
  strokeWidth: "1.5"
18
- }),
19
- /*#__PURE__*/ _jsx("path", {
18
+ }, void 0, false, {
19
+ fileName: "src/lexical/ui/icons/AlignCenter/index.tsx",
20
+ lineNumber: 15,
21
+ columnNumber: 5
22
+ }, this),
23
+ /*#__PURE__*/ _jsxDEV("path", {
20
24
  d: "M2.5 10H17.5",
21
25
  stroke: "currentColor",
22
26
  strokeWidth: "1.5"
23
- }),
24
- /*#__PURE__*/ _jsx("path", {
27
+ }, void 0, false, {
28
+ fileName: "src/lexical/ui/icons/AlignCenter/index.tsx",
29
+ lineNumber: 16,
30
+ columnNumber: 5
31
+ }, this),
32
+ /*#__PURE__*/ _jsxDEV("path", {
25
33
  d: "M5 15H15",
26
34
  stroke: "currentColor",
27
35
  strokeWidth: "1.5"
28
- })
36
+ }, void 0, false, {
37
+ fileName: "src/lexical/ui/icons/AlignCenter/index.tsx",
38
+ lineNumber: 17,
39
+ columnNumber: 5
40
+ }, this)
29
41
  ]
30
- });
42
+ }, void 0, true, {
43
+ fileName: "src/lexical/ui/icons/AlignCenter/index.tsx",
44
+ lineNumber: 5,
45
+ columnNumber: 3
46
+ }, this);
31
47
 
32
48
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../src/lexical/ui/icons/AlignCenter/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const AlignCenterIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"none\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path d=\"M2.5 5H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M2.5 10H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M5 15H15\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n </svg>\n)\n"],"names":["React","AlignCenterIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","path","d","stroke","strokeWidth"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,kBAA4B,kBACvC,MAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;;0BAEN,KAACC;gBAAKC,GAAE;gBAAcC,QAAO;gBAAeC,aAAY;;0BACxD,KAACH;gBAAKC,GAAE;gBAAeC,QAAO;gBAAeC,aAAY;;0BACzD,KAACH;gBAAKC,GAAE;gBAAWC,QAAO;gBAAeC,aAAY;;;OAExD"}
1
+ {"version":3,"sources":["../../../../../src/lexical/ui/icons/AlignCenter/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const AlignCenterIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"none\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path d=\"M2.5 5H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M2.5 10H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M5 15H15\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n </svg>\n)\n"],"names":["React","AlignCenterIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","path","d","stroke","strokeWidth"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,kBAA4B,kBACvC,QAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;;0BAEN,QAACC;gBAAKC,GAAE;gBAAcC,QAAO;gBAAeC,aAAY;;;;;;0BACxD,QAACH;gBAAKC,GAAE;gBAAeC,QAAO;gBAAeC,aAAY;;;;;;0BACzD,QAACH;gBAAKC,GAAE;gBAAWC,QAAO;gBAAeC,aAAY;;;;;;;;;;;aAExD"}
@@ -1,7 +1,7 @@
1
1
  'use client';
2
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
3
3
  import React from 'react';
4
- export const AlignJustifyIcon = ()=>/*#__PURE__*/ _jsxs("svg", {
4
+ export const AlignJustifyIcon = ()=>/*#__PURE__*/ _jsxDEV("svg", {
5
5
  "aria-hidden": "true",
6
6
  className: "icon",
7
7
  fill: "none",
@@ -11,22 +11,38 @@ export const AlignJustifyIcon = ()=>/*#__PURE__*/ _jsxs("svg", {
11
11
  width: "20",
12
12
  xmlns: "http://www.w3.org/2000/svg",
13
13
  children: [
14
- /*#__PURE__*/ _jsx("path", {
14
+ /*#__PURE__*/ _jsxDEV("path", {
15
15
  d: "M2.5 5H17.5",
16
16
  stroke: "currentColor",
17
17
  strokeWidth: "1.5"
18
- }),
19
- /*#__PURE__*/ _jsx("path", {
18
+ }, void 0, false, {
19
+ fileName: "src/lexical/ui/icons/AlignJustify/index.tsx",
20
+ lineNumber: 15,
21
+ columnNumber: 5
22
+ }, this),
23
+ /*#__PURE__*/ _jsxDEV("path", {
20
24
  d: "M2.5 10H17.5",
21
25
  stroke: "currentColor",
22
26
  strokeWidth: "1.5"
23
- }),
24
- /*#__PURE__*/ _jsx("path", {
27
+ }, void 0, false, {
28
+ fileName: "src/lexical/ui/icons/AlignJustify/index.tsx",
29
+ lineNumber: 16,
30
+ columnNumber: 5
31
+ }, this),
32
+ /*#__PURE__*/ _jsxDEV("path", {
25
33
  d: "M2.5 15H17.5",
26
34
  stroke: "currentColor",
27
35
  strokeWidth: "1.5"
28
- })
36
+ }, void 0, false, {
37
+ fileName: "src/lexical/ui/icons/AlignJustify/index.tsx",
38
+ lineNumber: 17,
39
+ columnNumber: 5
40
+ }, this)
29
41
  ]
30
- });
42
+ }, void 0, true, {
43
+ fileName: "src/lexical/ui/icons/AlignJustify/index.tsx",
44
+ lineNumber: 5,
45
+ columnNumber: 3
46
+ }, this);
31
47
 
32
48
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../src/lexical/ui/icons/AlignJustify/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const AlignJustifyIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"none\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path d=\"M2.5 5H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M2.5 10H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M2.5 15H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n </svg>\n)\n"],"names":["React","AlignJustifyIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","path","d","stroke","strokeWidth"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,mBAA6B,kBACxC,MAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;;0BAEN,KAACC;gBAAKC,GAAE;gBAAcC,QAAO;gBAAeC,aAAY;;0BACxD,KAACH;gBAAKC,GAAE;gBAAeC,QAAO;gBAAeC,aAAY;;0BACzD,KAACH;gBAAKC,GAAE;gBAAeC,QAAO;gBAAeC,aAAY;;;OAE5D"}
1
+ {"version":3,"sources":["../../../../../src/lexical/ui/icons/AlignJustify/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const AlignJustifyIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"none\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path d=\"M2.5 5H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M2.5 10H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M2.5 15H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n </svg>\n)\n"],"names":["React","AlignJustifyIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","path","d","stroke","strokeWidth"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,mBAA6B,kBACxC,QAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;;0BAEN,QAACC;gBAAKC,GAAE;gBAAcC,QAAO;gBAAeC,aAAY;;;;;;0BACxD,QAACH;gBAAKC,GAAE;gBAAeC,QAAO;gBAAeC,aAAY;;;;;;0BACzD,QAACH;gBAAKC,GAAE;gBAAeC,QAAO;gBAAeC,aAAY;;;;;;;;;;;aAE5D"}
@@ -1,7 +1,7 @@
1
1
  'use client';
2
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
3
3
  import React from 'react';
4
- export const AlignLeftIcon = ()=>/*#__PURE__*/ _jsxs("svg", {
4
+ export const AlignLeftIcon = ()=>/*#__PURE__*/ _jsxDEV("svg", {
5
5
  "aria-hidden": "true",
6
6
  className: "icon",
7
7
  fill: "none",
@@ -11,22 +11,38 @@ export const AlignLeftIcon = ()=>/*#__PURE__*/ _jsxs("svg", {
11
11
  width: "20",
12
12
  xmlns: "http://www.w3.org/2000/svg",
13
13
  children: [
14
- /*#__PURE__*/ _jsx("path", {
14
+ /*#__PURE__*/ _jsxDEV("path", {
15
15
  d: "M2.5 5H17.5",
16
16
  stroke: "currentColor",
17
17
  strokeWidth: "1.5"
18
- }),
19
- /*#__PURE__*/ _jsx("path", {
18
+ }, void 0, false, {
19
+ fileName: "src/lexical/ui/icons/AlignLeft/index.tsx",
20
+ lineNumber: 15,
21
+ columnNumber: 5
22
+ }, this),
23
+ /*#__PURE__*/ _jsxDEV("path", {
20
24
  d: "M2.5 10H17.5",
21
25
  stroke: "currentColor",
22
26
  strokeWidth: "1.5"
23
- }),
24
- /*#__PURE__*/ _jsx("path", {
27
+ }, void 0, false, {
28
+ fileName: "src/lexical/ui/icons/AlignLeft/index.tsx",
29
+ lineNumber: 16,
30
+ columnNumber: 5
31
+ }, this),
32
+ /*#__PURE__*/ _jsxDEV("path", {
25
33
  d: "M2.5 15H12.5",
26
34
  stroke: "currentColor",
27
35
  strokeWidth: "1.5"
28
- })
36
+ }, void 0, false, {
37
+ fileName: "src/lexical/ui/icons/AlignLeft/index.tsx",
38
+ lineNumber: 17,
39
+ columnNumber: 5
40
+ }, this)
29
41
  ]
30
- });
42
+ }, void 0, true, {
43
+ fileName: "src/lexical/ui/icons/AlignLeft/index.tsx",
44
+ lineNumber: 5,
45
+ columnNumber: 3
46
+ }, this);
31
47
 
32
48
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../src/lexical/ui/icons/AlignLeft/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const AlignLeftIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"none\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path d=\"M2.5 5H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M2.5 10H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M2.5 15H12.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n </svg>\n)\n"],"names":["React","AlignLeftIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","path","d","stroke","strokeWidth"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,gBAA0B,kBACrC,MAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;;0BAEN,KAACC;gBAAKC,GAAE;gBAAcC,QAAO;gBAAeC,aAAY;;0BACxD,KAACH;gBAAKC,GAAE;gBAAeC,QAAO;gBAAeC,aAAY;;0BACzD,KAACH;gBAAKC,GAAE;gBAAeC,QAAO;gBAAeC,aAAY;;;OAE5D"}
1
+ {"version":3,"sources":["../../../../../src/lexical/ui/icons/AlignLeft/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const AlignLeftIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"none\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path d=\"M2.5 5H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M2.5 10H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M2.5 15H12.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n </svg>\n)\n"],"names":["React","AlignLeftIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","path","d","stroke","strokeWidth"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,gBAA0B,kBACrC,QAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;;0BAEN,QAACC;gBAAKC,GAAE;gBAAcC,QAAO;gBAAeC,aAAY;;;;;;0BACxD,QAACH;gBAAKC,GAAE;gBAAeC,QAAO;gBAAeC,aAAY;;;;;;0BACzD,QAACH;gBAAKC,GAAE;gBAAeC,QAAO;gBAAeC,aAAY;;;;;;;;;;;aAE5D"}
@@ -1,7 +1,7 @@
1
1
  'use client';
2
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
3
3
  import React from 'react';
4
- export const AlignRightIcon = ()=>/*#__PURE__*/ _jsxs("svg", {
4
+ export const AlignRightIcon = ()=>/*#__PURE__*/ _jsxDEV("svg", {
5
5
  "aria-hidden": "true",
6
6
  className: "icon",
7
7
  fill: "none",
@@ -11,22 +11,38 @@ export const AlignRightIcon = ()=>/*#__PURE__*/ _jsxs("svg", {
11
11
  width: "20",
12
12
  xmlns: "http://www.w3.org/2000/svg",
13
13
  children: [
14
- /*#__PURE__*/ _jsx("path", {
14
+ /*#__PURE__*/ _jsxDEV("path", {
15
15
  d: "M2.5 5H17.5",
16
16
  stroke: "currentColor",
17
17
  strokeWidth: "1.5"
18
- }),
19
- /*#__PURE__*/ _jsx("path", {
18
+ }, void 0, false, {
19
+ fileName: "src/lexical/ui/icons/AlignRight/index.tsx",
20
+ lineNumber: 15,
21
+ columnNumber: 5
22
+ }, this),
23
+ /*#__PURE__*/ _jsxDEV("path", {
20
24
  d: "M2.5 10H17.5",
21
25
  stroke: "currentColor",
22
26
  strokeWidth: "1.5"
23
- }),
24
- /*#__PURE__*/ _jsx("path", {
27
+ }, void 0, false, {
28
+ fileName: "src/lexical/ui/icons/AlignRight/index.tsx",
29
+ lineNumber: 16,
30
+ columnNumber: 5
31
+ }, this),
32
+ /*#__PURE__*/ _jsxDEV("path", {
25
33
  d: "M7.5 15H17.5",
26
34
  stroke: "currentColor",
27
35
  strokeWidth: "1.5"
28
- })
36
+ }, void 0, false, {
37
+ fileName: "src/lexical/ui/icons/AlignRight/index.tsx",
38
+ lineNumber: 17,
39
+ columnNumber: 5
40
+ }, this)
29
41
  ]
30
- });
42
+ }, void 0, true, {
43
+ fileName: "src/lexical/ui/icons/AlignRight/index.tsx",
44
+ lineNumber: 5,
45
+ columnNumber: 3
46
+ }, this);
31
47
 
32
48
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../src/lexical/ui/icons/AlignRight/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const AlignRightIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"none\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path d=\"M2.5 5H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M2.5 10H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M7.5 15H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n </svg>\n)\n"],"names":["React","AlignRightIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","path","d","stroke","strokeWidth"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,iBAA2B,kBACtC,MAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;;0BAEN,KAACC;gBAAKC,GAAE;gBAAcC,QAAO;gBAAeC,aAAY;;0BACxD,KAACH;gBAAKC,GAAE;gBAAeC,QAAO;gBAAeC,aAAY;;0BACzD,KAACH;gBAAKC,GAAE;gBAAeC,QAAO;gBAAeC,aAAY;;;OAE5D"}
1
+ {"version":3,"sources":["../../../../../src/lexical/ui/icons/AlignRight/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const AlignRightIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"none\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path d=\"M2.5 5H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M2.5 10H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n <path d=\"M7.5 15H17.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n </svg>\n)\n"],"names":["React","AlignRightIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","path","d","stroke","strokeWidth"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,iBAA2B,kBACtC,QAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;;0BAEN,QAACC;gBAAKC,GAAE;gBAAcC,QAAO;gBAAeC,aAAY;;;;;;0BACxD,QAACH;gBAAKC,GAAE;gBAAeC,QAAO;gBAAeC,aAAY;;;;;;0BACzD,QAACH;gBAAKC,GAAE;gBAAeC,QAAO;gBAAeC,aAAY;;;;;;;;;;;aAE5D"}
@@ -1,7 +1,7 @@
1
1
  'use client';
2
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
3
3
  import React from 'react';
4
- export const BlockIcon = ()=>/*#__PURE__*/ _jsxs("svg", {
4
+ export const BlockIcon = ()=>/*#__PURE__*/ _jsxDEV("svg", {
5
5
  "aria-hidden": "true",
6
6
  className: "icon",
7
7
  fill: "none",
@@ -11,31 +11,47 @@ export const BlockIcon = ()=>/*#__PURE__*/ _jsxs("svg", {
11
11
  width: "20",
12
12
  xmlns: "http://www.w3.org/2000/svg",
13
13
  children: [
14
- /*#__PURE__*/ _jsx("rect", {
14
+ /*#__PURE__*/ _jsxDEV("rect", {
15
15
  height: "4",
16
16
  rx: "0.5",
17
17
  stroke: "currentColor",
18
18
  width: "4",
19
19
  x: "8",
20
20
  y: "5"
21
- }),
22
- /*#__PURE__*/ _jsx("rect", {
21
+ }, void 0, false, {
22
+ fileName: "src/lexical/ui/icons/Block/index.tsx",
23
+ lineNumber: 15,
24
+ columnNumber: 5
25
+ }, this),
26
+ /*#__PURE__*/ _jsxDEV("rect", {
23
27
  height: "4",
24
28
  rx: "0.5",
25
29
  stroke: "currentColor",
26
30
  width: "4",
27
31
  x: "5",
28
32
  y: "11"
29
- }),
30
- /*#__PURE__*/ _jsx("rect", {
33
+ }, void 0, false, {
34
+ fileName: "src/lexical/ui/icons/Block/index.tsx",
35
+ lineNumber: 16,
36
+ columnNumber: 5
37
+ }, this),
38
+ /*#__PURE__*/ _jsxDEV("rect", {
31
39
  height: "4",
32
40
  rx: "0.5",
33
41
  stroke: "currentColor",
34
42
  width: "4",
35
43
  x: "11",
36
44
  y: "11"
37
- })
45
+ }, void 0, false, {
46
+ fileName: "src/lexical/ui/icons/Block/index.tsx",
47
+ lineNumber: 17,
48
+ columnNumber: 5
49
+ }, this)
38
50
  ]
39
- });
51
+ }, void 0, true, {
52
+ fileName: "src/lexical/ui/icons/Block/index.tsx",
53
+ lineNumber: 5,
54
+ columnNumber: 3
55
+ }, this);
40
56
 
41
57
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../src/lexical/ui/icons/Block/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const BlockIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"none\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <rect height=\"4\" rx=\"0.5\" stroke=\"currentColor\" width=\"4\" x=\"8\" y=\"5\" />\n <rect height=\"4\" rx=\"0.5\" stroke=\"currentColor\" width=\"4\" x=\"5\" y=\"11\" />\n <rect height=\"4\" rx=\"0.5\" stroke=\"currentColor\" width=\"4\" x=\"11\" y=\"11\" />\n </svg>\n)\n"],"names":["React","BlockIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","rect","rx","stroke","x","y"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,YAAsB,kBACjC,MAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;;0BAEN,KAACC;gBAAKJ,QAAO;gBAAIK,IAAG;gBAAMC,QAAO;gBAAeJ,OAAM;gBAAIK,GAAE;gBAAIC,GAAE;;0BAClE,KAACJ;gBAAKJ,QAAO;gBAAIK,IAAG;gBAAMC,QAAO;gBAAeJ,OAAM;gBAAIK,GAAE;gBAAIC,GAAE;;0BAClE,KAACJ;gBAAKJ,QAAO;gBAAIK,IAAG;gBAAMC,QAAO;gBAAeJ,OAAM;gBAAIK,GAAE;gBAAKC,GAAE;;;OAEtE"}
1
+ {"version":3,"sources":["../../../../../src/lexical/ui/icons/Block/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const BlockIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"none\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <rect height=\"4\" rx=\"0.5\" stroke=\"currentColor\" width=\"4\" x=\"8\" y=\"5\" />\n <rect height=\"4\" rx=\"0.5\" stroke=\"currentColor\" width=\"4\" x=\"5\" y=\"11\" />\n <rect height=\"4\" rx=\"0.5\" stroke=\"currentColor\" width=\"4\" x=\"11\" y=\"11\" />\n </svg>\n)\n"],"names":["React","BlockIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","rect","rx","stroke","x","y"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,YAAsB,kBACjC,QAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;;0BAEN,QAACC;gBAAKJ,QAAO;gBAAIK,IAAG;gBAAMC,QAAO;gBAAeJ,OAAM;gBAAIK,GAAE;gBAAIC,GAAE;;;;;;0BAClE,QAACJ;gBAAKJ,QAAO;gBAAIK,IAAG;gBAAMC,QAAO;gBAAeJ,OAAM;gBAAIK,GAAE;gBAAIC,GAAE;;;;;;0BAClE,QAACJ;gBAAKJ,QAAO;gBAAIK,IAAG;gBAAMC,QAAO;gBAAeJ,OAAM;gBAAIK,GAAE;gBAAKC,GAAE;;;;;;;;;;;aAEtE"}
@@ -1,7 +1,7 @@
1
1
  'use client';
2
- import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
3
3
  import React from 'react';
4
- export const BlockquoteIcon = ()=>/*#__PURE__*/ _jsx("svg", {
4
+ export const BlockquoteIcon = ()=>/*#__PURE__*/ _jsxDEV("svg", {
5
5
  "aria-hidden": "true",
6
6
  className: "icon",
7
7
  fill: "none",
@@ -10,10 +10,18 @@ export const BlockquoteIcon = ()=>/*#__PURE__*/ _jsx("svg", {
10
10
  viewBox: "0 0 20 20",
11
11
  width: "20",
12
12
  xmlns: "http://www.w3.org/2000/svg",
13
- children: /*#__PURE__*/ _jsx("path", {
13
+ children: /*#__PURE__*/ _jsxDEV("path", {
14
14
  d: "M13.5353 10.5725C13.5353 9.47709 11.0456 9.99991 11.0456 7.85883C11.0456 6.46464 12.1162 5.61816 13.361 5.61816C14.805 5.61816 16 6.86298 16 8.92937C16 11.2945 14.4564 13.7841 11.1203 14.3816L10.8216 13.1368C12.888 12.4895 13.5353 11.4937 13.5353 10.5725ZM6.71369 10.5725C6.71369 9.47709 4.22407 9.99991 4.22407 7.85883C4.22407 6.46464 5.29461 5.61816 6.53942 5.61816C7.9834 5.61816 9.17842 6.86298 9.17842 8.92937C9.17842 11.2945 7.63485 13.7841 4.29876 14.3816L4 13.1368C6.06639 12.4895 6.71369 11.4937 6.71369 10.5725Z",
15
15
  fill: "currentColor"
16
- })
17
- });
16
+ }, void 0, false, {
17
+ fileName: "src/lexical/ui/icons/Blockquote/index.tsx",
18
+ lineNumber: 15,
19
+ columnNumber: 5
20
+ }, this)
21
+ }, void 0, false, {
22
+ fileName: "src/lexical/ui/icons/Blockquote/index.tsx",
23
+ lineNumber: 5,
24
+ columnNumber: 3
25
+ }, this);
18
26
 
19
27
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../src/lexical/ui/icons/Blockquote/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const BlockquoteIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"none\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M13.5353 10.5725C13.5353 9.47709 11.0456 9.99991 11.0456 7.85883C11.0456 6.46464 12.1162 5.61816 13.361 5.61816C14.805 5.61816 16 6.86298 16 8.92937C16 11.2945 14.4564 13.7841 11.1203 14.3816L10.8216 13.1368C12.888 12.4895 13.5353 11.4937 13.5353 10.5725ZM6.71369 10.5725C6.71369 9.47709 4.22407 9.99991 4.22407 7.85883C4.22407 6.46464 5.29461 5.61816 6.53942 5.61816C7.9834 5.61816 9.17842 6.86298 9.17842 8.92937C9.17842 11.2945 7.63485 13.7841 4.29876 14.3816L4 13.1368C6.06639 12.4895 6.71369 11.4937 6.71369 10.5725Z\"\n fill=\"currentColor\"\n />\n </svg>\n)\n"],"names":["React","BlockquoteIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","path","d"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,iBAA2B,kBACtC,KAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;kBAEN,cAAA,KAACC;YACCC,GAAE;YACFP,MAAK;;OAGV"}
1
+ {"version":3,"sources":["../../../../../src/lexical/ui/icons/Blockquote/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const BlockquoteIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"none\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M13.5353 10.5725C13.5353 9.47709 11.0456 9.99991 11.0456 7.85883C11.0456 6.46464 12.1162 5.61816 13.361 5.61816C14.805 5.61816 16 6.86298 16 8.92937C16 11.2945 14.4564 13.7841 11.1203 14.3816L10.8216 13.1368C12.888 12.4895 13.5353 11.4937 13.5353 10.5725ZM6.71369 10.5725C6.71369 9.47709 4.22407 9.99991 4.22407 7.85883C4.22407 6.46464 5.29461 5.61816 6.53942 5.61816C7.9834 5.61816 9.17842 6.86298 9.17842 8.92937C9.17842 11.2945 7.63485 13.7841 4.29876 14.3816L4 13.1368C6.06639 12.4895 6.71369 11.4937 6.71369 10.5725Z\"\n fill=\"currentColor\"\n />\n </svg>\n)\n"],"names":["React","BlockquoteIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","path","d"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,iBAA2B,kBACtC,QAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;kBAEN,cAAA,QAACC;YACCC,GAAE;YACFP,MAAK;;;;;;;;;;aAGV"}
@@ -1,7 +1,7 @@
1
1
  'use client';
2
- import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
3
3
  import React from 'react';
4
- export const BoldIcon = ()=>/*#__PURE__*/ _jsx("svg", {
4
+ export const BoldIcon = ()=>/*#__PURE__*/ _jsxDEV("svg", {
5
5
  "aria-hidden": "true",
6
6
  className: "icon",
7
7
  fill: "currentColor",
@@ -10,10 +10,18 @@ export const BoldIcon = ()=>/*#__PURE__*/ _jsx("svg", {
10
10
  viewBox: "0 0 20 20",
11
11
  width: "20",
12
12
  xmlns: "http://www.w3.org/2000/svg",
13
- children: /*#__PURE__*/ _jsx("path", {
13
+ children: /*#__PURE__*/ _jsxDEV("path", {
14
14
  d: "M10.6772 15H6.27017V5.718H10.4172C12.6792 5.718 13.8492 6.602 13.8492 8.292C13.8492 9.098 13.1992 9.982 12.4712 10.216C13.3812 10.476 14.1742 11.256 14.1742 12.322C14.1742 14.09 12.9002 15 10.6772 15ZM8.46717 9.501H10.3262C11.3012 9.501 11.7042 9.046 11.7042 8.409C11.7042 7.72 11.2362 7.317 10.3392 7.317H8.46717V9.501ZM8.46717 11.061V13.401H10.4822C11.4702 13.401 11.9642 12.959 11.9642 12.218C11.9642 11.49 11.4702 11.061 10.4822 11.061H8.46717Z",
15
15
  fill: "currentColor"
16
- })
17
- });
16
+ }, void 0, false, {
17
+ fileName: "src/lexical/ui/icons/Bold/index.tsx",
18
+ lineNumber: 15,
19
+ columnNumber: 5
20
+ }, this)
21
+ }, void 0, false, {
22
+ fileName: "src/lexical/ui/icons/Bold/index.tsx",
23
+ lineNumber: 5,
24
+ columnNumber: 3
25
+ }, this);
18
26
 
19
27
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../src/lexical/ui/icons/Bold/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const BoldIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"currentColor\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M10.6772 15H6.27017V5.718H10.4172C12.6792 5.718 13.8492 6.602 13.8492 8.292C13.8492 9.098 13.1992 9.982 12.4712 10.216C13.3812 10.476 14.1742 11.256 14.1742 12.322C14.1742 14.09 12.9002 15 10.6772 15ZM8.46717 9.501H10.3262C11.3012 9.501 11.7042 9.046 11.7042 8.409C11.7042 7.72 11.2362 7.317 10.3392 7.317H8.46717V9.501ZM8.46717 11.061V13.401H10.4822C11.4702 13.401 11.9642 12.959 11.9642 12.218C11.9642 11.49 11.4702 11.061 10.4822 11.061H8.46717Z\"\n fill=\"currentColor\"\n />\n </svg>\n)\n"],"names":["React","BoldIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","path","d"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,WAAqB,kBAChC,KAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;kBAEN,cAAA,KAACC;YACCC,GAAE;YACFP,MAAK;;OAGV"}
1
+ {"version":3,"sources":["../../../../../src/lexical/ui/icons/Bold/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const BoldIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"currentColor\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path\n d=\"M10.6772 15H6.27017V5.718H10.4172C12.6792 5.718 13.8492 6.602 13.8492 8.292C13.8492 9.098 13.1992 9.982 12.4712 10.216C13.3812 10.476 14.1742 11.256 14.1742 12.322C14.1742 14.09 12.9002 15 10.6772 15ZM8.46717 9.501H10.3262C11.3012 9.501 11.7042 9.046 11.7042 8.409C11.7042 7.72 11.2362 7.317 10.3392 7.317H8.46717V9.501ZM8.46717 11.061V13.401H10.4822C11.4702 13.401 11.9642 12.959 11.9642 12.218C11.9642 11.49 11.4702 11.061 10.4822 11.061H8.46717Z\"\n fill=\"currentColor\"\n />\n </svg>\n)\n"],"names":["React","BoldIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","path","d"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,WAAqB,kBAChC,QAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;kBAEN,cAAA,QAACC;YACCC,GAAE;YACFP,MAAK;;;;;;;;;;aAGV"}
@@ -1,7 +1,7 @@
1
1
  'use client';
2
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
3
3
  import React from 'react';
4
- export const ChecklistIcon = ()=>/*#__PURE__*/ _jsxs("svg", {
4
+ export const ChecklistIcon = ()=>/*#__PURE__*/ _jsxDEV("svg", {
5
5
  "aria-hidden": "true",
6
6
  className: "icon",
7
7
  fill: "none",
@@ -11,20 +11,32 @@ export const ChecklistIcon = ()=>/*#__PURE__*/ _jsxs("svg", {
11
11
  width: "20",
12
12
  xmlns: "http://www.w3.org/2000/svg",
13
13
  children: [
14
- /*#__PURE__*/ _jsx("rect", {
14
+ /*#__PURE__*/ _jsxDEV("rect", {
15
15
  height: "13",
16
16
  rx: "1.5",
17
17
  stroke: "currentColor",
18
18
  width: "13",
19
19
  x: "3.5",
20
20
  y: "3.5"
21
- }),
22
- /*#__PURE__*/ _jsx("path", {
21
+ }, void 0, false, {
22
+ fileName: "src/lexical/ui/icons/Checklist/index.tsx",
23
+ lineNumber: 15,
24
+ columnNumber: 5
25
+ }, this),
26
+ /*#__PURE__*/ _jsxDEV("path", {
23
27
  d: "M7 10L9 12.5L13 7.5",
24
28
  stroke: "currentColor",
25
29
  strokeWidth: "1.5"
26
- })
30
+ }, void 0, false, {
31
+ fileName: "src/lexical/ui/icons/Checklist/index.tsx",
32
+ lineNumber: 16,
33
+ columnNumber: 5
34
+ }, this)
27
35
  ]
28
- });
36
+ }, void 0, true, {
37
+ fileName: "src/lexical/ui/icons/Checklist/index.tsx",
38
+ lineNumber: 5,
39
+ columnNumber: 3
40
+ }, this);
29
41
 
30
42
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../src/lexical/ui/icons/Checklist/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const ChecklistIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"none\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <rect height=\"13\" rx=\"1.5\" stroke=\"currentColor\" width=\"13\" x=\"3.5\" y=\"3.5\" />\n <path d=\"M7 10L9 12.5L13 7.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n </svg>\n)\n"],"names":["React","ChecklistIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","rect","rx","stroke","x","y","path","d","strokeWidth"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,gBAA0B,kBACrC,MAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;;0BAEN,KAACC;gBAAKJ,QAAO;gBAAKK,IAAG;gBAAMC,QAAO;gBAAeJ,OAAM;gBAAKK,GAAE;gBAAMC,GAAE;;0BACtE,KAACC;gBAAKC,GAAE;gBAAsBJ,QAAO;gBAAeK,aAAY;;;OAEnE"}
1
+ {"version":3,"sources":["../../../../../src/lexical/ui/icons/Checklist/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const ChecklistIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"none\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <rect height=\"13\" rx=\"1.5\" stroke=\"currentColor\" width=\"13\" x=\"3.5\" y=\"3.5\" />\n <path d=\"M7 10L9 12.5L13 7.5\" stroke=\"currentColor\" strokeWidth=\"1.5\" />\n </svg>\n)\n"],"names":["React","ChecklistIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","rect","rx","stroke","x","y","path","d","strokeWidth"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,gBAA0B,kBACrC,QAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;;0BAEN,QAACC;gBAAKJ,QAAO;gBAAKK,IAAG;gBAAMC,QAAO;gBAAeJ,OAAM;gBAAKK,GAAE;gBAAMC,GAAE;;;;;;0BACtE,QAACC;gBAAKC,GAAE;gBAAsBJ,QAAO;gBAAeK,aAAY;;;;;;;;;;;aAEnE"}
@@ -1,7 +1,7 @@
1
1
  'use client';
2
- import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
+ import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
3
3
  import React from 'react';
4
- export const CodeIcon = ()=>/*#__PURE__*/ _jsxs("svg", {
4
+ export const CodeIcon = ()=>/*#__PURE__*/ _jsxDEV("svg", {
5
5
  "aria-hidden": "true",
6
6
  className: "icon",
7
7
  fill: "none",
@@ -11,15 +11,27 @@ export const CodeIcon = ()=>/*#__PURE__*/ _jsxs("svg", {
11
11
  width: "20",
12
12
  xmlns: "http://www.w3.org/2000/svg",
13
13
  children: [
14
- /*#__PURE__*/ _jsx("path", {
14
+ /*#__PURE__*/ _jsxDEV("path", {
15
15
  d: "M7.76465 6L3.76465 10L7.76465 14",
16
16
  stroke: "currentColor"
17
- }),
18
- /*#__PURE__*/ _jsx("path", {
17
+ }, void 0, false, {
18
+ fileName: "src/lexical/ui/icons/Code/index.tsx",
19
+ lineNumber: 15,
20
+ columnNumber: 5
21
+ }, this),
22
+ /*#__PURE__*/ _jsxDEV("path", {
19
23
  d: "M12.2354 6L16.2354 10L12.2354 14",
20
24
  stroke: "currentColor"
21
- })
25
+ }, void 0, false, {
26
+ fileName: "src/lexical/ui/icons/Code/index.tsx",
27
+ lineNumber: 16,
28
+ columnNumber: 5
29
+ }, this)
22
30
  ]
23
- });
31
+ }, void 0, true, {
32
+ fileName: "src/lexical/ui/icons/Code/index.tsx",
33
+ lineNumber: 5,
34
+ columnNumber: 3
35
+ }, this);
24
36
 
25
37
  //# sourceMappingURL=index.js.map
@@ -1 +1 @@
1
- {"version":3,"sources":["../../../../../src/lexical/ui/icons/Code/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const CodeIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"none\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path d=\"M7.76465 6L3.76465 10L7.76465 14\" stroke=\"currentColor\" />\n <path d=\"M12.2354 6L16.2354 10L12.2354 14\" stroke=\"currentColor\" />\n </svg>\n)\n"],"names":["React","CodeIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","path","d","stroke"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,WAAqB,kBAChC,MAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;;0BAEN,KAACC;gBAAKC,GAAE;gBAAmCC,QAAO;;0BAClD,KAACF;gBAAKC,GAAE;gBAAmCC,QAAO;;;OAErD"}
1
+ {"version":3,"sources":["../../../../../src/lexical/ui/icons/Code/index.tsx"],"sourcesContent":["'use client'\nimport React from 'react'\n\nexport const CodeIcon: React.FC = () => (\n <svg\n aria-hidden=\"true\"\n className=\"icon\"\n fill=\"none\"\n focusable=\"false\"\n height=\"20\"\n viewBox=\"0 0 20 20\"\n width=\"20\"\n xmlns=\"http://www.w3.org/2000/svg\"\n >\n <path d=\"M7.76465 6L3.76465 10L7.76465 14\" stroke=\"currentColor\" />\n <path d=\"M12.2354 6L16.2354 10L12.2354 14\" stroke=\"currentColor\" />\n </svg>\n)\n"],"names":["React","CodeIcon","svg","aria-hidden","className","fill","focusable","height","viewBox","width","xmlns","path","d","stroke"],"mappings":"AAAA;;AACA,OAAOA,WAAW,QAAO;AAEzB,OAAO,MAAMC,WAAqB,kBAChC,QAACC;QACCC,eAAY;QACZC,WAAU;QACVC,MAAK;QACLC,WAAU;QACVC,QAAO;QACPC,SAAQ;QACRC,OAAM;QACNC,OAAM;;0BAEN,QAACC;gBAAKC,GAAE;gBAAmCC,QAAO;;;;;;0BAClD,QAACF;gBAAKC,GAAE;gBAAmCC,QAAO;;;;;;;;;;;aAErD"}
@@ -1,17 +1,25 @@
1
1
  'use client';
2
- import { jsx as _jsx } from "react/jsx-runtime";
2
+ import { jsxDEV as _jsxDEV } from "react/jsx-dev-runtime";
3
3
  import React from 'react';
4
- export const CodeBlockIcon = ()=>/*#__PURE__*/ _jsx("svg", {
4
+ export const CodeBlockIcon = ()=>/*#__PURE__*/ _jsxDEV("svg", {
5
5
  fill: "none",
6
6
  height: "12",
7
7
  viewBox: "0 0 15 12",
8
8
  width: "15",
9
9
  xmlns: "http://www.w3.org/2000/svg",
10
- children: /*#__PURE__*/ _jsx("path", {
10
+ children: /*#__PURE__*/ _jsxDEV("path", {
11
11
  d: "M11.3738 8.62598L14.0404 5.95931L11.3738 3.29264M3.37376 3.29264L0.707092 5.95931L3.37376 8.62598M9.04043 0.625977L5.70709 11.2926",
12
12
  stroke: "currentColor",
13
13
  strokeLinecap: "square"
14
- })
15
- });
14
+ }, void 0, false, {
15
+ fileName: "src/lexical/ui/icons/CodeBlock/index.tsx",
16
+ lineNumber: 6,
17
+ columnNumber: 5
18
+ }, this)
19
+ }, void 0, false, {
20
+ fileName: "src/lexical/ui/icons/CodeBlock/index.tsx",
21
+ lineNumber: 5,
22
+ columnNumber: 3
23
+ }, this);
16
24
 
17
25
  //# sourceMappingURL=index.js.map