ps-toolkit-ui 0.0.128 → 0.0.129

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.
@@ -2600,6 +2600,7 @@
2600
2600
  }
2601
2601
  }
2602
2602
  else if (option.Action === 'Delete') {
2603
+ opt.class = opt.class.replace('blue', 'red');
2603
2604
  opt.onClick = function () {
2604
2605
  if (_this.table.form) {
2605
2606
  _this.table.form.clear();
@@ -7216,8 +7217,9 @@
7216
7217
  try {
7217
7218
  for (var _b = __values(this.permissions.getAccesses().filter(function (x) { return x.InputAction !== exports.PermissionInputActionEnum.None; })), _c = _b.next(); !_c.done; _c = _b.next()) {
7218
7219
  var access = _c.value;
7219
- var accessInp = new InputClass(this.environment, this.l, access.Name, access.Icon, access.InputType === exports.PermissionInputTypeEnum.Button ? exports.InputType.Button : exports.InputType.Icon, 'w-u h-30');
7220
+ var accessInp = new InputClass(this.environment, this.l, access.Name, access.Icon, access.InputType === exports.PermissionInputTypeEnum.Button ? exports.InputType.Button : exports.InputType.Icon, 'blue w-u h-30');
7220
7221
  if (access.Action === 'Insert') {
7222
+ accessInp.class = accessInp.class.replace('blue', 'green');
7221
7223
  if (this.form) {
7222
7224
  this.form.url = this.form.baseUrl = this.url + 'Insert';
7223
7225
  if (!this.form.onTop) {