@osovitny/anatoly 3.17.135 → 3.17.136
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/components/pm/paypal/paypal-subscribe-button.component.mjs +4 -4
- package/esm2022/lib/core/go/go.service.mjs +26 -16
- package/esm2022/lib/ui/components/base/components/component.mjs +5 -4
- package/fesm2022/osovitny-anatoly.mjs +30 -20
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/billing/components/index.d.ts +1 -1
- package/lib/billing/components/pm/paypal/paypal-subscribe-button.component.d.ts +2 -2
- package/lib/core/go/go.service.d.ts +6 -3
- package/lib/ui/components/base/components/component.d.ts +1 -0
- package/lib/ui/components/index.d.ts +2 -2
- package/package.json +1 -1
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
import { BuyAccessButtonComponent, SubscribePlanButtonComponent, OrderSummaryComponent, PaymentMethodsComponent, PaymentOptionsComponent, BraintreeDialog, PaypalButtonComponent, PaypalSubscribeButtonComponent, PayPalComponent, StripeDialog } from "./exports";
|
|
2
|
-
export declare const COMPONENTS: (typeof PaypalSubscribeButtonComponent | typeof
|
|
2
|
+
export declare const COMPONENTS: (typeof PaypalSubscribeButtonComponent | typeof PaypalButtonComponent | typeof PaymentOptionsComponent | typeof PaymentMethodsComponent | typeof OrderSummaryComponent | typeof BuyAccessButtonComponent | typeof SubscribePlanButtonComponent | typeof BraintreeDialog | typeof PayPalComponent | typeof StripeDialog)[];
|
|
@@ -14,8 +14,8 @@ export declare class PaypalSubscribeButtonComponent extends ComponentBase {
|
|
|
14
14
|
paymentFailed: boolean;
|
|
15
15
|
get payPalPlanId(): any;
|
|
16
16
|
set payPalPlanId(value: any);
|
|
17
|
-
planId: any;
|
|
18
17
|
quantity: any;
|
|
18
|
+
planId: any;
|
|
19
19
|
price: any;
|
|
20
20
|
totalPrice: any;
|
|
21
21
|
statusChange: EventEmitter<any>;
|
|
@@ -27,5 +27,5 @@ export declare class PaypalSubscribeButtonComponent extends ComponentBase {
|
|
|
27
27
|
private initPayPal;
|
|
28
28
|
private addSubscription;
|
|
29
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<PaypalSubscribeButtonComponent, never>;
|
|
30
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PaypalSubscribeButtonComponent, "anatoly-billing-paypal-subscribe-button", never, { "payPalPlanId": { "alias": "payPalPlanId"; "required": false; }; "
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaypalSubscribeButtonComponent, "anatoly-billing-paypal-subscribe-button", never, { "payPalPlanId": { "alias": "payPalPlanId"; "required": false; }; "quantity": { "alias": "quantity"; "required": false; }; "planId": { "alias": "planId"; "required": false; }; "price": { "alias": "price"; "required": false; }; "totalPrice": { "alias": "totalPrice"; "required": false; }; }, { "statusChange": "statusChange"; }, never, never, false, never>;
|
|
31
31
|
}
|
|
@@ -3,10 +3,13 @@ import * as i0 from "@angular/core";
|
|
|
3
3
|
export declare class GoServiceBase {
|
|
4
4
|
protected route: ActivatedRoute;
|
|
5
5
|
protected router: Router;
|
|
6
|
-
|
|
6
|
+
protected isDevMode: boolean;
|
|
7
|
+
protected applicationType: any;
|
|
8
|
+
protected applicationRoot: any;
|
|
9
|
+
protected applicationOneUrl: string;
|
|
7
10
|
constructor(route: ActivatedRoute, router: Router);
|
|
8
|
-
private
|
|
9
|
-
getHomeUrl():
|
|
11
|
+
private internalInit;
|
|
12
|
+
getHomeUrl(): any;
|
|
10
13
|
navigate(commands: any[], reload?: boolean): void;
|
|
11
14
|
homeReload(): void;
|
|
12
15
|
locationReload(): void;
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
import {
|
|
2
|
-
export declare const MAIN_COMPONENTS: (typeof
|
|
1
|
+
import { CardFooterComponent, CheckIconComponent, CountryDropdownlist, TimezoneDropdownlist, NodataComponent, PageSpinnerComponent, LoadingComponent } from './exports';
|
|
2
|
+
export declare const MAIN_COMPONENTS: (typeof LoadingComponent | typeof CardFooterComponent | typeof CountryDropdownlist | typeof TimezoneDropdownlist | typeof CheckIconComponent | typeof NodataComponent | typeof PageSpinnerComponent)[];
|