@osovitny/anatoly 3.17.103 → 3.17.105
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/localization/localization.service.mjs +6 -6
- package/esm2022/lib/core/localization/localize.pipe.mjs +4 -4
- package/esm2022/lib/core/services/appcontext.service.mjs +4 -13
- package/esm2022/lib/ui/components/html-editor/defaultoptions.mjs +3 -3
- package/esm2022/lib/ui/forms/components/address/address.component.mjs +34 -34
- package/esm2022/lib/ui/forms/components/company/company.component.mjs +17 -17
- package/fesm2022/osovitny-anatoly.mjs +62 -71
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/core/localization/localization.service.d.ts +2 -2
- package/lib/core/services/appcontext.service.d.ts +2 -2
- package/lib/ui/components/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -24,8 +24,8 @@ export declare class LocalizationService implements OnDestroy {
|
|
|
24
24
|
getUTCToLocalizedDateTime(value: any, formatStr?: string): string;
|
|
25
25
|
getUTCToLocalizedDate(value: any, formatStr?: string): string;
|
|
26
26
|
getUTCToLocalizedTime(value: any, formatStr?: string): string;
|
|
27
|
-
|
|
28
|
-
|
|
27
|
+
getLocalizedDistance(endedDateStr: string, startedDateStr: string): string;
|
|
28
|
+
getUTCToLocalizedDistance(value: string): string;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<LocalizationService, never>;
|
|
30
30
|
static ɵprov: i0.ɵɵInjectableDeclaration<LocalizationService>;
|
|
31
31
|
}
|
|
@@ -19,12 +19,12 @@ export declare class AppContextService extends ApiServiceBase {
|
|
|
19
19
|
private getCurrent4Session;
|
|
20
20
|
private setCurrent2Session;
|
|
21
21
|
private dataReceived;
|
|
22
|
-
private
|
|
22
|
+
private getCurrentContext;
|
|
23
23
|
private updateCurrentIfExpired;
|
|
24
24
|
init(context?: any): void;
|
|
25
25
|
loadRequiredJsonFiles(): Observable<any>;
|
|
26
26
|
loadRequiredItems(): Observable<any>;
|
|
27
|
-
updateCurrent(
|
|
27
|
+
updateCurrent(): void;
|
|
28
28
|
clearLocalStorage(): void;
|
|
29
29
|
clearSessionStorage(): void;
|
|
30
30
|
clearWebStorage(): void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { BuyAccessButtonComponent, SubscribePlanButtonComponent, CardComponent, CheckIconComponent, CountryDropdownlist, TimezoneDropdownlist, NodataComponent, PageSpinnerComponent, LoadingComponent } from './exports';
|
|
2
|
-
export declare const MAIN_COMPONENTS: (typeof
|
|
2
|
+
export declare const MAIN_COMPONENTS: (typeof TimezoneDropdownlist | typeof CountryDropdownlist | typeof SubscribePlanButtonComponent | typeof BuyAccessButtonComponent | typeof CardComponent | typeof CheckIconComponent | typeof NodataComponent | typeof LoadingComponent | typeof PageSpinnerComponent)[];
|