@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.
@@ -2070,8 +2070,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
2070
2070
  const Consts = {
2071
2071
  //core
2072
2072
  coreApiPath: 'api/core',
2073
- //billing
2074
- billingApiPath: 'api/billing',
2075
2073
  //emails
2076
2074
  emailsApiPath: 'api/emails',
2077
2075
  //notifications
@@ -2112,52 +2110,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
2112
2110
  }]
2113
2111
  }], ctorParameters: function () { return [{ type: i1$3.HttpClient }]; } });
2114
2112
 
2115
- /*
2116
- <file>
2117
- Project:
2118
- @osovitny/anatoly
2119
-
2120
- Authors:
2121
- Vadim Osovitny
2122
- Anatoly Osovitny
2123
-
2124
- Created:
2125
- 12 Nov 2017
2126
-
2127
- Copyright (c) 2016-2022 Osovitny Inc. All rights reserved.
2128
- </file>
2129
- */
2130
- class BillingApiService extends BaseApiService {
2131
- constructor(http) {
2132
- super(http);
2133
- this.http = http;
2134
- this.baseUrl = Consts.billingApiPath;
2135
- }
2136
- requestNewSubscription(requestedPlan, success, error) {
2137
- this.postQS("requestNewSubscription", { requestedPlan: requestedPlan }).subscribe((data) => {
2138
- if (success)
2139
- success();
2140
- }, (e) => {
2141
- if (error)
2142
- error();
2143
- });
2144
- }
2145
- cancelRequestedSubscription(success, error) {
2146
- this.postQS("cancelRequestedSubscription", null).subscribe((data) => {
2147
- if (success)
2148
- success();
2149
- }, (e) => {
2150
- if (error)
2151
- error();
2152
- });
2153
- }
2154
- }
2155
- 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 });
2156
- BillingApiService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: BillingApiService });
2157
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: BillingApiService, decorators: [{
2158
- type: Injectable
2159
- }], ctorParameters: function () { return [{ type: i1$3.HttpClient }]; } });
2160
-
2161
2113
  /*
2162
2114
  <file>
2163
2115
  Project:
@@ -2266,6 +2218,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
2266
2218
  class BaseComponent {
2267
2219
  constructor() {
2268
2220
  this.subs = new Subs();
2221
+ //Component Data => usually loading from API
2222
+ this.dataLoading = true;
2223
+ this.dataLoaded = false;
2224
+ this.dataFound = false;
2269
2225
  }
2270
2226
  getQSId() {
2271
2227
  let id = Utils.getValueByNameInQS("id");
@@ -2504,16 +2460,12 @@ class BuyAccessButtonComponent {
2504
2460
  this.appContext = appContext;
2505
2461
  this.contextUpdated = false;
2506
2462
  this.isUserSignedIn = false;
2507
- this.currentPlan = 0;
2463
+ this.currentPlan = -1;
2508
2464
  this.currentPlanTitle = '';
2509
2465
  this.visibleIfUserSignedIn = false;
2510
2466
  this.buy = new EventEmitter();
2511
2467
  }
2512
2468
  ngOnInit() {
2513
- if (!this.appContext.isUserSignedIn()) {
2514
- this.contextUpdated = true;
2515
- return;
2516
- }
2517
2469
  this.appContext.getCurrent((current) => {
2518
2470
  this.isUserSignedIn = current.isUserSignedIn;
2519
2471
  if (this.isUserSignedIn) {
@@ -2525,29 +2477,17 @@ class BuyAccessButtonComponent {
2525
2477
  }
2526
2478
  //Events
2527
2479
  onBuyAccess() {
2528
- /*
2529
- const text = `Requested plan: ${this.plantitle} `;
2530
- const that = this;
2531
-
2532
- Alerts.areYouSure(text, 'Buying access', 'Confirm change', 'Cancel', () => {
2533
- that.api.buyAccess(that.plan, () => {
2534
- Alerts.success('Access Granted', null, null,() => {
2535
- (window as any).location.reload();
2536
- });
2537
- });
2538
- });
2539
- */
2540
2480
  this.buy.emit(this.plan);
2541
2481
  }
2542
2482
  }
2543
2483
  BuyAccessButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: BuyAccessButtonComponent, deps: [{ token: AppContextService }], target: i0.ɵɵFactoryTarget.Component });
2544
- 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\" *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"] }] });
2484
+ 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"] }] });
2545
2485
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: BuyAccessButtonComponent, decorators: [{
2546
2486
  type: Component,
2547
- 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" }]
2487
+ 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" }]
2548
2488
  }], ctorParameters: function () { return [{ type: AppContextService }]; }, propDecorators: { plan: [{
2549
2489
  type: Input
2550
- }], plantitle: [{
2490
+ }], planTitle: [{
2551
2491
  type: Input
2552
2492
  }], visibleIfUserSignedIn: [{
2553
2493
  type: Input
@@ -2555,50 +2495,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
2555
2495
  type: Output
2556
2496
  }] } });
2557
2497
 
2558
- /*
2559
- <file>
2560
- Project:
2561
- @osovitny/anatoly
2562
-
2563
- Authors:
2564
- Vadim Osovitny
2565
- Anatoly Osovitny
2566
-
2567
- Created:
2568
- 12 Nov 2017
2569
-
2570
- Copyright (c) 2016-2022 Osovitny Inc. All rights reserved.
2571
- </file>
2572
- */
2573
- class UpgradePlanButtonComponent {
2574
- constructor(api) {
2575
- this.api = api;
2576
- }
2577
- onUpgradePlan() {
2578
- const text = `Current plan: ${this.currentplantitle} New plan: ${this.requestedplantitle}`;
2579
- const that = this;
2580
- Alerts.areYouSure(text, 'Change billing plan', 'Confirm change', 'Cancel', () => {
2581
- that.api.requestNewSubscription(that.requestedplan, () => {
2582
- Alerts.success('Your request for changing plan has been sent.', null, null, () => {
2583
- window.location.reload();
2584
- });
2585
- });
2586
- });
2587
- }
2588
- }
2589
- UpgradePlanButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: UpgradePlanButtonComponent, deps: [{ token: BillingApiService }], target: i0.ɵɵFactoryTarget.Component });
2590
- 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" });
2591
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: UpgradePlanButtonComponent, decorators: [{
2592
- type: Component,
2593
- args: [{ selector: 'anatoly-upgrade-plan-button', template: "<button class=\"btn btn-block btn-primary\" (click)=\"onUpgradePlan()\">\r\n Upgrade\r\n</button>\r\n" }]
2594
- }], ctorParameters: function () { return [{ type: BillingApiService }]; }, propDecorators: { currentplantitle: [{
2595
- type: Input
2596
- }], requestedplan: [{
2597
- type: Input
2598
- }], requestedplantitle: [{
2599
- type: Input
2600
- }] } });
2601
-
2602
2498
  /*
2603
2499
  <file>
2604
2500
  Project:
@@ -2615,22 +2511,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
2615
2511
  </file>
2616
2512
  */
2617
2513
  class SubscribePlanButtonComponent {
2618
- constructor(appcontext) {
2619
- this.appcontext = appcontext;
2514
+ constructor(appContext) {
2515
+ this.appContext = appContext;
2620
2516
  this.contextUpdated = false;
2621
2517
  this.isUserSignedIn = false;
2622
- this.currentPlan = 0;
2518
+ this.currentPlan = -1;
2623
2519
  this.currentPlanTitle = "";
2624
- this.requestedPlan = 0;
2520
+ this.requestedPlan = -1;
2625
2521
  this.requestedPlanTitle = "";
2626
2522
  this.visibleIfUserSignedIn = false;
2523
+ this.subscribe = new EventEmitter();
2627
2524
  }
2628
2525
  ngOnInit() {
2629
- if (!this.appcontext.isUserSignedIn()) {
2630
- this.contextUpdated = true;
2631
- return;
2632
- }
2633
- this.appcontext.getCurrent((current) => {
2526
+ this.appContext.getCurrent((current) => {
2634
2527
  this.isUserSignedIn = current.isUserSignedIn;
2635
2528
  if (this.isUserSignedIn) {
2636
2529
  this.currentPlan = current.account.billingPlan;
@@ -2641,18 +2534,24 @@ class SubscribePlanButtonComponent {
2641
2534
  this.contextUpdated = true;
2642
2535
  });
2643
2536
  }
2537
+ //Events
2538
+ onSubscribe() {
2539
+ this.subscribe.emit(this.plan);
2540
+ }
2644
2541
  }
2645
2542
  SubscribePlanButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: SubscribePlanButtonComponent, deps: [{ token: AppContextService }], target: i0.ɵɵFactoryTarget.Component });
2646
- 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" }, 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\" *ngIf=\"plan == currentPlan\">\r\n Your Plan\r\n </button>\r\n\r\n <button class=\"btn btn-block btn-warning selectPlan\" *ngIf=\"requestedPlan != null && requestedPlan != 0 && plan == requestedPlan\">\r\n Requested\r\n </button>\r\n\r\n <anatoly-upgrade-plan-button *ngIf=\"plan != currentPlan && plan != requestedPlan\"\r\n [currentplantitle]=\"currentPlanTitle\"\r\n [requestedplan]=plan\r\n [requestedplantitle]=\"plantitle\">\r\n </anatoly-upgrade-plan-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: UpgradePlanButtonComponent, selector: "anatoly-upgrade-plan-button", inputs: ["currentplantitle", "requestedplan", "requestedplantitle"] }, { kind: "component", type: SignUpButtonComponent, selector: "anatoly-signup-button", inputs: ["classbtn"] }] });
2543
+ 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"] }] });
2647
2544
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: SubscribePlanButtonComponent, decorators: [{
2648
2545
  type: Component,
2649
- 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=\"requestedPlan != null && requestedPlan != 0 && plan == requestedPlan\">\r\n Requested\r\n </button>\r\n\r\n <anatoly-upgrade-plan-button *ngIf=\"plan != currentPlan && plan != requestedPlan\"\r\n [currentplantitle]=\"currentPlanTitle\"\r\n [requestedplan]=plan\r\n [requestedplantitle]=\"plantitle\">\r\n </anatoly-upgrade-plan-button>\r\n </div>\r\n</div>\r\n" }]
2546
+ 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" }]
2650
2547
  }], ctorParameters: function () { return [{ type: AppContextService }]; }, propDecorators: { plan: [{
2651
2548
  type: Input
2652
- }], plantitle: [{
2549
+ }], planTitle: [{
2653
2550
  type: Input
2654
2551
  }], visibleIfUserSignedIn: [{
2655
2552
  type: Input
2553
+ }], subscribe: [{
2554
+ type: Output
2656
2555
  }] } });
2657
2556
 
2658
2557
  /*
@@ -4251,7 +4150,6 @@ AnatolyDataModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", versio
4251
4150
  AnatolyDataModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.6", ngImport: i0, type: AnatolyDataModule, imports: [CommonModule] });
4252
4151
  AnatolyDataModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: AnatolyDataModule, providers: [
4253
4152
  CoreApiService,
4254
- BillingApiService,
4255
4153
  EmailsApiService
4256
4154
  ], imports: [CommonModule] });
4257
4155
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: AnatolyDataModule, decorators: [{
@@ -4262,7 +4160,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
4262
4160
  ],
4263
4161
  providers: [
4264
4162
  CoreApiService,
4265
- BillingApiService,
4266
4163
  EmailsApiService
4267
4164
  ]
4268
4165
  }]
@@ -4289,12 +4186,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
4289
4186
  */
4290
4187
  const FroalaEditorModuleWithProviders = FroalaEditorModule.forRoot();
4291
4188
  const FroalaViewModuleWithProviders = FroalaViewModule.forRoot();
4189
+ const COMPONENTS = [
4190
+ BuyAccessButtonComponent,
4191
+ SubscribePlanButtonComponent,
4192
+ SignInButtonComponent,
4193
+ SignUpButtonComponent,
4194
+ SignOutButtonComponent,
4195
+ NodataComponent,
4196
+ //Spinners
4197
+ PageSpinnerComponent,
4198
+ LoadingComponent,
4199
+ //Cards
4200
+ CardComponent,
4201
+ CardHeaderComponent,
4202
+ CardBodyComponent,
4203
+ CardFooterComponent,
4204
+ //HtmlEditor
4205
+ HtmlEditorComponent,
4206
+ FormsHtmlEditorComponent,
4207
+ //Directives
4208
+ NativeElementDirective,
4209
+ //Forms
4210
+ AddressComponent,
4211
+ CompanyComponent,
4212
+ UrlSlugComponent,
4213
+ TimezoneDropdownlist,
4214
+ ContactUsForm,
4215
+ //Dialogs
4216
+ ContactUsDialog,
4217
+ //Pipes
4218
+ SafeHtmlPipe,
4219
+ ReplaceTextPipe,
4220
+ FileSizePipe,
4221
+ //Validation
4222
+ FormValidationSummaryComponent,
4223
+ ItemValidationSummaryComponent
4224
+ ];
4292
4225
  class AnatolyUIModule {
4293
4226
  }
4294
4227
  AnatolyUIModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: AnatolyUIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
4295
- AnatolyUIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.6", ngImport: i0, type: AnatolyUIModule, declarations: [SubscribePlanButtonComponent,
4296
- UpgradePlanButtonComponent,
4297
- BuyAccessButtonComponent,
4228
+ AnatolyUIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.6", ngImport: i0, type: AnatolyUIModule, declarations: [BuyAccessButtonComponent,
4229
+ SubscribePlanButtonComponent,
4298
4230
  SignInButtonComponent,
4299
4231
  SignUpButtonComponent,
4300
4232
  SignOutButtonComponent,
@@ -4331,9 +4263,8 @@ AnatolyUIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version
4331
4263
  CommonModule,
4332
4264
  ReactiveFormsModule,
4333
4265
  FormsModule,
4334
- NgxCaptchaModule, i1$7.FroalaEditorModule, i1$7.FroalaViewModule], exports: [SubscribePlanButtonComponent,
4335
- UpgradePlanButtonComponent,
4336
- BuyAccessButtonComponent,
4266
+ NgxCaptchaModule, i1$7.FroalaEditorModule, i1$7.FroalaViewModule], exports: [BuyAccessButtonComponent,
4267
+ SubscribePlanButtonComponent,
4337
4268
  SignInButtonComponent,
4338
4269
  SignUpButtonComponent,
4339
4270
  SignOutButtonComponent,
@@ -4388,78 +4319,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
4388
4319
  FroalaViewModuleWithProviders,
4389
4320
  ],
4390
4321
  exports: [
4391
- SubscribePlanButtonComponent,
4392
- UpgradePlanButtonComponent,
4393
- BuyAccessButtonComponent,
4394
- SignInButtonComponent,
4395
- SignUpButtonComponent,
4396
- SignOutButtonComponent,
4397
- NodataComponent,
4398
- //Spinners
4399
- PageSpinnerComponent,
4400
- LoadingComponent,
4401
- //Cards
4402
- CardComponent,
4403
- CardHeaderComponent,
4404
- CardBodyComponent,
4405
- CardFooterComponent,
4406
- //HtmlEditor
4407
- HtmlEditorComponent,
4408
- FormsHtmlEditorComponent,
4409
- //Directives
4410
- NativeElementDirective,
4411
- //Forms
4412
- AddressComponent,
4413
- CompanyComponent,
4414
- UrlSlugComponent,
4415
- TimezoneDropdownlist,
4416
- ContactUsForm,
4417
- //Dialogs
4418
- ContactUsDialog,
4419
- //Pipes
4420
- SafeHtmlPipe,
4421
- ReplaceTextPipe,
4422
- FileSizePipe,
4423
- //Validation
4424
- FormValidationSummaryComponent,
4425
- ItemValidationSummaryComponent,
4322
+ ...COMPONENTS
4426
4323
  ],
4427
4324
  declarations: [
4428
- SubscribePlanButtonComponent,
4429
- UpgradePlanButtonComponent,
4430
- BuyAccessButtonComponent,
4431
- SignInButtonComponent,
4432
- SignUpButtonComponent,
4433
- SignOutButtonComponent,
4434
- NodataComponent,
4435
- //Spinners
4436
- PageSpinnerComponent,
4437
- LoadingComponent,
4438
- //Cards
4439
- CardComponent,
4440
- CardHeaderComponent,
4441
- CardBodyComponent,
4442
- CardFooterComponent,
4443
- //HtmlEditor
4444
- HtmlEditorComponent,
4445
- FormsHtmlEditorComponent,
4446
- //Directives
4447
- NativeElementDirective,
4448
- //Forms
4449
- AddressComponent,
4450
- CompanyComponent,
4451
- UrlSlugComponent,
4452
- TimezoneDropdownlist,
4453
- ContactUsForm,
4454
- //Dialogs
4455
- ContactUsDialog,
4456
- //Pipes
4457
- SafeHtmlPipe,
4458
- ReplaceTextPipe,
4459
- FileSizePipe,
4460
- //Validation
4461
- FormValidationSummaryComponent,
4462
- ItemValidationSummaryComponent,
4325
+ ...COMPONENTS
4463
4326
  ]
4464
4327
  }]
4465
4328
  }] });
@@ -4472,5 +4335,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
4472
4335
  * Generated bundle index. Do not edit.
4473
4336
  */
4474
4337
 
4475
- export { AddressComponent, Alerts, AnatolyCoreModule, AnatolyDataModule, AnatolyHttpInterceptor, AnatolyUIModule, AppContextService, AppCoreSettings, BaseApiService, BaseComponent, BaseDialog, BaseEditComponent, BaseGoService, BaseGridEditService, BaseGridReadService, BaseHtmlEditorComponent, BillingApiService, 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, UpgradePlanButtonComponent, UrlSlugComponent, Urls, Utils, ValidationSummaryComponent, customTranslateLoaderFactory, localizationInitializerFactory, throwIfAlreadyLoaded };
4338
+ 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 };
4476
4339
  //# sourceMappingURL=osovitny-anatoly.mjs.map