@messaia/cdk 21.1.0-rc.26 → 21.1.0-rc.27

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.
@@ -14,7 +14,7 @@ import * as i1$3 from '@angular/platform-browser';
14
14
  import { Title } from '@angular/platform-browser';
15
15
  import * as i1$2 from '@angular/router';
16
16
  import { Router, RouterModule } from '@angular/router';
17
- import { fromEvent, Subject, switchMap, timer, takeUntil as takeUntil$1, filter, map, tap, merge as merge$1, debounceTime, of, BehaviorSubject, firstValueFrom, throwError, distinctUntilChanged, Observable } from 'rxjs';
17
+ import { fromEvent, Subject, switchMap, timer, takeUntil as takeUntil$1, filter, map, tap, merge as merge$1, of, BehaviorSubject, firstValueFrom, throwError, distinctUntilChanged, debounceTime, Observable } from 'rxjs';
18
18
  import * as i2 from '@angular/material/button';
19
19
  import { MatButtonModule, MatIconButton } from '@angular/material/button';
20
20
  import * as i8 from '@angular/material/icon';
@@ -1517,13 +1517,7 @@ class BaseComponent {
1517
1517
  });
1518
1518
  /* Merge all event streams to handle concurrent open/close actions */
1519
1519
  if (panelStateChanges$.length > 0) {
1520
- this.matExpansionPanelSubscriptions.push(merge$1(...panelStateChanges$).pipe(
1521
- /*
1522
- * debounceTime(50) waits for all concurrent synchronous/rapid events
1523
- * to finish firing before proceeding. If Panel A closes and Panel B
1524
- * opens instantly, only Panel B's final state triggers navigation.
1525
- */
1526
- debounceTime(50)).subscribe(eventState => {
1520
+ this.matExpansionPanelSubscriptions.push(merge$1(...panelStateChanges$).subscribe(eventState => {
1527
1521
  if (this.setUrlHash) {
1528
1522
  /* If a valid hash exists, set it as url segment */
1529
1523
  if (eventState.hash) {