el-text-editor 0.0.59 → 0.0.60

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1364,7 +1364,7 @@ class ElTextEditorComponent {
1364
1364
  const rows = text.split('\n').filter(row => row.trim() !== '');
1365
1365
  const tableRows = rows.map(row => {
1366
1366
  const cells = row.split('\t').map(cell => `<td class="px-1 py-1" >${cell}</td>`).join('');
1367
- return `<tr class="table-border-top" style="border-top: ${this.themeModeTableBorderTop()}">${cells}</tr>`;
1367
+ return `<tr class="table-border-top" style="border-top: ${this.themeModeTableBorderTop()}; width: 100% !important">${cells}</tr>`;
1368
1368
  }).join('');
1369
1369
  return `<table>${tableRows}</table>`;
1370
1370
  }