@contentful/field-editor-rich-text 3.4.3 → 3.4.4

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 CHANGED
@@ -3,6 +3,12 @@
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.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)
7
+
8
+ ### Bug Fixes
9
+
10
+ - 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))
11
+
6
12
  ## [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
13
 
8
14
  **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
  };