@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.
@@ -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:
@@ -2508,16 +2460,12 @@ class BuyAccessButtonComponent {
2508
2460
  this.appContext = appContext;
2509
2461
  this.contextUpdated = false;
2510
2462
  this.isUserSignedIn = false;
2511
- this.currentPlan = 0;
2463
+ this.currentPlan = -1;
2512
2464
  this.currentPlanTitle = '';
2513
2465
  this.visibleIfUserSignedIn = false;
2514
2466
  this.buy = new EventEmitter();
2515
2467
  }
2516
2468
  ngOnInit() {
2517
- if (!this.appContext.isUserSignedIn()) {
2518
- this.contextUpdated = true;
2519
- return;
2520
- }
2521
2469
  this.appContext.getCurrent((current) => {
2522
2470
  this.isUserSignedIn = current.isUserSignedIn;
2523
2471
  if (this.isUserSignedIn) {
@@ -2529,29 +2477,17 @@ class BuyAccessButtonComponent {
2529
2477
  }
2530
2478
  //Events
2531
2479
  onBuyAccess() {
2532
- /*
2533
- const text = `Requested plan: ${this.plantitle} `;
2534
- const that = this;
2535
-
2536
- Alerts.areYouSure(text, 'Buying access', 'Confirm change', 'Cancel', () => {
2537
- that.api.buyAccess(that.plan, () => {
2538
- Alerts.success('Access Granted', null, null,() => {
2539
- (window as any).location.reload();
2540
- });
2541
- });
2542
- });
2543
- */
2544
2480
  this.buy.emit(this.plan);
2545
2481
  }
2546
2482
  }
2547
2483
  BuyAccessButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: BuyAccessButtonComponent, deps: [{ token: AppContextService }], target: i0.ɵɵFactoryTarget.Component });
2548
- 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"] }] });
2549
2485
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: BuyAccessButtonComponent, decorators: [{
2550
2486
  type: Component,
2551
- 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" }]
2552
2488
  }], ctorParameters: function () { return [{ type: AppContextService }]; }, propDecorators: { plan: [{
2553
2489
  type: Input
2554
- }], plantitle: [{
2490
+ }], planTitle: [{
2555
2491
  type: Input
2556
2492
  }], visibleIfUserSignedIn: [{
2557
2493
  type: Input
@@ -2559,50 +2495,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
2559
2495
  type: Output
2560
2496
  }] } });
2561
2497
 
2562
- /*
2563
- <file>
2564
- Project:
2565
- @osovitny/anatoly
2566
-
2567
- Authors:
2568
- Vadim Osovitny
2569
- Anatoly Osovitny
2570
-
2571
- Created:
2572
- 12 Nov 2017
2573
-
2574
- Copyright (c) 2016-2022 Osovitny Inc. All rights reserved.
2575
- </file>
2576
- */
2577
- class UpgradePlanButtonComponent {
2578
- constructor(api) {
2579
- this.api = api;
2580
- }
2581
- onUpgradePlan() {
2582
- const text = `Current plan: ${this.currentplantitle} New plan: ${this.requestedplantitle}`;
2583
- const that = this;
2584
- Alerts.areYouSure(text, 'Change billing plan', 'Confirm change', 'Cancel', () => {
2585
- that.api.requestNewSubscription(that.requestedplan, () => {
2586
- Alerts.success('Your request for changing plan has been sent.', null, null, () => {
2587
- window.location.reload();
2588
- });
2589
- });
2590
- });
2591
- }
2592
- }
2593
- UpgradePlanButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: UpgradePlanButtonComponent, deps: [{ token: BillingApiService }], target: i0.ɵɵFactoryTarget.Component });
2594
- 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" });
2595
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: UpgradePlanButtonComponent, decorators: [{
2596
- type: Component,
2597
- args: [{ selector: 'anatoly-upgrade-plan-button', template: "<button class=\"btn btn-block btn-primary\" (click)=\"onUpgradePlan()\">\r\n Upgrade\r\n</button>\r\n" }]
2598
- }], ctorParameters: function () { return [{ type: BillingApiService }]; }, propDecorators: { currentplantitle: [{
2599
- type: Input
2600
- }], requestedplan: [{
2601
- type: Input
2602
- }], requestedplantitle: [{
2603
- type: Input
2604
- }] } });
2605
-
2606
2498
  /*
2607
2499
  <file>
2608
2500
  Project:
@@ -2619,22 +2511,19 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
2619
2511
  </file>
2620
2512
  */
2621
2513
  class SubscribePlanButtonComponent {
2622
- constructor(appcontext) {
2623
- this.appcontext = appcontext;
2514
+ constructor(appContext) {
2515
+ this.appContext = appContext;
2624
2516
  this.contextUpdated = false;
2625
2517
  this.isUserSignedIn = false;
2626
- this.currentPlan = 0;
2518
+ this.currentPlan = -1;
2627
2519
  this.currentPlanTitle = "";
2628
- this.requestedPlan = 0;
2520
+ this.requestedPlan = -1;
2629
2521
  this.requestedPlanTitle = "";
2630
2522
  this.visibleIfUserSignedIn = false;
2523
+ this.subscribe = new EventEmitter();
2631
2524
  }
2632
2525
  ngOnInit() {
2633
- if (!this.appcontext.isUserSignedIn()) {
2634
- this.contextUpdated = true;
2635
- return;
2636
- }
2637
- this.appcontext.getCurrent((current) => {
2526
+ this.appContext.getCurrent((current) => {
2638
2527
  this.isUserSignedIn = current.isUserSignedIn;
2639
2528
  if (this.isUserSignedIn) {
2640
2529
  this.currentPlan = current.account.billingPlan;
@@ -2645,18 +2534,24 @@ class SubscribePlanButtonComponent {
2645
2534
  this.contextUpdated = true;
2646
2535
  });
2647
2536
  }
2537
+ //Events
2538
+ onSubscribe() {
2539
+ this.subscribe.emit(this.plan);
2540
+ }
2648
2541
  }
2649
2542
  SubscribePlanButtonComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: SubscribePlanButtonComponent, deps: [{ token: AppContextService }], target: i0.ɵɵFactoryTarget.Component });
2650
- 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"] }] });
2651
2544
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: SubscribePlanButtonComponent, decorators: [{
2652
2545
  type: Component,
2653
- 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" }]
2654
2547
  }], ctorParameters: function () { return [{ type: AppContextService }]; }, propDecorators: { plan: [{
2655
2548
  type: Input
2656
- }], plantitle: [{
2549
+ }], planTitle: [{
2657
2550
  type: Input
2658
2551
  }], visibleIfUserSignedIn: [{
2659
2552
  type: Input
2553
+ }], subscribe: [{
2554
+ type: Output
2660
2555
  }] } });
2661
2556
 
2662
2557
  /*
@@ -4255,7 +4150,6 @@ AnatolyDataModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", versio
4255
4150
  AnatolyDataModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.6", ngImport: i0, type: AnatolyDataModule, imports: [CommonModule] });
4256
4151
  AnatolyDataModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: AnatolyDataModule, providers: [
4257
4152
  CoreApiService,
4258
- BillingApiService,
4259
4153
  EmailsApiService
4260
4154
  ], imports: [CommonModule] });
4261
4155
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: AnatolyDataModule, decorators: [{
@@ -4266,7 +4160,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
4266
4160
  ],
4267
4161
  providers: [
4268
4162
  CoreApiService,
4269
- BillingApiService,
4270
4163
  EmailsApiService
4271
4164
  ]
4272
4165
  }]
@@ -4293,12 +4186,47 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
4293
4186
  */
4294
4187
  const FroalaEditorModuleWithProviders = FroalaEditorModule.forRoot();
4295
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
+ ];
4296
4225
  class AnatolyUIModule {
4297
4226
  }
4298
4227
  AnatolyUIModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.6", ngImport: i0, type: AnatolyUIModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
4299
- AnatolyUIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.6", ngImport: i0, type: AnatolyUIModule, declarations: [SubscribePlanButtonComponent,
4300
- UpgradePlanButtonComponent,
4301
- BuyAccessButtonComponent,
4228
+ AnatolyUIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.0.6", ngImport: i0, type: AnatolyUIModule, declarations: [BuyAccessButtonComponent,
4229
+ SubscribePlanButtonComponent,
4302
4230
  SignInButtonComponent,
4303
4231
  SignUpButtonComponent,
4304
4232
  SignOutButtonComponent,
@@ -4335,9 +4263,8 @@ AnatolyUIModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version
4335
4263
  CommonModule,
4336
4264
  ReactiveFormsModule,
4337
4265
  FormsModule,
4338
- NgxCaptchaModule, i1$7.FroalaEditorModule, i1$7.FroalaViewModule], exports: [SubscribePlanButtonComponent,
4339
- UpgradePlanButtonComponent,
4340
- BuyAccessButtonComponent,
4266
+ NgxCaptchaModule, i1$7.FroalaEditorModule, i1$7.FroalaViewModule], exports: [BuyAccessButtonComponent,
4267
+ SubscribePlanButtonComponent,
4341
4268
  SignInButtonComponent,
4342
4269
  SignUpButtonComponent,
4343
4270
  SignOutButtonComponent,
@@ -4392,78 +4319,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
4392
4319
  FroalaViewModuleWithProviders,
4393
4320
  ],
4394
4321
  exports: [
4395
- SubscribePlanButtonComponent,
4396
- UpgradePlanButtonComponent,
4397
- BuyAccessButtonComponent,
4398
- SignInButtonComponent,
4399
- SignUpButtonComponent,
4400
- SignOutButtonComponent,
4401
- NodataComponent,
4402
- //Spinners
4403
- PageSpinnerComponent,
4404
- LoadingComponent,
4405
- //Cards
4406
- CardComponent,
4407
- CardHeaderComponent,
4408
- CardBodyComponent,
4409
- CardFooterComponent,
4410
- //HtmlEditor
4411
- HtmlEditorComponent,
4412
- FormsHtmlEditorComponent,
4413
- //Directives
4414
- NativeElementDirective,
4415
- //Forms
4416
- AddressComponent,
4417
- CompanyComponent,
4418
- UrlSlugComponent,
4419
- TimezoneDropdownlist,
4420
- ContactUsForm,
4421
- //Dialogs
4422
- ContactUsDialog,
4423
- //Pipes
4424
- SafeHtmlPipe,
4425
- ReplaceTextPipe,
4426
- FileSizePipe,
4427
- //Validation
4428
- FormValidationSummaryComponent,
4429
- ItemValidationSummaryComponent,
4322
+ ...COMPONENTS
4430
4323
  ],
4431
4324
  declarations: [
4432
- SubscribePlanButtonComponent,
4433
- UpgradePlanButtonComponent,
4434
- BuyAccessButtonComponent,
4435
- SignInButtonComponent,
4436
- SignUpButtonComponent,
4437
- SignOutButtonComponent,
4438
- NodataComponent,
4439
- //Spinners
4440
- PageSpinnerComponent,
4441
- LoadingComponent,
4442
- //Cards
4443
- CardComponent,
4444
- CardHeaderComponent,
4445
- CardBodyComponent,
4446
- CardFooterComponent,
4447
- //HtmlEditor
4448
- HtmlEditorComponent,
4449
- FormsHtmlEditorComponent,
4450
- //Directives
4451
- NativeElementDirective,
4452
- //Forms
4453
- AddressComponent,
4454
- CompanyComponent,
4455
- UrlSlugComponent,
4456
- TimezoneDropdownlist,
4457
- ContactUsForm,
4458
- //Dialogs
4459
- ContactUsDialog,
4460
- //Pipes
4461
- SafeHtmlPipe,
4462
- ReplaceTextPipe,
4463
- FileSizePipe,
4464
- //Validation
4465
- FormValidationSummaryComponent,
4466
- ItemValidationSummaryComponent,
4325
+ ...COMPONENTS
4467
4326
  ]
4468
4327
  }]
4469
4328
  }] });
@@ -4476,5 +4335,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.6", ngImpor
4476
4335
  * Generated bundle index. Do not edit.
4477
4336
  */
4478
4337
 
4479
- 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 };
4480
4339
  //# sourceMappingURL=osovitny-anatoly.mjs.map