ps-toolkit-ui 1.8.68 → 1.8.70
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/components/form/table/form.table.component.js +2 -2
- package/esm2015/lib/components/table/row/table.row.component.js +2 -2
- package/fesm2015/ps-toolkit-ui.js +2 -2
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -2831,7 +2831,7 @@
|
|
|
2831
2831
|
_this.table.form.clear();
|
|
2832
2832
|
}
|
|
2833
2833
|
if (_this.table.permissions.Type === exports.PermissionTypeEnum.Form) {
|
|
2834
|
-
_this.table.rows = _this.table.rows.filter(function (x) { return x.Id !== _this.row.Data.Id; });
|
|
2834
|
+
_this.table.rows = _this.table.rows.filter(function (x) { return x.Data.Id !== _this.row.Data.Id; });
|
|
2835
2835
|
_this.changeRows.emit(_this.row.Data);
|
|
2836
2836
|
}
|
|
2837
2837
|
else {
|
|
@@ -5789,7 +5789,7 @@
|
|
|
5789
5789
|
_this.inp.setValue(_this.inp.default === null ? [] : _this.inp.default, false);
|
|
5790
5790
|
};
|
|
5791
5791
|
this.inp.data = function () {
|
|
5792
|
-
return _this.inp.table.rows;
|
|
5792
|
+
return _this.inp.table.rows.map(function (x) { return x.Data; });
|
|
5793
5793
|
};
|
|
5794
5794
|
if (this.inp.default) {
|
|
5795
5795
|
this.inp.setValue(this.inp.default, false);
|