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.
@@ -1360,7 +1360,7 @@ class ElTextEditorComponent {
1360
1360
  const rows = text.split('\n').filter(row => row.trim() !== '');
1361
1361
  const tableRows = rows.map(row => {
1362
1362
  const cells = row.split('\t').map(cell => `<td class="px-1 py-1" >${cell}</td>`).join('');
1363
- return `<tr class="table-border-top" style="border-top: ${this.themeModeTableBorderTop()}">${cells}</tr>`;
1363
+ return `<tr class="table-border-top" style="border-top: ${this.themeModeTableBorderTop()}; width: 100% !important">${cells}</tr>`;
1364
1364
  }).join('');
1365
1365
  return `<table>${tableRows}</table>`;
1366
1366
  }