@contentful/field-editor-rich-text 3.0.0-next.0 → 3.0.2
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.
- package/CHANGELOG.md +698 -0
- package/LICENSE +21 -0
- package/README.md +25 -3
- package/dist/ContentfulEditorProvider.d.ts +6 -5
- package/dist/RichTextEditor.d.ts +2 -3
- package/dist/SdkProvider.d.ts +1 -1
- package/dist/Toolbar/{EmbedEntityWidget.d.ts → components/EmbedEntityWidget.d.ts} +1 -2
- package/dist/{plugins/EmbeddedEntity/index.d.ts → Toolbar/components/EmbeddedEntityDropdownButton.d.ts} +1 -2
- package/dist/Toolbar/{StickyToolbarWrapper.d.ts → components/StickyToolbarWrapper.d.ts} +0 -0
- package/dist/Toolbar/index.d.ts +0 -1
- package/dist/dialogs/HypelinkDialog/HyperlinkDialog.d.ts +3 -3
- package/dist/dialogs/renderRichTextDialog.d.ts +0 -1
- package/dist/field-editor-rich-text.cjs.development.js +6503 -4337
- package/dist/field-editor-rich-text.cjs.development.js.map +1 -1
- package/dist/field-editor-rich-text.cjs.production.min.js +1 -1
- package/dist/field-editor-rich-text.cjs.production.min.js.map +1 -1
- package/dist/field-editor-rich-text.esm.js +6485 -4319
- package/dist/field-editor-rich-text.esm.js.map +1 -1
- package/dist/helpers/editor.d.ts +21 -23
- package/dist/helpers/environment.d.ts +2 -1
- package/dist/helpers/extractNodes.d.ts +6 -0
- package/dist/helpers/removeInternalMarks.d.ts +1 -0
- package/dist/helpers/sanitizeIncomingSlateDoc.d.ts +6 -0
- package/dist/helpers/transformers.d.ts +8 -0
- package/dist/helpers/validations.d.ts +1 -1
- package/dist/plugins/Break/createExitBreakPlugin.d.ts +2 -0
- package/dist/plugins/Break/createResetNodePlugin.d.ts +2 -0
- package/dist/plugins/Break/createSoftBreakPlugin.d.ts +2 -0
- package/dist/plugins/Break/index.d.ts +5 -0
- package/dist/plugins/CommandPalette/components/CommandList.d.ts +7 -0
- package/dist/plugins/CommandPalette/components/CommandList.styles.d.ts +13 -0
- package/dist/plugins/CommandPalette/components/CommandPrompt.d.ts +2 -0
- package/dist/plugins/CommandPalette/constants.d.ts +1 -0
- package/dist/plugins/CommandPalette/createCommandPalettePlugin.d.ts +13 -0
- package/dist/plugins/CommandPalette/hooks/useCommandList.d.ts +4 -0
- package/dist/plugins/CommandPalette/index.d.ts +1 -0
- package/dist/plugins/CommandPalette/onKeyDown.d.ts +3 -0
- package/dist/plugins/CommandPalette/useCommands.d.ts +14 -0
- package/dist/plugins/CommandPalette/utils/createInlineEntryNode.d.ts +16 -0
- package/dist/plugins/CommandPalette/utils/fetchAssets.d.ts +8 -0
- package/dist/plugins/CommandPalette/utils/fetchEntries.d.ts +9 -0
- package/dist/plugins/CommandPalette/utils/insertBlock.d.ts +1 -0
- package/dist/plugins/CommandPalette/utils/trimLeadingSlash.d.ts +7 -0
- package/dist/plugins/DragAndDrop/index.d.ts +2 -2
- package/dist/plugins/EmbeddedEntityBlock/LinkedEntityBlock.d.ts +3 -2
- package/dist/plugins/EmbeddedEntityBlock/ToolbarIcon.d.ts +1 -4
- package/dist/plugins/EmbeddedEntityBlock/Util.d.ts +2 -1
- package/dist/plugins/EmbeddedEntityBlock/index.d.ts +3 -9
- package/dist/plugins/EmbeddedEntityInline/FetchingWrappedInlineEntryCard.d.ts +1 -0
- package/dist/plugins/EmbeddedEntityInline/index.d.ts +3 -6
- package/dist/plugins/Heading/components/Heading.d.ts +10 -0
- package/dist/plugins/Heading/components/ToolbarHeadingButton.d.ts +4 -0
- package/dist/plugins/Heading/createHeadingPlugin.d.ts +2 -0
- package/dist/plugins/Heading/index.d.ts +2 -20
- package/dist/plugins/Hr/index.d.ts +3 -5
- package/dist/plugins/Hyperlink/HyperlinkModal.d.ts +6 -6
- package/dist/plugins/Hyperlink/components/EntityHyperlink.d.ts +9 -0
- package/dist/plugins/Hyperlink/components/ToolbarHyperlinkButton.d.ts +5 -0
- package/dist/plugins/Hyperlink/components/UrlHyperlink.d.ts +9 -0
- package/dist/plugins/Hyperlink/components/styles.d.ts +4 -0
- package/dist/plugins/Hyperlink/createHyperlinkPlugin.d.ts +3 -0
- package/dist/plugins/Hyperlink/index.d.ts +2 -12
- package/dist/plugins/Hyperlink/useEntityInfo.d.ts +16 -0
- package/dist/plugins/Hyperlink/utils.d.ts +5 -0
- package/dist/plugins/List/components/List.d.ts +3 -0
- package/dist/plugins/List/components/ListItem.d.ts +2 -0
- package/dist/plugins/List/components/ToolbarListButton.d.ts +4 -0
- package/dist/plugins/List/createListPlugin.d.ts +2 -0
- package/dist/plugins/List/index.d.ts +2 -15
- package/dist/plugins/List/insertListBreak.d.ts +2 -0
- package/dist/plugins/List/insertListFragment.d.ts +3 -0
- package/dist/plugins/List/onKeyDownList.d.ts +7 -0
- package/dist/plugins/List/transforms/deleteBackwardList.d.ts +2 -0
- package/dist/plugins/List/transforms/insertListItem.d.ts +5 -0
- package/dist/plugins/List/transforms/moveListItemDown.d.ts +11 -0
- package/dist/plugins/List/transforms/moveListItems.d.ts +10 -0
- package/dist/plugins/List/transforms/toggleList.d.ts +4 -0
- package/dist/plugins/List/transforms/unwrapList.d.ts +5 -0
- package/dist/plugins/List/utils.d.ts +15 -0
- package/dist/plugins/List/withList.d.ts +4 -0
- package/dist/plugins/Marks/Bold.d.ts +11 -0
- package/dist/plugins/Marks/Code.d.ts +11 -0
- package/dist/plugins/Marks/Italic.d.ts +11 -0
- package/dist/plugins/Marks/Underline.d.ts +11 -0
- package/dist/plugins/Marks/components/MarkToolbarButton.d.ts +13 -0
- package/dist/plugins/Marks/helpers.d.ts +4 -0
- package/dist/plugins/Marks/index.d.ts +2 -0
- package/dist/plugins/Normalizer/baseRules.d.ts +2 -0
- package/dist/plugins/Normalizer/createNormalizerPlugin.d.ts +2 -0
- package/dist/plugins/Normalizer/index.d.ts +2 -0
- package/dist/plugins/Normalizer/types.d.ts +40 -0
- package/dist/plugins/Normalizer/utils.d.ts +8 -0
- package/dist/plugins/Normalizer/withNormalizer.d.ts +2 -0
- package/dist/plugins/Paragraph/Paragraph.d.ts +2 -0
- package/dist/plugins/Paragraph/createParagraphPlugin.d.ts +2 -0
- package/dist/plugins/Paragraph/index.d.ts +1 -7
- package/dist/plugins/Paragraph/utils.d.ts +2 -0
- package/dist/plugins/PasteHTML/createPasteHTMLPlugin.d.ts +8 -0
- package/dist/plugins/PasteHTML/index.d.ts +1 -0
- package/dist/plugins/PasteHTML/utils/sanitizeHTML.d.ts +1 -0
- package/dist/plugins/PasteHTML/utils/sanitizeSheets.d.ts +4 -0
- package/dist/plugins/Quote/components/Quote.d.ts +2 -0
- package/dist/plugins/Quote/components/ToolbarQuoteButton.d.ts +4 -0
- package/dist/plugins/Quote/createQuotePlugin.d.ts +2 -0
- package/dist/plugins/Quote/index.d.ts +2 -13
- package/dist/plugins/Quote/shouldResetQuote.d.ts +8 -0
- package/dist/plugins/Quote/toggleQuote.d.ts +5 -0
- package/dist/plugins/Quote/withQuote.d.ts +3 -0
- package/dist/plugins/SelectOnBackspace/createSelectOnBackspacePlugin.d.ts +2 -0
- package/dist/plugins/SelectOnBackspace/index.d.ts +1 -0
- package/dist/plugins/Table/actions/addColumn.d.ts +3 -3
- package/dist/plugins/Table/actions/addRow.d.ts +3 -3
- package/dist/plugins/Table/actions/setHeader.d.ts +2 -2
- package/dist/plugins/Table/components/Cell.d.ts +2 -0
- package/dist/plugins/Table/components/HeaderCell.d.ts +2 -0
- package/dist/plugins/Table/components/Row.d.ts +2 -0
- package/dist/plugins/Table/components/Table.d.ts +2 -0
- package/dist/plugins/Table/components/TableActions.d.ts +4 -0
- package/dist/plugins/Table/components/ToolbarButton.d.ts +4 -0
- package/dist/plugins/Table/createTablePlugin.d.ts +2 -0
- package/dist/plugins/Table/helpers.d.ts +16 -4
- package/dist/plugins/Table/index.d.ts +2 -189
- package/dist/plugins/Table/insertTableFragment.d.ts +3 -0
- package/dist/plugins/Table/onKeyDownTable.d.ts +3 -0
- package/dist/plugins/Table/tableTracking.d.ts +4 -0
- package/dist/plugins/Text/createTextPlugin.d.ts +2 -0
- package/dist/plugins/Text/index.d.ts +1 -0
- package/dist/plugins/Tracking/createTrackingPlugin.d.ts +11 -0
- package/dist/plugins/Tracking/index.d.ts +1 -0
- package/dist/plugins/Tracking/utils.d.ts +2 -0
- package/dist/plugins/TrailingParagraph/index.d.ts +2 -1
- package/dist/plugins/Voids/createVoidsPlugin.d.ts +2 -0
- package/dist/plugins/Voids/index.d.ts +1 -0
- package/dist/plugins/Voids/transformVoid.d.ts +6 -0
- package/dist/plugins/index.d.ts +6 -0
- package/dist/plugins/links-tracking.d.ts +6 -0
- package/dist/plugins/shared/FetchingWrappedAssetCard.d.ts +1 -11
- package/dist/plugins/shared/FetchingWrappedEntryCard.d.ts +4 -4
- package/dist/plugins/shared/ToolbarButton.d.ts +0 -1
- package/dist/prepareDocument.d.ts +20 -0
- package/dist/test-utils/assertOutput.d.ts +7 -0
- package/dist/test-utils/createEditor.d.ts +13 -0
- package/dist/test-utils/index.d.ts +4 -0
- package/dist/test-utils/jsx.d.ts +28 -0
- package/dist/test-utils/mockPlugin.d.ts +2 -0
- package/dist/test-utils/randomId.d.ts +4 -0
- package/dist/test-utils/setEmptyDataAttribute.d.ts +6 -0
- package/dist/test-utils/validation.d.ts +1 -0
- package/dist/types.d.ts +34 -9
- package/dist/useOnValueChanged.d.ts +8 -0
- package/package.json +34 -29
- package/dist/TrackingProvider.d.ts +0 -11
- package/dist/helpers/deserializer.d.ts +0 -3
- package/dist/helpers/sanitizeSlateDoc.d.ts +0 -18
- package/dist/helpers/truncate.d.ts +0 -1
- package/dist/plugins/Bold/index.d.ts +0 -12
- package/dist/plugins/Code/index.d.ts +0 -12
- package/dist/plugins/CommandPalette/CommandPanel/InViewport/InViewport.d.ts +0 -37
- package/dist/plugins/Hyperlink/EntryAssetTooltip.d.ts +0 -10
- package/dist/plugins/InsertBeforeFirstVoidBlock/index.d.ts +0 -2
- package/dist/plugins/Italic/index.d.ts +0 -12
- package/dist/plugins/List/getListInsertFragment.d.ts +0 -6
- package/dist/plugins/NewLine/index.d.ts +0 -2
- package/dist/plugins/Paste/index.d.ts +0 -2
- package/dist/plugins/Paste/sanitizers/helpers.d.ts +0 -7
- package/dist/plugins/Paste/sanitizers/index.d.ts +0 -3
- package/dist/plugins/Paste/sanitizers/removeComments.d.ts +0 -2
- package/dist/plugins/Paste/sanitizers/sanitizeEntityBlocks.d.ts +0 -6
- package/dist/plugins/Paste/sanitizers/sanitizeTables.d.ts +0 -2
- package/dist/plugins/Table/TableActions.d.ts +0 -5
- package/dist/plugins/Underline/index.d.ts +0 -12
- package/dist/plugins/shared/EntityStatusIcon.d.ts +0 -8
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,698 @@
|
|
|
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.2](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@3.0.1...@contentful/field-editor-rich-text@3.0.2) (2022-08-25)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
9
|
+
|
|
10
|
+
## [3.0.1](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@3.0.0...@contentful/field-editor-rich-text@3.0.1) (2022-08-24)
|
|
11
|
+
|
|
12
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
13
|
+
|
|
14
|
+
# [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)
|
|
15
|
+
|
|
16
|
+
### Features
|
|
17
|
+
|
|
18
|
+
- 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))
|
|
19
|
+
|
|
20
|
+
### BREAKING CHANGES
|
|
21
|
+
|
|
22
|
+
- useEntities is no longer export from the reference editor package. Use useEntity or useEntityLoader instead
|
|
23
|
+
|
|
24
|
+
Co-authored-by: Ahmed T. Ali <ah.tajelsir@gmail.com>
|
|
25
|
+
|
|
26
|
+
## [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)
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
- rollback change of deps in useFetchedEntity ([#1213](https://github.com/contentful/field-editors/issues/1213)) ([c12e6ea](https://github.com/contentful/field-editors/commit/c12e6eae473e340b1065bb296c093e5aea6e0adc))
|
|
31
|
+
|
|
32
|
+
## [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)
|
|
33
|
+
|
|
34
|
+
### Bug Fixes
|
|
35
|
+
|
|
36
|
+
- 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))
|
|
37
|
+
|
|
38
|
+
## [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)
|
|
39
|
+
|
|
40
|
+
### Bug Fixes
|
|
41
|
+
|
|
42
|
+
- check store in entity fetch ([#1211](https://github.com/contentful/field-editors/issues/1211)) ([3ddc0b2](https://github.com/contentful/field-editors/commit/3ddc0b2d3ffc2e2146cb8f0ee07d540cb875b717))
|
|
43
|
+
|
|
44
|
+
## [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)
|
|
45
|
+
|
|
46
|
+
### Bug Fixes
|
|
47
|
+
|
|
48
|
+
- version compare webapp ([#1210](https://github.com/contentful/field-editors/issues/1210)) ([bbe0882](https://github.com/contentful/field-editors/commit/bbe0882f15d771dc713c688f8ba4df0be8c13102))
|
|
49
|
+
|
|
50
|
+
## [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)
|
|
51
|
+
|
|
52
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
53
|
+
|
|
54
|
+
## [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)
|
|
55
|
+
|
|
56
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
57
|
+
|
|
58
|
+
## [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)
|
|
59
|
+
|
|
60
|
+
### Bug Fixes
|
|
61
|
+
|
|
62
|
+
- **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))
|
|
63
|
+
|
|
64
|
+
## [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)
|
|
65
|
+
|
|
66
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
67
|
+
|
|
68
|
+
## [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)
|
|
69
|
+
|
|
70
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
71
|
+
|
|
72
|
+
## [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)
|
|
73
|
+
|
|
74
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
75
|
+
|
|
76
|
+
## [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)
|
|
77
|
+
|
|
78
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
79
|
+
|
|
80
|
+
## [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)
|
|
81
|
+
|
|
82
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
83
|
+
|
|
84
|
+
## [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)
|
|
85
|
+
|
|
86
|
+
### Bug Fixes
|
|
87
|
+
|
|
88
|
+
- 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))
|
|
89
|
+
|
|
90
|
+
## [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)
|
|
91
|
+
|
|
92
|
+
### Bug Fixes
|
|
93
|
+
|
|
94
|
+
- **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))
|
|
95
|
+
|
|
96
|
+
## [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)
|
|
97
|
+
|
|
98
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
99
|
+
|
|
100
|
+
## [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)
|
|
101
|
+
|
|
102
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
103
|
+
|
|
104
|
+
## [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)
|
|
105
|
+
|
|
106
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
107
|
+
|
|
108
|
+
## [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)
|
|
109
|
+
|
|
110
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
111
|
+
|
|
112
|
+
## [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)
|
|
113
|
+
|
|
114
|
+
### Bug Fixes
|
|
115
|
+
|
|
116
|
+
- 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))
|
|
117
|
+
|
|
118
|
+
## [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)
|
|
119
|
+
|
|
120
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
121
|
+
|
|
122
|
+
# [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)
|
|
123
|
+
|
|
124
|
+
### Features
|
|
125
|
+
|
|
126
|
+
- add simple fetching for resources ([#1179](https://github.com/contentful/field-editors/issues/1179)) ([b29daac](https://github.com/contentful/field-editors/commit/b29daac6460f93a4350bf45f90ae938f65de96ee))
|
|
127
|
+
|
|
128
|
+
## [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)
|
|
129
|
+
|
|
130
|
+
### Bug Fixes
|
|
131
|
+
|
|
132
|
+
- 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))
|
|
133
|
+
|
|
134
|
+
# [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)
|
|
135
|
+
|
|
136
|
+
### Features
|
|
137
|
+
|
|
138
|
+
- add tracking for rich-text-commands ([#1174](https://github.com/contentful/field-editors/issues/1174)) ([75fc492](https://github.com/contentful/field-editors/commit/75fc49210a5789bf029ddb81413349d74f441f28))
|
|
139
|
+
|
|
140
|
+
## [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)
|
|
141
|
+
|
|
142
|
+
### Bug Fixes
|
|
143
|
+
|
|
144
|
+
- 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))
|
|
145
|
+
|
|
146
|
+
## [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)
|
|
147
|
+
|
|
148
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
149
|
+
|
|
150
|
+
## [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)
|
|
151
|
+
|
|
152
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
153
|
+
|
|
154
|
+
# [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)
|
|
155
|
+
|
|
156
|
+
### Features
|
|
157
|
+
|
|
158
|
+
- rich text commands [TOL-109] ([#1169](https://github.com/contentful/field-editors/issues/1169)) ([b533f7f](https://github.com/contentful/field-editors/commit/b533f7f7f55d6a39429c0727577617b62793c0aa))
|
|
159
|
+
|
|
160
|
+
## [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)
|
|
161
|
+
|
|
162
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
163
|
+
|
|
164
|
+
## [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)
|
|
165
|
+
|
|
166
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
167
|
+
|
|
168
|
+
## [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)
|
|
169
|
+
|
|
170
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
171
|
+
|
|
172
|
+
## [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)
|
|
173
|
+
|
|
174
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
175
|
+
|
|
176
|
+
## [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)
|
|
177
|
+
|
|
178
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
179
|
+
|
|
180
|
+
## [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)
|
|
181
|
+
|
|
182
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
183
|
+
|
|
184
|
+
## [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)
|
|
185
|
+
|
|
186
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
187
|
+
|
|
188
|
+
## [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)
|
|
189
|
+
|
|
190
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
191
|
+
|
|
192
|
+
## [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)
|
|
193
|
+
|
|
194
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
195
|
+
|
|
196
|
+
## [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)
|
|
197
|
+
|
|
198
|
+
### Bug Fixes
|
|
199
|
+
|
|
200
|
+
- reflect disabled state on fields ([#1125](https://github.com/contentful/field-editors/issues/1125)) ([01502b9](https://github.com/contentful/field-editors/commit/01502b9d785c5f782b0e5de782d092c439cb690f))
|
|
201
|
+
|
|
202
|
+
## [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)
|
|
203
|
+
|
|
204
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
205
|
+
|
|
206
|
+
## [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)
|
|
207
|
+
|
|
208
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
209
|
+
|
|
210
|
+
## [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)
|
|
211
|
+
|
|
212
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
213
|
+
|
|
214
|
+
## [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)
|
|
215
|
+
|
|
216
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
217
|
+
|
|
218
|
+
## [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)
|
|
219
|
+
|
|
220
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
221
|
+
|
|
222
|
+
## [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)
|
|
223
|
+
|
|
224
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
225
|
+
|
|
226
|
+
## [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)
|
|
227
|
+
|
|
228
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
229
|
+
|
|
230
|
+
## [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)
|
|
231
|
+
|
|
232
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
233
|
+
|
|
234
|
+
## [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)
|
|
235
|
+
|
|
236
|
+
### Bug Fixes
|
|
237
|
+
|
|
238
|
+
- bump f36 packages ([#1025](https://github.com/contentful/field-editors/issues/1025)) ([ec37a40](https://github.com/contentful/field-editors/commit/ec37a4000db7cd75c66dd9621136b2272c9feeea))
|
|
239
|
+
|
|
240
|
+
## [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)
|
|
241
|
+
|
|
242
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
243
|
+
|
|
244
|
+
## [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)
|
|
245
|
+
|
|
246
|
+
### Bug Fixes
|
|
247
|
+
|
|
248
|
+
- remove empty text hyperlinks ([#997](https://github.com/contentful/field-editors/issues/997)) ([d998132](https://github.com/contentful/field-editors/commit/d998132fbe948a98f6e800211a794bdd1e292233))
|
|
249
|
+
|
|
250
|
+
# [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)
|
|
251
|
+
|
|
252
|
+
### Features
|
|
253
|
+
|
|
254
|
+
- 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))
|
|
255
|
+
|
|
256
|
+
## [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)
|
|
257
|
+
|
|
258
|
+
### Bug Fixes
|
|
259
|
+
|
|
260
|
+
- markdown buttons ([#968](https://github.com/contentful/field-editors/issues/968)) ([9803b98](https://github.com/contentful/field-editors/commit/9803b98c25d92df6148686ffe2749a77f7efdbb9))
|
|
261
|
+
|
|
262
|
+
## [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)
|
|
263
|
+
|
|
264
|
+
### Bug Fixes
|
|
265
|
+
|
|
266
|
+
- cache content types for Hyperlink ([#967](https://github.com/contentful/field-editors/issues/967)) ([07e376d](https://github.com/contentful/field-editors/commit/07e376de5157fa6477f060550aacf96af3ab5e85))
|
|
267
|
+
|
|
268
|
+
## [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)
|
|
269
|
+
|
|
270
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
271
|
+
|
|
272
|
+
## [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)
|
|
273
|
+
|
|
274
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
275
|
+
|
|
276
|
+
## [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)
|
|
277
|
+
|
|
278
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
279
|
+
|
|
280
|
+
## [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)
|
|
281
|
+
|
|
282
|
+
### Bug Fixes
|
|
283
|
+
|
|
284
|
+
- **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))
|
|
285
|
+
|
|
286
|
+
## [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)
|
|
287
|
+
|
|
288
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
289
|
+
|
|
290
|
+
## [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)
|
|
291
|
+
|
|
292
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
293
|
+
|
|
294
|
+
# [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)
|
|
295
|
+
|
|
296
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
297
|
+
|
|
298
|
+
# [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)
|
|
299
|
+
|
|
300
|
+
### Features
|
|
301
|
+
|
|
302
|
+
- Forma v4 components adoption ([#805](https://github.com/contentful/field-editors/issues/805)) ([526bde6](https://github.com/contentful/field-editors/commit/526bde6e10e0ee3789705ec10fb31489af7ca59e))
|
|
303
|
+
|
|
304
|
+
### BREAKING CHANGES
|
|
305
|
+
|
|
306
|
+
- adopts a new Forma v4 beta
|
|
307
|
+
|
|
308
|
+
## [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)
|
|
309
|
+
|
|
310
|
+
### Bug Fixes
|
|
311
|
+
|
|
312
|
+
- **rich-text-editor:** specify font-family ([#907](https://github.com/contentful/field-editors/issues/907)) ([33dee3d](https://github.com/contentful/field-editors/commit/33dee3d6dbec66c7538cad2133d41692bd7839ca))
|
|
313
|
+
|
|
314
|
+
## [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)
|
|
315
|
+
|
|
316
|
+
### Bug Fixes
|
|
317
|
+
|
|
318
|
+
- [] Remove test utils from peer dependencies ([#889](https://github.com/contentful/field-editors/issues/889)) ([3694bd7](https://github.com/contentful/field-editors/commit/3694bd7e706b8beb1f685167125f36ef0cbe82de))
|
|
319
|
+
|
|
320
|
+
## [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)
|
|
321
|
+
|
|
322
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
323
|
+
|
|
324
|
+
## [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)
|
|
325
|
+
|
|
326
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
327
|
+
|
|
328
|
+
## [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)
|
|
329
|
+
|
|
330
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
331
|
+
|
|
332
|
+
## [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)
|
|
333
|
+
|
|
334
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
335
|
+
|
|
336
|
+
## [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)
|
|
337
|
+
|
|
338
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
339
|
+
|
|
340
|
+
## [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)
|
|
341
|
+
|
|
342
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
343
|
+
|
|
344
|
+
## [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)
|
|
345
|
+
|
|
346
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
347
|
+
|
|
348
|
+
## [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)
|
|
349
|
+
|
|
350
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
351
|
+
|
|
352
|
+
## [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)
|
|
353
|
+
|
|
354
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
355
|
+
|
|
356
|
+
## [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)
|
|
357
|
+
|
|
358
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
359
|
+
|
|
360
|
+
## [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)
|
|
361
|
+
|
|
362
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
363
|
+
|
|
364
|
+
## [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)
|
|
365
|
+
|
|
366
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
367
|
+
|
|
368
|
+
## [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)
|
|
369
|
+
|
|
370
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
371
|
+
|
|
372
|
+
## [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)
|
|
373
|
+
|
|
374
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
375
|
+
|
|
376
|
+
## [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)
|
|
377
|
+
|
|
378
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
379
|
+
|
|
380
|
+
## [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)
|
|
381
|
+
|
|
382
|
+
### Bug Fixes
|
|
383
|
+
|
|
384
|
+
- adjust rich-text version manually ([#781](https://github.com/contentful/field-editors/issues/781)) ([f770e4f](https://github.com/contentful/field-editors/commit/f770e4f731f1ebec0ac64881c8c60015709fa26d))
|
|
385
|
+
|
|
386
|
+
# [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)
|
|
387
|
+
|
|
388
|
+
### Features
|
|
389
|
+
|
|
390
|
+
- 💡 new color tokens ([#778](https://github.com/contentful/field-editors/issues/778)) ([fba548d](https://github.com/contentful/field-editors/commit/fba548de32305016df7f2685634eefb14294828f))
|
|
391
|
+
|
|
392
|
+
## [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)
|
|
393
|
+
|
|
394
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
395
|
+
|
|
396
|
+
## [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)
|
|
397
|
+
|
|
398
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
399
|
+
|
|
400
|
+
## [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)
|
|
401
|
+
|
|
402
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
403
|
+
|
|
404
|
+
## [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)
|
|
405
|
+
|
|
406
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
407
|
+
|
|
408
|
+
## [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)
|
|
409
|
+
|
|
410
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
411
|
+
|
|
412
|
+
## [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)
|
|
413
|
+
|
|
414
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
415
|
+
|
|
416
|
+
## [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)
|
|
417
|
+
|
|
418
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
419
|
+
|
|
420
|
+
## [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)
|
|
421
|
+
|
|
422
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
423
|
+
|
|
424
|
+
## [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)
|
|
425
|
+
|
|
426
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
427
|
+
|
|
428
|
+
## [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)
|
|
429
|
+
|
|
430
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
431
|
+
|
|
432
|
+
## [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)
|
|
433
|
+
|
|
434
|
+
### Bug Fixes
|
|
435
|
+
|
|
436
|
+
- 🐛 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))
|
|
437
|
+
|
|
438
|
+
## [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)
|
|
439
|
+
|
|
440
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
441
|
+
|
|
442
|
+
## [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)
|
|
443
|
+
|
|
444
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
445
|
+
|
|
446
|
+
## [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)
|
|
447
|
+
|
|
448
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
449
|
+
|
|
450
|
+
## [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)
|
|
451
|
+
|
|
452
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
453
|
+
|
|
454
|
+
## [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)
|
|
455
|
+
|
|
456
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
457
|
+
|
|
458
|
+
# [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)
|
|
459
|
+
|
|
460
|
+
### Features
|
|
461
|
+
|
|
462
|
+
- bump min version of forma-36 ([#606](https://github.com/contentful/field-editors/issues/606)) ([fd57c7a](https://github.com/contentful/field-editors/commit/fd57c7a4312766af38c01507f17706ab22992617))
|
|
463
|
+
|
|
464
|
+
## [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)
|
|
465
|
+
|
|
466
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
467
|
+
|
|
468
|
+
## [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)
|
|
469
|
+
|
|
470
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
471
|
+
|
|
472
|
+
## [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)
|
|
473
|
+
|
|
474
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
475
|
+
|
|
476
|
+
## [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)
|
|
477
|
+
|
|
478
|
+
### Bug Fixes
|
|
479
|
+
|
|
480
|
+
- **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))
|
|
481
|
+
|
|
482
|
+
## [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)
|
|
483
|
+
|
|
484
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
485
|
+
|
|
486
|
+
## [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)
|
|
487
|
+
|
|
488
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
489
|
+
|
|
490
|
+
## [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)
|
|
491
|
+
|
|
492
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
493
|
+
|
|
494
|
+
# [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)
|
|
495
|
+
|
|
496
|
+
### Features
|
|
497
|
+
|
|
498
|
+
- 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))
|
|
499
|
+
|
|
500
|
+
## [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)
|
|
501
|
+
|
|
502
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
503
|
+
|
|
504
|
+
## [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)
|
|
505
|
+
|
|
506
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
507
|
+
|
|
508
|
+
## [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)
|
|
509
|
+
|
|
510
|
+
### Bug Fixes
|
|
511
|
+
|
|
512
|
+
- use forma tokens for border radiuses ([#553](https://github.com/contentful/field-editors/issues/553)) ([f4eb745](https://github.com/contentful/field-editors/commit/f4eb74568c7bc0cc25028542821ba64e50e226bd))
|
|
513
|
+
|
|
514
|
+
# [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)
|
|
515
|
+
|
|
516
|
+
### Features
|
|
517
|
+
|
|
518
|
+
- 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))
|
|
519
|
+
|
|
520
|
+
## [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)
|
|
521
|
+
|
|
522
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
523
|
+
|
|
524
|
+
## [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)
|
|
525
|
+
|
|
526
|
+
### Bug Fixes
|
|
527
|
+
|
|
528
|
+
- use correct prop types ([#538](https://github.com/contentful/field-editors/issues/538)) ([f878a3a](https://github.com/contentful/field-editors/commit/f878a3a4f5c2d32455ac7932540d612a1c1a461a))
|
|
529
|
+
|
|
530
|
+
## [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)
|
|
531
|
+
|
|
532
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
533
|
+
|
|
534
|
+
## [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)
|
|
535
|
+
|
|
536
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
537
|
+
|
|
538
|
+
## [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)
|
|
539
|
+
|
|
540
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
541
|
+
|
|
542
|
+
# [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)
|
|
543
|
+
|
|
544
|
+
### Features
|
|
545
|
+
|
|
546
|
+
- minHeight props ([#529](https://github.com/contentful/field-editors/issues/529)) ([672e5d1](https://github.com/contentful/field-editors/commit/672e5d10356547ba99888dfeedc5ffd7b6e264cb))
|
|
547
|
+
|
|
548
|
+
## [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)
|
|
549
|
+
|
|
550
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
551
|
+
|
|
552
|
+
## [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)
|
|
553
|
+
|
|
554
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
555
|
+
|
|
556
|
+
## [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)
|
|
557
|
+
|
|
558
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
559
|
+
|
|
560
|
+
## [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)
|
|
561
|
+
|
|
562
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
563
|
+
|
|
564
|
+
## [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)
|
|
565
|
+
|
|
566
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
567
|
+
|
|
568
|
+
## [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)
|
|
569
|
+
|
|
570
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
571
|
+
|
|
572
|
+
## [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)
|
|
573
|
+
|
|
574
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
575
|
+
|
|
576
|
+
## [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)
|
|
577
|
+
|
|
578
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
579
|
+
|
|
580
|
+
## [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)
|
|
581
|
+
|
|
582
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
583
|
+
|
|
584
|
+
## [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)
|
|
585
|
+
|
|
586
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
587
|
+
|
|
588
|
+
## [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)
|
|
589
|
+
|
|
590
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
591
|
+
|
|
592
|
+
## [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)
|
|
593
|
+
|
|
594
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
595
|
+
|
|
596
|
+
## [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)
|
|
597
|
+
|
|
598
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
599
|
+
|
|
600
|
+
## [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)
|
|
601
|
+
|
|
602
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
603
|
+
|
|
604
|
+
## [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)
|
|
605
|
+
|
|
606
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
607
|
+
|
|
608
|
+
## [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)
|
|
609
|
+
|
|
610
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
611
|
+
|
|
612
|
+
## [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)
|
|
613
|
+
|
|
614
|
+
### Bug Fixes
|
|
615
|
+
|
|
616
|
+
- 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))
|
|
617
|
+
|
|
618
|
+
## [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)
|
|
619
|
+
|
|
620
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
621
|
+
|
|
622
|
+
## [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)
|
|
623
|
+
|
|
624
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
625
|
+
|
|
626
|
+
## [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)
|
|
627
|
+
|
|
628
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
629
|
+
|
|
630
|
+
## [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)
|
|
631
|
+
|
|
632
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
633
|
+
|
|
634
|
+
## [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)
|
|
635
|
+
|
|
636
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
637
|
+
|
|
638
|
+
## [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)
|
|
639
|
+
|
|
640
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
641
|
+
|
|
642
|
+
## [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)
|
|
643
|
+
|
|
644
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
645
|
+
|
|
646
|
+
## [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)
|
|
647
|
+
|
|
648
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
649
|
+
|
|
650
|
+
## [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)
|
|
651
|
+
|
|
652
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
653
|
+
|
|
654
|
+
## [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)
|
|
655
|
+
|
|
656
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
657
|
+
|
|
658
|
+
## [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)
|
|
659
|
+
|
|
660
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
661
|
+
|
|
662
|
+
## [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)
|
|
663
|
+
|
|
664
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
665
|
+
|
|
666
|
+
## [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)
|
|
667
|
+
|
|
668
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
669
|
+
|
|
670
|
+
## [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)
|
|
671
|
+
|
|
672
|
+
### Bug Fixes
|
|
673
|
+
|
|
674
|
+
- 🐛 allow heigh overflow for hyperlink dialog ([#386](https://github.com/contentful/field-editors/issues/386)) ([2cfd46c](https://github.com/contentful/field-editors/commit/2cfd46c3d238ee32abad6a2ca48b422115d285c3))
|
|
675
|
+
|
|
676
|
+
## [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)
|
|
677
|
+
|
|
678
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
679
|
+
|
|
680
|
+
## [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)
|
|
681
|
+
|
|
682
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
683
|
+
|
|
684
|
+
## [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)
|
|
685
|
+
|
|
686
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
687
|
+
|
|
688
|
+
## [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)
|
|
689
|
+
|
|
690
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
691
|
+
|
|
692
|
+
## [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)
|
|
693
|
+
|
|
694
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
695
|
+
|
|
696
|
+
## [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)
|
|
697
|
+
|
|
698
|
+
**Note:** Version bump only for package @contentful/field-editor-rich-text
|