Merge branch 'master' into feature/suggestions

# Conflicts:
#	examples/Components/App/style.scss
#	examples/Components/Subnavigation/index.vue
#	examples/main.js
#	packages/tiptap-extensions/package.json
This commit is contained in:
Philipp Kühn
2018-09-24 15:44:42 +02:00
30 changed files with 567 additions and 162 deletions

View File

@@ -1,5 +1,5 @@
import { Node } from 'tiptap'
import { wrappingInputRule, wrapInList, toggleList } from 'tiptap-commands'
import { wrappingInputRule, toggleList } from 'tiptap-commands'
export default class BulletNode extends Node {
@@ -22,9 +22,9 @@ export default class BulletNode extends Node {
return toggleList(type, schema.nodes.list_item)
}
keys({ type }) {
keys({ type, schema }) {
return {
'Shift-Ctrl-8': wrapInList(type),
'Shift-Ctrl-8': toggleList(type, schema.nodes.list_item),
}
}

View File

@@ -1,7 +1,7 @@
import { Node } from 'tiptap'
import { splitListItem, liftListItem, sinkListItem } from 'tiptap-commands'
export default class OrderedListNode extends Node {
export default class ListItemNode extends Node {
get name() {
return 'list_item'

View File

@@ -1,5 +1,5 @@
import { Node } from 'tiptap'
import { wrappingInputRule, wrapInList, toggleList } from 'tiptap-commands'
import { wrappingInputRule, toggleList } from 'tiptap-commands'
export default class OrderedListNode extends Node {
@@ -32,9 +32,9 @@ export default class OrderedListNode extends Node {
return toggleList(type, schema.nodes.list_item)
}
keys({ type }) {
keys({ type, schema }) {
return {
'Shift-Ctrl-9': wrapInList(type),
'Shift-Ctrl-9': toggleList(type, schema.nodes.list_item),
}
}