@design-factory/design-factory 19.1.0 → 19.1.1

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.
@@ -5060,7 +5060,10 @@ class DfSideNavComponent {
5060
5060
  this.overlayClass = signal(false);
5061
5061
  this.classes = computed(() => `df-sidenav-light d-flex flex-column flex-shrink-0${this.overlayClass() ? ' df-sidenav-menu-overlay' : ''}`);
5062
5062
  this.sideNavService = inject(DfSideNavService);
5063
- this.navItems = toSignal(this.sideNavService.sideNavItems$, { initialValue: [] });
5063
+ this.navItems = toSignal(this.sideNavService.sideNavItems$, {
5064
+ initialValue: [],
5065
+ equal: () => false
5066
+ });
5064
5067
  this.sideNavService.isInMenuOverlay$.pipe(takeUntilDestroyed()).subscribe((value) => {
5065
5068
  this.overlayClass.set(value);
5066
5069
  });