@osovitny/anatoly 3.17.116 → 3.17.118
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/billing/billing.module.mjs +1 -4
- package/esm2022/lib/billing/components/buttons/buyaccess-button.component.mjs +9 -2
- package/esm2022/lib/billing/components/buttons/subscribe-plan-button.component.mjs +12 -6
- package/esm2022/lib/ui/ui.module.mjs +5 -5
- package/fesm2022/osovitny-anatoly.mjs +22 -11
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/billing/components/buttons/buyaccess-button.component.d.ts +2 -0
- package/lib/billing/components/buttons/subscribe-plan-button.component.d.ts +4 -2
- package/lib/billing/components/index.d.ts +1 -1
- package/lib/ui/components/index.d.ts +1 -1
- package/lib/ui/forms/index.d.ts +1 -1
- package/lib/ui/pipes/index.d.ts +1 -1
- package/package.json +1 -1
|
@@ -13,6 +13,8 @@ export declare class BuyAccessButtonComponent implements OnInit {
|
|
|
13
13
|
planselect: EventEmitter<any>;
|
|
14
14
|
constructor(appContext: AppContextService);
|
|
15
15
|
ngOnInit(): void;
|
|
16
|
+
private setDefaults;
|
|
17
|
+
private setValues;
|
|
16
18
|
onPlanSelect(): void;
|
|
17
19
|
static ɵfac: i0.ɵɵFactoryDeclaration<BuyAccessButtonComponent, never>;
|
|
18
20
|
static ɵcmp: i0.ɵɵComponentDeclaration<BuyAccessButtonComponent, "anatoly-billing-buyaccess-button", never, { "plan": { "alias": "plan"; "required": false; }; "planTitle": { "alias": "planTitle"; "required": false; }; "visibleIfUserSignedIn": { "alias": "visibleIfUserSignedIn"; "required": false; }; }, { "planselect": "planselect"; }, never, never, false, never>;
|
|
@@ -11,11 +11,13 @@ export declare class SubscribePlanButtonComponent implements OnInit {
|
|
|
11
11
|
requestedPlanTitle: string;
|
|
12
12
|
plan: number;
|
|
13
13
|
planTitle: string;
|
|
14
|
-
|
|
14
|
+
visibleIfUserSignedIn: boolean;
|
|
15
15
|
planselect: EventEmitter<any>;
|
|
16
16
|
constructor(appContext: AppContextService);
|
|
17
17
|
ngOnInit(): void;
|
|
18
|
+
private setDefaults;
|
|
19
|
+
private setValues;
|
|
18
20
|
onPlanSelect(): void;
|
|
19
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<SubscribePlanButtonComponent, never>;
|
|
20
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SubscribePlanButtonComponent, "anatoly-billing-subscribe-plan-button", never, { "plan": { "alias": "plan"; "required": false; }; "planTitle": { "alias": "planTitle"; "required": false; }; "
|
|
22
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SubscribePlanButtonComponent, "anatoly-billing-subscribe-plan-button", never, { "plan": { "alias": "plan"; "required": false; }; "planTitle": { "alias": "planTitle"; "required": false; }; "visibleIfUserSignedIn": { "alias": "visibleIfUserSignedIn"; "required": false; }; }, { "planselect": "planselect"; }, never, never, false, never>;
|
|
21
23
|
}
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { BuyAccessButtonComponent, SubscribePlanButtonComponent, OrderSummaryComponent, PaymentMethodsComponent, PaymentOptionsComponent, BraintreeDialog, PaypalButtonComponent, PayPalComponent, StripeDialog } from "./exports";
|
|
2
|
-
export declare const COMPONENTS: (typeof
|
|
2
|
+
export declare const COMPONENTS: (typeof BuyAccessButtonComponent | typeof SubscribePlanButtonComponent | typeof OrderSummaryComponent | typeof PaymentMethodsComponent | typeof PaymentOptionsComponent | typeof BraintreeDialog | typeof PaypalButtonComponent | typeof PayPalComponent | typeof StripeDialog)[];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { CardComponent, CheckIconComponent, CountryDropdownlist, TimezoneDropdownlist, NodataComponent, PageSpinnerComponent, LoadingComponent } from './exports';
|
|
2
|
-
export declare const MAIN_COMPONENTS: (typeof CardComponent | typeof
|
|
2
|
+
export declare const MAIN_COMPONENTS: (typeof CardComponent | typeof CheckIconComponent | typeof CountryDropdownlist | typeof TimezoneDropdownlist | typeof NodataComponent | typeof PageSpinnerComponent | typeof LoadingComponent)[];
|
package/lib/ui/forms/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { AddressComponent, CompanyComponent, ContactUsForm } from './exports';
|
|
2
|
-
export declare const FORMS: (typeof
|
|
2
|
+
export declare const FORMS: (typeof AddressComponent | typeof CompanyComponent | typeof ContactUsForm)[];
|
package/lib/ui/pipes/index.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { SafeHtmlPipe, ReplaceTextPipe, FileSizePipe } from './exports';
|
|
2
|
-
export declare const PIPES: (typeof
|
|
2
|
+
export declare const PIPES: (typeof SafeHtmlPipe | typeof ReplaceTextPipe | typeof FileSizePipe)[];
|