@osovitny/anatoly 2.14.14 → 2.14.16
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/ui/components/billing/buyaccess-button.component.mjs +6 -3
- package/esm2020/lib/ui/components/billing/subscribe-plan-button.component.mjs +6 -3
- package/esm2020/lib/ui/forms/components/address/address.component.mjs +1 -1
- package/esm2020/lib/ui/forms/components/company/company.component.mjs +16 -18
- package/fesm2015/osovitny-anatoly.mjs +24 -20
- package/fesm2015/osovitny-anatoly.mjs.map +1 -1
- package/fesm2020/osovitny-anatoly.mjs +24 -20
- package/fesm2020/osovitny-anatoly.mjs.map +1 -1
- package/lib/ui/components/billing/buyaccess-button.component.d.ts +2 -1
- package/lib/ui/components/billing/subscribe-plan-button.component.d.ts +2 -1
- package/lib/ui/forms/components/address/address.component.d.ts +1 -1
- package/lib/ui/forms/components/company/company.component.d.ts +1 -1
- package/package.json +1 -1
|
@@ -11,9 +11,10 @@ export declare class BuyAccessButtonComponent implements OnInit {
|
|
|
11
11
|
currentPlanTitle: string;
|
|
12
12
|
plan: number;
|
|
13
13
|
plantitle: string;
|
|
14
|
+
visibleIfUserSignedIn: boolean;
|
|
14
15
|
constructor(appContext: AppContextService, api: BillingApiService);
|
|
15
16
|
ngOnInit(): void;
|
|
16
17
|
onBuyPlan(): void;
|
|
17
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<BuyAccessButtonComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<BuyAccessButtonComponent, "anatoly-buyaccess-button", never, { "plan": "plan"; "plantitle": "plantitle"; }, {}, never, never, false>;
|
|
19
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BuyAccessButtonComponent, "anatoly-buyaccess-button", never, { "plan": "plan"; "plantitle": "plantitle"; "visibleIfUserSignedIn": "visibleIfUserSignedIn"; }, {}, never, never, false>;
|
|
19
20
|
}
|
|
@@ -11,8 +11,9 @@ export declare class SubscribePlanButtonComponent implements OnInit {
|
|
|
11
11
|
requestedPlanTitle: string;
|
|
12
12
|
plan: number;
|
|
13
13
|
plantitle: string;
|
|
14
|
+
visibleIfUserSignedIn: boolean;
|
|
14
15
|
constructor(appcontext: AppContextService);
|
|
15
16
|
ngOnInit(): void;
|
|
16
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<SubscribePlanButtonComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SubscribePlanButtonComponent, "anatoly-subscribe-plan-button", never, { "plan": "plan"; "plantitle": "plantitle"; }, {}, never, never, false>;
|
|
18
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SubscribePlanButtonComponent, "anatoly-subscribe-plan-button", never, { "plan": "plan"; "plantitle": "plantitle"; "visibleIfUserSignedIn": "visibleIfUserSignedIn"; }, {}, never, never, false>;
|
|
18
19
|
}
|
|
@@ -24,7 +24,7 @@ export declare class AddressComponent extends BaseEditComponent implements OnIni
|
|
|
24
24
|
change: EventEmitter<any>;
|
|
25
25
|
constructor(fb: FormBuilder, api: CoreApiService);
|
|
26
26
|
ngOnInit(): void;
|
|
27
|
-
createFormGroup
|
|
27
|
+
private createFormGroup;
|
|
28
28
|
private init;
|
|
29
29
|
getAddress(): string;
|
|
30
30
|
onCountryChange(event: any): void;
|
|
@@ -12,7 +12,7 @@ export declare class CompanyComponent extends BaseEditComponent implements OnIni
|
|
|
12
12
|
set company(value: any);
|
|
13
13
|
constructor(fb: FormBuilder);
|
|
14
14
|
ngOnInit(): void;
|
|
15
|
-
createFormGroup
|
|
15
|
+
private createFormGroup;
|
|
16
16
|
private init;
|
|
17
17
|
getCompany(): string;
|
|
18
18
|
static ɵfac: i0.ɵɵFactoryDeclaration<CompanyComponent, never>;
|