@osovitny/anatoly 3.17.87 → 3.17.89

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.
@@ -3,13 +3,14 @@ import { Injectable, Inject, EventEmitter, Output, Pipe, APP_INITIALIZER, Inject
3
3
  import js_beautify from 'js-beautify';
4
4
  import * as i1 from '@angular/router';
5
5
  import { NavigationEnd, NavigationStart, NavigationCancel, NavigationError, RouterModule } from '@angular/router';
6
- import * as i1$1 from '@angular/common/http';
7
- import { HttpResponse, HttpClientModule, HttpClient, HTTP_INTERCEPTORS } from '@angular/common/http';
8
- import { map, tap, mergeMap } from 'rxjs/operators';
6
+ import { v4 } from 'uuid';
9
7
  import { BehaviorSubject, Subject, filter, takeUntil, map as map$1, catchError, of, merge, forkJoin, timer, fromEvent, firstValueFrom } from 'rxjs';
10
8
  import * as i4 from '@azure/msal-angular';
11
9
  import { MSAL_GUARD_CONFIG, MsalGuard, MsalInterceptor, MSAL_INTERCEPTOR_CONFIG, MSAL_INSTANCE, MsalService, MsalBroadcastService, MsalModule } from '@azure/msal-angular';
12
10
  import { BrowserUtils, EventType, InteractionStatus, InteractionType, InteractionRequiredAuthError, PromptValue, PublicClientApplication, LogLevel } from '@azure/msal-browser';
11
+ import { map, tap, mergeMap } from 'rxjs/operators';
12
+ import * as i1$1 from '@angular/common/http';
13
+ import { HttpResponse, HttpClientModule, HttpClient, HTTP_INTERCEPTORS } from '@angular/common/http';
13
14
  import * as i1$2 from '@angular/common';
14
15
  import { LOCATION_INITIALIZED, DOCUMENT, CommonModule } from '@angular/common';
15
16
  import { format, formatDistance, formatDistanceToNow } from 'date-fns';
@@ -21,7 +22,6 @@ import Swal from 'sweetalert2';
21
22
  import * as i1$4 from 'ngx-toastr';
22
23
  import { ToastrModule } from 'ngx-toastr';
23
24
  import * as i1$5 from '@angular/platform-browser';
24
- import { v4 } from 'uuid';
25
25
  import * as i2 from '@angular/forms';
26
26
  import { FormControl, Validators, ReactiveFormsModule, FormsModule } from '@angular/forms';
27
27
  import * as dropin from 'braintree-web-drop-in';
@@ -658,7 +658,6 @@ var DataViewType;
658
658
 
659
659
  Authors:
660
660
  Vadim Osovitny vadim.osovitny@osovitny.com
661
- Anatoly Osovitny anatoly.osovitny@osovitny.com
662
661
 
663
662
  Created:
664
663
  17 Jun 2018
@@ -666,7 +665,7 @@ var DataViewType;
666
665
  Copyright (c) 2016-2025 Osovitny Inc. All rights reserved.
667
666
  </file>
668
667
  */
669
- class BaseGoService {
668
+ class GoServiceBase {
670
669
  constructor(route, router) {
671
670
  this.route = route;
672
671
  this.router = router;
@@ -689,13 +688,34 @@ class BaseGoService {
689
688
  this.router.navigate(commands);
690
689
  }
691
690
  }
692
- static { this.ɵfac = function BaseGoService_Factory(t) { return new (t || BaseGoService)(i0.ɵɵinject(i1.ActivatedRoute), i0.ɵɵinject(i1.Router)); }; }
693
- static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: BaseGoService, factory: BaseGoService.ɵfac }); }
691
+ static { this.ɵfac = function GoServiceBase_Factory(t) { return new (t || GoServiceBase)(i0.ɵɵinject(i1.ActivatedRoute), i0.ɵɵinject(i1.Router)); }; }
692
+ static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: GoServiceBase, factory: GoServiceBase.ɵfac }); }
694
693
  }
695
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BaseGoService, [{
694
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GoServiceBase, [{
696
695
  type: Injectable
697
696
  }], () => [{ type: i1.ActivatedRoute }, { type: i1.Router }], null); })();
698
697
 
698
+ /*
699
+ <file>
700
+ Project:
701
+ @osovitny/anatoly
702
+
703
+ Authors:
704
+ Vadim Osovitny vadim.osovitny@osovitny.com
705
+ Anatoly Osovitny anatoly.osovitny@osovitny.com
706
+
707
+ Created:
708
+ 26 Jun 2020
709
+
710
+ Copyright (c) 2016-2025 Osovitny Inc. All rights reserved.
711
+ </file>
712
+ */
713
+ class Guid {
714
+ static newGuid() {
715
+ return v4();
716
+ }
717
+ }
718
+
699
719
  /*
700
720
  <file>
701
721
  Project:
@@ -1747,6 +1767,123 @@ class AuthService extends ApiServiceBase {
1747
1767
  args: [MSAL_GUARD_CONFIG]
1748
1768
  }] }, { type: i4.MsalService }, { type: i4.MsalBroadcastService }], null); })();
1749
1769
 
1770
+ /*
1771
+ <file>
1772
+ Project:
1773
+ @osovitny/anatoly
1774
+
1775
+ Authors:
1776
+ Vadim Osovitny vadim.osovitny@osovitny.com
1777
+ Anatoly Osovitny anatoly.osovitny@osovitny.com
1778
+
1779
+ Created:
1780
+ 26 Jun 2020
1781
+
1782
+ Copyright (c) 2016-2025 Osovitny Inc. All rights reserved.
1783
+ </file>
1784
+ */
1785
+ //Node
1786
+ class LoggingService {
1787
+ constructor() {
1788
+ }
1789
+ info(info) {
1790
+ console.info(info);
1791
+ }
1792
+ warn(info) {
1793
+ console.warn(info);
1794
+ }
1795
+ error(error) {
1796
+ console.error(error);
1797
+ }
1798
+ static { this.ɵfac = function LoggingService_Factory(t) { return new (t || LoggingService)(); }; }
1799
+ static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: LoggingService, factory: LoggingService.ɵfac, providedIn: "root" }); }
1800
+ }
1801
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LoggingService, [{
1802
+ type: Injectable,
1803
+ args: [{
1804
+ providedIn: "root",
1805
+ }]
1806
+ }], () => [], null); })();
1807
+
1808
+ /*
1809
+ <file>
1810
+ Project:
1811
+ @osovitny/anatoly
1812
+
1813
+ Authors:
1814
+ Vadim Osovitny vadim.osovitny@osovitny.com
1815
+
1816
+ Created:
1817
+ 18 Feb 2024
1818
+
1819
+ Copyright (c) 2016-2025 Osovitny Inc. All rights reserved.
1820
+ </file>
1821
+ */
1822
+ class AppsGoServiceBase extends GoServiceBase {
1823
+ constructor(route, router, authService, logger) {
1824
+ super(route, router);
1825
+ this.route = route;
1826
+ this.router = router;
1827
+ this.authService = authService;
1828
+ this.logger = logger;
1829
+ }
1830
+ redirectToUrl(url, inNewTab = false, action = null) {
1831
+ if (action) {
1832
+ action();
1833
+ }
1834
+ //Logging
1835
+ this.logger.info('AppsGoService.redirectToUrl: ' + url);
1836
+ if (inNewTab) {
1837
+ //window.open(url, '_blank'); => blocks
1838
+ let a = document.createElement('a');
1839
+ a.target = '_blank';
1840
+ a.href = url;
1841
+ a.click();
1842
+ }
1843
+ else {
1844
+ location.href = url;
1845
+ }
1846
+ }
1847
+ //Public
1848
+ redirect2App(redirectTo, path = null, params = null, inNewTab = false, action = null) {
1849
+ let appSettings;
1850
+ if (redirectTo) {
1851
+ appSettings = getAppSettingsById(+redirectTo);
1852
+ }
1853
+ else {
1854
+ appSettings = getAppSettingsById(1);
1855
+ }
1856
+ if (appSettings) {
1857
+ let url = appSettings.baseUrl + appSettings.root;
1858
+ if (path && params) {
1859
+ url += (url.endsWith('/') ? "" : "/") + path + "?" + params;
1860
+ }
1861
+ else if (path) {
1862
+ url += (url.endsWith('/') ? "" : "/") + path;
1863
+ }
1864
+ else if (params) {
1865
+ url = (url.endsWith('/') ? url.substring(0, url.length - 1) : url) + "?" + params;
1866
+ }
1867
+ if (this.authService.isUserAuthenticated()) {
1868
+ let account = this.authService.getActiveAccount();
1869
+ let sid = Guid.newGuid();
1870
+ if (account) {
1871
+ url += (params ? '&' : '?') + `action=sso&sid=${sid}&login=${account.username}`;
1872
+ }
1873
+ this.redirectToUrl(url, inNewTab, action);
1874
+ }
1875
+ else {
1876
+ this.redirectToUrl(url, inNewTab, action);
1877
+ }
1878
+ }
1879
+ }
1880
+ static { this.ɵfac = function AppsGoServiceBase_Factory(t) { return new (t || AppsGoServiceBase)(i0.ɵɵinject(i1.ActivatedRoute), i0.ɵɵinject(i1.Router), i0.ɵɵinject(AuthService), i0.ɵɵinject(LoggingService)); }; }
1881
+ static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: AppsGoServiceBase, factory: AppsGoServiceBase.ɵfac }); }
1882
+ }
1883
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AppsGoServiceBase, [{
1884
+ type: Injectable
1885
+ }], () => [{ type: i1.ActivatedRoute }, { type: i1.Router }, { type: AuthService }, { type: LoggingService }], null); })();
1886
+
1750
1887
  /*
1751
1888
  <file>
1752
1889
  Project:
@@ -1911,44 +2048,6 @@ class LoadingService extends BehaviorSubject {
1911
2048
  }]
1912
2049
  }], () => [], null); })();
1913
2050
 
1914
- /*
1915
- <file>
1916
- Project:
1917
- @osovitny/anatoly
1918
-
1919
- Authors:
1920
- Vadim Osovitny vadim.osovitny@osovitny.com
1921
- Anatoly Osovitny anatoly.osovitny@osovitny.com
1922
-
1923
- Created:
1924
- 26 Jun 2020
1925
-
1926
- Copyright (c) 2016-2025 Osovitny Inc. All rights reserved.
1927
- </file>
1928
- */
1929
- //Node
1930
- class LoggingService {
1931
- constructor() {
1932
- }
1933
- info(info) {
1934
- console.info(info);
1935
- }
1936
- warn(info) {
1937
- console.warn(info);
1938
- }
1939
- error(error) {
1940
- console.error(error);
1941
- }
1942
- static { this.ɵfac = function LoggingService_Factory(t) { return new (t || LoggingService)(); }; }
1943
- static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: LoggingService, factory: LoggingService.ɵfac, providedIn: "root" }); }
1944
- }
1945
- (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LoggingService, [{
1946
- type: Injectable,
1947
- args: [{
1948
- providedIn: "root",
1949
- }]
1950
- }], () => [], null); })();
1951
-
1952
2051
  /*
1953
2052
  <file>
1954
2053
  Project:
@@ -3459,27 +3558,6 @@ class DOM {
3459
3558
  }
3460
3559
  }
3461
3560
 
3462
- /*
3463
- <file>
3464
- Project:
3465
- @osovitny/anatoly
3466
-
3467
- Authors:
3468
- Vadim Osovitny vadim.osovitny@osovitny.com
3469
- Anatoly Osovitny anatoly.osovitny@osovitny.com
3470
-
3471
- Created:
3472
- 26 Jun 2020
3473
-
3474
- Copyright (c) 2016-2025 Osovitny Inc. All rights reserved.
3475
- </file>
3476
- */
3477
- class Guid {
3478
- static newGuid() {
3479
- return v4();
3480
- }
3481
- }
3482
-
3483
3561
  /*
3484
3562
  <file>
3485
3563
  Project:
@@ -3548,6 +3626,13 @@ class QSUtils {
3548
3626
  catch (e) {
3549
3627
  }
3550
3628
  }
3629
+ static getUrlSlug() {
3630
+ let str = location.href;
3631
+ let items = str.split('/');
3632
+ let urlSlugWithQS = items[items.length - 1];
3633
+ let urlSlug = urlSlugWithQS.split("?")[0];
3634
+ return urlSlug;
3635
+ }
3551
3636
  //SSO
3552
3637
  static isSSOinProgress() {
3553
3638
  return location.search.indexOf("action=sso") > -1;
@@ -3631,6 +3716,42 @@ class Utils {
3631
3716
  static generateRandom(start, end) {
3632
3717
  return Math.floor(Math.random() * (end - start + 1)) + start;
3633
3718
  }
3719
+ static isBrowserMobile() {
3720
+ const userAgent = navigator.userAgent || navigator.vendor;
3721
+ const mobileRegex = new RegExp("(android|bb\\d+|meego).+mobile|" +
3722
+ "avantgo|bada\\/|blackberry|blazer|compal|elaine|fennec|hiptop|" +
3723
+ "iemobile|ip(hone|od)|iris|kindle|lge |maemo|midp|mmp|" +
3724
+ "mobile.+firefox|netfront|opera m(ob|in)i|palm( os)?|phone|" +
3725
+ "p(ixi|re)\\/|plucker|pocket|psp|series(4|6)0|symbian|treo|" +
3726
+ "up\\.(browser|link)|vodafone|wap|windows ce|xda|xiino|" +
3727
+ "1207|6310|6590|3gso|4thp|50[1-6]i|770s|802s|a wa|abac|ac(er|oo|s-)|" +
3728
+ "ai(ko|rn)|al(av|ca|co)|amoi|an(ex|ny|yw)|aptu|ar(ch|go)|as(te|us)|" +
3729
+ "attw|au(di|-m|r |s )|avan|be(ck|ll|nq)|bi(lb|rd)|bl(ac|az)|" +
3730
+ "br(e|v)w|bumb|bw-(n|u)|c55\\/|capi|ccwa|cdm-|cell|chtm|cldc|cmd-|co(mp|nd)|" +
3731
+ "craw|da(it|ll|ng)|dbte|dc-s|devi|dica|dmob|do(c|p)o|ds(12|-d)|" +
3732
+ "el(49|ai)|em(l2|ul)|er(ic|k0)|esl8|ez([4-7]0|os|wa|ze)|fetc|fly(-|_)|g1 u|" +
3733
+ "g560|gene|gf-5|g-mo|go(\\.w|od)|gr(ad|un)|haie|hcit|hd-(m|p|t)|hei-|" +
3734
+ "hi(pt|ta)|hp( i|ip)|hs-c|ht(c(-| |_|a|g|p|s|t)|tp)|hu(aw|tc)|i-(20|go|ma)|" +
3735
+ "i230|iac( |-\\/)|ibro|idea|ig01|ikom|im1k|inno|ipaq|iris|ja(t|v)a|jbro|jemu|jigs|kddi|" +
3736
+ "keji|kgt( |\\/)|klon|kpt |kwc-|kyo(c|k)|le(no|xi)|lg( g|\\/(k|l|u)|50|54|-[a-w])|" +
3737
+ "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)|" +
3738
+ "mt(50|p1|v )|mwbp|mywa|n10[0-2]|n20[2-3]|n30(0|2)|n50(0|2|5)|n7(0(0|1)|10)|" +
3739
+ "ne((c|m)-|on|tf|wf|wg|wt)|nok(6|i)|nzph|o2im|op(ti|wv)|oran|owg1|p800|" +
3740
+ "pan(a|d|t)|pdxg|pg(13|\\-([1-8]|c))|phil|pire|pl(ay|uc)|pn-2|po(ck|rt|se)|prox|psio|" +
3741
+ "pt-g|qa-a|qc(07|12|21|32|60|-[2-7]|i-)|qtek|r380|r600|raks|rim9|ro(ve|zo)|" +
3742
+ "s55\\/|sa(ge|ma|mm|ms|ny|va)|sc(01|h-|oo|p-)|sdk\\/|se(c(-|0|1)|47|mc|nd|ri)|" +
3743
+ "sgh-|shar|sie(-|m)|sk-0|sl(45|id)|sm(al|ar|b3|it|t5)|so(ft|ny)|sp(01|h-|v-|v )|" +
3744
+ "sy(01|mb)|t2(18|50)|t6(00|10|18)|ta(gt|lk)|tcl-|tdg-|tel(i|m)|tim-|t-mo|to(pl|sh)|" +
3745
+ "ts(70|m-|m3|m5)|tx-9|up(\\.b|g1|si)|utst|v400|v750|veri|vi(rg|te)|vk(40|5[0-3]|-v)|" +
3746
+ "vm40|voda|vulc|vx(52|53|60|61|70|80|81|83|85|98)|w3c(-| )|webc|whit|wi(g |nc|nw)|" +
3747
+ "wmlb|wonu|x700|yas-|your|zeto|zte-", "i");
3748
+ const isMobileUserAgent = mobileRegex.test(userAgent);
3749
+ const isSmallScreen = window.innerWidth <= 800 && window.innerHeight <= 600;
3750
+ const isTabletRegex = new RegExp("ipad|android(?!.*mobile)|tablet|kindle|playbook|silk|nexus 7|nexus 10|Macintosh|" +
3751
+ "fire|sm-t|tab|gt-p|sch-i|xoom|sch-i|tf101|kftt|kfot|kfjw|kfsowi|a500|rim\\w", "i");
3752
+ const isTabletUserAgent = isTabletRegex.test(userAgent);
3753
+ return isMobileUserAgent && !isTabletUserAgent || isSmallScreen;
3754
+ }
3634
3755
  }
3635
3756
 
3636
3757
  /*
@@ -6766,6 +6887,46 @@ class NodataComponent {
6766
6887
  }] }); })();
6767
6888
  (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(NodataComponent, { className: "NodataComponent", filePath: "lib\\ui\\components\\nodata\\nodata.component.ts", lineNumber: 25 }); })();
6768
6889
 
6890
+ /*
6891
+ <file>
6892
+ Project:
6893
+ @osovitny/anatoly
6894
+
6895
+ Authors:
6896
+ Leon Malyan leon.malyan@osovitny.com
6897
+
6898
+ Created:
6899
+ 22 Juy 2024
6900
+
6901
+ Copyright (c) 2016-2025 Osovitny Inc. All rights reserved.
6902
+ </file>
6903
+ */
6904
+ //Node
6905
+ class NoMobileSupportComponent extends ComponentBase {
6906
+ static { this.ɵfac = /*@__PURE__*/ (() => { let ɵNoMobileSupportComponent_BaseFactory; return function NoMobileSupportComponent_Factory(t) { return (ɵNoMobileSupportComponent_BaseFactory || (ɵNoMobileSupportComponent_BaseFactory = i0.ɵɵgetInheritedFactory(NoMobileSupportComponent)))(t || NoMobileSupportComponent); }; })(); }
6907
+ static { this.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: NoMobileSupportComponent, selectors: [["anatoly-no-mobile-support"]], inputs: { logo: "logo" }, features: [i0.ɵɵInheritDefinitionFeature], decls: 8, vars: 1, consts: [[2, "text-align", "center", "padding-top", "20px"], ["alt", "logo", 3, "src"], [2, "text-align", "center", "margin-top", "40vh"], [2, "font-size", "1.25rem"]], template: function NoMobileSupportComponent_Template(rf, ctx) { if (rf & 1) {
6908
+ i0.ɵɵelementStart(0, "div", 0);
6909
+ i0.ɵɵelement(1, "img", 1);
6910
+ i0.ɵɵelementEnd();
6911
+ i0.ɵɵelementStart(2, "div", 2)(3, "div", 3)(4, "b");
6912
+ i0.ɵɵtext(5, "Mobile Site Under Construction");
6913
+ i0.ɵɵelementEnd()();
6914
+ i0.ɵɵelementStart(6, "div");
6915
+ i0.ɵɵtext(7, "Please Use Another Device");
6916
+ i0.ɵɵelementEnd()();
6917
+ } if (rf & 2) {
6918
+ i0.ɵɵadvance();
6919
+ i0.ɵɵproperty("src", ctx.logo, i0.ɵɵsanitizeUrl);
6920
+ } }, encapsulation: 2 }); }
6921
+ }
6922
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NoMobileSupportComponent, [{
6923
+ type: Component,
6924
+ args: [{ selector: 'anatoly-no-mobile-support', template: "<div style=\"text-align:center; padding-top:20px;\">\r\n <img [src]='logo' alt='logo'>\r\n</div>\r\n<div style='text-align: center; margin-top:40vh;'>\r\n <div style='font-size:1.25rem;'>\r\n <b>Mobile Site Under Construction</b>\r\n </div>\r\n <div>Please Use Another Device</div>\r\n</div>\r\n" }]
6925
+ }], null, { logo: [{
6926
+ type: Input
6927
+ }] }); })();
6928
+ (() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(NoMobileSupportComponent, { className: "NoMobileSupportComponent", filePath: "lib\\ui\\components\\no-mobile-support\\no-mobile-support.component.ts", lineNumber: 26 }); })();
6929
+
6769
6930
  /*
6770
6931
  <file>
6771
6932
  Project:
@@ -9619,6 +9780,7 @@ const MAIN_COMPONENTS = [
9619
9780
  SignUpButtonComponent,
9620
9781
  SignOutButtonComponent,
9621
9782
  NodataComponent,
9783
+ NoMobileSupportComponent,
9622
9784
  //Spinners
9623
9785
  PageSpinnerComponent,
9624
9786
  LoadingComponent,
@@ -9780,14 +9942,14 @@ class AnatolyUIModule {
9780
9942
  ]
9781
9943
  }]
9782
9944
  }], null, null); })();
9783
- (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(AnatolyUIModule, { declarations: [BuyAccessButtonComponent, SubscribePlanButtonComponent, CardComponent, CardHeaderComponent, CardBodyComponent, CardFooterComponent, CheckIconComponent, Copy2ClipboardComponent, DataPagerComponent, CountryDropdownlist, TimezoneDropdownlist, HtmlEditorComponent, FormsHtmlEditorComponent, SignInButtonComponent, SignUpButtonComponent, SignOutButtonComponent, NodataComponent, PageSpinnerComponent, LoadingComponent, UrlSlugComponent, ContactUsDialog, NativeElementDirective, HoveringDirective, AddressComponent, CompanyComponent, ContactUsForm, SafeHtmlPipe, ReplaceTextPipe, FileSizePipe, FormValidationSummaryComponent, ItemValidationSummaryComponent], imports: [CommonModule,
9945
+ (function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(AnatolyUIModule, { declarations: [BuyAccessButtonComponent, SubscribePlanButtonComponent, CardComponent, CardHeaderComponent, CardBodyComponent, CardFooterComponent, CheckIconComponent, Copy2ClipboardComponent, DataPagerComponent, CountryDropdownlist, TimezoneDropdownlist, HtmlEditorComponent, FormsHtmlEditorComponent, SignInButtonComponent, SignUpButtonComponent, SignOutButtonComponent, NodataComponent, NoMobileSupportComponent, PageSpinnerComponent, LoadingComponent, UrlSlugComponent, ContactUsDialog, NativeElementDirective, HoveringDirective, AddressComponent, CompanyComponent, ContactUsForm, SafeHtmlPipe, ReplaceTextPipe, FileSizePipe, FormValidationSummaryComponent, ItemValidationSummaryComponent], imports: [CommonModule,
9784
9946
  RouterModule,
9785
9947
  ReactiveFormsModule,
9786
9948
  FormsModule,
9787
9949
  NgxCaptchaModule,
9788
9950
  FERootModule,
9789
9951
  FaModule,
9790
- KendoModule], exports: [BuyAccessButtonComponent, SubscribePlanButtonComponent, CardComponent, CardHeaderComponent, CardBodyComponent, CardFooterComponent, CheckIconComponent, Copy2ClipboardComponent, DataPagerComponent, CountryDropdownlist, TimezoneDropdownlist, HtmlEditorComponent, FormsHtmlEditorComponent, SignInButtonComponent, SignUpButtonComponent, SignOutButtonComponent, NodataComponent, PageSpinnerComponent, LoadingComponent, UrlSlugComponent, ContactUsDialog, NativeElementDirective, HoveringDirective, AddressComponent, CompanyComponent, ContactUsForm, SafeHtmlPipe, ReplaceTextPipe, FileSizePipe, FormValidationSummaryComponent, ItemValidationSummaryComponent] }); })();
9952
+ KendoModule], exports: [BuyAccessButtonComponent, SubscribePlanButtonComponent, CardComponent, CardHeaderComponent, CardBodyComponent, CardFooterComponent, CheckIconComponent, Copy2ClipboardComponent, DataPagerComponent, CountryDropdownlist, TimezoneDropdownlist, HtmlEditorComponent, FormsHtmlEditorComponent, SignInButtonComponent, SignUpButtonComponent, SignOutButtonComponent, NodataComponent, NoMobileSupportComponent, PageSpinnerComponent, LoadingComponent, UrlSlugComponent, ContactUsDialog, NativeElementDirective, HoveringDirective, AddressComponent, CompanyComponent, ContactUsForm, SafeHtmlPipe, ReplaceTextPipe, FileSizePipe, FormValidationSummaryComponent, ItemValidationSummaryComponent] }); })();
9791
9953
 
9792
9954
  /*
9793
9955
  <file>
@@ -9852,5 +10014,5 @@ class AnatolyModule {
9852
10014
  * Generated bundle index. Do not edit.
9853
10015
  */
9854
10016
 
9855
- export { AddressComponent, AdminGuard, Alerts, AnatolyBillingModule, AnatolyCoreModule, AnatolyDataModule, AnatolyHttpInterceptor, AnatolyIAMModule, AnatolyIAMPagesModule, AnatolyModule, AnatolyUIModule, ApiServiceBase, ApiUrl, AppContextService, AppCoreSettings, AppName, AppSettings, AppVersion, AuthService, AuthenticationGuard, BaseGoService, BillingUtils, BraintreeDialog, Browser, BuyAccessButtonComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CheckIconComponent, ClientApps, CompanyComponent, ComponentBase, ContactUsDialog, ContactUsForm, Convert, Copy2ClipboardComponent, CoreApiService, CountryDropdownlist, CurrenciesApiService, CurrenciesStorageService, DOM, DataPagerComponent, DataViewType, DateConvert, DefaultEditorOptions, DialogBase, DigitalMarketingService, DiscountCodeStatus, DiscountCodeType, DiscountCodesApiService, EditComponentBase, EditPageBase, EmailsApiService, EnumEditComponentBase, FileSizePipe, FormValidationSummaryComponent, FormsHtmlEditorComponent, GABillingEvents, GAEvents, GlobalErrorHandler, GoogleAnalyticsService, GridEditServiceBase, GridReadServiceBase, Guid, HoveringDirective, HtmlEditorComponent, HtmlEditorComponentBase, IdleService, InjectorInstance, IsDevMode, IsProdMode, ItemValidationSummaryComponent, L10NUrl, L10nUtils, ListBase, LoadingComponent, LoadingService, LocalStorageService, LocalizationInjectorInstance, LocalizationModule, LocalizationService, LocalizationSettingsModule, LocalizePipe, LoggingService, MSALUtils, NativeElementDirective, NodataComponent, NotificationService, OrderSummaryComponent, PageBase, PageSpinnerComponent, PagedPageBase, PayPalComponent, PayPalScriptService, PaymentMethod, PaymentMethodsComponent, PaymentOptionsComponent, PaymentStage, PaymentType, PaymentsApiService, PaymentsService, PaypalButtonComponent, QSUtils, ReplaceTextPipe, SafeHtmlPipe, ScriptService, SessionStorageService, SignInButtonComponent, SignOutButtonComponent, SignUpButtonComponent, StarterGuard, StarterService, Stopwatch, StripeDialog, Subs, SubscribePlanButtonComponent, TimezoneDropdownlist, TransactionsApiService, UrlSlugComponent, Utils, ValidationSummaryComponent, XmlFormatter, dateFormats, dateTimeFormats, getAppSettingsById, getAppSettingsByName, is, localizationInitializerFactory, throwIfAlreadyLoaded, timeFormats, translateLoaderFactory };
10017
+ export { 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, Convert, Copy2ClipboardComponent, CoreApiService, CountryDropdownlist, CurrenciesApiService, CurrenciesStorageService, DOM, DataPagerComponent, DataViewType, DateConvert, DefaultEditorOptions, DialogBase, DigitalMarketingService, DiscountCodeStatus, DiscountCodeType, DiscountCodesApiService, EditComponentBase, EditPageBase, EmailsApiService, EnumEditComponentBase, FileSizePipe, FormValidationSummaryComponent, FormsHtmlEditorComponent, GABillingEvents, GAEvents, GlobalErrorHandler, GoServiceBase, GoogleAnalyticsService, GridEditServiceBase, GridReadServiceBase, Guid, HoveringDirective, HtmlEditorComponent, HtmlEditorComponentBase, IdleService, InjectorInstance, IsDevMode, IsProdMode, ItemValidationSummaryComponent, L10NUrl, L10nUtils, ListBase, LoadingComponent, LoadingService, LocalStorageService, LocalizationInjectorInstance, LocalizationModule, LocalizationService, LocalizationSettingsModule, LocalizePipe, LoggingService, MSALUtils, NativeElementDirective, NoMobileSupportComponent, NodataComponent, NotificationService, OrderSummaryComponent, PageBase, PageSpinnerComponent, PagedPageBase, PayPalComponent, PayPalScriptService, PaymentMethod, PaymentMethodsComponent, PaymentOptionsComponent, PaymentStage, PaymentType, PaymentsApiService, PaymentsService, PaypalButtonComponent, QSUtils, ReplaceTextPipe, SafeHtmlPipe, ScriptService, SessionStorageService, SignInButtonComponent, SignOutButtonComponent, SignUpButtonComponent, StarterGuard, StarterService, Stopwatch, StripeDialog, Subs, SubscribePlanButtonComponent, TimezoneDropdownlist, TransactionsApiService, UrlSlugComponent, Utils, ValidationSummaryComponent, XmlFormatter, dateFormats, dateTimeFormats, getAppSettingsById, getAppSettingsByName, is, localizationInitializerFactory, throwIfAlreadyLoaded, timeFormats, translateLoaderFactory };
9856
10018
  //# sourceMappingURL=osovitny-anatoly.mjs.map