intelica-library-ui 0.1.64 → 0.1.65

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.
@@ -2924,6 +2924,7 @@ class ProfileService {
2924
2924
  AuthenticationService = inject(AuthenticationService);
2925
2925
  Profile = null;
2926
2926
  PrivateKey = "";
2927
+ ProfileReady = signal(false);
2927
2928
  Initialize() {
2928
2929
  this.AuthenticationService.GetPrivateValue().subscribe(response => {
2929
2930
  this.PrivateKey = response;
@@ -2938,6 +2939,7 @@ class ProfileService {
2938
2939
  }
2939
2940
  else
2940
2941
  this.Profile = null;
2942
+ this.ProfileReady.set(true);
2941
2943
  }
2942
2944
  static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.1", ngImport: i0, type: ProfileService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
2943
2945
  static ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.1", ngImport: i0, type: ProfileService, providedIn: "root" });