ps-toolkit-ui 1.12.6 → 1.12.8

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.
@@ -6183,7 +6183,7 @@
6183
6183
  return null;
6184
6184
  }
6185
6185
  if (v && _this.inp.type === exports.InputType.Number || _this.inp.type === exports.InputType.Price) {
6186
- v = parseFloat(v.toString().replace(/,/g, ''));
6186
+ v = parseFloat(v.toString().replace(/,/g, '')) || 0;
6187
6187
  }
6188
6188
  return v;
6189
6189
  };
@@ -8341,7 +8341,8 @@
8341
8341
  this.items = [];
8342
8342
  this.activeAll = false;
8343
8343
  this.isDone = false;
8344
- this.updateAccess = false;
8344
+ this.updateAccess = true;
8345
+ this.viewAccess = true;
8345
8346
  this.onDone = function () { };
8346
8347
  this.onLoadStep = function () { };
8347
8348
  this.l = l;