ps-toolkit-ui 1.18.29 → 1.18.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 +5 -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 +6 -1
- package/fesm2015/ps-toolkit-ui.js +5 -0
- package/fesm2015/ps-toolkit-ui.js.map +1 -1
- package/package.json +1 -1
|
@@ -3959,6 +3959,11 @@
|
|
|
3959
3959
|
if (this.table.searchForm) {
|
|
3960
3960
|
this.table.searchForm.displayLabel = this.table.expertSearch;
|
|
3961
3961
|
this.table.searchForm.class = (this.table.searchForm.class ? this.table.searchForm.class : '') + (this.table.expertSearch ? '' : ' p-0');
|
|
3962
|
+
if (this.table.expertSearch) {
|
|
3963
|
+
var s = new InputClass(this.table.environment, this.table.l, 'Search', 'fad fa-magnifying-glass', exports.InputType.Submit, 'blue');
|
|
3964
|
+
s.style = { position: 'absolute', bottom: '20px', left: '0' };
|
|
3965
|
+
this.table.searchForm.inputs.push(s);
|
|
3966
|
+
}
|
|
3962
3967
|
this.table.searchForm.inputs.forEach(function (x) {
|
|
3963
3968
|
x.required = false;
|
|
3964
3969
|
x.displayLabel = _this.table.expertSearch;
|