ps-toolkit-ui 1.19.34 → 1.19.35

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.
@@ -3398,6 +3398,9 @@
3398
3398
  };
3399
3399
  TableRowComponent.prototype.check = function () {
3400
3400
  this.row.checked = !this.row.checked;
3401
+ if (this.table.onChangeCheck) {
3402
+ this.table.onChangeCheck(this.row);
3403
+ }
3401
3404
  };
3402
3405
  TableRowComponent.prototype.onChangeRows = function (e) {
3403
3406
  return this.changeRows.emit(e);
@@ -9276,6 +9279,7 @@
9276
9279
  this.request = null;
9277
9280
  this.onLoad = null;
9278
9281
  this.onSelectRow = null;
9282
+ this.onChangeCheck = null;
9279
9283
  this.onSort = null;
9280
9284
  this.getRowClass = null;
9281
9285
  this.showConfirm = null;