@osovitny/anatoly 2.14.38 → 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/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 +62 -203
- package/fesm2015/osovitny-anatoly.mjs.map +1 -1
- package/fesm2020/osovitny-anatoly.mjs +62 -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/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:
|
|
@@ -2496,16 +2448,12 @@ class BuyAccessButtonComponent {
|
|
|
2496
2448
|
this.appContext = appContext;
|
|
2497
2449
|
this.contextUpdated = false;
|
|
2498
2450
|
this.isUserSignedIn = false;
|
|
2499
|
-
this.currentPlan =
|
|
2451
|
+
this.currentPlan = -1;
|
|
2500
2452
|
this.currentPlanTitle = '';
|
|
2501
2453
|
this.visibleIfUserSignedIn = false;
|
|
2502
2454
|
this.buy = new EventEmitter();
|
|
2503
2455
|
}
|
|
2504
2456
|
ngOnInit() {
|
|
2505
|
-
if (!this.appContext.isUserSignedIn()) {
|
|
2506
|
-
this.contextUpdated = true;
|
|
2507
|
-
return;
|
|
2508
|
-
}
|
|
2509
2457
|
this.appContext.getCurrent((current) => {
|
|
2510
2458
|
this.isUserSignedIn = current.isUserSignedIn;
|
|
2511
2459
|
if (this.isUserSignedIn) {
|
|
@@ -2517,29 +2465,17 @@ class BuyAccessButtonComponent {
|
|
|
2517
2465
|
}
|
|
2518
2466
|
//Events
|
|
2519
2467
|
onBuyAccess() {
|
|
2520
|
-
/*
|
|
2521
|
-
const text = `Requested plan: ${this.plantitle} `;
|
|
2522
|
-
const that = this;
|
|
2523
|
-
|
|
2524
|
-
Alerts.areYouSure(text, 'Buying access', 'Confirm change', 'Cancel', () => {
|
|
2525
|
-
that.api.buyAccess(that.plan, () => {
|
|
2526
|
-
Alerts.success('Access Granted', null, null,() => {
|
|
2527
|
-
(window as any).location.reload();
|
|
2528
|
-
});
|
|
2529
|
-
});
|
|
2530
|
-
});
|
|
2531
|
-
*/
|
|
2532
2468
|
this.buy.emit(this.plan);
|
|
2533
2469
|
}
|
|
2534
2470
|
}
|
|
2535
2471
|
BuyAccessButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: BuyAccessButtonComponent, deps: [{ token: AppContextService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2536
|
-
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"] }] });
|
|
2537
2473
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: BuyAccessButtonComponent, decorators: [{
|
|
2538
2474
|
type: Component,
|
|
2539
|
-
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" }]
|
|
2540
2476
|
}], ctorParameters: function () { return [{ type: AppContextService }]; }, propDecorators: { plan: [{
|
|
2541
2477
|
type: Input
|
|
2542
|
-
}],
|
|
2478
|
+
}], planTitle: [{
|
|
2543
2479
|
type: Input
|
|
2544
2480
|
}], visibleIfUserSignedIn: [{
|
|
2545
2481
|
type: Input
|
|
@@ -2547,50 +2483,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
2547
2483
|
type: Output
|
|
2548
2484
|
}] } });
|
|
2549
2485
|
|
|
2550
|
-
/*
|
|
2551
|
-
<file>
|
|
2552
|
-
Project:
|
|
2553
|
-
@osovitny/anatoly
|
|
2554
|
-
|
|
2555
|
-
Authors:
|
|
2556
|
-
Vadim Osovitny
|
|
2557
|
-
Anatoly Osovitny
|
|
2558
|
-
|
|
2559
|
-
Created:
|
|
2560
|
-
12 Nov 2017
|
|
2561
|
-
|
|
2562
|
-
Copyright (c) 2016-2022 Osovitny Inc. All rights reserved.
|
|
2563
|
-
</file>
|
|
2564
|
-
*/
|
|
2565
|
-
class UpgradePlanButtonComponent {
|
|
2566
|
-
constructor(api) {
|
|
2567
|
-
this.api = api;
|
|
2568
|
-
}
|
|
2569
|
-
onUpgradePlan() {
|
|
2570
|
-
const text = `Current plan: ${this.currentplantitle} New plan: ${this.requestedplantitle}`;
|
|
2571
|
-
const that = this;
|
|
2572
|
-
Alerts.areYouSure(text, 'Change billing plan', 'Confirm change', 'Cancel', () => {
|
|
2573
|
-
that.api.requestNewSubscription(that.requestedplan, () => {
|
|
2574
|
-
Alerts.success('Your request for changing plan has been sent.', null, null, () => {
|
|
2575
|
-
window.location.reload();
|
|
2576
|
-
});
|
|
2577
|
-
});
|
|
2578
|
-
});
|
|
2579
|
-
}
|
|
2580
|
-
}
|
|
2581
|
-
UpgradePlanButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: UpgradePlanButtonComponent, deps: [{ token: BillingApiService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2582
|
-
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" });
|
|
2583
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: UpgradePlanButtonComponent, decorators: [{
|
|
2584
|
-
type: Component,
|
|
2585
|
-
args: [{ selector: 'anatoly-upgrade-plan-button', template: "<button class=\"btn btn-block btn-primary\" (click)=\"onUpgradePlan()\">\r\n Upgrade\r\n</button>\r\n" }]
|
|
2586
|
-
}], ctorParameters: function () { return [{ type: BillingApiService }]; }, propDecorators: { currentplantitle: [{
|
|
2587
|
-
type: Input
|
|
2588
|
-
}], requestedplan: [{
|
|
2589
|
-
type: Input
|
|
2590
|
-
}], requestedplantitle: [{
|
|
2591
|
-
type: Input
|
|
2592
|
-
}] } });
|
|
2593
|
-
|
|
2594
2486
|
/*
|
|
2595
2487
|
<file>
|
|
2596
2488
|
Project:
|
|
@@ -2607,22 +2499,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
2607
2499
|
</file>
|
|
2608
2500
|
*/
|
|
2609
2501
|
class SubscribePlanButtonComponent {
|
|
2610
|
-
constructor(
|
|
2611
|
-
this.
|
|
2502
|
+
constructor(appContext) {
|
|
2503
|
+
this.appContext = appContext;
|
|
2612
2504
|
this.contextUpdated = false;
|
|
2613
2505
|
this.isUserSignedIn = false;
|
|
2614
|
-
this.currentPlan =
|
|
2506
|
+
this.currentPlan = -1;
|
|
2615
2507
|
this.currentPlanTitle = "";
|
|
2616
|
-
this.requestedPlan =
|
|
2508
|
+
this.requestedPlan = -1;
|
|
2617
2509
|
this.requestedPlanTitle = "";
|
|
2618
2510
|
this.visibleIfUserSignedIn = false;
|
|
2511
|
+
this.subscribe = new EventEmitter();
|
|
2619
2512
|
}
|
|
2620
2513
|
ngOnInit() {
|
|
2621
|
-
|
|
2622
|
-
this.contextUpdated = true;
|
|
2623
|
-
return;
|
|
2624
|
-
}
|
|
2625
|
-
this.appcontext.getCurrent((current) => {
|
|
2514
|
+
this.appContext.getCurrent((current) => {
|
|
2626
2515
|
this.isUserSignedIn = current.isUserSignedIn;
|
|
2627
2516
|
if (this.isUserSignedIn) {
|
|
2628
2517
|
this.currentPlan = current.account.billingPlan;
|
|
@@ -2633,18 +2522,24 @@ class SubscribePlanButtonComponent {
|
|
|
2633
2522
|
this.contextUpdated = true;
|
|
2634
2523
|
});
|
|
2635
2524
|
}
|
|
2525
|
+
//Events
|
|
2526
|
+
onSubscribe() {
|
|
2527
|
+
this.subscribe.emit(this.plan);
|
|
2528
|
+
}
|
|
2636
2529
|
}
|
|
2637
2530
|
SubscribePlanButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: SubscribePlanButtonComponent, deps: [{ token: AppContextService }], target: i0.ɵɵFactoryTarget.Component });
|
|
2638
|
-
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"] }] });
|
|
2639
2532
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: SubscribePlanButtonComponent, decorators: [{
|
|
2640
2533
|
type: Component,
|
|
2641
|
-
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" }]
|
|
2642
2535
|
}], ctorParameters: function () { return [{ type: AppContextService }]; }, propDecorators: { plan: [{
|
|
2643
2536
|
type: Input
|
|
2644
|
-
}],
|
|
2537
|
+
}], planTitle: [{
|
|
2645
2538
|
type: Input
|
|
2646
2539
|
}], visibleIfUserSignedIn: [{
|
|
2647
2540
|
type: Input
|
|
2541
|
+
}], subscribe: [{
|
|
2542
|
+
type: Output
|
|
2648
2543
|
}] } });
|
|
2649
2544
|
|
|
2650
2545
|
/*
|
|
@@ -4250,7 +4145,6 @@ AnatolyDataModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", versio
|
|
|
4250
4145
|
AnatolyDataModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.6", ngImport: i0, type: AnatolyDataModule, imports: [CommonModule] });
|
|
4251
4146
|
AnatolyDataModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: AnatolyDataModule, providers: [
|
|
4252
4147
|
CoreApiService,
|
|
4253
|
-
BillingApiService,
|
|
4254
4148
|
EmailsApiService
|
|
4255
4149
|
], imports: [CommonModule] });
|
|
4256
4150
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: AnatolyDataModule, decorators: [{
|
|
@@ -4261,7 +4155,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
4261
4155
|
],
|
|
4262
4156
|
providers: [
|
|
4263
4157
|
CoreApiService,
|
|
4264
|
-
BillingApiService,
|
|
4265
4158
|
EmailsApiService
|
|
4266
4159
|
]
|
|
4267
4160
|
}]
|
|
@@ -4290,12 +4183,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
4290
4183
|
*/
|
|
4291
4184
|
const FroalaEditorModuleWithProviders = FroalaEditorModule.forRoot();
|
|
4292
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
|
+
];
|
|
4293
4222
|
class AnatolyUIModule {
|
|
4294
4223
|
}
|
|
4295
4224
|
AnatolyUIModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: AnatolyUIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4296
|
-
AnatolyUIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.6", ngImport: i0, type: AnatolyUIModule, declarations: [
|
|
4297
|
-
|
|
4298
|
-
BuyAccessButtonComponent,
|
|
4225
|
+
AnatolyUIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.6", ngImport: i0, type: AnatolyUIModule, declarations: [BuyAccessButtonComponent,
|
|
4226
|
+
SubscribePlanButtonComponent,
|
|
4299
4227
|
SignInButtonComponent,
|
|
4300
4228
|
SignUpButtonComponent,
|
|
4301
4229
|
SignOutButtonComponent,
|
|
@@ -4332,9 +4260,8 @@ AnatolyUIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version
|
|
|
4332
4260
|
CommonModule,
|
|
4333
4261
|
ReactiveFormsModule,
|
|
4334
4262
|
FormsModule,
|
|
4335
|
-
NgxCaptchaModule, i1$7.FroalaEditorModule, i1$7.FroalaViewModule], exports: [
|
|
4336
|
-
|
|
4337
|
-
BuyAccessButtonComponent,
|
|
4263
|
+
NgxCaptchaModule, i1$7.FroalaEditorModule, i1$7.FroalaViewModule], exports: [BuyAccessButtonComponent,
|
|
4264
|
+
SubscribePlanButtonComponent,
|
|
4338
4265
|
SignInButtonComponent,
|
|
4339
4266
|
SignUpButtonComponent,
|
|
4340
4267
|
SignOutButtonComponent,
|
|
@@ -4389,78 +4316,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
4389
4316
|
FroalaViewModuleWithProviders,
|
|
4390
4317
|
],
|
|
4391
4318
|
exports: [
|
|
4392
|
-
|
|
4393
|
-
UpgradePlanButtonComponent,
|
|
4394
|
-
BuyAccessButtonComponent,
|
|
4395
|
-
SignInButtonComponent,
|
|
4396
|
-
SignUpButtonComponent,
|
|
4397
|
-
SignOutButtonComponent,
|
|
4398
|
-
NodataComponent,
|
|
4399
|
-
//Spinners
|
|
4400
|
-
PageSpinnerComponent,
|
|
4401
|
-
LoadingComponent,
|
|
4402
|
-
//Cards
|
|
4403
|
-
CardComponent,
|
|
4404
|
-
CardHeaderComponent,
|
|
4405
|
-
CardBodyComponent,
|
|
4406
|
-
CardFooterComponent,
|
|
4407
|
-
//HtmlEditor
|
|
4408
|
-
HtmlEditorComponent,
|
|
4409
|
-
FormsHtmlEditorComponent,
|
|
4410
|
-
//Directives
|
|
4411
|
-
NativeElementDirective,
|
|
4412
|
-
//Forms
|
|
4413
|
-
AddressComponent,
|
|
4414
|
-
CompanyComponent,
|
|
4415
|
-
UrlSlugComponent,
|
|
4416
|
-
TimezoneDropdownlist,
|
|
4417
|
-
ContactUsForm,
|
|
4418
|
-
//Dialogs
|
|
4419
|
-
ContactUsDialog,
|
|
4420
|
-
//Pipes
|
|
4421
|
-
SafeHtmlPipe,
|
|
4422
|
-
ReplaceTextPipe,
|
|
4423
|
-
FileSizePipe,
|
|
4424
|
-
//Validation
|
|
4425
|
-
FormValidationSummaryComponent,
|
|
4426
|
-
ItemValidationSummaryComponent,
|
|
4319
|
+
...COMPONENTS
|
|
4427
4320
|
],
|
|
4428
4321
|
declarations: [
|
|
4429
|
-
|
|
4430
|
-
UpgradePlanButtonComponent,
|
|
4431
|
-
BuyAccessButtonComponent,
|
|
4432
|
-
SignInButtonComponent,
|
|
4433
|
-
SignUpButtonComponent,
|
|
4434
|
-
SignOutButtonComponent,
|
|
4435
|
-
NodataComponent,
|
|
4436
|
-
//Spinners
|
|
4437
|
-
PageSpinnerComponent,
|
|
4438
|
-
LoadingComponent,
|
|
4439
|
-
//Cards
|
|
4440
|
-
CardComponent,
|
|
4441
|
-
CardHeaderComponent,
|
|
4442
|
-
CardBodyComponent,
|
|
4443
|
-
CardFooterComponent,
|
|
4444
|
-
//HtmlEditor
|
|
4445
|
-
HtmlEditorComponent,
|
|
4446
|
-
FormsHtmlEditorComponent,
|
|
4447
|
-
//Directives
|
|
4448
|
-
NativeElementDirective,
|
|
4449
|
-
//Forms
|
|
4450
|
-
AddressComponent,
|
|
4451
|
-
CompanyComponent,
|
|
4452
|
-
UrlSlugComponent,
|
|
4453
|
-
TimezoneDropdownlist,
|
|
4454
|
-
ContactUsForm,
|
|
4455
|
-
//Dialogs
|
|
4456
|
-
ContactUsDialog,
|
|
4457
|
-
//Pipes
|
|
4458
|
-
SafeHtmlPipe,
|
|
4459
|
-
ReplaceTextPipe,
|
|
4460
|
-
FileSizePipe,
|
|
4461
|
-
//Validation
|
|
4462
|
-
FormValidationSummaryComponent,
|
|
4463
|
-
ItemValidationSummaryComponent,
|
|
4322
|
+
...COMPONENTS
|
|
4464
4323
|
]
|
|
4465
4324
|
}]
|
|
4466
4325
|
}] });
|
|
@@ -4473,5 +4332,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
|
|
|
4473
4332
|
* Generated bundle index. Do not edit.
|
|
4474
4333
|
*/
|
|
4475
4334
|
|
|
4476
|
-
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 };
|
|
4477
4336
|
//# sourceMappingURL=osovitny-anatoly.mjs.map
|