@contentful/field-editor-rich-text 1.1.0 → 2.0.0-next.10

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 (190) hide show
  1. package/README.md +1 -1
  2. package/dist/ContentfulEditorProvider.d.ts +8 -0
  3. package/dist/RichTextEditor.d.ts +18 -60
  4. package/dist/RichTextEditor.styles.d.ts +7 -0
  5. package/dist/SdkProvider.d.ts +7 -0
  6. package/dist/Toolbar/components/EmbedEntityWidget.d.ts +5 -0
  7. package/dist/Toolbar/components/EmbeddedEntityDropdownButton.d.ts +9 -0
  8. package/dist/Toolbar/components/StickyToolbarWrapper.d.ts +7 -0
  9. package/dist/Toolbar/index.d.ts +5 -20
  10. package/dist/TrackingProvider.d.ts +11 -0
  11. package/dist/constants/Schema.d.ts +93 -11
  12. package/dist/dialogs/openRichTextDialog.d.ts +2 -1
  13. package/dist/dialogs/renderRichTextDialog.d.ts +2 -1
  14. package/dist/field-editor-rich-text.cjs.development.js +4738 -5118
  15. package/dist/field-editor-rich-text.cjs.development.js.map +1 -1
  16. package/dist/field-editor-rich-text.cjs.production.min.js +1 -1
  17. package/dist/field-editor-rich-text.cjs.production.min.js.map +1 -1
  18. package/dist/field-editor-rich-text.esm.js +4715 -5095
  19. package/dist/field-editor-rich-text.esm.js.map +1 -1
  20. package/dist/helpers/editor.d.ts +43 -0
  21. package/dist/helpers/environment.d.ts +2 -0
  22. package/dist/helpers/extractNodes.d.ts +7 -0
  23. package/dist/helpers/formatDateAndTime.d.ts +15 -0
  24. package/dist/helpers/getLinkedContentTypeIdsForNodeType.d.ts +26 -2
  25. package/dist/helpers/newEntitySelectorConfigFromRichTextField.d.ts +5 -1
  26. package/dist/helpers/sanitizeSlateDoc.d.ts +5 -0
  27. package/dist/helpers/transformers.d.ts +8 -0
  28. package/dist/helpers/validations.d.ts +10 -0
  29. package/dist/plugins/Break/createExitBreakPlugin.d.ts +2 -0
  30. package/dist/plugins/Break/createSoftBreakPlugin.d.ts +2 -0
  31. package/dist/plugins/Break/index.d.ts +3 -0
  32. package/dist/plugins/DragAndDrop/index.d.ts +2 -0
  33. package/dist/plugins/EmbeddedEntityBlock/LinkedEntityBlock.d.ts +14 -0
  34. package/dist/plugins/EmbeddedEntityBlock/ToolbarIcon.d.ts +11 -10
  35. package/dist/plugins/EmbeddedEntityBlock/Util.d.ts +2 -23
  36. package/dist/plugins/EmbeddedEntityBlock/index.d.ts +6 -26
  37. package/dist/plugins/EmbeddedEntityInline/FetchingWrappedInlineEntryCard.d.ts +13 -0
  38. package/dist/plugins/EmbeddedEntityInline/Util.d.ts +16 -0
  39. package/dist/plugins/EmbeddedEntityInline/index.d.ts +11 -0
  40. package/dist/plugins/Heading/components/Heading.d.ts +11 -0
  41. package/dist/plugins/Heading/components/ToolbarHeadingButton.d.ts +4 -0
  42. package/dist/plugins/Heading/createHeadingPlugin.d.ts +2 -0
  43. package/dist/plugins/Heading/index.d.ts +2 -380
  44. package/dist/plugins/Hr/index.d.ts +12 -61
  45. package/dist/plugins/Hyperlink/EntryAssetTooltip.d.ts +9 -0
  46. package/dist/plugins/Hyperlink/HyperlinkModal.d.ts +16 -0
  47. package/dist/plugins/Hyperlink/index.d.ts +9 -9
  48. package/dist/plugins/Hyperlink/truncate.d.ts +1 -1
  49. package/dist/plugins/Hyperlink/utils.d.ts +3 -0
  50. package/dist/plugins/List/components/List.d.ts +3 -0
  51. package/dist/plugins/List/components/ListItem.d.ts +2 -0
  52. package/dist/plugins/List/components/ToolbarListButton.d.ts +4 -0
  53. package/dist/plugins/List/createListPlugin.d.ts +2 -0
  54. package/dist/plugins/List/index.d.ts +2 -114
  55. package/dist/plugins/List/insertListBreak.d.ts +2 -0
  56. package/dist/plugins/List/insertListFragment.d.ts +2 -0
  57. package/dist/plugins/List/transforms/insertListItem.d.ts +5 -0
  58. package/dist/plugins/List/utils.d.ts +14 -0
  59. package/dist/plugins/List/withList.d.ts +3 -0
  60. package/dist/plugins/Marks/Bold.d.ts +9 -0
  61. package/dist/plugins/Marks/Code.d.ts +9 -0
  62. package/dist/plugins/Marks/Italic.d.ts +9 -0
  63. package/dist/plugins/Marks/Underline.d.ts +9 -0
  64. package/dist/plugins/Marks/index.d.ts +2 -0
  65. package/dist/plugins/Normalizer/baseRules.d.ts +2 -0
  66. package/dist/plugins/Normalizer/createNormalizerPlugin.d.ts +2 -0
  67. package/dist/plugins/Normalizer/index.d.ts +2 -0
  68. package/dist/plugins/Normalizer/types.d.ts +39 -0
  69. package/dist/plugins/Normalizer/utils.d.ts +8 -0
  70. package/dist/plugins/Normalizer/withNormalizer.d.ts +2 -0
  71. package/dist/plugins/Paragraph/Paragraph.d.ts +2 -0
  72. package/dist/plugins/Paragraph/createParagraphPlugin.d.ts +2 -0
  73. package/dist/plugins/Paragraph/index.d.ts +1 -5
  74. package/dist/plugins/Paragraph/utils.d.ts +2 -0
  75. package/dist/plugins/PasteHTML/createPasteHTMLPlugin.d.ts +2 -0
  76. package/dist/plugins/PasteHTML/index.d.ts +1 -0
  77. package/dist/plugins/PasteHTML/utils/sanitizeHTML.d.ts +1 -0
  78. package/dist/plugins/PasteHTML/utils/sanitizeSheets.d.ts +4 -0
  79. package/dist/plugins/Quote/components/Quote.d.ts +2 -0
  80. package/dist/plugins/Quote/components/ToolbarQuoteButton.d.ts +4 -0
  81. package/dist/plugins/Quote/createQuotePlugin.d.ts +2 -0
  82. package/dist/plugins/Quote/index.d.ts +2 -59
  83. package/dist/plugins/Quote/toggleQuote.d.ts +3 -0
  84. package/dist/plugins/SelectOnBackspace/createSelectOnBackspacePlugin.d.ts +2 -0
  85. package/dist/plugins/SelectOnBackspace/index.d.ts +1 -0
  86. package/dist/plugins/Table/actions/addColumn.d.ts +4 -0
  87. package/dist/plugins/Table/actions/addRow.d.ts +3 -0
  88. package/dist/plugins/Table/actions/index.d.ts +3 -0
  89. package/dist/plugins/Table/actions/setHeader.d.ts +2 -0
  90. package/dist/plugins/Table/addTableTrackingEvents.d.ts +3 -0
  91. package/dist/plugins/Table/components/Cell.d.ts +2 -0
  92. package/dist/plugins/Table/components/HeaderCell.d.ts +2 -0
  93. package/dist/plugins/Table/components/Row.d.ts +2 -0
  94. package/dist/plugins/Table/components/Table.d.ts +2 -0
  95. package/dist/plugins/Table/components/TableActions.d.ts +4 -0
  96. package/dist/plugins/Table/components/ToolbarButton.d.ts +4 -0
  97. package/dist/plugins/Table/createTablePlugin.d.ts +3 -0
  98. package/dist/plugins/Table/helpers.d.ts +15 -0
  99. package/dist/plugins/Table/index.d.ts +2 -0
  100. package/dist/plugins/Text/createTextPlugin.d.ts +2 -0
  101. package/dist/plugins/Text/index.d.ts +1 -0
  102. package/dist/plugins/TrailingParagraph/index.d.ts +1 -0
  103. package/dist/plugins/Voids/createVoidsPlugin.d.ts +2 -0
  104. package/dist/plugins/Voids/index.d.ts +1 -0
  105. package/dist/plugins/Voids/transformVoid.d.ts +6 -0
  106. package/dist/plugins/index.d.ts +6 -1
  107. package/dist/plugins/links-tracking.d.ts +7 -0
  108. package/dist/plugins/shared/EntityStatusIcon.d.ts +7 -0
  109. package/dist/plugins/shared/FetchingWrappedAssetCard.d.ts +23 -0
  110. package/dist/plugins/shared/FetchingWrappedEntryCard.d.ts +13 -0
  111. package/dist/plugins/shared/ToolbarButton.d.ts +11 -0
  112. package/dist/test-utils/assertOutput.d.ts +8 -0
  113. package/dist/test-utils/createEditor.d.ts +14 -0
  114. package/dist/test-utils/index.d.ts +4 -0
  115. package/dist/test-utils/jsx.d.ts +28 -0
  116. package/dist/test-utils/mockPlugin.d.ts +2 -0
  117. package/dist/test-utils/randomId.d.ts +4 -0
  118. package/dist/test-utils/setEmptyDataAttribute.d.ts +6 -0
  119. package/dist/test-utils/validation.d.ts +1 -0
  120. package/dist/types.d.ts +42 -0
  121. package/package.json +40 -34
  122. package/CHANGELOG.md +0 -454
  123. package/LICENSE +0 -21
  124. package/dist/RichTextEditor.spec.d.ts +0 -1
  125. package/dist/Toolbar/StickyToolbarWrapper.d.ts +0 -12
  126. package/dist/Toolbar/Toolbar.spec.d.ts +0 -1
  127. package/dist/helpers/browserSupport.d.ts +0 -1
  128. package/dist/plugins/Bold/index.d.ts +0 -64
  129. package/dist/plugins/Code/index.d.ts +0 -64
  130. package/dist/plugins/CommandPalette/CommandMark.d.ts +0 -12
  131. package/dist/plugins/CommandPalette/CommandPalette.d.ts +0 -10
  132. package/dist/plugins/CommandPalette/CommandPaletteService.d.ts +0 -20
  133. package/dist/plugins/CommandPalette/CommandPanel/CommandPanelMenu.d.ts +0 -43
  134. package/dist/plugins/CommandPalette/CommandPanel/InViewport/InViewport.d.ts +0 -37
  135. package/dist/plugins/CommandPalette/CommandPanel/index.d.ts +0 -37
  136. package/dist/plugins/CommandPalette/Util.d.ts +0 -5
  137. package/dist/plugins/CommandPalette/index.d.ts +0 -7
  138. package/dist/plugins/EmbeddedEntityBlock/EmbeddedEntityBlock.d.ts +0 -20
  139. package/dist/plugins/EmbeddedEntityBlock/EmbeddedEntityBlock.styles.d.ts +0 -3
  140. package/dist/plugins/EmbeddedEntityBlock/FetchingWrappedAssetCard.d.ts +0 -15
  141. package/dist/plugins/EmbeddedEntityBlock/FetchingWrappedEntryCard.d.ts +0 -15
  142. package/dist/plugins/EmbeddedEntryInline/EmbeddedEntryInline.d.ts +0 -21
  143. package/dist/plugins/EmbeddedEntryInline/EmbeddedEntryInline.styles.d.ts +0 -4
  144. package/dist/plugins/EmbeddedEntryInline/FetchingWrappedInlineEntryCard.d.ts +0 -14
  145. package/dist/plugins/EmbeddedEntryInline/ToolbarIcon.d.ts +0 -11
  146. package/dist/plugins/EmbeddedEntryInline/Utils.d.ts +0 -4
  147. package/dist/plugins/EmbeddedEntryInline/index.d.ts +0 -12
  148. package/dist/plugins/EntryEmbedDropdown/index.d.ts +0 -14
  149. package/dist/plugins/Heading/HeadingDropdown.d.ts +0 -28
  150. package/dist/plugins/Heading/HeadingDropdownItem.d.ts +0 -57
  151. package/dist/plugins/Heading/Paragraph.d.ts +0 -58
  152. package/dist/plugins/Hyperlink/Hyperlink.d.ts +0 -13
  153. package/dist/plugins/Hyperlink/ToolbarIcon.d.ts +0 -7
  154. package/dist/plugins/Hyperlink/Util.d.ts +0 -43
  155. package/dist/plugins/Hyperlink/styles.d.ts +0 -12
  156. package/dist/plugins/Hyperlink/useRequestStatus.d.ts +0 -6
  157. package/dist/plugins/InsertBeforeFirstVoidBlock/Util.d.ts +0 -14
  158. package/dist/plugins/InsertBeforeFirstVoidBlock/index.d.ts +0 -3
  159. package/dist/plugins/Italic/index.d.ts +0 -64
  160. package/dist/plugins/List/EditListWrapper.d.ts +0 -2
  161. package/dist/plugins/List/ToolbarDecorator.d.ts +0 -62
  162. package/dist/plugins/NewLinePlugin/index.d.ts +0 -3
  163. package/dist/plugins/Paste/Paste.d.ts +0 -1
  164. package/dist/plugins/Paste/Paste.spec.d.ts +0 -1
  165. package/dist/plugins/Paste/index.d.ts +0 -7
  166. package/dist/plugins/Paste/index.spec.d.ts +0 -1
  167. package/dist/plugins/PasteHtml/PasteHtml.spec.d.ts +0 -1
  168. package/dist/plugins/PasteHtml/Serializer.d.ts +0 -1
  169. package/dist/plugins/PasteHtml/index.d.ts +0 -3
  170. package/dist/plugins/PasteText/PasteText.spec.d.ts +0 -1
  171. package/dist/plugins/PasteText/index.d.ts +0 -3
  172. package/dist/plugins/Quote/QuotePlugin.d.ts +0 -10
  173. package/dist/plugins/Quote/Util.d.ts +0 -2
  174. package/dist/plugins/Underlined/index.d.ts +0 -64
  175. package/dist/plugins/shared/BlockSelectDecorator.d.ts +0 -63
  176. package/dist/plugins/shared/BlockToggleDecorator.d.ts +0 -65
  177. package/dist/plugins/shared/MarkDecorator.d.ts +0 -12
  178. package/dist/plugins/shared/MarkPlugin.d.ts +0 -9
  179. package/dist/plugins/shared/MarkToggleDecorator.d.ts +0 -62
  180. package/dist/plugins/shared/NodeDecorator.d.ts +0 -15
  181. package/dist/plugins/shared/PasteTestHelpers.d.ts +0 -35
  182. package/dist/plugins/shared/PluginApi.d.ts +0 -31
  183. package/dist/plugins/shared/PropTypes.d.ts +0 -15
  184. package/dist/plugins/shared/ToolbarDropdownListItem.d.ts +0 -14
  185. package/dist/plugins/shared/ToolbarIcon.d.ts +0 -16
  186. package/dist/plugins/shared/Util.d.ts +0 -1
  187. package/dist/plugins/shared/UtilHave.d.ts +0 -24
  188. package/dist/setupTests.d.ts +0 -1
  189. package/dist/validations/index.d.ts +0 -9
  190. package/dist/validations/validations.spec.d.ts +0 -1
package/package.json CHANGED
@@ -1,6 +1,9 @@
1
1
  {
2
2
  "name": "@contentful/field-editor-rich-text",
3
- "version": "1.1.0",
3
+ "version": "2.0.0-next.10",
4
+ "publishConfig": {
5
+ "tag": "next"
6
+ },
4
7
  "source": "./src/index.tsx",
5
8
  "main": "./dist/index.js",
6
9
  "module": "dist/field-editor-rich-text.esm.js",
@@ -17,37 +20,41 @@
17
20
  "scripts": {
18
21
  "watch": "tsdx watch",
19
22
  "build": "tsdx build",
20
- "test": "jest --env=jsdom --watch --config jest.config.js",
21
- "test:ci": "jest --env=jsdom --ci",
23
+ "test": "tsdx test --env=jsdom --watch",
24
+ "test:ci": "tsdx test --env=jsdom --ci --passWithNoTests",
22
25
  "tsc": "tsc -p ./ --noEmit",
23
- "lint": "eslint ./src --ext .js,.jsx,.ts,.tsx"
26
+ "lint": "eslint ./src --ext .js,.jsx,.ts,.tsx",
27
+ "prepublishOnly": "yarn build"
24
28
  },
25
29
  "dependencies": {
26
- "@contentful/contentful-slatejs-adapter": "14.1.2",
27
- "@contentful/f36-components": "^4.0.1",
28
- "@contentful/f36-icons": "^4.0.1",
29
- "@contentful/f36-tokens": "^4.0.0",
30
- "@contentful/field-editor-reference": "^4.1.0",
31
- "@contentful/field-editor-shared": "^1.1.0",
32
- "@contentful/rich-text-plain-text-renderer": "^14.0.0",
33
- "@contentful/rich-text-types": "^14.0.1",
34
- "@productboard/slate-edit-list": "^0.19.1",
35
- "@wikifactory/slate-trailing-block": "^0.6.0",
36
- "classnames": "^2.2.6",
37
- "detect-browser": "^3.0.1",
38
- "emotion": "^10.0.17",
39
- "fast-deep-equal": "^3.1.1",
40
- "immutable": "^3.8.2",
41
- "lodash": "^4.17.15",
42
- "lodash-es": "^4.17.15",
43
- "prop-types": "^15.7.2",
44
- "slate": "0.44.10",
45
- "slate-html-serializer": "0.7.34",
46
- "slate-plain-serializer": "0.6.34",
47
- "slate-react": "0.21.16"
30
+ "@contentful/contentful-slatejs-adapter": "^15.11.0",
31
+ "@contentful/f36-components": "^4.0.1-beta.2705",
32
+ "@contentful/f36-icons": "^4.0.1-beta.2705",
33
+ "@contentful/f36-tokens": "^4.0.1-beta.2705",
34
+ "@contentful/field-editor-reference": "^4.0.7",
35
+ "@contentful/field-editor-shared": "^1.0.3",
36
+ "@contentful/rich-text-plain-text-renderer": "^15.11.1",
37
+ "@contentful/rich-text-types": "^15.11.1",
38
+ "@udecode/plate-basic-marks": "^9.2.1",
39
+ "@udecode/plate-break": "^9.2.1",
40
+ "@udecode/plate-core": "^9.2.1",
41
+ "@udecode/plate-list": "^9.2.1",
42
+ "@udecode/plate-paragraph": "^9.2.1",
43
+ "@udecode/plate-select": "^9.2.1",
44
+ "@udecode/plate-serializer-docx": "^9.2.1",
45
+ "@udecode/plate-table": "^9.2.1",
46
+ "@udecode/plate-trailing-block": "^9.2.1",
47
+ "fast-deep-equal": "^3.1.3",
48
+ "is-hotkey": "^0.2.0",
49
+ "is-plain-obj": "^3.0.0",
50
+ "slate": "^0.72.3",
51
+ "slate-history": "^0.66.0",
52
+ "slate-hyperscript": "^0.67.0",
53
+ "slate-react": "^0.72.6"
48
54
  },
49
55
  "peerDependencies": {
50
- "react": ">=16.8.0"
56
+ "react": ">=16.14.0",
57
+ "react-dom": ">=16.14.0"
51
58
  },
52
59
  "devDependencies": {
53
60
  "@babel/core": "^7.9.6",
@@ -58,11 +65,10 @@
58
65
  "@babel/plugin-transform-runtime": "^7.9.6",
59
66
  "@babel/preset-env": "7.12.11",
60
67
  "@babel/preset-react": "7.13.13",
61
- "@contentful/field-editor-test-utils": "^1.1.0",
62
- "@contentful/rich-text-react-renderer": "^14.1.1",
63
- "enzyme": "^3.11.0",
64
- "enzyme-adapter-react-16": "^1.15.2",
65
- "jest": "26.6.3"
66
- },
67
- "gitHead": "107c4765108477138afd9f7ae7b018c1fe9c0bd5"
68
+ "@contentful/field-editor-test-utils": "^1.0.0",
69
+ "@contentful/rich-text-react-renderer": "^15.11.0",
70
+ "@types/is-hotkey": "^0.1.6",
71
+ "@udecode/plate-test-utils": "^3.2.0",
72
+ "react": ">=16.14.0"
73
+ }
68
74
  }
package/CHANGELOG.md DELETED
@@ -1,454 +0,0 @@
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
- # [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)
7
-
8
- ### Features
9
-
10
- - 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))
11
-
12
- ## [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)
13
-
14
- ### Bug Fixes
15
-
16
- - markdown buttons ([#968](https://github.com/contentful/field-editors/issues/968)) ([9803b98](https://github.com/contentful/field-editors/commit/9803b98c25d92df6148686ffe2749a77f7efdbb9))
17
-
18
- ## [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)
19
-
20
- ### Bug Fixes
21
-
22
- - cache content types for Hyperlink ([#967](https://github.com/contentful/field-editors/issues/967)) ([07e376d](https://github.com/contentful/field-editors/commit/07e376de5157fa6477f060550aacf96af3ab5e85))
23
-
24
- ## [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)
25
-
26
- **Note:** Version bump only for package @contentful/field-editor-rich-text
27
-
28
- ## [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)
29
-
30
- **Note:** Version bump only for package @contentful/field-editor-rich-text
31
-
32
- ## [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)
33
-
34
- **Note:** Version bump only for package @contentful/field-editor-rich-text
35
-
36
- ## [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)
37
-
38
- ### Bug Fixes
39
-
40
- - **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))
41
-
42
- ## [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)
43
-
44
- **Note:** Version bump only for package @contentful/field-editor-rich-text
45
-
46
- ## [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)
47
-
48
- **Note:** Version bump only for package @contentful/field-editor-rich-text
49
-
50
- # [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)
51
-
52
- **Note:** Version bump only for package @contentful/field-editor-rich-text
53
-
54
- # [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)
55
-
56
- ### Features
57
-
58
- - Forma v4 components adoption ([#805](https://github.com/contentful/field-editors/issues/805)) ([526bde6](https://github.com/contentful/field-editors/commit/526bde6e10e0ee3789705ec10fb31489af7ca59e))
59
-
60
- ### BREAKING CHANGES
61
-
62
- - adopts a new Forma v4 beta
63
-
64
- ## [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)
65
-
66
- ### Bug Fixes
67
-
68
- - **rich-text-editor:** specify font-family ([#907](https://github.com/contentful/field-editors/issues/907)) ([33dee3d](https://github.com/contentful/field-editors/commit/33dee3d6dbec66c7538cad2133d41692bd7839ca))
69
-
70
- ## [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)
71
-
72
- ### Bug Fixes
73
-
74
- - [] Remove test utils from peer dependencies ([#889](https://github.com/contentful/field-editors/issues/889)) ([3694bd7](https://github.com/contentful/field-editors/commit/3694bd7e706b8beb1f685167125f36ef0cbe82de))
75
-
76
- ## [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)
77
-
78
- **Note:** Version bump only for package @contentful/field-editor-rich-text
79
-
80
- ## [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)
81
-
82
- **Note:** Version bump only for package @contentful/field-editor-rich-text
83
-
84
- ## [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)
85
-
86
- **Note:** Version bump only for package @contentful/field-editor-rich-text
87
-
88
- ## [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)
89
-
90
- **Note:** Version bump only for package @contentful/field-editor-rich-text
91
-
92
- ## [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)
93
-
94
- **Note:** Version bump only for package @contentful/field-editor-rich-text
95
-
96
- ## [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)
97
-
98
- **Note:** Version bump only for package @contentful/field-editor-rich-text
99
-
100
- ## [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)
101
-
102
- **Note:** Version bump only for package @contentful/field-editor-rich-text
103
-
104
- ## [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)
105
-
106
- **Note:** Version bump only for package @contentful/field-editor-rich-text
107
-
108
- ## [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)
109
-
110
- **Note:** Version bump only for package @contentful/field-editor-rich-text
111
-
112
- ## [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)
113
-
114
- **Note:** Version bump only for package @contentful/field-editor-rich-text
115
-
116
- ## [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)
117
-
118
- **Note:** Version bump only for package @contentful/field-editor-rich-text
119
-
120
- ## [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)
121
-
122
- **Note:** Version bump only for package @contentful/field-editor-rich-text
123
-
124
- ## [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)
125
-
126
- **Note:** Version bump only for package @contentful/field-editor-rich-text
127
-
128
- ## [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)
129
-
130
- **Note:** Version bump only for package @contentful/field-editor-rich-text
131
-
132
- ## [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)
133
-
134
- **Note:** Version bump only for package @contentful/field-editor-rich-text
135
-
136
- ## [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)
137
-
138
- ### Bug Fixes
139
-
140
- - adjust rich-text version manually ([#781](https://github.com/contentful/field-editors/issues/781)) ([f770e4f](https://github.com/contentful/field-editors/commit/f770e4f731f1ebec0ac64881c8c60015709fa26d))
141
-
142
- # [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)
143
-
144
- ### Features
145
-
146
- - 💡 new color tokens ([#778](https://github.com/contentful/field-editors/issues/778)) ([fba548d](https://github.com/contentful/field-editors/commit/fba548de32305016df7f2685634eefb14294828f))
147
-
148
- ## [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)
149
-
150
- **Note:** Version bump only for package @contentful/field-editor-rich-text
151
-
152
- ## [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)
153
-
154
- **Note:** Version bump only for package @contentful/field-editor-rich-text
155
-
156
- ## [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)
157
-
158
- **Note:** Version bump only for package @contentful/field-editor-rich-text
159
-
160
- ## [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)
161
-
162
- **Note:** Version bump only for package @contentful/field-editor-rich-text
163
-
164
- ## [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)
165
-
166
- **Note:** Version bump only for package @contentful/field-editor-rich-text
167
-
168
- ## [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)
169
-
170
- **Note:** Version bump only for package @contentful/field-editor-rich-text
171
-
172
- ## [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)
173
-
174
- **Note:** Version bump only for package @contentful/field-editor-rich-text
175
-
176
- ## [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)
177
-
178
- **Note:** Version bump only for package @contentful/field-editor-rich-text
179
-
180
- ## [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)
181
-
182
- **Note:** Version bump only for package @contentful/field-editor-rich-text
183
-
184
- ## [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)
185
-
186
- **Note:** Version bump only for package @contentful/field-editor-rich-text
187
-
188
- ## [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)
189
-
190
- ### Bug Fixes
191
-
192
- - 🐛 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))
193
-
194
- ## [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)
195
-
196
- **Note:** Version bump only for package @contentful/field-editor-rich-text
197
-
198
- ## [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)
199
-
200
- **Note:** Version bump only for package @contentful/field-editor-rich-text
201
-
202
- ## [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)
203
-
204
- **Note:** Version bump only for package @contentful/field-editor-rich-text
205
-
206
- ## [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)
207
-
208
- **Note:** Version bump only for package @contentful/field-editor-rich-text
209
-
210
- ## [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)
211
-
212
- **Note:** Version bump only for package @contentful/field-editor-rich-text
213
-
214
- # [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)
215
-
216
- ### Features
217
-
218
- - bump min version of forma-36 ([#606](https://github.com/contentful/field-editors/issues/606)) ([fd57c7a](https://github.com/contentful/field-editors/commit/fd57c7a4312766af38c01507f17706ab22992617))
219
-
220
- ## [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)
221
-
222
- **Note:** Version bump only for package @contentful/field-editor-rich-text
223
-
224
- ## [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)
225
-
226
- **Note:** Version bump only for package @contentful/field-editor-rich-text
227
-
228
- ## [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)
229
-
230
- **Note:** Version bump only for package @contentful/field-editor-rich-text
231
-
232
- ## [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)
233
-
234
- ### Bug Fixes
235
-
236
- - **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))
237
-
238
- ## [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)
239
-
240
- **Note:** Version bump only for package @contentful/field-editor-rich-text
241
-
242
- ## [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)
243
-
244
- **Note:** Version bump only for package @contentful/field-editor-rich-text
245
-
246
- ## [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)
247
-
248
- **Note:** Version bump only for package @contentful/field-editor-rich-text
249
-
250
- # [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)
251
-
252
- ### Features
253
-
254
- - 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))
255
-
256
- ## [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)
257
-
258
- **Note:** Version bump only for package @contentful/field-editor-rich-text
259
-
260
- ## [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)
261
-
262
- **Note:** Version bump only for package @contentful/field-editor-rich-text
263
-
264
- ## [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)
265
-
266
- ### Bug Fixes
267
-
268
- - use forma tokens for border radiuses ([#553](https://github.com/contentful/field-editors/issues/553)) ([f4eb745](https://github.com/contentful/field-editors/commit/f4eb74568c7bc0cc25028542821ba64e50e226bd))
269
-
270
- # [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)
271
-
272
- ### Features
273
-
274
- - 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))
275
-
276
- ## [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)
277
-
278
- **Note:** Version bump only for package @contentful/field-editor-rich-text
279
-
280
- ## [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)
281
-
282
- ### Bug Fixes
283
-
284
- - use correct prop types ([#538](https://github.com/contentful/field-editors/issues/538)) ([f878a3a](https://github.com/contentful/field-editors/commit/f878a3a4f5c2d32455ac7932540d612a1c1a461a))
285
-
286
- ## [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)
287
-
288
- **Note:** Version bump only for package @contentful/field-editor-rich-text
289
-
290
- ## [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)
291
-
292
- **Note:** Version bump only for package @contentful/field-editor-rich-text
293
-
294
- ## [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)
295
-
296
- **Note:** Version bump only for package @contentful/field-editor-rich-text
297
-
298
- # [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)
299
-
300
- ### Features
301
-
302
- - minHeight props ([#529](https://github.com/contentful/field-editors/issues/529)) ([672e5d1](https://github.com/contentful/field-editors/commit/672e5d10356547ba99888dfeedc5ffd7b6e264cb))
303
-
304
- ## [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)
305
-
306
- **Note:** Version bump only for package @contentful/field-editor-rich-text
307
-
308
- ## [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)
309
-
310
- **Note:** Version bump only for package @contentful/field-editor-rich-text
311
-
312
- ## [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)
313
-
314
- **Note:** Version bump only for package @contentful/field-editor-rich-text
315
-
316
- ## [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)
317
-
318
- **Note:** Version bump only for package @contentful/field-editor-rich-text
319
-
320
- ## [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)
321
-
322
- **Note:** Version bump only for package @contentful/field-editor-rich-text
323
-
324
- ## [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)
325
-
326
- **Note:** Version bump only for package @contentful/field-editor-rich-text
327
-
328
- ## [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)
329
-
330
- **Note:** Version bump only for package @contentful/field-editor-rich-text
331
-
332
- ## [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)
333
-
334
- **Note:** Version bump only for package @contentful/field-editor-rich-text
335
-
336
- ## [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)
337
-
338
- **Note:** Version bump only for package @contentful/field-editor-rich-text
339
-
340
- ## [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)
341
-
342
- **Note:** Version bump only for package @contentful/field-editor-rich-text
343
-
344
- ## [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)
345
-
346
- **Note:** Version bump only for package @contentful/field-editor-rich-text
347
-
348
- ## [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)
349
-
350
- **Note:** Version bump only for package @contentful/field-editor-rich-text
351
-
352
- ## [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)
353
-
354
- **Note:** Version bump only for package @contentful/field-editor-rich-text
355
-
356
- ## [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)
357
-
358
- **Note:** Version bump only for package @contentful/field-editor-rich-text
359
-
360
- ## [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)
361
-
362
- **Note:** Version bump only for package @contentful/field-editor-rich-text
363
-
364
- ## [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)
365
-
366
- **Note:** Version bump only for package @contentful/field-editor-rich-text
367
-
368
- ## [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)
369
-
370
- ### Bug Fixes
371
-
372
- - 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))
373
-
374
- ## [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)
375
-
376
- **Note:** Version bump only for package @contentful/field-editor-rich-text
377
-
378
- ## [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)
379
-
380
- **Note:** Version bump only for package @contentful/field-editor-rich-text
381
-
382
- ## [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)
383
-
384
- **Note:** Version bump only for package @contentful/field-editor-rich-text
385
-
386
- ## [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)
387
-
388
- **Note:** Version bump only for package @contentful/field-editor-rich-text
389
-
390
- ## [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)
391
-
392
- **Note:** Version bump only for package @contentful/field-editor-rich-text
393
-
394
- ## [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)
395
-
396
- **Note:** Version bump only for package @contentful/field-editor-rich-text
397
-
398
- ## [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)
399
-
400
- **Note:** Version bump only for package @contentful/field-editor-rich-text
401
-
402
- ## [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)
403
-
404
- **Note:** Version bump only for package @contentful/field-editor-rich-text
405
-
406
- ## [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)
407
-
408
- **Note:** Version bump only for package @contentful/field-editor-rich-text
409
-
410
- ## [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)
411
-
412
- **Note:** Version bump only for package @contentful/field-editor-rich-text
413
-
414
- ## [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)
415
-
416
- **Note:** Version bump only for package @contentful/field-editor-rich-text
417
-
418
- ## [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)
419
-
420
- **Note:** Version bump only for package @contentful/field-editor-rich-text
421
-
422
- ## [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)
423
-
424
- **Note:** Version bump only for package @contentful/field-editor-rich-text
425
-
426
- ## [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)
427
-
428
- ### Bug Fixes
429
-
430
- - 🐛 allow heigh overflow for hyperlink dialog ([#386](https://github.com/contentful/field-editors/issues/386)) ([2cfd46c](https://github.com/contentful/field-editors/commit/2cfd46c3d238ee32abad6a2ca48b422115d285c3))
431
-
432
- ## [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)
433
-
434
- **Note:** Version bump only for package @contentful/field-editor-rich-text
435
-
436
- ## [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)
437
-
438
- **Note:** Version bump only for package @contentful/field-editor-rich-text
439
-
440
- ## [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)
441
-
442
- **Note:** Version bump only for package @contentful/field-editor-rich-text
443
-
444
- ## [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)
445
-
446
- **Note:** Version bump only for package @contentful/field-editor-rich-text
447
-
448
- ## [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)
449
-
450
- **Note:** Version bump only for package @contentful/field-editor-rich-text
451
-
452
- ## [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)
453
-
454
- **Note:** Version bump only for package @contentful/field-editor-rich-text
package/LICENSE DELETED
@@ -1,21 +0,0 @@
1
- The MIT License (MIT)
2
-
3
- Copyright (c) 2020 Contentful
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
@@ -1 +0,0 @@
1
- export {};
@@ -1,12 +0,0 @@
1
- export default StickyToolbarWrapper;
2
- declare function StickyToolbarWrapper({ isDisabled, children }: {
3
- isDisabled: any;
4
- children: any;
5
- }): JSX.Element;
6
- declare namespace StickyToolbarWrapper {
7
- export namespace propTypes {
8
- export const isDisabled: PropTypes.Requireable<boolean>;
9
- export const children: PropTypes.Requireable<PropTypes.ReactNodeLike>;
10
- }
11
- }
12
- import PropTypes from "prop-types";
@@ -1 +0,0 @@
1
- export {};
@@ -1 +0,0 @@
1
- export const SUPPORTS_NATIVE_SLATE_HYPERLINKS: boolean;