@osovitny/anatoly 2.14.37 → 2.14.39
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/data/consts.mjs +1 -3
- package/esm2020/lib/data/data.module.mjs +1 -4
- package/esm2020/lib/data/index.mjs +1 -2
- package/esm2020/lib/ui/components/base.component.mjs +5 -1
- package/esm2020/lib/ui/components/billing/buyaccess-button.component.mjs +5 -21
- package/esm2020/lib/ui/components/billing/subscribe-plan-button.component.mjs +18 -16
- package/esm2020/lib/ui/components/index.mjs +4 -4
- package/esm2020/lib/ui/ui.module.mjs +44 -79
- package/fesm2015/osovitny-anatoly.mjs +66 -203
- package/fesm2015/osovitny-anatoly.mjs.map +1 -1
- package/fesm2020/osovitny-anatoly.mjs +66 -203
- package/fesm2020/osovitny-anatoly.mjs.map +1 -1
- package/lib/data/consts.d.ts +0 -1
- package/lib/data/index.d.ts +0 -1
- package/lib/ui/components/base.component.d.ts +3 -0
- package/lib/ui/components/billing/buyaccess-button.component.d.ts +2 -2
- package/lib/ui/components/billing/subscribe-plan-button.component.d.ts +7 -5
- package/lib/ui/components/index.d.ts +0 -1
- package/lib/ui/ui.module.d.ts +33 -34
- package/package.json +1 -1
- package/esm2020/lib/data/services/billing-api.service.mjs +0 -53
- package/esm2020/lib/ui/components/billing/upgrade-plan-button.component.mjs +0 -49
- package/lib/data/services/billing-api.service.d.ts +0 -11
- package/lib/ui/components/billing/upgrade-plan-button.component.d.ts +0 -12
|
@@ -2056,8 +2056,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
2056
2056
|
const Consts = {
|
|
2057
2057
|
//core
|
|
2058
2058
|
coreApiPath: 'api/core',
|
|
2059
|
-
//billing
|
|
2060
|
-
billingApiPath: 'api/billing',
|
|
2061
2059
|
//emails
|
|
2062
2060
|
emailsApiPath: 'api/emails',
|
|
2063
2061
|
//notifications
|
|
@@ -2098,52 +2096,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
2098
2096
|
}]
|
|
2099
2097
|
}], ctorParameters: function () { return [{ type: i1$3.HttpClient }]; } });
|
|
2100
2098
|
|
|
2101
|
-
/*
|
|
2102
|
-
<file>
|
|
2103
|
-
Project:
|
|
2104
|
-
@osovitny/anatoly
|
|
2105
|
-
|
|
2106
|
-
Authors:
|
|
2107
|
-
Vadim Osovitny
|
|
2108
|
-
Anatoly Osovitny
|
|
2109
|
-
|
|
2110
|
-
Created:
|
|
2111
|
-
12 Nov 2017
|
|
2112
|
-
|
|
2113
|
-
Copyright (c) 2016-2022 Osovitny Inc. All rights reserved.
|
|
2114
|
-
</file>
|
|
2115
|
-
*/
|
|
2116
|
-
class BillingApiService extends BaseApiService {
|
|
2117
|
-
constructor(http) {
|
|
2118
|
-
super(http);
|
|
2119
|
-
this.http = http;
|
|
2120
|
-
this.baseUrl = Consts.billingApiPath;
|
|
2121
|
-
}
|
|
2122
|
-
requestNewSubscription(requestedPlan, success, error) {
|
|
2123
|
-
this.postQS("requestNewSubscription", { requestedPlan: requestedPlan }).subscribe((data) => {
|
|
2124
|
-
if (success)
|
|
2125
|
-
success();
|
|
2126
|
-
}, (e) => {
|
|
2127
|
-
if (error)
|
|
2128
|
-
error();
|
|
2129
|
-
});
|
|
2130
|
-
}
|
|
2131
|
-
cancelRequestedSubscription(success, error) {
|
|
2132
|
-
this.postQS("cancelRequestedSubscription", null).subscribe((data) => {
|
|
2133
|
-
if (success)
|
|
2134
|
-
success();
|
|
2135
|
-
}, (e) => {
|
|
2136
|
-
if (error)
|
|
2137
|
-
error();
|
|
2138
|
-
});
|
|
2139
|
-
}
|
|
2140
|
-
}
|
|
2141
|
-
BillingApiService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: BillingApiService, deps: [{ token: i1$3.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
2142
|
-
BillingApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: BillingApiService });
|
|
2143
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: BillingApiService, decorators: [{
|
|
2144
|
-
type: Injectable
|
|
2145
|
-
}], ctorParameters: function () { return [{ type: i1$3.HttpClient }]; } });
|
|
2146
|
-
|
|
2147
2099
|
/*
|
|
2148
2100
|
<file>
|
|
2149
2101
|
Project:
|
|
@@ -2252,6 +2204,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
2252
2204
|
class BaseComponent {
|
|
2253
2205
|
constructor() {
|
|
2254
2206
|
this.subs = new Subs();
|
|
2207
|
+
//Component Data => usually loading from API
|
|
2208
|
+
this.dataLoading = true;
|
|
2209
|
+
this.dataLoaded = false;
|
|
2210
|
+
this.dataFound = false;
|
|
2255
2211
|
}
|
|
2256
2212
|
getQSId() {
|
|
2257
2213
|
let id = Utils.getValueByNameInQS("id");
|
|
@@ -2492,16 +2448,12 @@ class BuyAccessButtonComponent {
|
|
|
2492
2448
|
this.appContext = appContext;
|
|
2493
2449
|
this.contextUpdated = false;
|
|
2494
2450
|
this.isUserSignedIn = false;
|
|
2495
|
-
this.currentPlan =
|
|
2451
|
+
this.currentPlan = -1;
|
|
2496
2452
|
this.currentPlanTitle = '';
|
|
2497
2453
|
this.visibleIfUserSignedIn = false;
|
|
2498
2454
|
this.buy = new EventEmitter();
|
|
2499
2455
|
}
|
|
2500
2456
|
ngOnInit() {
|
|
2501
|
-
if (!this.appContext.isUserSignedIn()) {
|
|
2502
|
-
this.contextUpdated = true;
|
|
2503
|
-
return;
|
|
2504
|
-
}
|
|
2505
2457
|
this.appContext.getCurrent((current) => {
|
|
2506
2458
|
this.isUserSignedIn = current.isUserSignedIn;
|
|
2507
2459
|
if (this.isUserSignedIn) {
|
|
@@ -2513,29 +2465,17 @@ class BuyAccessButtonComponent {
|
|
|
2513
2465
|
}
|
|
2514
2466
|
//Events
|
|
2515
2467
|
onBuyAccess() {
|
|
2516
|
-
/*
|
|
2517
|
-
const text = `Requested plan: ${this.plantitle} `;
|
|
2518
|
-
const that = this;
|
|
2519
|
-
|
|
2520
|
-
Alerts.areYouSure(text, 'Buying access', 'Confirm change', 'Cancel', () => {
|
|
2521
|
-
that.api.buyAccess(that.plan, () => {
|
|
2522
|
-
Alerts.success('Access Granted', null, null,() => {
|
|
2523
|
-
(window as any).location.reload();
|
|
2524
|
-
});
|
|
2525
|
-
});
|
|
2526
|
-
});
|
|
2527
|
-
*/
|
|
2528
2468
|
this.buy.emit(this.plan);
|
|
2529
2469
|
}
|
|
2530
2470
|
}
|
|
2531
2471
|
BuyAccessButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: BuyAccessButtonComponent, deps: [{ token: AppContextService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2532
|
-
BuyAccessButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: BuyAccessButtonComponent, selector: "anatoly-buyaccess-button", inputs: { plan: "plan",
|
|
2472
|
+
BuyAccessButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: BuyAccessButtonComponent, selector: "anatoly-buyaccess-button", inputs: { plan: "plan", planTitle: "planTitle", visibleIfUserSignedIn: "visibleIfUserSignedIn" }, outputs: { buy: "buy" }, ngImport: i0, template: "<div *ngIf=\"contextUpdated\">\r\n <div *ngIf=\"!isUserSignedIn\">\r\n <anatoly-signup-button classbtn=\"btn btn-block btn-primary\"></anatoly-signup-button>\r\n </div>\r\n\r\n <div *ngIf=\"isUserSignedIn && visibleIfUserSignedIn\">\r\n <button class=\"btn btn-block btn-success selectPlan\" \r\n *ngIf=\"plan == currentPlan\">\r\n Your Plan\r\n </button>\r\n\r\n <button class=\"btn btn-block btn-warning selectPlan\" \r\n *ngIf=\"plan != currentPlan && currentPlan == 1\" \r\n (click)=\"onBuyAccess()\">\r\n Buy Now\r\n </button>\r\n </div>\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i1$5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: SignUpButtonComponent, selector: "anatoly-signup-button", inputs: ["classbtn"] }] });
|
|
2533
2473
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: BuyAccessButtonComponent, decorators: [{
|
|
2534
2474
|
type: Component,
|
|
2535
|
-
args: [{ selector: 'anatoly-buyaccess-button', template: "<div *ngIf=\"contextUpdated\">\r\n <div *ngIf=\"!isUserSignedIn\">\r\n <anatoly-signup-button classbtn=\"btn btn-block btn-primary\"></anatoly-signup-button>\r\n </div>\r\n\r\n <div *ngIf=\"isUserSignedIn && visibleIfUserSignedIn\">\r\n <button class=\"btn btn-block btn-success selectPlan\" *ngIf=\"plan == currentPlan\">\r\n Your Plan\r\n </button>\r\n\r\n <button class=\"btn btn-block btn-warning selectPlan\" \r\n *ngIf=\"plan != currentPlan && currentPlan == 1\" \r\n (click)=\"onBuyAccess()\">\r\n Buy Now\r\n </button>\r\n </div>\r\n</div>\r\n" }]
|
|
2475
|
+
args: [{ selector: 'anatoly-buyaccess-button', template: "<div *ngIf=\"contextUpdated\">\r\n <div *ngIf=\"!isUserSignedIn\">\r\n <anatoly-signup-button classbtn=\"btn btn-block btn-primary\"></anatoly-signup-button>\r\n </div>\r\n\r\n <div *ngIf=\"isUserSignedIn && visibleIfUserSignedIn\">\r\n <button class=\"btn btn-block btn-success selectPlan\" \r\n *ngIf=\"plan == currentPlan\">\r\n Your Plan\r\n </button>\r\n\r\n <button class=\"btn btn-block btn-warning selectPlan\" \r\n *ngIf=\"plan != currentPlan && currentPlan == 1\" \r\n (click)=\"onBuyAccess()\">\r\n Buy Now\r\n </button>\r\n </div>\r\n</div>\r\n" }]
|
|
2536
2476
|
}], ctorParameters: function () { return [{ type: AppContextService }]; }, propDecorators: { plan: [{
|
|
2537
2477
|
type: Input
|
|
2538
|
-
}],
|
|
2478
|
+
}], planTitle: [{
|
|
2539
2479
|
type: Input
|
|
2540
2480
|
}], visibleIfUserSignedIn: [{
|
|
2541
2481
|
type: Input
|
|
@@ -2543,50 +2483,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
2543
2483
|
type: Output
|
|
2544
2484
|
}] } });
|
|
2545
2485
|
|
|
2546
|
-
/*
|
|
2547
|
-
<file>
|
|
2548
|
-
Project:
|
|
2549
|
-
@osovitny/anatoly
|
|
2550
|
-
|
|
2551
|
-
Authors:
|
|
2552
|
-
Vadim Osovitny
|
|
2553
|
-
Anatoly Osovitny
|
|
2554
|
-
|
|
2555
|
-
Created:
|
|
2556
|
-
12 Nov 2017
|
|
2557
|
-
|
|
2558
|
-
Copyright (c) 2016-2022 Osovitny Inc. All rights reserved.
|
|
2559
|
-
</file>
|
|
2560
|
-
*/
|
|
2561
|
-
class UpgradePlanButtonComponent {
|
|
2562
|
-
constructor(api) {
|
|
2563
|
-
this.api = api;
|
|
2564
|
-
}
|
|
2565
|
-
onUpgradePlan() {
|
|
2566
|
-
const text = `Current plan: ${this.currentplantitle} New plan: ${this.requestedplantitle}`;
|
|
2567
|
-
const that = this;
|
|
2568
|
-
Alerts.areYouSure(text, 'Change billing plan', 'Confirm change', 'Cancel', () => {
|
|
2569
|
-
that.api.requestNewSubscription(that.requestedplan, () => {
|
|
2570
|
-
Alerts.success('Your request for changing plan has been sent.', null, null, () => {
|
|
2571
|
-
window.location.reload();
|
|
2572
|
-
});
|
|
2573
|
-
});
|
|
2574
|
-
});
|
|
2575
|
-
}
|
|
2576
|
-
}
|
|
2577
|
-
UpgradePlanButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: UpgradePlanButtonComponent, deps: [{ token: BillingApiService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2578
|
-
UpgradePlanButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: UpgradePlanButtonComponent, selector: "anatoly-upgrade-plan-button", inputs: { currentplantitle: "currentplantitle", requestedplan: "requestedplan", requestedplantitle: "requestedplantitle" }, ngImport: i0, template: "<button class=\"btn btn-block btn-primary\" (click)=\"onUpgradePlan()\">\r\n Upgrade\r\n</button>\r\n" });
|
|
2579
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: UpgradePlanButtonComponent, decorators: [{
|
|
2580
|
-
type: Component,
|
|
2581
|
-
args: [{ selector: 'anatoly-upgrade-plan-button', template: "<button class=\"btn btn-block btn-primary\" (click)=\"onUpgradePlan()\">\r\n Upgrade\r\n</button>\r\n" }]
|
|
2582
|
-
}], ctorParameters: function () { return [{ type: BillingApiService }]; }, propDecorators: { currentplantitle: [{
|
|
2583
|
-
type: Input
|
|
2584
|
-
}], requestedplan: [{
|
|
2585
|
-
type: Input
|
|
2586
|
-
}], requestedplantitle: [{
|
|
2587
|
-
type: Input
|
|
2588
|
-
}] } });
|
|
2589
|
-
|
|
2590
2486
|
/*
|
|
2591
2487
|
<file>
|
|
2592
2488
|
Project:
|
|
@@ -2603,22 +2499,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
2603
2499
|
</file>
|
|
2604
2500
|
*/
|
|
2605
2501
|
class SubscribePlanButtonComponent {
|
|
2606
|
-
constructor(
|
|
2607
|
-
this.
|
|
2502
|
+
constructor(appContext) {
|
|
2503
|
+
this.appContext = appContext;
|
|
2608
2504
|
this.contextUpdated = false;
|
|
2609
2505
|
this.isUserSignedIn = false;
|
|
2610
|
-
this.currentPlan =
|
|
2506
|
+
this.currentPlan = -1;
|
|
2611
2507
|
this.currentPlanTitle = "";
|
|
2612
|
-
this.requestedPlan =
|
|
2508
|
+
this.requestedPlan = -1;
|
|
2613
2509
|
this.requestedPlanTitle = "";
|
|
2614
2510
|
this.visibleIfUserSignedIn = false;
|
|
2511
|
+
this.subscribe = new EventEmitter();
|
|
2615
2512
|
}
|
|
2616
2513
|
ngOnInit() {
|
|
2617
|
-
|
|
2618
|
-
this.contextUpdated = true;
|
|
2619
|
-
return;
|
|
2620
|
-
}
|
|
2621
|
-
this.appcontext.getCurrent((current) => {
|
|
2514
|
+
this.appContext.getCurrent((current) => {
|
|
2622
2515
|
this.isUserSignedIn = current.isUserSignedIn;
|
|
2623
2516
|
if (this.isUserSignedIn) {
|
|
2624
2517
|
this.currentPlan = current.account.billingPlan;
|
|
@@ -2629,18 +2522,24 @@ class SubscribePlanButtonComponent {
|
|
|
2629
2522
|
this.contextUpdated = true;
|
|
2630
2523
|
});
|
|
2631
2524
|
}
|
|
2525
|
+
//Events
|
|
2526
|
+
onSubscribe() {
|
|
2527
|
+
this.subscribe.emit(this.plan);
|
|
2528
|
+
}
|
|
2632
2529
|
}
|
|
2633
2530
|
SubscribePlanButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: SubscribePlanButtonComponent, deps: [{ token: AppContextService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2634
|
-
SubscribePlanButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: SubscribePlanButtonComponent, selector: "anatoly-subscribe-plan-button", inputs: { plan: "plan",
|
|
2531
|
+
SubscribePlanButtonComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.0.6", type: SubscribePlanButtonComponent, selector: "anatoly-subscribe-plan-button", inputs: { plan: "plan", planTitle: "planTitle", visibleIfUserSignedIn: "visibleIfUserSignedIn" }, outputs: { subscribe: "subscribe" }, ngImport: i0, template: "<div *ngIf=\"contextUpdated\">\r\n <div *ngIf=\"!isUserSignedIn\">\r\n <anatoly-signup-button classbtn=\"btn btn-block btn-primary\"></anatoly-signup-button>\r\n </div>\r\n\r\n <div *ngIf=\"isUserSignedIn && visibleIfUserSignedIn\">\r\n <button class=\"btn btn-block btn-success selectPlan\" \r\n *ngIf=\"plan == currentPlan\">\r\n Your Plan\r\n </button>\r\n\r\n <button class=\"btn btn-block btn-warning selectPlan\" \r\n *ngIf=\"plan == requestedPlan\">\r\n Requested\r\n </button>\r\n\r\n <button class=\"btn btn-block btn-warning selectPlan\" \r\n *ngIf=\"plan != currentPlan && plan != requestedPlan\" \r\n (click)=\"onSubscribe()\">\r\n Subscribe\r\n </button>\r\n </div>\r\n</div>\r\n", dependencies: [{ kind: "directive", type: i1$5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: SignUpButtonComponent, selector: "anatoly-signup-button", inputs: ["classbtn"] }] });
|
|
2635
2532
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: SubscribePlanButtonComponent, decorators: [{
|
|
2636
2533
|
type: Component,
|
|
2637
|
-
args: [{ selector: "anatoly-subscribe-plan-button", template: "<div *ngIf=\"contextUpdated\">\r\n <div *ngIf=\"!isUserSignedIn\">\r\n <anatoly-signup-button classbtn=\"btn btn-block btn-primary\"></anatoly-signup-button>\r\n </div>\r\n\r\n <div *ngIf=\"isUserSignedIn && visibleIfUserSignedIn\">\r\n <button class=\"btn btn-block btn-success selectPlan\" *ngIf=\"plan == currentPlan\">\r\n Your Plan\r\n </button>\r\n\r\n <button class=\"btn btn-block btn-warning selectPlan\" *ngIf=\"
|
|
2534
|
+
args: [{ selector: "anatoly-subscribe-plan-button", template: "<div *ngIf=\"contextUpdated\">\r\n <div *ngIf=\"!isUserSignedIn\">\r\n <anatoly-signup-button classbtn=\"btn btn-block btn-primary\"></anatoly-signup-button>\r\n </div>\r\n\r\n <div *ngIf=\"isUserSignedIn && visibleIfUserSignedIn\">\r\n <button class=\"btn btn-block btn-success selectPlan\" \r\n *ngIf=\"plan == currentPlan\">\r\n Your Plan\r\n </button>\r\n\r\n <button class=\"btn btn-block btn-warning selectPlan\" \r\n *ngIf=\"plan == requestedPlan\">\r\n Requested\r\n </button>\r\n\r\n <button class=\"btn btn-block btn-warning selectPlan\" \r\n *ngIf=\"plan != currentPlan && plan != requestedPlan\" \r\n (click)=\"onSubscribe()\">\r\n Subscribe\r\n </button>\r\n </div>\r\n</div>\r\n" }]
|
|
2638
2535
|
}], ctorParameters: function () { return [{ type: AppContextService }]; }, propDecorators: { plan: [{
|
|
2639
2536
|
type: Input
|
|
2640
|
-
}],
|
|
2537
|
+
}], planTitle: [{
|
|
2641
2538
|
type: Input
|
|
2642
2539
|
}], visibleIfUserSignedIn: [{
|
|
2643
2540
|
type: Input
|
|
2541
|
+
}], subscribe: [{
|
|
2542
|
+
type: Output
|
|
2644
2543
|
}] } });
|
|
2645
2544
|
|
|
2646
2545
|
/*
|
|
@@ -4246,7 +4145,6 @@ AnatolyDataModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", versio
|
|
|
4246
4145
|
AnatolyDataModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.6", ngImport: i0, type: AnatolyDataModule, imports: [CommonModule] });
|
|
4247
4146
|
AnatolyDataModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: AnatolyDataModule, providers: [
|
|
4248
4147
|
CoreApiService,
|
|
4249
|
-
BillingApiService,
|
|
4250
4148
|
EmailsApiService
|
|
4251
4149
|
], imports: [CommonModule] });
|
|
4252
4150
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: AnatolyDataModule, decorators: [{
|
|
@@ -4257,7 +4155,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
4257
4155
|
],
|
|
4258
4156
|
providers: [
|
|
4259
4157
|
CoreApiService,
|
|
4260
|
-
BillingApiService,
|
|
4261
4158
|
EmailsApiService
|
|
4262
4159
|
]
|
|
4263
4160
|
}]
|
|
@@ -4286,12 +4183,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
4286
4183
|
*/
|
|
4287
4184
|
const FroalaEditorModuleWithProviders = FroalaEditorModule.forRoot();
|
|
4288
4185
|
const FroalaViewModuleWithProviders = FroalaViewModule.forRoot();
|
|
4186
|
+
const COMPONENTS = [
|
|
4187
|
+
BuyAccessButtonComponent,
|
|
4188
|
+
SubscribePlanButtonComponent,
|
|
4189
|
+
SignInButtonComponent,
|
|
4190
|
+
SignUpButtonComponent,
|
|
4191
|
+
SignOutButtonComponent,
|
|
4192
|
+
NodataComponent,
|
|
4193
|
+
//Spinners
|
|
4194
|
+
PageSpinnerComponent,
|
|
4195
|
+
LoadingComponent,
|
|
4196
|
+
//Cards
|
|
4197
|
+
CardComponent,
|
|
4198
|
+
CardHeaderComponent,
|
|
4199
|
+
CardBodyComponent,
|
|
4200
|
+
CardFooterComponent,
|
|
4201
|
+
//HtmlEditor
|
|
4202
|
+
HtmlEditorComponent,
|
|
4203
|
+
FormsHtmlEditorComponent,
|
|
4204
|
+
//Directives
|
|
4205
|
+
NativeElementDirective,
|
|
4206
|
+
//Forms
|
|
4207
|
+
AddressComponent,
|
|
4208
|
+
CompanyComponent,
|
|
4209
|
+
UrlSlugComponent,
|
|
4210
|
+
TimezoneDropdownlist,
|
|
4211
|
+
ContactUsForm,
|
|
4212
|
+
//Dialogs
|
|
4213
|
+
ContactUsDialog,
|
|
4214
|
+
//Pipes
|
|
4215
|
+
SafeHtmlPipe,
|
|
4216
|
+
ReplaceTextPipe,
|
|
4217
|
+
FileSizePipe,
|
|
4218
|
+
//Validation
|
|
4219
|
+
FormValidationSummaryComponent,
|
|
4220
|
+
ItemValidationSummaryComponent
|
|
4221
|
+
];
|
|
4289
4222
|
class AnatolyUIModule {
|
|
4290
4223
|
}
|
|
4291
4224
|
AnatolyUIModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: AnatolyUIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4292
|
-
AnatolyUIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.6", ngImport: i0, type: AnatolyUIModule, declarations: [
|
|
4293
|
-
|
|
4294
|
-
BuyAccessButtonComponent,
|
|
4225
|
+
AnatolyUIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.6", ngImport: i0, type: AnatolyUIModule, declarations: [BuyAccessButtonComponent,
|
|
4226
|
+
SubscribePlanButtonComponent,
|
|
4295
4227
|
SignInButtonComponent,
|
|
4296
4228
|
SignUpButtonComponent,
|
|
4297
4229
|
SignOutButtonComponent,
|
|
@@ -4328,9 +4260,8 @@ AnatolyUIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version
|
|
|
4328
4260
|
CommonModule,
|
|
4329
4261
|
ReactiveFormsModule,
|
|
4330
4262
|
FormsModule,
|
|
4331
|
-
NgxCaptchaModule, i1$7.FroalaEditorModule, i1$7.FroalaViewModule], exports: [
|
|
4332
|
-
|
|
4333
|
-
BuyAccessButtonComponent,
|
|
4263
|
+
NgxCaptchaModule, i1$7.FroalaEditorModule, i1$7.FroalaViewModule], exports: [BuyAccessButtonComponent,
|
|
4264
|
+
SubscribePlanButtonComponent,
|
|
4334
4265
|
SignInButtonComponent,
|
|
4335
4266
|
SignUpButtonComponent,
|
|
4336
4267
|
SignOutButtonComponent,
|
|
@@ -4385,78 +4316,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
4385
4316
|
FroalaViewModuleWithProviders,
|
|
4386
4317
|
],
|
|
4387
4318
|
exports: [
|
|
4388
|
-
|
|
4389
|
-
UpgradePlanButtonComponent,
|
|
4390
|
-
BuyAccessButtonComponent,
|
|
4391
|
-
SignInButtonComponent,
|
|
4392
|
-
SignUpButtonComponent,
|
|
4393
|
-
SignOutButtonComponent,
|
|
4394
|
-
NodataComponent,
|
|
4395
|
-
//Spinners
|
|
4396
|
-
PageSpinnerComponent,
|
|
4397
|
-
LoadingComponent,
|
|
4398
|
-
//Cards
|
|
4399
|
-
CardComponent,
|
|
4400
|
-
CardHeaderComponent,
|
|
4401
|
-
CardBodyComponent,
|
|
4402
|
-
CardFooterComponent,
|
|
4403
|
-
//HtmlEditor
|
|
4404
|
-
HtmlEditorComponent,
|
|
4405
|
-
FormsHtmlEditorComponent,
|
|
4406
|
-
//Directives
|
|
4407
|
-
NativeElementDirective,
|
|
4408
|
-
//Forms
|
|
4409
|
-
AddressComponent,
|
|
4410
|
-
CompanyComponent,
|
|
4411
|
-
UrlSlugComponent,
|
|
4412
|
-
TimezoneDropdownlist,
|
|
4413
|
-
ContactUsForm,
|
|
4414
|
-
//Dialogs
|
|
4415
|
-
ContactUsDialog,
|
|
4416
|
-
//Pipes
|
|
4417
|
-
SafeHtmlPipe,
|
|
4418
|
-
ReplaceTextPipe,
|
|
4419
|
-
FileSizePipe,
|
|
4420
|
-
//Validation
|
|
4421
|
-
FormValidationSummaryComponent,
|
|
4422
|
-
ItemValidationSummaryComponent,
|
|
4319
|
+
...COMPONENTS
|
|
4423
4320
|
],
|
|
4424
4321
|
declarations: [
|
|
4425
|
-
|
|
4426
|
-
UpgradePlanButtonComponent,
|
|
4427
|
-
BuyAccessButtonComponent,
|
|
4428
|
-
SignInButtonComponent,
|
|
4429
|
-
SignUpButtonComponent,
|
|
4430
|
-
SignOutButtonComponent,
|
|
4431
|
-
NodataComponent,
|
|
4432
|
-
//Spinners
|
|
4433
|
-
PageSpinnerComponent,
|
|
4434
|
-
LoadingComponent,
|
|
4435
|
-
//Cards
|
|
4436
|
-
CardComponent,
|
|
4437
|
-
CardHeaderComponent,
|
|
4438
|
-
CardBodyComponent,
|
|
4439
|
-
CardFooterComponent,
|
|
4440
|
-
//HtmlEditor
|
|
4441
|
-
HtmlEditorComponent,
|
|
4442
|
-
FormsHtmlEditorComponent,
|
|
4443
|
-
//Directives
|
|
4444
|
-
NativeElementDirective,
|
|
4445
|
-
//Forms
|
|
4446
|
-
AddressComponent,
|
|
4447
|
-
CompanyComponent,
|
|
4448
|
-
UrlSlugComponent,
|
|
4449
|
-
TimezoneDropdownlist,
|
|
4450
|
-
ContactUsForm,
|
|
4451
|
-
//Dialogs
|
|
4452
|
-
ContactUsDialog,
|
|
4453
|
-
//Pipes
|
|
4454
|
-
SafeHtmlPipe,
|
|
4455
|
-
ReplaceTextPipe,
|
|
4456
|
-
FileSizePipe,
|
|
4457
|
-
//Validation
|
|
4458
|
-
FormValidationSummaryComponent,
|
|
4459
|
-
ItemValidationSummaryComponent,
|
|
4322
|
+
...COMPONENTS
|
|
4460
4323
|
]
|
|
4461
4324
|
}]
|
|
4462
4325
|
}] });
|
|
@@ -4469,5 +4332,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
4469
4332
|
* Generated bundle index. Do not edit.
|
|
4470
4333
|
*/
|
|
4471
4334
|
|
|
4472
|
-
export { AddressComponent, Alerts, AnatolyCoreModule, AnatolyDataModule, AnatolyHttpInterceptor, AnatolyUIModule, AppContextService, AppCoreSettings, BaseApiService, BaseComponent, BaseDialog, BaseEditComponent, BaseGoService, BaseGridEditService, BaseGridReadService, BaseHtmlEditorComponent,
|
|
4335
|
+
export { AddressComponent, Alerts, AnatolyCoreModule, AnatolyDataModule, AnatolyHttpInterceptor, AnatolyUIModule, AppContextService, AppCoreSettings, BaseApiService, BaseComponent, BaseDialog, BaseEditComponent, BaseGoService, BaseGridEditService, BaseGridReadService, BaseHtmlEditorComponent, BuyAccessButtonComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CompanyComponent, ContactUsDialog, ContactUsForm, ContextInitState, Convert, CoreApiService, DOM, DefaultEditorOptions, DigitalMarketingService, EmailsApiService, FileSizePipe, FormValidationSummaryComponent, FormsHtmlEditorComponent, FroalaEditorModuleWithProviders, FroalaViewModuleWithProviders, GlobalErrorHandler, GoogleAnalyticsService, Guid, HtmlEditorComponent, IdleService, InjectorInstance, ItemValidationSummaryComponent, LoadingComponent, LoadingService, LocalStorageService, LocalizationInjectorInstance, LocalizationModule, LocalizationService, LocalizationSettingsModule, LocalizePipe, LoggingService, NativeElementDirective, NodataComponent, NotificationService, NotificationsApiService, PageSpinnerComponent, ReplaceTextPipe, SafeHtmlPipe, SessionStorageService, SignInButtonComponent, SignOutButtonComponent, SignUpButtonComponent, Subs, SubscribePlanButtonComponent, TimezoneDropdownlist, TranslateModuleAtRoot, UrlSlugComponent, Urls, Utils, ValidationSummaryComponent, customTranslateLoaderFactory, localizationInitializerFactory, throwIfAlreadyLoaded };
|
|
4473
4336
|
//# sourceMappingURL=osovitny-anatoly.mjs.map
|