@design-factory/design-factory 19.1.0-next.1 → 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.
package/README.md
CHANGED
|
@@ -65,6 +65,7 @@ The supported versions are:
|
|
|
65
65
|
| 18.0.x | 18.x.x | 5.3.3 | 17.0.x | 13.2.x | 31.3.x | | 0.4.x |
|
|
66
66
|
| 18.1.x | 18.x.x | 5.3.3 | 17.0.x | 13.2.x | 32.0.x | | 0.4.x |
|
|
67
67
|
| 19.0.x | 19.x.x | 5.3.3 | 18.0.x | 14.0.x | 32.0.x | | 0.7.x |
|
|
68
|
+
| 19.1.x | 19.x.x | 5.3.3 | 18.0.x | 14.1.x | 32.0.x | | 0.8.x |
|
|
68
69
|
|
|
69
70
|
## How to work with the icons
|
|
70
71
|
|
|
@@ -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$, {
|
|
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
|
});
|