@firestitch/filter 12.7.1 → 12.7.2

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.
@@ -2194,13 +2194,13 @@
2194
2194
  return (item instanceof MultipleSelectItem) && item.hasPendingValues && item.isolate;
2195
2195
  });
2196
2196
  if (defaultValuesToBeLoaded.length > 0 || valuesToBeLoaded.length > 0) {
2197
- rxjs.forkJoin(defaultValuesToBeLoaded
2198
- .map(function (item) { return item.loadDefaultValue(); }), valuesToBeLoaded
2197
+ rxjs.forkJoin(__spreadArray(__spreadArray([], __read(defaultValuesToBeLoaded
2198
+ .map(function (item) { return item.loadDefaultValue(); }))), __read(valuesToBeLoaded
2199
2199
  .map(function (item) {
2200
2200
  item.loadAsyncValues();
2201
2201
  return item.loading$
2202
2202
  .pipe();
2203
- }))
2203
+ }))))
2204
2204
  .pipe(operators.finalize(function () {
2205
2205
  _this._ready$.next(true);
2206
2206
  }), operators.takeUntil(this._destroy$))