Skip to content

Commit 0e6c691

Browse files
Version Packages (#5998)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent dd4a77b commit 0e6c691

File tree

10 files changed

+39
-24
lines changed

10 files changed

+39
-24
lines changed

.changeset/rich-cheetahs-battle.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

packages/slate-dom/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# slate-dom
22

3+
## 0.121.0
4+
5+
### Patch Changes
6+
7+
- [#5982](https://github.com/ianstormtaylor/slate/pull/5982) [`dd4a77b3`](https://github.com/ianstormtaylor/slate/commit/dd4a77b3c5bb5d2d3cd6a62f49d6f318d30d6727) Thanks [@nabbydude](https://github.com/nabbydude)! - Add `Node.isEditor`, `Node.isElement`, and `Node.isText` as alternative type guards for when we already know the object is a node.
8+
Use these new functions instead of `Editor.isEditor`, `Element.isElement`, and `Text.isText` whenever possible, the classic functions are only necessary for typechecking an entirely unknown object.
9+
===
10+
311
## 0.119.0
412

513
### Minor Changes

packages/slate-dom/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "slate-dom",
33
"description": "Tools for building completely customizable richtext editors with React.",
4-
"version": "0.119.0",
4+
"version": "0.121.0",
55
"license": "MIT",
66
"repository": "git://github.com/ianstormtaylor/slate.git",
77
"main": "dist/index.js",
@@ -29,7 +29,7 @@
2929
"@types/jsdom": "^21.1.4",
3030
"@types/lodash": "^4.14.200",
3131
"@types/resize-observer-browser": "^0.1.8",
32-
"slate": "^0.120.0",
32+
"slate": "^0.121.0",
3333
"slate-hyperscript": "^0.115.0",
3434
"source-map-loader": "^4.0.1"
3535
},

packages/slate-history/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"devDependencies": {
1717
"@babel/runtime": "^7.23.2",
1818
"lodash": "^4.17.21",
19-
"slate": "^0.120.0",
19+
"slate": "^0.121.0",
2020
"slate-hyperscript": "^0.115.0",
2121
"source-map-loader": "^4.0.1"
2222
},

packages/slate-hyperscript/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
],
1616
"devDependencies": {
1717
"@babel/runtime": "^7.23.2",
18-
"slate": "^0.120.0",
18+
"slate": "^0.121.0",
1919
"source-map-loader": "^4.0.1"
2020
},
2121
"peerDependencies": {

packages/slate-react/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# slate-react
22

3+
## 0.121.0
4+
5+
### Patch Changes
6+
7+
- [#5982](https://github.com/ianstormtaylor/slate/pull/5982) [`dd4a77b3`](https://github.com/ianstormtaylor/slate/commit/dd4a77b3c5bb5d2d3cd6a62f49d6f318d30d6727) Thanks [@nabbydude](https://github.com/nabbydude)! - Add `Node.isEditor`, `Node.isElement`, and `Node.isText` as alternative type guards for when we already know the object is a node.
8+
Use these new functions instead of `Editor.isEditor`, `Element.isElement`, and `Text.isText` whenever possible, the classic functions are only necessary for typechecking an entirely unknown object.
9+
===
10+
311
## 0.120.2
412

513
### Patch Changes

packages/slate-react/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "slate-react",
33
"description": "Tools for building completely customizable richtext editors with React.",
4-
"version": "0.120.2",
4+
"version": "0.121.0",
55
"license": "MIT",
66
"repository": "git://github.com/ianstormtaylor/slate.git",
77
"main": "dist/index.js",
@@ -34,8 +34,8 @@
3434
"@types/resize-observer-browser": "^0.1.8",
3535
"react": "^18.2.0",
3636
"react-dom": "^18.2.0",
37-
"slate": "^0.120.0",
38-
"slate-dom": "^0.119.0",
37+
"slate": "^0.121.0",
38+
"slate-dom": "^0.121.0",
3939
"slate-hyperscript": "^0.115.0",
4040
"source-map-loader": "^4.0.1"
4141
},

packages/slate/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
11
# slate
22

3+
## 0.121.0
4+
5+
### Minor Changes
6+
7+
- [#5982](https://github.com/ianstormtaylor/slate/pull/5982) [`dd4a77b3`](https://github.com/ianstormtaylor/slate/commit/dd4a77b3c5bb5d2d3cd6a62f49d6f318d30d6727) Thanks [@nabbydude](https://github.com/nabbydude)! - Add `Node.isEditor`, `Node.isElement`, and `Node.isText` as alternative type guards for when we already know the object is a node.
8+
Use these new functions instead of `Editor.isEditor`, `Element.isElement`, and `Text.isText` whenever possible, the classic functions are only necessary for typechecking an entirely unknown object.
9+
===
10+
311
## 0.120.0
412

513
### Patch Changes

packages/slate/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "slate",
33
"description": "A completely customizable framework for building rich text editors.",
4-
"version": "0.120.0",
4+
"version": "0.121.0",
55
"license": "MIT",
66
"repository": "git://github.com/ianstormtaylor/slate.git",
77
"main": "dist/index.js",

yarn.lock

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13569,7 +13569,7 @@ __metadata:
1356913569
languageName: node
1357013570
linkType: hard
1357113571

13572-
"slate-dom@npm:^0.119.0, slate-dom@workspace:*, slate-dom@workspace:packages/slate-dom":
13572+
"slate-dom@npm:^0.121.0, slate-dom@workspace:*, slate-dom@workspace:packages/slate-dom":
1357313573
version: 0.0.0-use.local
1357413574
resolution: "slate-dom@workspace:packages/slate-dom"
1357513575
dependencies:
@@ -13585,7 +13585,7 @@ __metadata:
1358513585
is-plain-object: "npm:^5.0.0"
1358613586
lodash: "npm:^4.17.21"
1358713587
scroll-into-view-if-needed: "npm:^3.1.0"
13588-
slate: "npm:^0.120.0"
13588+
slate: "npm:^0.121.0"
1358913589
slate-hyperscript: "npm:^0.115.0"
1359013590
source-map-loader: "npm:^4.0.1"
1359113591
tiny-invariant: "npm:1.3.1"
@@ -13600,7 +13600,7 @@ __metadata:
1360013600
dependencies:
1360113601
"@babel/runtime": "npm:^7.23.2"
1360213602
lodash: "npm:^4.17.21"
13603-
slate: "npm:^0.120.0"
13603+
slate: "npm:^0.121.0"
1360413604
slate-hyperscript: "npm:^0.115.0"
1360513605
source-map-loader: "npm:^4.0.1"
1360613606
peerDependencies:
@@ -13613,7 +13613,7 @@ __metadata:
1361313613
resolution: "slate-hyperscript@workspace:packages/slate-hyperscript"
1361413614
dependencies:
1361513615
"@babel/runtime": "npm:^7.23.2"
13616-
slate: "npm:^0.120.0"
13616+
slate: "npm:^0.121.0"
1361713617
source-map-loader: "npm:^4.0.1"
1361813618
peerDependencies:
1361913619
slate: ">=0.114.3"
@@ -13727,8 +13727,8 @@ __metadata:
1372713727
react: "npm:^18.2.0"
1372813728
react-dom: "npm:^18.2.0"
1372913729
scroll-into-view-if-needed: "npm:^3.1.0"
13730-
slate: "npm:^0.120.0"
13731-
slate-dom: "npm:^0.119.0"
13730+
slate: "npm:^0.121.0"
13731+
slate-dom: "npm:^0.121.0"
1373213732
slate-hyperscript: "npm:^0.115.0"
1373313733
source-map-loader: "npm:^4.0.1"
1373413734
tiny-invariant: "npm:1.3.1"
@@ -13740,7 +13740,7 @@ __metadata:
1374013740
languageName: unknown
1374113741
linkType: soft
1374213742

13743-
"slate@npm:^0.120.0, slate@workspace:*, slate@workspace:packages/slate":
13743+
"slate@npm:^0.121.0, slate@workspace:*, slate@workspace:packages/slate":
1374413744
version: 0.0.0-use.local
1374513745
resolution: "slate@workspace:packages/slate"
1374613746
dependencies:

0 commit comments

Comments
 (0)