Skip to content

Commit 4d48bf7

Browse files
Version Packages
1 parent 4b2e400 commit 4d48bf7

File tree

10 files changed

+39
-38
lines changed

10 files changed

+39
-38
lines changed

.changeset/curly-timers-watch.md

-5
This file was deleted.

.changeset/fast-shrimps-begin.md

-19
This file was deleted.

.changeset/lovely-goats-argue.md

-5
This file was deleted.

packages/slate-history/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
"@babel/runtime": "^7.7.4",
2121
"lodash": "^4.17.21",
2222
"slate": "^0.66.0",
23-
"slate-hyperscript": "^0.66.0",
23+
"slate-hyperscript": "^0.67.0",
2424
"source-map-loader": "^0.2.4"
2525
},
2626
"peerDependencies": {

packages/slate-hyperscript/CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
# slate-hyperscript
22

3+
## 0.67.0
4+
5+
### Patch Changes
6+
7+
- [#4555](https://github.com/ianstormtaylor/slate/pull/4555) [`c29eea02`](https://github.com/ianstormtaylor/slate/commit/c29eea022ec943f0c63278e9058fe1267f7dff01) Thanks [@bryanph](https://github.com/bryanph)! - createEditor is now exported from slate-hyperscript, making it easier to set up custom editor tests
8+
9+
For example:
10+
11+
```
12+
const jsx = createHyperscript({
13+
creators: {
14+
editor: createEditor(aFunctionThatReturnsAnEditorObject)
15+
},
16+
elements: {
17+
block: { type: 'block' },
18+
inline: { type: 'inline' }
19+
}
20+
})
21+
```
22+
323
## 0.66.0
424

525
### Patch Changes

packages/slate-hyperscript/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "slate-hyperscript",
33
"description": "A hyperscript helper for creating Slate documents.",
4-
"version": "0.66.0",
4+
"version": "0.67.0",
55
"license": "MIT",
66
"repository": "git://github.com/ianstormtaylor/slate.git",
77
"main": "dist/index.js",

packages/slate-react/CHANGELOG.md

+10
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# slate-react
22

3+
## 0.67.0
4+
5+
### Minor Changes
6+
7+
- [#4540](https://github.com/ianstormtaylor/slate/pull/4540) [`11ef83b4`](https://github.com/ianstormtaylor/slate/commit/11ef83b47fca84d1f908b5c9eeefada516fe9fed) Thanks [@bryanph](https://github.com/bryanph)! - The Slate Provider's "value" prop is now only used as initial state for editor.children as was intended before. If your code relies on replacing editor.children you should do so by replacing it directly instead of relying on the "value" prop to do this for you.
8+
9+
### Patch Changes
10+
11+
- [#4577](https://github.com/ianstormtaylor/slate/pull/4577) [`4b2e4000`](https://github.com/ianstormtaylor/slate/commit/4b2e4000d6253bd86fab237b6f2c70e9f8d30f09) Thanks [@jameshfisher](https://github.com/jameshfisher)! - Fixed a bug that removed the selection when hovering over a non-selectable DOM element
12+
313
## 0.66.7
414

515
### Patch Changes

packages/slate-react/package.json

+2-2
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.66.7",
4+
"version": "0.67.0",
55
"license": "MIT",
66
"repository": "git://github.com/ianstormtaylor/slate.git",
77
"main": "dist/index.js",
@@ -32,7 +32,7 @@
3232
"react-dom": ">=16.8.0",
3333
"react-test-renderer": ">=16.8.0",
3434
"slate": "^0.66.2",
35-
"slate-hyperscript": "^0.66.0",
35+
"slate-hyperscript": "^0.67.0",
3636
"source-map-loader": "^0.2.4"
3737
},
3838
"peerDependencies": {

packages/slate/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
"devDependencies": {
2222
"@babel/runtime": "^7.7.4",
2323
"lodash": "^4.17.21",
24-
"slate-hyperscript": "^0.66.0",
24+
"slate-hyperscript": "^0.67.0",
2525
"source-map-loader": "^0.2.4"
2626
},
2727
"keywords": [

yarn.lock

+4-4
Original file line numberDiff line numberDiff line change
@@ -14312,14 +14312,14 @@ resolve@^2.0.0-next.3:
1431214312
is-plain-object: ^5.0.0
1431314313
lodash: ^4.17.21
1431414314
slate: ^0.66.0
14315-
slate-hyperscript: ^0.66.0
14315+
slate-hyperscript: ^0.67.0
1431614316
source-map-loader: ^0.2.4
1431714317
peerDependencies:
1431814318
slate: ">=0.65.3"
1431914319
languageName: unknown
1432014320
linkType: soft
1432114321

14322-
"slate-hyperscript@^0.66.0, slate-hyperscript@workspace:*, slate-hyperscript@workspace:packages/slate-hyperscript":
14322+
"slate-hyperscript@^0.67.0, slate-hyperscript@workspace:*, slate-hyperscript@workspace:packages/slate-hyperscript":
1432314323
version: 0.0.0-use.local
1432414324
resolution: "slate-hyperscript@workspace:packages/slate-hyperscript"
1432514325
dependencies:
@@ -14430,7 +14430,7 @@ resolve@^2.0.0-next.3:
1443014430
react-test-renderer: ">=16.8.0"
1443114431
scroll-into-view-if-needed: ^2.2.20
1443214432
slate: ^0.66.2
14433-
slate-hyperscript: ^0.66.0
14433+
slate-hyperscript: ^0.67.0
1443414434
source-map-loader: ^0.2.4
1443514435
tiny-invariant: 1.0.6
1443614436
peerDependencies:
@@ -14448,7 +14448,7 @@ resolve@^2.0.0-next.3:
1444814448
immer: ^9.0.6
1444914449
is-plain-object: ^5.0.0
1445014450
lodash: ^4.17.21
14451-
slate-hyperscript: ^0.66.0
14451+
slate-hyperscript: ^0.67.0
1445214452
source-map-loader: ^0.2.4
1445314453
tiny-warning: ^1.0.3
1445414454
languageName: unknown

0 commit comments

Comments
 (0)