@osovitny/anatoly 2.14.19 → 2.14.20
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/convert.mjs +10 -5
- package/esm2020/lib/core/services/appcontext.service.mjs +5 -1
- package/esm2020/lib/ui/forms/components/company/company.component.mjs +3 -3
- package/fesm2015/osovitny-anatoly.mjs +15 -6
- package/fesm2015/osovitny-anatoly.mjs.map +1 -1
- package/fesm2020/osovitny-anatoly.mjs +15 -6
- package/fesm2020/osovitny-anatoly.mjs.map +1 -1
- package/lib/core/convert.d.ts +1 -0
- package/lib/core/services/appcontext.service.d.ts +1 -0
- package/package.json +1 -1
package/lib/core/convert.d.ts
CHANGED
|
@@ -8,6 +8,7 @@ export declare class Convert {
|
|
|
8
8
|
}[];
|
|
9
9
|
static stringToArray(str: string, separator?: string): string[];
|
|
10
10
|
static stringToIntArray(str: string, separator?: string): number[];
|
|
11
|
+
static company2String(comp: any): string;
|
|
11
12
|
static address2String(adr: any): string;
|
|
12
13
|
static dateToString(date: any): string;
|
|
13
14
|
static utcDateToLocalDate(d: any): Date;
|
|
@@ -16,6 +16,7 @@ export declare class AppContextService extends BaseApiService {
|
|
|
16
16
|
getCurrent(success?: Function, getCachedIfExist?: boolean): void;
|
|
17
17
|
updateCurrent(success?: Function): void;
|
|
18
18
|
clearCurrent(): void;
|
|
19
|
+
refreshCurrent(): void;
|
|
19
20
|
isUserSignedIn(): any;
|
|
20
21
|
isUserAdmin(): any;
|
|
21
22
|
get current(): any;
|