* add new addOptions option * replace defaultOptions with addOptions for all extensions * replace defaultOptions with addOptions for all demos * replace defaultOptions with addOptions in docs * refactoring * refactoring * drop object support for addOptions * fix optional options * fix tests
30 lines
526 B
TypeScript
30 lines
526 B
TypeScript
import { Node, mergeAttributes } from '@tiptap/core'
|
|
|
|
export interface TableRowOptions {
|
|
HTMLAttributes: Record<string, any>,
|
|
}
|
|
|
|
export const TableRow = Node.create<TableRowOptions>({
|
|
name: 'tableRow',
|
|
|
|
addOptions() {
|
|
return {
|
|
HTMLAttributes: {},
|
|
}
|
|
},
|
|
|
|
content: '(tableCell | tableHeader)*',
|
|
|
|
tableRole: 'row',
|
|
|
|
parseHTML() {
|
|
return [
|
|
{ tag: 'tr' },
|
|
]
|
|
},
|
|
|
|
renderHTML({ HTMLAttributes }) {
|
|
return ['tr', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0]
|
|
},
|
|
})
|