@ecodev/natural 45.4.1 → 45.4.2
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/esm2020/lib/classes/abstract-list.mjs +18 -3
- package/esm2020/lib/modules/relations/relations.component.mjs +7 -4
- package/esm2020/lib/modules/sidenav/sidenav.service.mjs +1 -1
- package/esm2020/lib/services/abstract-model.service.mjs +3 -3
- package/fesm2015/ecodev-natural.mjs +23 -5
- package/fesm2015/ecodev-natural.mjs.map +1 -1
- package/fesm2020/ecodev-natural.mjs +23 -5
- package/fesm2020/ecodev-natural.mjs.map +1 -1
- package/lib/modules/sidenav/sidenav.service.d.ts +2 -2
- package/package.json +1 -1
|
@@ -43,11 +43,11 @@ export declare class NaturalSidenavService extends NaturalAbstractController {
|
|
|
43
43
|
/**
|
|
44
44
|
* LocalStorage key that stores the minimized status
|
|
45
45
|
*/
|
|
46
|
-
private minimizedStorageKey;
|
|
46
|
+
private readonly minimizedStorageKey;
|
|
47
47
|
/**
|
|
48
48
|
* LocalStorage key that stores the opened status
|
|
49
49
|
*/
|
|
50
|
-
private openedStorageKey;
|
|
50
|
+
private readonly openedStorageKey;
|
|
51
51
|
private minimizedStorageKeyWithName;
|
|
52
52
|
private openedStorageKeyWithName;
|
|
53
53
|
constructor(mediaObserver: MediaObserver, router: Router, sessionStorage: NaturalStorage, naturalSidenavStackService: NaturalSidenavStackService);
|