@osovitny/anatoly 3.19.42 → 3.19.44
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 } from '@angular/core';
|
|
2
|
+
import { Injectable, EventEmitter, Component, Output, Input, Inject, Pipe, provideAppInitializer, inject, NgModule, Directive, ChangeDetectionStrategy, ViewChild, ViewEncapsulation, HostListener, HostBinding, APP_INITIALIZER } from '@angular/core';
|
|
3
3
|
import { BehaviorSubject, forkJoin, Subject, filter, takeUntil, map as map$1, catchError, of, merge, timer, fromEvent, firstValueFrom } from 'rxjs';
|
|
4
4
|
import { map, tap, mergeMap } from 'rxjs/operators';
|
|
5
5
|
import * as i1 from '@angular/common/http';
|
|
@@ -11,37 +11,37 @@ import js_beautify from 'js-beautify';
|
|
|
11
11
|
import * as i1$2 from '@angular/router';
|
|
12
12
|
import { NavigationEnd, NavigationStart, NavigationCancel, NavigationError, RouterModule } from '@angular/router';
|
|
13
13
|
import { v4 } from 'uuid';
|
|
14
|
-
import * as
|
|
15
|
-
import { MSAL_GUARD_CONFIG, MsalGuard,
|
|
14
|
+
import * as i1$3 from '@azure/msal-angular';
|
|
15
|
+
import { MSAL_GUARD_CONFIG, MsalGuard, MsalService, MsalBroadcastService, MsalInterceptor, MSAL_INSTANCE, MsalModule } from '@azure/msal-angular';
|
|
16
16
|
import { BrowserUtils, EventType, InteractionStatus, InteractionType, InteractionRequiredAuthError, PromptValue, PublicClientApplication, LogLevel } from '@azure/msal-browser';
|
|
17
17
|
import { enUS } from 'date-fns/locale/en-US';
|
|
18
|
-
import * as i1$
|
|
18
|
+
import * as i1$4 from '@ngx-translate/core';
|
|
19
19
|
import { TranslateModule, TranslateLoader, TranslateService } from '@ngx-translate/core';
|
|
20
20
|
import { TranslateHttpLoader } from '@ngx-translate/http-loader';
|
|
21
21
|
import Swal from 'sweetalert2';
|
|
22
|
-
import * as i1$
|
|
22
|
+
import * as i1$5 from 'ngx-toastr';
|
|
23
23
|
import { ToastrModule } from 'ngx-toastr';
|
|
24
24
|
import * as i2 from '@angular/cdk/layout';
|
|
25
25
|
import { Breakpoints } from '@angular/cdk/layout';
|
|
26
|
-
import * as i1$
|
|
27
|
-
import * as i1$
|
|
26
|
+
import * as i1$6 from '@angular/cdk/platform';
|
|
27
|
+
import * as i1$7 from '@angular/platform-browser';
|
|
28
28
|
import * as i2$1 from '@angular/forms';
|
|
29
29
|
import { FormControl, Validators, ReactiveFormsModule, FormsModule } from '@angular/forms';
|
|
30
30
|
import * as dropin from 'braintree-web-drop-in';
|
|
31
|
-
import * as i4
|
|
31
|
+
import * as i4 from '@progress/kendo-angular-dialog';
|
|
32
32
|
import { DialogsModule } from '@progress/kendo-angular-dialog';
|
|
33
33
|
import { loadStripe } from '@stripe/stripe-js';
|
|
34
|
-
import * as i4$
|
|
34
|
+
import * as i4$1 from '@progress/kendo-angular-label';
|
|
35
35
|
import { LabelModule } from '@progress/kendo-angular-label';
|
|
36
36
|
import * as i3 from '@progress/kendo-angular-dropdowns';
|
|
37
37
|
import { DropDownsModule } from '@progress/kendo-angular-dropdowns';
|
|
38
38
|
import * as i3$1 from 'angular-froala-wysiwyg';
|
|
39
39
|
import { FERootModule } from 'angular-froala-wysiwyg';
|
|
40
|
-
import * as i1$
|
|
40
|
+
import * as i1$8 from '@fortawesome/angular-fontawesome';
|
|
41
41
|
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
|
|
42
|
-
import * as i1$
|
|
42
|
+
import * as i1$9 from '@progress/kendo-angular-pager';
|
|
43
43
|
import { PagerModule } from '@progress/kendo-angular-pager';
|
|
44
|
-
import * as i1$
|
|
44
|
+
import * as i1$a from 'ngx-captcha';
|
|
45
45
|
import { NgxCaptchaModule } from 'ngx-captcha';
|
|
46
46
|
import { faCheckCircle, faCircleXmark, faDatabase, faCopy } from '@fortawesome/free-solid-svg-icons';
|
|
47
47
|
import { ButtonsModule } from '@progress/kendo-angular-buttons';
|
|
@@ -1837,23 +1837,17 @@ class AuthService extends ApiServiceBase {
|
|
|
1837
1837
|
this.msalService = msalService;
|
|
1838
1838
|
this.msalBroadcastService = msalBroadcastService;
|
|
1839
1839
|
this.msalDestroying$ = new Subject();
|
|
1840
|
-
this.initialized = false;
|
|
1841
1840
|
this.init();
|
|
1842
1841
|
}
|
|
1843
1842
|
ngOnDestroy() {
|
|
1844
1843
|
this.msalDestroying$.next(undefined);
|
|
1845
1844
|
this.msalDestroying$.complete();
|
|
1846
1845
|
}
|
|
1846
|
+
setDefaults() {
|
|
1847
|
+
}
|
|
1847
1848
|
init() {
|
|
1848
1849
|
this.setDefaults();
|
|
1849
|
-
this.
|
|
1850
|
-
this.initialized = true;
|
|
1851
|
-
console.log(`msal.app: initMSAL started`);
|
|
1852
|
-
this.initMSAL();
|
|
1853
|
-
console.log(`msal.app: initMSAL finished`);
|
|
1854
|
-
});
|
|
1855
|
-
}
|
|
1856
|
-
setDefaults() {
|
|
1850
|
+
this.initMSAL();
|
|
1857
1851
|
}
|
|
1858
1852
|
/*
|
|
1859
1853
|
https://github.com/AzureAD/microsoft-authentication-library-for-js/blob/dev/samples/msal-angular-v3-samples/angular-b2c-sample-app/src/app/app.component.ts
|
|
@@ -1876,7 +1870,7 @@ class AuthService extends ApiServiceBase {
|
|
|
1876
1870
|
this.resetPasswordPolicy = MSALB2C.getPolicyByType(PolicyType.resetPassword);
|
|
1877
1871
|
this.msalService.handleRedirectObservable().subscribe({
|
|
1878
1872
|
next: (result) => {
|
|
1879
|
-
console.log(`msal
|
|
1873
|
+
console.log(`iam.msal: handleRedirectObservable`);
|
|
1880
1874
|
},
|
|
1881
1875
|
error: (error) => {
|
|
1882
1876
|
console.log(error);
|
|
@@ -1899,7 +1893,7 @@ class AuthService extends ApiServiceBase {
|
|
|
1899
1893
|
.subscribe((msg) => {
|
|
1900
1894
|
switch (msg.eventType) {
|
|
1901
1895
|
case EventType.INITIALIZE_END:
|
|
1902
|
-
console.log(`msal
|
|
1896
|
+
console.log(`iam.msal: INITIALIZE_END fired`);
|
|
1903
1897
|
break;
|
|
1904
1898
|
case EventType.ACCOUNT_ADDED:
|
|
1905
1899
|
case EventType.ACCOUNT_REMOVED:
|
|
@@ -1994,13 +1988,13 @@ class AuthService extends ApiServiceBase {
|
|
|
1994
1988
|
* Initial status before interaction occurs
|
|
1995
1989
|
*/
|
|
1996
1990
|
case InteractionStatus.Startup:
|
|
1997
|
-
console.log(`msal
|
|
1991
|
+
console.log(`iam.msal: InteractionStatus.Startup`);
|
|
1998
1992
|
break;
|
|
1999
1993
|
/**
|
|
2000
1994
|
* Status set when interaction is complete
|
|
2001
1995
|
*/
|
|
2002
1996
|
case InteractionStatus.None:
|
|
2003
|
-
console.log(`msal
|
|
1997
|
+
console.log(`iam.msal: InteractionStatus.None`);
|
|
2004
1998
|
MSALRedirect.handle(this.router, 'msalBroadcastService.inProgress$ InteractionStatus.None');
|
|
2005
1999
|
this.checkAndSetActiveAccount();
|
|
2006
2000
|
this.appContext.updateCurrent();
|
|
@@ -2009,15 +2003,10 @@ class AuthService extends ApiServiceBase {
|
|
|
2009
2003
|
});
|
|
2010
2004
|
}
|
|
2011
2005
|
checkAndSetActiveAccount() {
|
|
2012
|
-
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
|
|
2016
|
-
this.msalService.instance.setActiveAccount(accounts[0]);
|
|
2017
|
-
}
|
|
2018
|
-
}
|
|
2019
|
-
catch (error) {
|
|
2020
|
-
console.error("An error occurred: ", error);
|
|
2006
|
+
let activeAccount = this.msalService.instance.getActiveAccount();
|
|
2007
|
+
let accounts = this.msalService.instance.getAllAccounts();
|
|
2008
|
+
if (!activeAccount && accounts.length > 0) {
|
|
2009
|
+
this.msalService.instance.setActiveAccount(accounts[0]);
|
|
2021
2010
|
}
|
|
2022
2011
|
}
|
|
2023
2012
|
isPopup(popup) {
|
|
@@ -2043,13 +2032,8 @@ class AuthService extends ApiServiceBase {
|
|
|
2043
2032
|
}
|
|
2044
2033
|
// Public funcs
|
|
2045
2034
|
getActiveAccount() {
|
|
2046
|
-
|
|
2047
|
-
|
|
2048
|
-
return this.msalService.instance.getActiveAccount();
|
|
2049
|
-
}
|
|
2050
|
-
catch (error) {
|
|
2051
|
-
console.error("An error occurred: ", error);
|
|
2052
|
-
}
|
|
2035
|
+
this.checkAndSetActiveAccount();
|
|
2036
|
+
return this.msalService.instance.getActiveAccount();
|
|
2053
2037
|
}
|
|
2054
2038
|
getUserEmail() {
|
|
2055
2039
|
let user = this.appContext.user;
|
|
@@ -2090,19 +2074,19 @@ class AuthService extends ApiServiceBase {
|
|
|
2090
2074
|
};
|
|
2091
2075
|
}
|
|
2092
2076
|
//Logging
|
|
2093
|
-
console.log("SSO in progress");
|
|
2077
|
+
console.log("iam.msal.sso: SSO in progress");
|
|
2094
2078
|
if (cls) {
|
|
2095
2079
|
QSUtils.clearKey("cls=1", true, true);
|
|
2096
2080
|
}
|
|
2097
2081
|
return this.msalService.ssoSilent(ssoSilentRequest).pipe(map$1(response => {
|
|
2098
2082
|
QSUtils.clearSSO();
|
|
2099
2083
|
//Logging
|
|
2100
|
-
console.log("SSO have been successfully done");
|
|
2084
|
+
console.log("iam.msal.sso: SSO have been successfully done");
|
|
2101
2085
|
return response.accessToken;
|
|
2102
2086
|
}), catchError(error => {
|
|
2103
2087
|
QSUtils.clearSSO();
|
|
2104
2088
|
//Logging
|
|
2105
|
-
console.log("SSO silent token acquisition
|
|
2089
|
+
console.log("iam.msal.sso: SSO silent token acquisition failed");
|
|
2106
2090
|
console.error(error);
|
|
2107
2091
|
if (error instanceof InteractionRequiredAuthError) {
|
|
2108
2092
|
return this.acquireToken();
|
|
@@ -2111,26 +2095,21 @@ class AuthService extends ApiServiceBase {
|
|
|
2111
2095
|
}));
|
|
2112
2096
|
}
|
|
2113
2097
|
//2. if isUserAuthenticated
|
|
2114
|
-
|
|
2115
|
-
|
|
2116
|
-
|
|
2117
|
-
|
|
2118
|
-
|
|
2119
|
-
|
|
2120
|
-
|
|
2121
|
-
return
|
|
2122
|
-
|
|
2123
|
-
|
|
2124
|
-
|
|
2125
|
-
|
|
2126
|
-
|
|
2127
|
-
|
|
2128
|
-
|
|
2129
|
-
}));
|
|
2130
|
-
}
|
|
2131
|
-
}
|
|
2132
|
-
catch (error) {
|
|
2133
|
-
console.error("An error occurred: ", error);
|
|
2098
|
+
let activeAccount = this.getActiveAccount();
|
|
2099
|
+
if (activeAccount) {
|
|
2100
|
+
let silentRequest = {
|
|
2101
|
+
scopes: MSALUtils.getApiScopes(),
|
|
2102
|
+
account: activeAccount
|
|
2103
|
+
};
|
|
2104
|
+
return this.msalService.acquireTokenSilent(silentRequest).pipe(map$1(response => {
|
|
2105
|
+
return response.accessToken;
|
|
2106
|
+
}), catchError(error => {
|
|
2107
|
+
console.log("iam.msal.sso: Silent token acquisition failed.");
|
|
2108
|
+
if (error instanceof InteractionRequiredAuthError) {
|
|
2109
|
+
return this.acquireToken();
|
|
2110
|
+
}
|
|
2111
|
+
return of(null);
|
|
2112
|
+
}));
|
|
2134
2113
|
}
|
|
2135
2114
|
return of(null);
|
|
2136
2115
|
}
|
|
@@ -2204,13 +2183,7 @@ class AuthService extends ApiServiceBase {
|
|
|
2204
2183
|
}
|
|
2205
2184
|
//MSAL check
|
|
2206
2185
|
isUserAuthenticated() {
|
|
2207
|
-
|
|
2208
|
-
return this.msalService.instance.getActiveAccount() != null;
|
|
2209
|
-
}
|
|
2210
|
-
catch (error) {
|
|
2211
|
-
console.error("An error occurred: ", error);
|
|
2212
|
-
}
|
|
2213
|
-
return false;
|
|
2186
|
+
return this.msalService.instance.getActiveAccount() != null;
|
|
2214
2187
|
}
|
|
2215
2188
|
//MSAL + appContext check
|
|
2216
2189
|
isUserSignedIn() {
|
|
@@ -2256,7 +2229,7 @@ class AuthService extends ApiServiceBase {
|
|
|
2256
2229
|
};
|
|
2257
2230
|
this.login(resetPasswordFlowRequest);
|
|
2258
2231
|
}
|
|
2259
|
-
static { this.ɵfac = function AuthService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || AuthService)(i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(i1$2.Router), i0.ɵɵinject(AppContextService), i0.ɵɵinject(MSAL_GUARD_CONFIG), i0.ɵɵinject(
|
|
2232
|
+
static { this.ɵfac = function AuthService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || AuthService)(i0.ɵɵinject(i1.HttpClient), i0.ɵɵinject(i1$2.Router), i0.ɵɵinject(AppContextService), i0.ɵɵinject(MSAL_GUARD_CONFIG), i0.ɵɵinject(i1$3.MsalService), i0.ɵɵinject(i1$3.MsalBroadcastService)); }; }
|
|
2260
2233
|
static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: AuthService, factory: AuthService.ɵfac, providedIn: 'root' }); }
|
|
2261
2234
|
}
|
|
2262
2235
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AuthService, [{
|
|
@@ -2267,7 +2240,7 @@ class AuthService extends ApiServiceBase {
|
|
|
2267
2240
|
}], () => [{ type: i1.HttpClient }, { type: i1$2.Router }, { type: AppContextService }, { type: undefined, decorators: [{
|
|
2268
2241
|
type: Inject,
|
|
2269
2242
|
args: [MSAL_GUARD_CONFIG]
|
|
2270
|
-
}] }, { type:
|
|
2243
|
+
}] }, { type: i1$3.MsalService }, { type: i1$3.MsalBroadcastService }], null); })();
|
|
2271
2244
|
|
|
2272
2245
|
/*
|
|
2273
2246
|
<file>
|
|
@@ -2441,7 +2414,7 @@ class AuthenticationGuard extends MsalGuard {
|
|
|
2441
2414
|
this.setInteractionType(route);
|
|
2442
2415
|
return super.canActivate(route, state);
|
|
2443
2416
|
}
|
|
2444
|
-
static { this.ɵfac = function AuthenticationGuard_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || AuthenticationGuard)(i0.ɵɵinject(MSAL_GUARD_CONFIG), i0.ɵɵinject(
|
|
2417
|
+
static { this.ɵfac = function AuthenticationGuard_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || AuthenticationGuard)(i0.ɵɵinject(MSAL_GUARD_CONFIG), i0.ɵɵinject(i1$3.MsalBroadcastService), i0.ɵɵinject(i1$3.MsalService), i0.ɵɵinject(i1$1.Location), i0.ɵɵinject(i1$2.Router)); }; }
|
|
2445
2418
|
static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: AuthenticationGuard, factory: AuthenticationGuard.ɵfac }); }
|
|
2446
2419
|
}
|
|
2447
2420
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AuthenticationGuard, [{
|
|
@@ -2449,7 +2422,7 @@ class AuthenticationGuard extends MsalGuard {
|
|
|
2449
2422
|
}], () => [{ type: undefined, decorators: [{
|
|
2450
2423
|
type: Inject,
|
|
2451
2424
|
args: [MSAL_GUARD_CONFIG]
|
|
2452
|
-
}] }, { type:
|
|
2425
|
+
}] }, { type: i1$3.MsalBroadcastService }, { type: i1$3.MsalService }, { type: i1$1.Location }, { type: i1$2.Router }], null); })();
|
|
2453
2426
|
|
|
2454
2427
|
/*
|
|
2455
2428
|
<file>
|
|
@@ -3021,7 +2994,7 @@ class LocalizationService {
|
|
|
3021
2994
|
}
|
|
3022
2995
|
return formatDistanceToNow(d, this.dateFnsLocale);
|
|
3023
2996
|
}
|
|
3024
|
-
static { this.ɵfac = function LocalizationService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || LocalizationService)(i0.ɵɵinject(i1$
|
|
2997
|
+
static { this.ɵfac = function LocalizationService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || LocalizationService)(i0.ɵɵinject(i1$4.TranslateService)); }; }
|
|
3025
2998
|
static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: LocalizationService, factory: LocalizationService.ɵfac, providedIn: 'root' }); }
|
|
3026
2999
|
}
|
|
3027
3000
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LocalizationService, [{
|
|
@@ -3029,7 +3002,7 @@ class LocalizationService {
|
|
|
3029
3002
|
args: [{
|
|
3030
3003
|
providedIn: 'root'
|
|
3031
3004
|
}]
|
|
3032
|
-
}], () => [{ type: i1$
|
|
3005
|
+
}], () => [{ type: i1$4.TranslateService }], { langchange: [{
|
|
3033
3006
|
type: Output
|
|
3034
3007
|
}] }); })();
|
|
3035
3008
|
|
|
@@ -3193,7 +3166,7 @@ class LocalizationSettingsModule {
|
|
|
3193
3166
|
exports: []
|
|
3194
3167
|
}]
|
|
3195
3168
|
}], () => [{ type: i0.Injector }], null); })();
|
|
3196
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(LocalizationSettingsModule, { imports: [i1$
|
|
3169
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(LocalizationSettingsModule, { imports: [i1$4.TranslateModule] }); })();
|
|
3197
3170
|
|
|
3198
3171
|
/*
|
|
3199
3172
|
<file>
|
|
@@ -3512,13 +3485,13 @@ class NotificationService {
|
|
|
3512
3485
|
let title = 'Authentication Required';
|
|
3513
3486
|
this.warning(text, null, title);
|
|
3514
3487
|
}
|
|
3515
|
-
static { this.ɵfac = function NotificationService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || NotificationService)(i0.ɵɵinject(i1$
|
|
3488
|
+
static { this.ɵfac = function NotificationService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || NotificationService)(i0.ɵɵinject(i1$5.ToastrService)); }; }
|
|
3516
3489
|
static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: NotificationService, factory: NotificationService.ɵfac, providedIn: 'root' }); }
|
|
3517
3490
|
}
|
|
3518
3491
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NotificationService, [{
|
|
3519
3492
|
type: Injectable,
|
|
3520
3493
|
args: [{ providedIn: 'root' }]
|
|
3521
|
-
}], () => [{ type: i1$
|
|
3494
|
+
}], () => [{ type: i1$5.ToastrService }], null); })();
|
|
3522
3495
|
|
|
3523
3496
|
class BrowserService {
|
|
3524
3497
|
constructor(platform, breakpointObserver) {
|
|
@@ -3608,7 +3581,7 @@ class BrowserService {
|
|
|
3608
3581
|
get userAgent() {
|
|
3609
3582
|
return navigator.userAgent.toLowerCase();
|
|
3610
3583
|
}
|
|
3611
|
-
static { this.ɵfac = function BrowserService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || BrowserService)(i0.ɵɵinject(i1$
|
|
3584
|
+
static { this.ɵfac = function BrowserService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || BrowserService)(i0.ɵɵinject(i1$6.Platform), i0.ɵɵinject(i2.BreakpointObserver)); }; }
|
|
3612
3585
|
static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: BrowserService, factory: BrowserService.ɵfac, providedIn: 'root' }); }
|
|
3613
3586
|
}
|
|
3614
3587
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BrowserService, [{
|
|
@@ -3616,7 +3589,7 @@ class BrowserService {
|
|
|
3616
3589
|
args: [{
|
|
3617
3590
|
providedIn: 'root'
|
|
3618
3591
|
}]
|
|
3619
|
-
}], () => [{ type: i1$
|
|
3592
|
+
}], () => [{ type: i1$6.Platform }, { type: i2.BreakpointObserver }], null); })();
|
|
3620
3593
|
|
|
3621
3594
|
/*
|
|
3622
3595
|
<file>
|
|
@@ -3670,7 +3643,7 @@ class DigitalMarketingService {
|
|
|
3670
3643
|
link.setAttribute('rel', 'canonical');
|
|
3671
3644
|
link.setAttribute('href', canUrl);
|
|
3672
3645
|
}
|
|
3673
|
-
static { this.ɵfac = function DigitalMarketingService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || DigitalMarketingService)(i0.ɵɵinject(i1$
|
|
3646
|
+
static { this.ɵfac = function DigitalMarketingService_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || DigitalMarketingService)(i0.ɵɵinject(i1$7.Title), i0.ɵɵinject(i1$7.Meta), i0.ɵɵinject(DOCUMENT)); }; }
|
|
3674
3647
|
static { this.ɵprov = /*@__PURE__*/ i0.ɵɵdefineInjectable({ token: DigitalMarketingService, factory: DigitalMarketingService.ɵfac, providedIn: 'root' }); }
|
|
3675
3648
|
}
|
|
3676
3649
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DigitalMarketingService, [{
|
|
@@ -3678,7 +3651,7 @@ class DigitalMarketingService {
|
|
|
3678
3651
|
args: [{
|
|
3679
3652
|
providedIn: 'root'
|
|
3680
3653
|
}]
|
|
3681
|
-
}], () => [{ type: i1$
|
|
3654
|
+
}], () => [{ type: i1$7.Title }, { type: i1$7.Meta }, { type: undefined, decorators: [{
|
|
3682
3655
|
type: Inject,
|
|
3683
3656
|
args: [DOCUMENT]
|
|
3684
3657
|
}] }], null); })();
|
|
@@ -5459,7 +5432,7 @@ class BraintreeDialog extends DialogBase {
|
|
|
5459
5432
|
i0.ɵɵtemplate(0, BraintreeDialog_Conditional_0_Template, 11, 3, "div", 0);
|
|
5460
5433
|
} if (rf & 2) {
|
|
5461
5434
|
i0.ɵɵconditional(ctx.visible ? 0 : -1);
|
|
5462
|
-
} }, dependencies: [i4
|
|
5435
|
+
} }, dependencies: [i4.DialogComponent, i4.DialogTitleBarComponent, i4.DialogActionsComponent], encapsulation: 2 }); }
|
|
5463
5436
|
}
|
|
5464
5437
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BraintreeDialog, [{
|
|
5465
5438
|
type: Component,
|
|
@@ -6244,7 +6217,7 @@ class StripeDialog extends DialogBase {
|
|
|
6244
6217
|
i0.ɵɵtemplate(0, StripeDialog_Conditional_0_Template, 6, 3, "div", 0);
|
|
6245
6218
|
} if (rf & 2) {
|
|
6246
6219
|
i0.ɵɵconditional(ctx.visible ? 0 : -1);
|
|
6247
|
-
} }, dependencies: [i4
|
|
6220
|
+
} }, dependencies: [i4.DialogComponent, i4.DialogTitleBarComponent], encapsulation: 2 }); }
|
|
6248
6221
|
}
|
|
6249
6222
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StripeDialog, [{
|
|
6250
6223
|
type: Component,
|
|
@@ -7264,7 +7237,7 @@ class CountryDropdownlist extends EditComponentBase {
|
|
|
7264
7237
|
i0.ɵɵproperty("ngIf", ctx.isNgModelBased);
|
|
7265
7238
|
i0.ɵɵadvance();
|
|
7266
7239
|
i0.ɵɵproperty("ngIf", !ctx.isNgModelBased);
|
|
7267
|
-
} }, 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$
|
|
7240
|
+
} }, 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 }); }
|
|
7268
7241
|
}
|
|
7269
7242
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CountryDropdownlist, [{
|
|
7270
7243
|
type: Component,
|
|
@@ -7329,7 +7302,7 @@ class LanguageDropdownlist extends EditComponentBase {
|
|
|
7329
7302
|
i0.ɵɵproperty("ngIf", ctx.isNgModelBased);
|
|
7330
7303
|
i0.ɵɵadvance();
|
|
7331
7304
|
i0.ɵɵproperty("ngIf", !ctx.isNgModelBased);
|
|
7332
|
-
} }, dependencies: [i1$1.NgIf, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.FormGroupDirective, i2$1.FormControlName, i3.DropDownListComponent, i4$
|
|
7305
|
+
} }, dependencies: [i1$1.NgIf, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.FormGroupDirective, i2$1.FormControlName, i3.DropDownListComponent, i4$1.LabelComponent, NativeElementDirective], encapsulation: 2 }); }
|
|
7333
7306
|
}
|
|
7334
7307
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LanguageDropdownlist, [{
|
|
7335
7308
|
type: Component,
|
|
@@ -7577,7 +7550,7 @@ class ModerationStatusDropdownlist extends EnumEditComponentBase {
|
|
|
7577
7550
|
i0.ɵɵproperty("ngIf", ctx.isNgModelBased);
|
|
7578
7551
|
i0.ɵɵadvance();
|
|
7579
7552
|
i0.ɵɵproperty("ngIf", !ctx.isNgModelBased);
|
|
7580
|
-
} }, dependencies: [i1$1.NgIf, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.FormGroupDirective, i2$1.FormControlName, i2$1.NgModel, i3.DropDownListComponent, i4$
|
|
7553
|
+
} }, 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 }); }
|
|
7581
7554
|
}
|
|
7582
7555
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ModerationStatusDropdownlist, [{
|
|
7583
7556
|
type: Component,
|
|
@@ -7656,7 +7629,7 @@ class PublishStatusDropdownlist extends EnumEditComponentBase {
|
|
|
7656
7629
|
i0.ɵɵproperty("ngIf", ctx.isNgModelBased);
|
|
7657
7630
|
i0.ɵɵadvance();
|
|
7658
7631
|
i0.ɵɵproperty("ngIf", !ctx.isNgModelBased);
|
|
7659
|
-
} }, dependencies: [i1$1.NgIf, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.FormGroupDirective, i2$1.FormControlName, i2$1.NgModel, i3.DropDownListComponent, i4$
|
|
7632
|
+
} }, 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 }); }
|
|
7660
7633
|
}
|
|
7661
7634
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PublishStatusDropdownlist, [{
|
|
7662
7635
|
type: Component,
|
|
@@ -8040,7 +8013,7 @@ class HtmlEditorComponent extends HtmlEditorComponentBase {
|
|
|
8040
8013
|
i0.ɵɵproperty("ngIf", ctx.isNgModelBased);
|
|
8041
8014
|
i0.ɵɵadvance();
|
|
8042
8015
|
i0.ɵɵproperty("ngIf", !ctx.isNgModelBased);
|
|
8043
|
-
} }, dependencies: [i1$1.NgIf, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.FormGroupDirective, i2$1.FormControlName, i3$1.FroalaEditorDirective, i4$
|
|
8016
|
+
} }, 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 }); }
|
|
8044
8017
|
}
|
|
8045
8018
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(HtmlEditorComponent, [{
|
|
8046
8019
|
type: Component,
|
|
@@ -8077,7 +8050,7 @@ class CheckIconComponent {
|
|
|
8077
8050
|
i0.ɵɵprojection(1);
|
|
8078
8051
|
} if (rf & 2) {
|
|
8079
8052
|
i0.ɵɵproperty("icon", ctx.checked ? "check-circle" : "circle-xmark")("ngClass", ctx.checked ? "text-success" : "text-danger");
|
|
8080
|
-
} }, dependencies: [i1$1.NgClass, i1$
|
|
8053
|
+
} }, dependencies: [i1$1.NgClass, i1$8.FaIconComponent], encapsulation: 2 }); }
|
|
8081
8054
|
}
|
|
8082
8055
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CheckIconComponent, [{
|
|
8083
8056
|
type: Component,
|
|
@@ -8304,7 +8277,7 @@ class ControlPanelComponent extends ComponentBase {
|
|
|
8304
8277
|
i0.ɵɵconditional(ctx.viewTypesVisible ? 7 : -1);
|
|
8305
8278
|
i0.ɵɵadvance();
|
|
8306
8279
|
i0.ɵɵconditional(ctx.addButtonVisible ? 8 : -1);
|
|
8307
|
-
} }, dependencies: [i1$1.NgClass, i2$1.NgControlStatus, i2$1.NgModel, i1$
|
|
8280
|
+
} }, dependencies: [i1$1.NgClass, i2$1.NgControlStatus, i2$1.NgModel, i1$8.FaIconComponent, i3.DropDownListComponent, AReplacerDirective], encapsulation: 2 }); }
|
|
8308
8281
|
}
|
|
8309
8282
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ControlPanelComponent, [{
|
|
8310
8283
|
type: Component,
|
|
@@ -8396,7 +8369,7 @@ class DataPagerComponent extends ComponentBase {
|
|
|
8396
8369
|
i0.ɵɵadvance();
|
|
8397
8370
|
i0.ɵɵstyleMap(ctx.style);
|
|
8398
8371
|
i0.ɵɵproperty("total", ctx.totalItems)("pageSize", ctx.pageSize)("pageSizeValues", ctx.pageSizes)("skip", ctx.skipItems);
|
|
8399
|
-
} }, dependencies: [i1$
|
|
8372
|
+
} }, dependencies: [i1$9.PagerComponent], encapsulation: 2 }); }
|
|
8400
8373
|
}
|
|
8401
8374
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DataPagerComponent, [{
|
|
8402
8375
|
type: Component,
|
|
@@ -8761,7 +8734,7 @@ class NodataComponent {
|
|
|
8761
8734
|
i0.ɵɵtemplate(0, NodataComponent_Conditional_0_Template, 6, 2, "div", 0);
|
|
8762
8735
|
} if (rf & 2) {
|
|
8763
8736
|
i0.ɵɵconditional(!ctx.dataLoading && ctx.dataLoaded && !ctx.dataFound ? 0 : -1);
|
|
8764
|
-
} }, dependencies: [i1$1.NgIf, i1$
|
|
8737
|
+
} }, dependencies: [i1$1.NgIf, i1$8.FaIconComponent], encapsulation: 2 }); }
|
|
8765
8738
|
}
|
|
8766
8739
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NodataComponent, [{
|
|
8767
8740
|
type: Component,
|
|
@@ -8996,7 +8969,7 @@ class Copy2ClipboardComponent extends ComponentBase {
|
|
|
8996
8969
|
i0.ɵɵelementEnd();
|
|
8997
8970
|
} if (rf & 2) {
|
|
8998
8971
|
i0.ɵɵclassMapInterpolate1("btn btn-icon ", ctx.classes, "");
|
|
8999
|
-
} }, dependencies: [i1$
|
|
8972
|
+
} }, dependencies: [i1$8.FaIconComponent, AReplacerDirective], encapsulation: 2 }); }
|
|
9000
8973
|
}
|
|
9001
8974
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(Copy2ClipboardComponent, [{
|
|
9002
8975
|
type: Component,
|
|
@@ -9111,7 +9084,7 @@ class UrlSlugComponent extends EditComponentBase {
|
|
|
9111
9084
|
i0.ɵɵproperty("formControlName", ctx.controlName);
|
|
9112
9085
|
i0.ɵɵadvance();
|
|
9113
9086
|
i0.ɵɵproperty("ngIf", ctx.isGoButtonVisible);
|
|
9114
|
-
} }, dependencies: [i1$1.NgClass, i1$1.NgIf, i2$1.DefaultValueAccessor, i2$1.NgControlStatus, i2$1.NgControlStatusGroup, i2$1.FormGroupDirective, i2$1.FormControlName, i4$
|
|
9087
|
+
} }, 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 }); }
|
|
9115
9088
|
}
|
|
9116
9089
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(UrlSlugComponent, [{
|
|
9117
9090
|
type: Component,
|
|
@@ -9453,7 +9426,7 @@ class ContactUsForm extends EditComponentBase {
|
|
|
9453
9426
|
onTopicChange(event) {
|
|
9454
9427
|
this.selectedTopic = event.target.value;
|
|
9455
9428
|
}
|
|
9456
|
-
static { this.ɵfac = function ContactUsForm_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ContactUsForm)(i0.ɵɵdirectiveInject(i1$
|
|
9429
|
+
static { this.ɵfac = function ContactUsForm_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ContactUsForm)(i0.ɵɵdirectiveInject(i1$a.ReCaptchaV3Service), i0.ɵɵdirectiveInject(i2$1.FormBuilder), i0.ɵɵdirectiveInject(AppContextService), i0.ɵɵdirectiveInject(EmailsApiService), i0.ɵɵdirectiveInject(NotificationService)); }; }
|
|
9457
9430
|
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) {
|
|
9458
9431
|
i0.ɵɵelementStart(0, "form", 0);
|
|
9459
9432
|
i0.ɵɵlistener("ngSubmit", function ContactUsForm_Template_form_ngSubmit_0_listener() { return ctx.onSubmit(); });
|
|
@@ -9530,7 +9503,7 @@ class ContactUsForm extends EditComponentBase {
|
|
|
9530
9503
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ContactUsForm, [{
|
|
9531
9504
|
type: Component,
|
|
9532
9505
|
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" }]
|
|
9533
|
-
}], () => [{ type: i1$
|
|
9506
|
+
}], () => [{ type: i1$a.ReCaptchaV3Service }, { type: i2$1.FormBuilder }, { type: AppContextService }, { type: EmailsApiService }, { type: NotificationService }], { showActionButtons: [{
|
|
9534
9507
|
type: Input
|
|
9535
9508
|
}], submit: [{
|
|
9536
9509
|
type: Output
|
|
@@ -9597,7 +9570,7 @@ class ContactUsDialog extends DialogBase {
|
|
|
9597
9570
|
i0.ɵɵtemplate(0, ContactUsDialog_kendo_dialog_0_Template, 10, 2, "kendo-dialog", 1);
|
|
9598
9571
|
} if (rf & 2) {
|
|
9599
9572
|
i0.ɵɵproperty("ngIf", ctx.isOpen);
|
|
9600
|
-
} }, dependencies: [i1$1.NgIf, i4
|
|
9573
|
+
} }, dependencies: [i1$1.NgIf, i4.DialogComponent, i4.DialogActionsComponent, ContactUsForm], encapsulation: 2 }); }
|
|
9601
9574
|
}
|
|
9602
9575
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ContactUsDialog, [{
|
|
9603
9576
|
type: Component,
|
|
@@ -10153,7 +10126,7 @@ class SafeHtmlPipe {
|
|
|
10153
10126
|
transform(value) {
|
|
10154
10127
|
return this.sanitized.bypassSecurityTrustHtml(value);
|
|
10155
10128
|
}
|
|
10156
|
-
static { this.ɵfac = function SafeHtmlPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SafeHtmlPipe)(i0.ɵɵdirectiveInject(i1$
|
|
10129
|
+
static { this.ɵfac = function SafeHtmlPipe_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || SafeHtmlPipe)(i0.ɵɵdirectiveInject(i1$7.DomSanitizer, 16)); }; }
|
|
10157
10130
|
static { this.ɵpipe = /*@__PURE__*/ i0.ɵɵdefinePipe({ name: "safeHtml", type: SafeHtmlPipe, pure: true, standalone: false }); }
|
|
10158
10131
|
}
|
|
10159
10132
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(SafeHtmlPipe, [{
|
|
@@ -10162,7 +10135,7 @@ class SafeHtmlPipe {
|
|
|
10162
10135
|
name: 'safeHtml',
|
|
10163
10136
|
standalone: false
|
|
10164
10137
|
}]
|
|
10165
|
-
}], () => [{ type: i1$
|
|
10138
|
+
}], () => [{ type: i1$7.DomSanitizer }], null); })();
|
|
10166
10139
|
|
|
10167
10140
|
/*
|
|
10168
10141
|
<file>
|
|
@@ -10295,7 +10268,7 @@ class AnatolyCoreModule {
|
|
|
10295
10268
|
}]
|
|
10296
10269
|
}], () => [{ type: i0.Injector }], null); })();
|
|
10297
10270
|
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(AnatolyCoreModule, { imports: [CommonModule,
|
|
10298
|
-
RouterModule, i1$
|
|
10271
|
+
RouterModule, i1$5.ToastrModule, LocalizationSettingsModule,
|
|
10299
10272
|
LocalizationModule], exports: [RouterModule,
|
|
10300
10273
|
LocalizationSettingsModule,
|
|
10301
10274
|
LocalizationModule] }); })();
|
|
@@ -10475,30 +10448,27 @@ function loggerCallback(logLevel, message, containsPii) {
|
|
|
10475
10448
|
</file>
|
|
10476
10449
|
*/
|
|
10477
10450
|
//Node
|
|
10451
|
+
function initializeMsalFactory(msalInstance, auth) {
|
|
10452
|
+
return () => msalInstance.initialize().then(() => auth.init());
|
|
10453
|
+
}
|
|
10478
10454
|
const MSALProviders = [
|
|
10455
|
+
MsalService,
|
|
10456
|
+
MsalBroadcastService,
|
|
10457
|
+
//App
|
|
10458
|
+
AuthService,
|
|
10459
|
+
AuthenticationGuard,
|
|
10460
|
+
AdminGuard,
|
|
10479
10461
|
{
|
|
10480
10462
|
provide: HTTP_INTERCEPTORS,
|
|
10481
10463
|
useClass: MsalInterceptor,
|
|
10482
10464
|
multi: true
|
|
10483
10465
|
},
|
|
10484
10466
|
{
|
|
10485
|
-
provide:
|
|
10486
|
-
useFactory:
|
|
10487
|
-
|
|
10488
|
-
|
|
10489
|
-
|
|
10490
|
-
useFactory: MSALGuardConfigFactory
|
|
10491
|
-
},
|
|
10492
|
-
{
|
|
10493
|
-
provide: MSAL_INSTANCE,
|
|
10494
|
-
useFactory: MSALInstanceFactory
|
|
10495
|
-
},
|
|
10496
|
-
MsalService,
|
|
10497
|
-
MsalBroadcastService,
|
|
10498
|
-
//App
|
|
10499
|
-
AuthService,
|
|
10500
|
-
AuthenticationGuard,
|
|
10501
|
-
AdminGuard
|
|
10467
|
+
provide: APP_INITIALIZER,
|
|
10468
|
+
useFactory: initializeMsalFactory,
|
|
10469
|
+
deps: [MSAL_INSTANCE, AuthService],
|
|
10470
|
+
multi: true
|
|
10471
|
+
}
|
|
10502
10472
|
];
|
|
10503
10473
|
class AnatolyIAMModule {
|
|
10504
10474
|
static { this.ɵfac = function AnatolyIAMModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || AnatolyIAMModule)(); }; }
|
|
@@ -10508,7 +10478,7 @@ class AnatolyIAMModule {
|
|
|
10508
10478
|
], imports: [CommonModule,
|
|
10509
10479
|
RouterModule,
|
|
10510
10480
|
HttpClientModule,
|
|
10511
|
-
MsalModule] }); }
|
|
10481
|
+
MsalModule.forRoot(MSALInstanceFactory(), MSALGuardConfigFactory(), MSALInterceptorConfigFactory())] }); }
|
|
10512
10482
|
}
|
|
10513
10483
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(AnatolyIAMModule, [{
|
|
10514
10484
|
type: NgModule,
|
|
@@ -10517,7 +10487,7 @@ class AnatolyIAMModule {
|
|
|
10517
10487
|
CommonModule,
|
|
10518
10488
|
RouterModule,
|
|
10519
10489
|
HttpClientModule,
|
|
10520
|
-
MsalModule
|
|
10490
|
+
MsalModule.forRoot(MSALInstanceFactory(), MSALGuardConfigFactory(), MSALInterceptorConfigFactory())
|
|
10521
10491
|
],
|
|
10522
10492
|
exports: [],
|
|
10523
10493
|
providers: [
|
|
@@ -10527,8 +10497,7 @@ class AnatolyIAMModule {
|
|
|
10527
10497
|
}], null, null); })();
|
|
10528
10498
|
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(AnatolyIAMModule, { imports: [CommonModule,
|
|
10529
10499
|
RouterModule,
|
|
10530
|
-
HttpClientModule,
|
|
10531
|
-
MsalModule] }); })();
|
|
10500
|
+
HttpClientModule, i1$3.MsalModule] }); })();
|
|
10532
10501
|
|
|
10533
10502
|
/*
|
|
10534
10503
|
<file>
|
|
@@ -10740,7 +10709,7 @@ class FaModule {
|
|
|
10740
10709
|
constructor(library) {
|
|
10741
10710
|
library.addIcons(faCheckCircle, faCircleXmark, faDatabase, faCopy);
|
|
10742
10711
|
}
|
|
10743
|
-
static { this.ɵfac = function FaModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || FaModule)(i0.ɵɵinject(i1$
|
|
10712
|
+
static { this.ɵfac = function FaModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || FaModule)(i0.ɵɵinject(i1$8.FaIconLibrary)); }; }
|
|
10744
10713
|
static { this.ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: FaModule }); }
|
|
10745
10714
|
static { this.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
|
|
10746
10715
|
FontAwesomeModule, FontAwesomeModule] }); }
|
|
@@ -10756,7 +10725,7 @@ class FaModule {
|
|
|
10756
10725
|
FontAwesomeModule
|
|
10757
10726
|
]
|
|
10758
10727
|
}]
|
|
10759
|
-
}], () => [{ type: i1$
|
|
10728
|
+
}], () => [{ type: i1$8.FaIconLibrary }], null); })();
|
|
10760
10729
|
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(FaModule, { imports: [CommonModule,
|
|
10761
10730
|
FontAwesomeModule], exports: [FontAwesomeModule] }); })();
|
|
10762
10731
|
|
|
@@ -11284,5 +11253,5 @@ class AnatolyModule {
|
|
|
11284
11253
|
* Generated bundle index. Do not edit.
|
|
11285
11254
|
*/
|
|
11286
11255
|
|
|
11287
|
-
export { AReplacerDirective, AddressComponent, AdminGuard, Alerts, AnatolyBillingModule, AnatolyCoreModule, AnatolyDataModule, AnatolyHttpInterceptor, AnatolyIAMModule, AnatolyIAMPagesModule, AnatolyModule, AnatolyUIModule, ApiServiceBase, ApiUrl, AppContextService, AppCoreSettings, AppName, AppSettings, AppVersion, AppsGoServiceBase, AuthService, AuthenticationGuard, BillingService, 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, 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, LanguageDropdownlist, 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, PromoCodesApiService, 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 };
|
|
11256
|
+
export { AReplacerDirective, AddressComponent, AdminGuard, Alerts, AnatolyBillingModule, AnatolyCoreModule, AnatolyDataModule, AnatolyHttpInterceptor, AnatolyIAMModule, AnatolyIAMPagesModule, AnatolyModule, AnatolyUIModule, ApiServiceBase, ApiUrl, AppContextService, AppCoreSettings, AppName, AppSettings, AppVersion, AppsGoServiceBase, AuthService, AuthenticationGuard, BillingService, 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, 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, LanguageDropdownlist, 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, PromoCodesApiService, 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, initializeMsalFactory, is, throwIfAlreadyLoaded, timeFormats, translateLoaderFactory };
|
|
11288
11257
|
//# sourceMappingURL=osovitny-anatoly.mjs.map
|