@contentful/field-editor-rich-text 3.4.3 → 3.4.5
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 +12 -0
- package/dist/field-editor-rich-text.cjs.development.js +2 -0
- 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 +3 -1
- package/dist/field-editor-rich-text.esm.js.map +1 -1
- package/dist/plugins/Hyperlink/useEntityInfo.d.ts +2 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,18 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## [3.4.5](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@3.4.4...@contentful/field-editor-rich-text@3.4.5) (2023-02-07)
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
10
|
+
- improve types ([#1338](https://github.com/contentful/field-editors/issues/1338)) ([3197fa9](https://github.com/contentful/field-editors/commit/3197fa9e806f32c90cda454681cb48b604072529))
|
|
11
|
+
|
|
12
|
+
## [3.4.4](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@3.4.3...@contentful/field-editor-rich-text@3.4.4) (2023-02-02)
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
- remove command mark after space [TOL-945] ([#1335](https://github.com/contentful/field-editors/issues/1335)) ([08efe51](https://github.com/contentful/field-editors/commit/08efe51edf7a2f46fedc4c87a05f17b467d1c91a))
|
|
17
|
+
|
|
6
18
|
## [3.4.3](https://github.com/contentful/field-editors/compare/@contentful/field-editor-rich-text@3.4.2...@contentful/field-editor-rich-text@3.4.3) (2023-01-24)
|
|
7
19
|
|
|
8
20
|
**Note:** Version bump only for package @contentful/field-editor-rich-text
|
|
@@ -2356,8 +2356,10 @@ var createOnKeyDown = function createOnKeyDown() {
|
|
|
2356
2356
|
}
|
|
2357
2357
|
|
|
2358
2358
|
if (isHotkey('escape', event)) {
|
|
2359
|
+
event.stopPropagation();
|
|
2359
2360
|
removeMark(editor, COMMAND_PROMPT, range);
|
|
2360
2361
|
editor.tracking.onCommandPaletteAction('cancelRichTextCommandPalette');
|
|
2362
|
+
focusEditor(editor);
|
|
2361
2363
|
}
|
|
2362
2364
|
};
|
|
2363
2365
|
};
|