@acorex/components 16.19.41 → 16.19.43

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.
@@ -12065,11 +12065,10 @@ class AXSearchBarComponent {
12065
12065
  this._defultValueCount = [];
12066
12066
  this._filterItems = [];
12067
12067
  this._filterItemsClone = [];
12068
- this.items = this._items[0].items;
12069
- this.form.widgets = [];
12070
- this.form.widgetsQuery.forEach((el) => {
12071
- this.form.widgets.push(el);
12072
- });
12068
+ this.items = this._items.flatMap((group) => group.rows.flatMap((r) => r.items.map((item) => ({
12069
+ property: item.property,
12070
+ value: item.value,
12071
+ }))));
12073
12072
  this.cdr.detectChanges();
12074
12073
  }
12075
12074
  handleButtonClick() {