@osovitny/anatoly 3.19.17 → 3.19.19

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.
@@ -1,5 +1,5 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Injectable, EventEmitter, Component, Output, Input, Inject, Pipe, provideAppInitializer, inject, NgModule, Directive, ChangeDetectionStrategy, ViewChild, ViewEncapsulation, HostListener, HostBinding, Optional, SkipSelf } from '@angular/core';
2
+ import { Injectable, EventEmitter, Component, Output, Input, Inject, Pipe, provideAppInitializer, inject, NgModule, Directive, ChangeDetectionStrategy, ViewChild, ViewEncapsulation, HostListener, HostBinding } from '@angular/core';
3
3
  import { BehaviorSubject, Subject, filter, takeUntil, map as map$1, catchError, of, merge, forkJoin, timer, fromEvent, firstValueFrom } from 'rxjs';
4
4
  import { map, tap, mergeMap } from 'rxjs/operators';
5
5
  import * as i1 from '@angular/common/http';
@@ -21,11 +21,14 @@ import { TranslateHttpLoader } from '@ngx-translate/http-loader';
21
21
  import Swal from 'sweetalert2';
22
22
  import * as i1$4 from 'ngx-toastr';
23
23
  import { ToastrModule } from 'ngx-toastr';
24
- import * as i1$5 from '@angular/platform-browser';
25
- import * as i2 from '@angular/forms';
24
+ import * as i2 from '@angular/cdk/layout';
25
+ import { Breakpoints } from '@angular/cdk/layout';
26
+ import * as i1$5 from '@angular/cdk/platform';
27
+ import * as i1$6 from '@angular/platform-browser';
28
+ import * as i2$1 from '@angular/forms';
26
29
  import { FormControl, Validators, ReactiveFormsModule, FormsModule } from '@angular/forms';
27
30
  import * as dropin from 'braintree-web-drop-in';
28
- import * as i2$1 from '@progress/kendo-angular-dialog';
31
+ import * as i2$2 from '@progress/kendo-angular-dialog';
29
32
  import { DialogsModule } from '@progress/kendo-angular-dialog';
30
33
  import { loadStripe } from '@stripe/stripe-js';
31
34
  import * as i4$1 from '@progress/kendo-angular-label';
@@ -34,11 +37,11 @@ import * as i3 from '@progress/kendo-angular-dropdowns';
34
37
  import { DropDownsModule } from '@progress/kendo-angular-dropdowns';
35
38
  import * as i3$1 from 'angular-froala-wysiwyg';
36
39
  import { FERootModule } from 'angular-froala-wysiwyg';
37
- import * as i1$6 from '@fortawesome/angular-fontawesome';
40
+ import * as i1$7 from '@fortawesome/angular-fontawesome';
38
41
  import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
39
- import * as i1$7 from '@progress/kendo-angular-pager';
42
+ import * as i1$8 from '@progress/kendo-angular-pager';
40
43
  import { PagerModule } from '@progress/kendo-angular-pager';
41
- import * as i1$8 from 'ngx-captcha';
44
+ import * as i1$9 from 'ngx-captcha';
42
45
  import { NgxCaptchaModule } from 'ngx-captcha';
43
46
  import { faCheckCircle, faCircleXmark, faDatabase, faCopy } from '@fortawesome/free-solid-svg-icons';
44
47
  import { ButtonsModule } from '@progress/kendo-angular-buttons';
@@ -3437,6 +3440,113 @@ class NotificationService {
3437
3440
  args: [{ providedIn: 'root' }]
3438
3441
  }], () => [{ type: i1$4.ToastrService }], null); })();
3439
3442
 
3443
+ class BrowserService {
3444
+ constructor(platform, breakpointObserver) {
3445
+ this.platform = platform;
3446
+ this.breakpointObserver = breakpointObserver;
3447
+ this.isMobileScreen = false;
3448
+ this.isTabletScreen = false;
3449
+ this.isDesktopScreen = false;
3450
+ //Private Streams
3451
+ this._updated = new BehaviorSubject(null);
3452
+ //Public Streams
3453
+ this.updated$ = this._updated.asObservable();
3454
+ this.init();
3455
+ }
3456
+ init() {
3457
+ this.breakpointObserver.observe([Breakpoints.Handset, Breakpoints.Tablet, Breakpoints.Web]).subscribe(result => {
3458
+ this.isMobileScreen = false;
3459
+ this.isTabletScreen = false;
3460
+ this.isDesktopScreen = false;
3461
+ if (this.breakpointObserver.isMatched(Breakpoints.Handset)) {
3462
+ this.isMobileScreen = true;
3463
+ }
3464
+ else if (this.breakpointObserver.isMatched(Breakpoints.Tablet)) {
3465
+ this.isTabletScreen = true;
3466
+ }
3467
+ else {
3468
+ this.isDesktopScreen = true;
3469
+ }
3470
+ this.fireUpdated();
3471
+ });
3472
+ }
3473
+ fireUpdated() {
3474
+ this._updated.next(null);
3475
+ }
3476
+ isIframe() {
3477
+ return window !== window.parent && !window.opener;
3478
+ }
3479
+ isIE() {
3480
+ return this.platform.TRIDENT;
3481
+ }
3482
+ isMobile() {
3483
+ if (!this.platform || !this.platform.isBrowser) {
3484
+ return false;
3485
+ }
3486
+ /*
3487
+ const mobileRegex = new RegExp(
3488
+ "(android|bb\\d+|meego).+mobile|" +
3489
+ "avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|" +
3490
+ "iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|" +
3491
+ "mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|" +
3492
+ "p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|" +
3493
+ "up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino|" +
3494
+ "nokia|samsung|htc|motorola|sonyericsson|iemobile",
3495
+ "i"
3496
+ );
3497
+ const isMobileUserAgent = mobileRegex.test(userAgent);
3498
+ */
3499
+ const userAgent = navigator.userAgent || navigator.vendor;
3500
+ const isIPad = /ipad/i.test(userAgent);
3501
+ return (this.platform.ANDROID && this.isMobileScreen) ||
3502
+ (this.platform.IOS && !isIPad && this.isMobileScreen);
3503
+ }
3504
+ isTablet() {
3505
+ if (!this.platform || !this.platform.isBrowser) {
3506
+ return false;
3507
+ }
3508
+ /*
3509
+ const tabletRegex = new RegExp(
3510
+ "ipad|" +
3511
+ "android(?!.*mobile)|" +
3512
+ "tablet|kindle|playbook|silk|" +
3513
+ "nexus 7|nexus 10|" +
3514
+ "fire|sm-t|tab|gt-p|sch-i|xoom|tf101|" +
3515
+ "kftt|kfot|kfjw|kfsowi|a500|rim\\w",
3516
+ "i"
3517
+ );
3518
+ const isTabletUserAgent = tabletRegex.test(userAgent);
3519
+ */
3520
+ const userAgent = navigator.userAgent || navigator.vendor;
3521
+ const isIPad = /ipad/i.test(userAgent);
3522
+ return (this.platform.ANDROID && this.isTabletScreen) ||
3523
+ (this.platform.IOS && isIPad && this.isTabletScreen);
3524
+ }
3525
+ isDesktopMacOS() {
3526
+ const userAgent = navigator.userAgent || navigator.vendor;
3527
+ const isMac = /macintosh|mac os x/i.test(userAgent);
3528
+ const isIPad = /ipad/i.test(userAgent);
3529
+ return isMac && !isIPad;
3530
+ }
3531
+ isMobileOrTablet() {
3532
+ return this.isMobile() || this.isTablet();
3533
+ }
3534
+ isDesktop() {
3535
+ if (this.isDesktopMacOS()) {
3536
+ return true;
3537
+ }
3538
+ return !this.isMobileOrTablet();
3539
+ }
3540
+ static { this.ɵfac = function BrowserService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || BrowserService)(i0.ɵɵinject(i1$5.Platform), i0.ɵɵinject(i2.BreakpointObserver)); }; }
3541
+ static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: BrowserService, factory: BrowserService.ɵfac, providedIn: 'root' }); }
3542
+ }
3543
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BrowserService, [{
3544
+ type: Injectable,
3545
+ args: [{
3546
+ providedIn: 'root'
3547
+ }]
3548
+ }], () => [{ type: i1$5.Platform }, { type: i2.BreakpointObserver }], null); })();
3549
+
3440
3550
  /*
3441
3551
  <file>
3442
3552
  Project:
@@ -3489,7 +3599,7 @@ class DigitalMarketingService {
3489
3599
  link.setAttribute('rel', 'canonical');
3490
3600
  link.setAttribute('href', canUrl);
3491
3601
  }
3492
- static { this.ɵfac = function DigitalMarketingService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || DigitalMarketingService)(i0.ɵɵinject(i1$5.Title), i0.ɵɵinject(i1$5.Meta), i0.ɵɵinject(DOCUMENT)); }; }
3602
+ static { this.ɵfac = function DigitalMarketingService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || DigitalMarketingService)(i0.ɵɵinject(i1$6.Title), i0.ɵɵinject(i1$6.Meta), i0.ɵɵinject(DOCUMENT)); }; }
3493
3603
  static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: DigitalMarketingService, factory: DigitalMarketingService.ɵfac, providedIn: 'root' }); }
3494
3604
  }
3495
3605
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DigitalMarketingService, [{
@@ -3497,7 +3607,7 @@ class DigitalMarketingService {
3497
3607
  args: [{
3498
3608
  providedIn: 'root'
3499
3609
  }]
3500
- }], () => [{ type: i1$5.Title }, { type: i1$5.Meta }, { type: undefined, decorators: [{
3610
+ }], () => [{ type: i1$6.Title }, { type: i1$6.Meta }, { type: undefined, decorators: [{
3501
3611
  type: Inject,
3502
3612
  args: [DOCUMENT]
3503
3613
  }] }], null); })();
@@ -3721,93 +3831,6 @@ class ScriptService {
3721
3831
  type: Injectable
3722
3832
  }], () => [{ type: i0.NgZone }], null); })();
3723
3833
 
3724
- /*
3725
- <file>
3726
- Project:
3727
- @osovitny/anatoly
3728
-
3729
- Authors:
3730
- Vadim Osovitny vadim.osovitny@osovitny.com
3731
-
3732
- Created:
3733
- 2 May 2023
3734
-
3735
- Copyright (c) 2016-2025 Osovitny Inc. All rights reserved.
3736
- </file>
3737
- */
3738
- class Browser {
3739
- static isIE() {
3740
- return window.navigator.userAgent.indexOf("MSIE ") > -1 || window.navigator.userAgent.indexOf("Trident/") > -1;
3741
- }
3742
- static isIframe() {
3743
- return window !== window.parent && !window.opener;
3744
- }
3745
- /*
3746
- https://getbootstrap.com/docs/5.3/layout/breakpoints
3747
-
3748
- $grid-breakpoints: (
3749
- xs: 0,
3750
-
3751
- // Small devices (landscape phones, 576px and up)
3752
- sm: 576px,
3753
-
3754
- // Medium devices (tablets, 768px and up)
3755
- md: 768px,
3756
-
3757
- // Large devices (desktops, 992px and up)
3758
- lg: 992px,
3759
-
3760
- // X-Large devices (large desktops, 1200px and up)
3761
- xl: 1200px,
3762
- xxl: 1400px
3763
- );
3764
- */
3765
- static isMobile() {
3766
- const userAgent = navigator.userAgent || navigator.vendor;
3767
- const mobileRegex = new RegExp("(android|bb\\d+|meego).+mobile|" +
3768
- "avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|" +
3769
- "iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|" +
3770
- "mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|" +
3771
- "p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|" +
3772
- "up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino|" +
3773
- "1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|" +
3774
- "ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|" +
3775
- "attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|" +
3776
- "br(e|v)w|bumb|bw-(n|u)|c55\\/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|" +
3777
- "craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|" +
3778
- "el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|" +
3779
- "g560|gene|gf-5|g-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|" +
3780
- "hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|" +
3781
- "i230|iac( |-\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|" +
3782
- "keji|kgt( |\\/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|-[a-w])|" +
3783
- "libw|lynx|m1-w|m3ga|m50\\/|ma(te|ui|xo)|mc(01|21|ca)|m-cr|me(rc|ri)|mi(o8|oa|ts)|mmef|mo(01|02|bi|de|do|t(-| |o|v)|zz)|" +
3784
- "mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|" +
3785
- "ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|" +
3786
- "pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|" +
3787
- "pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|" +
3788
- "s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk\\/|se(c(-|0|1)|47|mc|nd|ri)|" +
3789
- "sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|" +
3790
- "sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|" +
3791
- "ts(70|m-|m3|m5)|tx-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|" +
3792
- "vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|" +
3793
- "wmlb|wonu|x700|yas-|your|zeto|zte-", "i");
3794
- const isMobileUserAgent = mobileRegex.test(userAgent);
3795
- const isMobileScreen = window.innerWidth < 768;
3796
- return isMobileUserAgent || isMobileScreen;
3797
- }
3798
- static isTablet() {
3799
- const userAgent = navigator.userAgent || navigator.vendor;
3800
- const tabletRegex = new RegExp("ipad|android(?!.*mobile)|tablet|kindle|playbook|silk|nexus 7|nexus 10|Macintosh|" +
3801
- "fire|sm-t|tab|gt-p|sch-i|xoom|tf101|kftt|kfot|kfjw|kfsowi|a500|rim\\w", "i");
3802
- const isTabletUserAgent = tabletRegex.test(userAgent);
3803
- const isTabletScreen = window.innerWidth >= 768 && window.innerWidth < 992;
3804
- return isTabletUserAgent || isTabletScreen;
3805
- }
3806
- static isMobileOrTablet() {
3807
- return this.isMobile() || this.isTablet();
3808
- }
3809
- }
3810
-
3811
3834
  /*
3812
3835
  <file>
3813
3836
  Project:
@@ -4596,7 +4619,7 @@ class OrderSummaryComponent extends ComponentBase {
4596
4619
  i0.ɵɵtextInterpolate(ctx.discount);
4597
4620
  i0.ɵɵadvance(6);
4598
4621
  i0.ɵɵtextInterpolate1("$", ctx.toTotal(), "");
4599
- } }, dependencies: [i1$1.NgClass, i2.DefaultValueAccessor, i2.NgControlStatus, i2.NgModel], encapsulation: 2 }); }
4622
+ } }, dependencies: [i1$1.NgClass, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.NgModel], encapsulation: 2 }); }
4600
4623
  }
4601
4624
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(OrderSummaryComponent, [{
4602
4625
  type: Component,
@@ -5211,7 +5234,7 @@ class BraintreeDialog extends DialogBase {
5211
5234
  i0.ɵɵtemplate(0, BraintreeDialog_Conditional_0_Template, 11, 3, "div", 0);
5212
5235
  } if (rf & 2) {
5213
5236
  i0.ɵɵconditional(ctx.visible ? 0 : -1);
5214
- } }, dependencies: [i2$1.DialogComponent, i2$1.DialogTitleBarComponent, i2$1.DialogActionsComponent], encapsulation: 2 }); }
5237
+ } }, dependencies: [i2$2.DialogComponent, i2$2.DialogTitleBarComponent, i2$2.DialogActionsComponent], encapsulation: 2 }); }
5215
5238
  }
5216
5239
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BraintreeDialog, [{
5217
5240
  type: Component,
@@ -6073,7 +6096,7 @@ class StripeDialog extends DialogBase {
6073
6096
  i0.ɵɵtemplate(0, StripeDialog_Conditional_0_Template, 6, 3, "div", 0);
6074
6097
  } if (rf & 2) {
6075
6098
  i0.ɵɵconditional(ctx.visible ? 0 : -1);
6076
- } }, dependencies: [i2$1.DialogComponent, i2$1.DialogTitleBarComponent], encapsulation: 2 }); }
6099
+ } }, dependencies: [i2$2.DialogComponent, i2$2.DialogTitleBarComponent], encapsulation: 2 }); }
6077
6100
  }
6078
6101
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StripeDialog, [{
6079
6102
  type: Component,
@@ -7013,7 +7036,7 @@ class NativeElementDirective {
7013
7036
  // sets the localization key to the control
7014
7037
  this.control.control.nativeElement = this.el.nativeElement;
7015
7038
  }
7016
- static { this.ɵfac = function NativeElementDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || NativeElementDirective)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i2.NgControl)); }; }
7039
+ static { this.ɵfac = function NativeElementDirective_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || NativeElementDirective)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i2$1.NgControl)); }; }
7017
7040
  static { this.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: NativeElementDirective, selectors: [["", "formControl", ""], ["", "formControlName", ""]], standalone: false }); }
7018
7041
  }
7019
7042
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NativeElementDirective, [{
@@ -7022,7 +7045,7 @@ class NativeElementDirective {
7022
7045
  selector: '[formControl], [formControlName]',
7023
7046
  standalone: false
7024
7047
  }]
7025
- }], () => [{ type: i0.ElementRef }, { type: i2.NgControl }], null); })();
7048
+ }], () => [{ type: i0.ElementRef }, { type: i2$1.NgControl }], null); })();
7026
7049
 
7027
7050
  /*
7028
7051
  <file>
@@ -7101,7 +7124,7 @@ class CountryDropdownlist extends EditComponentBase {
7101
7124
  i0.ɵɵproperty("ngIf", ctx.isNgModelBased);
7102
7125
  i0.ɵɵadvance();
7103
7126
  i0.ɵɵproperty("ngIf", !ctx.isNgModelBased);
7104
- } }, dependencies: [i1$1.NgForOf, i1$1.NgIf, i2.NgSelectOption, i2.ɵNgSelectMultipleOption, i2.SelectControlValueAccessor, i2.NgControlStatus, i2.NgControlStatusGroup, i2.FormGroupDirective, i2.FormControlName, i4$1.LabelComponent, NativeElementDirective], encapsulation: 2 }); }
7127
+ } }, dependencies: [i1$1.NgForOf, i1$1.NgIf, i2$1.NgSelectOption, i2$1.ɵNgSelectMultipleOption, i2$1.SelectControlValueAccessor, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.FormGroupDirective, i2$1.FormControlName, i4$1.LabelComponent, NativeElementDirective], encapsulation: 2 }); }
7105
7128
  }
7106
7129
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CountryDropdownlist, [{
7107
7130
  type: Component,
@@ -7349,7 +7372,7 @@ class ModerationStatusDropdownlist extends EnumEditComponentBase {
7349
7372
  i0.ɵɵproperty("ngIf", ctx.isNgModelBased);
7350
7373
  i0.ɵɵadvance();
7351
7374
  i0.ɵɵproperty("ngIf", !ctx.isNgModelBased);
7352
- } }, dependencies: [i1$1.NgIf, i2.NgControlStatus, i2.NgControlStatusGroup, i2.FormGroupDirective, i2.FormControlName, i2.NgModel, i3.DropDownListComponent, i4$1.LabelComponent, NativeElementDirective, ItemValidationSummaryComponent], encapsulation: 2 }); }
7375
+ } }, dependencies: [i1$1.NgIf, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.FormGroupDirective, i2$1.FormControlName, i2$1.NgModel, i3.DropDownListComponent, i4$1.LabelComponent, NativeElementDirective, ItemValidationSummaryComponent], encapsulation: 2 }); }
7353
7376
  }
7354
7377
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ModerationStatusDropdownlist, [{
7355
7378
  type: Component,
@@ -7428,7 +7451,7 @@ class PublishStatusDropdownlist extends EnumEditComponentBase {
7428
7451
  i0.ɵɵproperty("ngIf", ctx.isNgModelBased);
7429
7452
  i0.ɵɵadvance();
7430
7453
  i0.ɵɵproperty("ngIf", !ctx.isNgModelBased);
7431
- } }, dependencies: [i1$1.NgIf, i2.NgControlStatus, i2.NgControlStatusGroup, i2.FormGroupDirective, i2.FormControlName, i2.NgModel, i3.DropDownListComponent, i4$1.LabelComponent, NativeElementDirective, ItemValidationSummaryComponent], encapsulation: 2 }); }
7454
+ } }, dependencies: [i1$1.NgIf, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.FormGroupDirective, i2$1.FormControlName, i2$1.NgModel, i3.DropDownListComponent, i4$1.LabelComponent, NativeElementDirective, ItemValidationSummaryComponent], encapsulation: 2 }); }
7432
7455
  }
7433
7456
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PublishStatusDropdownlist, [{
7434
7457
  type: Component,
@@ -7532,7 +7555,7 @@ class TimezoneDropdownlist extends EditComponentBase {
7532
7555
  i0.ɵɵproperty("ngIf", ctx.isNgModelBased);
7533
7556
  i0.ɵɵadvance();
7534
7557
  i0.ɵɵproperty("ngIf", !ctx.isNgModelBased);
7535
- } }, dependencies: [i1$1.NgForOf, i1$1.NgIf, i2.NgSelectOption, i2.ɵNgSelectMultipleOption, i2.SelectControlValueAccessor, i2.NgControlStatus, i2.NgControlStatusGroup, i2.FormGroupDirective, i2.FormControlName, NativeElementDirective], encapsulation: 2 }); }
7558
+ } }, dependencies: [i1$1.NgForOf, i1$1.NgIf, i2$1.NgSelectOption, i2$1.ɵNgSelectMultipleOption, i2$1.SelectControlValueAccessor, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.FormGroupDirective, i2$1.FormControlName, NativeElementDirective], encapsulation: 2 }); }
7536
7559
  }
7537
7560
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TimezoneDropdownlist, [{
7538
7561
  type: Component,
@@ -7813,7 +7836,7 @@ class HtmlEditorComponent extends HtmlEditorComponentBase {
7813
7836
  i0.ɵɵproperty("ngIf", ctx.isNgModelBased);
7814
7837
  i0.ɵɵadvance();
7815
7838
  i0.ɵɵproperty("ngIf", !ctx.isNgModelBased);
7816
- } }, dependencies: [i1$1.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.NgControlStatusGroup, i2.FormGroupDirective, i2.FormControlName, i3$1.FroalaEditorDirective, i4$1.LabelComponent, NativeElementDirective, ItemValidationSummaryComponent], encapsulation: 2 }); }
7839
+ } }, dependencies: [i1$1.NgIf, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.FormGroupDirective, i2$1.FormControlName, i3$1.FroalaEditorDirective, i4$1.LabelComponent, NativeElementDirective, ItemValidationSummaryComponent], encapsulation: 2 }); }
7817
7840
  }
7818
7841
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(HtmlEditorComponent, [{
7819
7842
  type: Component,
@@ -7850,7 +7873,7 @@ class CheckIconComponent {
7850
7873
  i0.ɵɵprojection(1);
7851
7874
  } if (rf & 2) {
7852
7875
  i0.ɵɵproperty("icon", ctx.checked ? "check-circle" : "circle-xmark")("ngClass", ctx.checked ? "text-success" : "text-danger");
7853
- } }, dependencies: [i1$1.NgClass, i1$6.FaIconComponent], encapsulation: 2 }); }
7876
+ } }, dependencies: [i1$1.NgClass, i1$7.FaIconComponent], encapsulation: 2 }); }
7854
7877
  }
7855
7878
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CheckIconComponent, [{
7856
7879
  type: Component,
@@ -8077,7 +8100,7 @@ class ControlPanelComponent extends ComponentBase {
8077
8100
  i0.ɵɵconditional(ctx.viewTypesVisible ? 7 : -1);
8078
8101
  i0.ɵɵadvance();
8079
8102
  i0.ɵɵconditional(ctx.addButtonVisible ? 8 : -1);
8080
- } }, dependencies: [i1$1.NgClass, i2.NgControlStatus, i2.NgModel, i1$6.FaIconComponent, i3.DropDownListComponent, AReplacerDirective], encapsulation: 2 }); }
8103
+ } }, dependencies: [i1$1.NgClass, i2$1.NgControlStatus, i2$1.NgModel, i1$7.FaIconComponent, i3.DropDownListComponent, AReplacerDirective], encapsulation: 2 }); }
8081
8104
  }
8082
8105
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ControlPanelComponent, [{
8083
8106
  type: Component,
@@ -8169,7 +8192,7 @@ class DataPagerComponent extends ComponentBase {
8169
8192
  i0.ɵɵadvance();
8170
8193
  i0.ɵɵstyleMap(ctx.style);
8171
8194
  i0.ɵɵproperty("total", ctx.totalItems)("pageSize", ctx.pageSize)("pageSizeValues", ctx.pageSizes)("skip", ctx.skipItems);
8172
- } }, dependencies: [i1$7.PagerComponent], encapsulation: 2 }); }
8195
+ } }, dependencies: [i1$8.PagerComponent], encapsulation: 2 }); }
8173
8196
  }
8174
8197
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DataPagerComponent, [{
8175
8198
  type: Component,
@@ -8534,7 +8557,7 @@ class NodataComponent {
8534
8557
  i0.ɵɵtemplate(0, NodataComponent_Conditional_0_Template, 6, 2, "div", 0);
8535
8558
  } if (rf & 2) {
8536
8559
  i0.ɵɵconditional(!ctx.dataLoading && ctx.dataLoaded && !ctx.dataFound ? 0 : -1);
8537
- } }, dependencies: [i1$1.NgIf, i1$6.FaIconComponent], encapsulation: 2 }); }
8560
+ } }, dependencies: [i1$1.NgIf, i1$7.FaIconComponent], encapsulation: 2 }); }
8538
8561
  }
8539
8562
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NodataComponent, [{
8540
8563
  type: Component,
@@ -8769,7 +8792,7 @@ class Copy2ClipboardComponent extends ComponentBase {
8769
8792
  i0.ɵɵelementEnd();
8770
8793
  } if (rf & 2) {
8771
8794
  i0.ɵɵclassMapInterpolate1("btn btn-icon ", ctx.classes, "");
8772
- } }, dependencies: [i1$6.FaIconComponent, AReplacerDirective], encapsulation: 2 }); }
8795
+ } }, dependencies: [i1$7.FaIconComponent, AReplacerDirective], encapsulation: 2 }); }
8773
8796
  }
8774
8797
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(Copy2ClipboardComponent, [{
8775
8798
  type: Component,
@@ -8884,7 +8907,7 @@ class UrlSlugComponent extends EditComponentBase {
8884
8907
  i0.ɵɵproperty("formControlName", ctx.controlName);
8885
8908
  i0.ɵɵadvance();
8886
8909
  i0.ɵɵproperty("ngIf", ctx.isGoButtonVisible);
8887
- } }, dependencies: [i1$1.NgClass, i1$1.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.NgControlStatusGroup, i2.FormGroupDirective, i2.FormControlName, i4$1.LabelDirective, AReplacerDirective, NativeElementDirective, ItemValidationSummaryComponent], encapsulation: 2 }); }
8910
+ } }, dependencies: [i1$1.NgClass, i1$1.NgIf, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.FormGroupDirective, i2$1.FormControlName, i4$1.LabelDirective, AReplacerDirective, NativeElementDirective, ItemValidationSummaryComponent], encapsulation: 2 }); }
8888
8911
  }
8889
8912
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(UrlSlugComponent, [{
8890
8913
  type: Component,
@@ -9226,7 +9249,7 @@ class ContactUsForm extends EditComponentBase {
9226
9249
  onTopicChange(event) {
9227
9250
  this.selectedTopic = event.target.value;
9228
9251
  }
9229
- static { this.ɵfac = function ContactUsForm_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ContactUsForm)(i0.ɵɵdirectiveInject(i1$8.ReCaptchaV3Service), i0.ɵɵdirectiveInject(i2.FormBuilder), i0.ɵɵdirectiveInject(AppContextService), i0.ɵɵdirectiveInject(EmailsApiService), i0.ɵɵdirectiveInject(NotificationService)); }; }
9252
+ static { this.ɵfac = function ContactUsForm_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ContactUsForm)(i0.ɵɵdirectiveInject(i1$9.ReCaptchaV3Service), i0.ɵɵdirectiveInject(i2$1.FormBuilder), i0.ɵɵdirectiveInject(AppContextService), i0.ɵɵdirectiveInject(EmailsApiService), i0.ɵɵdirectiveInject(NotificationService)); }; }
9230
9253
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ContactUsForm, selectors: [["anatoly-forms-contactus-form"]], inputs: { showActionButtons: "showActionButtons" }, outputs: { submit: "submit" }, standalone: false, features: [i0.ɵɵInheritDefinitionFeature], decls: 39, vars: 31, consts: [["novalidate", "", 3, "ngSubmit", "formGroup"], [3, "formGroup", "visible"], [1, "contact-us"], [1, "row"], [1, "form-fields", "col-6"], [1, "form-topic", 3, "ngClass"], [1, "form-select-wrapper"], [1, "assistive-text"], ["formControlName", "topic", 1, "form-select", 3, "change"], [3, "value", 4, "ngFor", "ngForOf"], ["controlName", "topic", "controlTitle", "topic", 3, "formGroup", "formSubmitted"], [1, "form-name", 3, "ngClass"], ["formControlName", "name", "placeholder", "Name *", "type", "text", 1, "form-control"], ["controlName", "name", "controlTitle", "name", 3, "formGroup", "formSubmitted"], [1, "form-email", 3, "ngClass"], ["formControlName", "email", "placeholder", "E-mail *", "type", "text", 1, "form-control"], [4, "ngIf"], ["controlName", "email", "controlTitle", "email", 3, "formGroup", "formSubmitted"], [1, "form-subject", 3, "ngClass"], ["formControlName", "subject", "placeholder", "Subject *", "type", "text", 1, "form-control"], ["controlName", "subject", "controlTitle", "subject", 3, "formGroup", "formSubmitted"], [1, "col-6"], [1, "form-message", 3, "ngClass"], ["formControlName", "message", "name", "message", "placeholder", "Message *", "rows", "4", "type", "text"], ["controlName", "message", "controlTitle", "message", 3, "formGroup", "formSubmitted"], [1, "row", "form-footer"], [1, "col"], ["class", "btn btn-success", "type", "submit", 3, "btn-primary", 4, "ngIf"], [3, "value"], ["type", "submit", 1, "btn", "btn-success"]], template: function ContactUsForm_Template(rf, ctx) { if (rf & 1) {
9231
9254
  i0.ɵɵelementStart(0, "form", 0);
9232
9255
  i0.ɵɵlistener("ngSubmit", function ContactUsForm_Template_form_ngSubmit_0_listener() { return ctx.onSubmit(); });
@@ -9298,12 +9321,12 @@ class ContactUsForm extends EditComponentBase {
9298
9321
  i0.ɵɵproperty("formGroup", ctx.formGroup)("formSubmitted", ctx.formSubmitted);
9299
9322
  i0.ɵɵadvance(3);
9300
9323
  i0.ɵɵproperty("ngIf", ctx.showActionButtons);
9301
- } }, dependencies: [i1$1.NgClass, i1$1.NgForOf, i1$1.NgIf, i2.ɵNgNoValidate, i2.NgSelectOption, i2.ɵNgSelectMultipleOption, i2.DefaultValueAccessor, i2.SelectControlValueAccessor, i2.NgControlStatus, i2.NgControlStatusGroup, i2.FormGroupDirective, i2.FormControlName, NativeElementDirective, FormValidationSummaryComponent, ItemValidationSummaryComponent], encapsulation: 2 }); }
9324
+ } }, dependencies: [i1$1.NgClass, i1$1.NgForOf, i1$1.NgIf, i2$1.ɵNgNoValidate, i2$1.NgSelectOption, i2$1.ɵNgSelectMultipleOption, i2$1.DefaultValueAccessor, i2$1.SelectControlValueAccessor, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.FormGroupDirective, i2$1.FormControlName, NativeElementDirective, FormValidationSummaryComponent, ItemValidationSummaryComponent], encapsulation: 2 }); }
9302
9325
  }
9303
9326
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ContactUsForm, [{
9304
9327
  type: Component,
9305
9328
  args: [{ selector: 'anatoly-forms-contactus-form', standalone: false, template: "<form (ngSubmit)='onSubmit()' [formGroup]='formGroup' novalidate>\r\n <anatoly-form-validation-summary [formGroup]='formGroup'\r\n [visible]='formSubmitted && formGroup.invalid'></anatoly-form-validation-summary>\r\n\r\n <div class='contact-us'>\r\n <div class=\"row\">\r\n <div class='form-fields col-6'>\r\n <p>What can we help you with?</p>\r\n <div [ngClass]=\"{'has-error': isControlInvalid('topic') }\" class='form-topic'>\r\n <div class='form-select-wrapper'>\r\n <label class='assistive-text'>Topic *</label>\r\n <select (change)='onTopicChange($event)' class='form-select' formControlName='topic'>\r\n <option *ngFor='let topic of topicList' [value]='topic.value'>{{ topic.value }} </option>\r\n </select>\r\n <anatoly-item-validation-summary [formGroup]='formGroup'\r\n [formSubmitted]='formSubmitted'\r\n controlName='topic'\r\n controlTitle='topic'>\r\n </anatoly-item-validation-summary>\r\n </div>\r\n </div>\r\n <div [ngClass]=\"{'has-error': isControlInvalid('name') }\" class='form-name'>\r\n <label class='assistive-text'>Name *</label>\r\n <input class='form-control' formControlName='name' placeholder='Name *' type='text'>\r\n <anatoly-item-validation-summary [formGroup]='formGroup'\r\n [formSubmitted]='formSubmitted'\r\n controlName='name'\r\n controlTitle='name'>\r\n </anatoly-item-validation-summary>\r\n </div>\r\n <div [ngClass]=\"{'has-error': isControlInvalid('email') }\" class='form-email'>\r\n <label class='assistive-text'>E-mail * </label>\r\n <input class='form-control' formControlName='email' placeholder='E-mail *' type='text' />\r\n <p *ngIf='!isUserSignedIn'>Please indicate the email used for your MailEx login if you already have an account</p>\r\n <anatoly-item-validation-summary [formGroup]='formGroup'\r\n [formSubmitted]='formSubmitted'\r\n controlName='email'\r\n controlTitle='email'>\r\n </anatoly-item-validation-summary>\r\n </div>\r\n <div [ngClass]=\"{'has-error': isControlInvalid('subject') }\" class='form-subject'>\r\n <label class='assistive-text'>Subject *</label>\r\n <input class='form-control' formControlName='subject' placeholder='Subject *' type='text' />\r\n <anatoly-item-validation-summary [formGroup]='formGroup'\r\n [formSubmitted]='formSubmitted'\r\n controlName='subject'\r\n controlTitle='subject'>\r\n </anatoly-item-validation-summary>\r\n </div>\r\n\r\n </div>\r\n <div class='col-6'>\r\n <div [ngClass]=\"{'has-error': isControlInvalid('message') }\" class='form-message'>\r\n <label class='assistive-text'>Message *</label>\r\n <textarea formControlName='message' name='message' placeholder='Message *' rows='4'\r\n type='text'></textarea>\r\n <anatoly-item-validation-summary [formGroup]='formGroup'\r\n [formSubmitted]='formSubmitted'\r\n controlName='message'\r\n controlTitle='message'>\r\n </anatoly-item-validation-summary>\r\n </div>\r\n </div>\r\n </div>\r\n <div class=\"row form-footer\">\r\n <div class=\"col\">\r\n <button *ngIf='showActionButtons'\r\n [class.btn-primary]='!formGroup.invalid'\r\n class='btn btn-success'\r\n type='submit'>\r\n Submit\r\n </button>\r\n </div>\r\n </div>\r\n </div>\r\n</form>\r\n" }]
9306
- }], () => [{ type: i1$8.ReCaptchaV3Service }, { type: i2.FormBuilder }, { type: AppContextService }, { type: EmailsApiService }, { type: NotificationService }], { showActionButtons: [{
9329
+ }], () => [{ type: i1$9.ReCaptchaV3Service }, { type: i2$1.FormBuilder }, { type: AppContextService }, { type: EmailsApiService }, { type: NotificationService }], { showActionButtons: [{
9307
9330
  type: Input
9308
9331
  }], submit: [{
9309
9332
  type: Output
@@ -9370,7 +9393,7 @@ class ContactUsDialog extends DialogBase {
9370
9393
  i0.ɵɵtemplate(0, ContactUsDialog_kendo_dialog_0_Template, 10, 2, "kendo-dialog", 1);
9371
9394
  } if (rf & 2) {
9372
9395
  i0.ɵɵproperty("ngIf", ctx.isOpen);
9373
- } }, dependencies: [i1$1.NgIf, i2$1.DialogComponent, i2$1.DialogActionsComponent, ContactUsForm], encapsulation: 2 }); }
9396
+ } }, dependencies: [i1$1.NgIf, i2$2.DialogComponent, i2$2.DialogActionsComponent, ContactUsForm], encapsulation: 2 }); }
9374
9397
  }
9375
9398
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ContactUsDialog, [{
9376
9399
  type: Component,
@@ -9614,7 +9637,7 @@ class AddressComponent extends EditComponentBase {
9614
9637
  let usState = event.target.value;
9615
9638
  this.change.emit(usState);
9616
9639
  }
9617
- static { this.ɵfac = function AddressComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || AddressComponent)(i0.ɵɵdirectiveInject(i2.FormBuilder), i0.ɵɵdirectiveInject(CoreApiService)); }; }
9640
+ static { this.ɵfac = function AddressComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || AddressComponent)(i0.ɵɵdirectiveInject(i2$1.FormBuilder), i0.ɵɵdirectiveInject(CoreApiService)); }; }
9618
9641
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: AddressComponent, selectors: [["anatoly-forms-address"]], inputs: { address: "address" }, outputs: { change: "change" }, standalone: false, features: [i0.ɵɵInheritDefinitionFeature], decls: 30, vars: 29, consts: [["classes", "card-outline card-primary"], [3, "title", 4, "ngIf"], [3, "formGroup"], [1, "row"], [1, "form-group", 3, "ngClass"], ["type", "text", "formControlName", "address_street", "placeholder", "Street Address", 1, "form-control"], ["controlName", "address_street", "controlTitle", "Street", 3, "formGroup", "formSubmitted"], ["type", "text", "formControlName", "address_street2", "placeholder", "Apartment, suite, unit, building, floor, etc.", 1, "form-control"], ["controlName", "address_street2", "controlTitle", "Street2", 3, "formGroup", "formSubmitted"], [1, "form-group", "col-3", "mb-0", 3, "ngClass"], ["type", "text", "formControlName", "address_city", "placeholder", "City", 1, "form-control"], ["controlName", "address_city", "controlTitle", "City", 3, "formGroup", "formSubmitted"], ["class", "form-group col-3 mb-0", 3, "ngClass", 4, "ngIf"], ["type", "text", "formControlName", "address_zipcode", "placeholder", "zipcode", 1, "form-control"], ["controlName", "address_zipcode", "controlTitle", "zipcode", 3, "formGroup", "formSubmitted"], ["formControlName", "address_country", "data-placeholder", "Select a Country", 1, "form-control", 3, "change"], [3, "value", 4, "ngFor", "ngForOf"], ["controlName", "address_country", "controlTitle", "Country", 3, "formGroup", "formSubmitted"], [3, "title"], ["formControlName", "address_stateOrRegion", 1, "form-control", 3, "change"], ["controlName", "address_stateOrRegion", "controlTitle", "State", 3, "formGroup", "formSubmitted"], [3, "value"]], template: function AddressComponent_Template(rf, ctx) { if (rf & 1) {
9619
9642
  i0.ɵɵelementStart(0, "anatoly-card", 0);
9620
9643
  i0.ɵɵtemplate(1, AddressComponent_anatoly_card_header_1_Template, 1, 1, "anatoly-card-header", 1);
@@ -9675,12 +9698,12 @@ class AddressComponent extends EditComponentBase {
9675
9698
  i0.ɵɵproperty("ngForOf", ctx.countryData);
9676
9699
  i0.ɵɵadvance();
9677
9700
  i0.ɵɵproperty("formGroup", ctx.formGroup)("formSubmitted", ctx.formSubmitted);
9678
- } }, dependencies: [i1$1.NgClass, i1$1.NgForOf, i1$1.NgIf, i2.NgSelectOption, i2.ɵNgSelectMultipleOption, i2.DefaultValueAccessor, i2.SelectControlValueAccessor, i2.NgControlStatus, i2.NgControlStatusGroup, i2.FormGroupDirective, i2.FormControlName, CardComponent, CardHeaderComponent, CardBodyComponent, NativeElementDirective, ItemValidationSummaryComponent], encapsulation: 2 }); }
9701
+ } }, dependencies: [i1$1.NgClass, i1$1.NgForOf, i1$1.NgIf, i2$1.NgSelectOption, i2$1.ɵNgSelectMultipleOption, i2$1.DefaultValueAccessor, i2$1.SelectControlValueAccessor, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.FormGroupDirective, i2$1.FormControlName, CardComponent, CardHeaderComponent, CardBodyComponent, NativeElementDirective, ItemValidationSummaryComponent], encapsulation: 2 }); }
9679
9702
  }
9680
9703
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AddressComponent, [{
9681
9704
  type: Component,
9682
9705
  args: [{ selector: 'anatoly-forms-address', standalone: false, template: "<anatoly-card classes='card-outline card-primary'>\r\n <anatoly-card-header *ngIf='isTitleVisible' [title]='title' />\r\n <anatoly-card-body [formGroup]='formGroup'>\r\n <div class=\"row\">\r\n <div class='form-group' [ngClass]=\"{'has-error': isControlInvalid('address_street')}\" >\r\n <label>Street Address</label>\r\n <input type='text' class='form-control' formControlName='address_street' placeholder='Street Address'>\r\n <anatoly-item-validation-summary controlName='address_street'\r\n controlTitle='Street'\r\n [formGroup]='formGroup'\r\n [formSubmitted]='formSubmitted'>\r\n </anatoly-item-validation-summary>\r\n </div>\r\n <div class='form-group' [ngClass]=\"{'has-error': isControlInvalid('address_street2')}\" >\r\n <input type='text' class='form-control' formControlName='address_street2' placeholder='Apartment, suite, unit, building, floor, etc.'>\r\n <anatoly-item-validation-summary controlName='address_street2'\r\n controlTitle='Street2'\r\n [formGroup]='formGroup'\r\n [formSubmitted]='formSubmitted'>\r\n </anatoly-item-validation-summary>\r\n </div>\r\n </div>\r\n <div class=\"row\">\r\n <div class='form-group col-3 mb-0' [ngClass]=\"{'has-error': isControlInvalid('address_city')}\">\r\n <label>City</label>\r\n <input type='text' class='form-control' formControlName='address_city' placeholder='City'>\r\n <anatoly-item-validation-summary controlName='address_city'\r\n controlTitle='City'\r\n [formGroup]='formGroup'\r\n [formSubmitted]='formSubmitted'>\r\n </anatoly-item-validation-summary>\r\n </div>\r\n <div class='form-group col-3 mb-0' *ngIf=\"formGroup.value.address_country == 'US'\" [ngClass]=\"{'has-error': isControlInvalid('address_stateOrRegion')}\">\r\n <label>State</label>\r\n <select class='form-control' (change)='onUSStateChange($event)' formControlName='address_stateOrRegion'>\r\n <option *ngFor='let state of usStateData' [value]='state.code'>{{state.name}}</option>\r\n </select>\r\n <anatoly-item-validation-summary controlName='address_stateOrRegion'\r\n controlTitle='State'\r\n [formGroup]='formGroup'\r\n [formSubmitted]='formSubmitted'>\r\n </anatoly-item-validation-summary>\r\n </div>\r\n <div class='form-group col-3 mb-0' [ngClass]=\"{'has-error': isControlInvalid('address_zipcode')}\" >\r\n <label>Zipcode</label>\r\n <input type='text' class='form-control' formControlName='address_zipcode' placeholder='zipcode'>\r\n <anatoly-item-validation-summary controlName='address_zipcode'\r\n controlTitle='zipcode'\r\n [formGroup]='formGroup'\r\n [formSubmitted]='formSubmitted'>\r\n </anatoly-item-validation-summary>\r\n </div>\r\n <div class='form-group col-3 mb-0' [ngClass]=\"{'has-error': isControlInvalid('address_country')}\">\r\n <label>Country</label>\r\n <select class='form-control' (change)='onCountryChange($event)' formControlName='address_country' data-placeholder='Select a Country'>\r\n <option *ngFor='let country of countryData' [value]='country.code'>{{country.name}}</option>\r\n </select>\r\n <anatoly-item-validation-summary controlName='address_country'\r\n controlTitle='Country'\r\n [formGroup]='formGroup'\r\n [formSubmitted]='formSubmitted'>\r\n </anatoly-item-validation-summary>\r\n </div>\r\n </div>\r\n </anatoly-card-body>\r\n</anatoly-card>\r\n" }]
9683
- }], () => [{ type: i2.FormBuilder }, { type: CoreApiService }], { address: [{
9706
+ }], () => [{ type: i2$1.FormBuilder }, { type: CoreApiService }], { address: [{
9684
9707
  type: Input
9685
9708
  }], change: [{
9686
9709
  type: Output
@@ -9759,7 +9782,7 @@ class CompanyComponent extends EditComponentBase {
9759
9782
  };
9760
9783
  return JSON.stringify(data);
9761
9784
  }
9762
- static { this.ɵfac = function CompanyComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CompanyComponent)(i0.ɵɵdirectiveInject(i2.FormBuilder)); }; }
9785
+ static { this.ɵfac = function CompanyComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || CompanyComponent)(i0.ɵɵdirectiveInject(i2$1.FormBuilder)); }; }
9763
9786
  static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: CompanyComponent, selectors: [["anatoly-forms-company"]], inputs: { company: "company" }, standalone: false, features: [i0.ɵɵInheritDefinitionFeature], decls: 25, vars: 22, consts: [["classes", "card-outline card-primary"], [3, "title", 4, "ngIf"], [3, "formGroup"], [1, "row"], [1, "form-group", "col-6", 3, "ngClass"], ["type", "text", "formControlName", "company_name", "placeholder", "Company Name", 1, "form-control"], ["controlName", "company_name", "controlTitle", "Company Name", 3, "formGroup", "formSubmitted"], ["type", "tel", "formControlName", "company_phone", "placeholder", "Company Phone", 1, "form-control"], ["controlName", "company_phone", "controlTitle", "Company Phone", 3, "formGroup", "formSubmitted"], [1, "form-group", "col-6", "mb-0", 3, "ngClass"], ["type", "email", "formControlName", "company_email", "placeholder", "Company Email", 1, "form-control"], ["controlName", "company_email", "controlTitle", "Company Email", 3, "formGroup", "formSubmitted"], ["type", "url", "placeholder", "https://example.com", "pattern", "https://.*", "size", "30", "formControlName", "company_websiteUrl", 1, "form-control"], ["controlName", "company_websiteUrl", "controlTitle", "Company website url", 3, "formGroup", "formSubmitted"], [3, "title"]], template: function CompanyComponent_Template(rf, ctx) { if (rf & 1) {
9764
9787
  i0.ɵɵelementStart(0, "anatoly-card", 0);
9765
9788
  i0.ɵɵtemplate(1, CompanyComponent_anatoly_card_header_1_Template, 1, 1, "anatoly-card-header", 1);
@@ -9804,12 +9827,12 @@ class CompanyComponent extends EditComponentBase {
9804
9827
  i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(20, _c0, ctx.isControlInvalid("company_websiteUrl")));
9805
9828
  i0.ɵɵadvance(4);
9806
9829
  i0.ɵɵproperty("formGroup", ctx.formGroup)("formSubmitted", ctx.formSubmitted);
9807
- } }, dependencies: [i1$1.NgClass, i1$1.NgIf, i2.DefaultValueAccessor, i2.NgControlStatus, i2.NgControlStatusGroup, i2.PatternValidator, i2.FormGroupDirective, i2.FormControlName, CardComponent, CardHeaderComponent, CardBodyComponent, NativeElementDirective, ItemValidationSummaryComponent], encapsulation: 2 }); }
9830
+ } }, dependencies: [i1$1.NgClass, i1$1.NgIf, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.PatternValidator, i2$1.FormGroupDirective, i2$1.FormControlName, CardComponent, CardHeaderComponent, CardBodyComponent, NativeElementDirective, ItemValidationSummaryComponent], encapsulation: 2 }); }
9808
9831
  }
9809
9832
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CompanyComponent, [{
9810
9833
  type: Component,
9811
9834
  args: [{ selector: 'anatoly-forms-company', standalone: false, template: "<anatoly-card classes='card-outline card-primary'>\r\n <anatoly-card-header *ngIf='isTitleVisible' [title]='title' />\r\n <anatoly-card-body [formGroup]='formGroup' >\r\n <div class=\"row\">\r\n <div class='form-group col-6' [ngClass]=\"{'has-error': isControlInvalid('company_name') }\">\r\n <label>Name</label>\r\n <input type='text' class='form-control' formControlName='company_name' placeholder='Company Name'>\r\n <anatoly-item-validation-summary controlName='company_name'\r\n controlTitle='Company Name'\r\n [formGroup]='formGroup'\r\n [formSubmitted]='formSubmitted'>\r\n </anatoly-item-validation-summary>\r\n </div>\r\n <div class='form-group col-6' [ngClass]=\"{'has-error': isControlInvalid('company_phone') }\">\r\n <label>Phone</label>\r\n <input type='tel' class='form-control' formControlName='company_phone' placeholder='Company Phone'>\r\n <anatoly-item-validation-summary controlName='company_phone'\r\n controlTitle='Company Phone'\r\n [formGroup]='formGroup'\r\n [formSubmitted]='formSubmitted'>\r\n </anatoly-item-validation-summary>\r\n </div>\r\n </div>\r\n <div class=\"row\">\r\n <div class='form-group col-6 mb-0' [ngClass]=\"{'has-error': isControlInvalid('company_email') }\">\r\n <label>Email</label>\r\n <input type='email' class='form-control' formControlName='company_email' placeholder='Company Email'>\r\n <anatoly-item-validation-summary controlName='company_email'\r\n controlTitle='Company Email'\r\n [formGroup]='formGroup'\r\n [formSubmitted]='formSubmitted'>\r\n </anatoly-item-validation-summary>\r\n </div>\r\n <div class='form-group col-6 mb-0' [ngClass]=\"{'has-error': isControlInvalid('company_websiteUrl') }\">\r\n <label>Website Url</label>\r\n <input type='url' placeholder='https://example.com' pattern='https://.*' size='30'\r\n class='form-control' formControlName='company_websiteUrl'>\r\n <anatoly-item-validation-summary controlName='company_websiteUrl'\r\n controlTitle='Company website url'\r\n [formGroup]='formGroup'\r\n [formSubmitted]='formSubmitted'>\r\n </anatoly-item-validation-summary>\r\n </div>\r\n </div>\r\n </anatoly-card-body>\r\n</anatoly-card>\r\n" }]
9812
- }], () => [{ type: i2.FormBuilder }], { company: [{
9835
+ }], () => [{ type: i2$1.FormBuilder }], { company: [{
9813
9836
  type: Input
9814
9837
  }] }); })();
9815
9838
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(CompanyComponent, { className: "CompanyComponent", filePath: "lib/ui/forms/components/company/company.component.ts", lineNumber: 29 }); })();
@@ -9930,7 +9953,7 @@ class SafeHtmlPipe {
9930
9953
  transform(value) {
9931
9954
  return this.sanitized.bypassSecurityTrustHtml(value);
9932
9955
  }
9933
- static { this.ɵfac = function SafeHtmlPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SafeHtmlPipe)(i0.ɵɵdirectiveInject(i1$5.DomSanitizer, 16)); }; }
9956
+ static { this.ɵfac = function SafeHtmlPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SafeHtmlPipe)(i0.ɵɵdirectiveInject(i1$6.DomSanitizer, 16)); }; }
9934
9957
  static { this.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "safeHtml", type: SafeHtmlPipe, pure: true, standalone: false }); }
9935
9958
  }
9936
9959
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SafeHtmlPipe, [{
@@ -9939,7 +9962,7 @@ class SafeHtmlPipe {
9939
9962
  name: 'safeHtml',
9940
9963
  standalone: false
9941
9964
  }]
9942
- }], () => [{ type: i1$5.DomSanitizer }], null); })();
9965
+ }], () => [{ type: i1$6.DomSanitizer }], null); })();
9943
9966
 
9944
9967
  /*
9945
9968
  <file>
@@ -10007,16 +10030,17 @@ class SafeHtmlPipe {
10007
10030
  //Node
10008
10031
  let InjectorInstance;
10009
10032
  class AnatolyCoreModule {
10010
- constructor(injector, parentModule) {
10033
+ constructor(injector) {
10011
10034
  this.injector = injector;
10012
10035
  InjectorInstance = this.injector;
10013
10036
  }
10014
- static { this.ɵfac = function AnatolyCoreModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || AnatolyCoreModule)(i0.ɵɵinject(i0.Injector), i0.ɵɵinject(AnatolyCoreModule, 12)); }; }
10037
+ static { this.ɵfac = function AnatolyCoreModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || AnatolyCoreModule)(i0.ɵɵinject(i0.Injector)); }; }
10015
10038
  static { this.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: AnatolyCoreModule }); }
10016
10039
  static { this.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [
10017
10040
  //Guards
10018
10041
  StarterGuard,
10019
10042
  //Services
10043
+ BrowserService,
10020
10044
  DigitalMarketingService,
10021
10045
  GoogleAnalyticsService,
10022
10046
  LoadingService,
@@ -10055,6 +10079,7 @@ class AnatolyCoreModule {
10055
10079
  //Guards
10056
10080
  StarterGuard,
10057
10081
  //Services
10082
+ BrowserService,
10058
10083
  DigitalMarketingService,
10059
10084
  GoogleAnalyticsService,
10060
10085
  LoadingService,
@@ -10068,11 +10093,7 @@ class AnatolyCoreModule {
10068
10093
  NotificationService
10069
10094
  ]
10070
10095
  }]
10071
- }], () => [{ type: i0.Injector }, { type: AnatolyCoreModule, decorators: [{
10072
- type: Optional
10073
- }, {
10074
- type: SkipSelf
10075
- }] }], null); })();
10096
+ }], () => [{ type: i0.Injector }], null); })();
10076
10097
  (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(AnatolyCoreModule, { imports: [CommonModule,
10077
10098
  RouterModule, i1$4.ToastrModule, LocalizationSettingsModule,
10078
10099
  LocalizationModule], exports: [RouterModule,
@@ -10519,7 +10540,7 @@ class FaModule {
10519
10540
  constructor(library) {
10520
10541
  library.addIcons(faCheckCircle, faCircleXmark, faDatabase, faCopy);
10521
10542
  }
10522
- static { this.ɵfac = function FaModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || FaModule)(i0.ɵɵinject(i1$6.FaIconLibrary)); }; }
10543
+ static { this.ɵfac = function FaModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || FaModule)(i0.ɵɵinject(i1$7.FaIconLibrary)); }; }
10523
10544
  static { this.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: FaModule }); }
10524
10545
  static { this.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
10525
10546
  FontAwesomeModule, FontAwesomeModule] }); }
@@ -10535,7 +10556,7 @@ class FaModule {
10535
10556
  FontAwesomeModule
10536
10557
  ]
10537
10558
  }]
10538
- }], () => [{ type: i1$6.FaIconLibrary }], null); })();
10559
+ }], () => [{ type: i1$7.FaIconLibrary }], null); })();
10539
10560
  (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(FaModule, { imports: [CommonModule,
10540
10561
  FontAwesomeModule], exports: [FontAwesomeModule] }); })();
10541
10562
 
@@ -11060,5 +11081,5 @@ class AnatolyModule {
11060
11081
  * Generated bundle index. Do not edit.
11061
11082
  */
11062
11083
 
11063
- export { AReplacerDirective, AddressComponent, AdminGuard, Alerts, AnatolyBillingModule, AnatolyCoreModule, AnatolyDataModule, AnatolyHttpInterceptor, AnatolyIAMModule, AnatolyIAMPagesModule, AnatolyModule, AnatolyUIModule, ApiServiceBase, ApiUrl, AppContextService, AppCoreSettings, AppName, AppSettings, AppVersion, AppsGoServiceBase, AuthService, AuthenticationGuard, BillingUtils, BraintreeDialog, Browser, BuyAccessButtonComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CheckIconComponent, ClientApps, CompanyComponent, ComponentBase, ContactUsDialog, ContactUsForm, ControlPanelComponent, Convert, Copy2ClipboardComponent, CoreApiService, CountryDropdownlist, CurrenciesApiService, CurrenciesStorageService, DOM, DataPagerComponent, DataViewType, DateConvert, DefaultEditorOptions, DialogBase, DigitalMarketingService, DiscountCodeStatus, DiscountCodeType, DiscountCodesApiService, EditComponentBase, EditPageBase, EmailsApiService, EnumEditComponentBase, FeatureWillBeReadyComponent, FileSizePipe, FormValidationSummaryComponent, GABillingEvents, GAEvents, GlobalErrorHandler, GoServiceBase, GoogleAnalyticsService, GridEditServiceBase, GridReadServiceBase, Guid, HoveringDirective, HtmlEditorComponent, HtmlEditorComponentBase, IdleService, ImageReplacerDirective, InjectorInstance, IsDevMode, IsProdMode, ItemValidationSummaryComponent, L10nUtils, ListBase, LoadingComponent, LoadingService, LocalStorageService, LocalizationModule, LocalizationService, LocalizationSettingsModule, LocalizePipe, LoggingService, MSALUtils, ModerationStatus, ModerationStatusDropdownlist, NativeElementDirective, NoMobileSupportComponent, NodataComponent, NotificationService, OrderSummaryComponent, PageBase, PageSpinnerComponent, PagedPageBase, PayPalComponent, PayPalScriptService, PaymentMethod, PaymentMethodsComponent, PaymentOptionsComponent, PaymentStage, PaymentType, PaymentsApiService, PaymentsService, PaypalButtonComponent, PaypalSubscribeButtonComponent, PublishStatus, PublishStatusDropdownlist, QSUtils, ReplaceTextPipe, SafeHtmlPipe, ScriptService, SessionStorageService, SignInButtonComponent, SignOutButtonComponent, SignUpButtonComponent, StarterGuard, StarterService, Stopwatch, StripeDialog, Subs, SubscribePlanButtonComponent, SubscriptionProvider, SubscriptionsApiService, TimezoneDropdownlist, TransactionsApiService, UrlSlugComponent, Utils, ValidationSummaryComponent, XmlFormatter, YouAgreeToOurTermsComponent, dateFormats, dateTimeFormats, formatUrl, getAppSettingsById, getAppSettingsByName, getCurrentApp, getLocalizationInjector, is, throwIfAlreadyLoaded, timeFormats, translateLoaderFactory };
11084
+ export { AReplacerDirective, AddressComponent, AdminGuard, Alerts, AnatolyBillingModule, AnatolyCoreModule, AnatolyDataModule, AnatolyHttpInterceptor, AnatolyIAMModule, AnatolyIAMPagesModule, AnatolyModule, AnatolyUIModule, ApiServiceBase, ApiUrl, AppContextService, AppCoreSettings, AppName, AppSettings, AppVersion, AppsGoServiceBase, AuthService, AuthenticationGuard, BillingUtils, BraintreeDialog, BrowserService, BuyAccessButtonComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CheckIconComponent, ClientApps, CompanyComponent, ComponentBase, ContactUsDialog, ContactUsForm, ControlPanelComponent, Convert, Copy2ClipboardComponent, CoreApiService, CountryDropdownlist, CurrenciesApiService, CurrenciesStorageService, DOM, DataPagerComponent, DataViewType, DateConvert, DefaultEditorOptions, DialogBase, DigitalMarketingService, DiscountCodeStatus, DiscountCodeType, DiscountCodesApiService, EditComponentBase, EditPageBase, EmailsApiService, EnumEditComponentBase, FeatureWillBeReadyComponent, FileSizePipe, FormValidationSummaryComponent, GABillingEvents, GAEvents, GlobalErrorHandler, GoServiceBase, GoogleAnalyticsService, GridEditServiceBase, GridReadServiceBase, Guid, HoveringDirective, HtmlEditorComponent, HtmlEditorComponentBase, IdleService, ImageReplacerDirective, InjectorInstance, IsDevMode, IsProdMode, ItemValidationSummaryComponent, L10nUtils, ListBase, LoadingComponent, LoadingService, LocalStorageService, LocalizationModule, LocalizationService, LocalizationSettingsModule, LocalizePipe, LoggingService, MSALUtils, ModerationStatus, ModerationStatusDropdownlist, NativeElementDirective, NoMobileSupportComponent, NodataComponent, NotificationService, OrderSummaryComponent, PageBase, PageSpinnerComponent, PagedPageBase, PayPalComponent, PayPalScriptService, PaymentMethod, PaymentMethodsComponent, PaymentOptionsComponent, PaymentStage, PaymentType, PaymentsApiService, PaymentsService, PaypalButtonComponent, PaypalSubscribeButtonComponent, PublishStatus, PublishStatusDropdownlist, QSUtils, ReplaceTextPipe, SafeHtmlPipe, ScriptService, SessionStorageService, SignInButtonComponent, SignOutButtonComponent, SignUpButtonComponent, StarterGuard, StarterService, Stopwatch, StripeDialog, Subs, SubscribePlanButtonComponent, SubscriptionProvider, SubscriptionsApiService, TimezoneDropdownlist, TransactionsApiService, UrlSlugComponent, Utils, ValidationSummaryComponent, XmlFormatter, YouAgreeToOurTermsComponent, dateFormats, dateTimeFormats, formatUrl, getAppSettingsById, getAppSettingsByName, getCurrentApp, getLocalizationInjector, is, throwIfAlreadyLoaded, timeFormats, translateLoaderFactory };
11064
11085
  //# sourceMappingURL=osovitny-anatoly.mjs.map