Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Use @tiptap/prosemirror-table instead of `_ueberdosis/prosemirror-t…
…able`

Signed-off-by: Jonas <[email protected]>
  • Loading branch information
mejo- authored and max-nextcloud committed Dec 11, 2022
commit 20382e48e7774ff7525b2b30a03c33b3f5422213
28 changes: 1 addition & 27 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
"extends @nextcloud/browserslist-config"
],
"dependencies": {
"@_ueberdosis/prosemirror-tables": "^1.1.3",
"@hedgedoc/markdown-it-task-lists": "^1.0.5",
"@nextcloud/auth": "^2.0.0",
"@nextcloud/axios": "^2.2.0",
Expand Down Expand Up @@ -79,6 +78,7 @@
"@tiptap/extension-task-list": "^2.0.0-beta.207",
"@tiptap/extension-text": "^2.0.0-beta.207",
"@tiptap/extension-underline": "^2.0.0-beta.207",
"@tiptap/prosemirror-tables": "^1.1.3",
"@tiptap/suggestion": "^2.0.0-beta.207",
"@tiptap/vue-2": "^2.0.0-beta.207",
"debounce": "^1.2.1",
Expand Down
2 changes: 1 addition & 1 deletion src/nodes/Table/Table.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import TableHeader from './TableHeader.js'
import TableHeadRow from './TableHeadRow.js'
import TableRow from './TableRow.js'
import { TextSelection } from 'prosemirror-state'
import { isInTable, moveCellForward, selectionCell } from '@_ueberdosis/prosemirror-tables'
import { isInTable, moveCellForward, selectionCell } from '@tiptap/prosemirror-tables'

/**
*
Expand Down