ps-toolkit-ui 1.4.61 → 1.4.62
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 +4 -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/components/table/row/table.row.component.js +5 -2
- package/fesm2015/ps-toolkit-ui.js +4 -1
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -2553,7 +2553,10 @@
|
|
|
2553
2553
|
update: function () {
|
|
2554
2554
|
var data = [];
|
|
2555
2555
|
// @ts-ignore
|
|
2556
|
-
$__namespace(_this.childrenDiv.nativeElement).sortable('toArray').forEach(function (x) {
|
|
2556
|
+
$__namespace(_this.childrenDiv.nativeElement).sortable('toArray').forEach(function (x) {
|
|
2557
|
+
console.log(x);
|
|
2558
|
+
data.push(x);
|
|
2559
|
+
});
|
|
2557
2560
|
var p = new PermissionClass();
|
|
2558
2561
|
p.Area = _this.table.permissions.Area;
|
|
2559
2562
|
p.Controller = _this.table.permissions.Controller;
|