@osovitny/anatoly 3.19.30 → 3.19.32
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/fesm2022/osovitny-anatoly.mjs +12 -10
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/billing/components/pm/paypal/paypal-subscribe-button.component.d.ts +1 -3
- package/lib/billing/exports.d.ts +1 -0
- package/lib/billing/services/billing.service.d.ts +1 -1
- package/package.json +1 -1
|
@@ -5888,7 +5888,7 @@ class BillingService {
|
|
|
5888
5888
|
this.appContext = appContext;
|
|
5889
5889
|
this.api = api;
|
|
5890
5890
|
this._subscriptionChange = new Subject();
|
|
5891
|
-
this.
|
|
5891
|
+
this.subscriptionChange$ = this._subscriptionChange.asObservable();
|
|
5892
5892
|
}
|
|
5893
5893
|
fireSubscriptionChange(paymentInProgress, paymentFailed) {
|
|
5894
5894
|
this._subscriptionChange.next({ paymentInProgress, paymentFailed });
|
|
@@ -5933,9 +5933,8 @@ class PaypalSubscribeButtonComponent extends ComponentBase {
|
|
|
5933
5933
|
this._payPalPlanId = value;
|
|
5934
5934
|
this.initPayPal();
|
|
5935
5935
|
}
|
|
5936
|
-
constructor(
|
|
5936
|
+
constructor(bs) {
|
|
5937
5937
|
super();
|
|
5938
|
-
this.zone = zone;
|
|
5939
5938
|
this.bs = bs;
|
|
5940
5939
|
}
|
|
5941
5940
|
ngOnInit() {
|
|
@@ -6000,7 +5999,7 @@ class PaypalSubscribeButtonComponent extends ComponentBase {
|
|
|
6000
5999
|
}
|
|
6001
6000
|
};
|
|
6002
6001
|
}
|
|
6003
|
-
static { this.ɵfac = function PaypalSubscribeButtonComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || PaypalSubscribeButtonComponent)(i0.ɵɵdirectiveInject(
|
|
6002
|
+
static { this.ɵfac = function PaypalSubscribeButtonComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || PaypalSubscribeButtonComponent)(i0.ɵɵdirectiveInject(BillingService)); }; }
|
|
6004
6003
|
static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PaypalSubscribeButtonComponent, selectors: [["anatoly-billing-paypal-subscribe-button"]], inputs: { payPalPlanId: "payPalPlanId", quantity: "quantity", planId: "planId", addons: "addons", price: "price", totalPrice: "totalPrice" }, standalone: false, features: [i0.ɵɵInheritDefinitionFeature], decls: 1, vars: 1, consts: [[3, "config"]], template: function PaypalSubscribeButtonComponent_Template(rf, ctx) { if (rf & 1) {
|
|
6005
6004
|
i0.ɵɵelement(0, "anatoly-billing-paypal-container", 0);
|
|
6006
6005
|
} if (rf & 2) {
|
|
@@ -6010,7 +6009,7 @@ class PaypalSubscribeButtonComponent extends ComponentBase {
|
|
|
6010
6009
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PaypalSubscribeButtonComponent, [{
|
|
6011
6010
|
type: Component,
|
|
6012
6011
|
args: [{ selector: 'anatoly-billing-paypal-subscribe-button', standalone: false, template: "<anatoly-billing-paypal-container [config]='payPalConfig' />\r\n\r\n" }]
|
|
6013
|
-
}], () => [{ type:
|
|
6012
|
+
}], () => [{ type: BillingService }], { payPalPlanId: [{
|
|
6014
6013
|
type: Input
|
|
6015
6014
|
}], quantity: [{
|
|
6016
6015
|
type: Input
|
|
@@ -6185,6 +6184,7 @@ class BillingUtils {
|
|
|
6185
6184
|
Copyright (c) 2016-2025 Osovitny Inc. All rights reserved.
|
|
6186
6185
|
</file>
|
|
6187
6186
|
*/
|
|
6187
|
+
//components
|
|
6188
6188
|
|
|
6189
6189
|
/*
|
|
6190
6190
|
<file>
|
|
@@ -10992,8 +10992,9 @@ class AnatolyBillingModule {
|
|
|
10992
10992
|
static { this.ɵfac = function AnatolyBillingModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || AnatolyBillingModule)(); }; }
|
|
10993
10993
|
static { this.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: AnatolyBillingModule }); }
|
|
10994
10994
|
static { this.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [
|
|
10995
|
-
|
|
10996
|
-
PaymentsService
|
|
10995
|
+
BillingService,
|
|
10996
|
+
PaymentsService,
|
|
10997
|
+
PayPalScriptService
|
|
10997
10998
|
], imports: [CommonModule,
|
|
10998
10999
|
ReactiveFormsModule,
|
|
10999
11000
|
FormsModule,
|
|
@@ -11019,8 +11020,9 @@ class AnatolyBillingModule {
|
|
|
11019
11020
|
...COMPONENTS
|
|
11020
11021
|
],
|
|
11021
11022
|
providers: [
|
|
11022
|
-
|
|
11023
|
-
PaymentsService
|
|
11023
|
+
BillingService,
|
|
11024
|
+
PaymentsService,
|
|
11025
|
+
PayPalScriptService
|
|
11024
11026
|
]
|
|
11025
11027
|
}]
|
|
11026
11028
|
}], null, null); })();
|
|
@@ -11094,5 +11096,5 @@ class AnatolyModule {
|
|
|
11094
11096
|
* Generated bundle index. Do not edit.
|
|
11095
11097
|
*/
|
|
11096
11098
|
|
|
11097
|
-
export { AReplacerDirective, AddressComponent, AdminGuard, Alerts, AnatolyBillingModule, AnatolyCoreModule, AnatolyDataModule, AnatolyHttpInterceptor, AnatolyIAMModule, AnatolyIAMPagesModule, AnatolyModule, AnatolyUIModule, ApiServiceBase, ApiUrl, AppContextService, AppCoreSettings, AppName, AppSettings, AppVersion, AppsGoServiceBase, AuthService, AuthenticationGuard, BillingUtils, BraintreeDialog, BrowserService, BuyAccessButtonComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CheckIconComponent, ClientApps, CompanyComponent, ComponentBase, ContactUsDialog, ContactUsForm, ControlPanelComponent, Convert, Copy2ClipboardComponent, CoreApiService, CountryDropdownlist, CurrenciesApiService, CurrenciesStorageService, DOM, DataPagerComponent, DataViewType, DateConvert, DefaultEditorOptions, DialogBase, DigitalMarketingService, DiscountCodeStatus, DiscountCodeType, DiscountCodesApiService, EditComponentBase, EditPageBase, EmailsApiService, EnumEditComponentBase, FeatureWillBeReadyComponent, FileSizePipe, FormValidationSummaryComponent, GABillingEvents, GAEvents, GlobalErrorHandler, GoServiceBase, GoogleAnalyticsService, GridEditServiceBase, GridReadServiceBase, Guid, HoveringDirective, HtmlEditorComponent, HtmlEditorComponentBase, IdleService, ImageReplacerDirective, InjectorInstance, IsDevMode, IsProdMode, ItemValidationSummaryComponent, L10nUtils, ListBase, LoadingComponent, LoadingService, LocalStorageService, LocalizationModule, LocalizationService, LocalizationSettingsModule, LocalizePipe, LoggingService, MSALUtils, ModerationStatus, ModerationStatusDropdownlist, NativeElementDirective, NoMobileSupportComponent, NodataComponent, NotificationService, OrderSummaryComponent, PageBase, PageSpinnerComponent, PagedPageBase, PayPalComponent, PayPalScriptService, PaymentMethod, PaymentMethodsComponent, PaymentOptionsComponent, PaymentStage, PaymentType, PaymentsApiService, PaymentsService, PaypalButtonComponent, PaypalSubscribeButtonComponent, PublishStatus, PublishStatusDropdownlist, QSUtils, ReplaceTextPipe, SafeHtmlPipe, ScriptService, SessionStorageService, SignInButtonComponent, SignOutButtonComponent, SignUpButtonComponent, StarterGuard, StarterService, Stopwatch, StripeDialog, Subs, SubscribePlanButtonComponent, SubscriptionProvider, SubscriptionsApiService, TimezoneDropdownlist, TransactionsApiService, UrlSlugComponent, Utils, ValidationSummaryComponent, XmlFormatter, YouAgreeToOurTermsComponent, dateFormats, dateTimeFormats, formatUrl, getAppSettingsById, getAppSettingsByName, getCurrentApp, getLocalizationInjector, is, throwIfAlreadyLoaded, timeFormats, translateLoaderFactory };
|
|
11099
|
+
export { AReplacerDirective, AddressComponent, AdminGuard, Alerts, AnatolyBillingModule, AnatolyCoreModule, AnatolyDataModule, AnatolyHttpInterceptor, AnatolyIAMModule, AnatolyIAMPagesModule, AnatolyModule, AnatolyUIModule, ApiServiceBase, ApiUrl, AppContextService, AppCoreSettings, AppName, AppSettings, AppVersion, AppsGoServiceBase, AuthService, AuthenticationGuard, BillingService, BillingUtils, BraintreeDialog, BrowserService, BuyAccessButtonComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CheckIconComponent, ClientApps, CompanyComponent, ComponentBase, ContactUsDialog, ContactUsForm, ControlPanelComponent, Convert, Copy2ClipboardComponent, CoreApiService, CountryDropdownlist, CurrenciesApiService, CurrenciesStorageService, DOM, DataPagerComponent, DataViewType, DateConvert, DefaultEditorOptions, DialogBase, DigitalMarketingService, DiscountCodeStatus, DiscountCodeType, DiscountCodesApiService, EditComponentBase, EditPageBase, EmailsApiService, EnumEditComponentBase, FeatureWillBeReadyComponent, FileSizePipe, FormValidationSummaryComponent, GABillingEvents, GAEvents, GlobalErrorHandler, GoServiceBase, GoogleAnalyticsService, GridEditServiceBase, GridReadServiceBase, Guid, HoveringDirective, HtmlEditorComponent, HtmlEditorComponentBase, IdleService, ImageReplacerDirective, InjectorInstance, IsDevMode, IsProdMode, ItemValidationSummaryComponent, L10nUtils, ListBase, LoadingComponent, LoadingService, LocalStorageService, LocalizationModule, LocalizationService, LocalizationSettingsModule, LocalizePipe, LoggingService, MSALUtils, ModerationStatus, ModerationStatusDropdownlist, NativeElementDirective, NoMobileSupportComponent, NodataComponent, NotificationService, OrderSummaryComponent, PageBase, PageSpinnerComponent, PagedPageBase, PayPalComponent, PayPalScriptService, PaymentMethod, PaymentMethodsComponent, PaymentOptionsComponent, PaymentStage, PaymentType, PaymentsApiService, PaymentsService, PaypalButtonComponent, PaypalSubscribeButtonComponent, PublishStatus, PublishStatusDropdownlist, QSUtils, ReplaceTextPipe, SafeHtmlPipe, ScriptService, SessionStorageService, SignInButtonComponent, SignOutButtonComponent, SignUpButtonComponent, StarterGuard, StarterService, Stopwatch, StripeDialog, Subs, SubscribePlanButtonComponent, SubscriptionProvider, SubscriptionsApiService, TimezoneDropdownlist, TransactionsApiService, UrlSlugComponent, Utils, ValidationSummaryComponent, XmlFormatter, YouAgreeToOurTermsComponent, dateFormats, dateTimeFormats, formatUrl, getAppSettingsById, getAppSettingsByName, getCurrentApp, getLocalizationInjector, is, throwIfAlreadyLoaded, timeFormats, translateLoaderFactory };
|
|
11098
11100
|
//# sourceMappingURL=osovitny-anatoly.mjs.map
|