monkey-style-guide 2.0.122 → 2.0.123

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.
@@ -448,7 +448,9 @@ class MonkeyStyleGuideSnackbarService {
448
448
  this.timeoutBlinkTab = null;
449
449
  this.snackbarElements = new SnackbarElements();
450
450
  this.locationRouter.onUrlChange(() => {
451
- this.closeAll();
451
+ if (this.config && !this.config?.closeOnUrlChange) {
452
+ this.closeAll();
453
+ }
452
454
  });
453
455
  }
454
456
  stopBlinking() {