mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-04-20 05:11:53 +02:00
Version Packages (#5373)
* Version Packages * Update changelog --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: Dylan Schiemann <dylan@dojotoolkit.org>
This commit is contained in:
parent
bab6943be9
commit
07b049f59b
@ -1,5 +0,0 @@
|
||||
---
|
||||
'slate-react': patch
|
||||
---
|
||||
|
||||
Fix issue when tabbing into editor in Safari (https://github.com/udecode/plate/issues/2315)
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
'slate-react': patch
|
||||
---
|
||||
|
||||
Delay rendering of placeholder to avoid IME hiding
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
'slate-history': minor
|
||||
---
|
||||
|
||||
- Extracts history push to own function
|
@ -1,7 +0,0 @@
|
||||
---
|
||||
'slate': minor
|
||||
---
|
||||
|
||||
- Add `isSelectable` to `editor` (default true). A non-selectable element is skipped over when navigating using arrow keys.
|
||||
- Add `ignoreNonSelectable` to `Editor.nodes`, `Editor.positions`, `Editor.after` and `Editor.before` (default false)
|
||||
- `Transforms.move` ignores non-selectable elements
|
@ -1,5 +0,0 @@
|
||||
---
|
||||
'slate': minor
|
||||
---
|
||||
|
||||
- Add `isElementReadOnly` to `editor`. A read-only element behaves much like a void with regard to selection and deletion, but renders its `children` the same as any other non-void node.
|
@ -1,5 +1,11 @@
|
||||
# slate-history
|
||||
|
||||
## 0.93.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [#5382](https://github.com/ianstormtaylor/slate/commit/bab6943be9e0a307538c29a9dc5fcf23c09c5e40) Thanks [@reinvanimschoot](https://github.com/reinvanimschoot)! - Extracts history push to own function
|
||||
|
||||
## 0.86.0
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "slate-history",
|
||||
"description": "An operation-based history implementation for Slate editors.",
|
||||
"version": "0.86.0",
|
||||
"version": "0.93.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.91.1",
|
||||
"slate": "^0.93.0",
|
||||
"slate-hyperscript": "^0.81.3",
|
||||
"source-map-loader": "^4.0.0"
|
||||
},
|
||||
|
@ -18,7 +18,7 @@
|
||||
},
|
||||
"devDependencies": {
|
||||
"@babel/runtime": "^7.7.4",
|
||||
"slate": "^0.91.1",
|
||||
"slate": "^0.93.0",
|
||||
"source-map-loader": "^4.0.0"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
@ -1,5 +1,13 @@
|
||||
# slate-react
|
||||
|
||||
## 0.93.0
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#5383](https://github.com/ianstormtaylor/slate/pull/5383) [`3c3ea29a`](https://github.com/ianstormtaylor/slate/commit/3c3ea29a2d7c70bab3629f0f78ea28dca4058b53) Thanks [@12joan](https://github.com/12joan)! - Fix issue when tabbing into editor in Safari (https://github.com/udecode/plate/issues/2315)
|
||||
|
||||
* [#5368](https://github.com/ianstormtaylor/slate/pull/5368) [`5a0d3974`](https://github.com/ianstormtaylor/slate/commit/5a0d3974d6cb2c099dff4c0976e9390d24c345ad) Thanks [@edhager](https://github.com/edhager)! - Delay rendering of placeholder to avoid IME hiding
|
||||
|
||||
## 0.92.0
|
||||
|
||||
### Minor Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "slate-react",
|
||||
"description": "Tools for building completely customizable richtext editors with React.",
|
||||
"version": "0.92.0",
|
||||
"version": "0.93.0",
|
||||
"license": "MIT",
|
||||
"repository": "git://github.com/ianstormtaylor/slate.git",
|
||||
"main": "dist/index.js",
|
||||
@ -35,7 +35,7 @@
|
||||
"react": ">=16.8.0",
|
||||
"react-dom": ">=16.8.0",
|
||||
"react-test-renderer": ">=16.8.0",
|
||||
"slate": "^0.91.4",
|
||||
"slate": "^0.93.0",
|
||||
"slate-hyperscript": "^0.81.3",
|
||||
"source-map-loader": "^4.0.0"
|
||||
},
|
||||
|
@ -1,5 +1,15 @@
|
||||
# slate
|
||||
|
||||
## 0.93.0
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- [#5374](https://github.com/ianstormtaylor/slate/pull/5374) [`b52e08b0`](https://github.com/ianstormtaylor/slate/commit/b52e08b0eafdcf1c77439e282c9dc89a4c72fbf1) Thanks [@12joan](https://github.com/12joan)! - - Add `isSelectable` to `editor` (default true). A non-selectable element is skipped over when navigating using arrow keys.
|
||||
- Add `ignoreNonSelectable` to `Editor.nodes`, `Editor.positions`, `Editor.after` and `Editor.before` (default false)
|
||||
- `Transforms.move` ignores non-selectable elements
|
||||
|
||||
* [#5374](https://github.com/ianstormtaylor/slate/pull/5374) [`b52e08b0`](https://github.com/ianstormtaylor/slate/commit/b52e08b0eafdcf1c77439e282c9dc89a4c72fbf1) Thanks [@12joan](https://github.com/12joan)! - - Add `isElementReadOnly` to `editor`. A read-only element behaves much like a void with regard to selection and deletion, but renders its `children` the same as any other non-void node.
|
||||
|
||||
## 0.91.4
|
||||
|
||||
### Patch Changes
|
||||
|
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "slate",
|
||||
"description": "A completely customizable framework for building rich text editors.",
|
||||
"version": "0.91.4",
|
||||
"version": "0.93.0",
|
||||
"license": "MIT",
|
||||
"repository": "git://github.com/ianstormtaylor/slate.git",
|
||||
"main": "dist/index.js",
|
||||
|
@ -13820,7 +13820,7 @@ resolve@^2.0.0-next.3:
|
||||
"@babel/runtime": ^7.7.4
|
||||
is-plain-object: ^5.0.0
|
||||
lodash: ^4.17.21
|
||||
slate: ^0.91.1
|
||||
slate: ^0.93.0
|
||||
slate-hyperscript: ^0.81.3
|
||||
source-map-loader: ^4.0.0
|
||||
peerDependencies:
|
||||
@ -13834,7 +13834,7 @@ resolve@^2.0.0-next.3:
|
||||
dependencies:
|
||||
"@babel/runtime": ^7.7.4
|
||||
is-plain-object: ^5.0.0
|
||||
slate: ^0.91.1
|
||||
slate: ^0.93.0
|
||||
source-map-loader: ^4.0.0
|
||||
peerDependencies:
|
||||
slate: ">=0.65.3"
|
||||
@ -13946,7 +13946,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.91.4
|
||||
slate: ^0.93.0
|
||||
slate-hyperscript: ^0.81.3
|
||||
source-map-loader: ^4.0.0
|
||||
tiny-invariant: 1.0.6
|
||||
@ -13957,7 +13957,7 @@ resolve@^2.0.0-next.3:
|
||||
languageName: unknown
|
||||
linkType: soft
|
||||
|
||||
"slate@^0.91.1, slate@^0.91.4, slate@workspace:*, slate@workspace:packages/slate":
|
||||
"slate@^0.93.0, slate@workspace:*, slate@workspace:packages/slate":
|
||||
version: 0.0.0-use.local
|
||||
resolution: "slate@workspace:packages/slate"
|
||||
dependencies:
|
||||
|
Loading…
x
Reference in New Issue
Block a user