fabrikantencore 2.40.2 → 2.40.4

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.
@@ -24,7 +24,6 @@ import * as i1$1 from '@angular/material/dialog';
24
24
  import { MAT_DIALOG_DATA, MatDialogConfig, MatDialogModule } from '@angular/material/dialog';
25
25
  import * as i2 from '@angular/platform-browser';
26
26
  import * as i1$2 from '@angular/cdk/clipboard';
27
- import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
28
27
  import * as i6$3 from '@angular/material/tooltip';
29
28
  import { MatTooltipModule } from '@angular/material/tooltip';
30
29
  import { MatListModule } from '@angular/material/list';
@@ -19458,7 +19457,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.13", ngImpo
19458
19457
  class SVGService {
19459
19458
  FabrikantenApiClient;
19460
19459
  sanitization;
19461
- Loading = false;
19460
+ LoadingSignal = signal(false, ...(ngDevMode ? [{ debugName: "LoadingSignal" }] : /* istanbul ignore next */ []));
19461
+ get Loading() {
19462
+ return this.LoadingSignal();
19463
+ }
19462
19464
  FabrikantenSVGViewModel;
19463
19465
  SafeURLLoaded = false;
19464
19466
  SafeURL;
@@ -19482,7 +19484,7 @@ class SVGService {
19482
19484
  }
19483
19485
  LoadFabrikantenSVGViewModel(sessionid, ChangeDetectorRef) {
19484
19486
  if (!this.Loading) {
19485
- this.Loading = true;
19487
+ this.LoadingSignal.set(true);
19486
19488
  ChangeDetectorRef.detectChanges();
19487
19489
  var request = new FabrikantenSVGRequestModel();
19488
19490
  request.sessionId = sessionid;
@@ -19496,7 +19498,7 @@ class SVGService {
19496
19498
  this.SafeURL = this.sanitization.bypassSecurityTrustResourceUrl(this.FabrikantenSVGViewModel.svg + "");
19497
19499
  this.SafeURLLoaded = true;
19498
19500
  this.CollectSnedes();
19499
- this.Loading = false;
19501
+ this.LoadingSignal.set(false);
19500
19502
  ChangeDetectorRef.detectChanges();
19501
19503
  if (this.FabrikantenService != null) {
19502
19504
  if (this.FabrikantenSVGViewModel.checksum != this.FabrikantenService.FabrikantenViewModel.checksum) {
@@ -19512,7 +19514,7 @@ class SVGService {
19512
19514
  }
19513
19515
  }, (error) => {
19514
19516
  alert('An unexpected error occured');
19515
- this.Loading = false;
19517
+ this.LoadingSignal.set(false);
19516
19518
  });
19517
19519
  }
19518
19520
  else {
@@ -32591,7 +32593,6 @@ class FabrikantenCoreModule {
32591
32593
  AngularEditorModule,
32592
32594
  MatInputModule,
32593
32595
  FormsModule,
32594
- BrowserAnimationsModule,
32595
32596
  MatTooltipModule,
32596
32597
  MatButtonModule,
32597
32598
  MatListModule,
@@ -32672,7 +32673,6 @@ class FabrikantenCoreModule {
32672
32673
  AngularEditorModule,
32673
32674
  MatInputModule,
32674
32675
  FormsModule,
32675
- BrowserAnimationsModule,
32676
32676
  MatTooltipModule,
32677
32677
  MatButtonModule,
32678
32678
  MatListModule,
@@ -32712,7 +32712,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "21.2.13", ngImpo
32712
32712
  AngularEditorModule,
32713
32713
  MatInputModule,
32714
32714
  FormsModule,
32715
- BrowserAnimationsModule,
32716
32715
  MatTooltipModule,
32717
32716
  MatButtonModule,
32718
32717
  MatListModule,