@solcre-org/core-ui 2.20.29 → 2.20.30

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.
@@ -9,7 +9,7 @@ import { FormControl, Validators, FormsModule, ReactiveFormsModule, FormBuilder
9
9
  import { AuthService, ApiService } from '@solcre-org/core';
10
10
  import { takeUntilDestroyed } from '@angular/core/rxjs-interop';
11
11
  import { distinctUntilChanged, debounceTime, tap as tap$1, map as map$1, filter, catchError as catchError$1 } from 'rxjs/operators';
12
- import { map, BehaviorSubject, Subject, throttleTime, takeUntil, debounceTime as debounceTime$1, distinctUntilChanged as distinctUntilChanged$1, tap, switchMap, of, catchError, finalize, throwError, Observable, forkJoin, zip, timeout, Subscription, from } from 'rxjs';
12
+ import { map, BehaviorSubject, Subject, throttleTime, takeUntil, debounceTime as debounceTime$1, distinctUntilChanged as distinctUntilChanged$1, tap, switchMap, of, catchError, finalize, throwError, Observable, forkJoin, zip, skip, timeout, Subscription, from } from 'rxjs';
13
13
  import * as i5 from '@ng-select/ng-select';
14
14
  import { NgSelectModule } from '@ng-select/ng-select';
15
15
  import * as i4 from '@angular/router';
@@ -14278,7 +14278,7 @@ class GenericTableComponent {
14278
14278
  this.startLoaderTimeout(loaderId);
14279
14279
  });
14280
14280
  this.moreData().forEach(config => {
14281
- this.subscriptions.push(this.modelApiService.getMoreDataObservable(config.key).subscribe({
14281
+ this.subscriptions.push(this.modelApiService.getMoreDataObservable(config.key).pipe(skip(1)).subscribe({
14282
14282
  next: (data) => {
14283
14283
  const moreDataMap = new Map();
14284
14284
  moreDataMap.set(config.key, data || []);
@@ -15902,7 +15902,7 @@ class GenericTableComponent {
15902
15902
  const isMainDataLoading = this.loadingStates.mainData;
15903
15903
  const isFilterDataLoading = this.loadingStates.filterData;
15904
15904
  const moreDataPending = this.loadingStates.moreData.size;
15905
- if (!isMainDataLoading) {
15905
+ if (!isMainDataLoading && moreDataPending === 0) {
15906
15906
  this.loaderService.hideLoader(this.MAIN_DATA_LOADER_ID);
15907
15907
  this.clearLoaderTimeout(this.MAIN_DATA_LOADER_ID);
15908
15908
  }
@@ -17750,12 +17750,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.0.6", ngImpor
17750
17750
  // Este archivo es generado automáticamente por scripts/update-version.js
17751
17751
  // No edites manualmente este archivo
17752
17752
  const VERSION = {
17753
- full: '2.20.29',
17753
+ full: '2.20.30',
17754
17754
  major: 2,
17755
17755
  minor: 20,
17756
- patch: 29,
17757
- timestamp: '2026-02-27T15:55:43.722Z',
17758
- buildDate: '27/2/2026'
17756
+ patch: 30,
17757
+ timestamp: '2026-03-02T18:03:14.491Z',
17758
+ buildDate: '2/3/2026'
17759
17759
  };
17760
17760
 
17761
17761
  class MainNavComponent {