ps-toolkit-ui 1.13.1 → 1.13.2
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 +5 -3
- 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 +6 -4
- package/fesm2015/ps-toolkit-ui.js +5 -3
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -3519,9 +3519,11 @@
|
|
|
3519
3519
|
x.displayLabel = false;
|
|
3520
3520
|
x.class = x.class + ' search-form-inp';
|
|
3521
3521
|
if (!_this.table.searchForm.inputs.some(function (s) { return s.type === exports.InputType.Submit; })) {
|
|
3522
|
-
x.onChange
|
|
3523
|
-
|
|
3524
|
-
|
|
3522
|
+
if (x.onChange == null) {
|
|
3523
|
+
x.onChange = function () {
|
|
3524
|
+
_this.table.load();
|
|
3525
|
+
};
|
|
3526
|
+
}
|
|
3525
3527
|
x.withClear = true;
|
|
3526
3528
|
}
|
|
3527
3529
|
if (x.type === exports.InputType.Submit) {
|