mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-08-12 10:14:02 +02:00
Version Packages (#4683)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
e3afda9466
commit
fece5c1570
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'slate': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fixed the issue where the cursor jumps more than one character unexpectedly
|
|
@@ -1,12 +0,0 @@
|
|||||||
---
|
|
||||||
'slate-react': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Support SSR for autoCorrect, spellCheck and autoCapitalize.
|
|
||||||
Fixes prop mismatch between server and client.
|
|
||||||
Removes the need to add
|
|
||||||
<Editable
|
|
||||||
spellCheck={false}
|
|
||||||
autoCorrect="false"
|
|
||||||
autoCapitalize="false"
|
|
||||||
/>
|
|
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'slate': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Fix - deep-equals was always returning true when array props were equals.
|
|
@@ -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.70.0",
|
"slate": "^0.71.0",
|
||||||
"slate-hyperscript": "^0.67.0",
|
"slate-hyperscript": "^0.67.0",
|
||||||
"source-map-loader": "^0.2.4"
|
"source-map-loader": "^0.2.4"
|
||||||
},
|
},
|
||||||
|
@@ -18,7 +18,7 @@
|
|||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/runtime": "^7.7.4",
|
"@babel/runtime": "^7.7.4",
|
||||||
"slate": "^0.70.0",
|
"slate": "^0.71.0",
|
||||||
"source-map-loader": "^0.2.4"
|
"source-map-loader": "^0.2.4"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
@@ -1,5 +1,18 @@
|
|||||||
# slate-react
|
# slate-react
|
||||||
|
|
||||||
|
## 0.71.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- [#4682](https://github.com/ianstormtaylor/slate/pull/4682) [`e5380655`](https://github.com/ianstormtaylor/slate/commit/e53806557217b08bce6217b7d871cd5ae7dad31c) Thanks [@matthewkeil](https://github.com/matthewkeil)! - Support SSR for autoCorrect, spellCheck and autoCapitalize.
|
||||||
|
Fixes prop mismatch between server and client.
|
||||||
|
Removes the need to add
|
||||||
|
<Editable
|
||||||
|
spellCheck={false}
|
||||||
|
autoCorrect="false"
|
||||||
|
autoCapitalize="false"
|
||||||
|
/>
|
||||||
|
|
||||||
## 0.70.2
|
## 0.70.2
|
||||||
|
|
||||||
### 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.70.2",
|
"version": "0.71.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",
|
||||||
@@ -31,7 +31,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.70.0",
|
"slate": "^0.71.0",
|
||||||
"slate-hyperscript": "^0.67.0",
|
"slate-hyperscript": "^0.67.0",
|
||||||
"source-map-loader": "^0.2.4"
|
"source-map-loader": "^0.2.4"
|
||||||
},
|
},
|
||||||
|
@@ -1,5 +1,15 @@
|
|||||||
# slate
|
# slate
|
||||||
|
|
||||||
|
## 0.71.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- [#4672](https://github.com/ianstormtaylor/slate/pull/4672) [`2523dc4f`](https://github.com/ianstormtaylor/slate/commit/2523dc4f6e7fee81baf77a67da4c3adaab921f15) Thanks [@VictorBaron](https://github.com/VictorBaron)! - Fix - deep-equals was always returning true when array props were equals.
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#4671](https://github.com/ianstormtaylor/slate/pull/4671) [`e3afda94`](https://github.com/ianstormtaylor/slate/commit/e3afda946685795237f748e76c7bb051c09cb7fa) Thanks [@unageek](https://github.com/unageek)! - Fixed the issue where the cursor jumps more than one character unexpectedly
|
||||||
|
|
||||||
## 0.70.0
|
## 0.70.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor 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.70.0",
|
"version": "0.71.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",
|
||||||
|
@@ -14311,7 +14311,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.70.0
|
slate: ^0.71.0
|
||||||
slate-hyperscript: ^0.67.0
|
slate-hyperscript: ^0.67.0
|
||||||
source-map-loader: ^0.2.4
|
source-map-loader: ^0.2.4
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -14325,7 +14325,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.70.0
|
slate: ^0.71.0
|
||||||
source-map-loader: ^0.2.4
|
source-map-loader: ^0.2.4
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
slate: ">=0.65.3"
|
slate: ">=0.65.3"
|
||||||
@@ -14429,7 +14429,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.70.0
|
slate: ^0.71.0
|
||||||
slate-hyperscript: ^0.67.0
|
slate-hyperscript: ^0.67.0
|
||||||
source-map-loader: ^0.2.4
|
source-map-loader: ^0.2.4
|
||||||
tiny-invariant: 1.0.6
|
tiny-invariant: 1.0.6
|
||||||
@@ -14440,7 +14440,7 @@ resolve@^2.0.0-next.3:
|
|||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
"slate@^0.70.0, slate@workspace:*, slate@workspace:packages/slate":
|
"slate@^0.71.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