You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							45 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
	
	
							45 lines
						
					
					
						
							1.1 KiB
						
					
					
				| import { Node, mergeAttributes } from '@tiptap/core';
 | |
| 
 | |
| const TableCell = Node.create({
 | |
|     name: 'tableCell',
 | |
|     addOptions() {
 | |
|         return {
 | |
|             HTMLAttributes: {},
 | |
|         };
 | |
|     },
 | |
|     content: 'block+',
 | |
|     addAttributes() {
 | |
|         return {
 | |
|             colspan: {
 | |
|                 default: 1,
 | |
|             },
 | |
|             rowspan: {
 | |
|                 default: 1,
 | |
|             },
 | |
|             colwidth: {
 | |
|                 default: null,
 | |
|                 parseHTML: element => {
 | |
|                     const colwidth = element.getAttribute('colwidth');
 | |
|                     const value = colwidth
 | |
|                         ? [parseInt(colwidth, 10)]
 | |
|                         : null;
 | |
|                     return value;
 | |
|                 },
 | |
|             },
 | |
|         };
 | |
|     },
 | |
|     tableRole: 'cell',
 | |
|     isolating: true,
 | |
|     parseHTML() {
 | |
|         return [
 | |
|             { tag: 'td' },
 | |
|         ];
 | |
|     },
 | |
|     renderHTML({ HTMLAttributes }) {
 | |
|         return ['td', mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0];
 | |
|     },
 | |
| });
 | |
| 
 | |
| export { TableCell, TableCell as default };
 | |
| //# sourceMappingURL=tiptap-extension-table-cell.esm.js.map
 |