ps-toolkit-ui 1.22.30 → 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.
- package/bundles/ps-toolkit-ui.umd.js +3 -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/components/table/table.component.js +4 -1
- package/fesm2015/ps-toolkit-ui.js +3 -0
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -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 [];
|