|
|
|
@ -1,9 +1,9 @@ |
|
|
|
import { __rest, __assign, __decorate, __metadata, __spread } from 'tslib'; |
|
|
|
import { Injectable, ɵɵdefineInjectable, ɵɵinject, Component, Directive, ElementRef, Input, ChangeDetectorRef, HostBinding, Optional, Renderer2, InjectionToken, Inject, Pipe, Output, EventEmitter, NgModule, APP_INITIALIZER, Injector } from '@angular/core'; |
|
|
|
import { Router, NavigationEnd, RouterModule } from '@angular/router'; |
|
|
|
import { Store, Action, Selector, State, createSelector, Select, actionMatcher, InitState, UpdateState, setValue, NgxsModule, NGXS_PLUGINS } from '@ngxs/store'; |
|
|
|
import { Injectable, ɵɵdefineInjectable, ɵɵinject, Component, Directive, ElementRef, Input, ChangeDetectorRef, HostBinding, Optional, Renderer2, InjectionToken, Inject, Pipe, EventEmitter, Output, APP_INITIALIZER, Injector, NgModule } from '@angular/core'; |
|
|
|
import { NavigationEnd, Router, RouterModule } from '@angular/router'; |
|
|
|
import { Store, Action, Selector, State, createSelector, Select, actionMatcher, InitState, UpdateState, setValue, NGXS_PLUGINS, NgxsModule } from '@ngxs/store'; |
|
|
|
import { NEVER, throwError, of, Subject, Observable, ReplaySubject, fromEvent } from 'rxjs'; |
|
|
|
import { HttpClient, HttpClientModule, HTTP_INTERCEPTORS } from '@angular/common/http'; |
|
|
|
import { HttpClient, HTTP_INTERCEPTORS, HttpClientModule } from '@angular/common/http'; |
|
|
|
import { take, catchError, tap, switchMap, takeUntil, finalize, distinctUntilChanged, debounceTime } from 'rxjs/operators'; |
|
|
|
import snq from 'snq'; |
|
|
|
import { OAuthService } from 'angular-oauth2-oidc'; |
|
|
|
@ -25,12 +25,24 @@ var PatchRouteByName = /** @class */ (function () { |
|
|
|
PatchRouteByName.type = '[Config] Patch Route By Name'; |
|
|
|
return PatchRouteByName; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
PatchRouteByName.type; |
|
|
|
/** @type {?} */ |
|
|
|
PatchRouteByName.prototype.name; |
|
|
|
/** @type {?} */ |
|
|
|
PatchRouteByName.prototype.newValue; |
|
|
|
} |
|
|
|
var GetAppConfiguration = /** @class */ (function () { |
|
|
|
function GetAppConfiguration() { |
|
|
|
} |
|
|
|
GetAppConfiguration.type = '[Config] Get App Configuration'; |
|
|
|
return GetAppConfiguration; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
GetAppConfiguration.type; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -43,6 +55,12 @@ var StartLoader = /** @class */ (function () { |
|
|
|
StartLoader.type = '[Loader] Start'; |
|
|
|
return StartLoader; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
StartLoader.type; |
|
|
|
/** @type {?} */ |
|
|
|
StartLoader.prototype.payload; |
|
|
|
} |
|
|
|
var StopLoader = /** @class */ (function () { |
|
|
|
function StopLoader(payload) { |
|
|
|
this.payload = payload; |
|
|
|
@ -50,6 +68,12 @@ var StopLoader = /** @class */ (function () { |
|
|
|
StopLoader.type = '[Loader] Stop'; |
|
|
|
return StopLoader; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
StopLoader.type; |
|
|
|
/** @type {?} */ |
|
|
|
StopLoader.prototype.payload; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -61,6 +85,10 @@ var GetProfile = /** @class */ (function () { |
|
|
|
GetProfile.type = '[Profile] Get'; |
|
|
|
return GetProfile; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
GetProfile.type; |
|
|
|
} |
|
|
|
var UpdateProfile = /** @class */ (function () { |
|
|
|
function UpdateProfile(payload) { |
|
|
|
this.payload = payload; |
|
|
|
@ -68,6 +96,12 @@ var UpdateProfile = /** @class */ (function () { |
|
|
|
UpdateProfile.type = '[Profile] Update'; |
|
|
|
return UpdateProfile; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
UpdateProfile.type; |
|
|
|
/** @type {?} */ |
|
|
|
UpdateProfile.prototype.payload; |
|
|
|
} |
|
|
|
var ChangePassword = /** @class */ (function () { |
|
|
|
function ChangePassword(payload) { |
|
|
|
this.payload = payload; |
|
|
|
@ -75,6 +109,12 @@ var ChangePassword = /** @class */ (function () { |
|
|
|
ChangePassword.type = '[Profile] Change Password'; |
|
|
|
return ChangePassword; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
ChangePassword.type; |
|
|
|
/** @type {?} */ |
|
|
|
ChangePassword.prototype.payload; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -87,6 +127,12 @@ var RestOccurError = /** @class */ (function () { |
|
|
|
RestOccurError.type = '[Rest] Error'; |
|
|
|
return RestOccurError; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
RestOccurError.type; |
|
|
|
/** @type {?} */ |
|
|
|
RestOccurError.prototype.payload; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -99,6 +145,12 @@ var SetLanguage = /** @class */ (function () { |
|
|
|
SetLanguage.type = '[Session] Set Language'; |
|
|
|
return SetLanguage; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
SetLanguage.type; |
|
|
|
/** @type {?} */ |
|
|
|
SetLanguage.prototype.payload; |
|
|
|
} |
|
|
|
var SetTenant = /** @class */ (function () { |
|
|
|
function SetTenant(payload) { |
|
|
|
this.payload = payload; |
|
|
|
@ -106,6 +158,17 @@ var SetTenant = /** @class */ (function () { |
|
|
|
SetTenant.type = '[Session] Set Tenant'; |
|
|
|
return SetTenant; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
SetTenant.type; |
|
|
|
/** @type {?} */ |
|
|
|
SetTenant.prototype.payload; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -174,6 +237,18 @@ var RestService = /** @class */ (function () { |
|
|
|
/** @nocollapse */ RestService.ngInjectableDef = ɵɵdefineInjectable({ factory: function RestService_Factory() { return new RestService(ɵɵinject(HttpClient), ɵɵinject(Store)); }, token: RestService, providedIn: "root" }); |
|
|
|
return RestService; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
RestService.prototype.http; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
RestService.prototype.store; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -246,6 +321,13 @@ var ProfileService = /** @class */ (function () { |
|
|
|
/** @nocollapse */ ProfileService.ngInjectableDef = ɵɵdefineInjectable({ factory: function ProfileService_Factory() { return new ProfileService(ɵɵinject(RestService)); }, token: ProfileService, providedIn: "root" }); |
|
|
|
return ProfileService; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
ProfileService.prototype.rest; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -357,6 +439,13 @@ var ProfileState = /** @class */ (function () { |
|
|
|
], ProfileState); |
|
|
|
return ProfileState; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
ProfileState.prototype.profileService; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -392,6 +481,13 @@ var ApplicationConfigurationService = /** @class */ (function () { |
|
|
|
/** @nocollapse */ ApplicationConfigurationService.ngInjectableDef = ɵɵdefineInjectable({ factory: function ApplicationConfigurationService_Factory() { return new ApplicationConfigurationService(ɵɵinject(RestService)); }, token: ApplicationConfigurationService, providedIn: "root" }); |
|
|
|
return ApplicationConfigurationService; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
ApplicationConfigurationService.prototype.rest; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -923,6 +1019,18 @@ var ConfigState = /** @class */ (function () { |
|
|
|
], ConfigState); |
|
|
|
return ConfigState; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
ConfigState.prototype.appConfigurationService; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
ConfigState.prototype.store; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @param {?} routes |
|
|
|
* @param {?} name |
|
|
|
@ -962,6 +1070,11 @@ function patchRouteDeep(routes, name, newValue, parentUrl) { |
|
|
|
return organizeRoutes(routes); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
@ -1042,6 +1155,11 @@ function (componentInstance, destroyMethodName) { |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
@ -1100,6 +1218,22 @@ var DynamicLayoutComponent = /** @class */ (function () { |
|
|
|
], DynamicLayoutComponent.prototype, "requirements$", void 0); |
|
|
|
return DynamicLayoutComponent; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
DynamicLayoutComponent.prototype.requirements$; |
|
|
|
/** @type {?} */ |
|
|
|
DynamicLayoutComponent.prototype.layout; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
DynamicLayoutComponent.prototype.router; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
DynamicLayoutComponent.prototype.store; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @param {?} segments |
|
|
|
* @param {?} routes |
|
|
|
@ -1156,6 +1290,11 @@ var RouterOutletComponent = /** @class */ (function () { |
|
|
|
return RouterOutletComponent; |
|
|
|
}()); |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
@ -1192,6 +1331,15 @@ var AutofocusDirective = /** @class */ (function () { |
|
|
|
}; |
|
|
|
return AutofocusDirective; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
AutofocusDirective.prototype.delay; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
AutofocusDirective.prototype.elRef; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -1218,7 +1366,7 @@ var EllipsisDirective = /** @class */ (function () { |
|
|
|
* @return {?} |
|
|
|
*/ |
|
|
|
function () { |
|
|
|
return this.enabled ? this.witdh || '160px' : undefined; |
|
|
|
return this.enabled ? this.width || '170px' : undefined; |
|
|
|
}, |
|
|
|
enumerable: true, |
|
|
|
configurable: true |
|
|
|
@ -1254,7 +1402,7 @@ var EllipsisDirective = /** @class */ (function () { |
|
|
|
{ type: ElementRef } |
|
|
|
]; }; |
|
|
|
EllipsisDirective.propDecorators = { |
|
|
|
witdh: [{ type: Input, args: ['abpEllipsis',] }], |
|
|
|
width: [{ type: Input, args: ['abpEllipsis',] }], |
|
|
|
title: [{ type: HostBinding, args: ['title',] }, { type: Input }], |
|
|
|
enabled: [{ type: Input, args: ['abpEllipsisEnabled',] }], |
|
|
|
class: [{ type: HostBinding, args: ['class.abp-ellipsis',] }], |
|
|
|
@ -1262,6 +1410,24 @@ var EllipsisDirective = /** @class */ (function () { |
|
|
|
}; |
|
|
|
return EllipsisDirective; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
EllipsisDirective.prototype.width; |
|
|
|
/** @type {?} */ |
|
|
|
EllipsisDirective.prototype.title; |
|
|
|
/** @type {?} */ |
|
|
|
EllipsisDirective.prototype.enabled; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
EllipsisDirective.prototype.cdRef; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
EllipsisDirective.prototype.elRef; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -1319,6 +1485,25 @@ var PermissionDirective = /** @class */ (function () { |
|
|
|
}; |
|
|
|
return PermissionDirective; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
PermissionDirective.prototype.condition; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
PermissionDirective.prototype.elRef; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
PermissionDirective.prototype.renderer; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
PermissionDirective.prototype.store; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -1407,6 +1592,43 @@ var VisibilityDirective = /** @class */ (function () { |
|
|
|
}; |
|
|
|
return VisibilityDirective; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
VisibilityDirective.prototype.focusedElement; |
|
|
|
/** @type {?} */ |
|
|
|
VisibilityDirective.prototype.completed$; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
VisibilityDirective.prototype.elRef; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
VisibilityDirective.prototype.renderer; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
/** @enum {string} */ |
|
|
|
var eLayoutType = { |
|
|
|
account: 'account', |
|
|
|
application: 'application', |
|
|
|
empty: 'empty', |
|
|
|
}; |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -1449,6 +1671,18 @@ var AuthGuard = /** @class */ (function () { |
|
|
|
/** @nocollapse */ AuthGuard.ngInjectableDef = ɵɵdefineInjectable({ factory: function AuthGuard_Factory() { return new AuthGuard(ɵɵinject(OAuthService), ɵɵinject(Store)); }, token: AuthGuard, providedIn: "root" }); |
|
|
|
return AuthGuard; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
AuthGuard.prototype.oauthService; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
AuthGuard.prototype.store; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -1484,6 +1718,18 @@ var PermissionGuard = /** @class */ (function () { |
|
|
|
/** @nocollapse */ PermissionGuard.ngInjectableDef = ɵɵdefineInjectable({ factory: function PermissionGuard_Factory() { return new PermissionGuard(ɵɵinject(Store)); }, token: PermissionGuard, providedIn: "root" }); |
|
|
|
return PermissionGuard; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
PermissionGuard.prototype.store; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -1543,6 +1789,272 @@ var ApiInterceptor = /** @class */ (function () { |
|
|
|
]; }; |
|
|
|
return ApiInterceptor; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
ApiInterceptor.prototype.oAuthService; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
ApiInterceptor.prototype.store; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
var ApplicationConfiguration; |
|
|
|
(function (ApplicationConfiguration) { |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function Response() { } |
|
|
|
ApplicationConfiguration.Response = Response; |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
Response.prototype.localization; |
|
|
|
/** @type {?} */ |
|
|
|
Response.prototype.auth; |
|
|
|
/** @type {?} */ |
|
|
|
Response.prototype.setting; |
|
|
|
/** @type {?} */ |
|
|
|
Response.prototype.currentUser; |
|
|
|
/** @type {?} */ |
|
|
|
Response.prototype.features; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function Localization() { } |
|
|
|
ApplicationConfiguration.Localization = Localization; |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
Localization.prototype.values; |
|
|
|
/** @type {?} */ |
|
|
|
Localization.prototype.languages; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function LocalizationValue() { } |
|
|
|
ApplicationConfiguration.LocalizationValue = LocalizationValue; |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function Language() { } |
|
|
|
ApplicationConfiguration.Language = Language; |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
Language.prototype.cultureName; |
|
|
|
/** @type {?} */ |
|
|
|
Language.prototype.uiCultureName; |
|
|
|
/** @type {?} */ |
|
|
|
Language.prototype.displayName; |
|
|
|
/** @type {?} */ |
|
|
|
Language.prototype.flagIcon; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function Auth() { } |
|
|
|
ApplicationConfiguration.Auth = Auth; |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
Auth.prototype.policies; |
|
|
|
/** @type {?} */ |
|
|
|
Auth.prototype.grantedPolicies; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function Policy() { } |
|
|
|
ApplicationConfiguration.Policy = Policy; |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function Setting() { } |
|
|
|
ApplicationConfiguration.Setting = Setting; |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
Setting.prototype.values; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function CurrentUser() { } |
|
|
|
ApplicationConfiguration.CurrentUser = CurrentUser; |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
CurrentUser.prototype.isAuthenticated; |
|
|
|
/** @type {?} */ |
|
|
|
CurrentUser.prototype.id; |
|
|
|
/** @type {?} */ |
|
|
|
CurrentUser.prototype.tenantId; |
|
|
|
/** @type {?} */ |
|
|
|
CurrentUser.prototype.userName; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function Features() { } |
|
|
|
ApplicationConfiguration.Features = Features; |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
Features.prototype.values; |
|
|
|
} |
|
|
|
})(ApplicationConfiguration || (ApplicationConfiguration = {})); |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
var ABP; |
|
|
|
(function (ABP) { |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function Root() { } |
|
|
|
ABP.Root = Root; |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
Root.prototype.environment; |
|
|
|
/** @type {?} */ |
|
|
|
Root.prototype.requirements; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @record |
|
|
|
* @template T |
|
|
|
*/ |
|
|
|
function PagedItemsResponse() { } |
|
|
|
ABP.PagedItemsResponse = PagedItemsResponse; |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
PagedItemsResponse.prototype.items; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function PageQueryParams() { } |
|
|
|
ABP.PageQueryParams = PageQueryParams; |
|
|
|
if (false) { |
|
|
|
/** @type {?|undefined} */ |
|
|
|
PageQueryParams.prototype.filter; |
|
|
|
/** @type {?|undefined} */ |
|
|
|
PageQueryParams.prototype.sorting; |
|
|
|
/** @type {?|undefined} */ |
|
|
|
PageQueryParams.prototype.skipCount; |
|
|
|
/** @type {?|undefined} */ |
|
|
|
PageQueryParams.prototype.maxResultCount; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function Route() { } |
|
|
|
ABP.Route = Route; |
|
|
|
if (false) { |
|
|
|
/** @type {?|undefined} */ |
|
|
|
Route.prototype.children; |
|
|
|
/** @type {?|undefined} */ |
|
|
|
Route.prototype.invisible; |
|
|
|
/** @type {?|undefined} */ |
|
|
|
Route.prototype.layout; |
|
|
|
/** @type {?} */ |
|
|
|
Route.prototype.name; |
|
|
|
/** @type {?|undefined} */ |
|
|
|
Route.prototype.order; |
|
|
|
/** @type {?|undefined} */ |
|
|
|
Route.prototype.parentName; |
|
|
|
/** @type {?} */ |
|
|
|
Route.prototype.path; |
|
|
|
/** @type {?|undefined} */ |
|
|
|
Route.prototype.requiredPolicy; |
|
|
|
/** @type {?|undefined} */ |
|
|
|
Route.prototype.iconClass; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function FullRoute() { } |
|
|
|
ABP.FullRoute = FullRoute; |
|
|
|
if (false) { |
|
|
|
/** @type {?|undefined} */ |
|
|
|
FullRoute.prototype.url; |
|
|
|
/** @type {?|undefined} */ |
|
|
|
FullRoute.prototype.wrapper; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function BasicItem() { } |
|
|
|
ABP.BasicItem = BasicItem; |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
BasicItem.prototype.id; |
|
|
|
/** @type {?} */ |
|
|
|
BasicItem.prototype.name; |
|
|
|
} |
|
|
|
})(ABP || (ABP = {})); |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
var Config; |
|
|
|
(function (Config) { |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function State() { } |
|
|
|
Config.State = State; |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function Environment() { } |
|
|
|
Config.Environment = Environment; |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
Environment.prototype.application; |
|
|
|
/** @type {?} */ |
|
|
|
Environment.prototype.production; |
|
|
|
/** @type {?} */ |
|
|
|
Environment.prototype.oAuthConfig; |
|
|
|
/** @type {?} */ |
|
|
|
Environment.prototype.apis; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function Application() { } |
|
|
|
Config.Application = Application; |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
Application.prototype.name; |
|
|
|
/** @type {?|undefined} */ |
|
|
|
Application.prototype.logoUrl; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function Apis() { } |
|
|
|
Config.Apis = Apis; |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function Requirements() { } |
|
|
|
Config.Requirements = Requirements; |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
Requirements.prototype.layouts; |
|
|
|
} |
|
|
|
})(Config || (Config = {})); |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -1555,14 +2067,107 @@ var Rest; |
|
|
|
*/ |
|
|
|
function Config() { } |
|
|
|
Rest.Config = Config; |
|
|
|
if (false) { |
|
|
|
/** @type {?|undefined} */ |
|
|
|
Config.prototype.throwErr; |
|
|
|
/** @type {?|undefined} */ |
|
|
|
Config.prototype.observe; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @record |
|
|
|
* @template T |
|
|
|
*/ |
|
|
|
function Request() { } |
|
|
|
Rest.Request = Request; |
|
|
|
if (false) { |
|
|
|
/** @type {?|undefined} */ |
|
|
|
Request.prototype.body; |
|
|
|
/** @type {?|undefined} */ |
|
|
|
Request.prototype.headers; |
|
|
|
/** @type {?} */ |
|
|
|
Request.prototype.method; |
|
|
|
/** @type {?|undefined} */ |
|
|
|
Request.prototype.params; |
|
|
|
/** @type {?|undefined} */ |
|
|
|
Request.prototype.reportProgress; |
|
|
|
/** @type {?|undefined} */ |
|
|
|
Request.prototype.responseType; |
|
|
|
/** @type {?} */ |
|
|
|
Request.prototype.url; |
|
|
|
/** @type {?|undefined} */ |
|
|
|
Request.prototype.withCredentials; |
|
|
|
} |
|
|
|
})(Rest || (Rest = {})); |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
var Session; |
|
|
|
(function (Session) { |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function State() { } |
|
|
|
Session.State = State; |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
State.prototype.language; |
|
|
|
/** @type {?} */ |
|
|
|
State.prototype.tenant; |
|
|
|
} |
|
|
|
})(Session || (Session = {})); |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
var Profile; |
|
|
|
(function (Profile) { |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function State() { } |
|
|
|
Profile.State = State; |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
State.prototype.profile; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function Response() { } |
|
|
|
Profile.Response = Response; |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
Response.prototype.userName; |
|
|
|
/** @type {?} */ |
|
|
|
Response.prototype.email; |
|
|
|
/** @type {?} */ |
|
|
|
Response.prototype.name; |
|
|
|
/** @type {?} */ |
|
|
|
Response.prototype.surname; |
|
|
|
/** @type {?} */ |
|
|
|
Response.prototype.phoneNumber; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @record |
|
|
|
*/ |
|
|
|
function ChangePasswordRequest() { } |
|
|
|
Profile.ChangePasswordRequest = ChangePasswordRequest; |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
ChangePasswordRequest.prototype.currentPassword; |
|
|
|
/** @type {?} */ |
|
|
|
ChangePasswordRequest.prototype.newPassword; |
|
|
|
} |
|
|
|
})(Profile || (Profile = {})); |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
@ -1611,6 +2216,23 @@ var ConfigPlugin = /** @class */ (function () { |
|
|
|
]; }; |
|
|
|
return ConfigPlugin; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
ConfigPlugin.prototype.initialized; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
ConfigPlugin.prototype.options; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
ConfigPlugin.prototype.router; |
|
|
|
} |
|
|
|
/** |
|
|
|
* @param {?=} routes |
|
|
|
* @param {?=} wrappers |
|
|
|
@ -1712,6 +2334,11 @@ function setUrls(routes, parentUrl) { |
|
|
|
}))); })); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
@ -1774,6 +2401,13 @@ var ConfigService = /** @class */ (function () { |
|
|
|
/** @nocollapse */ ConfigService.ngInjectableDef = ɵɵdefineInjectable({ factory: function ConfigService_Factory() { return new ConfigService(ɵɵinject(Store)); }, token: ConfigService, providedIn: "root" }); |
|
|
|
return ConfigService; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
ConfigService.prototype.store; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -1852,6 +2486,10 @@ var LazyLoadService = /** @class */ (function () { |
|
|
|
/** @nocollapse */ LazyLoadService.ngInjectableDef = ɵɵdefineInjectable({ factory: function LazyLoadService_Factory() { return new LazyLoadService(); }, token: LazyLoadService, providedIn: "root" }); |
|
|
|
return LazyLoadService; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
LazyLoadService.prototype.loadedLibraries; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -1905,6 +2543,18 @@ var LocalizationService = /** @class */ (function () { |
|
|
|
/** @nocollapse */ LocalizationService.ngInjectableDef = ɵɵdefineInjectable({ factory: function LocalizationService_Factory() { return new LocalizationService(ɵɵinject(Store)); }, token: LocalizationService, providedIn: "root" }); |
|
|
|
return LocalizationService; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
LocalizationService.prototype.store; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -1929,6 +2579,11 @@ var ENVIRONMENT = new InjectionToken('ENVIRONMENT'); |
|
|
|
/** @type {?} */ |
|
|
|
var CONFIG = new InjectionToken('CONFIG'); |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
@ -1991,6 +2646,17 @@ var LocalizationPipe = /** @class */ (function () { |
|
|
|
]; }; |
|
|
|
return LocalizationPipe; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
LocalizationPipe.prototype.initialized; |
|
|
|
/** @type {?} */ |
|
|
|
LocalizationPipe.prototype.value; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
LocalizationPipe.prototype.store; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -2037,6 +2703,22 @@ var InputEventDebounceDirective = /** @class */ (function () { |
|
|
|
}; |
|
|
|
return InputEventDebounceDirective; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
InputEventDebounceDirective.prototype.debounce; |
|
|
|
/** @type {?} */ |
|
|
|
InputEventDebounceDirective.prototype.debounceEvent; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
InputEventDebounceDirective.prototype.renderer; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
InputEventDebounceDirective.prototype.el; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -2082,6 +2764,20 @@ var ClickEventStopPropagationDirective = /** @class */ (function () { |
|
|
|
}; |
|
|
|
return ClickEventStopPropagationDirective; |
|
|
|
}()); |
|
|
|
if (false) { |
|
|
|
/** @type {?} */ |
|
|
|
ClickEventStopPropagationDirective.prototype.stopPropEvent; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
ClickEventStopPropagationDirective.prototype.renderer; |
|
|
|
/** |
|
|
|
* @type {?} |
|
|
|
* @private |
|
|
|
*/ |
|
|
|
ClickEventStopPropagationDirective.prototype.el; |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
@ -2173,5 +2869,15 @@ var CoreModule = /** @class */ (function () { |
|
|
|
return CoreModule; |
|
|
|
}()); |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
|
|
|
|
/** |
|
|
|
* @fileoverview added by tsickle |
|
|
|
* @suppress {checkTypes,extraRequire,missingOverride,missingReturn,unusedPrivateMembers,uselessCode} checked by tsc |
|
|
|
*/ |
|
|
|
|
|
|
|
export { ApiInterceptor, ApplicationConfigurationService, AuthGuard, AutofocusDirective, CONFIG, ChangePassword, ConfigPlugin, ConfigService, ConfigState, CoreModule, DynamicLayoutComponent, ENVIRONMENT, EllipsisDirective, GetAppConfiguration, GetProfile, LazyLoadService, LocalizationService, NGXS_CONFIG_PLUGIN_OPTIONS, PatchRouteByName, PermissionDirective, PermissionGuard, ProfileService, ProfileState, Rest, RestOccurError, RestService, RouterOutletComponent, SessionState, SetLanguage, SetTenant, StartLoader, StopLoader, UpdateProfile, VisibilityDirective, configFactory, environmentFactory, getInitialData, organizeRoutes, setChildRoute, sortRoutes, takeUntilDestroy, uuid, ProfileState as ɵa, ProfileService as ɵb, ConfigPlugin as ɵba, ApiInterceptor as ɵbb, getInitialData as ɵbc, RestService as ɵc, GetProfile as ɵd, UpdateProfile as ɵe, ChangePassword as ɵf, SessionState as ɵh, SetLanguage as ɵi, SetTenant as ɵj, ConfigState as ɵl, ApplicationConfigurationService as ɵm, PatchRouteByName as ɵn, GetAppConfiguration as ɵo, RouterOutletComponent as ɵp, DynamicLayoutComponent as ɵq, ConfigState as ɵr, AutofocusDirective as ɵs, EllipsisDirective as ɵt, LocalizationPipe as ɵu, PermissionDirective as ɵv, VisibilityDirective as ɵw, InputEventDebounceDirective as ɵx, ClickEventStopPropagationDirective as ɵy, NGXS_CONFIG_PLUGIN_OPTIONS as ɵz }; |
|
|
|
//# sourceMappingURL=abp-ng.core.js.map
|
|
|
|
|