@osovitny/anatoly 3.16.76 → 3.16.78
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.
- package/esm2022/lib/core/consts/settings.mjs +3 -3
- package/esm2022/lib/iam/pages/signin.page.mjs +2 -2
- package/esm2022/lib/iam/pages/signout.page.mjs +2 -2
- package/esm2022/lib/iam/pages/signup.page.mjs +2 -2
- package/esm2022/lib/ui/components/base/components/component.mjs +69 -0
- package/esm2022/lib/ui/components/base/components/edit.component.mjs +135 -0
- package/esm2022/lib/ui/components/base/dialog.mjs +2 -2
- package/esm2022/lib/ui/components/base/list.mjs +2 -2
- package/esm2022/lib/ui/components/base/pages/edit.page.mjs +31 -0
- package/esm2022/lib/ui/components/base/pages/page.mjs +31 -0
- package/esm2022/lib/ui/components/base/pages/paged.page.mjs +66 -0
- package/esm2022/lib/ui/components/html-editor/base-html-editor.component.mjs +2 -2
- package/esm2022/lib/ui/components/identity/signin-button.component.mjs +2 -2
- package/esm2022/lib/ui/components/identity/signout-button.component.mjs +2 -2
- package/esm2022/lib/ui/components/identity/signup-button.component.mjs +2 -2
- package/esm2022/lib/ui/components/index.mjs +6 -5
- package/esm2022/lib/ui/components/spinners/loading/loading.component.mjs +2 -2
- package/esm2022/lib/ui/forms/components/dropdownlists/timezone/timezone.dropdownlist.mjs +2 -2
- package/esm2022/lib/ui/forms/components/urlslug/urlslug.component.mjs +2 -2
- package/esm2022/lib/ui/forms/contact-us/contact-us.mjs +2 -2
- package/esm2022/lib/ui/validation/validation-summary.component.mjs +2 -2
- package/fesm2022/osovitny-anatoly.mjs +96 -65
- package/fesm2022/osovitny-anatoly.mjs.map +1 -1
- package/lib/core/consts/settings.d.ts +2 -2
- package/lib/iam/iam-pages.routes.d.ts +1 -1
- package/lib/iam/pages/signin.page.d.ts +1 -1
- package/lib/iam/pages/signout.page.d.ts +1 -1
- package/lib/iam/pages/signup.page.d.ts +1 -1
- package/lib/ui/components/base/{component.d.ts → components/component.d.ts} +5 -3
- package/lib/ui/components/base/dialog.d.ts +1 -1
- package/lib/ui/components/base/list.d.ts +1 -1
- package/lib/ui/components/base/pages/edit.page.d.ts +6 -0
- package/lib/ui/components/base/{page.d.ts → pages/page.d.ts} +1 -1
- package/lib/ui/components/html-editor/base-html-editor.component.d.ts +1 -1
- package/lib/ui/components/identity/signin-button.component.d.ts +1 -1
- package/lib/ui/components/identity/signout-button.component.d.ts +1 -1
- package/lib/ui/components/identity/signup-button.component.d.ts +1 -1
- package/lib/ui/components/index.d.ts +5 -4
- package/lib/ui/components/spinners/loading/loading.component.d.ts +1 -1
- package/lib/ui/forms/components/dropdownlists/timezone/timezone.dropdownlist.d.ts +1 -1
- package/lib/ui/forms/components/urlslug/urlslug.component.d.ts +1 -1
- package/lib/ui/forms/contact-us/contact-us.d.ts +1 -1
- package/lib/ui/validation/validation-summary.component.d.ts +1 -1
- package/package.json +1 -1
- package/esm2022/lib/ui/components/base/component.mjs +0 -65
- package/esm2022/lib/ui/components/base/edit.component.mjs +0 -135
- package/esm2022/lib/ui/components/base/page.mjs +0 -31
- package/esm2022/lib/ui/components/base/paged.page.mjs +0 -66
- /package/lib/ui/components/base/{edit.component.d.ts → components/edit.component.d.ts} +0 -0
- /package/lib/ui/components/base/{paged.page.d.ts → pages/paged.page.d.ts} +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import js_beautify from 'js-beautify';
|
|
2
2
|
import * as i0 from '@angular/core';
|
|
3
|
-
import { Injectable, Inject, EventEmitter, Output, Pipe, APP_INITIALIZER, Injector, NgModule, Component, Input, ViewEncapsulation, Directive, ViewChild, HostBinding, HostListener, Optional, SkipSelf } from '@angular/core';
|
|
3
|
+
import { Injectable, Inject, EventEmitter, Output, Pipe, APP_INITIALIZER, Injector, NgModule, isDevMode, Component, Input, ViewEncapsulation, Directive, ViewChild, HostBinding, HostListener, Optional, SkipSelf } from '@angular/core';
|
|
4
4
|
import * as i1 from '@angular/router';
|
|
5
5
|
import { NavigationEnd, NavigationStart, NavigationCancel, NavigationError, RouterModule } from '@angular/router';
|
|
6
6
|
import * as i1$1 from '@angular/common/http';
|
|
@@ -64,7 +64,7 @@ import { IconsModule } from '@progress/kendo-angular-icons';
|
|
|
64
64
|
*/
|
|
65
65
|
function getAppSettingsById(id) {
|
|
66
66
|
let apps = ClientApps;
|
|
67
|
-
if (apps) {
|
|
67
|
+
if (apps && id) {
|
|
68
68
|
for (let i = 0; i < apps.length; i++) {
|
|
69
69
|
let app = apps[i];
|
|
70
70
|
if (app.id == id) {
|
|
@@ -76,7 +76,7 @@ function getAppSettingsById(id) {
|
|
|
76
76
|
}
|
|
77
77
|
function getAppSettingsByName(name) {
|
|
78
78
|
let apps = ClientApps;
|
|
79
|
-
if (apps) {
|
|
79
|
+
if (apps && name) {
|
|
80
80
|
for (let i = 0; i < apps.length; i++) {
|
|
81
81
|
let app = apps[i];
|
|
82
82
|
if (app.name == name) {
|
|
@@ -3211,6 +3211,7 @@ class EmailsApiService extends ApiServiceBase {
|
|
|
3211
3211
|
*/
|
|
3212
3212
|
//Node
|
|
3213
3213
|
class ComponentBase {
|
|
3214
|
+
isDevMode = false;
|
|
3214
3215
|
subs = new Subs();
|
|
3215
3216
|
//Component Data => usually loading from API
|
|
3216
3217
|
dataLoading = true;
|
|
@@ -3218,6 +3219,9 @@ class ComponentBase {
|
|
|
3218
3219
|
dataFound = false;
|
|
3219
3220
|
//Inputs
|
|
3220
3221
|
classes;
|
|
3222
|
+
ngOnInit() {
|
|
3223
|
+
this.isDevMode = isDevMode();
|
|
3224
|
+
}
|
|
3221
3225
|
ngOnDestroy() {
|
|
3222
3226
|
this.subs.unsubscribe();
|
|
3223
3227
|
}
|
|
@@ -3394,58 +3398,22 @@ class EditComponentBase extends ComponentBase {
|
|
|
3394
3398
|
Anatoly Osovitny anatoly@osovitny.com
|
|
3395
3399
|
|
|
3396
3400
|
Created:
|
|
3397
|
-
|
|
3401
|
+
20 Aug 2022
|
|
3398
3402
|
|
|
3399
3403
|
Copyright (c) 2016-2022 Osovitny Inc. All rights reserved.
|
|
3400
3404
|
</file>
|
|
3401
3405
|
*/
|
|
3402
3406
|
//Node
|
|
3403
|
-
class
|
|
3404
|
-
|
|
3405
|
-
|
|
3406
|
-
return this._isOpen;
|
|
3407
|
-
}
|
|
3408
|
-
set isOpen(value) {
|
|
3409
|
-
if (value) {
|
|
3410
|
-
if (this.anOnBeforeOpen) {
|
|
3411
|
-
this.anOnBeforeOpen();
|
|
3412
|
-
}
|
|
3413
|
-
this.opened.emit();
|
|
3414
|
-
}
|
|
3415
|
-
this._isOpen = value;
|
|
3416
|
-
}
|
|
3417
|
-
//Events
|
|
3418
|
-
opened = new EventEmitter();
|
|
3419
|
-
closed = new EventEmitter();
|
|
3420
|
-
constructor() {
|
|
3421
|
-
super();
|
|
3422
|
-
}
|
|
3423
|
-
open() {
|
|
3424
|
-
this.isOpen = true;
|
|
3425
|
-
}
|
|
3426
|
-
close(returnValue = "OK") {
|
|
3427
|
-
this.isOpen = false;
|
|
3428
|
-
this.closed.emit(returnValue);
|
|
3429
|
-
}
|
|
3430
|
-
cancel() {
|
|
3431
|
-
this.isOpen = false;
|
|
3432
|
-
this.closed.emit(-1);
|
|
3433
|
-
}
|
|
3434
|
-
static ɵfac = function DialogBase_Factory(t) { return new (t || DialogBase)(); };
|
|
3435
|
-
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DialogBase, selectors: [["ng-component"]], inputs: { isOpen: "isOpen" }, outputs: { opened: "opened", closed: "closed" }, features: [i0.ɵɵInheritDefinitionFeature], decls: 0, vars: 0, template: function DialogBase_Template(rf, ctx) { }, encapsulation: 2 });
|
|
3407
|
+
class PageBase extends ComponentBase {
|
|
3408
|
+
static ɵfac = /*@__PURE__*/ function () { let ɵPageBase_BaseFactory; return function PageBase_Factory(t) { return (ɵPageBase_BaseFactory || (ɵPageBase_BaseFactory = i0.ɵɵgetInheritedFactory(PageBase)))(t || PageBase); }; }();
|
|
3409
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PageBase, selectors: [["ng-component"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 0, vars: 0, template: function PageBase_Template(rf, ctx) { }, encapsulation: 2 });
|
|
3436
3410
|
}
|
|
3437
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(
|
|
3411
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PageBase, [{
|
|
3438
3412
|
type: Component,
|
|
3439
3413
|
args: [{
|
|
3440
3414
|
template: ''
|
|
3441
3415
|
}]
|
|
3442
|
-
}],
|
|
3443
|
-
type: Input
|
|
3444
|
-
}], opened: [{
|
|
3445
|
-
type: Output
|
|
3446
|
-
}], closed: [{
|
|
3447
|
-
type: Output
|
|
3448
|
-
}] }); })();
|
|
3416
|
+
}], null, null); })();
|
|
3449
3417
|
|
|
3450
3418
|
/*
|
|
3451
3419
|
<file>
|
|
@@ -3463,7 +3431,34 @@ class DialogBase extends EditComponentBase {
|
|
|
3463
3431
|
</file>
|
|
3464
3432
|
*/
|
|
3465
3433
|
//Node
|
|
3466
|
-
class
|
|
3434
|
+
class EditPageBase extends EditComponentBase {
|
|
3435
|
+
static ɵfac = /*@__PURE__*/ function () { let ɵEditPageBase_BaseFactory; return function EditPageBase_Factory(t) { return (ɵEditPageBase_BaseFactory || (ɵEditPageBase_BaseFactory = i0.ɵɵgetInheritedFactory(EditPageBase)))(t || EditPageBase); }; }();
|
|
3436
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: EditPageBase, selectors: [["ng-component"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 0, vars: 0, template: function EditPageBase_Template(rf, ctx) { }, encapsulation: 2 });
|
|
3437
|
+
}
|
|
3438
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(EditPageBase, [{
|
|
3439
|
+
type: Component,
|
|
3440
|
+
args: [{
|
|
3441
|
+
template: ''
|
|
3442
|
+
}]
|
|
3443
|
+
}], null, null); })();
|
|
3444
|
+
|
|
3445
|
+
/*
|
|
3446
|
+
<file>
|
|
3447
|
+
Project:
|
|
3448
|
+
@osovitny/anatoly
|
|
3449
|
+
|
|
3450
|
+
Authors:
|
|
3451
|
+
Vadim Osovitny vadim@osovitny.com
|
|
3452
|
+
Anatoly Osovitny anatoly@osovitny.com
|
|
3453
|
+
|
|
3454
|
+
Created:
|
|
3455
|
+
20 Aug 2022
|
|
3456
|
+
|
|
3457
|
+
Copyright (c) 2016-2022 Osovitny Inc. All rights reserved.
|
|
3458
|
+
</file>
|
|
3459
|
+
*/
|
|
3460
|
+
//Node
|
|
3461
|
+
class PagedPageBase extends PageBase {
|
|
3467
3462
|
currentFilter = null;
|
|
3468
3463
|
//Items & Pagination
|
|
3469
3464
|
items;
|
|
@@ -3471,7 +3466,6 @@ class ListBase extends ComponentBase {
|
|
|
3471
3466
|
pageSize = 10;
|
|
3472
3467
|
skipItems = 0;
|
|
3473
3468
|
currentPage = 1;
|
|
3474
|
-
showNoDataIfNoDataFound = true;
|
|
3475
3469
|
loadPageOne() {
|
|
3476
3470
|
this.skipItems = 0;
|
|
3477
3471
|
this.currentPage = 1;
|
|
@@ -3500,17 +3494,15 @@ class ListBase extends ComponentBase {
|
|
|
3500
3494
|
this.currentPage = (this.skipItems / this.pageSize) + 1;
|
|
3501
3495
|
this.loadPage();
|
|
3502
3496
|
}
|
|
3503
|
-
static ɵfac = /*@__PURE__*/ function () { let ɵ
|
|
3504
|
-
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type:
|
|
3497
|
+
static ɵfac = /*@__PURE__*/ function () { let ɵPagedPageBase_BaseFactory; return function PagedPageBase_Factory(t) { return (ɵPagedPageBase_BaseFactory || (ɵPagedPageBase_BaseFactory = i0.ɵɵgetInheritedFactory(PagedPageBase)))(t || PagedPageBase); }; }();
|
|
3498
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: PagedPageBase, selectors: [["ng-component"]], features: [i0.ɵɵInheritDefinitionFeature], decls: 0, vars: 0, template: function PagedPageBase_Template(rf, ctx) { }, encapsulation: 2 });
|
|
3505
3499
|
}
|
|
3506
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(
|
|
3500
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(PagedPageBase, [{
|
|
3507
3501
|
type: Component,
|
|
3508
3502
|
args: [{
|
|
3509
3503
|
template: ''
|
|
3510
3504
|
}]
|
|
3511
|
-
}], null,
|
|
3512
|
-
type: Input
|
|
3513
|
-
}] }); })();
|
|
3505
|
+
}], null, null); })();
|
|
3514
3506
|
|
|
3515
3507
|
/*
|
|
3516
3508
|
<file>
|
|
@@ -3522,22 +3514,58 @@ class ListBase extends ComponentBase {
|
|
|
3522
3514
|
Anatoly Osovitny anatoly@osovitny.com
|
|
3523
3515
|
|
|
3524
3516
|
Created:
|
|
3525
|
-
|
|
3517
|
+
24 Jan 2022
|
|
3526
3518
|
|
|
3527
3519
|
Copyright (c) 2016-2022 Osovitny Inc. All rights reserved.
|
|
3528
3520
|
</file>
|
|
3529
3521
|
*/
|
|
3530
3522
|
//Node
|
|
3531
|
-
class
|
|
3532
|
-
|
|
3533
|
-
|
|
3523
|
+
class DialogBase extends EditComponentBase {
|
|
3524
|
+
_isOpen = false;
|
|
3525
|
+
get isOpen() {
|
|
3526
|
+
return this._isOpen;
|
|
3527
|
+
}
|
|
3528
|
+
set isOpen(value) {
|
|
3529
|
+
if (value) {
|
|
3530
|
+
if (this.anOnBeforeOpen) {
|
|
3531
|
+
this.anOnBeforeOpen();
|
|
3532
|
+
}
|
|
3533
|
+
this.opened.emit();
|
|
3534
|
+
}
|
|
3535
|
+
this._isOpen = value;
|
|
3536
|
+
}
|
|
3537
|
+
//Events
|
|
3538
|
+
opened = new EventEmitter();
|
|
3539
|
+
closed = new EventEmitter();
|
|
3540
|
+
constructor() {
|
|
3541
|
+
super();
|
|
3542
|
+
}
|
|
3543
|
+
open() {
|
|
3544
|
+
this.isOpen = true;
|
|
3545
|
+
}
|
|
3546
|
+
close(returnValue = "OK") {
|
|
3547
|
+
this.isOpen = false;
|
|
3548
|
+
this.closed.emit(returnValue);
|
|
3549
|
+
}
|
|
3550
|
+
cancel() {
|
|
3551
|
+
this.isOpen = false;
|
|
3552
|
+
this.closed.emit(-1);
|
|
3553
|
+
}
|
|
3554
|
+
static ɵfac = function DialogBase_Factory(t) { return new (t || DialogBase)(); };
|
|
3555
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: DialogBase, selectors: [["ng-component"]], inputs: { isOpen: "isOpen" }, outputs: { opened: "opened", closed: "closed" }, features: [i0.ɵɵInheritDefinitionFeature], decls: 0, vars: 0, template: function DialogBase_Template(rf, ctx) { }, encapsulation: 2 });
|
|
3534
3556
|
}
|
|
3535
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(
|
|
3557
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DialogBase, [{
|
|
3536
3558
|
type: Component,
|
|
3537
3559
|
args: [{
|
|
3538
3560
|
template: ''
|
|
3539
3561
|
}]
|
|
3540
|
-
}],
|
|
3562
|
+
}], function () { return []; }, { isOpen: [{
|
|
3563
|
+
type: Input
|
|
3564
|
+
}], opened: [{
|
|
3565
|
+
type: Output
|
|
3566
|
+
}], closed: [{
|
|
3567
|
+
type: Output
|
|
3568
|
+
}] }); })();
|
|
3541
3569
|
|
|
3542
3570
|
/*
|
|
3543
3571
|
<file>
|
|
@@ -3555,7 +3583,7 @@ class PageBase extends ComponentBase {
|
|
|
3555
3583
|
</file>
|
|
3556
3584
|
*/
|
|
3557
3585
|
//Node
|
|
3558
|
-
class
|
|
3586
|
+
class ListBase extends ComponentBase {
|
|
3559
3587
|
currentFilter = null;
|
|
3560
3588
|
//Items & Pagination
|
|
3561
3589
|
items;
|
|
@@ -3563,6 +3591,7 @@ class PagedPageBase extends PageBase {
|
|
|
3563
3591
|
pageSize = 10;
|
|
3564
3592
|
skipItems = 0;
|
|
3565
3593
|
currentPage = 1;
|
|
3594
|
+
showNoDataIfNoDataFound = true;
|
|
3566
3595
|
loadPageOne() {
|
|
3567
3596
|
this.skipItems = 0;
|
|
3568
3597
|
this.currentPage = 1;
|
|
@@ -3591,15 +3620,17 @@ class PagedPageBase extends PageBase {
|
|
|
3591
3620
|
this.currentPage = (this.skipItems / this.pageSize) + 1;
|
|
3592
3621
|
this.loadPage();
|
|
3593
3622
|
}
|
|
3594
|
-
static ɵfac = /*@__PURE__*/ function () { let ɵ
|
|
3595
|
-
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type:
|
|
3623
|
+
static ɵfac = /*@__PURE__*/ function () { let ɵListBase_BaseFactory; return function ListBase_Factory(t) { return (ɵListBase_BaseFactory || (ɵListBase_BaseFactory = i0.ɵɵgetInheritedFactory(ListBase)))(t || ListBase); }; }();
|
|
3624
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ListBase, selectors: [["ng-component"]], inputs: { showNoDataIfNoDataFound: "showNoDataIfNoDataFound" }, features: [i0.ɵɵInheritDefinitionFeature], decls: 0, vars: 0, template: function ListBase_Template(rf, ctx) { }, encapsulation: 2 });
|
|
3596
3625
|
}
|
|
3597
|
-
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(
|
|
3626
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ListBase, [{
|
|
3598
3627
|
type: Component,
|
|
3599
3628
|
args: [{
|
|
3600
3629
|
template: ''
|
|
3601
3630
|
}]
|
|
3602
|
-
}], null,
|
|
3631
|
+
}], null, { showNoDataIfNoDataFound: [{
|
|
3632
|
+
type: Input
|
|
3633
|
+
}] }); })();
|
|
3603
3634
|
|
|
3604
3635
|
/*
|
|
3605
3636
|
<file>
|
|
@@ -7205,5 +7236,5 @@ class AnatolyModule {
|
|
|
7205
7236
|
* Generated bundle index. Do not edit.
|
|
7206
7237
|
*/
|
|
7207
7238
|
|
|
7208
|
-
export { AddressComponent, AdminGuard, Alerts, AnatolyCoreModule, AnatolyDataModule, AnatolyHttpInterceptor, AnatolyIAMModule, AnatolyIAMPagesModule, AnatolyModule, AnatolyUIModule, ApiServiceBase, ApiUrl, AppContextService, AppCoreSettings, AppName, AppSettings, AppVersion, AuthService, AuthenticationGuard, BaseGoService, Browser, BuyAccessButtonComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CheckIconComponent, ClientApps, CompanyComponent, ComponentBase, ContactUsDialog, ContactUsForm, Convert, Copy2ClipboardComponent, CoreApiService, DOM, DatapagerComponent, DefaultEditorOptions, DialogBase, DigitalMarketingService, EditComponentBase, EmailsApiService, FileSizePipe, FormValidationSummaryComponent, FormsHtmlEditorComponent, GlobalErrorHandler, GoogleAnalyticsService, GridEditServiceBase, GridReadServiceBase, Guid, HoveringDirective, HtmlEditorComponent, HtmlEditorComponentBase, IdleService, InjectorInstance, ItemValidationSummaryComponent, L10NUrl, ListBase, LoadingComponent, LoadingService, LocalStorageService, LocalizationInjectorInstance, LocalizationModule, LocalizationService, LocalizationSettingsModule, LocalizePipe, LoggingService, MSALUtils, NativeElementDirective, NodataComponent, NotificationService, PageBase, PageSpinnerComponent, PagedPageBase, ReplaceTextPipe, SafeHtmlPipe, SessionStorageService, SignInButtonComponent, SignOutButtonComponent, SignUpButtonComponent, StarterServiceBase, Stopwatch, Subs, SubscribePlanButtonComponent, TimezoneDropdownlist, UrlSlugComponent, Utils, ValidationSummaryComponent, XmlFormatter, getAppSettingsById, getAppSettingsByName, localizationInitializerFactory, throwIfAlreadyLoaded, translateLoaderFactory };
|
|
7239
|
+
export { AddressComponent, AdminGuard, Alerts, AnatolyCoreModule, AnatolyDataModule, AnatolyHttpInterceptor, AnatolyIAMModule, AnatolyIAMPagesModule, AnatolyModule, AnatolyUIModule, ApiServiceBase, ApiUrl, AppContextService, AppCoreSettings, AppName, AppSettings, AppVersion, AuthService, AuthenticationGuard, BaseGoService, Browser, BuyAccessButtonComponent, CardBodyComponent, CardComponent, CardFooterComponent, CardHeaderComponent, CheckIconComponent, ClientApps, CompanyComponent, ComponentBase, ContactUsDialog, ContactUsForm, Convert, Copy2ClipboardComponent, CoreApiService, DOM, DatapagerComponent, DefaultEditorOptions, DialogBase, DigitalMarketingService, EditComponentBase, EditPageBase, EmailsApiService, FileSizePipe, FormValidationSummaryComponent, FormsHtmlEditorComponent, GlobalErrorHandler, GoogleAnalyticsService, GridEditServiceBase, GridReadServiceBase, Guid, HoveringDirective, HtmlEditorComponent, HtmlEditorComponentBase, IdleService, InjectorInstance, ItemValidationSummaryComponent, L10NUrl, ListBase, LoadingComponent, LoadingService, LocalStorageService, LocalizationInjectorInstance, LocalizationModule, LocalizationService, LocalizationSettingsModule, LocalizePipe, LoggingService, MSALUtils, NativeElementDirective, NodataComponent, NotificationService, PageBase, PageSpinnerComponent, PagedPageBase, ReplaceTextPipe, SafeHtmlPipe, SessionStorageService, SignInButtonComponent, SignOutButtonComponent, SignUpButtonComponent, StarterServiceBase, Stopwatch, Subs, SubscribePlanButtonComponent, TimezoneDropdownlist, UrlSlugComponent, Utils, ValidationSummaryComponent, XmlFormatter, getAppSettingsById, getAppSettingsByName, localizationInitializerFactory, throwIfAlreadyLoaded, translateLoaderFactory };
|
|
7209
7240
|
//# sourceMappingURL=osovitny-anatoly.mjs.map
|