@contentful/field-editor-rich-text 3.0.0-next.0 → 3.0.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 (172) hide show
  1. package/CHANGELOG.md +690 -0
  2. package/LICENSE +21 -0
  3. package/README.md +25 -3
  4. package/dist/ContentfulEditorProvider.d.ts +6 -5
  5. package/dist/RichTextEditor.d.ts +2 -3
  6. package/dist/SdkProvider.d.ts +1 -1
  7. package/dist/Toolbar/{EmbedEntityWidget.d.ts → components/EmbedEntityWidget.d.ts} +1 -2
  8. package/dist/{plugins/EmbeddedEntity/index.d.ts → Toolbar/components/EmbeddedEntityDropdownButton.d.ts} +1 -2
  9. package/dist/Toolbar/{StickyToolbarWrapper.d.ts → components/StickyToolbarWrapper.d.ts} +0 -0
  10. package/dist/Toolbar/index.d.ts +0 -1
  11. package/dist/dialogs/HypelinkDialog/HyperlinkDialog.d.ts +3 -3
  12. package/dist/dialogs/renderRichTextDialog.d.ts +0 -1
  13. package/dist/field-editor-rich-text.cjs.development.js +6503 -4337
  14. package/dist/field-editor-rich-text.cjs.development.js.map +1 -1
  15. package/dist/field-editor-rich-text.cjs.production.min.js +1 -1
  16. package/dist/field-editor-rich-text.cjs.production.min.js.map +1 -1
  17. package/dist/field-editor-rich-text.esm.js +6485 -4319
  18. package/dist/field-editor-rich-text.esm.js.map +1 -1
  19. package/dist/helpers/editor.d.ts +21 -23
  20. package/dist/helpers/environment.d.ts +2 -1
  21. package/dist/helpers/extractNodes.d.ts +6 -0
  22. package/dist/helpers/removeInternalMarks.d.ts +1 -0
  23. package/dist/helpers/sanitizeIncomingSlateDoc.d.ts +6 -0
  24. package/dist/helpers/transformers.d.ts +8 -0
  25. package/dist/helpers/validations.d.ts +1 -1
  26. package/dist/plugins/Break/createExitBreakPlugin.d.ts +2 -0
  27. package/dist/plugins/Break/createResetNodePlugin.d.ts +2 -0
  28. package/dist/plugins/Break/createSoftBreakPlugin.d.ts +2 -0
  29. package/dist/plugins/Break/index.d.ts +5 -0
  30. package/dist/plugins/CommandPalette/components/CommandList.d.ts +7 -0
  31. package/dist/plugins/CommandPalette/components/CommandList.styles.d.ts +13 -0
  32. package/dist/plugins/CommandPalette/components/CommandPrompt.d.ts +2 -0
  33. package/dist/plugins/CommandPalette/constants.d.ts +1 -0
  34. package/dist/plugins/CommandPalette/createCommandPalettePlugin.d.ts +13 -0
  35. package/dist/plugins/CommandPalette/hooks/useCommandList.d.ts +4 -0
  36. package/dist/plugins/CommandPalette/index.d.ts +1 -0
  37. package/dist/plugins/CommandPalette/onKeyDown.d.ts +3 -0
  38. package/dist/plugins/CommandPalette/useCommands.d.ts +14 -0
  39. package/dist/plugins/CommandPalette/utils/createInlineEntryNode.d.ts +16 -0
  40. package/dist/plugins/CommandPalette/utils/fetchAssets.d.ts +8 -0
  41. package/dist/plugins/CommandPalette/utils/fetchEntries.d.ts +9 -0
  42. package/dist/plugins/CommandPalette/utils/insertBlock.d.ts +1 -0
  43. package/dist/plugins/CommandPalette/utils/trimLeadingSlash.d.ts +7 -0
  44. package/dist/plugins/DragAndDrop/index.d.ts +2 -2
  45. package/dist/plugins/EmbeddedEntityBlock/LinkedEntityBlock.d.ts +3 -2
  46. package/dist/plugins/EmbeddedEntityBlock/ToolbarIcon.d.ts +1 -4
  47. package/dist/plugins/EmbeddedEntityBlock/Util.d.ts +2 -1
  48. package/dist/plugins/EmbeddedEntityBlock/index.d.ts +3 -9
  49. package/dist/plugins/EmbeddedEntityInline/FetchingWrappedInlineEntryCard.d.ts +1 -0
  50. package/dist/plugins/EmbeddedEntityInline/index.d.ts +3 -6
  51. package/dist/plugins/Heading/components/Heading.d.ts +10 -0
  52. package/dist/plugins/Heading/components/ToolbarHeadingButton.d.ts +4 -0
  53. package/dist/plugins/Heading/createHeadingPlugin.d.ts +2 -0
  54. package/dist/plugins/Heading/index.d.ts +2 -20
  55. package/dist/plugins/Hr/index.d.ts +3 -5
  56. package/dist/plugins/Hyperlink/HyperlinkModal.d.ts +6 -6
  57. package/dist/plugins/Hyperlink/components/EntityHyperlink.d.ts +9 -0
  58. package/dist/plugins/Hyperlink/components/ToolbarHyperlinkButton.d.ts +5 -0
  59. package/dist/plugins/Hyperlink/components/UrlHyperlink.d.ts +9 -0
  60. package/dist/plugins/Hyperlink/components/styles.d.ts +4 -0
  61. package/dist/plugins/Hyperlink/createHyperlinkPlugin.d.ts +3 -0
  62. package/dist/plugins/Hyperlink/index.d.ts +2 -12
  63. package/dist/plugins/Hyperlink/useEntityInfo.d.ts +16 -0
  64. package/dist/plugins/Hyperlink/utils.d.ts +5 -0
  65. package/dist/plugins/List/components/List.d.ts +3 -0
  66. package/dist/plugins/List/components/ListItem.d.ts +2 -0
  67. package/dist/plugins/List/components/ToolbarListButton.d.ts +4 -0
  68. package/dist/plugins/List/createListPlugin.d.ts +2 -0
  69. package/dist/plugins/List/index.d.ts +2 -15
  70. package/dist/plugins/List/insertListBreak.d.ts +2 -0
  71. package/dist/plugins/List/insertListFragment.d.ts +3 -0
  72. package/dist/plugins/List/onKeyDownList.d.ts +7 -0
  73. package/dist/plugins/List/transforms/deleteBackwardList.d.ts +2 -0
  74. package/dist/plugins/List/transforms/insertListItem.d.ts +5 -0
  75. package/dist/plugins/List/transforms/moveListItemDown.d.ts +11 -0
  76. package/dist/plugins/List/transforms/moveListItems.d.ts +10 -0
  77. package/dist/plugins/List/transforms/toggleList.d.ts +4 -0
  78. package/dist/plugins/List/transforms/unwrapList.d.ts +5 -0
  79. package/dist/plugins/List/utils.d.ts +15 -0
  80. package/dist/plugins/List/withList.d.ts +4 -0
  81. package/dist/plugins/Marks/Bold.d.ts +11 -0
  82. package/dist/plugins/Marks/Code.d.ts +11 -0
  83. package/dist/plugins/Marks/Italic.d.ts +11 -0
  84. package/dist/plugins/Marks/Underline.d.ts +11 -0
  85. package/dist/plugins/Marks/components/MarkToolbarButton.d.ts +13 -0
  86. package/dist/plugins/Marks/helpers.d.ts +4 -0
  87. package/dist/plugins/Marks/index.d.ts +2 -0
  88. package/dist/plugins/Normalizer/baseRules.d.ts +2 -0
  89. package/dist/plugins/Normalizer/createNormalizerPlugin.d.ts +2 -0
  90. package/dist/plugins/Normalizer/index.d.ts +2 -0
  91. package/dist/plugins/Normalizer/types.d.ts +40 -0
  92. package/dist/plugins/Normalizer/utils.d.ts +8 -0
  93. package/dist/plugins/Normalizer/withNormalizer.d.ts +2 -0
  94. package/dist/plugins/Paragraph/Paragraph.d.ts +2 -0
  95. package/dist/plugins/Paragraph/createParagraphPlugin.d.ts +2 -0
  96. package/dist/plugins/Paragraph/index.d.ts +1 -7
  97. package/dist/plugins/Paragraph/utils.d.ts +2 -0
  98. package/dist/plugins/PasteHTML/createPasteHTMLPlugin.d.ts +8 -0
  99. package/dist/plugins/PasteHTML/index.d.ts +1 -0
  100. package/dist/plugins/PasteHTML/utils/sanitizeHTML.d.ts +1 -0
  101. package/dist/plugins/PasteHTML/utils/sanitizeSheets.d.ts +4 -0
  102. package/dist/plugins/Quote/components/Quote.d.ts +2 -0
  103. package/dist/plugins/Quote/components/ToolbarQuoteButton.d.ts +4 -0
  104. package/dist/plugins/Quote/createQuotePlugin.d.ts +2 -0
  105. package/dist/plugins/Quote/index.d.ts +2 -13
  106. package/dist/plugins/Quote/shouldResetQuote.d.ts +8 -0
  107. package/dist/plugins/Quote/toggleQuote.d.ts +5 -0
  108. package/dist/plugins/Quote/withQuote.d.ts +3 -0
  109. package/dist/plugins/SelectOnBackspace/createSelectOnBackspacePlugin.d.ts +2 -0
  110. package/dist/plugins/SelectOnBackspace/index.d.ts +1 -0
  111. package/dist/plugins/Table/actions/addColumn.d.ts +3 -3
  112. package/dist/plugins/Table/actions/addRow.d.ts +3 -3
  113. package/dist/plugins/Table/actions/setHeader.d.ts +2 -2
  114. package/dist/plugins/Table/components/Cell.d.ts +2 -0
  115. package/dist/plugins/Table/components/HeaderCell.d.ts +2 -0
  116. package/dist/plugins/Table/components/Row.d.ts +2 -0
  117. package/dist/plugins/Table/components/Table.d.ts +2 -0
  118. package/dist/plugins/Table/components/TableActions.d.ts +4 -0
  119. package/dist/plugins/Table/components/ToolbarButton.d.ts +4 -0
  120. package/dist/plugins/Table/createTablePlugin.d.ts +2 -0
  121. package/dist/plugins/Table/helpers.d.ts +16 -4
  122. package/dist/plugins/Table/index.d.ts +2 -189
  123. package/dist/plugins/Table/insertTableFragment.d.ts +3 -0
  124. package/dist/plugins/Table/onKeyDownTable.d.ts +3 -0
  125. package/dist/plugins/Table/tableTracking.d.ts +4 -0
  126. package/dist/plugins/Text/createTextPlugin.d.ts +2 -0
  127. package/dist/plugins/Text/index.d.ts +1 -0
  128. package/dist/plugins/Tracking/createTrackingPlugin.d.ts +11 -0
  129. package/dist/plugins/Tracking/index.d.ts +1 -0
  130. package/dist/plugins/Tracking/utils.d.ts +2 -0
  131. package/dist/plugins/TrailingParagraph/index.d.ts +2 -1
  132. package/dist/plugins/Voids/createVoidsPlugin.d.ts +2 -0
  133. package/dist/plugins/Voids/index.d.ts +1 -0
  134. package/dist/plugins/Voids/transformVoid.d.ts +6 -0
  135. package/dist/plugins/index.d.ts +6 -0
  136. package/dist/plugins/links-tracking.d.ts +6 -0
  137. package/dist/plugins/shared/FetchingWrappedAssetCard.d.ts +1 -11
  138. package/dist/plugins/shared/FetchingWrappedEntryCard.d.ts +4 -4
  139. package/dist/plugins/shared/ToolbarButton.d.ts +0 -1
  140. package/dist/prepareDocument.d.ts +20 -0
  141. package/dist/test-utils/assertOutput.d.ts +7 -0
  142. package/dist/test-utils/createEditor.d.ts +13 -0
  143. package/dist/test-utils/index.d.ts +4 -0
  144. package/dist/test-utils/jsx.d.ts +28 -0
  145. package/dist/test-utils/mockPlugin.d.ts +2 -0
  146. package/dist/test-utils/randomId.d.ts +4 -0
  147. package/dist/test-utils/setEmptyDataAttribute.d.ts +6 -0
  148. package/dist/test-utils/validation.d.ts +1 -0
  149. package/dist/types.d.ts +34 -9
  150. package/dist/useOnValueChanged.d.ts +8 -0
  151. package/package.json +34 -29
  152. package/dist/TrackingProvider.d.ts +0 -11
  153. package/dist/helpers/deserializer.d.ts +0 -3
  154. package/dist/helpers/sanitizeSlateDoc.d.ts +0 -18
  155. package/dist/helpers/truncate.d.ts +0 -1
  156. package/dist/plugins/Bold/index.d.ts +0 -12
  157. package/dist/plugins/Code/index.d.ts +0 -12
  158. package/dist/plugins/CommandPalette/CommandPanel/InViewport/InViewport.d.ts +0 -37
  159. package/dist/plugins/Hyperlink/EntryAssetTooltip.d.ts +0 -10
  160. package/dist/plugins/InsertBeforeFirstVoidBlock/index.d.ts +0 -2
  161. package/dist/plugins/Italic/index.d.ts +0 -12
  162. package/dist/plugins/List/getListInsertFragment.d.ts +0 -6
  163. package/dist/plugins/NewLine/index.d.ts +0 -2
  164. package/dist/plugins/Paste/index.d.ts +0 -2
  165. package/dist/plugins/Paste/sanitizers/helpers.d.ts +0 -7
  166. package/dist/plugins/Paste/sanitizers/index.d.ts +0 -3
  167. package/dist/plugins/Paste/sanitizers/removeComments.d.ts +0 -2
  168. package/dist/plugins/Paste/sanitizers/sanitizeEntityBlocks.d.ts +0 -6
  169. package/dist/plugins/Paste/sanitizers/sanitizeTables.d.ts +0 -2
  170. package/dist/plugins/Table/TableActions.d.ts +0 -5
  171. package/dist/plugins/Underline/index.d.ts +0 -12
  172. package/dist/plugins/shared/EntityStatusIcon.d.ts +0 -8
package/CHANGELOG.md ADDED
@@ -0,0 +1,690 @@
1
+ # Change Log
2
+
3
+ All notable changes to this project will be documented in this file.
4
+ See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
+
6
+ # [3.0.0](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.20...@contentful/field-editor-rich-text@3.0.0) (2022-08-18)
7
+
8
+ ### Features
9
+
10
+ - moving new entity store in [TOL-282] ([#1214](https://github.com/contentful/field-editors/issues/1214)) ([2ad4f64](https://github.com/contentful/field-editors/commit/2ad4f643296dbf48802410382a9a055de18a15de))
11
+
12
+ ### BREAKING CHANGES
13
+
14
+ - useEntities is no longer export from the reference editor package. Use useEntity or useEntityLoader instead
15
+
16
+ Co-authored-by: Ahmed T. Ali <ah.tajelsir@gmail.com>
17
+
18
+ ## [2.3.20](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.19...@contentful/field-editor-rich-text@2.3.20) (2022-08-10)
19
+
20
+ ### Bug Fixes
21
+
22
+ - rollback change of deps in useFetchedEntity ([#1213](https://github.com/contentful/field-editors/issues/1213)) ([c12e6ea](https://github.com/contentful/field-editors/commit/c12e6eae473e340b1065bb296c093e5aea6e0adc))
23
+
24
+ ## [2.3.19](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.18...@contentful/field-editor-rich-text@2.3.19) (2022-08-10)
25
+
26
+ ### Bug Fixes
27
+
28
+ - update hooks deps in useFetchedEntity [TOL-339] ([#1212](https://github.com/contentful/field-editors/issues/1212)) ([02ae9be](https://github.com/contentful/field-editors/commit/02ae9be167bea5876d52db27a4363a69bdfc6209))
29
+
30
+ ## [2.3.18](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.17...@contentful/field-editor-rich-text@2.3.18) (2022-08-10)
31
+
32
+ ### Bug Fixes
33
+
34
+ - check store in entity fetch ([#1211](https://github.com/contentful/field-editors/issues/1211)) ([3ddc0b2](https://github.com/contentful/field-editors/commit/3ddc0b2d3ffc2e2146cb8f0ee07d540cb875b717))
35
+
36
+ ## [2.3.17](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.16...@contentful/field-editor-rich-text@2.3.17) (2022-08-09)
37
+
38
+ ### Bug Fixes
39
+
40
+ - version compare webapp ([#1210](https://github.com/contentful/field-editors/issues/1210)) ([bbe0882](https://github.com/contentful/field-editors/commit/bbe0882f15d771dc713c688f8ba4df0be8c13102))
41
+
42
+ ## [2.3.16](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.15...@contentful/field-editor-rich-text@2.3.16) (2022-08-09)
43
+
44
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
45
+
46
+ ## [2.3.15](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.14...@contentful/field-editor-rich-text@2.3.15) (2022-08-09)
47
+
48
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
49
+
50
+ ## [2.3.14](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.13...@contentful/field-editor-rich-text@2.3.14) (2022-08-08)
51
+
52
+ ### Bug Fixes
53
+
54
+ - **rich-text:** handle accessing undefined store value [TOL-339] ([#1208](https://github.com/contentful/field-editors/issues/1208)) ([c536e72](https://github.com/contentful/field-editors/commit/c536e72a0d997eb83017a23acfecefbeeb090d3e))
55
+
56
+ ## [2.3.13](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.12...@contentful/field-editor-rich-text@2.3.13) (2022-07-29)
57
+
58
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
59
+
60
+ ## [2.3.12](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.11...@contentful/field-editor-rich-text@2.3.12) (2022-07-29)
61
+
62
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
63
+
64
+ ## [2.3.11](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.10...@contentful/field-editor-rich-text@2.3.11) (2022-07-22)
65
+
66
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
67
+
68
+ ## [2.3.10](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.9...@contentful/field-editor-rich-text@2.3.10) (2022-07-21)
69
+
70
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
71
+
72
+ ## [2.3.9](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.8...@contentful/field-editor-rich-text@2.3.9) (2022-07-21)
73
+
74
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
75
+
76
+ ## [2.3.8](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.7...@contentful/field-editor-rich-text@2.3.8) (2022-07-21)
77
+
78
+ ### Bug Fixes
79
+
80
+ - no embedded entries check rich text commands [TOL-273] ([#1192](https://github.com/contentful/field-editors/issues/1192)) ([c9983cf](https://github.com/contentful/field-editors/commit/c9983cf183ce95993b7cb1fb1a23728d373df736))
81
+
82
+ ## [2.3.7](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.6...@contentful/field-editor-rich-text@2.3.7) (2022-07-19)
83
+
84
+ ### Bug Fixes
85
+
86
+ - **rich-text:** avoid unnecessary render of reference cards ([#1189](https://github.com/contentful/field-editors/issues/1189)) ([b253014](https://github.com/contentful/field-editors/commit/b2530144857ea9b82259c6fbae02875f0692a62a))
87
+
88
+ ## [2.3.6](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.5...@contentful/field-editor-rich-text@2.3.6) (2022-07-19)
89
+
90
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
91
+
92
+ ## [2.3.5](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.4...@contentful/field-editor-rich-text@2.3.5) (2022-07-18)
93
+
94
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
95
+
96
+ ## [2.3.4](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.3...@contentful/field-editor-rich-text@2.3.4) (2022-07-18)
97
+
98
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
99
+
100
+ ## [2.3.3](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.2...@contentful/field-editor-rich-text@2.3.3) (2022-07-15)
101
+
102
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
103
+
104
+ ## [2.3.2](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.1...@contentful/field-editor-rich-text@2.3.2) (2022-07-15)
105
+
106
+ ### Bug Fixes
107
+
108
+ - fix commands not working properly inside headings ([#1185](https://github.com/contentful/field-editors/issues/1185)) ([f792622](https://github.com/contentful/field-editors/commit/f7926223ca18e3bdf8626885546198940dd474a8))
109
+
110
+ ## [2.3.1](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.3.0...@contentful/field-editor-rich-text@2.3.1) (2022-07-12)
111
+
112
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
113
+
114
+ # [2.3.0](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.2.1...@contentful/field-editor-rich-text@2.3.0) (2022-07-11)
115
+
116
+ ### Features
117
+
118
+ - add simple fetching for resources ([#1179](https://github.com/contentful/field-editors/issues/1179)) ([b29daac](https://github.com/contentful/field-editors/commit/b29daac6460f93a4350bf45f90ae938f65de96ee))
119
+
120
+ ## [2.2.1](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.2.0...@contentful/field-editor-rich-text@2.2.1) (2022-07-06)
121
+
122
+ ### Bug Fixes
123
+
124
+ - add validations to rt-command embedding, allow table embedding, improve click handling ([#1178](https://github.com/contentful/field-editors/issues/1178)) ([83704a6](https://github.com/contentful/field-editors/commit/83704a6d234ceba8850ba5be5a085bfeb1b3a293))
125
+
126
+ # [2.2.0](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.1.3...@contentful/field-editor-rich-text@2.2.0) (2022-07-06)
127
+
128
+ ### Features
129
+
130
+ - add tracking for rich-text-commands ([#1174](https://github.com/contentful/field-editors/issues/1174)) ([75fc492](https://github.com/contentful/field-editors/commit/75fc49210a5789bf029ddb81413349d74f441f28))
131
+
132
+ ## [2.1.3](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.1.2...@contentful/field-editor-rich-text@2.1.3) (2022-07-06)
133
+
134
+ ### Bug Fixes
135
+
136
+ - rt-commands palette closes on click outside ([#1175](https://github.com/contentful/field-editors/issues/1175)) ([b9dd434](https://github.com/contentful/field-editors/commit/b9dd43497a874b35318230074d7de411012c7eee))
137
+
138
+ ## [2.1.2](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.1.1...@contentful/field-editor-rich-text@2.1.2) (2022-07-06)
139
+
140
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
141
+
142
+ ## [2.1.1](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.1.0...@contentful/field-editor-rich-text@2.1.1) (2022-07-05)
143
+
144
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
145
+
146
+ # [2.1.0](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.0.4...@contentful/field-editor-rich-text@2.1.0) (2022-07-01)
147
+
148
+ ### Features
149
+
150
+ - rich text commands [TOL-109] ([#1169](https://github.com/contentful/field-editors/issues/1169)) ([b533f7f](https://github.com/contentful/field-editors/commit/b533f7f7f55d6a39429c0727577617b62793c0aa))
151
+
152
+ ## [2.0.4](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.0.3...@contentful/field-editor-rich-text@2.0.4) (2022-06-30)
153
+
154
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
155
+
156
+ ## [2.0.3](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.0.2...@contentful/field-editor-rich-text@2.0.3) (2022-06-22)
157
+
158
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
159
+
160
+ ## [2.0.2](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@2.0.1...@contentful/field-editor-rich-text@2.0.2) (2022-06-22)
161
+
162
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
163
+
164
+ ## [2.0.1](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.17...@contentful/field-editor-rich-text@2.0.1) (2022-06-21)
165
+
166
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
167
+
168
+ ## [1.1.17](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.16...@contentful/field-editor-rich-text@1.1.17) (2022-06-15)
169
+
170
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
171
+
172
+ ## [1.1.16](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.15...@contentful/field-editor-rich-text@1.1.16) (2022-06-07)
173
+
174
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
175
+
176
+ ## [1.1.15](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.14...@contentful/field-editor-rich-text@1.1.15) (2022-05-24)
177
+
178
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
179
+
180
+ ## [1.1.14](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.13...@contentful/field-editor-rich-text@1.1.14) (2022-05-09)
181
+
182
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
183
+
184
+ ## [1.1.13](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.12...@contentful/field-editor-rich-text@1.1.13) (2022-05-06)
185
+
186
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
187
+
188
+ ## [1.1.12](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.11...@contentful/field-editor-rich-text@1.1.12) (2022-05-04)
189
+
190
+ ### Bug Fixes
191
+
192
+ - reflect disabled state on fields ([#1125](https://github.com/contentful/field-editors/issues/1125)) ([01502b9](https://github.com/contentful/field-editors/commit/01502b9d785c5f782b0e5de782d092c439cb690f))
193
+
194
+ ## [1.1.11](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.10...@contentful/field-editor-rich-text@1.1.11) (2022-05-03)
195
+
196
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
197
+
198
+ ## [1.1.10](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.9...@contentful/field-editor-rich-text@1.1.10) (2022-04-29)
199
+
200
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
201
+
202
+ ## [1.1.9](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.8...@contentful/field-editor-rich-text@1.1.9) (2022-04-28)
203
+
204
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
205
+
206
+ ## [1.1.8](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.7...@contentful/field-editor-rich-text@1.1.8) (2022-04-28)
207
+
208
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
209
+
210
+ ## [1.1.7](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.6...@contentful/field-editor-rich-text@1.1.7) (2022-04-19)
211
+
212
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
213
+
214
+ ## [1.1.6](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.5...@contentful/field-editor-rich-text@1.1.6) (2022-03-31)
215
+
216
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
217
+
218
+ ## [1.1.5](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.4...@contentful/field-editor-rich-text@1.1.5) (2022-03-29)
219
+
220
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
221
+
222
+ ## [1.1.4](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.3...@contentful/field-editor-rich-text@1.1.4) (2022-03-02)
223
+
224
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
225
+
226
+ ## [1.1.3](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.2...@contentful/field-editor-rich-text@1.1.3) (2022-02-15)
227
+
228
+ ### Bug Fixes
229
+
230
+ - bump f36 packages ([#1025](https://github.com/contentful/field-editors/issues/1025)) ([ec37a40](https://github.com/contentful/field-editors/commit/ec37a4000db7cd75c66dd9621136b2272c9feeea))
231
+
232
+ ## [1.1.2](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.1...@contentful/field-editor-rich-text@1.1.2) (2022-02-14)
233
+
234
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
235
+
236
+ ## [1.1.1](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.1.0...@contentful/field-editor-rich-text@1.1.1) (2022-01-20)
237
+
238
+ ### Bug Fixes
239
+
240
+ - remove empty text hyperlinks ([#997](https://github.com/contentful/field-editors/issues/997)) ([d998132](https://github.com/contentful/field-editors/commit/d998132fbe948a98f6e800211a794bdd1e292233))
241
+
242
+ # [1.1.0](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.0.8...@contentful/field-editor-rich-text@1.1.0) (2022-01-11)
243
+
244
+ ### Features
245
+
246
+ - bump f36 packages to stable v4 [BAU-521] ([#988](https://github.com/contentful/field-editors/issues/988)) ([419cf56](https://github.com/contentful/field-editors/commit/419cf56692179b074fcfa2743469d5265ed98429))
247
+
248
+ ## [1.0.8](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.0.7...@contentful/field-editor-rich-text@1.0.8) (2021-12-23)
249
+
250
+ ### Bug Fixes
251
+
252
+ - markdown buttons ([#968](https://github.com/contentful/field-editors/issues/968)) ([9803b98](https://github.com/contentful/field-editors/commit/9803b98c25d92df6148686ffe2749a77f7efdbb9))
253
+
254
+ ## [1.0.7](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.0.6...@contentful/field-editor-rich-text@1.0.7) (2021-12-22)
255
+
256
+ ### Bug Fixes
257
+
258
+ - cache content types for Hyperlink ([#967](https://github.com/contentful/field-editors/issues/967)) ([07e376d](https://github.com/contentful/field-editors/commit/07e376de5157fa6477f060550aacf96af3ab5e85))
259
+
260
+ ## [1.0.6](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.0.5...@contentful/field-editor-rich-text@1.0.6) (2021-12-20)
261
+
262
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
263
+
264
+ ## [1.0.5](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.0.4...@contentful/field-editor-rich-text@1.0.5) (2021-11-27)
265
+
266
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
267
+
268
+ ## [1.0.4](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.0.3...@contentful/field-editor-rich-text@1.0.4) (2021-11-26)
269
+
270
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
271
+
272
+ ## [1.0.3](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.0.2...@contentful/field-editor-rich-text@1.0.3) (2021-11-17)
273
+
274
+ ### Bug Fixes
275
+
276
+ - **card-actions:** update forma 36 to fix card actions click issue ([#927](https://github.com/contentful/field-editors/issues/927)) ([3dfdef2](https://github.com/contentful/field-editors/commit/3dfdef2c2b0045f12ea94ddafca89a8e9f25e7d0))
277
+
278
+ ## [1.0.2](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.0.1...@contentful/field-editor-rich-text@1.0.2) (2021-11-08)
279
+
280
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
281
+
282
+ ## [1.0.1](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@1.0.0...@contentful/field-editor-rich-text@1.0.1) (2021-11-08)
283
+
284
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
285
+
286
+ # [1.0.0](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.20.0...@contentful/field-editor-rich-text@1.0.0) (2021-11-04)
287
+
288
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
289
+
290
+ # [0.20.0](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.20...@contentful/field-editor-rich-text@0.20.0) (2021-11-04)
291
+
292
+ ### Features
293
+
294
+ - Forma v4 components adoption ([#805](https://github.com/contentful/field-editors/issues/805)) ([526bde6](https://github.com/contentful/field-editors/commit/526bde6e10e0ee3789705ec10fb31489af7ca59e))
295
+
296
+ ### BREAKING CHANGES
297
+
298
+ - adopts a new Forma v4 beta
299
+
300
+ ## [0.19.20](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.19...@contentful/field-editor-rich-text@0.19.20) (2021-11-01)
301
+
302
+ ### Bug Fixes
303
+
304
+ - **rich-text-editor:** specify font-family ([#907](https://github.com/contentful/field-editors/issues/907)) ([33dee3d](https://github.com/contentful/field-editors/commit/33dee3d6dbec66c7538cad2133d41692bd7839ca))
305
+
306
+ ## [0.19.19](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.18...@contentful/field-editor-rich-text@0.19.19) (2021-10-18)
307
+
308
+ ### Bug Fixes
309
+
310
+ - [] Remove test utils from peer dependencies ([#889](https://github.com/contentful/field-editors/issues/889)) ([3694bd7](https://github.com/contentful/field-editors/commit/3694bd7e706b8beb1f685167125f36ef0cbe82de))
311
+
312
+ ## [0.19.18](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.17...@contentful/field-editor-rich-text@0.19.18) (2021-10-14)
313
+
314
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
315
+
316
+ ## [0.19.17](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.16...@contentful/field-editor-rich-text@0.19.17) (2021-10-06)
317
+
318
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
319
+
320
+ ## [0.19.16](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.15...@contentful/field-editor-rich-text@0.19.16) (2021-10-06)
321
+
322
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
323
+
324
+ ## [0.19.15](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.14...@contentful/field-editor-rich-text@0.19.15) (2021-09-20)
325
+
326
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
327
+
328
+ ## [0.19.14](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.13...@contentful/field-editor-rich-text@0.19.14) (2021-09-17)
329
+
330
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
331
+
332
+ ## [0.19.13](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.12...@contentful/field-editor-rich-text@0.19.13) (2021-09-17)
333
+
334
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
335
+
336
+ ## [0.19.12](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.11...@contentful/field-editor-rich-text@0.19.12) (2021-09-16)
337
+
338
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
339
+
340
+ ## [0.19.11](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.9...@contentful/field-editor-rich-text@0.19.11) (2021-08-24)
341
+
342
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
343
+
344
+ ## [0.19.9](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.8...@contentful/field-editor-rich-text@0.19.9) (2021-08-19)
345
+
346
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
347
+
348
+ ## [0.19.8](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.7...@contentful/field-editor-rich-text@0.19.8) (2021-08-06)
349
+
350
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
351
+
352
+ ## [0.19.7](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.6...@contentful/field-editor-rich-text@0.19.7) (2021-08-04)
353
+
354
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
355
+
356
+ ## [0.19.6](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.5...@contentful/field-editor-rich-text@0.19.6) (2021-07-30)
357
+
358
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
359
+
360
+ ## [0.19.5](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.4...@contentful/field-editor-rich-text@0.19.5) (2021-07-29)
361
+
362
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
363
+
364
+ ## [0.19.4](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.3...@contentful/field-editor-rich-text@0.19.4) (2021-07-28)
365
+
366
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
367
+
368
+ ## [0.19.3](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.2...@contentful/field-editor-rich-text@0.19.3) (2021-07-28)
369
+
370
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
371
+
372
+ ## [0.19.2](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.19.0...@contentful/field-editor-rich-text@0.19.2) (2021-07-26)
373
+
374
+ ### Bug Fixes
375
+
376
+ - adjust rich-text version manually ([#781](https://github.com/contentful/field-editors/issues/781)) ([f770e4f](https://github.com/contentful/field-editors/commit/f770e4f731f1ebec0ac64881c8c60015709fa26d))
377
+
378
+ # [0.19.0](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.18.16...@contentful/field-editor-rich-text@0.19.0) (2021-07-23)
379
+
380
+ ### Features
381
+
382
+ - 💡 new color tokens ([#778](https://github.com/contentful/field-editors/issues/778)) ([fba548d](https://github.com/contentful/field-editors/commit/fba548de32305016df7f2685634eefb14294828f))
383
+
384
+ ## [0.18.16](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.18.13...@contentful/field-editor-rich-text@0.18.16) (2021-07-06)
385
+
386
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
387
+
388
+ ## [0.18.15](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.18.13...@contentful/field-editor-rich-text@0.18.15) (2021-07-06)
389
+
390
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
391
+
392
+ ## [0.18.14](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.18.13...@contentful/field-editor-rich-text@0.18.14) (2021-06-23)
393
+
394
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
395
+
396
+ ## [0.18.13](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.18.12...@contentful/field-editor-rich-text@0.18.13) (2021-06-23)
397
+
398
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
399
+
400
+ ## [0.18.12](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.18.11...@contentful/field-editor-rich-text@0.18.12) (2021-06-22)
401
+
402
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
403
+
404
+ ## [0.18.11](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.18.10...@contentful/field-editor-rich-text@0.18.11) (2021-05-20)
405
+
406
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
407
+
408
+ ## [0.18.10](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.18.9...@contentful/field-editor-rich-text@0.18.10) (2021-04-13)
409
+
410
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
411
+
412
+ ## [0.18.9](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.18.8...@contentful/field-editor-rich-text@0.18.9) (2021-04-06)
413
+
414
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
415
+
416
+ ## [0.18.8](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.18.7...@contentful/field-editor-rich-text@0.18.8) (2021-03-29)
417
+
418
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
419
+
420
+ ## [0.18.7](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.18.6...@contentful/field-editor-rich-text@0.18.7) (2021-03-15)
421
+
422
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
423
+
424
+ ## [0.18.6](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.18.5...@contentful/field-editor-rich-text@0.18.6) (2021-03-12)
425
+
426
+ ### Bug Fixes
427
+
428
+ - 🐛 fetching in rich text and optimize scheduled actions ([#630](https://github.com/contentful/field-editors/issues/630)) ([d3ff315](https://github.com/contentful/field-editors/commit/d3ff315364bfd542361c9506f4692e4884687821))
429
+
430
+ ## [0.18.5](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.18.4...@contentful/field-editor-rich-text@0.18.5) (2021-03-12)
431
+
432
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
433
+
434
+ ## [0.18.4](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.18.3...@contentful/field-editor-rich-text@0.18.4) (2021-03-10)
435
+
436
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
437
+
438
+ ## [0.18.3](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.18.2...@contentful/field-editor-rich-text@0.18.3) (2021-03-05)
439
+
440
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
441
+
442
+ ## [0.18.2](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.18.1...@contentful/field-editor-rich-text@0.18.2) (2021-03-04)
443
+
444
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
445
+
446
+ ## [0.18.1](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.18.0...@contentful/field-editor-rich-text@0.18.1) (2021-03-02)
447
+
448
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
449
+
450
+ # [0.18.0](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.17.7...@contentful/field-editor-rich-text@0.18.0) (2021-02-19)
451
+
452
+ ### Features
453
+
454
+ - bump min version of forma-36 ([#606](https://github.com/contentful/field-editors/issues/606)) ([fd57c7a](https://github.com/contentful/field-editors/commit/fd57c7a4312766af38c01507f17706ab22992617))
455
+
456
+ ## [0.17.7](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.17.6...@contentful/field-editor-rich-text@0.17.7) (2021-02-16)
457
+
458
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
459
+
460
+ ## [0.17.6](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.17.5...@contentful/field-editor-rich-text@0.17.6) (2021-02-09)
461
+
462
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
463
+
464
+ ## [0.17.5](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.17.4...@contentful/field-editor-rich-text@0.17.5) (2021-02-08)
465
+
466
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
467
+
468
+ ## [0.17.4](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.17.3...@contentful/field-editor-rich-text@0.17.4) (2021-02-05)
469
+
470
+ ### Bug Fixes
471
+
472
+ - **rich-text:** command palette and embed dropdown icons ([#585](https://github.com/contentful/field-editors/issues/585)) ([7a1c301](https://github.com/contentful/field-editors/commit/7a1c301dca784700a35e98e23f85c92562d41081))
473
+
474
+ ## [0.17.3](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.17.2...@contentful/field-editor-rich-text@0.17.3) (2021-02-03)
475
+
476
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
477
+
478
+ ## [0.17.2](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.17.1...@contentful/field-editor-rich-text@0.17.2) (2021-02-01)
479
+
480
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
481
+
482
+ ## [0.17.1](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.17.0...@contentful/field-editor-rich-text@0.17.1) (2021-01-25)
483
+
484
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
485
+
486
+ # [0.17.0](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.16.3...@contentful/field-editor-rich-text@0.17.0) (2021-01-20)
487
+
488
+ ### Features
489
+
490
+ - update minimal forma-36 versions to use updated design ([#565](https://github.com/contentful/field-editors/issues/565)) ([332c734](https://github.com/contentful/field-editors/commit/332c734bfaf54f0e9773fcbb460d743b1f5459ec))
491
+
492
+ ## [0.16.3](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.16.2...@contentful/field-editor-rich-text@0.16.3) (2021-01-20)
493
+
494
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
495
+
496
+ ## [0.16.2](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.16.1...@contentful/field-editor-rich-text@0.16.2) (2021-01-13)
497
+
498
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
499
+
500
+ ## [0.16.1](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.16.0...@contentful/field-editor-rich-text@0.16.1) (2021-01-12)
501
+
502
+ ### Bug Fixes
503
+
504
+ - use forma tokens for border radiuses ([#553](https://github.com/contentful/field-editors/issues/553)) ([f4eb745](https://github.com/contentful/field-editors/commit/f4eb74568c7bc0cc25028542821ba64e50e226bd))
505
+
506
+ # [0.16.0](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.15.5...@contentful/field-editor-rich-text@0.16.0) (2021-01-12)
507
+
508
+ ### Features
509
+
510
+ - update minimal required Forma version to the 3.73.12 ([#552](https://github.com/contentful/field-editors/issues/552)) ([2816fd9](https://github.com/contentful/field-editors/commit/2816fd960c28815faebf49a9ef8f4c4c0d91fc36))
511
+
512
+ ## [0.15.5](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.15.4...@contentful/field-editor-rich-text@0.15.5) (2021-01-11)
513
+
514
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
515
+
516
+ ## [0.15.4](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.15.3...@contentful/field-editor-rich-text@0.15.4) (2020-12-23)
517
+
518
+ ### Bug Fixes
519
+
520
+ - use correct prop types ([#538](https://github.com/contentful/field-editors/issues/538)) ([f878a3a](https://github.com/contentful/field-editors/commit/f878a3a4f5c2d32455ac7932540d612a1c1a461a))
521
+
522
+ ## [0.15.3](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.15.2...@contentful/field-editor-rich-text@0.15.3) (2020-12-21)
523
+
524
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
525
+
526
+ ## [0.15.2](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.15.1...@contentful/field-editor-rich-text@0.15.2) (2020-12-16)
527
+
528
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
529
+
530
+ ## [0.15.1](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.15.0...@contentful/field-editor-rich-text@0.15.1) (2020-12-16)
531
+
532
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
533
+
534
+ # [0.15.0](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.39...@contentful/field-editor-rich-text@0.15.0) (2020-12-16)
535
+
536
+ ### Features
537
+
538
+ - minHeight props ([#529](https://github.com/contentful/field-editors/issues/529)) ([672e5d1](https://github.com/contentful/field-editors/commit/672e5d10356547ba99888dfeedc5ffd7b6e264cb))
539
+
540
+ ## [0.14.39](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.38...@contentful/field-editor-rich-text@0.14.39) (2020-12-10)
541
+
542
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
543
+
544
+ ## [0.14.38](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.37...@contentful/field-editor-rich-text@0.14.38) (2020-11-23)
545
+
546
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
547
+
548
+ ## [0.14.37](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.36...@contentful/field-editor-rich-text@0.14.37) (2020-11-23)
549
+
550
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
551
+
552
+ ## [0.14.36](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.35...@contentful/field-editor-rich-text@0.14.36) (2020-11-17)
553
+
554
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
555
+
556
+ ## [0.14.35](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.34...@contentful/field-editor-rich-text@0.14.35) (2020-11-17)
557
+
558
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
559
+
560
+ ## [0.14.34](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.33...@contentful/field-editor-rich-text@0.14.34) (2020-11-13)
561
+
562
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
563
+
564
+ ## [0.14.33](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.32...@contentful/field-editor-rich-text@0.14.33) (2020-11-13)
565
+
566
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
567
+
568
+ ## [0.14.32](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.31...@contentful/field-editor-rich-text@0.14.32) (2020-11-11)
569
+
570
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
571
+
572
+ ## [0.14.31](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.30...@contentful/field-editor-rich-text@0.14.31) (2020-11-10)
573
+
574
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
575
+
576
+ ## [0.14.30](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.29...@contentful/field-editor-rich-text@0.14.30) (2020-11-09)
577
+
578
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
579
+
580
+ ## [0.14.29](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.28...@contentful/field-editor-rich-text@0.14.29) (2020-11-09)
581
+
582
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
583
+
584
+ ## [0.14.28](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.27...@contentful/field-editor-rich-text@0.14.28) (2020-11-06)
585
+
586
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
587
+
588
+ ## [0.14.27](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.26...@contentful/field-editor-rich-text@0.14.27) (2020-11-06)
589
+
590
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
591
+
592
+ ## [0.14.26](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.25...@contentful/field-editor-rich-text@0.14.26) (2020-11-04)
593
+
594
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
595
+
596
+ ## [0.14.25](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.24...@contentful/field-editor-rich-text@0.14.25) (2020-10-28)
597
+
598
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
599
+
600
+ ## [0.14.24](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.23...@contentful/field-editor-rich-text@0.14.24) (2020-10-28)
601
+
602
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
603
+
604
+ ## [0.14.23](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.22...@contentful/field-editor-rich-text@0.14.23) (2020-10-27)
605
+
606
+ ### Bug Fixes
607
+
608
+ - do not call set state on unmounted rich-text ([#463](https://github.com/contentful/field-editors/issues/463)) ([5cc5ef4](https://github.com/contentful/field-editors/commit/5cc5ef4fc18f8c039626b1efd3a5072f2edc7628))
609
+
610
+ ## [0.14.22](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.21...@contentful/field-editor-rich-text@0.14.22) (2020-10-23)
611
+
612
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
613
+
614
+ ## [0.14.21](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.20...@contentful/field-editor-rich-text@0.14.21) (2020-10-21)
615
+
616
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
617
+
618
+ ## [0.14.20](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.19...@contentful/field-editor-rich-text@0.14.20) (2020-10-15)
619
+
620
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
621
+
622
+ ## [0.14.19](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.18...@contentful/field-editor-rich-text@0.14.19) (2020-10-09)
623
+
624
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
625
+
626
+ ## [0.14.18](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.17...@contentful/field-editor-rich-text@0.14.18) (2020-10-09)
627
+
628
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
629
+
630
+ ## [0.14.17](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.16...@contentful/field-editor-rich-text@0.14.17) (2020-10-02)
631
+
632
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
633
+
634
+ ## [0.14.16](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.15...@contentful/field-editor-rich-text@0.14.16) (2020-10-02)
635
+
636
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
637
+
638
+ ## [0.14.15](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.14...@contentful/field-editor-rich-text@0.14.15) (2020-10-01)
639
+
640
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
641
+
642
+ ## [0.14.14](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.13...@contentful/field-editor-rich-text@0.14.14) (2020-09-29)
643
+
644
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
645
+
646
+ ## [0.14.13](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.12...@contentful/field-editor-rich-text@0.14.13) (2020-09-29)
647
+
648
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
649
+
650
+ ## [0.14.12](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.11...@contentful/field-editor-rich-text@0.14.12) (2020-09-22)
651
+
652
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
653
+
654
+ ## [0.14.11](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.10...@contentful/field-editor-rich-text@0.14.11) (2020-09-21)
655
+
656
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
657
+
658
+ ## [0.14.10](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.9...@contentful/field-editor-rich-text@0.14.10) (2020-09-02)
659
+
660
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
661
+
662
+ ## [0.14.9](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.8...@contentful/field-editor-rich-text@0.14.9) (2020-09-01)
663
+
664
+ ### Bug Fixes
665
+
666
+ - 🐛 allow heigh overflow for hyperlink dialog ([#386](https://github.com/contentful/field-editors/issues/386)) ([2cfd46c](https://github.com/contentful/field-editors/commit/2cfd46c3d238ee32abad6a2ca48b422115d285c3))
667
+
668
+ ## [0.14.8](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.7...@contentful/field-editor-rich-text@0.14.8) (2020-09-01)
669
+
670
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
671
+
672
+ ## [0.14.7](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.6...@contentful/field-editor-rich-text@0.14.7) (2020-08-27)
673
+
674
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
675
+
676
+ ## [0.14.6](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.5...@contentful/field-editor-rich-text@0.14.6) (2020-08-27)
677
+
678
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
679
+
680
+ ## [0.14.5](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.4...@contentful/field-editor-rich-text@0.14.5) (2020-08-27)
681
+
682
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
683
+
684
+ ## [0.14.4](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.3...@contentful/field-editor-rich-text@0.14.4) (2020-08-24)
685
+
686
+ **Note:** Version bump only for package @contentful/field-editor-rich-text
687
+
688
+ ## [0.14.3](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@0.14.2...@contentful/field-editor-rich-text@0.14.3) (2020-08-24)
689
+
690
+ **Note:** Version bump only for package @contentful/field-editor-rich-text