@osovitny/anatoly 2.14.47 → 2.14.49
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/core/services/appcontext.service.mjs +9 -6
- package/esm2020/lib/ui/components/nodata/nodata.component.mjs +9 -10
- package/fesm2015/osovitny-anatoly.mjs +16 -14
- package/fesm2015/osovitny-anatoly.mjs.map +1 -1
- package/fesm2020/osovitny-anatoly.mjs +16 -14
- package/fesm2020/osovitny-anatoly.mjs.map +1 -1
- package/lib/core/services/appcontext.service.d.ts +2 -1
- package/lib/ui/components/nodata/nodata.component.d.ts +4 -4
- package/package.json +1 -1
|
@@ -13,8 +13,9 @@ export declare class AppContextService extends BaseApiService {
|
|
|
13
13
|
private setCurrentFromSession;
|
|
14
14
|
private updateCurrentIfExpired;
|
|
15
15
|
private dataReceived;
|
|
16
|
+
private getCurrentPrivate;
|
|
16
17
|
getLatestCurrent(success?: Function): void;
|
|
17
|
-
getCurrent(success?: Function
|
|
18
|
+
getCurrent(success?: Function): void;
|
|
18
19
|
updateCurrent(success?: Function): void;
|
|
19
20
|
clearCurrent(): void;
|
|
20
21
|
get current(): any;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
export declare class NodataComponent {
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
3
|
+
dataLoading: boolean;
|
|
4
|
+
dataLoaded: boolean;
|
|
5
|
+
dataFound: boolean;
|
|
6
6
|
icon: string;
|
|
7
7
|
heading: string;
|
|
8
8
|
headingClass: string;
|
|
9
9
|
constructor();
|
|
10
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<NodataComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NodataComponent, "anatoly-nodata", never, { "
|
|
11
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NodataComponent, "anatoly-nodata", never, { "dataLoading": "dataLoading"; "dataLoaded": "dataLoaded"; "dataFound": "dataFound"; "icon": "icon"; "heading": "heading"; "headingClass": "headingClass"; }, {}, never, ["*"], false>;
|
|
12
12
|
}
|