Skip to content

Commit

Permalink
chore(deps): update prosemirror packages (#1779)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocavue committed Jul 11, 2022
1 parent 31d5cd5 commit 4c5c57d
Show file tree
Hide file tree
Showing 10 changed files with 95 additions and 93 deletions.
5 changes: 5 additions & 0 deletions .changeset/fast-lions-sing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@remirror/pm': patch
---

Update ProseMirror packages.
2 changes: 1 addition & 1 deletion packages/jest-prosemirror/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@
"chalk": "^4.1.0",
"jest-matcher-utils": "^28.1.1",
"prosemirror-schema-basic": "^1.2.0",
"prosemirror-tables": "^1.1.1",
"prosemirror-tables": "^1.2.1",
"prosemirror-test-builder": "^1.1.0",
"stringify-object": "^3.3.0",
"test-keyboard": "2.0.0-beta.6"
Expand Down
2 changes: 1 addition & 1 deletion packages/prosemirror-paste-rules/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"devDependencies": {
"prosemirror-model": "^1.18.1",
"prosemirror-state": "^1.4.1",
"prosemirror-view": "^1.26.3"
"prosemirror-view": "^1.26.5"
},
"peerDependencies": {
"prosemirror-model": "^1",
Expand Down
2 changes: 1 addition & 1 deletion packages/prosemirror-resizable-view/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"@remirror/core-helpers": "^2.0.0-beta.6",
"@remirror/core-utils": "^2.0.0-beta.6",
"prosemirror-model": "^1.18.1",
"prosemirror-view": "^1.26.3"
"prosemirror-view": "^1.26.5"
},
"publishConfig": {
"access": "public"
Expand Down
2 changes: 1 addition & 1 deletion packages/prosemirror-suggest/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"devDependencies": {
"prosemirror-model": "^1.18.1",
"prosemirror-state": "^1.4.1",
"prosemirror-view": "^1.26.3"
"prosemirror-view": "^1.26.5"
},
"peerDependencies": {
"prosemirror-model": "^1",
Expand Down
2 changes: 1 addition & 1 deletion packages/prosemirror-trailing-node/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
"devDependencies": {
"prosemirror-model": "^1.18.1",
"prosemirror-state": "^1.4.1",
"prosemirror-view": "^1.26.3"
"prosemirror-view": "^1.26.5"
},
"peerDependencies": {
"prosemirror-model": "^1",
Expand Down
2 changes: 1 addition & 1 deletion packages/remirror__dev/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"dependencies": {
"@babel/runtime": "^7.13.10",
"@remirror/react-core": "^2.0.0-beta.6",
"prosemirror-dev-toolkit": ">= 0.0.11 < 1.0.0"
"prosemirror-dev-toolkit": "^1.0.0"
},
"devDependencies": {
"@remirror/pm": "^2.0.0-beta.6",
Expand Down
4 changes: 2 additions & 2 deletions packages/remirror__pm/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -141,10 +141,10 @@
"prosemirror-schema-list": "^1.2.0",
"prosemirror-state": "^1.4.1",
"prosemirror-suggest": "^2.0.0-beta.6",
"prosemirror-tables": "^1.1.1",
"prosemirror-tables": "^1.2.1",
"prosemirror-trailing-node": "^2.0.0-beta.6",
"prosemirror-transform": "^1.6.0",
"prosemirror-view": "^1.26.3"
"prosemirror-view": "^1.26.5"
},
"publishConfig": {
"access": "public"
Expand Down
4 changes: 1 addition & 3 deletions packages/remirror__pm/src/tables.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,11 @@
import { CellSelection } from 'prosemirror-tables';

import { EditorSchema } from './extra/pm-types';

/**
* Predicate checking whether the selection is a [[`CellSelection`]].
*
* @param value - the value to check
*/
export function isCellSelection(value: unknown): value is CellSelection<EditorSchema> {
export function isCellSelection(value: unknown): value is CellSelection {
return typeof value === 'object' && value instanceof CellSelection;
}

Expand Down

1 comment on commit 4c5c57d

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.