@osovitny/angular 4.0.0

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.
@@ -0,0 +1,1885 @@
1
+ import { Subs, ICurrentApp, IQueryParam, Mode, PaymentMethod, PaymentStage, SubscriptionProvider, IPayPalConfig, IPayPalUrlConfig, DataViewType } from '@osovitny/core';
2
+ export * from '@osovitny/core';
3
+ import * as i0 from '@angular/core';
4
+ import { OnInit, EventEmitter, OnDestroy, PipeTransform, Injector, ErrorHandler, NgZone, OnChanges, AfterViewInit, ElementRef, ChangeDetectorRef, SimpleChanges, Renderer2 } from '@angular/core';
5
+ import { HttpClient, HttpInterceptor, HttpRequest, HttpHandler, HttpEvent } from '@angular/common/http';
6
+ import * as rxjs from 'rxjs';
7
+ import { Observable, BehaviorSubject, Subject } from 'rxjs';
8
+ import * as i3 from 'ngx-toastr';
9
+ import { ToastrService } from 'ngx-toastr';
10
+ import * as i41 from '@angular/forms';
11
+ import { FormGroup, AbstractControl, ValidatorFn, AbstractControlOptions, AsyncValidatorFn, FormControl, FormBuilder, NgControl } from '@angular/forms';
12
+ import * as i2$1 from '@angular/router';
13
+ import { ActivatedRoute, Router, NavigationExtras, CanActivate, CanActivateChild, ActivatedRouteSnapshot, RouterStateSnapshot, UrlTree, Event } from '@angular/router';
14
+ import * as i3$1 from '@azure/msal-angular';
15
+ import { MsalGuardConfiguration, MsalService, MsalBroadcastService, MsalGuard } from '@azure/msal-angular';
16
+ import { AccountInfo, RedirectRequest, PopupRequest } from '@azure/msal-browser';
17
+ import * as i2 from '@ngx-translate/core';
18
+ import { TranslateService } from '@ngx-translate/core';
19
+ import { TranslateHttpLoader } from '@ngx-translate/http-loader';
20
+ import { Platform } from '@angular/cdk/platform';
21
+ import * as _angular_platform_browser from '@angular/platform-browser';
22
+ import { Title, Meta, MetaDefinition, DomSanitizer } from '@angular/platform-browser';
23
+ import * as i1 from '@angular/common';
24
+ import { Location } from '@angular/common';
25
+ import { SizeProp } from '@fortawesome/fontawesome-svg-core';
26
+ import * as i42 from 'ngx-captcha';
27
+ import { ReCaptchaV3Service } from 'ngx-captcha';
28
+ import * as i2$2 from '@fortawesome/angular-fontawesome';
29
+ import { FaIconLibrary } from '@fortawesome/angular-fontawesome';
30
+ import * as i2$3 from '@progress/kendo-angular-layout';
31
+ import * as i3$2 from '@progress/kendo-angular-buttons';
32
+ import * as i4 from '@progress/kendo-angular-dropdowns';
33
+ import * as i5 from '@progress/kendo-angular-inputs';
34
+ import * as i6 from '@progress/kendo-angular-label';
35
+ import * as i7 from '@progress/kendo-angular-scrollview';
36
+ import * as i8 from '@progress/kendo-angular-intl';
37
+ import * as i9 from '@progress/kendo-angular-dateinputs';
38
+ import * as i10 from '@progress/kendo-angular-icons';
39
+ import * as i11 from '@progress/kendo-angular-dialog';
40
+ import * as i12 from '@progress/kendo-angular-upload';
41
+ import * as i13 from '@progress/kendo-angular-scheduler';
42
+ import * as i14 from '@progress/kendo-angular-charts';
43
+ import * as i15 from '@progress/kendo-angular-grid';
44
+ import * as i16 from '@progress/kendo-angular-pager';
45
+ import * as i17 from '@progress/kendo-angular-ripple';
46
+ import * as i18 from '@progress/kendo-angular-popup';
47
+ import * as i19 from '@progress/kendo-angular-treeview';
48
+ import * as i20 from '@progress/kendo-angular-tooltip';
49
+ import * as i43 from 'angular-froala-wysiwyg';
50
+
51
+ /*!
52
+ * @osovitny/angular
53
+ * Copyright (c) 2016-2026 Osovitny
54
+ * SPDX-License-Identifier: MIT
55
+ */
56
+
57
+ declare class ApiServiceBase {
58
+ protected http: HttpClient;
59
+ private _httpNoInterceptors;
60
+ protected baseUrl: string;
61
+ protected ignoreInterceptors: boolean;
62
+ constructor(http: HttpClient);
63
+ get _http(): HttpClient;
64
+ private serializeParams;
65
+ get<T>(action: string, data?: any, responseType?: any): Observable<T>;
66
+ post(action: string, data?: any, responseType?: any): Observable<any>;
67
+ postQS(action: string, data?: any, responseType?: any): Observable<any>;
68
+ delete(action: string, data?: any, responseType?: any): Observable<any>;
69
+ getExternalTextFile(url: string): Observable<any>;
70
+ getJsonFile(fileName: string): Observable<any>;
71
+ getLibJsonFile(fileName: string): Observable<any>;
72
+ getExternalJsonFile(libname: string, fileName: string): Observable<any>;
73
+ static ɵfac: i0.ɵɵFactoryDeclaration<ApiServiceBase, never>;
74
+ static ɵprov: i0.ɵɵInjectableDeclaration<ApiServiceBase>;
75
+ }
76
+
77
+ declare class WebStorageService {
78
+ storage: Storage;
79
+ constructor(storage: string);
80
+ setItem(key: any, value: any): void;
81
+ setObject(key: any, value: any): void;
82
+ getItem(key: any): string;
83
+ getObject(key: any): any;
84
+ remove(key: any): void;
85
+ clear(): void;
86
+ }
87
+ declare class LocalStorageService extends WebStorageService {
88
+ constructor();
89
+ static ɵfac: i0.ɵɵFactoryDeclaration<LocalStorageService, never>;
90
+ static ɵprov: i0.ɵɵInjectableDeclaration<LocalStorageService>;
91
+ }
92
+ declare class SessionStorageService extends WebStorageService {
93
+ constructor();
94
+ static ɵfac: i0.ɵɵFactoryDeclaration<SessionStorageService, never>;
95
+ static ɵprov: i0.ɵɵInjectableDeclaration<SessionStorageService>;
96
+ }
97
+
98
+ declare class AppContextService extends ApiServiceBase {
99
+ protected http: HttpClient;
100
+ protected localStorage: LocalStorageService;
101
+ protected sessionStorage: SessionStorageService;
102
+ private storageKeyName;
103
+ private subscription;
104
+ private _updated;
105
+ readonly updated$: Observable<any>;
106
+ private _userUpdated;
107
+ readonly userUpdated$: Observable<any>;
108
+ private _standardJsonFilesLoaded;
109
+ readonly standardJsonFilesLoaded$: Observable<any>;
110
+ constructor(http: HttpClient, localStorage: LocalStorageService, sessionStorage: SessionStorageService);
111
+ private internalInit;
112
+ protected setDefaults?(): void;
113
+ protected setValues?(): void;
114
+ protected contextUpdated?(context: any): void;
115
+ private fireUpdated;
116
+ protected fireUserUpdated(): void;
117
+ private fireStandardJsonFilesLoaded;
118
+ private getCountriesJsonFile;
119
+ private getLanguagesJsonFile;
120
+ private getTimezonesJsonFile;
121
+ private getUSStatesJsonFile;
122
+ private getCurrent4Session;
123
+ private setCurrent2Session;
124
+ private dataReceived;
125
+ private getCurrentContext;
126
+ private updateCurrentIfExpired;
127
+ init(context?: any): void;
128
+ loadStandardJsonFiles(): Observable<any>;
129
+ loadRequiredJsonFiles(): Observable<any>;
130
+ loadRequiredItems(): Observable<any>;
131
+ updateCurrent(): void;
132
+ clearLocalStorage(): void;
133
+ clearSessionStorage(): void;
134
+ clearWebStorage(): void;
135
+ get current(): any;
136
+ set current(value: any);
137
+ get user(): any;
138
+ get version(): any;
139
+ set version(value: any);
140
+ get currency(): any;
141
+ set currency(value: any);
142
+ clearCurrency(): void;
143
+ get countries(): any;
144
+ set countries(value: any);
145
+ clearCountries(): void;
146
+ get languages(): any;
147
+ set languages(value: any);
148
+ clearLanguages(): void;
149
+ get timezones(): any;
150
+ set timezones(value: any);
151
+ clearTimezones(): void;
152
+ get usStates(): any;
153
+ set usStates(value: any);
154
+ clearUSStates(): void;
155
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppContextService, never>;
156
+ static ɵprov: i0.ɵɵInjectableDeclaration<AppContextService>;
157
+ }
158
+
159
+ /*!
160
+ * @osovitny/angular
161
+ * Copyright (c) 2016-2026 Osovitny
162
+ * SPDX-License-Identifier: MIT
163
+ */
164
+
165
+ declare class BuyAccessButtonComponent implements OnInit {
166
+ private appContext;
167
+ contextUpdated: boolean;
168
+ isUserSignedIn: boolean;
169
+ currentPlanId: number;
170
+ plan: number;
171
+ visiblePlanStatus: boolean;
172
+ visibleSignup: boolean;
173
+ planselect: EventEmitter<any>;
174
+ constructor(appContext: AppContextService);
175
+ ngOnInit(): void;
176
+ private setDefaults;
177
+ private setValues;
178
+ onPlanSelect(): void;
179
+ static ɵfac: i0.ɵɵFactoryDeclaration<BuyAccessButtonComponent, never>;
180
+ static ɵcmp: i0.ɵɵComponentDeclaration<BuyAccessButtonComponent, "osovitny-billing-buyaccess-button", never, { "plan": { "alias": "plan"; "required": false; }; "visiblePlanStatus": { "alias": "visiblePlanStatus"; "required": false; }; "visibleSignup": { "alias": "visibleSignup"; "required": false; }; }, { "planselect": "planselect"; }, never, never, false, never>;
181
+ }
182
+
183
+ /*!
184
+ * @osovitny/angular
185
+ * Copyright (c) 2016-2026 Osovitny
186
+ * SPDX-License-Identifier: MIT
187
+ */
188
+
189
+ declare class SubscribePlanButtonComponent implements OnInit {
190
+ private appContext;
191
+ contextUpdated: boolean;
192
+ isUserSignedIn: boolean;
193
+ currentPlanId: number;
194
+ requestedPlanId: number;
195
+ plan: number;
196
+ visiblePlanStatus: boolean;
197
+ visibleSignup: boolean;
198
+ planselect: EventEmitter<any>;
199
+ constructor(appContext: AppContextService);
200
+ ngOnInit(): void;
201
+ private setDefaults;
202
+ private setValues;
203
+ onPlanSelect(): void;
204
+ static ɵfac: i0.ɵɵFactoryDeclaration<SubscribePlanButtonComponent, never>;
205
+ static ɵcmp: i0.ɵɵComponentDeclaration<SubscribePlanButtonComponent, "osovitny-billing-subscribe-plan-button", never, { "plan": { "alias": "plan"; "required": false; }; "visiblePlanStatus": { "alias": "visiblePlanStatus"; "required": false; }; "visibleSignup": { "alias": "visibleSignup"; "required": false; }; }, { "planselect": "planselect"; }, never, never, false, never>;
206
+ }
207
+
208
+ /*!
209
+ * @osovitny/angular
210
+ * Copyright (c) 2016-2026 Osovitny
211
+ * SPDX-License-Identifier: MIT
212
+ */
213
+
214
+ declare class ServiceBase implements OnDestroy {
215
+ protected subs: Subs;
216
+ constructor();
217
+ ngOnDestroy(): void;
218
+ static ɵfac: i0.ɵɵFactoryDeclaration<ServiceBase, never>;
219
+ static ɵprov: i0.ɵɵInjectableDeclaration<ServiceBase>;
220
+ }
221
+
222
+ declare class GoServiceBase extends ServiceBase {
223
+ protected route: ActivatedRoute;
224
+ protected router: Router;
225
+ private initialized;
226
+ private _currentApp;
227
+ protected isDevMode: boolean;
228
+ protected get currentApp(): ICurrentApp;
229
+ constructor(route: ActivatedRoute, router: Router);
230
+ private ensureInitialized;
231
+ navigate(commands: any[], extras?: NavigationExtras, reload?: boolean): void;
232
+ getHomeUrl(): string;
233
+ locationReload(): void;
234
+ home(reload?: boolean): void;
235
+ dashboard(reload?: boolean): void;
236
+ accountClosed(): void;
237
+ error(): void;
238
+ error401(): void;
239
+ error402(): void;
240
+ error403(): void;
241
+ error404(): void;
242
+ error500(): void;
243
+ static ɵfac: i0.ɵɵFactoryDeclaration<GoServiceBase, never>;
244
+ static ɵprov: i0.ɵɵInjectableDeclaration<GoServiceBase>;
245
+ }
246
+
247
+ declare enum OsovitnyLogLevel {
248
+ Off = -1,
249
+ Error = 0,
250
+ Warning = 1,
251
+ Info = 2,
252
+ Verbose = 3
253
+ }
254
+ declare class LoggingService {
255
+ static readonly packagePrefix = "@osovitny/angular";
256
+ constructor();
257
+ private static getMessage;
258
+ private static getOptionalParams;
259
+ private static getConfiguredLogLevel;
260
+ private static isDevMode;
261
+ private static toLogLevel;
262
+ private static shouldLog;
263
+ static debug(info: any, ...optionalParams: any[]): void;
264
+ static info(info: any, ...optionalParams: any[]): void;
265
+ static warn(info: any, ...optionalParams: any[]): void;
266
+ static error(error: any, ...optionalParams: any[]): void;
267
+ debug(info: any, ...optionalParams: any[]): void;
268
+ info(info: any, ...optionalParams: any[]): void;
269
+ warn(info: any, ...optionalParams: any[]): void;
270
+ error(error: any, ...optionalParams: any[]): void;
271
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoggingService, never>;
272
+ static ɵprov: i0.ɵɵInjectableDeclaration<LoggingService>;
273
+ }
274
+
275
+ /*!
276
+ * @osovitny/angular
277
+ * Copyright (c) 2016-2026 Osovitny
278
+ * SPDX-License-Identifier: MIT
279
+ */
280
+
281
+ declare class AuthService extends ApiServiceBase implements OnDestroy {
282
+ protected http: HttpClient;
283
+ private router;
284
+ private appContext;
285
+ private msalGuardConfig;
286
+ private msalService;
287
+ private msalBroadcastService;
288
+ private logger;
289
+ private readonly msalDestroying$;
290
+ private signUpSignInPolicy;
291
+ private signUpPolicy;
292
+ private editProfilePolicy;
293
+ private resetPasswordPolicy;
294
+ constructor(http: HttpClient, router: Router, appContext: AppContextService, msalGuardConfig: MsalGuardConfiguration, msalService: MsalService, msalBroadcastService: MsalBroadcastService, logger: LoggingService);
295
+ ngOnDestroy(): void;
296
+ private setDefaults;
297
+ private initMSAL;
298
+ private checkAndSetActiveAccount;
299
+ private isPopup;
300
+ private acquireToken;
301
+ init(): void;
302
+ getActiveAccount(): AccountInfo | null;
303
+ getUserEmail(): any;
304
+ getUserName(): any;
305
+ getAccessToken(): Observable<string>;
306
+ forceReauthenticate(account?: any): void;
307
+ login(userFlowRequest?: RedirectRequest | PopupRequest, popup?: boolean): void;
308
+ logout(popup?: boolean): void;
309
+ isUserAuthenticated(): boolean;
310
+ isUserSignedIn(): boolean;
311
+ isUserAdmin(): boolean;
312
+ signUp(): void;
313
+ editProfile(): void;
314
+ resetPassword(): void;
315
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthService, never>;
316
+ static ɵprov: i0.ɵɵInjectableDeclaration<AuthService>;
317
+ }
318
+
319
+ declare class AppsGoServiceBase extends GoServiceBase {
320
+ protected route: ActivatedRoute;
321
+ protected router: Router;
322
+ protected authService: AuthService;
323
+ protected logger: LoggingService;
324
+ constructor(route: ActivatedRoute, router: Router, authService: AuthService, logger: LoggingService);
325
+ private redirectToUrl;
326
+ redirect2App(redirectTo: any, path?: any, params?: any, inNewTab?: boolean, action?: any): void;
327
+ static ɵfac: i0.ɵɵFactoryDeclaration<AppsGoServiceBase, never>;
328
+ static ɵprov: i0.ɵɵInjectableDeclaration<AppsGoServiceBase>;
329
+ }
330
+
331
+ declare class LoadingService extends BehaviorSubject<boolean> {
332
+ private counter;
333
+ private showTimeoutId;
334
+ isFreezed: boolean;
335
+ constructor();
336
+ private clearShowTimeout;
337
+ private setTimeout;
338
+ show(): void;
339
+ hide(): void;
340
+ freeze(timeout?: number): void;
341
+ reset(): void;
342
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoadingService, never>;
343
+ static ɵprov: i0.ɵɵInjectableDeclaration<LoadingService>;
344
+ }
345
+
346
+ declare class AdminGuard implements CanActivate, CanActivateChild {
347
+ private auth;
348
+ constructor(auth: AuthService);
349
+ private isUserAdmin;
350
+ canActivate(next: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean>;
351
+ canActivateChild(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean>;
352
+ static ɵfac: i0.ɵɵFactoryDeclaration<AdminGuard, never>;
353
+ static ɵprov: i0.ɵɵInjectableDeclaration<AdminGuard>;
354
+ }
355
+
356
+ /*!
357
+ * @osovitny/angular
358
+ * Copyright (c) 2016-2026 Osovitny
359
+ * SPDX-License-Identifier: MIT
360
+ */
361
+
362
+ declare class AuthenticationGuard extends MsalGuard implements CanActivate {
363
+ private _msalGuardConfig;
364
+ constructor(msalGuardConfig: MsalGuardConfiguration, msalBroadcastService: MsalBroadcastService, authService: MsalService, location: Location, router: Router);
365
+ private setInteractionType;
366
+ canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean | UrlTree>;
367
+ static ɵfac: i0.ɵɵFactoryDeclaration<AuthenticationGuard, never>;
368
+ static ɵprov: i0.ɵɵInjectableDeclaration<AuthenticationGuard>;
369
+ }
370
+
371
+ /*!
372
+ * @osovitny/angular
373
+ * Copyright (c) 2016-2026 Osovitny
374
+ * SPDX-License-Identifier: MIT
375
+ */
376
+
377
+ declare class OsovitnyHttpInterceptor implements HttpInterceptor {
378
+ protected authService: AuthService;
379
+ protected loadingService: LoadingService;
380
+ protected logger: LoggingService;
381
+ protected loadingNotRequiredTasks: string[];
382
+ protected authorizationTokenExceptions: string[];
383
+ protected autoCDNSASTokenUrls: string[];
384
+ protected externalSiteUrls: string[];
385
+ constructor(authService: AuthService, loadingService: LoadingService, logger: LoggingService);
386
+ private handleHttpRequest;
387
+ private setQS;
388
+ intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>>;
389
+ onRequestStart(loadingRequired: boolean, url: string): void;
390
+ onRequestEnd(loadingRequired: boolean, url: string): void;
391
+ static ɵfac: i0.ɵɵFactoryDeclaration<OsovitnyHttpInterceptor, never>;
392
+ static ɵprov: i0.ɵɵInjectableDeclaration<OsovitnyHttpInterceptor>;
393
+ }
394
+
395
+ /*!
396
+ * @osovitny/angular
397
+ * Copyright (c) 2016-2026 Osovitny
398
+ * SPDX-License-Identifier: MIT
399
+ */
400
+
401
+ declare class StarterService extends ApiServiceBase {
402
+ protected http: HttpClient;
403
+ protected appContext: AppContextService;
404
+ protected logger: LoggingService;
405
+ constructor(http: HttpClient, appContext: AppContextService, logger: LoggingService);
406
+ private applicationStarting;
407
+ ensureApplicationStarted(): Observable<any>;
408
+ static ɵfac: i0.ɵɵFactoryDeclaration<StarterService, never>;
409
+ static ɵprov: i0.ɵɵInjectableDeclaration<StarterService>;
410
+ }
411
+
412
+ declare class StarterGuard implements CanActivate, CanActivateChild {
413
+ protected starter: StarterService;
414
+ constructor(starter: StarterService);
415
+ private ensureApplicationStarted;
416
+ canActivate(next: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean>;
417
+ canActivateChild(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean>;
418
+ static ɵfac: i0.ɵɵFactoryDeclaration<StarterGuard, never>;
419
+ static ɵprov: i0.ɵɵInjectableDeclaration<StarterGuard>;
420
+ }
421
+
422
+ /*!
423
+ * @osovitny/angular
424
+ * Copyright (c) 2016-2026 Osovitny
425
+ * SPDX-License-Identifier: MIT
426
+ */
427
+
428
+ declare class LocalizationService implements OnDestroy {
429
+ private translate;
430
+ private logger;
431
+ private subs;
432
+ private dateFnsLocale;
433
+ private supportedLanguages;
434
+ private defaultLanguage;
435
+ langchange: EventEmitter<any>;
436
+ constructor(translate: TranslateService, logger: LoggingService);
437
+ ngOnDestroy(): void;
438
+ private format;
439
+ configureSettings(translate: TranslateService): string;
440
+ setSupportedLanguages(languages: string[]): void;
441
+ setDefaultLanguage(lang: string): void;
442
+ setLanguage(language: string): void;
443
+ getBrowserLanguage(): string;
444
+ getDatefnsLocale(): any;
445
+ getLocalizedValue(key: string, params?: any[]): string;
446
+ getLocalizedDateTime(value: any, formatStr?: string): string;
447
+ getLocalizedDate(value: any, formatStr?: string): string;
448
+ getLocalizedTime(value: any, formatStr?: string): string;
449
+ getUTCToLocalizedDateTime(value: any, formatStr?: string): string;
450
+ getUTCToLocalizedDate(value: any, formatStr?: string): string;
451
+ getUTCToLocalizedTime(value: any, formatStr?: string): string;
452
+ getLocalizedDistance(endedDateStr: string, startedDateStr: string): string;
453
+ getUTCToLocalizedDistance(value: string): string;
454
+ static ɵfac: i0.ɵɵFactoryDeclaration<LocalizationService, never>;
455
+ static ɵprov: i0.ɵɵInjectableDeclaration<LocalizationService>;
456
+ }
457
+
458
+ /*!
459
+ * @osovitny/angular
460
+ * Copyright (c) 2016-2026 Osovitny
461
+ * SPDX-License-Identifier: MIT
462
+ */
463
+
464
+ declare class LocalizePipe implements PipeTransform {
465
+ private localizeService;
466
+ constructor(localizeService: LocalizationService);
467
+ transform(inputData: string, type?: string, param2?: string): string;
468
+ static ɵfac: i0.ɵɵFactoryDeclaration<LocalizePipe, never>;
469
+ static ɵpipe: i0.ɵɵPipeDeclaration<LocalizePipe, "localize", false>;
470
+ }
471
+
472
+ /*!
473
+ * @osovitny/angular
474
+ * Copyright (c) 2016-2026 Osovitny
475
+ * SPDX-License-Identifier: MIT
476
+ */
477
+
478
+ declare function translateLoaderFactory(httpClient: HttpClient): TranslateHttpLoader;
479
+ declare function getLocalizationInjector(): Injector;
480
+ declare class LocalizationModule {
481
+ private injector;
482
+ constructor(injector: Injector);
483
+ static ɵfac: i0.ɵɵFactoryDeclaration<LocalizationModule, never>;
484
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LocalizationModule, [typeof LocalizePipe], [typeof i2.TranslateModule], [typeof i2.TranslateModule, typeof LocalizePipe]>;
485
+ static ɵinj: i0.ɵɵInjectorDeclaration<LocalizationModule>;
486
+ }
487
+
488
+ /*!
489
+ * @osovitny/angular
490
+ * Copyright (c) 2016-2026 Osovitny
491
+ * SPDX-License-Identifier: MIT
492
+ */
493
+
494
+ declare class L10nUtils {
495
+ static get localizationService(): LocalizationService;
496
+ static getLocalizedValue(key: string, params?: any[], defaultKey?: string): string;
497
+ }
498
+
499
+ /*!
500
+ * @osovitny/angular
501
+ * Copyright (c) 2016-2026 Osovitny
502
+ * SPDX-License-Identifier: MIT
503
+ */
504
+
505
+ declare class GlobalErrorHandler implements ErrorHandler {
506
+ private injector;
507
+ constructor(injector: Injector);
508
+ handleError(error: any): void;
509
+ static ɵfac: i0.ɵɵFactoryDeclaration<GlobalErrorHandler, never>;
510
+ static ɵprov: i0.ɵɵInjectableDeclaration<GlobalErrorHandler>;
511
+ }
512
+
513
+ declare class NotificationService {
514
+ private toastrService;
515
+ constructor(toastrService: ToastrService);
516
+ info(text: any, params?: any[], title?: any): void;
517
+ warning(text: any, params?: any[], title?: any): void;
518
+ error(text?: any, params?: any[], title?: any): void;
519
+ success(text?: any, params?: any[], title?: any): void;
520
+ cancel(text?: any, params?: any[], title?: any): void;
521
+ notImplemented(): void;
522
+ authenticationRequired(): void;
523
+ static ɵfac: i0.ɵɵFactoryDeclaration<NotificationService, never>;
524
+ static ɵprov: i0.ɵɵInjectableDeclaration<NotificationService>;
525
+ }
526
+
527
+ declare class BrowserService {
528
+ private platform;
529
+ private _updated;
530
+ readonly updated$: rxjs.Observable<any>;
531
+ constructor(platform: Platform);
532
+ private init;
533
+ private fireUpdated;
534
+ isIframe(): boolean;
535
+ isIE(): boolean;
536
+ isMobile(): boolean;
537
+ isTablet(): boolean;
538
+ isMobileOrTablet(): boolean;
539
+ isDesktopMacOS(): boolean;
540
+ isDesktop(): boolean;
541
+ get userAgent(): string;
542
+ static ɵfac: i0.ɵɵFactoryDeclaration<BrowserService, never>;
543
+ static ɵprov: i0.ɵɵInjectableDeclaration<BrowserService>;
544
+ }
545
+
546
+ declare class DigitalMarketingService {
547
+ private title;
548
+ private meta;
549
+ private dom;
550
+ private existingMetaTags;
551
+ constructor(title: Title, meta: Meta, dom: any);
552
+ updateTitle(title?: string): void;
553
+ updateDescription(desc?: string): void;
554
+ updateKeywords(keywords?: string): void;
555
+ updateMetaTags(metaDefinitions: MetaDefinition[]): void;
556
+ private removePreviousMetaTags;
557
+ private getMetaTagKey;
558
+ setCanonicalUrl(url?: string): void;
559
+ updateCanonicalUrl(url?: string): void;
560
+ updateOpenGraphTags(ogTags: {
561
+ title?: string;
562
+ description?: string;
563
+ image?: string;
564
+ url?: string;
565
+ }): void;
566
+ clearAllMetaTags(): void;
567
+ static ɵfac: i0.ɵɵFactoryDeclaration<DigitalMarketingService, never>;
568
+ static ɵprov: i0.ɵɵInjectableDeclaration<DigitalMarketingService>;
569
+ }
570
+
571
+ declare class GoogleAnalyticsService {
572
+ private router;
573
+ private logger;
574
+ private subscription;
575
+ constructor(router: Router, logger: LoggingService);
576
+ subscribe(): void;
577
+ unsubscribe(): void;
578
+ event(name: string, params?: any): void;
579
+ private get ga();
580
+ static ɵfac: i0.ɵɵFactoryDeclaration<GoogleAnalyticsService, never>;
581
+ static ɵprov: i0.ɵɵInjectableDeclaration<GoogleAnalyticsService>;
582
+ }
583
+
584
+ declare class IdleService {
585
+ private idle$;
586
+ private timer$;
587
+ private idleSubscription;
588
+ private startDate;
589
+ private timeOutSeconds;
590
+ private timeOutMilliSeconds;
591
+ expired$: Subject<boolean>;
592
+ private resetTimeCounters;
593
+ private startTimer;
594
+ private resetTimer;
595
+ startWatching(timeOutSeconds: any): Observable<any>;
596
+ stopWatching(): void;
597
+ restartIdleTimer(timeOutSeconds: any): void;
598
+ static ɵfac: i0.ɵɵFactoryDeclaration<IdleService, never>;
599
+ static ɵprov: i0.ɵɵInjectableDeclaration<IdleService>;
600
+ }
601
+
602
+ /*!
603
+ * @osovitny/angular
604
+ * Copyright (c) 2016-2026 Osovitny
605
+ * SPDX-License-Identifier: MIT
606
+ */
607
+
608
+ declare class ScriptService {
609
+ protected zone: NgZone;
610
+ constructor(zone: NgZone);
611
+ private getElemId;
612
+ registerScript(url: string, globalVar: string, onReady: (globalVar: any) => void): void;
613
+ cleanup(globalVar: string): void;
614
+ getQueryString(queryParams: IQueryParam[]): string;
615
+ static ɵfac: i0.ɵɵFactoryDeclaration<ScriptService, never>;
616
+ static ɵprov: i0.ɵɵInjectableDeclaration<ScriptService>;
617
+ }
618
+
619
+ declare class Message2User {
620
+ type: number;
621
+ block: boolean;
622
+ timeout?: number;
623
+ constructor(type: number, block: boolean, timeout?: any);
624
+ }
625
+ interface Message2UserConfig {
626
+ type: number;
627
+ image: string;
628
+ color: string;
629
+ title: string;
630
+ message: string;
631
+ go2dashboard: boolean;
632
+ }
633
+ declare class Message2UserService extends BehaviorSubject<Message2User> {
634
+ private configs;
635
+ constructor();
636
+ init(configs: any): void;
637
+ getConfig(type: number): any;
638
+ notify(type: number, block?: boolean, timeout?: any): void;
639
+ static ɵfac: i0.ɵɵFactoryDeclaration<Message2UserService, never>;
640
+ static ɵprov: i0.ɵɵInjectableDeclaration<Message2UserService>;
641
+ }
642
+
643
+ /*!
644
+ * @osovitny/angular
645
+ * Copyright (c) 2016-2026 Osovitny
646
+ * SPDX-License-Identifier: MIT
647
+ */
648
+
649
+ declare abstract class ComponentBase implements OnInit, OnDestroy {
650
+ protected isDevMode: boolean;
651
+ protected subs: Subs;
652
+ protected dataLoading: boolean;
653
+ protected dataLoaded: boolean;
654
+ protected dataFound: boolean;
655
+ currentApp: ICurrentApp;
656
+ mode: Mode;
657
+ classes: string;
658
+ title: string;
659
+ isTitleVisible: boolean;
660
+ isRequired: boolean;
661
+ constructor();
662
+ private internalInit;
663
+ ngOnInit(): void;
664
+ ngOnDestroy(): void;
665
+ getEntityId(): string;
666
+ dataStartedLoading(): void;
667
+ dataLoadedAndNothingFound(): void;
668
+ dataLoadedAndFound(found?: boolean): void;
669
+ static ɵfac: i0.ɵɵFactoryDeclaration<ComponentBase, never>;
670
+ static ɵcmp: i0.ɵɵComponentDeclaration<ComponentBase, "ng-component", never, { "mode": { "alias": "mode"; "required": false; }; "classes": { "alias": "classes"; "required": false; }; "title": { "alias": "title"; "required": false; }; "isTitleVisible": { "alias": "isTitleVisible"; "required": false; }; "isRequired": { "alias": "isRequired"; "required": false; }; }, {}, never, never, true, never>;
671
+ }
672
+
673
+ declare class PaymentsService {
674
+ selectedPaymentType: any;
675
+ selectedPaymentMethod: any;
676
+ subtotal: number;
677
+ promoCode: any;
678
+ promoPercentage: any;
679
+ promoAmount: any;
680
+ currency: string;
681
+ private _promoCodeApplied;
682
+ readonly promoCodeApplied$: rxjs.Observable<any>;
683
+ private _showStripeDialog;
684
+ readonly showStripeDialog$: rxjs.Observable<any>;
685
+ private _showBraintreeDialog;
686
+ readonly showBraintreeDialog$: rxjs.Observable<any>;
687
+ private setDefaults;
688
+ private setValues;
689
+ private firePromoCodeApplied;
690
+ init(): void;
691
+ resetState(): void;
692
+ getTotal(): number;
693
+ applyPromoCode(data: any): void;
694
+ getPromoCodeAsString(): string;
695
+ openStripePaymentDialog(): void;
696
+ openBraintreePaymentDialog(): void;
697
+ closeBraintreePaymentDialog(): void;
698
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaymentsService, never>;
699
+ static ɵprov: i0.ɵɵInjectableDeclaration<PaymentsService>;
700
+ }
701
+
702
+ declare class PromoCodesApiService extends ApiServiceBase {
703
+ protected http: HttpClient;
704
+ constructor(http: HttpClient);
705
+ getPromoCode(code: any): Observable<any>;
706
+ static ɵfac: i0.ɵɵFactoryDeclaration<PromoCodesApiService, never>;
707
+ static ɵprov: i0.ɵɵInjectableDeclaration<PromoCodesApiService>;
708
+ }
709
+
710
+ declare class OrderSummaryComponent extends ComponentBase {
711
+ ps: PaymentsService;
712
+ private api;
713
+ private ns;
714
+ showPromoCode: boolean;
715
+ promoCode: any;
716
+ discount: any;
717
+ constructor(ps: PaymentsService, api: PromoCodesApiService, ns: NotificationService);
718
+ ngOnInit(): void;
719
+ private setDefaults;
720
+ private setValues;
721
+ toTotal(): number;
722
+ onTogglePromoCode(): void;
723
+ onApplyPromoCode(): void;
724
+ static ɵfac: i0.ɵɵFactoryDeclaration<OrderSummaryComponent, never>;
725
+ static ɵcmp: i0.ɵɵComponentDeclaration<OrderSummaryComponent, "osovitny-billing-order-summary", never, {}, {}, never, ["*"], false, never>;
726
+ }
727
+
728
+ declare class PaymentMethodsComponent extends ComponentBase {
729
+ ps: PaymentsService;
730
+ paymentMethods: {
731
+ id: PaymentMethod;
732
+ title: string;
733
+ icon: string;
734
+ selected: boolean;
735
+ }[];
736
+ constructor(ps: PaymentsService);
737
+ ngOnInit(): void;
738
+ private setDefaults;
739
+ private setValues;
740
+ onPaymentSelect(paymentMethod: any): void;
741
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaymentMethodsComponent, never>;
742
+ static ɵcmp: i0.ɵɵComponentDeclaration<PaymentMethodsComponent, "osovitny-billing-payment-methods", never, {}, {}, never, never, false, never>;
743
+ }
744
+
745
+ /*!
746
+ * @osovitny/angular
747
+ * Copyright (c) 2016-2026 Osovitny
748
+ * SPDX-License-Identifier: MIT
749
+ */
750
+
751
+ declare class PaymentOptionsComponent extends ComponentBase {
752
+ ps: PaymentsService;
753
+ priceWeekly: any;
754
+ priceUpfront: any;
755
+ numberOfWeeks: any;
756
+ change: EventEmitter<any>;
757
+ constructor(ps: PaymentsService);
758
+ ngOnInit(): void;
759
+ private setDefaults;
760
+ private setValues;
761
+ onPaymentTypeSelect(pt: any): void;
762
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaymentOptionsComponent, never>;
763
+ static ɵcmp: i0.ɵɵComponentDeclaration<PaymentOptionsComponent, "osovitny-billing-payment-options", never, { "priceWeekly": { "alias": "priceWeekly"; "required": false; }; "priceUpfront": { "alias": "priceUpfront"; "required": false; }; "numberOfWeeks": { "alias": "numberOfWeeks"; "required": false; }; }, { "change": "change"; }, never, never, false, never>;
764
+ }
765
+
766
+ declare abstract class EditComponentBase extends ComponentBase {
767
+ protected isAddMode: boolean;
768
+ protected isEditMode: boolean;
769
+ formGroup: FormGroup;
770
+ formSubmitted: boolean;
771
+ controlName: string;
772
+ controlTitle: string;
773
+ /**
774
+ * returns formgroup controls.
775
+ * main use case is used in html pages
776
+ */
777
+ get fc(): {
778
+ [key: string]: AbstractControl<any, any, any>;
779
+ };
780
+ get isNgModelBased(): boolean;
781
+ get isFormBased(): boolean;
782
+ constructor();
783
+ isControlValid(name: string, frmGroup?: FormGroup): boolean;
784
+ isControlInvalid(name: string, frmGroup?: FormGroup): boolean;
785
+ getFormValue(name: any, frmGroup?: FormGroup): any;
786
+ setFormValue(name: any, value: any, frmGroup?: FormGroup): void;
787
+ getFormGroupValue(groupName: any, name: any, frmGroup?: FormGroup): any;
788
+ setFormGroupValue(groupName: any, name: any, value: any, frmGroup?: FormGroup): void;
789
+ /**
790
+ * Add control to form group
791
+ * @param name
792
+ * @param formControl
793
+ * @param frmGroup
794
+ */
795
+ addControl(name: string, formControl: AbstractControl, frmGroup?: FormGroup): void;
796
+ /**
797
+ * Removes control from form group
798
+ * @param name
799
+ * @param frmGroup
800
+ */
801
+ removeControl(name: string, frmGroup?: FormGroup): void;
802
+ /**
803
+ * return new form control
804
+ * @param formState
805
+ * @param validatorOrOpts
806
+ * @param asyncValidator
807
+ */
808
+ createFormControl(formState?: any, validatorOrOpts?: ValidatorFn | ValidatorFn[] | AbstractControlOptions | null, asyncValidator?: AsyncValidatorFn | AsyncValidatorFn[] | null): FormControl<any>;
809
+ /**
810
+ * Set error to control
811
+ * @param controlName formControl name
812
+ * @param err error expect {erroname: boolean} format
813
+ * @param frmGroup
814
+ */
815
+ setControlError(controlName: string, err: {}, frmGroup?: FormGroup): void;
816
+ /**
817
+ * Set {invalid: true} for the specified form
818
+ * @param controlName form control name
819
+ * @param frmGroup
820
+ */
821
+ setInValidError(controlName: string, frmGroup?: FormGroup): void;
822
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditComponentBase, never>;
823
+ static ɵcmp: i0.ɵɵComponentDeclaration<EditComponentBase, "ng-component", never, { "formGroup": { "alias": "formGroup"; "required": false; }; "formSubmitted": { "alias": "formSubmitted"; "required": false; }; "controlName": { "alias": "controlName"; "required": false; }; "controlTitle": { "alias": "controlTitle"; "required": false; }; }, {}, never, never, true, never>;
824
+ }
825
+
826
+ /*!
827
+ * @osovitny/angular
828
+ * Copyright (c) 2016-2026 Osovitny
829
+ * SPDX-License-Identifier: MIT
830
+ */
831
+
832
+ declare abstract class DialogBase extends EditComponentBase {
833
+ private _isOpen;
834
+ get isOpen(): boolean;
835
+ set isOpen(value: boolean);
836
+ opened: EventEmitter<any>;
837
+ closed: EventEmitter<any>;
838
+ constructor();
839
+ osOnBeforeOpen?(): void;
840
+ open(): void;
841
+ close(returnValue?: any): void;
842
+ cancel(): void;
843
+ static ɵfac: i0.ɵɵFactoryDeclaration<DialogBase, never>;
844
+ static ɵcmp: i0.ɵɵComponentDeclaration<DialogBase, "ng-component", never, { "isOpen": { "alias": "isOpen"; "required": false; }; }, { "opened": "opened"; "closed": "closed"; }, never, never, false, never>;
845
+ }
846
+
847
+ declare class SubscriptionsApiService extends ApiServiceBase {
848
+ protected http: HttpClient;
849
+ constructor(http: HttpClient);
850
+ getSubscriptions(data: any): Observable<any[]>;
851
+ addSubscription(subscriptionProvider: any, newSubscriptionId: any, planId: any, addons: any, subtotal: any, promoCode: any, total: any, currency: any, success?: Function, error?: Function): void;
852
+ addFreeSubscription(planId: any, addons: any, subtotal: any, promoCode: any, total: any, currency: any, success?: Function, error?: Function): void;
853
+ cancelSubscription(subscriptionProvider: any, subscriptionId: any, success?: Function, error?: Function): void;
854
+ static ɵfac: i0.ɵɵFactoryDeclaration<SubscriptionsApiService, never>;
855
+ static ɵprov: i0.ɵɵInjectableDeclaration<SubscriptionsApiService>;
856
+ }
857
+
858
+ declare class PaymentsApiService extends ApiServiceBase {
859
+ protected http: HttpClient;
860
+ constructor(http: HttpClient);
861
+ createStripeSession(amount: any, currency: any, name: any, description: any, image: any): Observable<any>;
862
+ createBraintreeToken(): Observable<any>;
863
+ addPayment(paymentMethod: any, planId: any, paidFor: any, subtotal: any, promoCode: any, total: any, currency: any, pmId: any, pmStatus: any, pmDetails: any, success?: Function, error?: Function): rxjs.Subscription;
864
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaymentsApiService, never>;
865
+ static ɵprov: i0.ɵɵInjectableDeclaration<PaymentsApiService>;
866
+ }
867
+
868
+ declare class BillingService {
869
+ private zone;
870
+ private appContext;
871
+ private apiPayments;
872
+ private apiSubscriptions;
873
+ private ns;
874
+ private _paymentAdded;
875
+ readonly paymentAdded$: rxjs.Observable<any>;
876
+ private _paymentProgress;
877
+ readonly paymentProgress$: rxjs.Observable<any>;
878
+ private _subscriptionAdded;
879
+ readonly subscriptionAdded$: rxjs.Observable<any>;
880
+ constructor(zone: NgZone, appContext: AppContextService, apiPayments: PaymentsApiService, apiSubscriptions: SubscriptionsApiService, ns: NotificationService);
881
+ firePaymentAdded(isPaymentValid: any, paymentId: any): void;
882
+ firePaymentProgress(paymentStage: any, paymentInProgress: any, isPaymentFailed: any): void;
883
+ fireSubscriptionAdded(paymentInProgress: any, paymentFailed: any): void;
884
+ createStripeSession(amount: any, currency: any, title: any, description: any, image: any): rxjs.Observable<any>;
885
+ createBraintreeToken(): rxjs.Observable<any>;
886
+ addPayment(paymentMethod: any, planId: any, paidFor: any, subtotal: any, promoCode: any, total: any, currency: any, pmId: any, pmStatus: any, pmDetails: any): void;
887
+ paymentSuccessful(stage: PaymentStage): void;
888
+ paymentFailed(stage: PaymentStage): void;
889
+ setPaymentProgress(stage: PaymentStage, paymentInProgress: any, isPaymentFailed: any): void;
890
+ addSubscription(sp: SubscriptionProvider, newSubscriptionId: any, planId: any, addons: any, subtotal: any, promoCode: any, total: any, currency: any): void;
891
+ static ɵfac: i0.ɵɵFactoryDeclaration<BillingService, never>;
892
+ static ɵprov: i0.ɵɵInjectableDeclaration<BillingService>;
893
+ }
894
+
895
+ declare class BraintreeDialog extends DialogBase {
896
+ private bs;
897
+ private ps;
898
+ private ns;
899
+ braintreeInstance: any;
900
+ deviceData: any;
901
+ planId: any;
902
+ paidFor: any;
903
+ title: any;
904
+ description: any;
905
+ image: any;
906
+ constructor(bs: BillingService, ps: PaymentsService, ns: NotificationService);
907
+ ngOnInit(): void;
908
+ private setValues;
909
+ initializeEmbedForm(): void;
910
+ submitPayment(payload: any): void;
911
+ closeDialog(): void;
912
+ onPay(): void;
913
+ onClose(): void;
914
+ get visible(): boolean;
915
+ static ɵfac: i0.ɵɵFactoryDeclaration<BraintreeDialog, never>;
916
+ static ɵcmp: i0.ɵɵComponentDeclaration<BraintreeDialog, "osovitny-billing-braintree-dialog", never, { "planId": { "alias": "planId"; "required": false; }; "paidFor": { "alias": "paidFor"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "image": { "alias": "image"; "required": false; }; }, {}, never, never, false, never>;
917
+ }
918
+
919
+ declare class PaypalButtonComponent extends ComponentBase {
920
+ private bs;
921
+ private ps;
922
+ payPalConfig?: IPayPalConfig;
923
+ planId: any;
924
+ paidFor: any;
925
+ paidForTitle: string;
926
+ constructor(bs: BillingService, ps: PaymentsService);
927
+ ngOnInit(): void;
928
+ private setDefaults;
929
+ private setValues;
930
+ private initPayPal;
931
+ get visible(): boolean;
932
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaypalButtonComponent, never>;
933
+ static ɵcmp: i0.ɵɵComponentDeclaration<PaypalButtonComponent, "osovitny-billing-paypal-button", never, { "planId": { "alias": "planId"; "required": false; }; "paidFor": { "alias": "paidFor"; "required": false; }; "paidForTitle": { "alias": "paidForTitle"; "required": false; }; }, {}, never, never, false, never>;
934
+ }
935
+
936
+ declare class PaypalSubscribeButtonComponent extends ComponentBase {
937
+ private bs;
938
+ private _payPalPlanId;
939
+ payPalConfig?: IPayPalConfig;
940
+ get payPalPlanId(): any;
941
+ set payPalPlanId(value: any);
942
+ quantity: any;
943
+ planId: any;
944
+ addons: any;
945
+ subtotal: any;
946
+ promoCode: any;
947
+ total: any;
948
+ currency: string;
949
+ constructor(bs: BillingService);
950
+ ngOnInit(): void;
951
+ private setDefaults;
952
+ private setValues;
953
+ private initPayPal;
954
+ static ɵfac: i0.ɵɵFactoryDeclaration<PaypalSubscribeButtonComponent, never>;
955
+ static ɵcmp: i0.ɵɵComponentDeclaration<PaypalSubscribeButtonComponent, "osovitny-billing-paypal-subscribe-button", never, { "payPalPlanId": { "alias": "payPalPlanId"; "required": false; }; "quantity": { "alias": "quantity"; "required": false; }; "planId": { "alias": "planId"; "required": false; }; "addons": { "alias": "addons"; "required": false; }; "subtotal": { "alias": "subtotal"; "required": false; }; "promoCode": { "alias": "promoCode"; "required": false; }; "total": { "alias": "total"; "required": false; }; "currency": { "alias": "currency"; "required": false; }; }, {}, never, never, false, never>;
956
+ }
957
+
958
+ declare class PayPalScriptService {
959
+ protected ss: ScriptService;
960
+ private readonly paypalWindowName;
961
+ constructor(ss: ScriptService);
962
+ registerPayPalScript(config: IPayPalUrlConfig, onReady: (payPalApi: any) => void): void;
963
+ destroyPayPalScript(): void;
964
+ private getUrlForConfig;
965
+ static ɵfac: i0.ɵɵFactoryDeclaration<PayPalScriptService, never>;
966
+ static ɵprov: i0.ɵɵInjectableDeclaration<PayPalScriptService>;
967
+ }
968
+
969
+ /*!
970
+ * @osovitny/angular
971
+ * Copyright (c) 2016-2026 Osovitny
972
+ * SPDX-License-Identifier: MIT
973
+ */
974
+
975
+ declare class PayPalComponent implements OnChanges, OnDestroy, AfterViewInit {
976
+ private paypalScriptService;
977
+ private cdr;
978
+ private ngZone;
979
+ private logger;
980
+ /**
981
+ * Configuration for paypal.
982
+ */
983
+ config?: IPayPalConfig;
984
+ /**
985
+ * If enabled, paypal SDK script will be loaded. Useful if you want to have multiple PayPal components on the same page
986
+ * sharing base configuration. In such a case only a single component may register script.
987
+ */
988
+ registerScript: boolean;
989
+ /**
990
+ * Emitted when paypal script is loaded
991
+ */
992
+ scriptLoaded: EventEmitter<any>;
993
+ /**
994
+ * Id of the element where PayPal button will be rendered
995
+ */
996
+ payPalButtonContainerId?: string;
997
+ private readonly ngUnsubscribe;
998
+ private payPalButtonContainerElem?;
999
+ set payPalButtonContainer(content: ElementRef);
1000
+ /**
1001
+ * Flag that indicates if paypal should be initialized (required for handling script load events and availability of DOM element)
1002
+ */
1003
+ private initializePayPal;
1004
+ /**
1005
+ * Reference to PayPal global API
1006
+ */
1007
+ private payPal;
1008
+ constructor(paypalScriptService: PayPalScriptService, cdr: ChangeDetectorRef, ngZone: NgZone, logger: LoggingService);
1009
+ ngOnChanges(changes: SimpleChanges): void;
1010
+ ngOnDestroy(): void;
1011
+ ngAfterViewInit(): void;
1012
+ customInit(payPal: any): void;
1013
+ reinitialize(config: IPayPalConfig | undefined): void;
1014
+ private doPayPalCheck;
1015
+ private initPayPalScript;
1016
+ private generateElementId;
1017
+ private initPayPal;
1018
+ private generateGuid;
1019
+ static ɵfac: i0.ɵɵFactoryDeclaration<PayPalComponent, never>;
1020
+ static ɵcmp: i0.ɵɵComponentDeclaration<PayPalComponent, "osovitny-billing-paypal-container", never, { "config": { "alias": "config"; "required": false; }; "registerScript": { "alias": "registerScript"; "required": false; }; }, { "scriptLoaded": "scriptLoaded"; }, never, never, false, never>;
1021
+ }
1022
+
1023
+ declare class StripeDialog extends DialogBase {
1024
+ private bs;
1025
+ private ps;
1026
+ stripe: any;
1027
+ stripeCheckout: any;
1028
+ sessionId: any;
1029
+ planId: any;
1030
+ paidFor: any;
1031
+ title: any;
1032
+ description: any;
1033
+ image: any;
1034
+ constructor(bs: BillingService, ps: PaymentsService);
1035
+ ngOnInit(): void;
1036
+ private setValues;
1037
+ initializeEmbedForm(): Promise<void>;
1038
+ onClose(): void;
1039
+ get visible(): boolean;
1040
+ static ɵfac: i0.ɵɵFactoryDeclaration<StripeDialog, never>;
1041
+ static ɵcmp: i0.ɵɵComponentDeclaration<StripeDialog, "osovitny-billing-stripe-dialog", never, { "planId": { "alias": "planId"; "required": false; }; "paidFor": { "alias": "paidFor"; "required": false; }; "title": { "alias": "title"; "required": false; }; "description": { "alias": "description"; "required": false; }; "image": { "alias": "image"; "required": false; }; }, {}, never, never, false, never>;
1042
+ }
1043
+
1044
+ declare class GridReadServiceBase extends BehaviorSubject<any[]> {
1045
+ protected http: HttpClient;
1046
+ protected data: any[];
1047
+ protected baseReadUrl: string;
1048
+ protected savedReadParams: any;
1049
+ constructor(http: HttpClient);
1050
+ serializeParams(data?: any): string;
1051
+ read(params?: any, success?: Function, error?: Function): void;
1052
+ static ɵfac: i0.ɵɵFactoryDeclaration<GridReadServiceBase, never>;
1053
+ static ɵprov: i0.ɵɵInjectableDeclaration<GridReadServiceBase>;
1054
+ }
1055
+
1056
+ declare class GridEditServiceBase extends GridReadServiceBase {
1057
+ protected http: HttpClient;
1058
+ protected baseUrl: string;
1059
+ constructor(http: HttpClient);
1060
+ private reset;
1061
+ resetItem(dataItem: any): void;
1062
+ save(data: any, isNew: boolean, sucess?: Function): void;
1063
+ delete(data: any, sucess?: Function): rxjs.Subscription;
1064
+ post(action: any, data?: any): Observable<any[]>;
1065
+ static ɵfac: i0.ɵɵFactoryDeclaration<GridEditServiceBase, never>;
1066
+ static ɵprov: i0.ɵɵInjectableDeclaration<GridEditServiceBase>;
1067
+ }
1068
+
1069
+ declare class CurrenciesApiService extends ApiServiceBase {
1070
+ protected http: HttpClient;
1071
+ constructor(http: HttpClient);
1072
+ getCurrencies(): Observable<any>;
1073
+ getRates(): Observable<any>;
1074
+ static ɵfac: i0.ɵɵFactoryDeclaration<CurrenciesApiService, never>;
1075
+ static ɵprov: i0.ɵɵInjectableDeclaration<CurrenciesApiService>;
1076
+ }
1077
+
1078
+ declare class CurrenciesStorageService {
1079
+ private appContext;
1080
+ private api;
1081
+ rates: any;
1082
+ private _currencyUpdated;
1083
+ private _ratesLoaded;
1084
+ readonly currencyUpdated$: rxjs.Observable<string>;
1085
+ readonly ratesLoaded$: rxjs.Observable<string>;
1086
+ defaultCurrency: string;
1087
+ constructor(appContext: AppContextService, api: CurrenciesApiService);
1088
+ private setValues;
1089
+ private fireUpdated;
1090
+ private fireRatesLoaded;
1091
+ changeCurrency(currency: string): void;
1092
+ toDisplayPrice(price: any): any;
1093
+ get currentCurrencyRateOrDefault(): any;
1094
+ static ɵfac: i0.ɵɵFactoryDeclaration<CurrenciesStorageService, never>;
1095
+ static ɵprov: i0.ɵɵInjectableDeclaration<CurrenciesStorageService>;
1096
+ }
1097
+
1098
+ declare class TransactionsApiService extends ApiServiceBase {
1099
+ protected http: HttpClient;
1100
+ constructor(http: HttpClient);
1101
+ getTransactionById(id: any): Observable<any>;
1102
+ getTransactionByReceiptNum(receiptNum: any): Observable<any>;
1103
+ getTransactions(data: any): Observable<any>;
1104
+ static ɵfac: i0.ɵɵFactoryDeclaration<TransactionsApiService, never>;
1105
+ static ɵprov: i0.ɵɵInjectableDeclaration<TransactionsApiService>;
1106
+ }
1107
+
1108
+ declare class CoreApiService extends ApiServiceBase {
1109
+ protected http: HttpClient;
1110
+ constructor(http: HttpClient);
1111
+ static ɵfac: i0.ɵɵFactoryDeclaration<CoreApiService, never>;
1112
+ static ɵprov: i0.ɵɵInjectableDeclaration<CoreApiService>;
1113
+ }
1114
+
1115
+ declare class EmailsApiService extends ApiServiceBase {
1116
+ protected http: HttpClient;
1117
+ constructor(http: HttpClient);
1118
+ sendContactUs(captcha: any, name: any, email: any, topic: any, subject: any, message: any, success?: Function, error?: Function): rxjs.Subscription;
1119
+ static ɵfac: i0.ɵɵFactoryDeclaration<EmailsApiService, never>;
1120
+ static ɵprov: i0.ɵɵInjectableDeclaration<EmailsApiService>;
1121
+ }
1122
+
1123
+ /*!
1124
+ * @osovitny/angular
1125
+ * Copyright (c) 2016-2026 Osovitny
1126
+ * SPDX-License-Identifier: MIT
1127
+ */
1128
+
1129
+ declare abstract class EnumEditComponentBase extends EditComponentBase implements OnInit {
1130
+ enumeration: any;
1131
+ items: any[];
1132
+ sv: any;
1133
+ get selectedValue(): any;
1134
+ set selectedValue(value: any);
1135
+ defaultValue: number;
1136
+ valueChange: EventEmitter<any>;
1137
+ ngOnInit(): void;
1138
+ private setDefaults;
1139
+ private setValues;
1140
+ private fireValueChange;
1141
+ private renderItems;
1142
+ onChange(value: any): void;
1143
+ static ɵfac: i0.ɵɵFactoryDeclaration<EnumEditComponentBase, never>;
1144
+ static ɵcmp: i0.ɵɵComponentDeclaration<EnumEditComponentBase, "ng-component", never, { "selectedValue": { "alias": "selectedValue"; "required": false; }; "defaultValue": { "alias": "defaultValue"; "required": false; }; }, { "valueChange": "valueChange"; }, never, never, true, never>;
1145
+ }
1146
+
1147
+ declare abstract class PageBase extends ComponentBase {
1148
+ static ɵfac: i0.ɵɵFactoryDeclaration<PageBase, never>;
1149
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageBase, "ng-component", never, {}, {}, never, never, false, never>;
1150
+ }
1151
+
1152
+ declare abstract class EditPageBase extends EditComponentBase {
1153
+ static ɵfac: i0.ɵɵFactoryDeclaration<EditPageBase, never>;
1154
+ static ɵcmp: i0.ɵɵComponentDeclaration<EditPageBase, "ng-component", never, {}, {}, never, never, false, never>;
1155
+ }
1156
+
1157
+ declare abstract class PagedPageBase extends PageBase {
1158
+ currentFilter: any;
1159
+ items: any[];
1160
+ totalItems: number;
1161
+ pageSize: number;
1162
+ skipItems: number;
1163
+ currentPage: number;
1164
+ loadPage?(page?: number): void;
1165
+ loadPageOne(): void;
1166
+ reloadPage(drop2pageOne?: boolean): void;
1167
+ setFilter(filter: any): void;
1168
+ toIndex(index: any): any;
1169
+ onPageChange(e: any): void;
1170
+ static ɵfac: i0.ɵɵFactoryDeclaration<PagedPageBase, never>;
1171
+ static ɵcmp: i0.ɵɵComponentDeclaration<PagedPageBase, "ng-component", never, {}, {}, never, never, false, never>;
1172
+ }
1173
+
1174
+ /*!
1175
+ * @osovitny/angular
1176
+ * Copyright (c) 2016-2026 Osovitny
1177
+ * SPDX-License-Identifier: MIT
1178
+ */
1179
+
1180
+ declare abstract class ListBase extends ComponentBase implements OnInit {
1181
+ private _currentFilter;
1182
+ items: any[];
1183
+ totalItems: number;
1184
+ skipItems: number;
1185
+ currentPage: number;
1186
+ dataLoaded: boolean;
1187
+ pageSize: number;
1188
+ autoDataLoading: boolean;
1189
+ filterRequest: EventEmitter<any>;
1190
+ dataChange: EventEmitter<any>;
1191
+ get currentFilter(): any;
1192
+ ngOnInit(): void;
1193
+ protected init(): void;
1194
+ protected fireFilterRequest(): void;
1195
+ protected fireDataChange(e?: any): void;
1196
+ loadPage?(page?: number): void;
1197
+ loadPageOne(): void;
1198
+ reloadPage(drop2pageOne?: boolean): void;
1199
+ setFilter(filter: any): void;
1200
+ toIndex(index: any): any;
1201
+ onPageChange(e: any): void;
1202
+ static ɵfac: i0.ɵɵFactoryDeclaration<ListBase, never>;
1203
+ static ɵcmp: i0.ɵɵComponentDeclaration<ListBase, "ng-component", never, { "pageSize": { "alias": "pageSize"; "required": false; }; "autoDataLoading": { "alias": "autoDataLoading"; "required": false; }; }, { "filterRequest": "filterRequest"; "dataChange": "dataChange"; }, never, never, false, never>;
1204
+ }
1205
+
1206
+ declare class CardComponent extends ComponentBase {
1207
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardComponent, never>;
1208
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardComponent, "osovitny-card", never, {}, {}, never, ["card-header", "card-body", "*", "card-footer"], false, never>;
1209
+ }
1210
+
1211
+ declare class CardHeaderComponent extends ComponentBase {
1212
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardHeaderComponent, never>;
1213
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardHeaderComponent, "osovitny-card-header", never, {}, {}, never, ["*"], false, never>;
1214
+ }
1215
+
1216
+ declare class CardBodyComponent extends ComponentBase {
1217
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardBodyComponent, never>;
1218
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardBodyComponent, "osovitny-card-body", never, {}, {}, never, ["*"], false, never>;
1219
+ }
1220
+
1221
+ declare class CardFooterComponent extends ComponentBase {
1222
+ static ɵfac: i0.ɵɵFactoryDeclaration<CardFooterComponent, never>;
1223
+ static ɵcmp: i0.ɵɵComponentDeclaration<CardFooterComponent, "osovitny-card-footer", never, {}, {}, never, ["*"], false, never>;
1224
+ }
1225
+
1226
+ /*!
1227
+ * @osovitny/angular
1228
+ * Copyright (c) 2016-2026 Osovitny
1229
+ * SPDX-License-Identifier: MIT
1230
+ */
1231
+
1232
+ declare class CountryDropdownlist extends EditComponentBase implements OnInit {
1233
+ private appContext;
1234
+ items: any;
1235
+ constructor(appContext: AppContextService);
1236
+ ngOnInit(): void;
1237
+ setValues(): void;
1238
+ static ɵfac: i0.ɵɵFactoryDeclaration<CountryDropdownlist, never>;
1239
+ static ɵcmp: i0.ɵɵComponentDeclaration<CountryDropdownlist, "osovitny-country-dropdownlist", never, {}, {}, never, never, false, never>;
1240
+ }
1241
+
1242
+ /*!
1243
+ * @osovitny/angular
1244
+ * Copyright (c) 2016-2026 Osovitny
1245
+ * SPDX-License-Identifier: MIT
1246
+ */
1247
+
1248
+ declare class LanguageDropdownlist extends EditComponentBase implements OnInit {
1249
+ private appContext;
1250
+ items: any;
1251
+ constructor(appContext: AppContextService);
1252
+ ngOnInit(): void;
1253
+ static ɵfac: i0.ɵɵFactoryDeclaration<LanguageDropdownlist, never>;
1254
+ static ɵcmp: i0.ɵɵComponentDeclaration<LanguageDropdownlist, "osovitny-language-dropdownlist", never, {}, {}, never, never, false, never>;
1255
+ }
1256
+
1257
+ /*!
1258
+ * @osovitny/angular
1259
+ * Copyright (c) 2016-2026 Osovitny
1260
+ * SPDX-License-Identifier: MIT
1261
+ */
1262
+
1263
+ declare class ModerationStatusDropdownlist extends EnumEditComponentBase implements OnInit {
1264
+ constructor();
1265
+ static ɵfac: i0.ɵɵFactoryDeclaration<ModerationStatusDropdownlist, never>;
1266
+ static ɵcmp: i0.ɵɵComponentDeclaration<ModerationStatusDropdownlist, "osovitny-moderationstatus-dropdownlist", never, {}, {}, never, never, false, never>;
1267
+ }
1268
+
1269
+ /*!
1270
+ * @osovitny/angular
1271
+ * Copyright (c) 2016-2026 Osovitny
1272
+ * SPDX-License-Identifier: MIT
1273
+ */
1274
+
1275
+ declare class PublishStatusDropdownlist extends EnumEditComponentBase implements OnInit {
1276
+ constructor();
1277
+ static ɵfac: i0.ɵɵFactoryDeclaration<PublishStatusDropdownlist, never>;
1278
+ static ɵcmp: i0.ɵɵComponentDeclaration<PublishStatusDropdownlist, "osovitny-publishstatus-dropdownlist", never, {}, {}, never, never, false, never>;
1279
+ }
1280
+
1281
+ /*!
1282
+ * @osovitny/angular
1283
+ * Copyright (c) 2016-2026 Osovitny
1284
+ * SPDX-License-Identifier: MIT
1285
+ */
1286
+
1287
+ declare class TimezoneDropdownlist extends EditComponentBase implements OnInit {
1288
+ private appContext;
1289
+ items: any;
1290
+ disabled: boolean;
1291
+ constructor(appContext: AppContextService);
1292
+ ngOnInit(): void;
1293
+ private setValues;
1294
+ static ɵfac: i0.ɵɵFactoryDeclaration<TimezoneDropdownlist, never>;
1295
+ static ɵcmp: i0.ɵɵComponentDeclaration<TimezoneDropdownlist, "osovitny-timezone-dropdownlist", never, { "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, false, never>;
1296
+ }
1297
+
1298
+ declare abstract class HtmlEditorComponentBase extends EditComponentBase implements OnInit, AfterViewInit {
1299
+ protected froalaEditor: any;
1300
+ options: any;
1301
+ froalaEditorInitialized: boolean;
1302
+ afterInitializedActions: any[];
1303
+ editorOptions: Object;
1304
+ constructor();
1305
+ ngOnInit(): void;
1306
+ ngAfterViewInit(): void;
1307
+ private onInitialized;
1308
+ protected getEditor(): any;
1309
+ doAfterInitialized(action: any): void;
1310
+ initializeControl(control: any): void;
1311
+ setUploadParams(uploadType: any, uploadParentId: any): void;
1312
+ static ɵfac: i0.ɵɵFactoryDeclaration<HtmlEditorComponentBase, never>;
1313
+ static ɵcmp: i0.ɵɵComponentDeclaration<HtmlEditorComponentBase, "ng-component", never, { "editorOptions": { "alias": "editorOptions"; "required": false; }; }, {}, never, never, false, never>;
1314
+ }
1315
+
1316
+ declare class HtmlEditorComponent extends HtmlEditorComponentBase {
1317
+ constructor();
1318
+ getHtml(): any;
1319
+ setHtml(content: any): void;
1320
+ static ɵfac: i0.ɵɵFactoryDeclaration<HtmlEditorComponent, never>;
1321
+ static ɵcmp: i0.ɵɵComponentDeclaration<HtmlEditorComponent, "osovitny-html-editor", never, {}, {}, never, never, false, never>;
1322
+ }
1323
+
1324
+ declare class CheckIconComponent {
1325
+ checked: boolean;
1326
+ static ɵfac: i0.ɵɵFactoryDeclaration<CheckIconComponent, never>;
1327
+ static ɵcmp: i0.ɵɵComponentDeclaration<CheckIconComponent, "osovitny-check-icon", never, { "checked": { "alias": "checked"; "required": false; }; }, {}, never, ["*"], false, never>;
1328
+ }
1329
+
1330
+ /*!
1331
+ * @osovitny/angular
1332
+ * Copyright (c) 2016-2026 Osovitny
1333
+ * SPDX-License-Identifier: MIT
1334
+ */
1335
+
1336
+ declare class ControlPanelComponent extends ComponentBase implements OnInit {
1337
+ filterVisible: boolean;
1338
+ selectedSortBy: number;
1339
+ viewTypeDefault: DataViewType;
1340
+ sortByItems: any;
1341
+ viewType: any;
1342
+ filterButtonVisible: boolean;
1343
+ sortByVisible: boolean;
1344
+ viewTypesVisible: boolean;
1345
+ addButtonVisible: boolean;
1346
+ settingsChange: EventEmitter<any>;
1347
+ add: EventEmitter<any>;
1348
+ ngOnInit(): void;
1349
+ private setDefaults;
1350
+ private setValues;
1351
+ private fireSettingsChange;
1352
+ private fireAdd;
1353
+ resetSettings(): void;
1354
+ getSettings(): {
1355
+ filterVisible: boolean;
1356
+ sortBy: number;
1357
+ viewType: any;
1358
+ };
1359
+ onFilterToggle(): void;
1360
+ onSortByChange(): void;
1361
+ onViewSwitch(value: any): void;
1362
+ onAdd(): void;
1363
+ static ɵfac: i0.ɵɵFactoryDeclaration<ControlPanelComponent, never>;
1364
+ static ɵcmp: i0.ɵɵComponentDeclaration<ControlPanelComponent, "osovitny-data-grid-control-panel", never, { "sortByItems": { "alias": "sortByItems"; "required": false; }; "viewType": { "alias": "viewType"; "required": false; }; "filterButtonVisible": { "alias": "filterButtonVisible"; "required": false; }; "sortByVisible": { "alias": "sortByVisible"; "required": false; }; "viewTypesVisible": { "alias": "viewTypesVisible"; "required": false; }; "addButtonVisible": { "alias": "addButtonVisible"; "required": false; }; }, { "settingsChange": "settingsChange"; "add": "add"; }, never, ["*"], false, never>;
1365
+ }
1366
+
1367
+ /*!
1368
+ * @osovitny/angular
1369
+ * Copyright (c) 2016-2026 Osovitny
1370
+ * SPDX-License-Identifier: MIT
1371
+ */
1372
+
1373
+ declare class DataPagerComponent extends ComponentBase implements OnInit {
1374
+ private _defaultPageSizes;
1375
+ private _width;
1376
+ pageSizes: any[];
1377
+ style: string;
1378
+ totalItems: number;
1379
+ pageSize: number;
1380
+ skipItems: number;
1381
+ pageSizeDivisor: any;
1382
+ pageSizeMax: number;
1383
+ get width(): any;
1384
+ set width(value: any);
1385
+ pageChange: EventEmitter<any>;
1386
+ ngOnInit(): void;
1387
+ onPageChange(e: any): void;
1388
+ static ɵfac: i0.ɵɵFactoryDeclaration<DataPagerComponent, never>;
1389
+ static ɵcmp: i0.ɵɵComponentDeclaration<DataPagerComponent, "osovitny-datapager", never, { "totalItems": { "alias": "totalItems"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "skipItems": { "alias": "skipItems"; "required": false; }; "pageSizeDivisor": { "alias": "pageSizeDivisor"; "required": false; }; "pageSizeMax": { "alias": "pageSizeMax"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, { "pageChange": "pageChange"; }, never, never, false, never>;
1390
+ }
1391
+
1392
+ /*!
1393
+ * @osovitny/angular
1394
+ * Copyright (c) 2016-2026 Osovitny
1395
+ * SPDX-License-Identifier: MIT
1396
+ */
1397
+
1398
+ declare class SignInButtonComponent extends ComponentBase implements OnInit {
1399
+ url: any;
1400
+ qs: string;
1401
+ ngOnInit(): void;
1402
+ static ɵfac: i0.ɵɵFactoryDeclaration<SignInButtonComponent, never>;
1403
+ static ɵcmp: i0.ɵɵComponentDeclaration<SignInButtonComponent, "osovitny-signin-button", never, { "qs": { "alias": "qs"; "required": false; }; }, {}, never, ["*"], false, never>;
1404
+ }
1405
+
1406
+ /*!
1407
+ * @osovitny/angular
1408
+ * Copyright (c) 2016-2026 Osovitny
1409
+ * SPDX-License-Identifier: MIT
1410
+ */
1411
+
1412
+ declare class SignOutButtonComponent extends ComponentBase implements OnInit {
1413
+ url: any;
1414
+ qs: string;
1415
+ ngOnInit(): void;
1416
+ static ɵfac: i0.ɵɵFactoryDeclaration<SignOutButtonComponent, never>;
1417
+ static ɵcmp: i0.ɵɵComponentDeclaration<SignOutButtonComponent, "osovitny-signout-button", never, { "qs": { "alias": "qs"; "required": false; }; }, {}, never, ["*"], false, never>;
1418
+ }
1419
+
1420
+ /*!
1421
+ * @osovitny/angular
1422
+ * Copyright (c) 2016-2026 Osovitny
1423
+ * SPDX-License-Identifier: MIT
1424
+ */
1425
+
1426
+ declare class SignUpButtonComponent extends ComponentBase implements OnInit {
1427
+ url: any;
1428
+ qs: string;
1429
+ ngOnInit(): void;
1430
+ static ɵfac: i0.ɵɵFactoryDeclaration<SignUpButtonComponent, never>;
1431
+ static ɵcmp: i0.ɵɵComponentDeclaration<SignUpButtonComponent, "osovitny-signup-button", never, { "qs": { "alias": "qs"; "required": false; }; }, {}, never, ["*"], false, never>;
1432
+ }
1433
+
1434
+ declare class NodataComponent {
1435
+ dataLoading: any;
1436
+ dataLoaded: any;
1437
+ dataFound: any;
1438
+ icon: any;
1439
+ iconSize: SizeProp;
1440
+ heading: string;
1441
+ static ɵfac: i0.ɵɵFactoryDeclaration<NodataComponent, never>;
1442
+ static ɵcmp: i0.ɵɵComponentDeclaration<NodataComponent, "osovitny-nodata", never, { "dataLoading": { "alias": "dataLoading"; "required": false; }; "dataLoaded": { "alias": "dataLoaded"; "required": false; }; "dataFound": { "alias": "dataFound"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconSize": { "alias": "iconSize"; "required": false; }; "heading": { "alias": "heading"; "required": false; }; }, {}, never, ["*"], false, never>;
1443
+ }
1444
+
1445
+ declare class NoMobileSupportComponent extends ComponentBase {
1446
+ logo: any;
1447
+ static ɵfac: i0.ɵɵFactoryDeclaration<NoMobileSupportComponent, never>;
1448
+ static ɵcmp: i0.ɵɵComponentDeclaration<NoMobileSupportComponent, "osovitny-no-mobile-support", never, { "logo": { "alias": "logo"; "required": false; }; }, {}, never, never, false, never>;
1449
+ }
1450
+
1451
+ /*!
1452
+ * @osovitny/angular
1453
+ * Copyright (c) 2016-2026 Osovitny
1454
+ * SPDX-License-Identifier: MIT
1455
+ */
1456
+
1457
+ declare class Message2UserComponent extends ComponentBase implements OnInit {
1458
+ private go;
1459
+ private mus;
1460
+ show: boolean;
1461
+ message: any;
1462
+ config: any;
1463
+ constructor(go: GoServiceBase, mus: Message2UserService);
1464
+ ngOnInit(): void;
1465
+ private setDefaults;
1466
+ private setValues;
1467
+ onCloseAndBlock(): void;
1468
+ onClose(): void;
1469
+ static ɵfac: i0.ɵɵFactoryDeclaration<Message2UserComponent, never>;
1470
+ static ɵcmp: i0.ɵɵComponentDeclaration<Message2UserComponent, "osovitny-message2user", never, {}, {}, never, ["*"], false, never>;
1471
+ }
1472
+
1473
+ /*!
1474
+ * @osovitny/angular
1475
+ * Copyright (c) 2016-2026 Osovitny
1476
+ * SPDX-License-Identifier: MIT
1477
+ */
1478
+
1479
+ declare class LoadingComponent extends ComponentBase implements OnInit {
1480
+ private loadingService;
1481
+ show: boolean;
1482
+ constructor(loadingService: LoadingService);
1483
+ ngOnInit(): void;
1484
+ static ɵfac: i0.ɵɵFactoryDeclaration<LoadingComponent, never>;
1485
+ static ɵcmp: i0.ɵɵComponentDeclaration<LoadingComponent, "osovitny-loading", never, {}, {}, never, never, false, never>;
1486
+ }
1487
+
1488
+ /*!
1489
+ * @osovitny/angular
1490
+ * Copyright (c) 2016-2026 Osovitny
1491
+ * SPDX-License-Identifier: MIT
1492
+ */
1493
+
1494
+ declare class PageSpinnerComponent implements OnDestroy {
1495
+ private router;
1496
+ isSpinnerVisible: boolean;
1497
+ Spinkit: {
1498
+ skChasingDots: string;
1499
+ skCubeGrid: string;
1500
+ skDoubleBounce: string;
1501
+ skRotatingPlane: string;
1502
+ skSpinnerPulse: string;
1503
+ skThreeBounce: string;
1504
+ skWanderingCubes: string;
1505
+ skWave: string;
1506
+ skLine: string;
1507
+ };
1508
+ backgroundColor: string;
1509
+ spinner: string;
1510
+ constructor(router: Router);
1511
+ checkRouterEvent(routerEvent: Event): void;
1512
+ ngOnDestroy(): void;
1513
+ static ɵfac: i0.ɵɵFactoryDeclaration<PageSpinnerComponent, never>;
1514
+ static ɵcmp: i0.ɵɵComponentDeclaration<PageSpinnerComponent, "osovitny-pagespinner", never, { "backgroundColor": { "alias": "backgroundColor"; "required": false; }; "spinner": { "alias": "spinner"; "required": false; }; }, {}, never, never, false, never>;
1515
+ }
1516
+
1517
+ declare class Copy2ClipboardComponent extends ComponentBase {
1518
+ tooltip: string;
1519
+ text: string;
1520
+ onCopy2Clipboard(event: any): void;
1521
+ static ɵfac: i0.ɵɵFactoryDeclaration<Copy2ClipboardComponent, never>;
1522
+ static ɵcmp: i0.ɵɵComponentDeclaration<Copy2ClipboardComponent, "osovitny-copy-2-clipboard", never, { "tooltip": { "alias": "tooltip"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, never, false, never>;
1523
+ }
1524
+
1525
+ /*!
1526
+ * @osovitny/angular
1527
+ * Copyright (c) 2016-2026 Osovitny
1528
+ * SPDX-License-Identifier: MIT
1529
+ */
1530
+
1531
+ declare class UrlSlugComponent extends EditComponentBase implements OnInit {
1532
+ firstValue: boolean;
1533
+ hrefGo: string;
1534
+ urlPrefix: string;
1535
+ isGoButtonVisible: boolean;
1536
+ watchedControlName: string;
1537
+ generated: EventEmitter<any>;
1538
+ constructor();
1539
+ ngOnInit(): void;
1540
+ private generateUrlSlug;
1541
+ private startWatching;
1542
+ onUrlSlugChange(): void;
1543
+ static ɵfac: i0.ɵɵFactoryDeclaration<UrlSlugComponent, never>;
1544
+ static ɵcmp: i0.ɵɵComponentDeclaration<UrlSlugComponent, "osovitny-urlslug", never, { "urlPrefix": { "alias": "urlPrefix"; "required": false; }; "isGoButtonVisible": { "alias": "isGoButtonVisible"; "required": false; }; "watchedControlName": { "alias": "watchedControlName"; "required": false; }; }, { "generated": "generated"; }, never, never, false, never>;
1545
+ }
1546
+
1547
+ declare class FeatureWillBeReadyComponent extends ComponentBase {
1548
+ readyDate: any;
1549
+ static ɵfac: i0.ɵɵFactoryDeclaration<FeatureWillBeReadyComponent, never>;
1550
+ static ɵcmp: i0.ɵɵComponentDeclaration<FeatureWillBeReadyComponent, "osovitny-feature-will-be-ready", never, { "readyDate": { "alias": "readyDate"; "required": false; }; }, {}, never, never, false, never>;
1551
+ }
1552
+
1553
+ declare class YouAgreeToOurTermsComponent extends ComponentBase {
1554
+ prefix: any;
1555
+ oneLine: boolean;
1556
+ static ɵfac: i0.ɵɵFactoryDeclaration<YouAgreeToOurTermsComponent, never>;
1557
+ static ɵcmp: i0.ɵɵComponentDeclaration<YouAgreeToOurTermsComponent, "osovitny-you-agree-to-our-terms", never, { "prefix": { "alias": "prefix"; "required": false; }; "oneLine": { "alias": "oneLine"; "required": false; }; }, {}, never, never, false, never>;
1558
+ }
1559
+
1560
+ /*!
1561
+ * @osovitny/angular
1562
+ * Copyright (c) 2016-2026 Osovitny
1563
+ * SPDX-License-Identifier: MIT
1564
+ */
1565
+
1566
+ declare class ContactUsForm extends EditComponentBase implements OnInit {
1567
+ private reCaptcha;
1568
+ private fb;
1569
+ private appContext;
1570
+ private api;
1571
+ private notificationService;
1572
+ isUserSignedIn: boolean;
1573
+ reCaptchaSiteKey: any;
1574
+ selectedTopic: any;
1575
+ topicList: {
1576
+ value: string;
1577
+ }[];
1578
+ showActionButtons: boolean;
1579
+ submit: EventEmitter<any>;
1580
+ constructor(reCaptcha: ReCaptchaV3Service, fb: FormBuilder, appContext: AppContextService, api: EmailsApiService, notificationService: NotificationService);
1581
+ ngOnInit(): void;
1582
+ createFormGroup(): void;
1583
+ isValid(): boolean;
1584
+ contactUs(): void;
1585
+ onSubmit(): void;
1586
+ onTopicChange(event: any): void;
1587
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContactUsForm, never>;
1588
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContactUsForm, "osovitny-forms-contactus-form", never, { "showActionButtons": { "alias": "showActionButtons"; "required": false; }; }, { "submit": "submit"; }, never, never, false, never>;
1589
+ }
1590
+
1591
+ declare class ContactUsDialog extends DialogBase {
1592
+ contactUsForm: ContactUsForm;
1593
+ constructor();
1594
+ onClose(): void;
1595
+ onSubmitFire(): void;
1596
+ onSubmit(): void;
1597
+ static ɵfac: i0.ɵɵFactoryDeclaration<ContactUsDialog, never>;
1598
+ static ɵcmp: i0.ɵɵComponentDeclaration<ContactUsDialog, "osovitny-contactus-dialog", never, {}, {}, never, never, false, never>;
1599
+ }
1600
+
1601
+ declare class HoveringDirective {
1602
+ hovering: boolean;
1603
+ onMouseEnter(): void;
1604
+ onMouseLeave(): void;
1605
+ static ɵfac: i0.ɵɵFactoryDeclaration<HoveringDirective, never>;
1606
+ static ɵdir: i0.ɵɵDirectiveDeclaration<HoveringDirective, "[osovitny-hover]", never, {}, {}, never, never, false, never>;
1607
+ }
1608
+
1609
+ /*!
1610
+ * @osovitny/angular
1611
+ * Copyright (c) 2016-2026 Osovitny
1612
+ * SPDX-License-Identifier: MIT
1613
+ */
1614
+
1615
+ declare abstract class ReplacerDirectiveBase {
1616
+ private el;
1617
+ private renderer;
1618
+ constructor(el: ElementRef, renderer: Renderer2);
1619
+ protected setUrlAttribute(name: string, url: string): void;
1620
+ protected setAttribute(name: string, value: string): void;
1621
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReplacerDirectiveBase, never>;
1622
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ReplacerDirectiveBase, never, never, {}, {}, never, never, true, never>;
1623
+ }
1624
+
1625
+ /*!
1626
+ * @osovitny/angular
1627
+ * Copyright (c) 2016-2026 Osovitny
1628
+ * SPDX-License-Identifier: MIT
1629
+ */
1630
+
1631
+ declare class AReplacerDirective extends ReplacerDirectiveBase implements OnInit, OnChanges {
1632
+ href: string;
1633
+ ngOnInit(): void;
1634
+ ngOnChanges(changes: SimpleChanges): void;
1635
+ private setHref;
1636
+ static ɵfac: i0.ɵɵFactoryDeclaration<AReplacerDirective, never>;
1637
+ static ɵdir: i0.ɵɵDirectiveDeclaration<AReplacerDirective, "a", never, { "href": { "alias": "href"; "required": false; }; }, {}, never, never, false, never>;
1638
+ }
1639
+
1640
+ /*!
1641
+ * @osovitny/angular
1642
+ * Copyright (c) 2016-2026 Osovitny
1643
+ * SPDX-License-Identifier: MIT
1644
+ */
1645
+
1646
+ declare class ImageReplacerDirective extends ReplacerDirectiveBase implements OnInit, OnChanges {
1647
+ src: string;
1648
+ ngOnInit(): void;
1649
+ ngOnChanges(changes: SimpleChanges): void;
1650
+ private setSrc;
1651
+ static ɵfac: i0.ɵɵFactoryDeclaration<ImageReplacerDirective, never>;
1652
+ static ɵdir: i0.ɵɵDirectiveDeclaration<ImageReplacerDirective, "img", never, { "src": { "alias": "src"; "required": false; }; }, {}, never, never, false, never>;
1653
+ }
1654
+
1655
+ /*!
1656
+ * @osovitny/angular
1657
+ * Copyright (c) 2016-2026 Osovitny
1658
+ * SPDX-License-Identifier: MIT
1659
+ */
1660
+
1661
+ declare class NativeElementDirective implements OnInit {
1662
+ private el;
1663
+ private control;
1664
+ constructor(el: ElementRef<HTMLFormElement>, control: NgControl);
1665
+ ngOnInit(): void;
1666
+ static ɵfac: i0.ɵɵFactoryDeclaration<NativeElementDirective, never>;
1667
+ static ɵdir: i0.ɵɵDirectiveDeclaration<NativeElementDirective, "[formControl], [formControlName]", never, {}, {}, never, never, false, never>;
1668
+ }
1669
+
1670
+ /*!
1671
+ * @osovitny/angular
1672
+ * Copyright (c) 2016-2026 Osovitny
1673
+ * SPDX-License-Identifier: MIT
1674
+ */
1675
+
1676
+ interface CodeName {
1677
+ code: string;
1678
+ name: string;
1679
+ }
1680
+ declare class AddressComponent extends EditComponentBase implements OnInit {
1681
+ private fb;
1682
+ private appContext;
1683
+ private _address;
1684
+ formGroupGenerated: boolean;
1685
+ countryData: Array<CodeName>;
1686
+ usStateData: Array<CodeName>;
1687
+ currentCountry: string;
1688
+ currentUSState: string;
1689
+ get address(): any;
1690
+ set address(value: any);
1691
+ change: EventEmitter<any>;
1692
+ constructor(fb: FormBuilder, appContext: AppContextService);
1693
+ ngOnInit(): void;
1694
+ private createFormGroup;
1695
+ private init;
1696
+ getAddress(): string;
1697
+ onCountryChange(event: any): void;
1698
+ onUSStateChange(event: any): void;
1699
+ static ɵfac: i0.ɵɵFactoryDeclaration<AddressComponent, never>;
1700
+ static ɵcmp: i0.ɵɵComponentDeclaration<AddressComponent, "osovitny-forms-address", never, { "address": { "alias": "address"; "required": false; }; }, { "change": "change"; }, never, never, false, never>;
1701
+ }
1702
+
1703
+ /*!
1704
+ * @osovitny/angular
1705
+ * Copyright (c) 2016-2026 Osovitny
1706
+ * SPDX-License-Identifier: MIT
1707
+ */
1708
+
1709
+ declare class CompanyComponent extends EditComponentBase implements OnInit {
1710
+ private fb;
1711
+ private _company;
1712
+ formGroupGenerated: boolean;
1713
+ get company(): any;
1714
+ set company(value: any);
1715
+ constructor(fb: FormBuilder);
1716
+ ngOnInit(): void;
1717
+ private createFormGroup;
1718
+ private init;
1719
+ getCompany(): string;
1720
+ static ɵfac: i0.ɵɵFactoryDeclaration<CompanyComponent, never>;
1721
+ static ɵcmp: i0.ɵɵComponentDeclaration<CompanyComponent, "osovitny-forms-company", never, { "company": { "alias": "company"; "required": false; }; }, {}, never, never, false, never>;
1722
+ }
1723
+
1724
+ /*!
1725
+ * @osovitny/angular
1726
+ * Copyright (c) 2016-2026 Osovitny
1727
+ * SPDX-License-Identifier: MIT
1728
+ */
1729
+
1730
+ declare class FileSizePipe implements PipeTransform {
1731
+ private units;
1732
+ transform(bytes?: number, precision?: number): string;
1733
+ static ɵfac: i0.ɵɵFactoryDeclaration<FileSizePipe, never>;
1734
+ static ɵpipe: i0.ɵɵPipeDeclaration<FileSizePipe, "filesize", false>;
1735
+ }
1736
+
1737
+ /*!
1738
+ * @osovitny/angular
1739
+ * Copyright (c) 2016-2026 Osovitny
1740
+ * SPDX-License-Identifier: MIT
1741
+ */
1742
+
1743
+ declare class ReplaceTextPipe implements PipeTransform {
1744
+ transform(inputData: string, search: string, replacement: string): string;
1745
+ static ɵfac: i0.ɵɵFactoryDeclaration<ReplaceTextPipe, never>;
1746
+ static ɵpipe: i0.ɵɵPipeDeclaration<ReplaceTextPipe, "replaceText", false>;
1747
+ }
1748
+
1749
+ declare class SafeHtmlPipe implements PipeTransform {
1750
+ private sanitized;
1751
+ constructor(sanitized: DomSanitizer);
1752
+ transform(value: any): _angular_platform_browser.SafeHtml;
1753
+ static ɵfac: i0.ɵɵFactoryDeclaration<SafeHtmlPipe, never>;
1754
+ static ɵpipe: i0.ɵɵPipeDeclaration<SafeHtmlPipe, "safeHtml", false>;
1755
+ }
1756
+
1757
+ declare abstract class ValidationSummaryComponent extends EditComponentBase {
1758
+ constructor();
1759
+ private getControlTitle;
1760
+ private getTitleAttribute;
1761
+ getFormValidationMessages(): string[];
1762
+ getValidationMessages(control: any, name?: string, title?: string): string[];
1763
+ static ɵfac: i0.ɵɵFactoryDeclaration<ValidationSummaryComponent, never>;
1764
+ static ɵcmp: i0.ɵɵComponentDeclaration<ValidationSummaryComponent, "ng-component", never, {}, {}, never, never, false, never>;
1765
+ }
1766
+
1767
+ declare class FormValidationSummaryComponent extends ValidationSummaryComponent {
1768
+ visible: boolean;
1769
+ customerrors: string[];
1770
+ viewtype: number;
1771
+ constructor();
1772
+ getErrors(): any[];
1773
+ static ɵfac: i0.ɵɵFactoryDeclaration<FormValidationSummaryComponent, never>;
1774
+ static ɵcmp: i0.ɵɵComponentDeclaration<FormValidationSummaryComponent, "osovitny-form-validation-summary", never, { "visible": { "alias": "visible"; "required": false; }; "customerrors": { "alias": "customerrors"; "required": false; }; "viewtype": { "alias": "viewtype"; "required": false; }; }, {}, never, never, false, never>;
1775
+ }
1776
+
1777
+ declare class ItemValidationSummaryComponent extends ValidationSummaryComponent {
1778
+ static ɵfac: i0.ɵɵFactoryDeclaration<ItemValidationSummaryComponent, never>;
1779
+ static ɵcmp: i0.ɵɵComponentDeclaration<ItemValidationSummaryComponent, "osovitny-item-validation-summary", never, {}, {}, never, never, false, never>;
1780
+ }
1781
+
1782
+ declare let InjectorInstance: Injector;
1783
+ declare class OsovitnyCoreModule {
1784
+ private injector;
1785
+ constructor(injector: Injector);
1786
+ static ɵfac: i0.ɵɵFactoryDeclaration<OsovitnyCoreModule, never>;
1787
+ static ɵmod: i0.ɵɵNgModuleDeclaration<OsovitnyCoreModule, never, [typeof i1.CommonModule, typeof i2$1.RouterModule, typeof i3.ToastrModule, typeof LocalizationModule], [typeof i2$1.RouterModule, typeof LocalizationModule]>;
1788
+ static ɵinj: i0.ɵɵInjectorDeclaration<OsovitnyCoreModule>;
1789
+ }
1790
+
1791
+ declare class OsovitnyDataModule {
1792
+ static ɵfac: i0.ɵɵFactoryDeclaration<OsovitnyDataModule, never>;
1793
+ static ɵmod: i0.ɵɵNgModuleDeclaration<OsovitnyDataModule, never, [typeof i1.CommonModule], never>;
1794
+ static ɵinj: i0.ɵɵInjectorDeclaration<OsovitnyDataModule>;
1795
+ }
1796
+
1797
+ declare class OsovitnyIAMModule {
1798
+ static ɵfac: i0.ɵɵFactoryDeclaration<OsovitnyIAMModule, never>;
1799
+ static ɵmod: i0.ɵɵNgModuleDeclaration<OsovitnyIAMModule, never, [typeof i1.CommonModule, typeof i2$1.RouterModule, typeof i3$1.MsalModule], never>;
1800
+ static ɵinj: i0.ɵɵInjectorDeclaration<OsovitnyIAMModule>;
1801
+ }
1802
+
1803
+ /*!
1804
+ * @osovitny/angular
1805
+ * Copyright (c) 2016-2026 Osovitny
1806
+ * SPDX-License-Identifier: MIT
1807
+ */
1808
+
1809
+ declare class SignInPage extends PageBase implements OnInit {
1810
+ private auth;
1811
+ constructor(auth: AuthService);
1812
+ ngOnInit(): void;
1813
+ static ɵfac: i0.ɵɵFactoryDeclaration<SignInPage, never>;
1814
+ static ɵcmp: i0.ɵɵComponentDeclaration<SignInPage, "iam-signin-page", never, {}, {}, never, never, false, never>;
1815
+ }
1816
+
1817
+ /*!
1818
+ * @osovitny/angular
1819
+ * Copyright (c) 2016-2026 Osovitny
1820
+ * SPDX-License-Identifier: MIT
1821
+ */
1822
+
1823
+ declare class SignUpPage extends PageBase implements OnInit {
1824
+ private auth;
1825
+ constructor(auth: AuthService);
1826
+ ngOnInit(): void;
1827
+ static ɵfac: i0.ɵɵFactoryDeclaration<SignUpPage, never>;
1828
+ static ɵcmp: i0.ɵɵComponentDeclaration<SignUpPage, "iam-signup-page", never, {}, {}, never, never, false, never>;
1829
+ }
1830
+
1831
+ /*!
1832
+ * @osovitny/angular
1833
+ * Copyright (c) 2016-2026 Osovitny
1834
+ * SPDX-License-Identifier: MIT
1835
+ */
1836
+
1837
+ declare class SignOutPage extends PageBase implements OnInit {
1838
+ private auth;
1839
+ constructor(auth: AuthService);
1840
+ ngOnInit(): void;
1841
+ static ɵfac: i0.ɵɵFactoryDeclaration<SignOutPage, never>;
1842
+ static ɵcmp: i0.ɵɵComponentDeclaration<SignOutPage, "iam-signout-page", never, {}, {}, never, never, false, never>;
1843
+ }
1844
+
1845
+ declare class OsovitnyIAMPagesModule {
1846
+ static ɵfac: i0.ɵɵFactoryDeclaration<OsovitnyIAMPagesModule, never>;
1847
+ static ɵmod: i0.ɵɵNgModuleDeclaration<OsovitnyIAMPagesModule, [typeof SignInPage, typeof SignUpPage, typeof SignOutPage], [typeof i1.CommonModule, typeof i2$1.RouterModule, typeof i2$1.RouterModule], never>;
1848
+ static ɵinj: i0.ɵɵInjectorDeclaration<OsovitnyIAMPagesModule>;
1849
+ }
1850
+
1851
+ declare class FaModule {
1852
+ constructor(library: FaIconLibrary);
1853
+ static ɵfac: i0.ɵɵFactoryDeclaration<FaModule, never>;
1854
+ static ɵmod: i0.ɵɵNgModuleDeclaration<FaModule, never, [typeof i1.CommonModule, typeof i2$2.FontAwesomeModule], [typeof i2$2.FontAwesomeModule]>;
1855
+ static ɵinj: i0.ɵɵInjectorDeclaration<FaModule>;
1856
+ }
1857
+
1858
+ declare class KendoModule {
1859
+ static ɵfac: i0.ɵɵFactoryDeclaration<KendoModule, never>;
1860
+ static ɵmod: i0.ɵɵNgModuleDeclaration<KendoModule, never, [typeof i1.CommonModule, typeof i2$3.LayoutModule, typeof i3$2.ButtonsModule, typeof i4.DropDownsModule, typeof i5.InputsModule, typeof i6.LabelModule, typeof i7.ScrollViewModule, typeof i8.IntlModule, typeof i9.DateInputsModule, typeof i5.FormFieldModule, typeof i10.IconsModule, typeof i11.DialogsModule, typeof i12.UploadsModule, typeof i13.SchedulerModule, typeof i14.ChartsModule, typeof i15.GridModule, typeof i6.LabelModule, typeof i16.PagerModule, typeof i17.RippleModule, typeof i18.PopupModule, typeof i19.TreeViewModule, typeof i20.TooltipsModule], [typeof i2$3.LayoutModule, typeof i3$2.ButtonsModule, typeof i4.DropDownsModule, typeof i5.InputsModule, typeof i6.LabelModule, typeof i7.ScrollViewModule, typeof i8.IntlModule, typeof i9.DateInputsModule, typeof i5.FormFieldModule, typeof i10.IconsModule, typeof i11.DialogsModule, typeof i12.UploadsModule, typeof i13.SchedulerModule, typeof i14.ChartsModule, typeof i15.GridModule, typeof i6.LabelModule, typeof i16.PagerModule, typeof i17.RippleModule, typeof i18.PopupModule, typeof i19.TreeViewModule, typeof i20.TooltipsModule]>;
1861
+ static ɵinj: i0.ɵɵInjectorDeclaration<KendoModule>;
1862
+ }
1863
+
1864
+ declare class OsovitnyUIModule {
1865
+ static ɵfac: i0.ɵɵFactoryDeclaration<OsovitnyUIModule, never>;
1866
+ static ɵmod: i0.ɵɵNgModuleDeclaration<OsovitnyUIModule, [typeof CardComponent, typeof CardHeaderComponent, typeof CardBodyComponent, typeof CardFooterComponent, typeof CheckIconComponent, typeof Copy2ClipboardComponent, typeof ControlPanelComponent, typeof DataPagerComponent, typeof CountryDropdownlist, typeof LanguageDropdownlist, typeof ModerationStatusDropdownlist, typeof PublishStatusDropdownlist, typeof TimezoneDropdownlist, typeof HtmlEditorComponent, typeof SignInButtonComponent, typeof SignUpButtonComponent, typeof SignOutButtonComponent, typeof NodataComponent, typeof NoMobileSupportComponent, typeof Message2UserComponent, typeof PageSpinnerComponent, typeof LoadingComponent, typeof UrlSlugComponent, typeof FeatureWillBeReadyComponent, typeof YouAgreeToOurTermsComponent, typeof ContactUsDialog, typeof HoveringDirective, typeof AReplacerDirective, typeof ImageReplacerDirective, typeof NativeElementDirective, typeof AddressComponent, typeof CompanyComponent, typeof ContactUsForm, typeof SafeHtmlPipe, typeof ReplaceTextPipe, typeof FileSizePipe, typeof FormValidationSummaryComponent, typeof ItemValidationSummaryComponent], [typeof i1.CommonModule, typeof i2$1.RouterModule, typeof i41.ReactiveFormsModule, typeof i41.FormsModule, typeof i42.NgxCaptchaModule, typeof i43.FERootModule, typeof FaModule, typeof KendoModule], [typeof CardComponent, typeof CardHeaderComponent, typeof CardBodyComponent, typeof CardFooterComponent, typeof CheckIconComponent, typeof Copy2ClipboardComponent, typeof ControlPanelComponent, typeof DataPagerComponent, typeof CountryDropdownlist, typeof LanguageDropdownlist, typeof ModerationStatusDropdownlist, typeof PublishStatusDropdownlist, typeof TimezoneDropdownlist, typeof HtmlEditorComponent, typeof SignInButtonComponent, typeof SignUpButtonComponent, typeof SignOutButtonComponent, typeof NodataComponent, typeof NoMobileSupportComponent, typeof Message2UserComponent, typeof PageSpinnerComponent, typeof LoadingComponent, typeof UrlSlugComponent, typeof FeatureWillBeReadyComponent, typeof YouAgreeToOurTermsComponent, typeof ContactUsDialog, typeof HoveringDirective, typeof AReplacerDirective, typeof ImageReplacerDirective, typeof NativeElementDirective, typeof AddressComponent, typeof CompanyComponent, typeof ContactUsForm, typeof SafeHtmlPipe, typeof ReplaceTextPipe, typeof FileSizePipe, typeof FormValidationSummaryComponent, typeof ItemValidationSummaryComponent]>;
1867
+ static ɵinj: i0.ɵɵInjectorDeclaration<OsovitnyUIModule>;
1868
+ }
1869
+
1870
+ declare class OsovitnyBillingModule {
1871
+ static ɵfac: i0.ɵɵFactoryDeclaration<OsovitnyBillingModule, never>;
1872
+ static ɵmod: i0.ɵɵNgModuleDeclaration<OsovitnyBillingModule, [typeof BuyAccessButtonComponent, typeof SubscribePlanButtonComponent, typeof OrderSummaryComponent, typeof PaymentMethodsComponent, typeof PaymentOptionsComponent, typeof BraintreeDialog, typeof PaypalButtonComponent, typeof PaypalSubscribeButtonComponent, typeof PayPalComponent, typeof StripeDialog], [typeof i1.CommonModule, typeof i41.ReactiveFormsModule, typeof i41.FormsModule, typeof FaModule, typeof KendoModule, typeof OsovitnyUIModule], [typeof BuyAccessButtonComponent, typeof SubscribePlanButtonComponent, typeof OrderSummaryComponent, typeof PaymentMethodsComponent, typeof PaymentOptionsComponent, typeof BraintreeDialog, typeof PaypalButtonComponent, typeof PaypalSubscribeButtonComponent, typeof PayPalComponent, typeof StripeDialog]>;
1873
+ static ɵinj: i0.ɵɵInjectorDeclaration<OsovitnyBillingModule>;
1874
+ }
1875
+
1876
+ declare class OsovitnyModule {
1877
+ private injector;
1878
+ constructor(injector: Injector);
1879
+ static ɵfac: i0.ɵɵFactoryDeclaration<OsovitnyModule, never>;
1880
+ static ɵmod: i0.ɵɵNgModuleDeclaration<OsovitnyModule, never, [typeof i1.CommonModule, typeof i2.TranslateModule, typeof OsovitnyCoreModule, typeof OsovitnyDataModule, typeof OsovitnyIAMModule, typeof OsovitnyUIModule], [typeof OsovitnyCoreModule, typeof OsovitnyDataModule, typeof OsovitnyIAMModule, typeof OsovitnyUIModule]>;
1881
+ static ɵinj: i0.ɵɵInjectorDeclaration<OsovitnyModule>;
1882
+ }
1883
+
1884
+ export { AReplacerDirective, AddressComponent, AdminGuard, ApiServiceBase, AppContextService, AppsGoServiceBase, AuthService, AuthenticationGuard, BillingService, BraintreeDialog, BrowserService, BuyAccessButtonComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CheckIconComponent, CompanyComponent, ComponentBase, ContactUsDialog, ContactUsForm, ControlPanelComponent, Copy2ClipboardComponent, CoreApiService, CountryDropdownlist, CurrenciesApiService, CurrenciesStorageService, DataPagerComponent, DialogBase, DigitalMarketingService, EditComponentBase, EditPageBase, EmailsApiService, EnumEditComponentBase, FeatureWillBeReadyComponent, FileSizePipe, FormValidationSummaryComponent, GlobalErrorHandler, GoServiceBase, GoogleAnalyticsService, GridEditServiceBase, GridReadServiceBase, HoveringDirective, HtmlEditorComponent, HtmlEditorComponentBase, IdleService, ImageReplacerDirective, InjectorInstance, ItemValidationSummaryComponent, L10nUtils, LanguageDropdownlist, ListBase, LoadingComponent, LoadingService, LocalStorageService, LocalizationModule, LocalizationService, LocalizePipe, LoggingService, Message2User, Message2UserComponent, Message2UserService, ModerationStatusDropdownlist, NativeElementDirective, NoMobileSupportComponent, NodataComponent, NotificationService, OrderSummaryComponent, OsovitnyBillingModule, OsovitnyCoreModule, OsovitnyDataModule, OsovitnyHttpInterceptor, OsovitnyIAMModule, OsovitnyIAMPagesModule, OsovitnyLogLevel, OsovitnyModule, OsovitnyUIModule, PageBase, PageSpinnerComponent, PagedPageBase, PayPalComponent, PayPalScriptService, PaymentMethodsComponent, PaymentOptionsComponent, PaymentsApiService, PaymentsService, PaypalButtonComponent, PaypalSubscribeButtonComponent, PromoCodesApiService, PublishStatusDropdownlist, ReplaceTextPipe, SafeHtmlPipe, ScriptService, ServiceBase, SessionStorageService, SignInButtonComponent, SignOutButtonComponent, SignUpButtonComponent, StarterGuard, StarterService, StripeDialog, SubscribePlanButtonComponent, SubscriptionsApiService, TimezoneDropdownlist, TransactionsApiService, UrlSlugComponent, ValidationSummaryComponent, YouAgreeToOurTermsComponent, getLocalizationInjector, translateLoaderFactory };
1885
+ export type { Message2UserConfig };