ps-toolkit-ui 1.20.2 → 1.20.13
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 +5 -1
- 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 +6 -2
- package/fesm2015/ps-toolkit-ui.js +5 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
- package/ps-toolkit-ui.metadata.json +1 -1
|
@@ -9813,7 +9813,11 @@
|
|
|
9813
9813
|
this.rows.forEach(function (row) {
|
|
9814
9814
|
var x = {};
|
|
9815
9815
|
_this.cols.forEach(function (col) {
|
|
9816
|
-
|
|
9816
|
+
var txt = _this.getText(_this.getCell(row, col));
|
|
9817
|
+
if (col.type === exports.TableCollType.Price) {
|
|
9818
|
+
txt = txt.replace('ریال', '').trim();
|
|
9819
|
+
}
|
|
9820
|
+
x[_this.l(col.name)] = txt;
|
|
9817
9821
|
});
|
|
9818
9822
|
data.push(x);
|
|
9819
9823
|
});
|