ps-toolkit-ui 1.8.43 → 1.8.50
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 -2
- 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/confirm/confirm.component.js +3 -3
- package/esm2015/lib/components/table/table.component.js +4 -1
- package/fesm2015/ps-toolkit-ui.js +5 -2
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/lib/components/confirm/confirm.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -3253,6 +3253,9 @@
|
|
|
3253
3253
|
x.onClick = function () {
|
|
3254
3254
|
_this.table.load(x);
|
|
3255
3255
|
};
|
|
3256
|
+
_this.table.searchForm.submit = function () {
|
|
3257
|
+
_this.table.load(x);
|
|
3258
|
+
};
|
|
3256
3259
|
}
|
|
3257
3260
|
});
|
|
3258
3261
|
}
|
|
@@ -6521,9 +6524,9 @@
|
|
|
6521
6524
|
this.confirm.form.data = function () {
|
|
6522
6525
|
return data;
|
|
6523
6526
|
};
|
|
6524
|
-
this.confirm.form.onSuccess = function (
|
|
6527
|
+
this.confirm.form.onSuccess = function (result) {
|
|
6525
6528
|
_this.confirm.hide();
|
|
6526
|
-
accept(
|
|
6529
|
+
accept(result);
|
|
6527
6530
|
};
|
|
6528
6531
|
this.confirm.show();
|
|
6529
6532
|
};
|