mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-01-18 05:59:13 +01:00
Version Packages (#4898)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
5ef346feb9
commit
ce63a08c8e
@ -1,8 +0,0 @@
|
||||
---
|
||||
'slate': minor
|
||||
'slate-react': minor
|
||||
---
|
||||
|
||||
A different behavior for inserting a soft break with shift+enter is quite common in rich text editors. Right now you have to do this in onKeyDown which is not so nice. This adds a separate insertSoftBreak method on the editor instance that gets called when a soft break is inserted. This maintains the current default behavior for backwards compatibility (it just splits the block). But at least you can easily overwrite it now.
|
||||
|
||||
If you rely on overwriting editor.insertBreak for extra behavior for soft breaks this might be a breaking change for you and you should overwrite editor.insertSoftBreak instead.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
'slate': patch
|
||||
---
|
||||
|
||||
feat: add merge to setNodes and test
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
'slate-react': patch
|
||||
---
|
||||
|
||||
Fixes a bug where nodes remounted on split_node and merge_node
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
'slate-react': patch
|
||||
---
|
||||
|
||||
toSlatePoint should not consider a selection within a void node if the void node isn't in the editor itself.
|
||||
|
||||
Prior to this fix, a nested Slate editor inside a void node in a parent editor would not allow you to start typing text in a blank editor state correctly. After the first character insertion, the selection would jump back to the start of the nested editor.
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
'slate-react': patch
|
||||
---
|
||||
|
||||
Fix decorations applied across nested elements
|
@ -19,7 +19,7 @@
|
||||
"devDependencies": {
|
||||
"@babel/runtime": "^7.7.4",
|
||||
"lodash": "^4.17.21",
|
||||
"slate": "^0.75.0",
|
||||
"slate": "^0.76.0",
|
||||
"slate-hyperscript": "^0.67.0",
|
||||
"source-map-loader": "^0.2.4"
|
||||
},
|
||||
|
@ -18,7 +18,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/runtime": "^7.7.4",
|
||||
"slate": "^0.75.0",
|
||||
"slate": "^0.76.0",
|
||||
"source-map-loader": "^0.2.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -1,5 +1,23 @@
|
||||
# slate-react
|
||||
|
||||
## 0.76.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [#4873](https://github.com/ianstormtaylor/slate/pull/4873) [`20acca4b`](https://github.com/ianstormtaylor/slate/commit/20acca4bc8f31bd1aa6fbca2c49aaae5f31cadfe) Thanks [@bryanph](https://github.com/bryanph)! - A different behavior for inserting a soft break with shift+enter is quite common in rich text editors. Right now you have to do this in onKeyDown which is not so nice. This adds a separate insertSoftBreak method on the editor instance that gets called when a soft break is inserted. This maintains the current default behavior for backwards compatibility (it just splits the block). But at least you can easily overwrite it now.
|
||||
|
||||
If you rely on overwriting editor.insertBreak for extra behavior for soft breaks this might be a breaking change for you and you should overwrite editor.insertSoftBreak instead.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#4901](https://github.com/ianstormtaylor/slate/pull/4901) [`5ef346fe`](https://github.com/ianstormtaylor/slate/commit/5ef346feb9e6430b3b6af66f196e5445a9ee3ff2) Thanks [@bryanph](https://github.com/bryanph)! - Fixes a bug where nodes remounted on split_node and merge_node
|
||||
|
||||
* [#4885](https://github.com/ianstormtaylor/slate/pull/4885) [`07669dca`](https://github.com/ianstormtaylor/slate/commit/07669dca4b0641506ca857bd781c460dae7606a9) Thanks [@ryanmitts](https://github.com/ryanmitts)! - toSlatePoint should not consider a selection within a void node if the void node isn't in the editor itself.
|
||||
|
||||
Prior to this fix, a nested Slate editor inside a void node in a parent editor would not allow you to start typing text in a blank editor state correctly. After the first character insertion, the selection would jump back to the start of the nested editor.
|
||||
|
||||
- [#4910](https://github.com/ianstormtaylor/slate/pull/4910) [`2a8d86f1`](https://github.com/ianstormtaylor/slate/commit/2a8d86f1a40bcc806422e6fe3658ddd810ce73a5) Thanks [@jasonphillips](https://github.com/jasonphillips)! - Fix decorations applied across nested elements
|
||||
|
||||
## 0.75.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "slate-react",
|
||||
"description": "Tools for building completely customizable richtext editors with React.",
|
||||
"version": "0.75.0",
|
||||
"version": "0.76.0",
|
||||
"license": "MIT",
|
||||
"repository": "git://github.com/ianstormtaylor/slate.git",
|
||||
"main": "dist/index.js",
|
||||
@ -33,7 +33,7 @@
|
||||
"react": ">=16.8.0",
|
||||
"react-dom": ">=16.8.0",
|
||||
"react-test-renderer": ">=16.8.0",
|
||||
"slate": "^0.75.0",
|
||||
"slate": "^0.76.0",
|
||||
"slate-hyperscript": "^0.67.0",
|
||||
"source-map-loader": "^0.2.4"
|
||||
},
|
||||
|
@ -1,5 +1,17 @@
|
||||
# slate
|
||||
|
||||
## 0.76.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [#4873](https://github.com/ianstormtaylor/slate/pull/4873) [`20acca4b`](https://github.com/ianstormtaylor/slate/commit/20acca4bc8f31bd1aa6fbca2c49aaae5f31cadfe) Thanks [@bryanph](https://github.com/bryanph)! - A different behavior for inserting a soft break with shift+enter is quite common in rich text editors. Right now you have to do this in onKeyDown which is not so nice. This adds a separate insertSoftBreak method on the editor instance that gets called when a soft break is inserted. This maintains the current default behavior for backwards compatibility (it just splits the block). But at least you can easily overwrite it now.
|
||||
|
||||
If you rely on overwriting editor.insertBreak for extra behavior for soft breaks this might be a breaking change for you and you should overwrite editor.insertSoftBreak instead.
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#4912](https://github.com/ianstormtaylor/slate/pull/4912) [`43ca2b56`](https://github.com/ianstormtaylor/slate/commit/43ca2b56c8bd8bcc30dd38808dd191f804d53ae4) Thanks [@zhugexinxin](https://github.com/zhugexinxin)! - feat: add merge to setNodes and test
|
||||
|
||||
## 0.75.0
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "slate",
|
||||
"description": "A completely customizable framework for building rich text editors.",
|
||||
"version": "0.75.0",
|
||||
"version": "0.76.0",
|
||||
"license": "MIT",
|
||||
"repository": "git://github.com/ianstormtaylor/slate.git",
|
||||
"main": "dist/index.js",
|
||||
|
@ -14503,7 +14503,7 @@ resolve@^2.0.0-next.3:
|
||||
"@babel/runtime": ^7.7.4
|
||||
is-plain-object: ^5.0.0
|
||||
lodash: ^4.17.21
|
||||
slate: ^0.75.0
|
||||
slate: ^0.76.0
|
||||
slate-hyperscript: ^0.67.0
|
||||
source-map-loader: ^0.2.4
|
||||
peerDependencies:
|
||||
@ -14517,7 +14517,7 @@ resolve@^2.0.0-next.3:
|
||||
dependencies:
|
||||
"@babel/runtime": ^7.7.4
|
||||
is-plain-object: ^5.0.0
|
||||
slate: ^0.75.0
|
||||
slate: ^0.76.0
|
||||
source-map-loader: ^0.2.4
|
||||
peerDependencies:
|
||||
slate: ">=0.65.3"
|
||||
@ -14624,7 +14624,7 @@ resolve@^2.0.0-next.3:
|
||||
react-dom: ">=16.8.0"
|
||||
react-test-renderer: ">=16.8.0"
|
||||
scroll-into-view-if-needed: ^2.2.20
|
||||
slate: ^0.75.0
|
||||
slate: ^0.76.0
|
||||
slate-hyperscript: ^0.67.0
|
||||
source-map-loader: ^0.2.4
|
||||
tiny-invariant: 1.0.6
|
||||
@ -14635,7 +14635,7 @@ resolve@^2.0.0-next.3:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"slate@^0.75.0, slate@workspace:*, slate@workspace:packages/slate":
|
||||
"slate@^0.76.0, slate@workspace:*, slate@workspace:packages/slate":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "slate@workspace:packages/slate"
|
||||
dependencies:
|
||||
|
Loading…
x
Reference in New Issue
Block a user