@acorex/components 16.19.8 → 16.19.10

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.
@@ -21,7 +21,7 @@ import moment from 'jalali-moment';
21
21
  import { trigger, state, transition, style, animate } from '@angular/animations';
22
22
  import * as i5 from '@angular/cdk/a11y';
23
23
  import { A11yModule } from '@angular/cdk/a11y';
24
- import { differenceBy, chain, cloneDeep } from 'lodash-es';
24
+ import { differenceBy, map, groupBy, cloneDeep } from 'lodash-es';
25
25
  import * as i1$4 from '@angular/router';
26
26
  import { RouterModule } from '@angular/router';
27
27
 
@@ -11764,10 +11764,10 @@ class AXSearchBarComponent {
11764
11764
  });
11765
11765
  }
11766
11766
  });
11767
- this._items = chain(v)
11768
- .groupBy((x) => x.property.row)
11769
- .map((value, key) => ({ row: key, items: value }))
11770
- .value();
11767
+ this._items = map(groupBy(v, (x) => x.property.row), (value, key) => ({
11768
+ row: key,
11769
+ items: value,
11770
+ }));
11771
11771
  }
11772
11772
  onValueChange = new EventEmitter();
11773
11773
  onSearchValue = new EventEmitter();