@ngutil/data 0.0.69 → 0.0.71
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.
- package/esm2022/model/meta.mjs +2 -2
- package/esm2022/query/executor.mjs +2 -2
- package/esm2022/query/filter.mjs +2 -2
- package/esm2022/query/path.mjs +2 -2
- package/esm2022/query/query-property.mjs +2 -2
- package/esm2022/query/sorter.mjs +2 -2
- package/esm2022/source/source.mjs +3 -3
- package/fesm2022/ngutil-data.mjs +2 -2
- package/fesm2022/ngutil-data.mjs.map +1 -1
- package/package.json +3 -3
- package/source/source.d.ts +1 -1
package/fesm2022/ngutil-data.mjs
CHANGED
|
@@ -4,7 +4,7 @@ import { DataSource as DataSource$1 } from '@angular/cdk/collections';
|
|
|
4
4
|
import { takeUntilDestroyed, toObservable } from '@angular/core/rxjs-interop';
|
|
5
5
|
import { BehaviorSubject, Observable, combineLatest, map, shareReplay, take, of, ReplaySubject, switchMap, distinctUntilChanged, merge, timer, catchError, tap, filter, Subject, takeUntil, NEVER, finalize, throwError } from 'rxjs';
|
|
6
6
|
import { BusyDirective } from '@ngutil/aria';
|
|
7
|
-
import { flattenDepth, isEqual, intersection, flattenDeep } from 'lodash';
|
|
7
|
+
import { flattenDepth, isEqual, intersection, flattenDeep } from 'lodash-es';
|
|
8
8
|
import { deepClone, deepFreeze, isPlainObject, isTruthy, isFalsy, toSorted } from '@ngutil/common';
|
|
9
9
|
|
|
10
10
|
function pathGetterCompile(path) {
|
|
@@ -1016,7 +1016,7 @@ class DataSource extends DataSource$1 {
|
|
|
1016
1016
|
all() {
|
|
1017
1017
|
return this.setSlice({ start: 0, end: Infinity });
|
|
1018
1018
|
}
|
|
1019
|
-
|
|
1019
|
+
reload() {
|
|
1020
1020
|
this.#reload.next();
|
|
1021
1021
|
}
|
|
1022
1022
|
getItem(ref) {
|