slick-components 17.0.48 → 17.0.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.
@@ -23,7 +23,7 @@ class SlickInitParams {
23
23
  }
24
24
  }
25
25
  class SlickInitService {
26
- static { this.version = "17.0.48"; }
26
+ static { this.version = "17.0.50"; }
27
27
  constructor() { }
28
28
  static init(initParams) {
29
29
  console.info(`Slick Components Version ${SlickInitService.version}`);
@@ -6097,7 +6097,7 @@ class SlickGridComponent {
6097
6097
  searchValueId: ddValue.id,
6098
6098
  searchValueText: ddValue.text
6099
6099
  });
6100
- column.filterDropdownValue;
6100
+ column.filterDropdownValue = ddValue.id;
6101
6101
  column.isFiltering = true;
6102
6102
  }
6103
6103
  else {
@@ -6522,8 +6522,10 @@ class SlickGridComponent {
6522
6522
  column.isFiltering = true;
6523
6523
  if (column.filterType === SlickGridColumnFilterTypes.text)
6524
6524
  column.filterText = c.filterText;
6525
- else if (column.filterType === SlickGridColumnFilterTypes.dropdown)
6525
+ else if (column.filterType === SlickGridColumnFilterTypes.dropdown) {
6526
6526
  column.filterDropdownValue = c.filterDropdownValue;
6527
+ column.filterText = c.filterText;
6528
+ }
6527
6529
  if (!column.filterText && !column.filterDropdownValue) {
6528
6530
  column.isFiltering = false;
6529
6531
  column.isLocked = false;