mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-07-30 20:10:24 +02:00
Version Packages (#4610)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
0b59ad5414
commit
d467e33c33
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'slate-react': patch
|
||||
---
|
||||
|
||||
Fixed crash on self-deleting void node
|
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'slate': patch
|
||||
---
|
||||
|
||||
Allow typing at the end of inline elements
|
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'slate-react': patch
|
||||
---
|
||||
|
||||
Fix crash on drag and drop image on readOnly editable
|
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'slate-react': patch
|
||||
---
|
||||
|
||||
Add insertFragmentData and insertTextData to the ReactEditor API
|
@@ -19,7 +19,7 @@
|
||||
"devDependencies": {
|
||||
"@babel/runtime": "^7.7.4",
|
||||
"lodash": "^4.17.21",
|
||||
"slate": "^0.66.0",
|
||||
"slate": "^0.67.1",
|
||||
"slate-hyperscript": "^0.67.0",
|
||||
"source-map-loader": "^0.2.4"
|
||||
},
|
||||
|
@@ -18,7 +18,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/runtime": "^7.7.4",
|
||||
"slate": "^0.66.0",
|
||||
"slate": "^0.67.1",
|
||||
"source-map-loader": "^0.2.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@@ -1,5 +1,15 @@
|
||||
# slate-react
|
||||
|
||||
## 0.67.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#4616](https://github.com/ianstormtaylor/slate/pull/4616) [`77d9f60a`](https://github.com/ianstormtaylor/slate/commit/77d9f60ab5e497aadf2d0c9564b1e79525984734) Thanks [@jameshfisher](https://github.com/jameshfisher)! - Fixed crash on self-deleting void node
|
||||
|
||||
* [#4617](https://github.com/ianstormtaylor/slate/pull/4617) [`b186d3ea`](https://github.com/ianstormtaylor/slate/commit/b186d3ea12ce59c024a56fcbad4604c919757d36) Thanks [@imdbsd](https://github.com/imdbsd)! - Fix crash on drag and drop image on readOnly editable
|
||||
|
||||
- [#4614](https://github.com/ianstormtaylor/slate/pull/4614) [`72160fac`](https://github.com/ianstormtaylor/slate/commit/72160fac08fde98d223c9dd2b4263897d23454f6) Thanks [@echarles](https://github.com/echarles)! - Add insertFragmentData and insertTextData to the ReactEditor API
|
||||
|
||||
## 0.67.0
|
||||
|
||||
### Minor Changes
|
||||
|
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "slate-react",
|
||||
"description": "Tools for building completely customizable richtext editors with React.",
|
||||
"version": "0.67.0",
|
||||
"version": "0.67.1",
|
||||
"license": "MIT",
|
||||
"repository": "git://github.com/ianstormtaylor/slate.git",
|
||||
"main": "dist/index.js",
|
||||
@@ -31,7 +31,7 @@
|
||||
"react": ">=16.8.0",
|
||||
"react-dom": ">=16.8.0",
|
||||
"react-test-renderer": ">=16.8.0",
|
||||
"slate": "^0.66.2",
|
||||
"slate": "^0.67.1",
|
||||
"slate-hyperscript": "^0.67.0",
|
||||
"source-map-loader": "^0.2.4"
|
||||
},
|
||||
|
@@ -1,5 +1,11 @@
|
||||
# slate
|
||||
|
||||
## 0.67.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#4578](https://github.com/ianstormtaylor/slate/pull/4578) [`67badb7d`](https://github.com/ianstormtaylor/slate/commit/67badb7dd03c6d36d31b90689247553c0386d771) Thanks [@jameshfisher](https://github.com/jameshfisher)! - Allow typing at the end of inline elements
|
||||
|
||||
## 0.66.5
|
||||
|
||||
### Patch Changes
|
||||
|
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "slate",
|
||||
"description": "A completely customizable framework for building rich text editors.",
|
||||
"version": "0.66.5",
|
||||
"version": "0.67.1",
|
||||
"license": "MIT",
|
||||
"repository": "git://github.com/ianstormtaylor/slate.git",
|
||||
"main": "dist/index.js",
|
||||
|
@@ -14311,7 +14311,7 @@ resolve@^2.0.0-next.3:
|
||||
"@babel/runtime": ^7.7.4
|
||||
is-plain-object: ^5.0.0
|
||||
lodash: ^4.17.21
|
||||
slate: ^0.66.0
|
||||
slate: ^0.67.1
|
||||
slate-hyperscript: ^0.67.0
|
||||
source-map-loader: ^0.2.4
|
||||
peerDependencies:
|
||||
@@ -14325,7 +14325,7 @@ resolve@^2.0.0-next.3:
|
||||
dependencies:
|
||||
"@babel/runtime": ^7.7.4
|
||||
is-plain-object: ^5.0.0
|
||||
slate: ^0.66.0
|
||||
slate: ^0.67.1
|
||||
source-map-loader: ^0.2.4
|
||||
peerDependencies:
|
||||
slate: ">=0.65.3"
|
||||
@@ -14429,7 +14429,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.66.2
|
||||
slate: ^0.67.1
|
||||
slate-hyperscript: ^0.67.0
|
||||
source-map-loader: ^0.2.4
|
||||
tiny-invariant: 1.0.6
|
||||
@@ -14440,7 +14440,7 @@ resolve@^2.0.0-next.3:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"slate@^0.66.0, slate@^0.66.2, slate@workspace:*, slate@workspace:packages/slate":
|
||||
"slate@^0.67.1, 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