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.
		
		
		
		
		
			
		
			
				
					
					
						
							33 lines
						
					
					
						
							1.1 KiB
						
					
					
				
			
		
		
	
	
							33 lines
						
					
					
						
							1.1 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-row"] = {}, global.core));
 | |
| })(this, (function (exports, core) { 'use strict';
 | |
| 
 | |
|   const TableRow = core.Node.create({
 | |
|       name: 'tableRow',
 | |
|       addOptions() {
 | |
|           return {
 | |
|               HTMLAttributes: {},
 | |
|           };
 | |
|       },
 | |
|       content: '(tableCell | tableHeader)*',
 | |
|       tableRole: 'row',
 | |
|       parseHTML() {
 | |
|           return [
 | |
|               { tag: 'tr' },
 | |
|           ];
 | |
|       },
 | |
|       renderHTML({ HTMLAttributes }) {
 | |
|           return ['tr', core.mergeAttributes(this.options.HTMLAttributes, HTMLAttributes), 0];
 | |
|       },
 | |
|   });
 | |
| 
 | |
|   exports.TableRow = TableRow;
 | |
|   exports["default"] = TableRow;
 | |
| 
 | |
|   Object.defineProperty(exports, '__esModule', { value: true });
 | |
| 
 | |
| }));
 | |
| //# sourceMappingURL=tiptap-extension-table-row.umd.js.map
 |