diff --git a/.changeset/safari-backwards-typing.md b/.changeset/safari-backwards-typing.md deleted file mode 100644 index e603fb60e..000000000 --- a/.changeset/safari-backwards-typing.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -'slate-react': patch ---- - -Fix backward typing bug in Safari by ensuring the selection is always removed on blur. -Safari doesn't always remove the selection, even if the contenteditable element no longer has focus. -In this scenario, we need to forcefully remove the selection on blur. -Refer to https://stackoverflow.com/questions/12353247/force-contenteditable-div-to-stop-accepting-input-after-it-loses-focus-under-web diff --git a/packages/slate-react/CHANGELOG.md b/packages/slate-react/CHANGELOG.md index 7450096ba..bf752d2ef 100644 --- a/packages/slate-react/CHANGELOG.md +++ b/packages/slate-react/CHANGELOG.md @@ -1,5 +1,14 @@ # slate-react +## 0.65.1 + +### Patch Changes + +- [#4324](https://github.com/ianstormtaylor/slate/pull/4324) [`61171a23`](https://github.com/ianstormtaylor/slate/commit/61171a23821b882116deabceec15f7e2649d271c) Thanks [@clauderic](https://github.com/clauderic)! - Fix backward typing bug in Safari by ensuring the selection is always removed on blur. + Safari doesn't always remove the selection, even if the contenteditable element no longer has focus. + In this scenario, we need to forcefully remove the selection on blur. + Refer to https://stackoverflow.com/questions/12353247/force-contenteditable-div-to-stop-accepting-input-after-it-loses-focus-under-web + ## 0.65.0 ### Minor Changes diff --git a/packages/slate-react/package.json b/packages/slate-react/package.json index 1670976a5..0eec0ef7e 100644 --- a/packages/slate-react/package.json +++ b/packages/slate-react/package.json @@ -1,7 +1,7 @@ { "name": "slate-react", "description": "Tools for building completely customizable richtext editors with React.", - "version": "0.65.0", + "version": "0.65.1", "license": "MIT", "repository": "git://github.com/ianstormtaylor/slate.git", "main": "dist/index.js",