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.
- package/bundles/ps-toolkit-ui.umd.js +4 -0
- package/bundles/ps-toolkit-ui.umd.js.map +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js +1 -1
- package/bundles/ps-toolkit-ui.umd.min.js.map +1 -1
- package/esm2015/lib/classes/table.class.js +2 -1
- package/esm2015/lib/components/table/row/table.row.component.js +4 -1
- package/fesm2015/ps-toolkit-ui.js +4 -0
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/classes/table.class.d.ts +1 -0
- package/package.json +1 -1
|
@@ -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;
|