mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-08-12 10:14:02 +02:00
Version Packages (#5198)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
e416d00b6c
commit
a24ddd12cd
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'slate': patch
|
||||
---
|
||||
|
||||
Add hanging option to unsetNodes so it matches setNodes
|
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'slate': patch
|
||||
---
|
||||
|
||||
Stops Editor.unhangRange() from adjusting the range in some cases when it was not actually hanging
|
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'slate-history': patch
|
||||
---
|
||||
|
||||
Fix isHistory check.
|
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'slate-react': minor
|
||||
---
|
||||
|
||||
Make it possible to copy/paste void elements
|
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'slate': patch
|
||||
---
|
||||
|
||||
Report marks applied to a markableVoid if selection is collapsed
|
@@ -1,5 +1,11 @@
|
||||
# slate-history
|
||||
|
||||
## 0.86.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#5197](https://github.com/ianstormtaylor/slate/pull/5197) [`70b64dc8`](https://github.com/ianstormtaylor/slate/commit/70b64dc8f10199658ac09bfef141b56187498652) Thanks [@jacobcarpenter](https://github.com/jacobcarpenter)! - Fix isHistory check.
|
||||
|
||||
## 0.85.0
|
||||
|
||||
### Minor Changes
|
||||
|
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "slate-history",
|
||||
"description": "An operation-based history implementation for Slate editors.",
|
||||
"version": "0.85.0",
|
||||
"version": "0.86.0",
|
||||
"license": "MIT",
|
||||
"repository": "git://github.com/ianstormtaylor/slate.git",
|
||||
"main": "dist/index.js",
|
||||
@@ -19,7 +19,7 @@
|
||||
"devDependencies": {
|
||||
"@babel/runtime": "^7.7.4",
|
||||
"lodash": "^4.17.21",
|
||||
"slate": "^0.85.0",
|
||||
"slate": "^0.86.0",
|
||||
"slate-hyperscript": "^0.81.3",
|
||||
"source-map-loader": "^4.0.0"
|
||||
},
|
||||
|
@@ -18,7 +18,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/runtime": "^7.7.4",
|
||||
"slate": "^0.85.0",
|
||||
"slate": "^0.86.0",
|
||||
"source-map-loader": "^4.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@@ -1,5 +1,11 @@
|
||||
# slate-react
|
||||
|
||||
## 0.86.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [#5121](https://github.com/ianstormtaylor/slate/pull/5121) [`06942c6d`](https://github.com/ianstormtaylor/slate/commit/06942c6d7e4b8418a467f022750b010491dbdbe7) Thanks [@laufeyrut](https://github.com/laufeyrut)! - Make it possible to copy/paste void elements
|
||||
|
||||
## 0.83.2
|
||||
|
||||
### Patch Changes
|
||||
|
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "slate-react",
|
||||
"description": "Tools for building completely customizable richtext editors with React.",
|
||||
"version": "0.83.2",
|
||||
"version": "0.86.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.85.0",
|
||||
"slate": "^0.86.0",
|
||||
"slate-hyperscript": "^0.81.3",
|
||||
"source-map-loader": "^4.0.0"
|
||||
},
|
||||
|
@@ -1,5 +1,15 @@
|
||||
# slate
|
||||
|
||||
## 0.86.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#5189](https://github.com/ianstormtaylor/slate/pull/5189) [`fbc9838f`](https://github.com/ianstormtaylor/slate/commit/fbc9838fd72e78bfa9af49013981939773dcca11) Thanks [@SmilinBrian](https://github.com/SmilinBrian)! - Add hanging option to unsetNodes so it matches setNodes
|
||||
|
||||
* [#5193](https://github.com/ianstormtaylor/slate/pull/5193) [`6909a8f7`](https://github.com/ianstormtaylor/slate/commit/6909a8f7da0f70b1ef3b5c3a665e8d0d09e6fa99) Thanks [@SmilinBrian](https://github.com/SmilinBrian)! - Stops Editor.unhangRange() from adjusting the range in some cases when it was not actually hanging
|
||||
|
||||
- [#5186](https://github.com/ianstormtaylor/slate/pull/5186) [`e416d00b`](https://github.com/ianstormtaylor/slate/commit/e416d00b6c95d05a1e10f738bfbbddd6cb940ab6) Thanks [@SmilinBrian](https://github.com/SmilinBrian)! - Report marks applied to a markableVoid if selection is collapsed
|
||||
|
||||
## 0.85.0
|
||||
|
||||
### Patch Changes
|
||||
|
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "slate",
|
||||
"description": "A completely customizable framework for building rich text editors.",
|
||||
"version": "0.85.0",
|
||||
"version": "0.86.0",
|
||||
"license": "MIT",
|
||||
"repository": "git://github.com/ianstormtaylor/slate.git",
|
||||
"main": "dist/index.js",
|
||||
|
@@ -14122,7 +14122,7 @@ resolve@^2.0.0-next.3:
|
||||
"@babel/runtime": ^7.7.4
|
||||
is-plain-object: ^5.0.0
|
||||
lodash: ^4.17.21
|
||||
slate: ^0.85.0
|
||||
slate: ^0.86.0
|
||||
slate-hyperscript: ^0.81.3
|
||||
source-map-loader: ^4.0.0
|
||||
peerDependencies:
|
||||
@@ -14136,7 +14136,7 @@ resolve@^2.0.0-next.3:
|
||||
dependencies:
|
||||
"@babel/runtime": ^7.7.4
|
||||
is-plain-object: ^5.0.0
|
||||
slate: ^0.85.0
|
||||
slate: ^0.86.0
|
||||
source-map-loader: ^4.0.0
|
||||
peerDependencies:
|
||||
slate: ">=0.65.3"
|
||||
@@ -14243,7 +14243,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.85.0
|
||||
slate: ^0.86.0
|
||||
slate-hyperscript: ^0.81.3
|
||||
source-map-loader: ^4.0.0
|
||||
tiny-invariant: 1.0.6
|
||||
@@ -14254,7 +14254,7 @@ resolve@^2.0.0-next.3:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"slate@^0.85.0, slate@workspace:*, slate@workspace:packages/slate":
|
||||
"slate@^0.86.0, slate@workspace:*, slate@workspace:packages/slate":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "slate@workspace:packages/slate"
|
||||
dependencies:
|
||||
|
Reference in New Issue
Block a user