@osovitny/anatoly 3.17.75 → 3.17.78
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/anatoly.module.mjs +2 -3
- package/esm2022/lib/billing/billing.module.mjs +70 -0
- package/esm2022/lib/billing/exports.mjs +19 -0
- package/esm2022/lib/billing/models/paypal-models.mjs +16 -0
- package/esm2022/lib/billing/payments/components/braintree/braintree.component.mjs +155 -0
- package/esm2022/lib/billing/payments/components/exports.mjs +22 -0
- package/esm2022/lib/billing/payments/components/index.mjs +25 -0
- package/esm2022/lib/billing/payments/components/paypal/paypal-button.component.mjs +157 -0
- package/esm2022/lib/billing/payments/components/paypal/paypal.component.mjs +316 -0
- package/esm2022/lib/billing/payments/components/stripe/stripe.component.mjs +109 -0
- package/esm2022/lib/billing/payments/services/payments.service.mjs +173 -0
- package/esm2022/lib/billing/services/paypal-script.service.mjs +84 -0
- package/esm2022/lib/core/browser.mjs +3 -3
- package/esm2022/lib/core/consts/app-settings.mjs +3 -3
- package/esm2022/lib/core/consts/core-settings.mjs +3 -3
- package/esm2022/lib/core/consts/formats.mjs +3 -3
- package/esm2022/lib/core/consts/ga.mjs +26 -0
- package/esm2022/lib/core/converts/convert.mjs +3 -3
- package/esm2022/lib/core/converts/dateConvert.mjs +3 -3
- package/esm2022/lib/core/converts/tz/tzParseTimezone.mjs +3 -3
- package/esm2022/lib/core/converts/tz/tzTokenizeDate.mjs +3 -3
- package/esm2022/lib/core/converts/xmlFormatter.mjs +3 -3
- package/esm2022/lib/core/core.module.mjs +10 -3
- package/esm2022/lib/core/dom.mjs +7 -7
- package/esm2022/lib/core/enums/billing.mjs +51 -0
- package/esm2022/lib/core/enums/enums.mjs +21 -0
- package/esm2022/lib/core/exports.mjs +63 -0
- package/esm2022/lib/core/go/base-go.service.mjs +4 -4
- package/esm2022/lib/core/guards/once-import.guard.mjs +4 -4
- package/esm2022/lib/core/guards/starter.guard.mjs +3 -3
- package/esm2022/lib/core/guid.mjs +3 -3
- package/esm2022/lib/core/interceptors/httpInterceptor.mjs +4 -4
- package/esm2022/lib/core/is.mjs +3 -3
- package/esm2022/lib/core/localization/localization.module.mjs +3 -3
- package/esm2022/lib/core/localization/localization.service.mjs +3 -3
- package/esm2022/lib/core/localization/localize.pipe.mjs +3 -3
- package/esm2022/lib/core/localization/settings.module.mjs +3 -3
- package/esm2022/lib/core/localization/utils.mjs +3 -3
- package/esm2022/lib/core/logging/globalErrorHandler.mjs +3 -3
- package/esm2022/lib/core/logging/logging.service.mjs +3 -3
- package/esm2022/lib/core/models/qs.mjs +17 -0
- package/esm2022/lib/core/notifications/alerts.mjs +3 -3
- package/esm2022/lib/core/notifications/interfaces/notification.mjs +3 -3
- package/esm2022/lib/core/notifications/services/notification-service.mjs +3 -3
- package/esm2022/lib/core/performance/stopwatch.mjs +4 -4
- package/esm2022/lib/core/services/appcontext.service.mjs +3 -3
- package/esm2022/lib/core/services/dm.service.mjs +3 -3
- package/esm2022/lib/core/services/google-analytics.service.mjs +3 -3
- package/esm2022/lib/core/services/idle.service.mjs +3 -3
- package/esm2022/lib/core/services/loading.service.mjs +3 -3
- package/esm2022/lib/core/services/script.service.mjs +77 -0
- package/esm2022/lib/core/services/starter.service.mjs +1 -1
- package/esm2022/lib/core/services/web-storage.service.mjs +4 -4
- package/esm2022/lib/core/subs.mjs +3 -3
- package/esm2022/lib/core/utils/qsutils.mjs +3 -3
- package/esm2022/lib/core/utils/utils.mjs +3 -3
- package/esm2022/lib/data/base/api.service.mjs +2 -3
- package/esm2022/lib/data/base/grid/grid-edit.service.mjs +2 -3
- package/esm2022/lib/data/base/grid/grid-read.service.mjs +2 -3
- package/esm2022/lib/data/data.module.mjs +10 -3
- package/esm2022/lib/data/exports.mjs +22 -0
- package/esm2022/lib/data/services/billing/payments-api.service.mjs +67 -0
- package/esm2022/lib/data/services/core-api.service.mjs +5 -5
- package/esm2022/lib/data/services/emails-api.service.mjs +5 -5
- package/esm2022/lib/external/fa.module.mjs +45 -0
- package/esm2022/lib/external/kendo.module.mjs +90 -0
- package/esm2022/lib/iam/b2c/b2c.mjs +3 -3
- package/esm2022/lib/iam/b2c/consts.mjs +3 -3
- package/esm2022/lib/iam/b2c/index.mjs +3 -3
- package/esm2022/lib/iam/configs.mjs +3 -3
- package/esm2022/lib/iam/consts.mjs +3 -3
- package/esm2022/lib/iam/exports.mjs +22 -0
- package/esm2022/lib/iam/guards/admin.guard.mjs +3 -3
- package/esm2022/lib/iam/guards/authentication.guard.mjs +1 -1
- package/esm2022/lib/iam/guards/index.mjs +2 -2
- package/esm2022/lib/iam/iam-pages.module.mjs +3 -3
- package/esm2022/lib/iam/iam-pages.routes.mjs +3 -3
- package/esm2022/lib/iam/iam.module.mjs +3 -3
- package/esm2022/lib/iam/pages/signin.page.mjs +3 -3
- package/esm2022/lib/iam/pages/signout.page.mjs +3 -3
- package/esm2022/lib/iam/pages/signup.page.mjs +3 -3
- package/esm2022/lib/iam/redirect.mjs +3 -3
- package/esm2022/lib/iam/services/auth.service.mjs +2 -2
- package/esm2022/lib/iam/storage.mjs +3 -3
- package/esm2022/lib/iam/utils.mjs +3 -3
- package/esm2022/lib/ui/components/base/components/component.mjs +4 -4
- package/esm2022/lib/ui/components/base/components/edit.component.mjs +4 -4
- package/esm2022/lib/ui/components/base/components/enum-edit.component.mjs +4 -4
- package/esm2022/lib/ui/components/base/dialog.mjs +7 -4
- package/esm2022/lib/ui/components/base/list.mjs +3 -3
- package/esm2022/lib/ui/components/base/pages/edit.page.mjs +3 -3
- package/esm2022/lib/ui/components/base/pages/page.mjs +3 -3
- package/esm2022/lib/ui/components/base/pages/paged.page.mjs +3 -3
- package/esm2022/lib/ui/components/billing/buyaccess-button.component.mjs +3 -3
- package/esm2022/lib/ui/components/billing/subscribe-plan-button.component.mjs +3 -3
- package/esm2022/lib/ui/components/card/card-body.component.mjs +3 -4
- package/esm2022/lib/ui/components/card/card-footer.component.mjs +3 -4
- package/esm2022/lib/ui/components/card/card-header.component.mjs +3 -4
- package/esm2022/lib/ui/components/card/card.component.mjs +3 -4
- package/esm2022/lib/ui/components/check-icon/check-icon.component.mjs +3 -3
- package/esm2022/lib/ui/components/copy-2-clipboard/copy-2-clipboard.component.mjs +3 -3
- package/esm2022/lib/ui/components/datapager/datapager.component.mjs +3 -3
- package/esm2022/lib/ui/components/dropdownlists/country/country.dropdownlist.mjs +3 -3
- package/esm2022/lib/ui/components/dropdownlists/timezone/timezone.dropdownlist.mjs +3 -3
- package/esm2022/lib/ui/components/exports.mjs +50 -0
- package/esm2022/lib/ui/components/html-editor/base-html-editor.component.mjs +1 -1
- package/esm2022/lib/ui/components/html-editor/forms-html-editor.component.mjs +3 -3
- package/esm2022/lib/ui/components/html-editor/html-editor.component.mjs +3 -3
- package/esm2022/lib/ui/components/html-editor/html-editor.defaultoptions.mjs +3 -3
- package/esm2022/lib/ui/components/identity/signin-button.component.mjs +3 -3
- package/esm2022/lib/ui/components/identity/signout-button.component.mjs +3 -3
- package/esm2022/lib/ui/components/identity/signup-button.component.mjs +3 -3
- package/esm2022/lib/ui/components/index.mjs +44 -37
- package/esm2022/lib/ui/components/nodata/nodata.component.mjs +3 -3
- package/esm2022/lib/ui/components/spinners/loading/loading.component.mjs +3 -3
- package/esm2022/lib/ui/components/spinners/pagespinner/pagespinner.component.mjs +3 -3
- package/esm2022/lib/ui/components/urlslug/urlslug.component.mjs +3 -3
- package/esm2022/lib/ui/dialogs/contact-us/contact-us.dialog.mjs +3 -3
- package/esm2022/lib/ui/dialogs/exports.mjs +17 -0
- package/esm2022/lib/ui/dialogs/index.mjs +7 -4
- package/esm2022/lib/ui/directives/exports.mjs +18 -0
- package/esm2022/lib/ui/directives/hover.directive.mjs +3 -3
- package/esm2022/lib/ui/directives/index.mjs +8 -5
- package/esm2022/lib/ui/directives/native-element.directive.mjs +3 -3
- package/esm2022/lib/ui/exports.mjs +22 -0
- package/esm2022/lib/ui/forms/components/address/address.component.mjs +6 -6
- package/esm2022/lib/ui/forms/components/company/company.component.mjs +4 -4
- package/esm2022/lib/ui/forms/contact-us/contact-us.mjs +3 -3
- package/esm2022/lib/ui/forms/exports.mjs +21 -0
- package/esm2022/lib/ui/forms/index.mjs +9 -8
- package/esm2022/lib/ui/pipes/exports.mjs +19 -0
- package/esm2022/lib/ui/pipes/filesize.pipe.mjs +3 -3
- package/esm2022/lib/ui/pipes/index.mjs +9 -6
- package/esm2022/lib/ui/pipes/replace-text.pipe.mjs +3 -3
- package/esm2022/lib/ui/pipes/safeHtml.pipe.mjs +3 -3
- package/esm2022/lib/ui/ui.module.mjs +51 -137
- package/esm2022/lib/ui/validation/exports.mjs +19 -0
- package/esm2022/lib/ui/validation/form-validation-summary.component.mjs +3 -3
- package/esm2022/lib/ui/validation/index.mjs +8 -6
- package/esm2022/lib/ui/validation/item-validation-summary.component.mjs +3 -3
- package/esm2022/lib/ui/validation/validation-summary.component.mjs +3 -3
- package/esm2022/public-api.mjs +9 -14
- package/fesm2022/osovitny-anatoly.mjs +1650 -867
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/billing/billing.module.d.ts +13 -0
- package/lib/billing/exports.d.ts +3 -0
- package/lib/{payments/PayPal → billing}/models/paypal-models.d.ts +1 -4
- package/lib/billing/payments/components/braintree/braintree.component.d.ts +25 -0
- package/lib/billing/payments/components/exports.d.ts +4 -0
- package/lib/billing/payments/components/index.d.ts +2 -0
- package/lib/billing/payments/components/paypal/paypal-button.component.d.ts +18 -0
- package/lib/{payments/PayPal/components → billing/payments/components/paypal}/paypal.component.d.ts +3 -3
- package/lib/billing/payments/components/stripe/stripe.component.d.ts +21 -0
- package/lib/billing/payments/services/payments.service.d.ts +50 -0
- package/lib/{payments/PayPal → billing}/services/paypal-script.service.d.ts +3 -4
- package/lib/core/consts/ga.d.ts +11 -0
- package/lib/core/enums/billing.d.ts +29 -0
- package/lib/core/enums/enums.d.ts +4 -0
- package/lib/core/{index.d.ts → exports.d.ts} +3 -0
- package/lib/core/interceptors/httpInterceptor.d.ts +1 -1
- package/lib/core/models/qs.d.ts +4 -0
- package/lib/{payments → core}/services/script.service.d.ts +3 -1
- package/lib/data/services/billing/payments-api.service.d.ts +13 -0
- package/lib/ui/components/base/components/component.d.ts +1 -1
- package/lib/ui/components/base/dialog.d.ts +2 -0
- package/lib/ui/components/exports.d.ts +30 -0
- package/lib/ui/components/index.d.ts +2 -30
- package/lib/ui/dialogs/exports.d.ts +1 -0
- package/lib/ui/dialogs/index.d.ts +2 -1
- package/lib/ui/directives/exports.d.ts +2 -0
- package/lib/ui/directives/index.d.ts +2 -2
- package/lib/ui/exports.d.ts +6 -0
- package/lib/ui/forms/components/address/address.component.d.ts +2 -2
- package/lib/ui/forms/components/company/company.component.d.ts +1 -1
- package/lib/ui/forms/exports.d.ts +3 -0
- package/lib/ui/forms/index.d.ts +2 -3
- package/lib/ui/pipes/exports.d.ts +3 -0
- package/lib/ui/pipes/index.d.ts +2 -3
- package/lib/ui/ui.module.d.ts +21 -21
- package/lib/ui/validation/exports.d.ts +3 -0
- package/lib/ui/validation/index.d.ts +2 -3
- package/package.json +4 -2
- package/public-api.d.ts +6 -11
- package/esm2022/lib/core/index.mjs +0 -59
- package/esm2022/lib/data/index.mjs +0 -23
- package/esm2022/lib/data/urls.mjs +0 -22
- package/esm2022/lib/iam/index.mjs +0 -22
- package/esm2022/lib/payments/PayPal/components/paypal.component.mjs +0 -317
- package/esm2022/lib/payments/PayPal/models/paypal-models.mjs +0 -17
- package/esm2022/lib/payments/PayPal/services/paypal-script.service.mjs +0 -98
- package/esm2022/lib/payments/index.mjs +0 -22
- package/esm2022/lib/payments/payments.module.mjs +0 -54
- package/esm2022/lib/payments/services/script.service.mjs +0 -63
- package/esm2022/lib/ui/external/fa.module.mjs +0 -46
- package/esm2022/lib/ui/external/kendo.module.mjs +0 -91
- package/lib/data/urls.d.ts +0 -4
- package/lib/payments/index.d.ts +0 -4
- package/lib/payments/payments.module.d.ts +0 -8
- /package/lib/data/{index.d.ts → exports.d.ts} +0 -0
- /package/lib/{ui/external → external}/fa.module.d.ts +0 -0
- /package/lib/{ui/external → external}/kendo.module.d.ts +0 -0
- /package/lib/iam/{index.d.ts → exports.d.ts} +0 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./payments/components/paypal/paypal-button.component";
|
|
3
|
+
import * as i2 from "./payments/components/paypal/paypal.component";
|
|
4
|
+
import * as i3 from "./payments/components/braintree/braintree.component";
|
|
5
|
+
import * as i4 from "./payments/components/stripe/stripe.component";
|
|
6
|
+
import * as i5 from "@angular/common";
|
|
7
|
+
import * as i6 from "../external/fa.module";
|
|
8
|
+
import * as i7 from "../external/kendo.module";
|
|
9
|
+
export declare class AnatolyBillingModule {
|
|
10
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<AnatolyBillingModule, never>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AnatolyBillingModule, [typeof i1.PaypalButtonComponent, typeof i2.PayPalComponent, typeof i3.BraintreeDialog, typeof i4.StripeDialog], [typeof i5.CommonModule, typeof i6.FaModule, typeof i7.KendoModule], [typeof i1.PaypalButtonComponent, typeof i2.PayPalComponent, typeof i3.BraintreeDialog, typeof i4.StripeDialog]>;
|
|
12
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<AnatolyBillingModule>;
|
|
13
|
+
}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { IQueryParam } from '../../core/models/qs';
|
|
1
2
|
export interface IPayPalConfig {
|
|
2
3
|
/**
|
|
3
4
|
* Currency - Defaults to USD if not provided
|
|
@@ -104,10 +105,6 @@ export interface ILinkDescription {
|
|
|
104
105
|
rel: String;
|
|
105
106
|
method?: LinkMethod;
|
|
106
107
|
}
|
|
107
|
-
export interface IQueryParam {
|
|
108
|
-
name: string;
|
|
109
|
-
value: string;
|
|
110
|
-
}
|
|
111
108
|
export type OnShippingChangeCallback = (data: IOnShippingChangeData, actions: IOnShippingChangeActions) => any;
|
|
112
109
|
export interface IOnShippingChangeData {
|
|
113
110
|
paymentToken: string;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { DialogBase } from '../../../../ui/components/base/dialog';
|
|
2
|
+
import { PaymentsService } from '../../services/payments.service';
|
|
3
|
+
import { NotificationService } from '../../../../core/notifications/services/notification-service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class BraintreeDialog extends DialogBase {
|
|
6
|
+
ps: PaymentsService;
|
|
7
|
+
private ns;
|
|
8
|
+
braintreeInstance: any;
|
|
9
|
+
deviceData: any;
|
|
10
|
+
paidFor: any;
|
|
11
|
+
title: any;
|
|
12
|
+
description: any;
|
|
13
|
+
image: any;
|
|
14
|
+
constructor(ps: PaymentsService, ns: NotificationService);
|
|
15
|
+
ngOnInit(): void;
|
|
16
|
+
private setValues;
|
|
17
|
+
initializeEmbedForm(): void;
|
|
18
|
+
submitPayment(payload: any): void;
|
|
19
|
+
closeDialog(): void;
|
|
20
|
+
onPay(): void;
|
|
21
|
+
onClose(): void;
|
|
22
|
+
get visible(): boolean;
|
|
23
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BraintreeDialog, never>;
|
|
24
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BraintreeDialog, "anatoly-payments-braintree-dialog", never, { "paidFor": { "alias": "paidFor"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "image": { "alias": "image"; "required": false; }; }, {}, never, never, false, never>;
|
|
25
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { ComponentBase } from '../../../../ui/components/base/components/component';
|
|
2
|
+
import { PaymentsService } from '../../services/payments.service';
|
|
3
|
+
import { IPayPalConfig } from '../../../models/paypal-models';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PaypalButtonComponent extends ComponentBase {
|
|
6
|
+
ps: PaymentsService;
|
|
7
|
+
payPalConfig?: IPayPalConfig;
|
|
8
|
+
paidForTitle: string;
|
|
9
|
+
paidFor: any;
|
|
10
|
+
constructor(ps: PaymentsService);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
private setDefaults;
|
|
13
|
+
private setValues;
|
|
14
|
+
private initPayPal;
|
|
15
|
+
get visible(): boolean;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaypalButtonComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PaypalButtonComponent, "anatoly-payments-paypal-button", never, { "paidForTitle": { "alias": "paidForTitle"; "required": false; }; "paidFor": { "alias": "paidFor"; "required": false; }; }, {}, never, never, false, never>;
|
|
18
|
+
}
|
package/lib/{payments/PayPal/components → billing/payments/components/paypal}/paypal.component.d.ts
RENAMED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AfterViewInit, ChangeDetectorRef, ElementRef, EventEmitter, NgZone, OnChanges, OnDestroy, SimpleChanges } from "@angular/core";
|
|
2
|
-
import { IPayPalConfig } from
|
|
3
|
-
import { PayPalScriptService } from
|
|
2
|
+
import { IPayPalConfig } from '../../../models/paypal-models';
|
|
3
|
+
import { PayPalScriptService } from '../../../services/paypal-script.service';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class PayPalComponent implements OnChanges, OnDestroy, AfterViewInit {
|
|
6
6
|
private paypalScriptService;
|
|
@@ -46,5 +46,5 @@ export declare class PayPalComponent implements OnChanges, OnDestroy, AfterViewI
|
|
|
46
46
|
private initPayPal;
|
|
47
47
|
private generateGuid;
|
|
48
48
|
static ɵfac: i0.ɵɵFactoryDeclaration<PayPalComponent, never>;
|
|
49
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PayPalComponent, "anatoly-paypal", never, { "config": { "alias": "config"; "required": false; }; "registerScript": { "alias": "registerScript"; "required": false; }; }, { "scriptLoaded": "scriptLoaded"; }, never, never, false, never>;
|
|
49
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PayPalComponent, "anatoly-payments-paypal-container", never, { "config": { "alias": "config"; "required": false; }; "registerScript": { "alias": "registerScript"; "required": false; }; }, { "scriptLoaded": "scriptLoaded"; }, never, never, false, never>;
|
|
50
50
|
}
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { DialogBase } from '../../../../ui/components/base/dialog';
|
|
2
|
+
import { PaymentsService } from '../../services/payments.service';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class StripeDialog extends DialogBase {
|
|
5
|
+
ps: PaymentsService;
|
|
6
|
+
stripe: any;
|
|
7
|
+
stripeCheckout: any;
|
|
8
|
+
sessionId: any;
|
|
9
|
+
paidFor: any;
|
|
10
|
+
title: any;
|
|
11
|
+
description: any;
|
|
12
|
+
image: any;
|
|
13
|
+
constructor(ps: PaymentsService);
|
|
14
|
+
ngOnInit(): void;
|
|
15
|
+
private setValues;
|
|
16
|
+
initializeEmbedForm(): Promise<void>;
|
|
17
|
+
onClose(): void;
|
|
18
|
+
get visible(): boolean;
|
|
19
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StripeDialog, never>;
|
|
20
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<StripeDialog, "anatoly-payments-stripe-dialog", never, { "paidFor": { "alias": "paidFor"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "image": { "alias": "image"; "required": false; }; }, {}, never, never, false, never>;
|
|
21
|
+
}
|
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { NgZone } from '@angular/core';
|
|
2
|
+
import { PaymentStage } from '../../../core/enums/billing';
|
|
3
|
+
import { PaymentsApiService } from '../../../data/services/billing/payments-api.service';
|
|
4
|
+
import { NotificationService } from '../../../core/notifications/services/notification-service';
|
|
5
|
+
import { GoogleAnalyticsService } from '../../../core/services/google-analytics.service';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class PaymentsService {
|
|
8
|
+
private zone;
|
|
9
|
+
private api;
|
|
10
|
+
private ns;
|
|
11
|
+
private ga;
|
|
12
|
+
paymentStage: any;
|
|
13
|
+
paymentInProgress: boolean;
|
|
14
|
+
isPaymentFailed: boolean;
|
|
15
|
+
selectedPaymentType: any;
|
|
16
|
+
selectedPaymentMethod: any;
|
|
17
|
+
subtotal: number;
|
|
18
|
+
discountCode: any;
|
|
19
|
+
discountPercentage: any;
|
|
20
|
+
discountAmount: any;
|
|
21
|
+
total: number;
|
|
22
|
+
currency: string;
|
|
23
|
+
private _discountCodeApplied;
|
|
24
|
+
private _paymentAdded;
|
|
25
|
+
private _showStripeDialog;
|
|
26
|
+
private _showBraintreeDialog;
|
|
27
|
+
readonly discountCodeApplied$: import("rxjs").Observable<any>;
|
|
28
|
+
readonly paymentAdded$: import("rxjs").Observable<any>;
|
|
29
|
+
readonly showStripeDialog$: import("rxjs").Observable<any>;
|
|
30
|
+
readonly showBraintreeDialog$: import("rxjs").Observable<any>;
|
|
31
|
+
constructor(zone: NgZone, api: PaymentsApiService, ns: NotificationService, ga: GoogleAnalyticsService);
|
|
32
|
+
private setDefaults;
|
|
33
|
+
private setValues;
|
|
34
|
+
private fireDiscountCodeApplied;
|
|
35
|
+
private firePaymentAdded;
|
|
36
|
+
init(): void;
|
|
37
|
+
resetState(): void;
|
|
38
|
+
getTotal(): number;
|
|
39
|
+
applyDiscountCode(discountCode: any, data: any): void;
|
|
40
|
+
getDiscountCodeAsString(): string;
|
|
41
|
+
openStripePaymentDialog(): void;
|
|
42
|
+
openBraintreePaymentDialog(): void;
|
|
43
|
+
closeBraintreePaymentDialog(): void;
|
|
44
|
+
createStripeSession(title: any, description: any, image: any): import("rxjs").Observable<any>;
|
|
45
|
+
createBraintreeToken(): import("rxjs").Observable<any>;
|
|
46
|
+
pay(paidFor: any, payId: any, payStatus: any, payDetails: any): void;
|
|
47
|
+
paymentFailed(stage: PaymentStage): void;
|
|
48
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaymentsService, never>;
|
|
49
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PaymentsService>;
|
|
50
|
+
}
|
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
import { IPayPalUrlConfig } from '../models/paypal-models';
|
|
2
|
-
import { ScriptService } from '../../services/script.service';
|
|
2
|
+
import { ScriptService } from '../../core/services/script.service';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PayPalScriptService {
|
|
5
|
-
protected
|
|
5
|
+
protected ss: ScriptService;
|
|
6
6
|
private readonly paypalWindowName;
|
|
7
|
-
constructor(
|
|
7
|
+
constructor(ss: ScriptService);
|
|
8
8
|
registerPayPalScript(config: IPayPalUrlConfig, onReady: (payPalApi: any) => void): void;
|
|
9
9
|
destroyPayPalScript(): void;
|
|
10
10
|
private getUrlForConfig;
|
|
11
|
-
private getQueryString;
|
|
12
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<PayPalScriptService, never>;
|
|
13
12
|
static ɵprov: i0.ɵɵInjectableDeclaration<PayPalScriptService>;
|
|
14
13
|
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
export declare enum DiscountCodeType {
|
|
2
|
+
Standard = 1,
|
|
3
|
+
UseOnce = 2
|
|
4
|
+
}
|
|
5
|
+
export declare enum DiscountCodeStatus {
|
|
6
|
+
Exist = 1,
|
|
7
|
+
NotFound = 2,
|
|
8
|
+
AlreadyUsed = 3
|
|
9
|
+
}
|
|
10
|
+
export declare enum PaymentType {
|
|
11
|
+
FullPayment = 1,
|
|
12
|
+
WeeklyPayment = 2,
|
|
13
|
+
BiWeeklyPayment = 3,
|
|
14
|
+
MonthlyPayment = 4
|
|
15
|
+
}
|
|
16
|
+
export declare enum PaymentMethod {
|
|
17
|
+
None = 1,
|
|
18
|
+
DigitalWallet = 2,
|
|
19
|
+
CreditCard = 3,
|
|
20
|
+
PayPal = 4,
|
|
21
|
+
Stripe = 5,
|
|
22
|
+
Venmo = 6,
|
|
23
|
+
ApplePay = 7,
|
|
24
|
+
GooglePay = 8
|
|
25
|
+
}
|
|
26
|
+
export declare enum PaymentStage {
|
|
27
|
+
External = 1,
|
|
28
|
+
Internal = 2
|
|
29
|
+
}
|
|
@@ -4,6 +4,8 @@ export * from './consts/formats';
|
|
|
4
4
|
export * from './converts/convert';
|
|
5
5
|
export * from './converts/dateConvert';
|
|
6
6
|
export * from './converts/xmlFormatter';
|
|
7
|
+
export * from './enums/billing';
|
|
8
|
+
export * from './enums/enums';
|
|
7
9
|
export * from './go/base-go.service';
|
|
8
10
|
export * from './interceptors/httpInterceptor';
|
|
9
11
|
export * from './guards/once-import.guard';
|
|
@@ -24,6 +26,7 @@ export * from './services/dm.service';
|
|
|
24
26
|
export * from './services/google-analytics.service';
|
|
25
27
|
export * from './services/idle.service';
|
|
26
28
|
export * from './services/loading.service';
|
|
29
|
+
export * from './services/script.service';
|
|
27
30
|
export * from './services/starter.service';
|
|
28
31
|
export * from './services/web-storage.service';
|
|
29
32
|
export * from './browser';
|
|
@@ -2,7 +2,7 @@ import { HttpEvent, HttpHandler, HttpInterceptor, HttpRequest } from '@angular/c
|
|
|
2
2
|
import { Observable } from 'rxjs';
|
|
3
3
|
import { LoadingService } from '../services/loading.service';
|
|
4
4
|
import { LoggingService } from '../logging/logging.service';
|
|
5
|
-
import { AuthService } from '../../iam';
|
|
5
|
+
import { AuthService } from '../../iam/exports';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export declare class AnatolyHttpInterceptor implements HttpInterceptor {
|
|
8
8
|
protected authService: AuthService;
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import { NgZone } from '@angular/core';
|
|
2
|
+
import { IQueryParam } from '../models/qs';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export declare class ScriptService {
|
|
4
5
|
protected zone: NgZone;
|
|
5
6
|
constructor(zone: NgZone);
|
|
7
|
+
private getElemId;
|
|
6
8
|
registerScript(url: string, globalVar: string, onReady: (globalVar: any) => void): void;
|
|
7
9
|
cleanup(globalVar: string): void;
|
|
8
|
-
|
|
10
|
+
getQueryString(queryParams: IQueryParam[]): string;
|
|
9
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScriptService, never>;
|
|
10
12
|
static ɵprov: i0.ɵɵInjectableDeclaration<ScriptService>;
|
|
11
13
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { HttpClient } from '@angular/common/http';
|
|
2
|
+
import { Observable } from 'rxjs';
|
|
3
|
+
import { ApiServiceBase } from '../../base/api.service';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class PaymentsApiService extends ApiServiceBase {
|
|
6
|
+
protected http: HttpClient;
|
|
7
|
+
constructor(http: HttpClient);
|
|
8
|
+
createStripeSession(amount: any, currency: any, name: any, description: any, image: any): Observable<any>;
|
|
9
|
+
createBraintreeToken(): Observable<any>;
|
|
10
|
+
pay(paidFor: any, payMethod: any, subtotal: any, promoCode: any, total: any, currency: any, payId: any, payStatus: any, payDetails: any, success?: Function, error?: Function): import("rxjs").Subscription;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PaymentsApiService, never>;
|
|
12
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PaymentsApiService>;
|
|
13
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { OnDestroy, OnInit } from "@angular/core";
|
|
2
|
-
import { Subs } from "../../../../core";
|
|
2
|
+
import { Subs } from "../../../../core/exports";
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare abstract class ComponentBase implements OnInit, OnDestroy {
|
|
5
5
|
protected isDevMode: boolean;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { EventEmitter } from "@angular/core";
|
|
2
|
+
import { DialogThemeColor } from "@progress/kendo-angular-dialog";
|
|
2
3
|
import { EditComponentBase } from "./components/edit.component";
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
export declare abstract class DialogBase extends EditComponentBase {
|
|
5
6
|
private _isOpen;
|
|
7
|
+
themeColor: DialogThemeColor;
|
|
6
8
|
get isOpen(): boolean;
|
|
7
9
|
set isOpen(value: boolean);
|
|
8
10
|
opened: EventEmitter<any>;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
export * from './base/components/component';
|
|
2
|
+
export * from './base/components/edit.component';
|
|
3
|
+
export * from './base/components/enum-edit.component';
|
|
4
|
+
export * from './base/pages/page';
|
|
5
|
+
export * from './base/pages/edit.page';
|
|
6
|
+
export * from './base/pages/paged.page';
|
|
7
|
+
export * from './base/dialog';
|
|
8
|
+
export * from './base/list';
|
|
9
|
+
export * from './billing/buyaccess-button.component';
|
|
10
|
+
export * from './billing/subscribe-plan-button.component';
|
|
11
|
+
export * from './check-icon/check-icon.component';
|
|
12
|
+
export * from './datapager/datapager.component';
|
|
13
|
+
export * from './identity/signin-button.component';
|
|
14
|
+
export * from './identity/signout-button.component';
|
|
15
|
+
export * from './identity/signup-button.component';
|
|
16
|
+
export * from './nodata/nodata.component';
|
|
17
|
+
export * from './spinners/loading/loading.component';
|
|
18
|
+
export * from './spinners/pagespinner/pagespinner.component';
|
|
19
|
+
export * from './copy-2-clipboard/copy-2-clipboard.component';
|
|
20
|
+
export * from './urlslug/urlslug.component';
|
|
21
|
+
export * from './dropdownlists/country/country.dropdownlist';
|
|
22
|
+
export * from './dropdownlists/timezone/timezone.dropdownlist';
|
|
23
|
+
export * from './card/card.component';
|
|
24
|
+
export * from './card/card-header.component';
|
|
25
|
+
export * from './card/card-body.component';
|
|
26
|
+
export * from './card/card-footer.component';
|
|
27
|
+
export * from './html-editor/html-editor.defaultoptions';
|
|
28
|
+
export * from './html-editor/base-html-editor.component';
|
|
29
|
+
export * from './html-editor/forms-html-editor.component';
|
|
30
|
+
export * from './html-editor/html-editor.component';
|
|
@@ -1,30 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
3
|
-
export * from './base/components/enum-edit.component';
|
|
4
|
-
export * from './base/pages/page';
|
|
5
|
-
export * from './base/pages/edit.page';
|
|
6
|
-
export * from './base/pages/paged.page';
|
|
7
|
-
export * from './base/dialog';
|
|
8
|
-
export * from './base/list';
|
|
9
|
-
export * from './billing/buyaccess-button.component';
|
|
10
|
-
export * from './billing/subscribe-plan-button.component';
|
|
11
|
-
export * from './check-icon/check-icon.component';
|
|
12
|
-
export * from './datapager/datapager.component';
|
|
13
|
-
export * from './identity/signin-button.component';
|
|
14
|
-
export * from './identity/signout-button.component';
|
|
15
|
-
export * from './identity/signup-button.component';
|
|
16
|
-
export * from './nodata/nodata.component';
|
|
17
|
-
export * from './spinners/loading/loading.component';
|
|
18
|
-
export * from './spinners/pagespinner/pagespinner.component';
|
|
19
|
-
export * from './copy-2-clipboard/copy-2-clipboard.component';
|
|
20
|
-
export * from './urlslug/urlslug.component';
|
|
21
|
-
export * from './dropdownlists/country/country.dropdownlist';
|
|
22
|
-
export * from './dropdownlists/timezone/timezone.dropdownlist';
|
|
23
|
-
export * from './card/card.component';
|
|
24
|
-
export * from './card/card-header.component';
|
|
25
|
-
export * from './card/card-body.component';
|
|
26
|
-
export * from './card/card-footer.component';
|
|
27
|
-
export * from './html-editor/html-editor.defaultoptions';
|
|
28
|
-
export * from './html-editor/base-html-editor.component';
|
|
29
|
-
export * from './html-editor/forms-html-editor.component';
|
|
30
|
-
export * from './html-editor/html-editor.component';
|
|
1
|
+
import { BuyAccessButtonComponent, SubscribePlanButtonComponent, CardComponent, CheckIconComponent, Copy2ClipboardComponent, CountryDropdownlist, TimezoneDropdownlist, NodataComponent, PageSpinnerComponent, LoadingComponent } from './exports';
|
|
2
|
+
export declare const MAIN_COMPONENTS: (typeof BuyAccessButtonComponent | typeof SubscribePlanButtonComponent | typeof CheckIconComponent | typeof NodataComponent | typeof LoadingComponent | typeof PageSpinnerComponent | typeof Copy2ClipboardComponent | typeof CountryDropdownlist | typeof TimezoneDropdownlist | typeof CardComponent)[];
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './contact-us/contact-us.dialog';
|
|
@@ -1 +1,2 @@
|
|
|
1
|
-
|
|
1
|
+
import { ContactUsDialog } from './exports';
|
|
2
|
+
export declare const DIALOGS: (typeof ContactUsDialog)[];
|
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
1
|
+
import { NativeElementDirective, HoveringDirective } from './exports';
|
|
2
|
+
export declare const DIRECTIVES: (typeof NativeElementDirective | typeof HoveringDirective)[];
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { FormBuilder } from '@angular/forms';
|
|
3
|
-
import { CoreApiService } from '../../../../data';
|
|
4
|
-
import { EditComponentBase } from '../../../components';
|
|
3
|
+
import { CoreApiService } from '../../../../data/exports';
|
|
4
|
+
import { EditComponentBase } from '../../../components/exports';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
6
6
|
interface CodeName {
|
|
7
7
|
code: string;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { FormBuilder } from '@angular/forms';
|
|
3
|
-
import { EditComponentBase } from '../../../components';
|
|
3
|
+
import { EditComponentBase } from '../../../components/exports';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class CompanyComponent extends EditComponentBase implements OnInit {
|
|
6
6
|
private fb;
|
package/lib/ui/forms/index.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
3
|
-
export * from './contact-us/contact-us';
|
|
1
|
+
import { AddressComponent, CompanyComponent, ContactUsForm } from './exports';
|
|
2
|
+
export declare const FORMS: (typeof ContactUsForm | typeof AddressComponent | typeof CompanyComponent)[];
|
package/lib/ui/pipes/index.d.ts
CHANGED
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
3
|
-
export * from './safeHtml.pipe';
|
|
1
|
+
import { SafeHtmlPipe, ReplaceTextPipe, FileSizePipe } from './exports';
|
|
2
|
+
export declare const PIPES: (typeof FileSizePipe | typeof ReplaceTextPipe | typeof SafeHtmlPipe)[];
|
package/lib/ui/ui.module.d.ts
CHANGED
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./components/billing/buyaccess-button.component";
|
|
3
3
|
import * as i2 from "./components/billing/subscribe-plan-button.component";
|
|
4
|
-
import * as i3 from "./components/
|
|
5
|
-
import * as i4 from "./components/
|
|
6
|
-
import * as i5 from "./components/
|
|
7
|
-
import * as i6 from "./components/
|
|
8
|
-
import * as i7 from "./components/
|
|
9
|
-
import * as i8 from "./components/
|
|
10
|
-
import * as i9 from "./components/
|
|
11
|
-
import * as i10 from "./components/
|
|
12
|
-
import * as i11 from "./components/
|
|
13
|
-
import * as i12 from "./components/
|
|
14
|
-
import * as i13 from "./components/
|
|
15
|
-
import * as i14 from "./components/
|
|
16
|
-
import * as i15 from "./components/
|
|
17
|
-
import * as i16 from "./components/
|
|
18
|
-
import * as i17 from "./components/
|
|
19
|
-
import * as i18 from "./components/
|
|
20
|
-
import * as i19 from "./components/
|
|
21
|
-
import * as i20 from "./components/
|
|
4
|
+
import * as i3 from "./components/card/card.component";
|
|
5
|
+
import * as i4 from "./components/card/card-header.component";
|
|
6
|
+
import * as i5 from "./components/card/card-body.component";
|
|
7
|
+
import * as i6 from "./components/card/card-footer.component";
|
|
8
|
+
import * as i7 from "./components/check-icon/check-icon.component";
|
|
9
|
+
import * as i8 from "./components/copy-2-clipboard/copy-2-clipboard.component";
|
|
10
|
+
import * as i9 from "./components/datapager/datapager.component";
|
|
11
|
+
import * as i10 from "./components/dropdownlists/country/country.dropdownlist";
|
|
12
|
+
import * as i11 from "./components/dropdownlists/timezone/timezone.dropdownlist";
|
|
13
|
+
import * as i12 from "./components/html-editor/html-editor.component";
|
|
14
|
+
import * as i13 from "./components/html-editor/forms-html-editor.component";
|
|
15
|
+
import * as i14 from "./components/identity/signin-button.component";
|
|
16
|
+
import * as i15 from "./components/identity/signup-button.component";
|
|
17
|
+
import * as i16 from "./components/identity/signout-button.component";
|
|
18
|
+
import * as i17 from "./components/nodata/nodata.component";
|
|
19
|
+
import * as i18 from "./components/spinners/pagespinner/pagespinner.component";
|
|
20
|
+
import * as i19 from "./components/spinners/loading/loading.component";
|
|
21
|
+
import * as i20 from "./components/urlslug/urlslug.component";
|
|
22
22
|
import * as i21 from "./dialogs/contact-us/contact-us.dialog";
|
|
23
23
|
import * as i22 from "./directives/native-element.directive";
|
|
24
24
|
import * as i23 from "./directives/hover.directive";
|
|
@@ -35,10 +35,10 @@ import * as i33 from "@angular/router";
|
|
|
35
35
|
import * as i34 from "@angular/forms";
|
|
36
36
|
import * as i35 from "ngx-captcha";
|
|
37
37
|
import * as i36 from "angular-froala-wysiwyg";
|
|
38
|
-
import * as i37 from "
|
|
39
|
-
import * as i38 from "
|
|
38
|
+
import * as i37 from "../external/fa.module";
|
|
39
|
+
import * as i38 from "../external/kendo.module";
|
|
40
40
|
export declare class AnatolyUIModule {
|
|
41
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<AnatolyUIModule, never>;
|
|
42
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<AnatolyUIModule, [typeof i1.BuyAccessButtonComponent, typeof i2.SubscribePlanButtonComponent, typeof i3.
|
|
42
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<AnatolyUIModule, [typeof i1.BuyAccessButtonComponent, typeof i2.SubscribePlanButtonComponent, typeof i3.CardComponent, typeof i4.CardHeaderComponent, typeof i5.CardBodyComponent, typeof i6.CardFooterComponent, typeof i7.CheckIconComponent, typeof i8.Copy2ClipboardComponent, typeof i9.DataPagerComponent, typeof i10.CountryDropdownlist, typeof i11.TimezoneDropdownlist, typeof i12.HtmlEditorComponent, typeof i13.FormsHtmlEditorComponent, typeof i14.SignInButtonComponent, typeof i15.SignUpButtonComponent, typeof i16.SignOutButtonComponent, typeof i17.NodataComponent, typeof i18.PageSpinnerComponent, typeof i19.LoadingComponent, typeof i20.UrlSlugComponent, typeof i21.ContactUsDialog, typeof i22.NativeElementDirective, typeof i23.HoveringDirective, typeof i24.AddressComponent, typeof i25.CompanyComponent, typeof i26.ContactUsForm, typeof i27.SafeHtmlPipe, typeof i28.ReplaceTextPipe, typeof i29.FileSizePipe, typeof i30.FormValidationSummaryComponent, typeof i31.ItemValidationSummaryComponent], [typeof i32.CommonModule, typeof i33.RouterModule, typeof i34.ReactiveFormsModule, typeof i34.FormsModule, typeof i35.NgxCaptchaModule, typeof i36.FERootModule, typeof i37.FaModule, typeof i38.KendoModule], [typeof i1.BuyAccessButtonComponent, typeof i2.SubscribePlanButtonComponent, typeof i3.CardComponent, typeof i4.CardHeaderComponent, typeof i5.CardBodyComponent, typeof i6.CardFooterComponent, typeof i7.CheckIconComponent, typeof i8.Copy2ClipboardComponent, typeof i9.DataPagerComponent, typeof i10.CountryDropdownlist, typeof i11.TimezoneDropdownlist, typeof i12.HtmlEditorComponent, typeof i13.FormsHtmlEditorComponent, typeof i14.SignInButtonComponent, typeof i15.SignUpButtonComponent, typeof i16.SignOutButtonComponent, typeof i17.NodataComponent, typeof i18.PageSpinnerComponent, typeof i19.LoadingComponent, typeof i20.UrlSlugComponent, typeof i21.ContactUsDialog, typeof i22.NativeElementDirective, typeof i23.HoveringDirective, typeof i24.AddressComponent, typeof i25.CompanyComponent, typeof i26.ContactUsForm, typeof i27.SafeHtmlPipe, typeof i28.ReplaceTextPipe, typeof i29.FileSizePipe, typeof i30.FormValidationSummaryComponent, typeof i31.ItemValidationSummaryComponent]>;
|
|
43
43
|
static ɵinj: i0.ɵɵInjectorDeclaration<AnatolyUIModule>;
|
|
44
44
|
}
|
|
@@ -1,3 +1,2 @@
|
|
|
1
|
-
|
|
2
|
-
export
|
|
3
|
-
export * from './validation-summary.component';
|
|
1
|
+
import { ItemValidationSummaryComponent } from './exports';
|
|
2
|
+
export declare const VALIDATION_COMPONENTS: (typeof ItemValidationSummaryComponent)[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osovitny/anatoly",
|
|
3
|
-
"version": "3.17.
|
|
3
|
+
"version": "3.17.78",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": "17.1.2",
|
|
6
6
|
"@angular/core": "17.1.2",
|
|
@@ -57,7 +57,9 @@
|
|
|
57
57
|
"sweetalert2": "11.10.5",
|
|
58
58
|
"uuid": "9.0.1",
|
|
59
59
|
"angular-froala-wysiwyg": "4.1.4",
|
|
60
|
-
"froala-editor": "3.2.7"
|
|
60
|
+
"froala-editor": "3.2.7",
|
|
61
|
+
"@stripe/stripe-js": "4.2.0",
|
|
62
|
+
"braintree-web-drop-in": "1.42.0"
|
|
61
63
|
},
|
|
62
64
|
"sideEffects": false,
|
|
63
65
|
"module": "fesm2022/osovitny-anatoly.mjs",
|
package/public-api.d.ts
CHANGED
|
@@ -1,17 +1,12 @@
|
|
|
1
|
-
export * from './lib/
|
|
2
|
-
export * from './lib/
|
|
3
|
-
export * from './lib/
|
|
4
|
-
export * from './lib/
|
|
5
|
-
export * from './lib/ui/
|
|
6
|
-
export * from './lib/ui/dialogs';
|
|
7
|
-
export * from './lib/ui/directives';
|
|
8
|
-
export * from './lib/ui/forms';
|
|
9
|
-
export * from './lib/ui/pipes';
|
|
10
|
-
export * from './lib/ui/validation';
|
|
1
|
+
export * from './lib/billing/exports';
|
|
2
|
+
export * from './lib/core/exports';
|
|
3
|
+
export * from './lib/data/exports';
|
|
4
|
+
export * from './lib/iam/exports';
|
|
5
|
+
export * from './lib/ui/exports';
|
|
11
6
|
export * from './lib/core/core.module';
|
|
12
7
|
export * from './lib/data/data.module';
|
|
13
8
|
export * from './lib/iam/iam.module';
|
|
14
9
|
export * from './lib/iam/iam-pages.module';
|
|
15
|
-
export * from './lib/
|
|
10
|
+
export * from './lib/billing/billing.module';
|
|
16
11
|
export * from './lib/ui/ui.module';
|
|
17
12
|
export * from './lib/anatoly.module';
|