mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-08-12 10:14:02 +02:00
Version Packages (#5860)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
committed by
GitHub
parent
293aca9c7a
commit
9cce07b23f
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'slate-history': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fix certain undos undoing more than they should
|
|
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'slate-react': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fix IME issues in Firefox caused by placeholder
|
|
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'slate-react': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fix a crash on iOS when composing text using an IME at the start of a block, at the cost of breaking capitalization on iOS in an empty editor.
|
|
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'slate': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Optimize editor#above and allow passing a location that doesnt exist as long as its parent exists
|
|
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'slate': minor
|
|
||||||
---
|
|
||||||
|
|
||||||
Allow to prevent data-loss in normalizeNode
|
|
@@ -1,6 +0,0 @@
|
|||||||
---
|
|
||||||
'slate-hyperscript': patch
|
|
||||||
'slate-history': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Increase minimum `slate` version to `0.114.3`
|
|
@@ -1,5 +0,0 @@
|
|||||||
---
|
|
||||||
'slate': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Fix: Inserting a fragment containing exactly two blocks merges those blocks together.
|
|
@@ -1,8 +0,0 @@
|
|||||||
---
|
|
||||||
'slate': patch
|
|
||||||
'slate-history': patch
|
|
||||||
'slate-hyperscript': patch
|
|
||||||
'slate-react': patch
|
|
||||||
---
|
|
||||||
|
|
||||||
Optimize `isElement`, `isText`, `isNodeList` and `isEditor` by removing dependency on `is-plain-object` and by performing shallow checks by default. To perform a full check, including all descendants, pass the `{ deep: true }` option to `isElement`, `isNodeList` or `isEditor`.
|
|
@@ -29,8 +29,8 @@
|
|||||||
"@types/jsdom": "^21.1.4",
|
"@types/jsdom": "^21.1.4",
|
||||||
"@types/lodash": "^4.14.200",
|
"@types/lodash": "^4.14.200",
|
||||||
"@types/resize-observer-browser": "^0.1.8",
|
"@types/resize-observer-browser": "^0.1.8",
|
||||||
"slate": "^0.114.0",
|
"slate": "^0.115.0",
|
||||||
"slate-hyperscript": "^0.100.0",
|
"slate-hyperscript": "^0.115.0",
|
||||||
"source-map-loader": "^4.0.1"
|
"source-map-loader": "^4.0.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
@@ -1,5 +1,15 @@
|
|||||||
# slate-history
|
# slate-history
|
||||||
|
|
||||||
|
## 0.115.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#5866](https://github.com/ianstormtaylor/slate/pull/5866) [`7f5f9e1c`](https://github.com/ianstormtaylor/slate/commit/7f5f9e1c626e61ec476087212b22ee9ff86538e4) Thanks [@nabbydude](https://github.com/nabbydude)! - Fix certain undos undoing more than they should
|
||||||
|
|
||||||
|
- [#5862](https://github.com/ianstormtaylor/slate/pull/5862) [`98b115b7`](https://github.com/ianstormtaylor/slate/commit/98b115b7e1ce8a9bfec57f80bcb9a4e11152eca5) Thanks [@12joan](https://github.com/12joan)! - Increase minimum `slate` version to `0.114.3`
|
||||||
|
|
||||||
|
- [#5859](https://github.com/ianstormtaylor/slate/pull/5859) [`72532fd2`](https://github.com/ianstormtaylor/slate/commit/72532fd2d7be594251ea26fefb5c1ce8337b76ed) Thanks [@12joan](https://github.com/12joan)! - Optimize `isElement`, `isText`, `isNodeList` and `isEditor` by removing dependency on `is-plain-object` and by performing shallow checks by default. To perform a full check, including all descendants, pass the `{ deep: true }` option to `isElement`, `isNodeList` or `isEditor`.
|
||||||
|
|
||||||
## 0.113.1
|
## 0.113.1
|
||||||
|
|
||||||
### Patch Changes
|
### Patch Changes
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "slate-history",
|
"name": "slate-history",
|
||||||
"description": "An operation-based history implementation for Slate editors.",
|
"description": "An operation-based history implementation for Slate editors.",
|
||||||
"version": "0.113.1",
|
"version": "0.115.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",
|
||||||
@@ -16,8 +16,8 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/runtime": "^7.23.2",
|
"@babel/runtime": "^7.23.2",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"slate": "^0.114.0",
|
"slate": "^0.115.0",
|
||||||
"slate-hyperscript": "^0.100.0",
|
"slate-hyperscript": "^0.115.0",
|
||||||
"source-map-loader": "^4.0.1"
|
"source-map-loader": "^4.0.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
@@ -1,5 +1,13 @@
|
|||||||
# slate-hyperscript
|
# slate-hyperscript
|
||||||
|
|
||||||
|
## 0.115.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#5862](https://github.com/ianstormtaylor/slate/pull/5862) [`98b115b7`](https://github.com/ianstormtaylor/slate/commit/98b115b7e1ce8a9bfec57f80bcb9a4e11152eca5) Thanks [@12joan](https://github.com/12joan)! - Increase minimum `slate` version to `0.114.3`
|
||||||
|
|
||||||
|
- [#5859](https://github.com/ianstormtaylor/slate/pull/5859) [`72532fd2`](https://github.com/ianstormtaylor/slate/commit/72532fd2d7be594251ea26fefb5c1ce8337b76ed) Thanks [@12joan](https://github.com/12joan)! - Optimize `isElement`, `isText`, `isNodeList` and `isEditor` by removing dependency on `is-plain-object` and by performing shallow checks by default. To perform a full check, including all descendants, pass the `{ deep: true }` option to `isElement`, `isNodeList` or `isEditor`.
|
||||||
|
|
||||||
## 0.100.0
|
## 0.100.0
|
||||||
|
|
||||||
### Minor Changes
|
### Minor Changes
|
||||||
|
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"name": "slate-hyperscript",
|
"name": "slate-hyperscript",
|
||||||
"description": "A hyperscript helper for creating Slate documents.",
|
"description": "A hyperscript helper for creating Slate documents.",
|
||||||
"version": "0.100.0",
|
"version": "0.115.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",
|
||||||
@@ -15,7 +15,7 @@
|
|||||||
],
|
],
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/runtime": "^7.23.2",
|
"@babel/runtime": "^7.23.2",
|
||||||
"slate": "^0.114.0",
|
"slate": "^0.115.0",
|
||||||
"source-map-loader": "^4.0.1"
|
"source-map-loader": "^4.0.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
@@ -1,5 +1,15 @@
|
|||||||
# slate-react
|
# slate-react
|
||||||
|
|
||||||
|
## 0.115.0
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#5881](https://github.com/ianstormtaylor/slate/pull/5881) [`05263b54`](https://github.com/ianstormtaylor/slate/commit/05263b544c32b4c704d141dc5142190f18c056e1) Thanks [@12joan](https://github.com/12joan)! - Fix IME issues in Firefox caused by placeholder
|
||||||
|
|
||||||
|
- [#5877](https://github.com/ianstormtaylor/slate/pull/5877) [`747ebfda`](https://github.com/ianstormtaylor/slate/commit/747ebfda0a06b29fc31720f9172c67222fbeae07) Thanks [@12joan](https://github.com/12joan)! - Fix a crash on iOS when composing text using an IME at the start of a block, at the cost of breaking capitalization on iOS in an empty editor.
|
||||||
|
|
||||||
|
- [#5859](https://github.com/ianstormtaylor/slate/pull/5859) [`72532fd2`](https://github.com/ianstormtaylor/slate/commit/72532fd2d7be594251ea26fefb5c1ce8337b76ed) Thanks [@12joan](https://github.com/12joan)! - Optimize `isElement`, `isText`, `isNodeList` and `isEditor` by removing dependency on `is-plain-object` and by performing shallow checks by default. To perform a full check, including all descendants, pass the `{ deep: true }` option to `isElement`, `isNodeList` or `isEditor`.
|
||||||
|
|
||||||
## 0.114.2
|
## 0.114.2
|
||||||
|
|
||||||
### Patch Changes
|
### Patch 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.114.2",
|
"version": "0.115.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",
|
||||||
@@ -33,9 +33,9 @@
|
|||||||
"@types/resize-observer-browser": "^0.1.8",
|
"@types/resize-observer-browser": "^0.1.8",
|
||||||
"react": "^18.2.0",
|
"react": "^18.2.0",
|
||||||
"react-dom": "^18.2.0",
|
"react-dom": "^18.2.0",
|
||||||
"slate": "^0.114.0",
|
"slate": "^0.115.0",
|
||||||
"slate-dom": "^0.114.0",
|
"slate-dom": "^0.114.0",
|
||||||
"slate-hyperscript": "^0.100.0",
|
"slate-hyperscript": "^0.115.0",
|
||||||
"source-map-loader": "^4.0.1"
|
"source-map-loader": "^4.0.1"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
|
@@ -1,5 +1,19 @@
|
|||||||
# slate
|
# slate
|
||||||
|
|
||||||
|
## 0.115.0
|
||||||
|
|
||||||
|
### Minor Changes
|
||||||
|
|
||||||
|
- [#5878](https://github.com/ianstormtaylor/slate/pull/5878) [`11b957a4`](https://github.com/ianstormtaylor/slate/commit/11b957a44171634d032d79ad8feaf548b78e58b0) Thanks [@ahoisl](https://github.com/ahoisl)! - Allow to prevent data-loss in normalizeNode
|
||||||
|
|
||||||
|
### Patch Changes
|
||||||
|
|
||||||
|
- [#5880](https://github.com/ianstormtaylor/slate/pull/5880) [`de260565`](https://github.com/ianstormtaylor/slate/commit/de260565c70c1a39acd02961f76ede6ff094b881) Thanks [@nabbydude](https://github.com/nabbydude)! - Optimize editor#above and allow passing a location that doesnt exist as long as its parent exists
|
||||||
|
|
||||||
|
- [#5875](https://github.com/ianstormtaylor/slate/pull/5875) [`896bc9c7`](https://github.com/ianstormtaylor/slate/commit/896bc9c7c75e929e861e341fc4d7cc7395e8e82a) Thanks [@12joan](https://github.com/12joan)! - Fix: Inserting a fragment containing exactly two blocks merges those blocks together.
|
||||||
|
|
||||||
|
- [#5859](https://github.com/ianstormtaylor/slate/pull/5859) [`72532fd2`](https://github.com/ianstormtaylor/slate/commit/72532fd2d7be594251ea26fefb5c1ce8337b76ed) Thanks [@12joan](https://github.com/12joan)! - Optimize `isElement`, `isText`, `isNodeList` and `isEditor` by removing dependency on `is-plain-object` and by performing shallow checks by default. To perform a full check, including all descendants, pass the `{ deep: true }` option to `isElement`, `isNodeList` or `isEditor`.
|
||||||
|
|
||||||
## 0.114.0
|
## 0.114.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.114.0",
|
"version": "0.115.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",
|
||||||
@@ -20,7 +20,7 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@babel/runtime": "^7.23.2",
|
"@babel/runtime": "^7.23.2",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"slate-hyperscript": "^0.100.0",
|
"slate-hyperscript": "^0.115.0",
|
||||||
"source-map-loader": "^4.0.1"
|
"source-map-loader": "^4.0.1"
|
||||||
},
|
},
|
||||||
"keywords": [
|
"keywords": [
|
||||||
|
20
yarn.lock
20
yarn.lock
@@ -13288,8 +13288,8 @@ __metadata:
|
|||||||
is-plain-object: "npm:^5.0.0"
|
is-plain-object: "npm:^5.0.0"
|
||||||
lodash: "npm:^4.17.21"
|
lodash: "npm:^4.17.21"
|
||||||
scroll-into-view-if-needed: "npm:^3.1.0"
|
scroll-into-view-if-needed: "npm:^3.1.0"
|
||||||
slate: "npm:^0.114.0"
|
slate: "npm:^0.115.0"
|
||||||
slate-hyperscript: "npm:^0.100.0"
|
slate-hyperscript: "npm:^0.115.0"
|
||||||
source-map-loader: "npm:^4.0.1"
|
source-map-loader: "npm:^4.0.1"
|
||||||
tiny-invariant: "npm:1.3.1"
|
tiny-invariant: "npm:1.3.1"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -13303,20 +13303,20 @@ __metadata:
|
|||||||
dependencies:
|
dependencies:
|
||||||
"@babel/runtime": "npm:^7.23.2"
|
"@babel/runtime": "npm:^7.23.2"
|
||||||
lodash: "npm:^4.17.21"
|
lodash: "npm:^4.17.21"
|
||||||
slate: "npm:^0.114.0"
|
slate: "npm:^0.115.0"
|
||||||
slate-hyperscript: "npm:^0.100.0"
|
slate-hyperscript: "npm:^0.115.0"
|
||||||
source-map-loader: "npm:^4.0.1"
|
source-map-loader: "npm:^4.0.1"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
slate: ">=0.114.3"
|
slate: ">=0.114.3"
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
"slate-hyperscript@npm:^0.100.0, slate-hyperscript@workspace:*, slate-hyperscript@workspace:packages/slate-hyperscript":
|
"slate-hyperscript@npm:^0.115.0, slate-hyperscript@workspace:*, slate-hyperscript@workspace:packages/slate-hyperscript":
|
||||||
version: 0.0.0-use.local
|
version: 0.0.0-use.local
|
||||||
resolution: "slate-hyperscript@workspace:packages/slate-hyperscript"
|
resolution: "slate-hyperscript@workspace:packages/slate-hyperscript"
|
||||||
dependencies:
|
dependencies:
|
||||||
"@babel/runtime": "npm:^7.23.2"
|
"@babel/runtime": "npm:^7.23.2"
|
||||||
slate: "npm:^0.114.0"
|
slate: "npm:^0.115.0"
|
||||||
source-map-loader: "npm:^4.0.1"
|
source-map-loader: "npm:^4.0.1"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
slate: ">=0.114.3"
|
slate: ">=0.114.3"
|
||||||
@@ -13429,9 +13429,9 @@ __metadata:
|
|||||||
react: "npm:^18.2.0"
|
react: "npm:^18.2.0"
|
||||||
react-dom: "npm:^18.2.0"
|
react-dom: "npm:^18.2.0"
|
||||||
scroll-into-view-if-needed: "npm:^3.1.0"
|
scroll-into-view-if-needed: "npm:^3.1.0"
|
||||||
slate: "npm:^0.114.0"
|
slate: "npm:^0.115.0"
|
||||||
slate-dom: "npm:^0.114.0"
|
slate-dom: "npm:^0.114.0"
|
||||||
slate-hyperscript: "npm:^0.100.0"
|
slate-hyperscript: "npm:^0.115.0"
|
||||||
source-map-loader: "npm:^4.0.1"
|
source-map-loader: "npm:^4.0.1"
|
||||||
tiny-invariant: "npm:1.3.1"
|
tiny-invariant: "npm:1.3.1"
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -13442,14 +13442,14 @@ __metadata:
|
|||||||
languageName: unknown
|
languageName: unknown
|
||||||
linkType: soft
|
linkType: soft
|
||||||
|
|
||||||
"slate@npm:^0.114.0, slate@workspace:*, slate@workspace:packages/slate":
|
"slate@npm:^0.115.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:
|
||||||
"@babel/runtime": "npm:^7.23.2"
|
"@babel/runtime": "npm:^7.23.2"
|
||||||
immer: "npm:^10.0.3"
|
immer: "npm:^10.0.3"
|
||||||
lodash: "npm:^4.17.21"
|
lodash: "npm:^4.17.21"
|
||||||
slate-hyperscript: "npm:^0.100.0"
|
slate-hyperscript: "npm:^0.115.0"
|
||||||
source-map-loader: "npm:^4.0.1"
|
source-map-loader: "npm:^4.0.1"
|
||||||
tiny-warning: "npm:^1.0.3"
|
tiny-warning: "npm:^1.0.3"
|
||||||
languageName: unknown
|
languageName: unknown
|
||||||
|
Reference in New Issue
Block a user