@contentful/field-editor-rich-text 3.4.22 → 3.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (596) hide show
  1. package/dist/cjs/ContentfulEditorProvider.js +59 -0
  2. package/dist/cjs/RichTextEditor.js +170 -0
  3. package/dist/cjs/RichTextEditor.styles.js +66 -0
  4. package/dist/cjs/SdkProvider.js +69 -0
  5. package/dist/cjs/Toolbar/_tests_/toolbar.test.js +152 -0
  6. package/dist/cjs/Toolbar/components/EmbedEntityWidget.js +87 -0
  7. package/dist/cjs/Toolbar/components/EmbeddedEntityDropdownButton.js +69 -0
  8. package/dist/cjs/Toolbar/components/StickyToolbarWrapper.js +29 -0
  9. package/dist/cjs/Toolbar/index.js +222 -0
  10. package/dist/cjs/__fixtures__/FakeSdk.js +183 -0
  11. package/dist/cjs/__fixtures__/asset/index.js +37 -0
  12. package/dist/cjs/__fixtures__/content-type/index.js +16 -0
  13. package/dist/cjs/__fixtures__/entry/index.js +33 -0
  14. package/dist/cjs/__fixtures__/fixtures.js +71 -0
  15. package/dist/cjs/__fixtures__/locale/index.js +40 -0
  16. package/dist/cjs/__fixtures__/space/index.js +16 -0
  17. package/dist/cjs/constants/Schema.js +172 -0
  18. package/dist/cjs/dialogs/HypelinkDialog/HyperlinkDialog.js +348 -0
  19. package/dist/cjs/dialogs/openRichTextDialog.js +64 -0
  20. package/dist/cjs/dialogs/renderRichTextDialog.js +63 -0
  21. package/dist/cjs/helpers/__tests__/extractNodes.test.js +299 -0
  22. package/dist/cjs/helpers/__tests__/removeInternalMarks.test.js +52 -0
  23. package/dist/cjs/helpers/__tests__/validations.test.js +49 -0
  24. package/dist/cjs/helpers/editor.js +276 -0
  25. package/dist/cjs/helpers/environment.js +20 -0
  26. package/dist/cjs/helpers/extractNodes.js +27 -0
  27. package/dist/cjs/helpers/formatDateAndTime.js +45 -0
  28. package/dist/cjs/helpers/getLinkedContentTypeIdsForNodeType.js +24 -0
  29. package/dist/cjs/helpers/newEntitySelectorConfigFromRichTextField.js +33 -0
  30. package/dist/cjs/helpers/nodeFactory.js +51 -0
  31. package/dist/cjs/helpers/removeInternalMarks.js +26 -0
  32. package/dist/cjs/helpers/sanitizeIncomingSlateDoc.js +33 -0
  33. package/dist/cjs/helpers/sdkNavigatorSlideIn.js +57 -0
  34. package/dist/cjs/helpers/sdkNavigatorSlideIn.spec.js +209 -0
  35. package/dist/cjs/helpers/transformers.js +61 -0
  36. package/dist/cjs/helpers/validations.js +56 -0
  37. package/dist/cjs/index.js +66 -0
  38. package/dist/cjs/internal/constants.js +51 -0
  39. package/dist/cjs/internal/hooks.js +65 -0
  40. package/dist/cjs/internal/index.js +21 -0
  41. package/dist/cjs/internal/misc.js +103 -0
  42. package/dist/cjs/internal/queries.js +407 -0
  43. package/dist/cjs/internal/transforms.js +195 -0
  44. package/dist/cjs/internal/types/editor.js +4 -0
  45. package/dist/cjs/internal/types/index.js +19 -0
  46. package/dist/cjs/internal/types/plugins.js +4 -0
  47. package/dist/cjs/plugins/Break/createExitBreakPlugin.js +26 -0
  48. package/dist/cjs/plugins/Break/createExitBreakPlugin.test.js +36 -0
  49. package/dist/cjs/plugins/Break/createResetNodePlugin.js +32 -0
  50. package/dist/cjs/plugins/Break/createSoftBreakPlugin.js +23 -0
  51. package/dist/cjs/plugins/Break/createSoftBreakPlugin.test.js +47 -0
  52. package/dist/cjs/plugins/Break/index.js +20 -0
  53. package/dist/cjs/plugins/CommandPalette/components/CommandList.js +167 -0
  54. package/dist/cjs/plugins/CommandPalette/components/CommandList.styles.js +103 -0
  55. package/dist/cjs/plugins/CommandPalette/components/CommandPrompt.js +69 -0
  56. package/dist/cjs/plugins/CommandPalette/constants.js +11 -0
  57. package/dist/cjs/plugins/CommandPalette/createCommandPalettePlugin.js +24 -0
  58. package/dist/cjs/plugins/CommandPalette/hooks/useCommandList.js +138 -0
  59. package/dist/cjs/plugins/CommandPalette/index.js +11 -0
  60. package/dist/cjs/plugins/CommandPalette/onKeyDown.js +51 -0
  61. package/dist/cjs/plugins/CommandPalette/onKeyDown.spec.js +83 -0
  62. package/dist/cjs/plugins/CommandPalette/useCommands.js +222 -0
  63. package/dist/cjs/plugins/CommandPalette/utils/createInlineEntryNode.js +30 -0
  64. package/dist/cjs/plugins/CommandPalette/utils/fetchAssets.js +31 -0
  65. package/dist/cjs/plugins/CommandPalette/utils/fetchEntries.js +39 -0
  66. package/dist/cjs/plugins/CommandPalette/utils/insertBlock.js +42 -0
  67. package/dist/cjs/plugins/CommandPalette/utils/trimLeadingSlash.js +16 -0
  68. package/dist/cjs/plugins/DragAndDrop/index.js +54 -0
  69. package/dist/cjs/plugins/EmbeddedEntityBlock/LinkedEntityBlock.js +128 -0
  70. package/dist/cjs/plugins/EmbeddedEntityBlock/ToolbarIcon.js +106 -0
  71. package/dist/cjs/plugins/EmbeddedEntityBlock/Util.js +108 -0
  72. package/dist/cjs/plugins/EmbeddedEntityBlock/index.js +100 -0
  73. package/dist/cjs/plugins/EmbeddedEntityInline/FetchingWrappedInlineEntryCard.js +158 -0
  74. package/dist/cjs/plugins/EmbeddedEntityInline/Util.js +30 -0
  75. package/dist/cjs/plugins/EmbeddedEntityInline/index.js +221 -0
  76. package/dist/cjs/plugins/Heading/__tests__/createHeadingPlugin.test.js +117 -0
  77. package/dist/cjs/plugins/Heading/components/Heading.js +127 -0
  78. package/dist/cjs/plugins/Heading/components/ToolbarHeadingButton.js +173 -0
  79. package/dist/cjs/plugins/Heading/createHeadingPlugin.js +102 -0
  80. package/dist/cjs/plugins/Heading/index.js +19 -0
  81. package/dist/cjs/plugins/Hr/index.js +193 -0
  82. package/dist/cjs/plugins/Hyperlink/HyperlinkModal.js +282 -0
  83. package/dist/cjs/plugins/Hyperlink/__tests__/createHyperlinkPlugin.test.js +25 -0
  84. package/dist/cjs/plugins/Hyperlink/components/EntityHyperlink.js +93 -0
  85. package/dist/cjs/plugins/Hyperlink/components/ToolbarHyperlinkButton.js +78 -0
  86. package/dist/cjs/plugins/Hyperlink/components/UrlHyperlink.js +86 -0
  87. package/dist/cjs/plugins/Hyperlink/components/styles.js +36 -0
  88. package/dist/cjs/plugins/Hyperlink/createHyperlinkPlugin.js +179 -0
  89. package/dist/cjs/plugins/Hyperlink/index.js +20 -0
  90. package/dist/cjs/plugins/Hyperlink/useEntityInfo.js +95 -0
  91. package/dist/cjs/plugins/Hyperlink/utils.js +43 -0
  92. package/dist/cjs/plugins/List/__tests__/createListPlugin.test.js +47 -0
  93. package/dist/cjs/plugins/List/__tests__/insertListBreak.test.js +77 -0
  94. package/dist/cjs/plugins/List/__tests__/insertListFragment.test.js +64 -0
  95. package/dist/cjs/plugins/List/components/List.js +108 -0
  96. package/dist/cjs/plugins/List/components/ListItem.js +73 -0
  97. package/dist/cjs/plugins/List/components/ToolbarListButton.js +86 -0
  98. package/dist/cjs/plugins/List/createListPlugin.js +76 -0
  99. package/dist/cjs/plugins/List/index.js +19 -0
  100. package/dist/cjs/plugins/List/insertListBreak.js +60 -0
  101. package/dist/cjs/plugins/List/insertListFragment.js +98 -0
  102. package/dist/cjs/plugins/List/onKeyDownList.js +46 -0
  103. package/dist/cjs/plugins/List/transforms/insertListItem.js +92 -0
  104. package/dist/cjs/plugins/List/transforms/moveListItemDown.js +47 -0
  105. package/dist/cjs/plugins/List/transforms/moveListItems.js +56 -0
  106. package/dist/cjs/plugins/List/transforms/moveListItems.test.js +72 -0
  107. package/dist/cjs/plugins/List/transforms/toggleList.js +141 -0
  108. package/dist/cjs/plugins/List/transforms/toggleList.spec.js +139 -0
  109. package/dist/cjs/plugins/List/transforms/unwrapList.js +38 -0
  110. package/dist/cjs/plugins/List/utils.js +122 -0
  111. package/dist/cjs/plugins/List/withList.js +32 -0
  112. package/dist/cjs/plugins/Marks/Bold.js +119 -0
  113. package/dist/cjs/plugins/Marks/Code.js +122 -0
  114. package/dist/cjs/plugins/Marks/Italic.js +114 -0
  115. package/dist/cjs/plugins/Marks/Subscript.js +109 -0
  116. package/dist/cjs/plugins/Marks/Superscript.js +107 -0
  117. package/dist/cjs/plugins/Marks/Underline.js +106 -0
  118. package/dist/cjs/plugins/Marks/components/MarkToolbarButton.js +105 -0
  119. package/dist/cjs/plugins/Marks/helpers.js +48 -0
  120. package/dist/cjs/plugins/Marks/index.js +27 -0
  121. package/dist/cjs/plugins/Normalizer/baseRules.js +38 -0
  122. package/dist/cjs/plugins/Normalizer/createNormalizerPlugin.js +15 -0
  123. package/dist/cjs/plugins/Normalizer/createNormalizerPlugin.test.js +117 -0
  124. package/dist/cjs/plugins/Normalizer/index.js +19 -0
  125. package/dist/cjs/plugins/Normalizer/types.js +4 -0
  126. package/dist/cjs/plugins/Normalizer/utils.js +39 -0
  127. package/dist/cjs/plugins/Normalizer/withNormalizer.js +88 -0
  128. package/dist/cjs/plugins/Paragraph/Paragraph.js +70 -0
  129. package/dist/cjs/plugins/Paragraph/__tests__/createParagraphPlugin.test.js +125 -0
  130. package/dist/cjs/plugins/Paragraph/createParagraphPlugin.js +73 -0
  131. package/dist/cjs/plugins/Paragraph/index.js +18 -0
  132. package/dist/cjs/plugins/Paragraph/utils.js +24 -0
  133. package/dist/cjs/plugins/PasteHTML/createPasteHTMLPlugin.js +63 -0
  134. package/dist/cjs/plugins/PasteHTML/index.js +18 -0
  135. package/dist/cjs/plugins/PasteHTML/utils/__tests__/sanitizeHTML.test.js +54 -0
  136. package/dist/cjs/plugins/PasteHTML/utils/sanitizeAnchors.js +43 -0
  137. package/dist/cjs/plugins/PasteHTML/utils/sanitizeHTML.js +50 -0
  138. package/dist/cjs/plugins/PasteHTML/utils/sanitizeSheets.js +44 -0
  139. package/dist/cjs/plugins/Quote/__test__/createQuotePlugin.test.js +78 -0
  140. package/dist/cjs/plugins/Quote/components/Quote.js +69 -0
  141. package/dist/cjs/plugins/Quote/components/ToolbarQuoteButton.js +72 -0
  142. package/dist/cjs/plugins/Quote/createQuotePlugin.js +57 -0
  143. package/dist/cjs/plugins/Quote/index.js +19 -0
  144. package/dist/cjs/plugins/Quote/shouldResetQuote.js +40 -0
  145. package/dist/cjs/plugins/Quote/toggleQuote.js +56 -0
  146. package/dist/cjs/plugins/Quote/withQuote.js +48 -0
  147. package/dist/cjs/plugins/SelectOnBackspace/createSelectOnBackspacePlugin.js +21 -0
  148. package/dist/cjs/plugins/SelectOnBackspace/index.js +18 -0
  149. package/dist/cjs/plugins/Table/__tests__/createTablePlugin.test.js +92 -0
  150. package/dist/cjs/plugins/Table/__tests__/helpers.test.js +18 -0
  151. package/dist/cjs/plugins/Table/actions/addColumn.js +63 -0
  152. package/dist/cjs/plugins/Table/actions/addRow.js +57 -0
  153. package/dist/cjs/plugins/Table/actions/index.js +20 -0
  154. package/dist/cjs/plugins/Table/actions/setHeader.js +34 -0
  155. package/dist/cjs/plugins/Table/components/Cell.js +79 -0
  156. package/dist/cjs/plugins/Table/components/HeaderCell.js +82 -0
  157. package/dist/cjs/plugins/Table/components/Row.js +69 -0
  158. package/dist/cjs/plugins/Table/components/Table.js +76 -0
  159. package/dist/cjs/plugins/Table/components/TableActions.js +175 -0
  160. package/dist/cjs/plugins/Table/components/ToolbarButton.js +73 -0
  161. package/dist/cjs/plugins/Table/createTablePlugin.js +119 -0
  162. package/dist/cjs/plugins/Table/helpers.js +152 -0
  163. package/dist/cjs/plugins/Table/index.js +19 -0
  164. package/dist/cjs/plugins/Table/insertTableFragment.js +50 -0
  165. package/dist/cjs/plugins/Table/onKeyDownTable.js +62 -0
  166. package/dist/cjs/plugins/Table/tableTracking.js +64 -0
  167. package/dist/cjs/plugins/Text/__tests__/createTextPlugin.test.js +79 -0
  168. package/dist/cjs/plugins/Text/createTextPlugin.js +136 -0
  169. package/dist/cjs/plugins/Text/index.js +18 -0
  170. package/dist/cjs/plugins/Tracking/createTrackingPlugin.js +101 -0
  171. package/dist/cjs/plugins/Tracking/index.js +18 -0
  172. package/dist/cjs/plugins/Tracking/utils.js +64 -0
  173. package/dist/cjs/plugins/TrailingParagraph/index.js +20 -0
  174. package/dist/cjs/plugins/Voids/createVoidsPlugin.js +31 -0
  175. package/dist/cjs/plugins/Voids/index.js +18 -0
  176. package/dist/cjs/plugins/Voids/transformVoid.js +29 -0
  177. package/dist/cjs/plugins/index.js +76 -0
  178. package/dist/cjs/plugins/links-tracking.js +29 -0
  179. package/dist/cjs/plugins/shared/FetchingWrappedAssetCard.js +113 -0
  180. package/dist/cjs/plugins/shared/FetchingWrappedEntryCard.js +116 -0
  181. package/dist/cjs/plugins/shared/ToolbarButton.js +93 -0
  182. package/dist/cjs/plugins/shared/__tests__/FetchingWrappedAssetCard.test.js +107 -0
  183. package/dist/cjs/plugins/shared/__tests__/FetchingWrappedEntryCard.test.js +110 -0
  184. package/dist/cjs/prepareDocument.js +86 -0
  185. package/dist/cjs/test-utils/assertOutput.js +31 -0
  186. package/dist/cjs/test-utils/createEditor.js +31 -0
  187. package/dist/cjs/test-utils/hyperscript.d.js +1 -0
  188. package/dist/cjs/test-utils/index.js +21 -0
  189. package/dist/cjs/test-utils/jsx.js +159 -0
  190. package/dist/cjs/test-utils/mockPlugin.js +16 -0
  191. package/dist/cjs/test-utils/randomId.js +13 -0
  192. package/dist/cjs/test-utils/setEmptyDataAttribute.js +21 -0
  193. package/dist/cjs/test-utils/validation.js +127 -0
  194. package/dist/cjs/useOnValueChanged.js +58 -0
  195. package/dist/esm/ContentfulEditorProvider.js +29 -0
  196. package/dist/esm/RichTextEditor.js +108 -0
  197. package/dist/esm/RichTextEditor.styles.js +51 -0
  198. package/dist/esm/SdkProvider.js +7 -0
  199. package/dist/esm/Toolbar/_tests_/toolbar.test.js +104 -0
  200. package/dist/esm/Toolbar/components/EmbedEntityWidget.js +38 -0
  201. package/dist/esm/Toolbar/components/EmbeddedEntityDropdownButton.js +20 -0
  202. package/dist/esm/Toolbar/components/StickyToolbarWrapper.js +14 -0
  203. package/dist/esm/Toolbar/index.js +168 -0
  204. package/dist/esm/__fixtures__/FakeSdk.js +173 -0
  205. package/dist/esm/__fixtures__/asset/index.js +6 -0
  206. package/dist/esm/__fixtures__/content-type/index.js +2 -0
  207. package/dist/esm/__fixtures__/entry/index.js +5 -0
  208. package/dist/esm/__fixtures__/fixtures.js +6 -0
  209. package/dist/esm/__fixtures__/locale/index.js +15 -0
  210. package/dist/esm/__fixtures__/space/index.js +2 -0
  211. package/dist/esm/constants/Schema.js +162 -0
  212. package/dist/esm/dialogs/HypelinkDialog/HyperlinkDialog.js +283 -0
  213. package/dist/esm/dialogs/openRichTextDialog.js +15 -0
  214. package/dist/esm/dialogs/renderRichTextDialog.js +14 -0
  215. package/dist/esm/helpers/__tests__/extractNodes.test.js +295 -0
  216. package/dist/esm/helpers/__tests__/removeInternalMarks.test.js +48 -0
  217. package/dist/esm/helpers/__tests__/validations.test.js +45 -0
  218. package/dist/esm/helpers/editor.js +198 -0
  219. package/dist/esm/helpers/environment.js +2 -0
  220. package/dist/esm/helpers/extractNodes.js +17 -0
  221. package/dist/esm/helpers/formatDateAndTime.js +19 -0
  222. package/dist/esm/helpers/getLinkedContentTypeIdsForNodeType.js +9 -0
  223. package/dist/esm/helpers/newEntitySelectorConfigFromRichTextField.js +18 -0
  224. package/dist/esm/helpers/nodeFactory.js +24 -0
  225. package/dist/esm/helpers/removeInternalMarks.js +16 -0
  226. package/dist/esm/helpers/sanitizeIncomingSlateDoc.js +23 -0
  227. package/dist/esm/helpers/sdkNavigatorSlideIn.js +42 -0
  228. package/dist/esm/helpers/sdkNavigatorSlideIn.spec.js +200 -0
  229. package/dist/esm/helpers/transformers.js +34 -0
  230. package/dist/esm/helpers/validations.js +24 -0
  231. package/dist/esm/index.js +4 -0
  232. package/dist/esm/internal/constants.js +2 -0
  233. package/dist/esm/internal/hooks.js +5 -0
  234. package/dist/esm/internal/index.js +4 -0
  235. package/dist/esm/internal/misc.js +28 -0
  236. package/dist/esm/internal/queries.js +182 -0
  237. package/dist/esm/internal/transforms.js +75 -0
  238. package/dist/esm/internal/types/editor.js +1 -0
  239. package/dist/esm/internal/types/index.js +2 -0
  240. package/dist/esm/internal/types/plugins.js +1 -0
  241. package/dist/esm/plugins/Break/createExitBreakPlugin.js +16 -0
  242. package/dist/esm/plugins/Break/createExitBreakPlugin.test.js +32 -0
  243. package/dist/esm/plugins/Break/createResetNodePlugin.js +22 -0
  244. package/dist/esm/plugins/Break/createSoftBreakPlugin.js +13 -0
  245. package/dist/esm/plugins/Break/createSoftBreakPlugin.test.js +43 -0
  246. package/dist/esm/plugins/Break/index.js +3 -0
  247. package/dist/esm/plugins/CommandPalette/components/CommandList.js +113 -0
  248. package/dist/esm/plugins/CommandPalette/components/CommandList.styles.js +88 -0
  249. package/dist/esm/plugins/CommandPalette/components/CommandPrompt.js +20 -0
  250. package/dist/esm/plugins/CommandPalette/constants.js +1 -0
  251. package/dist/esm/plugins/CommandPalette/createCommandPalettePlugin.js +14 -0
  252. package/dist/esm/plugins/CommandPalette/hooks/useCommandList.js +84 -0
  253. package/dist/esm/plugins/CommandPalette/index.js +1 -0
  254. package/dist/esm/plugins/CommandPalette/onKeyDown.js +36 -0
  255. package/dist/esm/plugins/CommandPalette/onKeyDown.spec.js +40 -0
  256. package/dist/esm/plugins/CommandPalette/useCommands.js +204 -0
  257. package/dist/esm/plugins/CommandPalette/utils/createInlineEntryNode.js +20 -0
  258. package/dist/esm/plugins/CommandPalette/utils/fetchAssets.js +21 -0
  259. package/dist/esm/plugins/CommandPalette/utils/fetchEntries.js +29 -0
  260. package/dist/esm/plugins/CommandPalette/utils/insertBlock.js +32 -0
  261. package/dist/esm/plugins/CommandPalette/utils/trimLeadingSlash.js +6 -0
  262. package/dist/esm/plugins/DragAndDrop/index.js +44 -0
  263. package/dist/esm/plugins/EmbeddedEntityBlock/LinkedEntityBlock.js +79 -0
  264. package/dist/esm/plugins/EmbeddedEntityBlock/ToolbarIcon.js +49 -0
  265. package/dist/esm/plugins/EmbeddedEntityBlock/Util.js +85 -0
  266. package/dist/esm/plugins/EmbeddedEntityBlock/index.js +74 -0
  267. package/dist/esm/plugins/EmbeddedEntityInline/FetchingWrappedInlineEntryCard.js +104 -0
  268. package/dist/esm/plugins/EmbeddedEntityInline/Util.js +20 -0
  269. package/dist/esm/plugins/EmbeddedEntityInline/index.js +159 -0
  270. package/dist/esm/plugins/Heading/__tests__/createHeadingPlugin.test.js +113 -0
  271. package/dist/esm/plugins/Heading/components/Heading.js +73 -0
  272. package/dist/esm/plugins/Heading/components/ToolbarHeadingButton.js +119 -0
  273. package/dist/esm/plugins/Heading/createHeadingPlugin.js +87 -0
  274. package/dist/esm/plugins/Heading/index.js +2 -0
  275. package/dist/esm/plugins/Hr/index.js +125 -0
  276. package/dist/esm/plugins/Hyperlink/HyperlinkModal.js +220 -0
  277. package/dist/esm/plugins/Hyperlink/__tests__/createHyperlinkPlugin.test.js +21 -0
  278. package/dist/esm/plugins/Hyperlink/components/EntityHyperlink.js +44 -0
  279. package/dist/esm/plugins/Hyperlink/components/ToolbarHyperlinkButton.js +29 -0
  280. package/dist/esm/plugins/Hyperlink/components/UrlHyperlink.js +37 -0
  281. package/dist/esm/plugins/Hyperlink/components/styles.js +21 -0
  282. package/dist/esm/plugins/Hyperlink/createHyperlinkPlugin.js +125 -0
  283. package/dist/esm/plugins/Hyperlink/index.js +2 -0
  284. package/dist/esm/plugins/Hyperlink/useEntityInfo.js +85 -0
  285. package/dist/esm/plugins/Hyperlink/utils.js +25 -0
  286. package/dist/esm/plugins/List/__tests__/createListPlugin.test.js +43 -0
  287. package/dist/esm/plugins/List/__tests__/insertListBreak.test.js +73 -0
  288. package/dist/esm/plugins/List/__tests__/insertListFragment.test.js +60 -0
  289. package/dist/esm/plugins/List/components/List.js +46 -0
  290. package/dist/esm/plugins/List/components/ListItem.js +19 -0
  291. package/dist/esm/plugins/List/components/ToolbarListButton.js +37 -0
  292. package/dist/esm/plugins/List/createListPlugin.js +66 -0
  293. package/dist/esm/plugins/List/index.js +2 -0
  294. package/dist/esm/plugins/List/insertListBreak.js +50 -0
  295. package/dist/esm/plugins/List/insertListFragment.js +88 -0
  296. package/dist/esm/plugins/List/onKeyDownList.js +31 -0
  297. package/dist/esm/plugins/List/transforms/insertListItem.js +82 -0
  298. package/dist/esm/plugins/List/transforms/moveListItemDown.js +37 -0
  299. package/dist/esm/plugins/List/transforms/moveListItems.js +46 -0
  300. package/dist/esm/plugins/List/transforms/moveListItems.test.js +68 -0
  301. package/dist/esm/plugins/List/transforms/toggleList.js +132 -0
  302. package/dist/esm/plugins/List/transforms/toggleList.spec.js +135 -0
  303. package/dist/esm/plugins/List/transforms/unwrapList.js +28 -0
  304. package/dist/esm/plugins/List/utils.js +89 -0
  305. package/dist/esm/plugins/List/withList.js +22 -0
  306. package/dist/esm/plugins/Marks/Bold.js +59 -0
  307. package/dist/esm/plugins/Marks/Code.js +59 -0
  308. package/dist/esm/plugins/Marks/Italic.js +54 -0
  309. package/dist/esm/plugins/Marks/Subscript.js +46 -0
  310. package/dist/esm/plugins/Marks/Superscript.js +44 -0
  311. package/dist/esm/plugins/Marks/Underline.js +46 -0
  312. package/dist/esm/plugins/Marks/components/MarkToolbarButton.js +51 -0
  313. package/dist/esm/plugins/Marks/helpers.js +25 -0
  314. package/dist/esm/plugins/Marks/index.js +17 -0
  315. package/dist/esm/plugins/Normalizer/baseRules.js +28 -0
  316. package/dist/esm/plugins/Normalizer/createNormalizerPlugin.js +5 -0
  317. package/dist/esm/plugins/Normalizer/createNormalizerPlugin.test.js +113 -0
  318. package/dist/esm/plugins/Normalizer/index.js +2 -0
  319. package/dist/esm/plugins/Normalizer/types.js +1 -0
  320. package/dist/esm/plugins/Normalizer/utils.js +18 -0
  321. package/dist/esm/plugins/Normalizer/withNormalizer.js +73 -0
  322. package/dist/esm/plugins/Paragraph/Paragraph.js +16 -0
  323. package/dist/esm/plugins/Paragraph/__tests__/createParagraphPlugin.test.js +121 -0
  324. package/dist/esm/plugins/Paragraph/createParagraphPlugin.js +58 -0
  325. package/dist/esm/plugins/Paragraph/index.js +1 -0
  326. package/dist/esm/plugins/Paragraph/utils.js +6 -0
  327. package/dist/esm/plugins/PasteHTML/createPasteHTMLPlugin.js +42 -0
  328. package/dist/esm/plugins/PasteHTML/index.js +1 -0
  329. package/dist/esm/plugins/PasteHTML/utils/__tests__/sanitizeHTML.test.js +50 -0
  330. package/dist/esm/plugins/PasteHTML/utils/sanitizeAnchors.js +33 -0
  331. package/dist/esm/plugins/PasteHTML/utils/sanitizeHTML.js +40 -0
  332. package/dist/esm/plugins/PasteHTML/utils/sanitizeSheets.js +34 -0
  333. package/dist/esm/plugins/Quote/__test__/createQuotePlugin.test.js +74 -0
  334. package/dist/esm/plugins/Quote/components/Quote.js +15 -0
  335. package/dist/esm/plugins/Quote/components/ToolbarQuoteButton.js +23 -0
  336. package/dist/esm/plugins/Quote/createQuotePlugin.js +47 -0
  337. package/dist/esm/plugins/Quote/index.js +2 -0
  338. package/dist/esm/plugins/Quote/shouldResetQuote.js +30 -0
  339. package/dist/esm/plugins/Quote/toggleQuote.js +33 -0
  340. package/dist/esm/plugins/Quote/withQuote.js +38 -0
  341. package/dist/esm/plugins/SelectOnBackspace/createSelectOnBackspacePlugin.js +11 -0
  342. package/dist/esm/plugins/SelectOnBackspace/index.js +1 -0
  343. package/dist/esm/plugins/Table/__tests__/createTablePlugin.test.js +88 -0
  344. package/dist/esm/plugins/Table/__tests__/helpers.test.js +14 -0
  345. package/dist/esm/plugins/Table/actions/addColumn.js +45 -0
  346. package/dist/esm/plugins/Table/actions/addRow.js +39 -0
  347. package/dist/esm/plugins/Table/actions/index.js +3 -0
  348. package/dist/esm/plugins/Table/actions/setHeader.js +24 -0
  349. package/dist/esm/plugins/Table/components/Cell.js +25 -0
  350. package/dist/esm/plugins/Table/components/HeaderCell.js +28 -0
  351. package/dist/esm/plugins/Table/components/Row.js +15 -0
  352. package/dist/esm/plugins/Table/components/Table.js +22 -0
  353. package/dist/esm/plugins/Table/components/TableActions.js +118 -0
  354. package/dist/esm/plugins/Table/components/ToolbarButton.js +24 -0
  355. package/dist/esm/plugins/Table/createTablePlugin.js +109 -0
  356. package/dist/esm/plugins/Table/helpers.js +116 -0
  357. package/dist/esm/plugins/Table/index.js +2 -0
  358. package/dist/esm/plugins/Table/insertTableFragment.js +40 -0
  359. package/dist/esm/plugins/Table/onKeyDownTable.js +52 -0
  360. package/dist/esm/plugins/Table/tableTracking.js +46 -0
  361. package/dist/esm/plugins/Text/__tests__/createTextPlugin.test.js +75 -0
  362. package/dist/esm/plugins/Text/createTextPlugin.js +126 -0
  363. package/dist/esm/plugins/Text/index.js +1 -0
  364. package/dist/esm/plugins/Tracking/createTrackingPlugin.js +83 -0
  365. package/dist/esm/plugins/Tracking/index.js +1 -0
  366. package/dist/esm/plugins/Tracking/utils.js +10 -0
  367. package/dist/esm/plugins/TrailingParagraph/index.js +10 -0
  368. package/dist/esm/plugins/Voids/createVoidsPlugin.js +21 -0
  369. package/dist/esm/plugins/Voids/index.js +1 -0
  370. package/dist/esm/plugins/Voids/transformVoid.js +19 -0
  371. package/dist/esm/plugins/index.js +58 -0
  372. package/dist/esm/plugins/links-tracking.js +14 -0
  373. package/dist/esm/plugins/shared/FetchingWrappedAssetCard.js +59 -0
  374. package/dist/esm/plugins/shared/FetchingWrappedEntryCard.js +62 -0
  375. package/dist/esm/plugins/shared/ToolbarButton.js +39 -0
  376. package/dist/esm/plugins/shared/__tests__/FetchingWrappedAssetCard.test.js +59 -0
  377. package/dist/esm/plugins/shared/__tests__/FetchingWrappedEntryCard.test.js +62 -0
  378. package/dist/esm/prepareDocument.js +57 -0
  379. package/dist/esm/test-utils/assertOutput.js +21 -0
  380. package/dist/esm/test-utils/createEditor.js +21 -0
  381. package/dist/esm/test-utils/hyperscript.d.js +0 -0
  382. package/dist/esm/test-utils/index.js +4 -0
  383. package/dist/esm/test-utils/jsx.js +149 -0
  384. package/dist/esm/test-utils/mockPlugin.js +6 -0
  385. package/dist/esm/test-utils/randomId.js +3 -0
  386. package/dist/esm/test-utils/setEmptyDataAttribute.js +11 -0
  387. package/dist/esm/test-utils/validation.js +112 -0
  388. package/dist/esm/useOnValueChanged.js +43 -0
  389. package/dist/{ContentfulEditorProvider.d.ts → types/ContentfulEditorProvider.d.ts} +9 -9
  390. package/dist/{RichTextEditor.d.ts → types/RichTextEditor.d.ts} +21 -20
  391. package/dist/{RichTextEditor.styles.d.ts → types/RichTextEditor.styles.d.ts} +7 -7
  392. package/dist/{SdkProvider.d.ts → types/SdkProvider.d.ts} +7 -7
  393. package/dist/types/Toolbar/_tests_/toolbar.test.d.ts +1 -0
  394. package/dist/{Toolbar → types/Toolbar}/components/EmbedEntityWidget.d.ts +6 -5
  395. package/dist/{Toolbar → types/Toolbar}/components/EmbeddedEntityDropdownButton.d.ts +9 -9
  396. package/dist/{Toolbar → types/Toolbar}/components/StickyToolbarWrapper.d.ts +7 -7
  397. package/dist/types/Toolbar/index.d.ts +6 -0
  398. package/dist/types/__fixtures__/FakeSdk.d.ts +8 -0
  399. package/dist/types/__fixtures__/asset/index.d.ts +6 -0
  400. package/dist/types/__fixtures__/content-type/index.d.ts +2 -0
  401. package/dist/types/__fixtures__/entry/index.d.ts +5 -0
  402. package/dist/types/__fixtures__/fixtures.d.ts +6 -0
  403. package/dist/types/__fixtures__/locale/index.d.ts +42 -0
  404. package/dist/types/__fixtures__/space/index.d.ts +2 -0
  405. package/dist/{constants → types/constants}/Schema.d.ts +111 -111
  406. package/dist/{dialogs → types/dialogs}/HypelinkDialog/HyperlinkDialog.d.ts +63 -54
  407. package/dist/{dialogs → types/dialogs}/openRichTextDialog.d.ts +2 -2
  408. package/dist/{dialogs → types/dialogs}/renderRichTextDialog.d.ts +3 -2
  409. package/dist/types/helpers/__tests__/extractNodes.test.d.ts +1 -0
  410. package/dist/types/helpers/__tests__/removeInternalMarks.test.d.ts +2 -0
  411. package/dist/types/helpers/__tests__/validations.test.d.ts +1 -0
  412. package/dist/{helpers → types/helpers}/editor.d.ts +40 -40
  413. package/dist/{helpers → types/helpers}/environment.d.ts +2 -2
  414. package/dist/{helpers → types/helpers}/extractNodes.d.ts +5 -5
  415. package/dist/{helpers → types/helpers}/formatDateAndTime.d.ts +15 -15
  416. package/dist/{helpers → types/helpers}/getLinkedContentTypeIdsForNodeType.d.ts +26 -26
  417. package/dist/{helpers → types/helpers}/newEntitySelectorConfigFromRichTextField.d.ts +14 -14
  418. package/dist/{helpers → types/helpers}/nodeFactory.d.ts +24 -24
  419. package/dist/{helpers → types/helpers}/removeInternalMarks.d.ts +1 -1
  420. package/dist/{helpers → types/helpers}/sanitizeIncomingSlateDoc.d.ts +6 -6
  421. package/dist/{helpers → types/helpers}/sdkNavigatorSlideIn.d.ts +16 -16
  422. package/dist/types/helpers/sdkNavigatorSlideIn.spec.d.ts +1 -0
  423. package/dist/{helpers → types/helpers}/transformers.d.ts +7 -7
  424. package/dist/{helpers → types/helpers}/validations.d.ts +10 -10
  425. package/dist/{index.d.ts → types/index.d.ts} +4 -4
  426. package/dist/{internal → types/internal}/constants.d.ts +1 -1
  427. package/dist/{internal → types/internal}/hooks.d.ts +4 -4
  428. package/dist/{internal → types/internal}/index.d.ts +4 -4
  429. package/dist/{internal → types/internal}/misc.d.ts +37 -37
  430. package/dist/{internal → types/internal}/queries.d.ts +78 -78
  431. package/dist/{internal → types/internal}/transforms.d.ts +33 -33
  432. package/dist/types/internal/types/editor.d.ts +51 -0
  433. package/dist/{internal → types/internal}/types/index.d.ts +2 -2
  434. package/dist/{internal → types/internal}/types/plugins.d.ts +12 -12
  435. package/dist/{plugins → types/plugins}/Break/createExitBreakPlugin.d.ts +2 -2
  436. package/dist/types/plugins/Break/createExitBreakPlugin.test.d.ts +1 -0
  437. package/dist/{plugins → types/plugins}/Break/createResetNodePlugin.d.ts +2 -2
  438. package/dist/{plugins → types/plugins}/Break/createSoftBreakPlugin.d.ts +2 -2
  439. package/dist/types/plugins/Break/createSoftBreakPlugin.test.d.ts +1 -0
  440. package/dist/{plugins → types/plugins}/Break/index.d.ts +5 -5
  441. package/dist/{plugins → types/plugins}/CommandPalette/components/CommandList.d.ts +8 -7
  442. package/dist/{plugins → types/plugins}/CommandPalette/components/CommandList.styles.d.ts +14 -14
  443. package/dist/{plugins → types/plugins}/CommandPalette/components/CommandPrompt.d.ts +5 -4
  444. package/dist/{plugins → types/plugins}/CommandPalette/constants.d.ts +1 -1
  445. package/dist/{plugins → types/plugins}/CommandPalette/createCommandPalettePlugin.d.ts +13 -13
  446. package/dist/{plugins → types/plugins}/CommandPalette/hooks/useCommandList.d.ts +4 -4
  447. package/dist/{plugins → types/plugins}/CommandPalette/index.d.ts +1 -1
  448. package/dist/{plugins → types/plugins}/CommandPalette/onKeyDown.d.ts +2 -2
  449. package/dist/types/plugins/CommandPalette/onKeyDown.spec.d.ts +1 -0
  450. package/dist/{plugins → types/plugins}/CommandPalette/useCommands.d.ts +19 -19
  451. package/dist/{plugins → types/plugins}/CommandPalette/utils/createInlineEntryNode.d.ts +16 -16
  452. package/dist/{plugins → types/plugins}/CommandPalette/utils/fetchAssets.d.ts +8 -8
  453. package/dist/{plugins → types/plugins}/CommandPalette/utils/fetchEntries.d.ts +9 -9
  454. package/dist/{plugins → types/plugins}/CommandPalette/utils/insertBlock.d.ts +1 -1
  455. package/dist/{plugins → types/plugins}/CommandPalette/utils/trimLeadingSlash.d.ts +7 -7
  456. package/dist/{plugins → types/plugins}/DragAndDrop/index.d.ts +2 -2
  457. package/dist/{plugins → types/plugins}/EmbeddedEntityBlock/LinkedEntityBlock.d.ts +20 -19
  458. package/dist/{plugins → types/plugins}/EmbeddedEntityBlock/ToolbarIcon.d.ts +11 -10
  459. package/dist/{plugins → types/plugins}/EmbeddedEntityBlock/Util.d.ts +4 -4
  460. package/dist/{plugins → types/plugins}/EmbeddedEntityBlock/index.d.ts +5 -5
  461. package/dist/{plugins → types/plugins}/EmbeddedEntityInline/FetchingWrappedInlineEntryCard.d.ts +13 -13
  462. package/dist/{plugins → types/plugins}/EmbeddedEntityInline/Util.d.ts +16 -16
  463. package/dist/{plugins → types/plugins}/EmbeddedEntityInline/index.d.ts +10 -9
  464. package/dist/types/plugins/Heading/__tests__/createHeadingPlugin.test.d.ts +1 -0
  465. package/dist/{plugins → types/plugins}/Heading/components/Heading.d.ts +10 -10
  466. package/dist/{plugins → types/plugins}/Heading/components/ToolbarHeadingButton.d.ts +5 -4
  467. package/dist/{plugins → types/plugins}/Heading/createHeadingPlugin.d.ts +2 -2
  468. package/dist/{plugins → types/plugins}/Heading/index.d.ts +2 -2
  469. package/dist/{plugins → types/plugins}/Hr/index.d.ts +11 -11
  470. package/dist/{plugins → types/plugins}/Hyperlink/HyperlinkModal.d.ts +17 -16
  471. package/dist/types/plugins/Hyperlink/__tests__/createHyperlinkPlugin.test.d.ts +1 -0
  472. package/dist/{plugins → types/plugins}/Hyperlink/components/EntityHyperlink.d.ts +21 -20
  473. package/dist/{plugins → types/plugins}/Hyperlink/components/ToolbarHyperlinkButton.d.ts +6 -5
  474. package/dist/{plugins → types/plugins}/Hyperlink/components/UrlHyperlink.d.ts +22 -21
  475. package/dist/{plugins → types/plugins}/Hyperlink/components/styles.d.ts +4 -4
  476. package/dist/{plugins → types/plugins}/Hyperlink/createHyperlinkPlugin.d.ts +3 -3
  477. package/dist/{plugins → types/plugins}/Hyperlink/index.d.ts +2 -2
  478. package/dist/{plugins → types/plugins}/Hyperlink/useEntityInfo.d.ts +16 -16
  479. package/dist/{plugins → types/plugins}/Hyperlink/utils.d.ts +5 -5
  480. package/dist/types/plugins/List/__tests__/createListPlugin.test.d.ts +1 -0
  481. package/dist/types/plugins/List/__tests__/insertListBreak.test.d.ts +1 -0
  482. package/dist/types/plugins/List/__tests__/insertListFragment.test.d.ts +1 -0
  483. package/dist/{plugins → types/plugins}/List/components/List.d.ts +4 -3
  484. package/dist/{plugins → types/plugins}/List/components/ListItem.d.ts +3 -2
  485. package/dist/{plugins → types/plugins}/List/components/ToolbarListButton.d.ts +5 -4
  486. package/dist/{plugins → types/plugins}/List/createListPlugin.d.ts +2 -2
  487. package/dist/{plugins → types/plugins}/List/index.d.ts +2 -2
  488. package/dist/{plugins → types/plugins}/List/insertListBreak.d.ts +2 -2
  489. package/dist/{plugins → types/plugins}/List/insertListFragment.d.ts +2 -2
  490. package/dist/{plugins → types/plugins}/List/onKeyDownList.d.ts +7 -7
  491. package/dist/{plugins → types/plugins}/List/transforms/insertListItem.d.ts +5 -5
  492. package/dist/{plugins → types/plugins}/List/transforms/moveListItemDown.d.ts +6 -6
  493. package/dist/{plugins → types/plugins}/List/transforms/moveListItems.d.ts +6 -6
  494. package/dist/types/plugins/List/transforms/moveListItems.test.d.ts +1 -0
  495. package/dist/{plugins → types/plugins}/List/transforms/toggleList.d.ts +4 -4
  496. package/dist/types/plugins/List/transforms/toggleList.spec.d.ts +1 -0
  497. package/dist/{plugins → types/plugins}/List/transforms/unwrapList.d.ts +4 -4
  498. package/dist/{plugins → types/plugins}/List/utils.d.ts +14 -14
  499. package/dist/{plugins → types/plugins}/List/withList.d.ts +2 -2
  500. package/dist/{plugins → types/plugins}/Marks/Bold.d.ts +11 -10
  501. package/dist/{plugins → types/plugins}/Marks/Code.d.ts +17 -16
  502. package/dist/{plugins → types/plugins}/Marks/Italic.d.ts +11 -10
  503. package/dist/{plugins → types/plugins}/Marks/Subscript.d.ts +17 -16
  504. package/dist/{plugins → types/plugins}/Marks/Superscript.d.ts +17 -16
  505. package/dist/{plugins → types/plugins}/Marks/Underline.d.ts +11 -10
  506. package/dist/{plugins → types/plugins}/Marks/components/MarkToolbarButton.d.ts +13 -13
  507. package/dist/{plugins → types/plugins}/Marks/helpers.d.ts +4 -4
  508. package/dist/{plugins → types/plugins}/Marks/index.d.ts +2 -2
  509. package/dist/{plugins → types/plugins}/Normalizer/baseRules.d.ts +2 -2
  510. package/dist/{plugins → types/plugins}/Normalizer/createNormalizerPlugin.d.ts +2 -2
  511. package/dist/types/plugins/Normalizer/createNormalizerPlugin.test.d.ts +1 -0
  512. package/dist/{plugins → types/plugins}/Normalizer/index.d.ts +2 -2
  513. package/dist/{plugins → types/plugins}/Normalizer/types.d.ts +38 -38
  514. package/dist/{plugins → types/plugins}/Normalizer/utils.d.ts +5 -5
  515. package/dist/{plugins → types/plugins}/Normalizer/withNormalizer.d.ts +2 -2
  516. package/dist/types/plugins/Paragraph/Paragraph.d.ts +3 -0
  517. package/dist/types/plugins/Paragraph/__tests__/createParagraphPlugin.test.d.ts +1 -0
  518. package/dist/{plugins → types/plugins}/Paragraph/createParagraphPlugin.d.ts +2 -2
  519. package/dist/{plugins → types/plugins}/Paragraph/index.d.ts +1 -1
  520. package/dist/{plugins → types/plugins}/Paragraph/utils.d.ts +2 -2
  521. package/dist/{plugins → types/plugins}/PasteHTML/createPasteHTMLPlugin.d.ts +8 -8
  522. package/dist/{plugins → types/plugins}/PasteHTML/index.d.ts +1 -1
  523. package/dist/types/plugins/PasteHTML/utils/__tests__/sanitizeHTML.test.d.ts +1 -0
  524. package/dist/{plugins → types/plugins}/PasteHTML/utils/sanitizeAnchors.d.ts +19 -19
  525. package/dist/{plugins → types/plugins}/PasteHTML/utils/sanitizeHTML.d.ts +1 -1
  526. package/dist/{plugins → types/plugins}/PasteHTML/utils/sanitizeSheets.d.ts +4 -4
  527. package/dist/types/plugins/Quote/__test__/createQuotePlugin.test.d.ts +1 -0
  528. package/dist/types/plugins/Quote/components/Quote.d.ts +3 -0
  529. package/dist/{plugins → types/plugins}/Quote/components/ToolbarQuoteButton.d.ts +5 -4
  530. package/dist/{plugins → types/plugins}/Quote/createQuotePlugin.d.ts +2 -2
  531. package/dist/{plugins → types/plugins}/Quote/index.d.ts +2 -2
  532. package/dist/{plugins → types/plugins}/Quote/shouldResetQuote.d.ts +8 -8
  533. package/dist/{plugins → types/plugins}/Quote/toggleQuote.d.ts +4 -4
  534. package/dist/{plugins → types/plugins}/Quote/withQuote.d.ts +2 -2
  535. package/dist/{plugins → types/plugins}/SelectOnBackspace/createSelectOnBackspacePlugin.d.ts +2 -2
  536. package/dist/{plugins → types/plugins}/SelectOnBackspace/index.d.ts +1 -1
  537. package/dist/types/plugins/Table/__tests__/createTablePlugin.test.d.ts +1 -0
  538. package/dist/types/plugins/Table/__tests__/helpers.test.d.ts +1 -0
  539. package/dist/{plugins → types/plugins}/Table/actions/addColumn.d.ts +7 -7
  540. package/dist/{plugins → types/plugins}/Table/actions/addRow.d.ts +3 -3
  541. package/dist/{plugins → types/plugins}/Table/actions/index.d.ts +3 -3
  542. package/dist/{plugins → types/plugins}/Table/actions/setHeader.d.ts +2 -2
  543. package/dist/types/plugins/Table/components/Cell.d.ts +3 -0
  544. package/dist/{plugins → types/plugins}/Table/components/HeaderCell.d.ts +3 -2
  545. package/dist/types/plugins/Table/components/Row.d.ts +3 -0
  546. package/dist/{plugins → types/plugins}/Table/components/Table.d.ts +3 -2
  547. package/dist/types/plugins/Table/components/TableActions.d.ts +5 -0
  548. package/dist/{plugins → types/plugins}/Table/components/ToolbarButton.d.ts +5 -4
  549. package/dist/{plugins → types/plugins}/Table/createTablePlugin.d.ts +2 -2
  550. package/dist/{plugins → types/plugins}/Table/helpers.d.ts +15 -15
  551. package/dist/{plugins → types/plugins}/Table/index.d.ts +2 -2
  552. package/dist/{plugins → types/plugins}/Table/insertTableFragment.d.ts +3 -3
  553. package/dist/{plugins → types/plugins}/Table/onKeyDownTable.d.ts +2 -2
  554. package/dist/{plugins → types/plugins}/Table/tableTracking.d.ts +4 -4
  555. package/dist/types/plugins/Text/__tests__/createTextPlugin.test.d.ts +2 -0
  556. package/dist/{plugins → types/plugins}/Text/createTextPlugin.d.ts +2 -2
  557. package/dist/{plugins → types/plugins}/Text/index.d.ts +1 -1
  558. package/dist/{plugins → types/plugins}/Tracking/createTrackingPlugin.d.ts +12 -12
  559. package/dist/{plugins → types/plugins}/Tracking/index.d.ts +1 -1
  560. package/dist/{plugins → types/plugins}/Tracking/utils.d.ts +2 -2
  561. package/dist/{plugins → types/plugins}/TrailingParagraph/index.d.ts +2 -2
  562. package/dist/{plugins → types/plugins}/Voids/createVoidsPlugin.d.ts +2 -2
  563. package/dist/{plugins → types/plugins}/Voids/index.d.ts +1 -1
  564. package/dist/{plugins → types/plugins}/Voids/transformVoid.d.ts +5 -5
  565. package/dist/{plugins → types/plugins}/index.d.ts +6 -6
  566. package/dist/{plugins → types/plugins}/links-tracking.d.ts +3 -3
  567. package/dist/{plugins → types/plugins}/shared/FetchingWrappedAssetCard.d.ts +14 -13
  568. package/dist/{plugins → types/plugins}/shared/FetchingWrappedEntryCard.d.ts +14 -13
  569. package/dist/{plugins → types/plugins}/shared/ToolbarButton.d.ts +12 -11
  570. package/dist/types/plugins/shared/__tests__/FetchingWrappedAssetCard.test.d.ts +1 -0
  571. package/dist/types/plugins/shared/__tests__/FetchingWrappedEntryCard.test.d.ts +1 -0
  572. package/dist/{prepareDocument.d.ts → types/prepareDocument.d.ts} +19 -19
  573. package/dist/{test-utils → types/test-utils}/assertOutput.d.ts +7 -7
  574. package/dist/{test-utils → types/test-utils}/createEditor.d.ts +31 -31
  575. package/dist/{test-utils → types/test-utils}/index.d.ts +4 -4
  576. package/dist/{test-utils → types/test-utils}/jsx.d.ts +28 -28
  577. package/dist/{test-utils → types/test-utils}/mockPlugin.d.ts +2 -2
  578. package/dist/{test-utils → types/test-utils}/randomId.d.ts +4 -4
  579. package/dist/{test-utils → types/test-utils}/setEmptyDataAttribute.d.ts +6 -6
  580. package/dist/{test-utils → types/test-utils}/validation.d.ts +1 -1
  581. package/dist/{useOnValueChanged.d.ts → types/useOnValueChanged.d.ts} +8 -8
  582. package/package.json +27 -21
  583. package/dist/Toolbar/index.d.ts +0 -5
  584. package/dist/field-editor-rich-text.cjs.development.js +0 -7133
  585. package/dist/field-editor-rich-text.cjs.development.js.map +0 -1
  586. package/dist/field-editor-rich-text.cjs.production.min.js +0 -163
  587. package/dist/field-editor-rich-text.cjs.production.min.js.map +0 -1
  588. package/dist/field-editor-rich-text.esm.js +0 -7123
  589. package/dist/field-editor-rich-text.esm.js.map +0 -1
  590. package/dist/index.js +0 -8
  591. package/dist/internal/types/editor.d.ts +0 -51
  592. package/dist/plugins/Paragraph/Paragraph.d.ts +0 -2
  593. package/dist/plugins/Quote/components/Quote.d.ts +0 -2
  594. package/dist/plugins/Table/components/Cell.d.ts +0 -2
  595. package/dist/plugins/Table/components/Row.d.ts +0 -2
  596. package/dist/plugins/Table/components/TableActions.d.ts +0 -4
@@ -0,0 +1,56 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ function _export(target, all) {
6
+ for(var name in all)Object.defineProperty(target, name, {
7
+ enumerable: true,
8
+ get: all[name]
9
+ });
10
+ }
11
+ _export(exports, {
12
+ toggleQuote: function() {
13
+ return toggleQuote;
14
+ },
15
+ onKeyDownToggleQuote: function() {
16
+ return onKeyDownToggleQuote;
17
+ }
18
+ });
19
+ const _richtexttypes = require("@contentful/rich-text-types");
20
+ const _ishotkey = _interop_require_default(require("is-hotkey"));
21
+ const _editor = require("../../helpers/editor");
22
+ const _internal = require("../../internal");
23
+ function _interop_require_default(obj) {
24
+ return obj && obj.__esModule ? obj : {
25
+ default: obj
26
+ };
27
+ }
28
+ function toggleQuote(editor, logAction) {
29
+ if (!editor.selection) return;
30
+ const isActive = (0, _editor.isBlockSelected)(editor, _richtexttypes.BLOCKS.QUOTE);
31
+ logAction?.(isActive ? 'remove' : 'insert', {
32
+ nodeType: _richtexttypes.BLOCKS.QUOTE
33
+ });
34
+ (0, _internal.withoutNormalizing)(editor, ()=>{
35
+ if (!editor.selection) return;
36
+ (0, _internal.unwrapNodes)(editor, {
37
+ match: (node)=>(0, _internal.isElement)(node) && node.type === _richtexttypes.BLOCKS.QUOTE,
38
+ split: true
39
+ });
40
+ if (!isActive) {
41
+ const quote = {
42
+ type: _richtexttypes.BLOCKS.QUOTE,
43
+ data: {},
44
+ children: []
45
+ };
46
+ (0, _internal.wrapNodes)(editor, quote);
47
+ }
48
+ });
49
+ }
50
+ const onKeyDownToggleQuote = (editor, plugin)=>(event)=>{
51
+ const { hotkey } = plugin.options;
52
+ if (hotkey && (0, _ishotkey.default)(hotkey, event)) {
53
+ event.preventDefault();
54
+ toggleQuote(editor, editor.tracking.onShortcutAction);
55
+ }
56
+ };
@@ -0,0 +1,48 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "withQuote", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return withQuote;
9
+ }
10
+ });
11
+ const _richtexttypes = require("@contentful/rich-text-types");
12
+ const _slate = require("slate");
13
+ const _queries = require("../../internal/queries");
14
+ const _transforms = require("../../internal/transforms");
15
+ const withQuote = (editor)=>{
16
+ const { insertFragment } = editor;
17
+ editor.insertFragment = (fragment)=>{
18
+ const startingNode = fragment.length && fragment[0];
19
+ const startsWithBlockquote = _slate.Element.isElement(startingNode) && startingNode.type === _richtexttypes.BLOCKS.QUOTE;
20
+ const containerEntry = (0, _queries.getAboveNode)(editor, {
21
+ match: {
22
+ type: _richtexttypes.TEXT_CONTAINERS
23
+ }
24
+ });
25
+ const containerIsNotEmpty = containerEntry && (0, _queries.getText)(editor, containerEntry[1]) !== '';
26
+ if (startsWithBlockquote && containerIsNotEmpty) {
27
+ const { selection } = editor;
28
+ const isContentSelected = (selection)=>!!selection && _slate.Point.compare(selection.anchor, selection.focus) !== 0;
29
+ if (isContentSelected(selection)) {
30
+ (0, _transforms.deleteText)(editor, {
31
+ at: selection
32
+ });
33
+ }
34
+ const containerEntry = (0, _queries.getAboveNode)(editor, {
35
+ match: {
36
+ type: _richtexttypes.TEXT_CONTAINERS
37
+ }
38
+ });
39
+ const containerIsNotEmpty = containerEntry && (0, _queries.getText)(editor, containerEntry[1]) !== '';
40
+ if (containerIsNotEmpty) {
41
+ (0, _transforms.insertNodes)(editor, fragment);
42
+ return;
43
+ }
44
+ }
45
+ insertFragment(fragment);
46
+ };
47
+ return editor;
48
+ };
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "createSelectOnBackspacePlugin", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return createSelectOnBackspacePlugin;
9
+ }
10
+ });
11
+ const _richtexttypes = require("@contentful/rich-text-types");
12
+ const _plateselect = require("@udecode/plate-select");
13
+ const createSelectOnBackspacePlugin = ()=>(0, _plateselect.createSelectOnBackspacePlugin)({
14
+ options: {
15
+ query: {
16
+ allow: [
17
+ _richtexttypes.INLINES.EMBEDDED_ENTRY
18
+ ]
19
+ }
20
+ }
21
+ });
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ _export_star(require("./createSelectOnBackspacePlugin"), exports);
6
+ function _export_star(from, to) {
7
+ Object.keys(from).forEach(function(k) {
8
+ if (k !== "default" && !Object.prototype.hasOwnProperty.call(to, k)) {
9
+ Object.defineProperty(to, k, {
10
+ enumerable: true,
11
+ get: function() {
12
+ return from[k];
13
+ }
14
+ });
15
+ }
16
+ });
17
+ return from;
18
+ }
@@ -0,0 +1,92 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ const _testutils = require("../../../test-utils");
6
+ describe('normalization', ()=>{
7
+ describe('Table', ()=>{
8
+ it('removes empty table nodes', ()=>{
9
+ const input = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("htable", null));
10
+ const expected = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("text", null)));
11
+ (0, _testutils.assertOutput)({
12
+ input,
13
+ expected
14
+ });
15
+ });
16
+ it('moves tables to the root level except nested tables', ()=>{
17
+ const table = (0, _testutils.jsx)("htable", null, (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "Cell 1")), (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "Cell 2"))));
18
+ const input = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("hp", null, "hello", table), (0, _testutils.jsx)("hquote", null, (0, _testutils.jsx)("hp", null, "quote", table)), (0, _testutils.jsx)("hul", null, (0, _testutils.jsx)("hli", null, (0, _testutils.jsx)("hp", null, "item", table))), (0, _testutils.jsx)("htable", null, (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell with table: ", table)))));
19
+ const expected = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("hp", null, "hello"), table, (0, _testutils.jsx)("hquote", null, (0, _testutils.jsx)("hp", null, "quote")), table, (0, _testutils.jsx)("hul", null, (0, _testutils.jsx)("hli", null, (0, _testutils.jsx)("hp", null, "item"))), table, (0, _testutils.jsx)("htable", null, (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell with table: "), (0, _testutils.jsx)("hp", null, "Cell 1"), (0, _testutils.jsx)("hp", null, "Cell 2")))), (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("htext", null)));
20
+ (0, _testutils.assertOutput)({
21
+ input,
22
+ expected
23
+ });
24
+ });
25
+ it('removes invalid children', ()=>{
26
+ const input = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("htable", null, (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "Cell 1")), (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "Cell 2"))), (0, _testutils.jsx)("htd", null, "invalid cell"), "invalid text"), (0, _testutils.jsx)("hp", null));
27
+ const expected = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("htable", null, (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "Cell 1")), (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "Cell 2")))), (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("htext", null)));
28
+ (0, _testutils.assertOutput)({
29
+ input,
30
+ expected
31
+ });
32
+ });
33
+ });
34
+ describe('Table cell', ()=>{
35
+ it('converts invalid children to paragraphs', ()=>{
36
+ const input = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("htable", null, (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "Cell 1")), (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "Cell 2"), (0, _testutils.jsx)("hquote", null, (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("htext", {
37
+ bold: true,
38
+ italic: true,
39
+ underline: true
40
+ }, "quote"), (0, _testutils.jsx)("hinline", {
41
+ type: "Entry",
42
+ id: "entry-id"
43
+ })))))), (0, _testutils.jsx)("hp", null));
44
+ const expected = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("htable", null, (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "Cell 1")), (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "Cell 2"), (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("htext", {
45
+ bold: true,
46
+ italic: true,
47
+ underline: true
48
+ }, "quote"), (0, _testutils.jsx)("hinline", {
49
+ type: "Entry",
50
+ id: "entry-id"
51
+ }), (0, _testutils.jsx)("htext", null))))), (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("htext", null)));
52
+ (0, _testutils.assertOutput)({
53
+ input,
54
+ expected
55
+ });
56
+ });
57
+ });
58
+ describe('Table row', ()=>{
59
+ it('must be wrapped in a table', ()=>{
60
+ const input = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell"))));
61
+ const expected = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("htable", null, (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell")))), (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("text", null)));
62
+ (0, _testutils.assertOutput)({
63
+ input,
64
+ expected
65
+ });
66
+ });
67
+ it('removes empty rows', ()=>{
68
+ const input = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("htr", null));
69
+ const expected = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("text", null)));
70
+ (0, _testutils.assertOutput)({
71
+ input,
72
+ expected
73
+ });
74
+ });
75
+ it('wraps invalid children in table cells', ()=>{
76
+ const input = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("htable", null, (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell 1")), (0, _testutils.jsx)("hp", null, "cell 2"))));
77
+ const expected = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("htable", null, (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell 1")), (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell 2")))), (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("text", null)));
78
+ (0, _testutils.assertOutput)({
79
+ input,
80
+ expected
81
+ });
82
+ });
83
+ it('ensures all table rows have the same width', ()=>{
84
+ const input = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("htable", null, (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell 1"))), (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell 2")), (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell 3")), (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell 4"))), (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell 5")), (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell 6")))));
85
+ const expected = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("htable", null, (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell 1")), (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("text", null))), (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("text", null)))), (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell 2")), (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell 3")), (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell 4"))), (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell 5")), (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, "cell 6")), (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("text", null))))), (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("text", null)));
86
+ (0, _testutils.assertOutput)({
87
+ input,
88
+ expected
89
+ });
90
+ });
91
+ });
92
+ });
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ const _testutils = require("../../../test-utils");
6
+ const _helpers = require("../helpers");
7
+ test('insertTableAndFocusFirstCell', ()=>{
8
+ const input = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("htext", null), (0, _testutils.jsx)("cursor", null)), (0, _testutils.jsx)("hp", null));
9
+ const { editor } = (0, _testutils.createTestEditor)({
10
+ input
11
+ });
12
+ (0, _helpers.insertTableAndFocusFirstCell)(editor);
13
+ const expected = (0, _testutils.jsx)("editor", null, (0, _testutils.jsx)("htable", null, (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("hth", null, (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("htext", null), (0, _testutils.jsx)("cursor", null))), (0, _testutils.jsx)("hth", null, (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("htext", null)))), (0, _testutils.jsx)("htr", null, (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("htext", null))), (0, _testutils.jsx)("htd", null, (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("htext", null))))), (0, _testutils.jsx)("hp", null, (0, _testutils.jsx)("htext", null)));
14
+ (0, _testutils.assertOutput)({
15
+ input,
16
+ expected
17
+ });
18
+ });
@@ -0,0 +1,63 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ function _export(target, all) {
6
+ for(var name in all)Object.defineProperty(target, name, {
7
+ enumerable: true,
8
+ get: all[name]
9
+ });
10
+ }
11
+ _export(exports, {
12
+ addColumnRight: function() {
13
+ return addColumnRight;
14
+ },
15
+ addColumnLeft: function() {
16
+ return addColumnLeft;
17
+ }
18
+ });
19
+ const _richtexttypes = require("@contentful/rich-text-types");
20
+ const _platetable = require("@udecode/plate-table");
21
+ const _queries = require("../../../internal/queries");
22
+ const _transforms = require("../../../internal/transforms");
23
+ const addColumn = (editor, { header }, getNextCellPath)=>{
24
+ if ((0, _queries.someNode)(editor, {
25
+ match: {
26
+ type: _richtexttypes.BLOCKS.TABLE
27
+ }
28
+ })) {
29
+ const currentCellItem = (0, _queries.getAboveNode)(editor, {
30
+ match: {
31
+ type: [
32
+ _richtexttypes.BLOCKS.TABLE_HEADER_CELL,
33
+ _richtexttypes.BLOCKS.TABLE_CELL
34
+ ]
35
+ }
36
+ });
37
+ const currentTableItem = (0, _queries.getAboveNode)(editor, {
38
+ match: {
39
+ type: _richtexttypes.BLOCKS.TABLE
40
+ }
41
+ });
42
+ if (currentCellItem && currentTableItem) {
43
+ const nextCellPath = getNextCellPath(currentCellItem[1]);
44
+ const newCellPath = nextCellPath.slice();
45
+ const replacePathPos = newCellPath.length - 2;
46
+ currentTableItem[0].children.forEach((_, rowIdx)=>{
47
+ newCellPath[replacePathPos] = rowIdx;
48
+ (0, _transforms.insertNodes)(editor, (0, _platetable.getEmptyCellNode)(editor, {
49
+ header: header && rowIdx === 0
50
+ }), {
51
+ at: newCellPath,
52
+ select: rowIdx === 0
53
+ });
54
+ });
55
+ }
56
+ }
57
+ };
58
+ const addColumnRight = (editor, options)=>{
59
+ addColumn(editor, options, (currentCellPath)=>(0, _queries.getNextPath)(currentCellPath));
60
+ };
61
+ const addColumnLeft = (editor, options)=>{
62
+ addColumn(editor, options, (currentCellPath)=>currentCellPath);
63
+ };
@@ -0,0 +1,57 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ function _export(target, all) {
6
+ for(var name in all)Object.defineProperty(target, name, {
7
+ enumerable: true,
8
+ get: all[name]
9
+ });
10
+ }
11
+ _export(exports, {
12
+ addRowBelow: function() {
13
+ return addRowBelow;
14
+ },
15
+ addRowAbove: function() {
16
+ return addRowAbove;
17
+ }
18
+ });
19
+ const _richtexttypes = require("@contentful/rich-text-types");
20
+ const _platetable = require("@udecode/plate-table");
21
+ const _queries = require("../../../internal/queries");
22
+ const _transforms = require("../../../internal/transforms");
23
+ const addRow = (editor, getNextRowPath)=>{
24
+ if ((0, _queries.someNode)(editor, {
25
+ match: {
26
+ type: _richtexttypes.BLOCKS.TABLE
27
+ }
28
+ })) {
29
+ const currentRowItem = (0, _queries.getAboveNode)(editor, {
30
+ match: {
31
+ type: _richtexttypes.BLOCKS.TABLE_ROW
32
+ }
33
+ });
34
+ if (currentRowItem) {
35
+ const [currentRowElem, currentRowPath] = currentRowItem;
36
+ const nextRowPath = getNextRowPath(currentRowPath);
37
+ (0, _transforms.insertNodes)(editor, (0, _platetable.getEmptyRowNode)(editor, {
38
+ header: false,
39
+ colCount: currentRowElem.children.length
40
+ }), {
41
+ at: nextRowPath,
42
+ select: true
43
+ });
44
+ (0, _transforms.select)(editor, (0, _queries.getStartPoint)(editor, nextRowPath));
45
+ }
46
+ }
47
+ };
48
+ const addRowBelow = (editor)=>{
49
+ addRow(editor, (currentRowPath)=>{
50
+ return (0, _queries.getNextPath)(currentRowPath);
51
+ });
52
+ };
53
+ const addRowAbove = (editor)=>{
54
+ addRow(editor, (currentRowPath)=>{
55
+ return currentRowPath;
56
+ });
57
+ };
@@ -0,0 +1,20 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ _export_star(require("./addRow"), exports);
6
+ _export_star(require("./addColumn"), exports);
7
+ _export_star(require("./setHeader"), exports);
8
+ function _export_star(from, to) {
9
+ Object.keys(from).forEach(function(k) {
10
+ if (k !== "default" && !Object.prototype.hasOwnProperty.call(to, k)) {
11
+ Object.defineProperty(to, k, {
12
+ enumerable: true,
13
+ get: function() {
14
+ return from[k];
15
+ }
16
+ });
17
+ }
18
+ });
19
+ return from;
20
+ }
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "setHeader", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return setHeader;
9
+ }
10
+ });
11
+ const _richtexttypes = require("@contentful/rich-text-types");
12
+ const _queries = require("../../../internal/queries");
13
+ const _transforms = require("../../../internal/transforms");
14
+ const setHeader = (editor, enable)=>{
15
+ const tableItem = (0, _queries.getAboveNode)(editor, {
16
+ match: {
17
+ type: _richtexttypes.BLOCKS.TABLE
18
+ }
19
+ });
20
+ if (!tableItem) {
21
+ return;
22
+ }
23
+ const firstRow = (0, _queries.getChildren)(tableItem)[0];
24
+ if (!firstRow) {
25
+ return;
26
+ }
27
+ (0, _queries.getChildren)(firstRow).forEach(([, path])=>{
28
+ (0, _transforms.setNodes)(editor, {
29
+ type: enable ? _richtexttypes.BLOCKS.TABLE_HEADER_CELL : _richtexttypes.BLOCKS.TABLE_CELL
30
+ }, {
31
+ at: path
32
+ });
33
+ });
34
+ };
@@ -0,0 +1,79 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "Cell", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return Cell;
9
+ }
10
+ });
11
+ const _react = _interop_require_wildcard(require("react"));
12
+ const _f36tokens = _interop_require_default(require("@contentful/f36-tokens"));
13
+ const _emotion = require("emotion");
14
+ const _slatereact = require("slate-react");
15
+ const _TableActions = require("./TableActions");
16
+ function _interop_require_default(obj) {
17
+ return obj && obj.__esModule ? obj : {
18
+ default: obj
19
+ };
20
+ }
21
+ function _getRequireWildcardCache(nodeInterop) {
22
+ if (typeof WeakMap !== "function") return null;
23
+ var cacheBabelInterop = new WeakMap();
24
+ var cacheNodeInterop = new WeakMap();
25
+ return (_getRequireWildcardCache = function(nodeInterop) {
26
+ return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
27
+ })(nodeInterop);
28
+ }
29
+ function _interop_require_wildcard(obj, nodeInterop) {
30
+ if (!nodeInterop && obj && obj.__esModule) {
31
+ return obj;
32
+ }
33
+ if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
34
+ return {
35
+ default: obj
36
+ };
37
+ }
38
+ var cache = _getRequireWildcardCache(nodeInterop);
39
+ if (cache && cache.has(obj)) {
40
+ return cache.get(obj);
41
+ }
42
+ var newObj = {};
43
+ var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
44
+ for(var key in obj){
45
+ if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
46
+ var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
47
+ if (desc && (desc.get || desc.set)) {
48
+ Object.defineProperty(newObj, key, desc);
49
+ } else {
50
+ newObj[key] = obj[key];
51
+ }
52
+ }
53
+ }
54
+ newObj.default = obj;
55
+ if (cache) {
56
+ cache.set(obj, newObj);
57
+ }
58
+ return newObj;
59
+ }
60
+ const style = (0, _emotion.css)`
61
+ border: 1px solid ${_f36tokens.default.gray400};
62
+ border-collapse: collapse;
63
+ padding: 10px 12px;
64
+ min-width: 48px;
65
+ position: relative;
66
+ vertical-align: top;
67
+
68
+ div:last-child {
69
+ margin-bottom: 0;
70
+ }
71
+ `;
72
+ const Cell = (props)=>{
73
+ const isSelected = (0, _slatereact.useSelected)();
74
+ return _react.createElement("td", {
75
+ ...props.attributes,
76
+ ...props.element.data,
77
+ className: style
78
+ }, isSelected && _react.createElement(_TableActions.TableActions, null), props.children);
79
+ };
@@ -0,0 +1,82 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "HeaderCell", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return HeaderCell;
9
+ }
10
+ });
11
+ const _react = _interop_require_wildcard(require("react"));
12
+ const _f36tokens = _interop_require_default(require("@contentful/f36-tokens"));
13
+ const _emotion = require("emotion");
14
+ const _slatereact = require("slate-react");
15
+ const _TableActions = require("./TableActions");
16
+ function _interop_require_default(obj) {
17
+ return obj && obj.__esModule ? obj : {
18
+ default: obj
19
+ };
20
+ }
21
+ function _getRequireWildcardCache(nodeInterop) {
22
+ if (typeof WeakMap !== "function") return null;
23
+ var cacheBabelInterop = new WeakMap();
24
+ var cacheNodeInterop = new WeakMap();
25
+ return (_getRequireWildcardCache = function(nodeInterop) {
26
+ return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
27
+ })(nodeInterop);
28
+ }
29
+ function _interop_require_wildcard(obj, nodeInterop) {
30
+ if (!nodeInterop && obj && obj.__esModule) {
31
+ return obj;
32
+ }
33
+ if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
34
+ return {
35
+ default: obj
36
+ };
37
+ }
38
+ var cache = _getRequireWildcardCache(nodeInterop);
39
+ if (cache && cache.has(obj)) {
40
+ return cache.get(obj);
41
+ }
42
+ var newObj = {};
43
+ var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
44
+ for(var key in obj){
45
+ if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
46
+ var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
47
+ if (desc && (desc.get || desc.set)) {
48
+ Object.defineProperty(newObj, key, desc);
49
+ } else {
50
+ newObj[key] = obj[key];
51
+ }
52
+ }
53
+ }
54
+ newObj.default = obj;
55
+ if (cache) {
56
+ cache.set(obj, newObj);
57
+ }
58
+ return newObj;
59
+ }
60
+ const style = (0, _emotion.css)`
61
+ background-clip: padding-box;
62
+ background-color: ${_f36tokens.default.gray200};
63
+ border: 1px solid ${_f36tokens.default.gray400};
64
+ border-collapse: collapse;
65
+ padding: 10px 12px;
66
+ font-weight: ${_f36tokens.default.fontWeightNormal};
67
+ text-align: left;
68
+ min-width: 48px;
69
+ position: relative;
70
+
71
+ div:last-child {
72
+ margin-bottom: 0;
73
+ }
74
+ `;
75
+ const HeaderCell = (props)=>{
76
+ const isSelected = (0, _slatereact.useSelected)();
77
+ return _react.createElement("th", {
78
+ ...props.attributes,
79
+ ...props.element.data,
80
+ className: style
81
+ }, isSelected && _react.createElement(_TableActions.TableActions, null), props.children);
82
+ };
@@ -0,0 +1,69 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", {
3
+ value: true
4
+ });
5
+ Object.defineProperty(exports, "Row", {
6
+ enumerable: true,
7
+ get: function() {
8
+ return Row;
9
+ }
10
+ });
11
+ const _react = _interop_require_wildcard(require("react"));
12
+ const _f36tokens = _interop_require_default(require("@contentful/f36-tokens"));
13
+ const _emotion = require("emotion");
14
+ function _interop_require_default(obj) {
15
+ return obj && obj.__esModule ? obj : {
16
+ default: obj
17
+ };
18
+ }
19
+ function _getRequireWildcardCache(nodeInterop) {
20
+ if (typeof WeakMap !== "function") return null;
21
+ var cacheBabelInterop = new WeakMap();
22
+ var cacheNodeInterop = new WeakMap();
23
+ return (_getRequireWildcardCache = function(nodeInterop) {
24
+ return nodeInterop ? cacheNodeInterop : cacheBabelInterop;
25
+ })(nodeInterop);
26
+ }
27
+ function _interop_require_wildcard(obj, nodeInterop) {
28
+ if (!nodeInterop && obj && obj.__esModule) {
29
+ return obj;
30
+ }
31
+ if (obj === null || typeof obj !== "object" && typeof obj !== "function") {
32
+ return {
33
+ default: obj
34
+ };
35
+ }
36
+ var cache = _getRequireWildcardCache(nodeInterop);
37
+ if (cache && cache.has(obj)) {
38
+ return cache.get(obj);
39
+ }
40
+ var newObj = {};
41
+ var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor;
42
+ for(var key in obj){
43
+ if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) {
44
+ var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null;
45
+ if (desc && (desc.get || desc.set)) {
46
+ Object.defineProperty(newObj, key, desc);
47
+ } else {
48
+ newObj[key] = obj[key];
49
+ }
50
+ }
51
+ }
52
+ newObj.default = obj;
53
+ if (cache) {
54
+ cache.set(obj, newObj);
55
+ }
56
+ return newObj;
57
+ }
58
+ const style = (0, _emotion.css)`
59
+ border: 1px solid ${_f36tokens.default.gray400};
60
+ border-collapse: collapse;
61
+
62
+ &:hover td {
63
+ background-color: transparent !important;
64
+ }
65
+ `;
66
+ const Row = (props)=>_react.createElement("tr", {
67
+ ...props.attributes,
68
+ className: style
69
+ }, props.children);