ps-toolkit-ui 1.19.88 → 1.19.90
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.
- package/bundles/ps-toolkit-ui.umd.js +2 -2
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/table.class.js +3 -3
- package/fesm2015/ps-toolkit-ui.js +2 -2
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -9804,11 +9804,11 @@
|
|
|
9804
9804
|
this.rows.forEach(function (row) {
|
|
9805
9805
|
var x = {};
|
|
9806
9806
|
_this.cols.forEach(function (col) {
|
|
9807
|
-
x[col.name] = _this.getText(_this.getCell(row, col));
|
|
9807
|
+
x[_this.l(col.name)] = _this.getText(_this.getCell(row, col));
|
|
9808
9808
|
});
|
|
9809
9809
|
data.push(x);
|
|
9810
9810
|
});
|
|
9811
|
-
new ExcelClass().exportAsExcelFile(data,
|
|
9811
|
+
new ExcelClass().exportAsExcelFile(data, this.name ? this.name : 'ExportData');
|
|
9812
9812
|
};
|
|
9813
9813
|
TableClass.prototype.getText = function (s) {
|
|
9814
9814
|
var span = document.createElement('span');
|