@osovitny/anatoly 3.19.18 → 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
|
|
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
|
|
25
|
-
import
|
|
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$
|
|
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$
|
|
40
|
+
import * as i1$7 from '@fortawesome/angular-fontawesome';
|
|
38
41
|
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
|
|
39
|
-
import * as i1$
|
|
42
|
+
import * as i1$8 from '@progress/kendo-angular-pager';
|
|
40
43
|
import { PagerModule } from '@progress/kendo-angular-pager';
|
|
41
|
-
import * as i1$
|
|
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$
|
|
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$
|
|
3610
|
+
}], () => [{ type: i1$6.Title }, { type: i1$6.Meta }, { type: undefined, decorators: [{
|
|
3501
3611
|
type: Inject,
|
|
3502
3612
|
args: [DOCUMENT]
|
|
3503
3613
|
}] }], null); })();
|
|
@@ -3721,89 +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
|
-
Details
|
|
3736
|
-
https://getbootstrap.com/docs/5.3/layout/breakpoints
|
|
3737
|
-
|
|
3738
|
-
$grid-breakpoints: (
|
|
3739
|
-
xs: 0,
|
|
3740
|
-
|
|
3741
|
-
// Small devices (landscape phones, 576px and up)
|
|
3742
|
-
sm: 576px,
|
|
3743
|
-
|
|
3744
|
-
// Medium devices (tablets, 768px and up)
|
|
3745
|
-
md: 768px,
|
|
3746
|
-
|
|
3747
|
-
// Large devices (desktops, 992px and up)
|
|
3748
|
-
lg: 992px,
|
|
3749
|
-
|
|
3750
|
-
// X-Large devices (large desktops, 1200px and up)
|
|
3751
|
-
xl: 1200px,
|
|
3752
|
-
xxl: 1400px
|
|
3753
|
-
);
|
|
3754
|
-
|
|
3755
|
-
Copyright (c) 2016-2025 Osovitny Inc. All rights reserved.
|
|
3756
|
-
</file>
|
|
3757
|
-
*/
|
|
3758
|
-
class Browser {
|
|
3759
|
-
static isIE() {
|
|
3760
|
-
return window.navigator.userAgent.indexOf("MSIE ") > -1 || window.navigator.userAgent.indexOf("Trident/") > -1;
|
|
3761
|
-
}
|
|
3762
|
-
static isIframe() {
|
|
3763
|
-
return window !== window.parent && !window.opener;
|
|
3764
|
-
}
|
|
3765
|
-
static isMobile() {
|
|
3766
|
-
const userAgent = navigator.userAgent || navigator.vendor || window.opera;
|
|
3767
|
-
// Touch capability detection
|
|
3768
|
-
const hasTouch = 'ontouchstart' in window || navigator.maxTouchPoints > 0;
|
|
3769
|
-
// Basic screen width check
|
|
3770
|
-
const isMobileScreen = window.innerWidth < 768;
|
|
3771
|
-
// Mobile detection regex
|
|
3772
|
-
const mobileRegex = new RegExp("(android|bb\\d+|meego).+mobile|" +
|
|
3773
|
-
"avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|" +
|
|
3774
|
-
"iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|" +
|
|
3775
|
-
"mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|" +
|
|
3776
|
-
"p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|" +
|
|
3777
|
-
"up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino|" +
|
|
3778
|
-
"nokia|samsung|htc|motorola|sonyericsson|iemobile", "i");
|
|
3779
|
-
const isMobileUserAgent = mobileRegex.test(userAgent);
|
|
3780
|
-
// Combine checks
|
|
3781
|
-
return (hasTouch && isMobileScreen) || isMobileUserAgent;
|
|
3782
|
-
}
|
|
3783
|
-
static isTablet() {
|
|
3784
|
-
const userAgent = navigator.userAgent || navigator.vendor;
|
|
3785
|
-
const tabletRegex = new RegExp("ipad|" +
|
|
3786
|
-
"android(?!.*mobile)|" +
|
|
3787
|
-
"tablet|kindle|playbook|silk|" +
|
|
3788
|
-
"nexus 7|nexus 10|" +
|
|
3789
|
-
"fire|sm-t|tab|gt-p|sch-i|xoom|tf101|" +
|
|
3790
|
-
"kftt|kfot|kfjw|kfsowi|a500|rim\\w", "i");
|
|
3791
|
-
const isTabletUserAgent = tabletRegex.test(userAgent);
|
|
3792
|
-
const isTabletScreen = window.innerWidth >= 768 && window.innerWidth < 992;
|
|
3793
|
-
return isTabletUserAgent || isTabletScreen;
|
|
3794
|
-
}
|
|
3795
|
-
static isDesktopMacOS() {
|
|
3796
|
-
const userAgent = navigator.userAgent || navigator.vendor;
|
|
3797
|
-
const isMac = /macintosh|mac os x/i.test(userAgent);
|
|
3798
|
-
const isIPad = /ipad/i.test(userAgent);
|
|
3799
|
-
// iPads may spoof macOS user agent, so exclude them
|
|
3800
|
-
return isMac && !isIPad;
|
|
3801
|
-
}
|
|
3802
|
-
static isMobileOrTablet() {
|
|
3803
|
-
return this.isMobile() || this.isTablet();
|
|
3804
|
-
}
|
|
3805
|
-
}
|
|
3806
|
-
|
|
3807
3834
|
/*
|
|
3808
3835
|
<file>
|
|
3809
3836
|
Project:
|
|
@@ -4592,7 +4619,7 @@ class OrderSummaryComponent extends ComponentBase {
|
|
|
4592
4619
|
i0.ɵɵtextInterpolate(ctx.discount);
|
|
4593
4620
|
i0.ɵɵadvance(6);
|
|
4594
4621
|
i0.ɵɵtextInterpolate1("$", ctx.toTotal(), "");
|
|
4595
|
-
} }, 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 }); }
|
|
4596
4623
|
}
|
|
4597
4624
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(OrderSummaryComponent, [{
|
|
4598
4625
|
type: Component,
|
|
@@ -5207,7 +5234,7 @@ class BraintreeDialog extends DialogBase {
|
|
|
5207
5234
|
i0.ɵɵtemplate(0, BraintreeDialog_Conditional_0_Template, 11, 3, "div", 0);
|
|
5208
5235
|
} if (rf & 2) {
|
|
5209
5236
|
i0.ɵɵconditional(ctx.visible ? 0 : -1);
|
|
5210
|
-
} }, dependencies: [i2$
|
|
5237
|
+
} }, dependencies: [i2$2.DialogComponent, i2$2.DialogTitleBarComponent, i2$2.DialogActionsComponent], encapsulation: 2 }); }
|
|
5211
5238
|
}
|
|
5212
5239
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BraintreeDialog, [{
|
|
5213
5240
|
type: Component,
|
|
@@ -6069,7 +6096,7 @@ class StripeDialog extends DialogBase {
|
|
|
6069
6096
|
i0.ɵɵtemplate(0, StripeDialog_Conditional_0_Template, 6, 3, "div", 0);
|
|
6070
6097
|
} if (rf & 2) {
|
|
6071
6098
|
i0.ɵɵconditional(ctx.visible ? 0 : -1);
|
|
6072
|
-
} }, dependencies: [i2$
|
|
6099
|
+
} }, dependencies: [i2$2.DialogComponent, i2$2.DialogTitleBarComponent], encapsulation: 2 }); }
|
|
6073
6100
|
}
|
|
6074
6101
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StripeDialog, [{
|
|
6075
6102
|
type: Component,
|
|
@@ -7009,7 +7036,7 @@ class NativeElementDirective {
|
|
|
7009
7036
|
// sets the localization key to the control
|
|
7010
7037
|
this.control.control.nativeElement = this.el.nativeElement;
|
|
7011
7038
|
}
|
|
7012
|
-
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)); }; }
|
|
7013
7040
|
static { this.ɵdir = /*@__PURE__*/ i0.ɵɵdefineDirective({ type: NativeElementDirective, selectors: [["", "formControl", ""], ["", "formControlName", ""]], standalone: false }); }
|
|
7014
7041
|
}
|
|
7015
7042
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NativeElementDirective, [{
|
|
@@ -7018,7 +7045,7 @@ class NativeElementDirective {
|
|
|
7018
7045
|
selector: '[formControl], [formControlName]',
|
|
7019
7046
|
standalone: false
|
|
7020
7047
|
}]
|
|
7021
|
-
}], () => [{ type: i0.ElementRef }, { type: i2.NgControl }], null); })();
|
|
7048
|
+
}], () => [{ type: i0.ElementRef }, { type: i2$1.NgControl }], null); })();
|
|
7022
7049
|
|
|
7023
7050
|
/*
|
|
7024
7051
|
<file>
|
|
@@ -7097,7 +7124,7 @@ class CountryDropdownlist extends EditComponentBase {
|
|
|
7097
7124
|
i0.ɵɵproperty("ngIf", ctx.isNgModelBased);
|
|
7098
7125
|
i0.ɵɵadvance();
|
|
7099
7126
|
i0.ɵɵproperty("ngIf", !ctx.isNgModelBased);
|
|
7100
|
-
} }, 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 }); }
|
|
7101
7128
|
}
|
|
7102
7129
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CountryDropdownlist, [{
|
|
7103
7130
|
type: Component,
|
|
@@ -7345,7 +7372,7 @@ class ModerationStatusDropdownlist extends EnumEditComponentBase {
|
|
|
7345
7372
|
i0.ɵɵproperty("ngIf", ctx.isNgModelBased);
|
|
7346
7373
|
i0.ɵɵadvance();
|
|
7347
7374
|
i0.ɵɵproperty("ngIf", !ctx.isNgModelBased);
|
|
7348
|
-
} }, 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 }); }
|
|
7349
7376
|
}
|
|
7350
7377
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ModerationStatusDropdownlist, [{
|
|
7351
7378
|
type: Component,
|
|
@@ -7424,7 +7451,7 @@ class PublishStatusDropdownlist extends EnumEditComponentBase {
|
|
|
7424
7451
|
i0.ɵɵproperty("ngIf", ctx.isNgModelBased);
|
|
7425
7452
|
i0.ɵɵadvance();
|
|
7426
7453
|
i0.ɵɵproperty("ngIf", !ctx.isNgModelBased);
|
|
7427
|
-
} }, 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 }); }
|
|
7428
7455
|
}
|
|
7429
7456
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PublishStatusDropdownlist, [{
|
|
7430
7457
|
type: Component,
|
|
@@ -7528,7 +7555,7 @@ class TimezoneDropdownlist extends EditComponentBase {
|
|
|
7528
7555
|
i0.ɵɵproperty("ngIf", ctx.isNgModelBased);
|
|
7529
7556
|
i0.ɵɵadvance();
|
|
7530
7557
|
i0.ɵɵproperty("ngIf", !ctx.isNgModelBased);
|
|
7531
|
-
} }, 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 }); }
|
|
7532
7559
|
}
|
|
7533
7560
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(TimezoneDropdownlist, [{
|
|
7534
7561
|
type: Component,
|
|
@@ -7809,7 +7836,7 @@ class HtmlEditorComponent extends HtmlEditorComponentBase {
|
|
|
7809
7836
|
i0.ɵɵproperty("ngIf", ctx.isNgModelBased);
|
|
7810
7837
|
i0.ɵɵadvance();
|
|
7811
7838
|
i0.ɵɵproperty("ngIf", !ctx.isNgModelBased);
|
|
7812
|
-
} }, 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 }); }
|
|
7813
7840
|
}
|
|
7814
7841
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(HtmlEditorComponent, [{
|
|
7815
7842
|
type: Component,
|
|
@@ -7846,7 +7873,7 @@ class CheckIconComponent {
|
|
|
7846
7873
|
i0.ɵɵprojection(1);
|
|
7847
7874
|
} if (rf & 2) {
|
|
7848
7875
|
i0.ɵɵproperty("icon", ctx.checked ? "check-circle" : "circle-xmark")("ngClass", ctx.checked ? "text-success" : "text-danger");
|
|
7849
|
-
} }, dependencies: [i1$1.NgClass, i1$
|
|
7876
|
+
} }, dependencies: [i1$1.NgClass, i1$7.FaIconComponent], encapsulation: 2 }); }
|
|
7850
7877
|
}
|
|
7851
7878
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CheckIconComponent, [{
|
|
7852
7879
|
type: Component,
|
|
@@ -8073,7 +8100,7 @@ class ControlPanelComponent extends ComponentBase {
|
|
|
8073
8100
|
i0.ɵɵconditional(ctx.viewTypesVisible ? 7 : -1);
|
|
8074
8101
|
i0.ɵɵadvance();
|
|
8075
8102
|
i0.ɵɵconditional(ctx.addButtonVisible ? 8 : -1);
|
|
8076
|
-
} }, dependencies: [i1$1.NgClass, i2.NgControlStatus, i2.NgModel, i1$
|
|
8103
|
+
} }, dependencies: [i1$1.NgClass, i2$1.NgControlStatus, i2$1.NgModel, i1$7.FaIconComponent, i3.DropDownListComponent, AReplacerDirective], encapsulation: 2 }); }
|
|
8077
8104
|
}
|
|
8078
8105
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ControlPanelComponent, [{
|
|
8079
8106
|
type: Component,
|
|
@@ -8165,7 +8192,7 @@ class DataPagerComponent extends ComponentBase {
|
|
|
8165
8192
|
i0.ɵɵadvance();
|
|
8166
8193
|
i0.ɵɵstyleMap(ctx.style);
|
|
8167
8194
|
i0.ɵɵproperty("total", ctx.totalItems)("pageSize", ctx.pageSize)("pageSizeValues", ctx.pageSizes)("skip", ctx.skipItems);
|
|
8168
|
-
} }, dependencies: [i1$
|
|
8195
|
+
} }, dependencies: [i1$8.PagerComponent], encapsulation: 2 }); }
|
|
8169
8196
|
}
|
|
8170
8197
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DataPagerComponent, [{
|
|
8171
8198
|
type: Component,
|
|
@@ -8530,7 +8557,7 @@ class NodataComponent {
|
|
|
8530
8557
|
i0.ɵɵtemplate(0, NodataComponent_Conditional_0_Template, 6, 2, "div", 0);
|
|
8531
8558
|
} if (rf & 2) {
|
|
8532
8559
|
i0.ɵɵconditional(!ctx.dataLoading && ctx.dataLoaded && !ctx.dataFound ? 0 : -1);
|
|
8533
|
-
} }, dependencies: [i1$1.NgIf, i1$
|
|
8560
|
+
} }, dependencies: [i1$1.NgIf, i1$7.FaIconComponent], encapsulation: 2 }); }
|
|
8534
8561
|
}
|
|
8535
8562
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NodataComponent, [{
|
|
8536
8563
|
type: Component,
|
|
@@ -8765,7 +8792,7 @@ class Copy2ClipboardComponent extends ComponentBase {
|
|
|
8765
8792
|
i0.ɵɵelementEnd();
|
|
8766
8793
|
} if (rf & 2) {
|
|
8767
8794
|
i0.ɵɵclassMapInterpolate1("btn btn-icon ", ctx.classes, "");
|
|
8768
|
-
} }, dependencies: [i1$
|
|
8795
|
+
} }, dependencies: [i1$7.FaIconComponent, AReplacerDirective], encapsulation: 2 }); }
|
|
8769
8796
|
}
|
|
8770
8797
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(Copy2ClipboardComponent, [{
|
|
8771
8798
|
type: Component,
|
|
@@ -8880,7 +8907,7 @@ class UrlSlugComponent extends EditComponentBase {
|
|
|
8880
8907
|
i0.ɵɵproperty("formControlName", ctx.controlName);
|
|
8881
8908
|
i0.ɵɵadvance();
|
|
8882
8909
|
i0.ɵɵproperty("ngIf", ctx.isGoButtonVisible);
|
|
8883
|
-
} }, 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 }); }
|
|
8884
8911
|
}
|
|
8885
8912
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(UrlSlugComponent, [{
|
|
8886
8913
|
type: Component,
|
|
@@ -9222,7 +9249,7 @@ class ContactUsForm extends EditComponentBase {
|
|
|
9222
9249
|
onTopicChange(event) {
|
|
9223
9250
|
this.selectedTopic = event.target.value;
|
|
9224
9251
|
}
|
|
9225
|
-
static { this.ɵfac = function ContactUsForm_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ContactUsForm)(i0.ɵɵdirectiveInject(i1$
|
|
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)); }; }
|
|
9226
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) {
|
|
9227
9254
|
i0.ɵɵelementStart(0, "form", 0);
|
|
9228
9255
|
i0.ɵɵlistener("ngSubmit", function ContactUsForm_Template_form_ngSubmit_0_listener() { return ctx.onSubmit(); });
|
|
@@ -9294,12 +9321,12 @@ class ContactUsForm extends EditComponentBase {
|
|
|
9294
9321
|
i0.ɵɵproperty("formGroup", ctx.formGroup)("formSubmitted", ctx.formSubmitted);
|
|
9295
9322
|
i0.ɵɵadvance(3);
|
|
9296
9323
|
i0.ɵɵproperty("ngIf", ctx.showActionButtons);
|
|
9297
|
-
} }, 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 }); }
|
|
9298
9325
|
}
|
|
9299
9326
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ContactUsForm, [{
|
|
9300
9327
|
type: Component,
|
|
9301
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" }]
|
|
9302
|
-
}], () => [{ type: i1$
|
|
9329
|
+
}], () => [{ type: i1$9.ReCaptchaV3Service }, { type: i2$1.FormBuilder }, { type: AppContextService }, { type: EmailsApiService }, { type: NotificationService }], { showActionButtons: [{
|
|
9303
9330
|
type: Input
|
|
9304
9331
|
}], submit: [{
|
|
9305
9332
|
type: Output
|
|
@@ -9366,7 +9393,7 @@ class ContactUsDialog extends DialogBase {
|
|
|
9366
9393
|
i0.ɵɵtemplate(0, ContactUsDialog_kendo_dialog_0_Template, 10, 2, "kendo-dialog", 1);
|
|
9367
9394
|
} if (rf & 2) {
|
|
9368
9395
|
i0.ɵɵproperty("ngIf", ctx.isOpen);
|
|
9369
|
-
} }, dependencies: [i1$1.NgIf, i2$
|
|
9396
|
+
} }, dependencies: [i1$1.NgIf, i2$2.DialogComponent, i2$2.DialogActionsComponent, ContactUsForm], encapsulation: 2 }); }
|
|
9370
9397
|
}
|
|
9371
9398
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ContactUsDialog, [{
|
|
9372
9399
|
type: Component,
|
|
@@ -9610,7 +9637,7 @@ class AddressComponent extends EditComponentBase {
|
|
|
9610
9637
|
let usState = event.target.value;
|
|
9611
9638
|
this.change.emit(usState);
|
|
9612
9639
|
}
|
|
9613
|
-
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)); }; }
|
|
9614
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) {
|
|
9615
9642
|
i0.ɵɵelementStart(0, "anatoly-card", 0);
|
|
9616
9643
|
i0.ɵɵtemplate(1, AddressComponent_anatoly_card_header_1_Template, 1, 1, "anatoly-card-header", 1);
|
|
@@ -9671,12 +9698,12 @@ class AddressComponent extends EditComponentBase {
|
|
|
9671
9698
|
i0.ɵɵproperty("ngForOf", ctx.countryData);
|
|
9672
9699
|
i0.ɵɵadvance();
|
|
9673
9700
|
i0.ɵɵproperty("formGroup", ctx.formGroup)("formSubmitted", ctx.formSubmitted);
|
|
9674
|
-
} }, 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 }); }
|
|
9675
9702
|
}
|
|
9676
9703
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AddressComponent, [{
|
|
9677
9704
|
type: Component,
|
|
9678
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" }]
|
|
9679
|
-
}], () => [{ type: i2.FormBuilder }, { type: CoreApiService }], { address: [{
|
|
9706
|
+
}], () => [{ type: i2$1.FormBuilder }, { type: CoreApiService }], { address: [{
|
|
9680
9707
|
type: Input
|
|
9681
9708
|
}], change: [{
|
|
9682
9709
|
type: Output
|
|
@@ -9755,7 +9782,7 @@ class CompanyComponent extends EditComponentBase {
|
|
|
9755
9782
|
};
|
|
9756
9783
|
return JSON.stringify(data);
|
|
9757
9784
|
}
|
|
9758
|
-
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)); }; }
|
|
9759
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) {
|
|
9760
9787
|
i0.ɵɵelementStart(0, "anatoly-card", 0);
|
|
9761
9788
|
i0.ɵɵtemplate(1, CompanyComponent_anatoly_card_header_1_Template, 1, 1, "anatoly-card-header", 1);
|
|
@@ -9800,12 +9827,12 @@ class CompanyComponent extends EditComponentBase {
|
|
|
9800
9827
|
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(20, _c0, ctx.isControlInvalid("company_websiteUrl")));
|
|
9801
9828
|
i0.ɵɵadvance(4);
|
|
9802
9829
|
i0.ɵɵproperty("formGroup", ctx.formGroup)("formSubmitted", ctx.formSubmitted);
|
|
9803
|
-
} }, 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 }); }
|
|
9804
9831
|
}
|
|
9805
9832
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CompanyComponent, [{
|
|
9806
9833
|
type: Component,
|
|
9807
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" }]
|
|
9808
|
-
}], () => [{ type: i2.FormBuilder }], { company: [{
|
|
9835
|
+
}], () => [{ type: i2$1.FormBuilder }], { company: [{
|
|
9809
9836
|
type: Input
|
|
9810
9837
|
}] }); })();
|
|
9811
9838
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(CompanyComponent, { className: "CompanyComponent", filePath: "lib/ui/forms/components/company/company.component.ts", lineNumber: 29 }); })();
|
|
@@ -9926,7 +9953,7 @@ class SafeHtmlPipe {
|
|
|
9926
9953
|
transform(value) {
|
|
9927
9954
|
return this.sanitized.bypassSecurityTrustHtml(value);
|
|
9928
9955
|
}
|
|
9929
|
-
static { this.ɵfac = function SafeHtmlPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SafeHtmlPipe)(i0.ɵɵdirectiveInject(i1$
|
|
9956
|
+
static { this.ɵfac = function SafeHtmlPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SafeHtmlPipe)(i0.ɵɵdirectiveInject(i1$6.DomSanitizer, 16)); }; }
|
|
9930
9957
|
static { this.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "safeHtml", type: SafeHtmlPipe, pure: true, standalone: false }); }
|
|
9931
9958
|
}
|
|
9932
9959
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SafeHtmlPipe, [{
|
|
@@ -9935,7 +9962,7 @@ class SafeHtmlPipe {
|
|
|
9935
9962
|
name: 'safeHtml',
|
|
9936
9963
|
standalone: false
|
|
9937
9964
|
}]
|
|
9938
|
-
}], () => [{ type: i1$
|
|
9965
|
+
}], () => [{ type: i1$6.DomSanitizer }], null); })();
|
|
9939
9966
|
|
|
9940
9967
|
/*
|
|
9941
9968
|
<file>
|
|
@@ -10003,16 +10030,17 @@ class SafeHtmlPipe {
|
|
|
10003
10030
|
//Node
|
|
10004
10031
|
let InjectorInstance;
|
|
10005
10032
|
class AnatolyCoreModule {
|
|
10006
|
-
constructor(injector
|
|
10033
|
+
constructor(injector) {
|
|
10007
10034
|
this.injector = injector;
|
|
10008
10035
|
InjectorInstance = this.injector;
|
|
10009
10036
|
}
|
|
10010
|
-
static { this.ɵfac = function AnatolyCoreModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || AnatolyCoreModule)(i0.ɵɵinject(i0.Injector)
|
|
10037
|
+
static { this.ɵfac = function AnatolyCoreModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || AnatolyCoreModule)(i0.ɵɵinject(i0.Injector)); }; }
|
|
10011
10038
|
static { this.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: AnatolyCoreModule }); }
|
|
10012
10039
|
static { this.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ providers: [
|
|
10013
10040
|
//Guards
|
|
10014
10041
|
StarterGuard,
|
|
10015
10042
|
//Services
|
|
10043
|
+
BrowserService,
|
|
10016
10044
|
DigitalMarketingService,
|
|
10017
10045
|
GoogleAnalyticsService,
|
|
10018
10046
|
LoadingService,
|
|
@@ -10051,6 +10079,7 @@ class AnatolyCoreModule {
|
|
|
10051
10079
|
//Guards
|
|
10052
10080
|
StarterGuard,
|
|
10053
10081
|
//Services
|
|
10082
|
+
BrowserService,
|
|
10054
10083
|
DigitalMarketingService,
|
|
10055
10084
|
GoogleAnalyticsService,
|
|
10056
10085
|
LoadingService,
|
|
@@ -10064,11 +10093,7 @@ class AnatolyCoreModule {
|
|
|
10064
10093
|
NotificationService
|
|
10065
10094
|
]
|
|
10066
10095
|
}]
|
|
10067
|
-
}], () => [{ type: i0.Injector },
|
|
10068
|
-
type: Optional
|
|
10069
|
-
}, {
|
|
10070
|
-
type: SkipSelf
|
|
10071
|
-
}] }], null); })();
|
|
10096
|
+
}], () => [{ type: i0.Injector }], null); })();
|
|
10072
10097
|
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(AnatolyCoreModule, { imports: [CommonModule,
|
|
10073
10098
|
RouterModule, i1$4.ToastrModule, LocalizationSettingsModule,
|
|
10074
10099
|
LocalizationModule], exports: [RouterModule,
|
|
@@ -10515,7 +10540,7 @@ class FaModule {
|
|
|
10515
10540
|
constructor(library) {
|
|
10516
10541
|
library.addIcons(faCheckCircle, faCircleXmark, faDatabase, faCopy);
|
|
10517
10542
|
}
|
|
10518
|
-
static { this.ɵfac = function FaModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || FaModule)(i0.ɵɵinject(i1$
|
|
10543
|
+
static { this.ɵfac = function FaModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || FaModule)(i0.ɵɵinject(i1$7.FaIconLibrary)); }; }
|
|
10519
10544
|
static { this.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: FaModule }); }
|
|
10520
10545
|
static { this.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
|
|
10521
10546
|
FontAwesomeModule, FontAwesomeModule] }); }
|
|
@@ -10531,7 +10556,7 @@ class FaModule {
|
|
|
10531
10556
|
FontAwesomeModule
|
|
10532
10557
|
]
|
|
10533
10558
|
}]
|
|
10534
|
-
}], () => [{ type: i1$
|
|
10559
|
+
}], () => [{ type: i1$7.FaIconLibrary }], null); })();
|
|
10535
10560
|
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(FaModule, { imports: [CommonModule,
|
|
10536
10561
|
FontAwesomeModule], exports: [FontAwesomeModule] }); })();
|
|
10537
10562
|
|
|
@@ -11056,5 +11081,5 @@ class AnatolyModule {
|
|
|
11056
11081
|
* Generated bundle index. Do not edit.
|
|
11057
11082
|
*/
|
|
11058
11083
|
|
|
11059
|
-
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,
|
|
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 };
|
|
11060
11085
|
//# sourceMappingURL=osovitny-anatoly.mjs.map
|