mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-08-14 11:14:04 +02:00
Version Packages (#4713)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
8bc6a46460
commit
dc2999a1aa
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'slate-react': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Update android restoreDOM to use partial dom restoring
|
|
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'slate-react': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
fix: add 'readonly' dependency for onDragStart callback
|
|
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'slate-react': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Fix CJK IME (e.g. Chinese or Japanese) double input
|
|
@@ -1,22 +0,0 @@
|
|||||||
---
|
|
||||||
'slate': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Allow `Operation` type to be extended
|
|
||||||
|
|
||||||
For example:
|
|
||||||
|
|
||||||
```
|
|
||||||
import type { BaseOperation } from 'slate'
|
|
||||||
|
|
||||||
type CustomOperation =
|
|
||||||
| BaseOperation
|
|
||||||
| YourCustomOperation
|
|
||||||
| AnotherCustomOperation
|
|
||||||
|
|
||||||
declare module 'slate' {
|
|
||||||
interface CustomTypes {
|
|
||||||
Operation: CustomOperation;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
```
|
|
@@ -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.71.0",
|
"slate": "^0.72.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.71.0",
|
"slate": "^0.72.0",
|
||||||
"source-map-loader": "^0.2.4"
|
"source-map-loader": "^0.2.4"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
@@ -1,5 +1,17 @@
|
|||||||
# slate-react
|
# slate-react
|
||||||
|
|
||||||
|
## 0.72.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- [#4702](https://github.com/ianstormtaylor/slate/pull/4702) [`8bc6a464`](https://github.com/ianstormtaylor/slate/commit/8bc6a464600d6820d85f55fdaf71e9ea01702eb5) Thanks [@ttitoo](https://github.com/ttitoo)! - Fix CJK IME (e.g. Chinese or Japanese) double input
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#4706](https://github.com/ianstormtaylor/slate/pull/4706) [`6d194077`](https://github.com/ianstormtaylor/slate/commit/6d194077763ec0a9d5642be5cafef20e65dbce8e) Thanks [@BitPhinix](https://github.com/BitPhinix)! - Update android restoreDOM to use partial dom restoring
|
||||||
|
|
||||||
|
* [#4707](https://github.com/ianstormtaylor/slate/pull/4707) [`c020ca23`](https://github.com/ianstormtaylor/slate/commit/c020ca23b6f5d2307eb62630566ec711def89fcf) Thanks [@ahoisl](https://github.com/ahoisl)! - fix: add 'readonly' dependency for onDragStart callback
|
||||||
|
|
||||||
## 0.71.0
|
## 0.71.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor 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.71.0",
|
"version": "0.72.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.71.0",
|
"slate": "^0.72.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,28 @@
|
|||||||
# slate
|
# slate
|
||||||
|
|
||||||
|
## 0.72.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#4708](https://github.com/ianstormtaylor/slate/pull/4708) [`2fc7ad92`](https://github.com/ianstormtaylor/slate/commit/2fc7ad924cfbb75de59f685eeabb0375769201b9) Thanks [@bryanph](https://github.com/bryanph)! - Allow `Operation` type to be extended
|
||||||
|
|
||||||
|
For example:
|
||||||
|
|
||||||
|
```
|
||||||
|
import type { BaseOperation } from 'slate'
|
||||||
|
|
||||||
|
type CustomOperation =
|
||||||
|
| BaseOperation
|
||||||
|
| YourCustomOperation
|
||||||
|
| AnotherCustomOperation
|
||||||
|
|
||||||
|
declare module 'slate' {
|
||||||
|
interface CustomTypes {
|
||||||
|
Operation: CustomOperation;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
## 0.71.0
|
## 0.71.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.71.0",
|
"version": "0.72.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.71.0
|
slate: ^0.72.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.71.0
|
slate: ^0.72.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.71.0
|
slate: ^0.72.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.71.0, slate@workspace:*, slate@workspace:packages/slate":
|
"slate@^0.72.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