ps-toolkit-ui 1.18.30 → 1.18.32

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.
@@ -3960,12 +3960,16 @@
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
3962
  if (this.table.expertSearch) {
3963
- this.table.searchForm.inputs.push(new InputClass(this.table.environment, this.table.l, 'Search', 'fad fa-magnifying-glass', exports.InputType.Submit, 'blue'));
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
+ console.log(s, 'ssssssss');
3964
3967
  }
3965
3968
  this.table.searchForm.inputs.forEach(function (x) {
3966
3969
  x.required = false;
3967
3970
  x.displayLabel = _this.table.expertSearch;
3968
3971
  x.class = x.class + ' search-form-inp';
3972
+ console.log(_this.table.searchForm.inputs, 'this.table.searchForm.inputs');
3969
3973
  if (!_this.table.searchForm.inputs.some(function (s) { return s.type === exports.InputType.Submit; })) {
3970
3974
  if (x.onChange == null) {
3971
3975
  x.onChange = function () {