1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-22 06:53:25 +02:00

Version Packages (#4713)

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2021-12-07 06:57:26 -07:00
committed by GitHub
parent 8bc6a46460
commit dc2999a1aa
11 changed files with 44 additions and 46 deletions

View File

@@ -1,5 +0,0 @@
---
'slate-react': patch
---
Update android restoreDOM to use partial dom restoring

View File

@@ -1,5 +0,0 @@
---
'slate-react': patch
---
fix: add 'readonly' dependency for onDragStart callback

View File

@@ -1,5 +0,0 @@
---
'slate-react': minor
---
Fix CJK IME (e.g. Chinese or Japanese) double input

View File

@@ -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;
}
}
```