@sumaris-net/ngx-components 2.4.136 → 2.4.138
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/src/app/core/menu/menu.service.mjs +11 -12
- package/esm2020/src/app/shared/storage/storage.service.mjs +3 -3
- package/fesm2015/sumaris-net.ngx-components.mjs +10 -11
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +10 -11
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/menu/menu.service.d.ts +2 -2
- package/src/app/shared/storage/storage.service.d.ts +0 -1
package/package.json
CHANGED
|
@@ -20,8 +20,8 @@ export interface MenuPathParam {
|
|
|
20
20
|
};
|
|
21
21
|
}
|
|
22
22
|
export declare class MenuService extends StartableObservableService<MenuItem[]> {
|
|
23
|
-
protected configService: ConfigService;
|
|
24
23
|
protected settings: LocalSettingsService;
|
|
24
|
+
protected configService: ConfigService;
|
|
25
25
|
protected accountService: AccountService;
|
|
26
26
|
protected router: Router;
|
|
27
27
|
protected environment: Environment;
|
|
@@ -37,7 +37,7 @@ export declare class MenuService extends StartableObservableService<MenuItem[]>
|
|
|
37
37
|
private readonly _$enabled;
|
|
38
38
|
private readonly _$subMenuEnabled;
|
|
39
39
|
private readonly _$listenRoute;
|
|
40
|
-
constructor(
|
|
40
|
+
constructor(settings: LocalSettingsService, configService: ConfigService, accountService: AccountService, router: Router, environment: Environment, options?: MenuOptions, staticItems?: IMenuItem[]);
|
|
41
41
|
get opened(): Observable<boolean>;
|
|
42
42
|
get splitPaneWhen(): Observable<SplitPaneShowWhen>;
|
|
43
43
|
get enabled(): Observable<boolean>;
|
|
@@ -5,7 +5,6 @@ import { Platform } from '@ionic/angular';
|
|
|
5
5
|
import { Environment } from '../../../environments/environment.class';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class StorageService extends StartableService<Storage> implements IStorage<Storage> {
|
|
8
|
-
private platform;
|
|
9
8
|
private storage;
|
|
10
9
|
private environment;
|
|
11
10
|
get driver(): string | undefined;
|