ps-toolkit-ui 1.18.43 → 1.18.46

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.
@@ -3958,11 +3958,12 @@
3958
3958
  this.table.set(this.changeRows);
3959
3959
  if (this.table.searchForm) {
3960
3960
  this.table.searchForm.displayLabel = this.table.expertSearch;
3961
- this.table.searchForm.class = (this.table.searchForm.class ? this.table.searchForm.class : '') + (this.table.expertSearch ? '' : ' w-1000-30 w-700-40 w-500-50 p-0');
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
3963
  var s = new InputClass(this.table.environment, this.table.l, 'Search', 'fad fa-magnifying-glass', exports.InputType.Submit, 'blue h-30');
3964
3964
  s.style = { top: '20px', left: '5px', position: 'absolute', width: '50%' };
3965
3965
  this.table.searchForm.inputs.push(s);
3966
+ this.table.searchForm.name = 'ExpertSearch';
3966
3967
  }
3967
3968
  this.table.searchForm.inputs.forEach(function (x) {
3968
3969
  var hasSubmit = _this.table.searchForm.inputs.some(function (s) { return s.type === exports.InputType.Submit; });