@skysoftware-co/bayan-hr-widgets-ui 2.0.23 → 2.0.24

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.
@@ -4563,8 +4563,8 @@ class MyTeamPopupComponent {
4563
4563
  searchValue = signal('', ...(ngDevMode ? [{ debugName: "searchValue" }] : /* istanbul ignore next */ []));
4564
4564
  items = signal([], ...(ngDevMode ? [{ debugName: "items" }] : /* istanbul ignore next */ []));
4565
4565
  isDataLoading = signal(false, ...(ngDevMode ? [{ debugName: "isDataLoading" }] : /* istanbul ignore next */ []));
4566
- hasResolvedResetLoad = signal(false, ...(ngDevMode ? [{ debugName: "hasResolvedResetLoad" }] : /* istanbul ignore next */ []));
4567
- isLoadingVisible = computed(() => this.isInitialLoading() || this.isDataLoading() || !this.hasResolvedResetLoad(), ...(ngDevMode ? [{ debugName: "isLoadingVisible" }] : /* istanbul ignore next */ []));
4566
+ hasResolvedResetLoad = signal(true, ...(ngDevMode ? [{ debugName: "hasResolvedResetLoad" }] : /* istanbul ignore next */ []));
4567
+ isLoadingVisible = computed(() => this.isPopupVisible() && (this.isInitialLoading() || this.isDataLoading() || !this.hasResolvedResetLoad()), ...(ngDevMode ? [{ debugName: "isLoadingVisible" }] : /* istanbul ignore next */ []));
4568
4568
  hasMoreData = signal(true, ...(ngDevMode ? [{ debugName: "hasMoreData" }] : /* istanbul ignore next */ []));
4569
4569
  phoneIcon = input(faPhone$1, ...(ngDevMode ? [{ debugName: "phoneIcon" }] : /* istanbul ignore next */ []));
4570
4570
  emailIcon = input(faEnvelope, ...(ngDevMode ? [{ debugName: "emailIcon" }] : /* istanbul ignore next */ []));
@@ -4607,7 +4607,7 @@ class MyTeamPopupComponent {
4607
4607
  }
4608
4608
  closePopup() {
4609
4609
  myTeamSubordinatesInitialLoading.set(false);
4610
- this.hasResolvedResetLoad.set(false);
4610
+ this.hasResolvedResetLoad.set(true);
4611
4611
  myTeamSubordinatesVisible.set(false);
4612
4612
  this.showAllSubordinates.set(false);
4613
4613
  this.searchValue.set('');