Skip to content

Commit 49dbda9

Browse files
Version Packages (ianstormtaylor#6001)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 8d9bf30 commit 49dbda9

File tree

10 files changed

+36
-23
lines changed

10 files changed

+36
-23
lines changed

.changeset/orange-phones-wave.md

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

packages/slate-dom/CHANGELOG.md

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

3+
## 0.123.0
4+
5+
### Patch Changes
6+
7+
- [#6000](https://github.com/ianstormtaylor/slate/pull/6000) [`8d9bf305`](https://github.com/ianstormtaylor/slate/commit/8d9bf30595a6fad62ff15e302ab489ff46a2515a) Thanks [@nabbydude](https://github.com/nabbydude)! - Added `Location.isPath`, `Location.isPoint`, `Location.isRange`, and `Location.isSpan` functions, as efficient type discriminators.
8+
Use these instead of `Path.isPath`, `Point.isPoint`, `Range.isRange`, and `Span.isSpan` whenever possible.
9+
310
## 0.121.0
411

512
### Patch 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.121.0",
4+
"version": "0.123.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.122.0",
32+
"slate": "^0.123.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.122.0",
19+
"slate": "^0.123.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.122.0",
18+
"slate": "^0.123.0",
1919
"source-map-loader": "^4.0.1"
2020
},
2121
"peerDependencies": {

packages/slate-react/CHANGELOG.md

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

3+
## 0.123.0
4+
5+
### Patch Changes
6+
7+
- [#6000](https://github.com/ianstormtaylor/slate/pull/6000) [`8d9bf305`](https://github.com/ianstormtaylor/slate/commit/8d9bf30595a6fad62ff15e302ab489ff46a2515a) Thanks [@nabbydude](https://github.com/nabbydude)! - Added `Location.isPath`, `Location.isPoint`, `Location.isRange`, and `Location.isSpan` functions, as efficient type discriminators.
8+
Use these instead of `Path.isPath`, `Point.isPoint`, `Range.isRange`, and `Span.isSpan` whenever possible.
9+
310
## 0.121.0
411

512
### 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.121.0",
4+
"version": "0.123.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.122.0",
38-
"slate-dom": "^0.121.0",
37+
"slate": "^0.123.0",
38+
"slate-dom": "^0.123.0",
3939
"slate-hyperscript": "^0.115.0",
4040
"source-map-loader": "^4.0.1"
4141
},

packages/slate/CHANGELOG.md

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

3+
## 0.123.0
4+
5+
### Minor Changes
6+
7+
- [#6000](https://github.com/ianstormtaylor/slate/pull/6000) [`8d9bf305`](https://github.com/ianstormtaylor/slate/commit/8d9bf30595a6fad62ff15e302ab489ff46a2515a) Thanks [@nabbydude](https://github.com/nabbydude)! - Added `Location.isPath`, `Location.isPoint`, `Location.isRange`, and `Location.isSpan` functions, as efficient type discriminators.
8+
Use these instead of `Path.isPath`, `Point.isPoint`, `Range.isRange`, and `Span.isSpan` whenever possible.
9+
310
## 0.122.0
411

512
### Minor 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.122.0",
4+
"version": "0.123.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.121.0, slate-dom@workspace:*, slate-dom@workspace:packages/slate-dom":
13572+
"slate-dom@npm:^0.123.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.122.0"
13588+
slate: "npm:^0.123.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.122.0"
13603+
slate: "npm:^0.123.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.122.0"
13616+
slate: "npm:^0.123.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.122.0"
13731-
slate-dom: "npm:^0.121.0"
13730+
slate: "npm:^0.123.0"
13731+
slate-dom: "npm:^0.123.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.122.0, slate@workspace:*, slate@workspace:packages/slate":
13743+
"slate@npm:^0.123.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)