@osovitny/anatoly 3.16.50 → 3.16.51
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/services/appcontext.service.mjs +42 -60
- package/esm2022/lib/ui/components/billing/buyaccess-button.component.mjs +8 -5
- package/esm2022/lib/ui/components/billing/subscribe-plan-button.component.mjs +10 -7
- package/esm2022/lib/ui/forms/contact-us/contact-us.mjs +13 -13
- package/fesm2022/osovitny-anatoly.mjs +69 -81
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/core/services/appcontext.service.d.ts +4 -7
- package/lib/ui/forms/contact-us/contact-us.d.ts +0 -1
- package/package.json +1 -1
|
@@ -8,20 +8,17 @@ export declare class AppContextService extends ApiServiceBase {
|
|
|
8
8
|
protected sessionStorage: SessionStorageService;
|
|
9
9
|
private storageKeyName;
|
|
10
10
|
private subscription;
|
|
11
|
-
private successes;
|
|
12
11
|
private _updated;
|
|
13
12
|
readonly updated$: import("rxjs").Observable<any>;
|
|
14
13
|
constructor(http: HttpClient, localStorage: LocalStorageService, sessionStorage: SessionStorageService);
|
|
15
|
-
private
|
|
16
|
-
private
|
|
17
|
-
private
|
|
14
|
+
private fireUpdated;
|
|
15
|
+
private getCurrent4Session;
|
|
16
|
+
private setCurrent2Session;
|
|
18
17
|
private dataReceived;
|
|
19
18
|
private getCurrentPrivate;
|
|
19
|
+
private updateCurrentIfExpired;
|
|
20
20
|
init(context: any): void;
|
|
21
|
-
getLatestCurrent(success?: Function): void;
|
|
22
|
-
getCurrent(success?: Function): void;
|
|
23
21
|
updateCurrent(success?: Function): void;
|
|
24
|
-
clearCurrent(): void;
|
|
25
22
|
clearLocalStorage(): void;
|
|
26
23
|
clearSessionStorage(): void;
|
|
27
24
|
clearWebStorage(): void;
|
|
@@ -23,7 +23,6 @@ export declare class ContactUsForm extends BaseEditComponent implements OnInit {
|
|
|
23
23
|
constructor(reCaptcha: ReCaptchaV3Service, fb: FormBuilder, appContext: AppContextService, api: EmailsApiService, notificationService: NotificationService);
|
|
24
24
|
ngOnInit(): void;
|
|
25
25
|
createFormGroup(): void;
|
|
26
|
-
setContext(context: any): void;
|
|
27
26
|
isValid(): boolean;
|
|
28
27
|
contactUs(): void;
|
|
29
28
|
onSubmit(): void;
|