@acorex/components 16.19.9 → 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,8 +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 * as lodash from 'lodash-es';
25
- import { differenceBy, cloneDeep } from 'lodash-es';
24
+ import { differenceBy, map, groupBy, cloneDeep } from 'lodash-es';
26
25
  import * as i1$4 from '@angular/router';
27
26
  import { RouterModule } from '@angular/router';
28
27
 
@@ -11765,11 +11764,10 @@ class AXSearchBarComponent {
11765
11764
  });
11766
11765
  }
11767
11766
  });
11768
- this._items = lodash
11769
- .chain(v)
11770
- .groupBy((x) => x.property.row)
11771
- .map((value, key) => ({ row: key, items: value }))
11772
- .value();
11767
+ this._items = map(groupBy(v, (x) => x.property.row), (value, key) => ({
11768
+ row: key,
11769
+ items: value,
11770
+ }));
11773
11771
  }
11774
11772
  onValueChange = new EventEmitter();
11775
11773
  onSearchValue = new EventEmitter();