1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-09-02 11:42:53 +02:00

Version Packages (#5925)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-07-30 13:18:53 -07:00
committed by GitHub
parent ba33735a8c
commit 8eeeecc238
8 changed files with 20 additions and 19 deletions

View File

@@ -29,7 +29,7 @@
"@types/jsdom": "^21.1.4",
"@types/lodash": "^4.14.200",
"@types/resize-observer-browser": "^0.1.8",
"slate": "^0.117.0",
"slate": "^0.118.0",
"slate-hyperscript": "^0.115.0",
"source-map-loader": "^4.0.1"
},

View File

@@ -16,7 +16,7 @@
"devDependencies": {
"@babel/runtime": "^7.23.2",
"lodash": "^4.17.21",
"slate": "^0.117.0",
"slate": "^0.118.0",
"slate-hyperscript": "^0.115.0",
"source-map-loader": "^4.0.1"
},

View File

@@ -15,7 +15,7 @@
],
"devDependencies": {
"@babel/runtime": "^7.23.2",
"slate": "^0.117.0",
"slate": "^0.118.0",
"source-map-loader": "^4.0.1"
},
"peerDependencies": {

View File

@@ -34,7 +34,7 @@
"@types/resize-observer-browser": "^0.1.8",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"slate": "^0.117.2",
"slate": "^0.118.0",
"slate-dom": "^0.117.4",
"slate-hyperscript": "^0.115.0",
"source-map-loader": "^4.0.1"

View File

@@ -1,5 +1,15 @@
# slate
## 0.118.0
### Minor Changes
- [#5923](https://github.com/ianstormtaylor/slate/pull/5923) [`ba33735a`](https://github.com/ianstormtaylor/slate/commit/ba33735a8ca7ca7437e891365451d25a6646a4c7) Thanks [@12joan](https://github.com/12joan)! - - When removing a text node containing the cursor, always perfer placing the cursor in a sibling text node if one exists.
- Previously, the selection would enter a sibling inline in some circumstances, even when a sibling text node was available.
- The most noticeable effect of this change occurs when pressing backspace at the start of line N when the last non-empty node in line N-1 is an inline.
- Before, the cursor would be placed inside the inline.
- Now, the cursor is placed outside the inline.
## 0.117.2
### Patch Changes

View File

@@ -1,7 +1,7 @@
{
"name": "slate",
"description": "A completely customizable framework for building rich text editors.",
"version": "0.117.2",
"version": "0.118.0",
"license": "MIT",
"repository": "git://github.com/ianstormtaylor/slate.git",
"main": "dist/index.js",