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.
		
		
		
		
		
			
		
			
				
					
					
						
							54 lines
						
					
					
						
							1.7 KiB
						
					
					
				
			
		
		
	
	
							54 lines
						
					
					
						
							1.7 KiB
						
					
					
				| (function (global, factory) {
 | |
|   typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports, require('@tiptap/core')) :
 | |
|   typeof define === 'function' && define.amd ? define(['exports', '@tiptap/core'], factory) :
 | |
|   (global = typeof globalThis !== 'undefined' ? globalThis : global || self, factory(global["@tiptap/extension-table-cell"] = {}, global.core));
 | |
| })(this, (function (exports, core) { 'use strict';
 | |
| 
 | |
|   const TableCell = core.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', core.mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0];
 | |
|       },
 | |
|   });
 | |
| 
 | |
|   exports.TableCell = TableCell;
 | |
|   exports["default"] = TableCell;
 | |
| 
 | |
|   Object.defineProperty(exports, '__esModule', { value: true });
 | |
| 
 | |
| }));
 | |
| //# sourceMappingURL=tiptap-extension-table-cell.umd.js.map
 |