mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-08-12 02:03:59 +02:00
Version Packages (#5058)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
fbab6331a5
commit
1d5984cccd
@@ -1,7 +0,0 @@
|
|||||||
---
|
|
||||||
'slate-react': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
- Introduces a `useSlateSelection` hook that triggers whenever the selection changes.
|
|
||||||
- This also changes the implementation of SlateContext to use an incrementing value instead of an array replace to trigger updates
|
|
||||||
- Introduces a `useSlateWithV` hook that includes the version counter which can be used to prevent re-renders
|
|
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
'slate-react': minor
|
|
||||||
'slate': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Android input handling rewrite, replace composition insert prefixes with decoration based mark placeholders
|
|
@@ -19,7 +19,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/runtime": "^7.7.4",
|
"@babel/runtime": "^7.7.4",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"slate": "^0.81.3",
|
"slate": "^0.82.0",
|
||||||
"slate-hyperscript": "^0.81.3",
|
"slate-hyperscript": "^0.81.3",
|
||||||
"source-map-loader": "^4.0.0"
|
"source-map-loader": "^4.0.0"
|
||||||
},
|
},
|
||||||
|
@@ -18,7 +18,7 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/runtime": "^7.7.4",
|
"@babel/runtime": "^7.7.4",
|
||||||
"slate": "^0.81.3",
|
"slate": "^0.82.0",
|
||||||
"source-map-loader": "^4.0.0"
|
"source-map-loader": "^4.0.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
@@ -1,5 +1,15 @@
|
|||||||
# slate-react
|
# slate-react
|
||||||
|
|
||||||
|
## 0.82.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- [#5041](https://github.com/ianstormtaylor/slate/pull/5041) [`9bc0b613`](https://github.com/ianstormtaylor/slate/commit/9bc0b6132aa288a37ae9a85d0e59a9d5a75ebdd7) Thanks [@bryanph](https://github.com/bryanph)! - - Introduces a `useSlateSelection` hook that triggers whenever the selection changes.
|
||||||
|
- This also changes the implementation of SlateContext to use an incrementing value instead of an array replace to trigger updates
|
||||||
|
- Introduces a `useSlateWithV` hook that includes the version counter which can be used to prevent re-renders
|
||||||
|
|
||||||
|
* [#4988](https://github.com/ianstormtaylor/slate/pull/4988) [`fbab6331`](https://github.com/ianstormtaylor/slate/commit/fbab6331a5ecebd9e98c6c8c87d6f4b3b7c43bd0) Thanks [@BitPhinix](https://github.com/BitPhinix)! - Android input handling rewrite, replace composition insert prefixes with decoration based mark placeholders
|
||||||
|
|
||||||
## 0.81.3
|
## 0.81.3
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "slate-react",
|
"name": "slate-react",
|
||||||
"description": "Tools for building completely customizable richtext editors with React.",
|
"description": "Tools for building completely customizable richtext editors with React.",
|
||||||
"version": "0.81.3",
|
"version": "0.82.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "git://github.com/ianstormtaylor/slate.git",
|
"repository": "git://github.com/ianstormtaylor/slate.git",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
@@ -33,7 +33,7 @@
|
|||||||
"react": ">=16.8.0",
|
"react": ">=16.8.0",
|
||||||
"react-dom": ">=16.8.0",
|
"react-dom": ">=16.8.0",
|
||||||
"react-test-renderer": ">=16.8.0",
|
"react-test-renderer": ">=16.8.0",
|
||||||
"slate": "^0.81.3",
|
"slate": "^0.82.0",
|
||||||
"slate-hyperscript": "^0.81.3",
|
"slate-hyperscript": "^0.81.3",
|
||||||
"source-map-loader": "^4.0.0"
|
"source-map-loader": "^4.0.0"
|
||||||
},
|
},
|
||||||
|
@@ -1,5 +1,11 @@
|
|||||||
# slate
|
# slate
|
||||||
|
|
||||||
|
## 0.82.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#4988](https://github.com/ianstormtaylor/slate/pull/4988) [`fbab6331`](https://github.com/ianstormtaylor/slate/commit/fbab6331a5ecebd9e98c6c8c87d6f4b3b7c43bd0) Thanks [@BitPhinix](https://github.com/BitPhinix)! - Android input handling rewrite, replace composition insert prefixes with decoration based mark placeholders
|
||||||
|
|
||||||
## 0.81.3
|
## 0.81.3
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "slate",
|
"name": "slate",
|
||||||
"description": "A completely customizable framework for building rich text editors.",
|
"description": "A completely customizable framework for building rich text editors.",
|
||||||
"version": "0.81.3",
|
"version": "0.82.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"repository": "git://github.com/ianstormtaylor/slate.git",
|
"repository": "git://github.com/ianstormtaylor/slate.git",
|
||||||
"main": "dist/index.js",
|
"main": "dist/index.js",
|
||||||
|
@@ -14115,7 +14115,7 @@ resolve@^2.0.0-next.3:
|
|||||||
"@babel/runtime": ^7.7.4
|
"@babel/runtime": ^7.7.4
|
||||||
is-plain-object: ^5.0.0
|
is-plain-object: ^5.0.0
|
||||||
lodash: ^4.17.21
|
lodash: ^4.17.21
|
||||||
slate: ^0.81.3
|
slate: ^0.82.0
|
||||||
slate-hyperscript: ^0.81.3
|
slate-hyperscript: ^0.81.3
|
||||||
source-map-loader: ^4.0.0
|
source-map-loader: ^4.0.0
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -14129,7 +14129,7 @@ resolve@^2.0.0-next.3:
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@babel/runtime": ^7.7.4
|
"@babel/runtime": ^7.7.4
|
||||||
is-plain-object: ^5.0.0
|
is-plain-object: ^5.0.0
|
||||||
slate: ^0.81.3
|
slate: ^0.82.0
|
||||||
source-map-loader: ^4.0.0
|
source-map-loader: ^4.0.0
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
slate: ">=0.65.3"
|
slate: ">=0.65.3"
|
||||||
@@ -14236,7 +14236,7 @@ resolve@^2.0.0-next.3:
|
|||||||
react-dom: ">=16.8.0"
|
react-dom: ">=16.8.0"
|
||||||
react-test-renderer: ">=16.8.0"
|
react-test-renderer: ">=16.8.0"
|
||||||
scroll-into-view-if-needed: ^2.2.20
|
scroll-into-view-if-needed: ^2.2.20
|
||||||
slate: ^0.81.3
|
slate: ^0.82.0
|
||||||
slate-hyperscript: ^0.81.3
|
slate-hyperscript: ^0.81.3
|
||||||
source-map-loader: ^4.0.0
|
source-map-loader: ^4.0.0
|
||||||
tiny-invariant: 1.0.6
|
tiny-invariant: 1.0.6
|
||||||
@@ -14247,7 +14247,7 @@ resolve@^2.0.0-next.3:
|
|||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
"slate@^0.81.3, slate@workspace:*, slate@workspace:packages/slate":
|
"slate@^0.82.0, slate@workspace:*, slate@workspace:packages/slate":
|
||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "slate@workspace:packages/slate"
|
resolution: "slate@workspace:packages/slate"
|
||||||
dependencies:
|
dependencies:
|
||||||
|
Reference in New Issue
Block a user