ets-fe-ng-sdk 19.0.115 → 19.0.116

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.
@@ -373,4 +373,10 @@ router-outlet+* {
373
373
  animation-duration: 1s;
374
374
  animation-iteration-count: infinite;
375
375
  font-weight: 600;
376
+ }
377
+
378
+ .glass{
379
+
380
+ backdrop-filter: blur(8.2px);
381
+ -webkit-backdrop-filter: blur(8.2px);
376
382
  }
@@ -23545,6 +23545,7 @@ class ETSPromptUpdateService {
23545
23545
  */
23546
23546
  constructor(swUpdate, cS) {
23547
23547
  this.cS = cS;
23548
+ this.showPrompt = true;
23548
23549
  /**
23549
23550
  * Indicates whether the confirmation prompt dialog is currently open
23550
23551
  */
@@ -23562,13 +23563,13 @@ class ETSPromptUpdateService {
23562
23563
  * @param reason - Optional reason to display in the prompt explaining why a reload is needed
23563
23564
  */
23564
23565
  prompter(reason) {
23566
+ if (!this.showPrompt)
23567
+ return;
23565
23568
  if (this.promptRef)
23566
23569
  this.promptRef.close();
23567
23570
  if (this.promptSub)
23568
23571
  this.promptSub.unsubscribe();
23569
- this.promptRef = this.cS.confirm$((reason
23570
- ? reason
23571
- : `We need to reload the application to receive new updates.`) +
23572
+ this.promptRef = this.cS.confirm$((reason ? reason : `We need to reload the application to receive new updates.`) +
23572
23573
  `\n Please confirm if we should refresh.`);
23573
23574
  this.promptSub = this.promptRef.afterClosed().subscribe((r) => {
23574
23575
  if (r)