ps-toolkit-ui 1.22.29 → 1.22.31

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.
@@ -2338,7 +2338,7 @@
2338
2338
  submit.disabled = !insertAccess;
2339
2339
  return;
2340
2340
  }
2341
- var br = new InputClass(this.environment, this.l, null, null, exports.InputType.Label, (this.onTop ? 'space' : 'underline') + (cls.includes('confirm-modal') ? ' m-v-10' : ''));
2341
+ var br = new InputClass(this.environment, this.l, null, null, exports.InputType.Label, (this.onTop ? 'space' : 'underline') + (cls.includes('confirm-modal') ? ' m-b-10' : ''));
2342
2342
  var save = new InputClass(this.environment, this.l, name, 'fad fa-check', exports.InputType.Submit, 'save-form-btn ' + (this.onTop ? 'h-25 ' : 'h-30 ') + cls);
2343
2343
  save.onClick = function () {
2344
2344
  _this.submit(onSubmit);
@@ -4821,6 +4821,9 @@
4821
4821
  else {
4822
4822
  this.table.rows.forEach(function (x) { return x.checked = true; });
4823
4823
  }
4824
+ if (this.table.onChangeCheck) {
4825
+ this.table.onChangeCheck(this.table.rows.filter(function (x) { return x.checked = true; }));
4826
+ }
4824
4827
  };
4825
4828
  TableComponent.prototype.getOptions = function () {
4826
4829
  return [];