mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-08-13 10:44:02 +02:00
Version Packages (#5162)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
d8dbbb19f7
commit
6efe3d9a22
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'slate-history': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Changes how selections are stored in the history resulting in more consistent results
|
|
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'slate': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Allow void elements to receive marks via markableVoid()
|
|
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'slate': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fixed above method that failed to get parentEntry when selection was range
|
|
@@ -1,5 +1,11 @@
|
|||||||
# slate-history
|
# slate-history
|
||||||
|
|
||||||
|
## 0.85.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- [#4717](https://github.com/ianstormtaylor/slate/pull/4717) [`d73026ee`](https://github.com/ianstormtaylor/slate/commit/d73026eed2d190da6153e91a914717978b155d8e) Thanks [@bryanph](https://github.com/bryanph)! - Changes how selections are stored in the history resulting in more consistent results
|
||||||
|
|
||||||
## 0.81.3
|
## 0.81.3
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "slate-history",
|
"name": "slate-history",
|
||||||
"description": "An operation-based history implementation for Slate editors.",
|
"description": "An operation-based history implementation for Slate editors.",
|
||||||
"version": "0.81.3",
|
"version": "0.85.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",
|
||||||
@@ -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.84.0",
|
"slate": "^0.85.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.84.0",
|
"slate": "^0.85.0",
|
||||||
"source-map-loader": "^4.0.0"
|
"source-map-loader": "^4.0.0"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
@@ -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.84.0",
|
"slate": "^0.85.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,13 @@
|
|||||||
# slate
|
# slate
|
||||||
|
|
||||||
|
## 0.85.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#5135](https://github.com/ianstormtaylor/slate/pull/5135) [`346f6572`](https://github.com/ianstormtaylor/slate/commit/346f6572fc8fdb6504bb18d8676f5bdeef7014eb) Thanks [@SmilinBrian](https://github.com/SmilinBrian)! - Allow void elements to receive marks via markableVoid()
|
||||||
|
|
||||||
|
* [#5168](https://github.com/ianstormtaylor/slate/pull/5168) [`3c49ff28`](https://github.com/ianstormtaylor/slate/commit/3c49ff28b3d188f69d8361bd682b7e8d0a1c13b6) Thanks [@i-artist](https://github.com/i-artist)! - Fixed above method that failed to get parentEntry when selection was range
|
||||||
|
|
||||||
## 0.84.0
|
## 0.84.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.84.0",
|
"version": "0.85.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",
|
||||||
|
@@ -14122,7 +14122,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.84.0
|
slate: ^0.85.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:
|
||||||
@@ -14136,7 +14136,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.84.0
|
slate: ^0.85.0
|
||||||
source-map-loader: ^4.0.0
|
source-map-loader: ^4.0.0
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
slate: ">=0.65.3"
|
slate: ">=0.65.3"
|
||||||
@@ -14243,7 +14243,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.84.0
|
slate: ^0.85.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
|
||||||
@@ -14254,7 +14254,7 @@ resolve@^2.0.0-next.3:
|
|||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
"slate@^0.84.0, slate@workspace:*, slate@workspace:packages/slate":
|
"slate@^0.85.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