@osovitny/anatoly 3.16.76 → 3.16.77
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/esm2022/lib/core/consts/settings.mjs +3 -3
- package/esm2022/lib/ui/components/base/component.mjs +6 -2
- package/fesm2022/osovitny-anatoly.mjs +7 -3
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/core/consts/settings.d.ts +2 -2
- package/lib/ui/components/base/component.d.ts +4 -2
- package/package.json +1 -1
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
export declare function getAppSettingsById(id:
|
|
2
|
-
export declare function getAppSettingsByName(name:
|
|
1
|
+
export declare function getAppSettingsById(id: any): any;
|
|
2
|
+
export declare function getAppSettingsByName(name: any): any;
|
|
3
3
|
export declare const AppCoreSettings: any;
|
|
4
4
|
export declare const L10NUrl: string;
|
|
5
5
|
export declare const AppVersion: string;
|
|
@@ -1,12 +1,14 @@
|
|
|
1
|
-
import { OnDestroy } from "@angular/core";
|
|
1
|
+
import { OnDestroy, OnInit } from "@angular/core";
|
|
2
2
|
import { Subs } from "../../../core";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare abstract class ComponentBase implements OnDestroy {
|
|
4
|
+
export declare abstract class ComponentBase implements OnInit, OnDestroy {
|
|
5
|
+
protected isDevMode: boolean;
|
|
5
6
|
protected subs: Subs;
|
|
6
7
|
protected dataLoading: boolean;
|
|
7
8
|
protected dataLoaded: boolean;
|
|
8
9
|
protected dataFound: boolean;
|
|
9
10
|
classes: string;
|
|
11
|
+
ngOnInit(): void;
|
|
10
12
|
ngOnDestroy(): void;
|
|
11
13
|
getEntityId(): string;
|
|
12
14
|
getValueByNameInQS(name: any): string;
|