ps-toolkit-ui 1.8.67 → 1.8.69

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.
@@ -2831,7 +2831,10 @@
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
+ console.log(_this.row.Data.Id);
2835
+ console.log(_this.table.rows);
2836
+ _this.table.rows = _this.table.rows.filter(function (x) { return x.Data.Id !== _this.row.Data.Id; });
2837
+ console.log(_this.table.rows);
2835
2838
  _this.changeRows.emit(_this.row.Data);
2836
2839
  }
2837
2840
  else {
@@ -8092,15 +8095,15 @@
8092
8095
  var uAccess = new PermissionClass();
8093
8096
  uAccess.Action = 'Update';
8094
8097
  uAccess.Type = exports.PermissionTypeEnum.Option;
8095
- uAccess.AccessType = exports.PermissionAccessTypeEnum.Update;
8096
8098
  uAccess.InputAction = exports.PermissionInputActionEnum.None;
8097
8099
  uAccess.InputType = exports.PermissionInputTypeEnum.Icon;
8100
+ uAccess.AccessType = exports.PermissionAccessTypeEnum.Update;
8098
8101
  uAccess.Icon = 'fad fa-pen';
8099
8102
  uAccess.Name = 'Update';
8100
8103
  var dAccess = new PermissionClass();
8101
8104
  dAccess.Action = 'Delete';
8102
8105
  dAccess.Type = exports.PermissionTypeEnum.Option;
8103
- dAccess.InputAction = exports.PermissionInputActionEnum.Modal;
8106
+ dAccess.InputAction = exports.PermissionInputActionEnum.None;
8104
8107
  dAccess.InputType = exports.PermissionInputTypeEnum.Icon;
8105
8108
  dAccess.AccessType = exports.PermissionAccessTypeEnum.Delete;
8106
8109
  dAccess.Icon = 'fad fa-trash';