ngx-sp-auth 4.3.12 → 4.3.14
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/fesm2022/ngx-sp-auth.mjs
CHANGED
|
@@ -4165,84 +4165,74 @@ class NavSubmenuCards {
|
|
|
4165
4165
|
this.isExternal = false;
|
|
4166
4166
|
}
|
|
4167
4167
|
}
|
|
4168
|
-
;
|
|
4169
4168
|
class SubMenuCardComponent {
|
|
4170
|
-
|
|
4171
|
-
|
|
4172
|
-
|
|
4173
|
-
ngOnInit() {
|
|
4174
|
-
this.GetHostName();
|
|
4175
|
-
}
|
|
4176
|
-
/**
|
|
4177
|
-
*
|
|
4178
|
-
*/
|
|
4179
|
-
constructor(_menuService, _projectUtil) {
|
|
4169
|
+
// #endregion PUBLIC
|
|
4170
|
+
// #endregion ==========> PROPERTIES <==========
|
|
4171
|
+
constructor(_menuService, _projectUtil, _customEnv) {
|
|
4180
4172
|
this._menuService = _menuService;
|
|
4181
4173
|
this._projectUtil = _projectUtil;
|
|
4182
|
-
this.
|
|
4174
|
+
this._customEnv = _customEnv;
|
|
4175
|
+
// #region ==========> PROPERTIES <==========
|
|
4176
|
+
// #region PUBLIC
|
|
4183
4177
|
this.subMenuCards = [];
|
|
4178
|
+
this.hostName = "";
|
|
4179
|
+
this.getExternalUrl = (url) => { return `${this.hostName == "" ? `https://${window.location.host}` : this.hostName}/${url}`; };
|
|
4180
|
+
}
|
|
4181
|
+
ngOnInit() {
|
|
4182
|
+
this.GetHostName();
|
|
4184
4183
|
}
|
|
4184
|
+
// #region ==========> API METHODS <==========
|
|
4185
|
+
// #region GET
|
|
4185
4186
|
GetHostName() {
|
|
4187
|
+
// Validação adicionada para ignorar esta chamada caso o componente seja exibido na docs
|
|
4188
|
+
if (this._customEnv.product === "InfraCodeDocs")
|
|
4189
|
+
return;
|
|
4186
4190
|
this._menuService.GetHostServerOutSystems().subscribe({
|
|
4187
4191
|
next: response => this.hostName = response.String,
|
|
4188
4192
|
error: error => this._projectUtil.showHttpError(error)
|
|
4189
4193
|
});
|
|
4190
4194
|
}
|
|
4191
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SubMenuCardComponent, deps: [{ token: MenuServicesService }, { token: ProjectUtilservice }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4195
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SubMenuCardComponent, deps: [{ token: MenuServicesService }, { token: ProjectUtilservice }, { token: LibCustomEnvironmentService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4192
4196
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.15", type: SubMenuCardComponent, isStandalone: true, selector: "sub-menu-card, lib-submenu-card", inputs: { subMenuCards: "subMenuCards" }, ngImport: i0, template: `
|
|
4193
4197
|
<div class="max-card-menu row">
|
|
4194
4198
|
@for(card of subMenuCards; track $index) {
|
|
4195
|
-
<a href="
|
|
4196
|
-
<div class="card">
|
|
4199
|
+
<a [href]="card.isExternal ? getExternalUrl(card.urlPath) : card.urlPath" target="_blank" class="card-link col-4">
|
|
4200
|
+
<div class="card w-100 border-0 rounded text-center glb-cursor-pointer">
|
|
4197
4201
|
<div class="card-icon">
|
|
4198
4202
|
<div class="card-icon2">
|
|
4199
|
-
<lib-icon
|
|
4200
|
-
class="bold"
|
|
4201
|
-
iconName="{{ card.icon ? card.icon : 'engrenagem'}}"
|
|
4202
|
-
iconColor="blue"
|
|
4203
|
-
[iconFill]="true"
|
|
4204
|
-
[iconSize]="35"
|
|
4205
|
-
></lib-icon>
|
|
4203
|
+
<lib-icon class="bold" [iconName]="card.icon ? card.icon : 'engrenagem'" iconColor="blue" [iconSize]="35" />
|
|
4206
4204
|
</div>
|
|
4207
4205
|
</div>
|
|
4206
|
+
|
|
4208
4207
|
<h3 class="card-title">{{ card.titulo }}</h3>
|
|
4209
|
-
<p class="card-text" title="{{ card.descricao }}
|
|
4210
|
-
{{ card.descricao }}
|
|
4211
|
-
</p>
|
|
4208
|
+
<p class="card-text" [title]="card.descricao"> {{ card.descricao }} </p>
|
|
4212
4209
|
</div>
|
|
4213
4210
|
</a>
|
|
4214
4211
|
}
|
|
4215
4212
|
</div>
|
|
4216
|
-
`, isInline: true, styles: [".max-card-menu{display:flex;flex-wrap:wrap;justify-content:flex-start}.card-link{text-decoration:none;color:inherit;display:flex;box-sizing:border-box}.card{
|
|
4213
|
+
`, isInline: true, styles: [".max-card-menu{display:flex;flex-wrap:wrap;justify-content:flex-start}.card-link{text-decoration:none;color:inherit;display:flex;box-sizing:border-box}.card{background-color:#fff;box-shadow:0 4px 8px #0000000d;padding:24px;margin-bottom:16px;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif}.card-icon{display:flex;align-items:center;justify-content:center;background-color:#e6eef6;border-radius:50%;width:72px;height:72px;margin:0 auto 16px}.card-icon2{display:flex;justify-content:center;align-items:center;background-color:#cde;border-radius:50%;width:52px;height:52px}.card-title{font-size:18px;font-weight:600;margin-bottom:12px;color:#333}.card-text{font-size:14px;color:#4f4f4f;line-height:1.6;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}\n"], dependencies: [{ kind: "component", type: LibIconsComponent, selector: "lib-icon", inputs: ["iconName", "iconColor", "iconSize", "iconFill"] }] }); }
|
|
4217
4214
|
}
|
|
4218
4215
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SubMenuCardComponent, decorators: [{
|
|
4219
4216
|
type: Component,
|
|
4220
4217
|
args: [{ selector: 'sub-menu-card, lib-submenu-card', imports: [LibIconsComponent], template: `
|
|
4221
4218
|
<div class="max-card-menu row">
|
|
4222
4219
|
@for(card of subMenuCards; track $index) {
|
|
4223
|
-
<a href="
|
|
4224
|
-
<div class="card">
|
|
4220
|
+
<a [href]="card.isExternal ? getExternalUrl(card.urlPath) : card.urlPath" target="_blank" class="card-link col-4">
|
|
4221
|
+
<div class="card w-100 border-0 rounded text-center glb-cursor-pointer">
|
|
4225
4222
|
<div class="card-icon">
|
|
4226
4223
|
<div class="card-icon2">
|
|
4227
|
-
<lib-icon
|
|
4228
|
-
class="bold"
|
|
4229
|
-
iconName="{{ card.icon ? card.icon : 'engrenagem'}}"
|
|
4230
|
-
iconColor="blue"
|
|
4231
|
-
[iconFill]="true"
|
|
4232
|
-
[iconSize]="35"
|
|
4233
|
-
></lib-icon>
|
|
4224
|
+
<lib-icon class="bold" [iconName]="card.icon ? card.icon : 'engrenagem'" iconColor="blue" [iconSize]="35" />
|
|
4234
4225
|
</div>
|
|
4235
4226
|
</div>
|
|
4227
|
+
|
|
4236
4228
|
<h3 class="card-title">{{ card.titulo }}</h3>
|
|
4237
|
-
<p class="card-text" title="{{ card.descricao }}
|
|
4238
|
-
{{ card.descricao }}
|
|
4239
|
-
</p>
|
|
4229
|
+
<p class="card-text" [title]="card.descricao"> {{ card.descricao }} </p>
|
|
4240
4230
|
</div>
|
|
4241
4231
|
</a>
|
|
4242
4232
|
}
|
|
4243
4233
|
</div>
|
|
4244
|
-
`,
|
|
4245
|
-
}], ctorParameters: () => [{ type: MenuServicesService }, { type: ProjectUtilservice }], propDecorators: { subMenuCards: [{
|
|
4234
|
+
`, styles: [".max-card-menu{display:flex;flex-wrap:wrap;justify-content:flex-start}.card-link{text-decoration:none;color:inherit;display:flex;box-sizing:border-box}.card{background-color:#fff;box-shadow:0 4px 8px #0000000d;padding:24px;margin-bottom:16px;font-family:Segoe UI,Tahoma,Geneva,Verdana,sans-serif}.card-icon{display:flex;align-items:center;justify-content:center;background-color:#e6eef6;border-radius:50%;width:72px;height:72px;margin:0 auto 16px}.card-icon2{display:flex;justify-content:center;align-items:center;background-color:#cde;border-radius:50%;width:52px;height:52px}.card-title{font-size:18px;font-weight:600;margin-bottom:12px;color:#333}.card-text{font-size:14px;color:#4f4f4f;line-height:1.6;display:-webkit-box;-webkit-line-clamp:4;-webkit-box-orient:vertical;overflow:hidden}\n"] }]
|
|
4235
|
+
}], ctorParameters: () => [{ type: MenuServicesService }, { type: ProjectUtilservice }, { type: LibCustomEnvironmentService }], propDecorators: { subMenuCards: [{
|
|
4246
4236
|
type: Input
|
|
4247
4237
|
}] } });
|
|
4248
4238
|
|
|
@@ -4254,11 +4244,11 @@ class ListComponent {
|
|
|
4254
4244
|
this.getExternalUrl = (url) => { return `${this.hostName}/${url}`; };
|
|
4255
4245
|
}
|
|
4256
4246
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ListComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4257
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.15", type: ListComponent, isStandalone: true, selector: "app-list", inputs: { telasItem: "telasItem", hostName: "hostName" }, outputs: { onTelaSelecionada: "onTelaSelecionada" }, ngImport: i0, template: "<ul class=\"nav flex-column mt-3\">\n @if(telasItem.length) {\n @for(clickLink of telasItem; track $index) {\n <li class=\"nav-item\">\n <a class=\"nav-link\" [target]=\"clickLink.IsExternal ? '_blank' : '_self'\" (click)=\"onTelaSelecionada.emit(clickLink.titulo)\"\n [href]=\"clickLink.IsExternal\n ? getExternalUrl(clickLink.urlPath)\n : '/SisproErpCloud/' + clickLink.urlPath\" >\n {{ clickLink.titulo }}\n </a>\n </li>\n }\n }\n</ul>\n", styles: ["a{color:#3e5154}\n"] }); }
|
|
4247
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.15", type: ListComponent, isStandalone: true, selector: "app-list", inputs: { telasItem: "telasItem", hostName: "hostName" }, outputs: { onTelaSelecionada: "onTelaSelecionada" }, ngImport: i0, template: "<ul class=\"nav flex-column mt-3\">\n @if (telasItem && telasItem.length > 0) {\n @for (clickLink of telasItem; track $index) {\n <li class=\"nav-item\">\n <a class=\"nav-link\" [target]=\"clickLink.IsExternal ? '_blank' : '_self'\" (click)=\"onTelaSelecionada.emit(clickLink.titulo)\"\n [href]=\"clickLink.IsExternal\n ? getExternalUrl(clickLink.urlPath)\n : '/SisproErpCloud/' + clickLink.urlPath\" >\n {{ clickLink.titulo }}\n </a>\n </li>\n }\n }\n</ul>\n", styles: ["a{color:#3e5154}\n"] }); }
|
|
4258
4248
|
}
|
|
4259
4249
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: ListComponent, decorators: [{
|
|
4260
4250
|
type: Component,
|
|
4261
|
-
args: [{ selector: 'app-list', imports: [], standalone: true, template: "<ul class=\"nav flex-column mt-3\">\n @if(telasItem.length) {\n @for(clickLink of telasItem; track $index) {\n <li class=\"nav-item\">\n <a class=\"nav-link\" [target]=\"clickLink.IsExternal ? '_blank' : '_self'\" (click)=\"onTelaSelecionada.emit(clickLink.titulo)\"\n [href]=\"clickLink.IsExternal\n ? getExternalUrl(clickLink.urlPath)\n : '/SisproErpCloud/' + clickLink.urlPath\" >\n {{ clickLink.titulo }}\n </a>\n </li>\n }\n }\n</ul>\n", styles: ["a{color:#3e5154}\n"] }]
|
|
4251
|
+
args: [{ selector: 'app-list', imports: [], standalone: true, template: "<ul class=\"nav flex-column mt-3\">\n @if (telasItem && telasItem.length > 0) {\n @for (clickLink of telasItem; track $index) {\n <li class=\"nav-item\">\n <a class=\"nav-link\" [target]=\"clickLink.IsExternal ? '_blank' : '_self'\" (click)=\"onTelaSelecionada.emit(clickLink.titulo)\"\n [href]=\"clickLink.IsExternal\n ? getExternalUrl(clickLink.urlPath)\n : '/SisproErpCloud/' + clickLink.urlPath\" >\n {{ clickLink.titulo }}\n </a>\n </li>\n }\n }\n</ul>\n", styles: ["a{color:#3e5154}\n"] }]
|
|
4262
4252
|
}], propDecorators: { telasItem: [{
|
|
4263
4253
|
type: Input
|
|
4264
4254
|
}], hostName: [{
|
|
@@ -4293,14 +4283,17 @@ class NavTabsComponent {
|
|
|
4293
4283
|
this.setAbaAtiva(changes['activeItem'].currentValue);
|
|
4294
4284
|
}
|
|
4295
4285
|
if ((changes['subMenus'].currentValue && changes['subMenus'].currentValue !== "") && this.activeItem !== '') {
|
|
4296
|
-
this.setAbaAtiva(this.activeItem);
|
|
4286
|
+
this.setAbaAtiva(this.activeItem ?? '');
|
|
4297
4287
|
}
|
|
4298
4288
|
}
|
|
4299
4289
|
// #region ==========> UTILS <==========
|
|
4300
4290
|
setAbaAtiva(titulo) {
|
|
4291
|
+
// Se não encontrar o nome, sai do método
|
|
4301
4292
|
const index = this.subMenus.findIndex(submenu => submenu.titulo == titulo);
|
|
4302
|
-
|
|
4303
|
-
|
|
4293
|
+
if (index === -1)
|
|
4294
|
+
return;
|
|
4295
|
+
this.telasItem = this.subMenus[index]?.telasItem;
|
|
4296
|
+
this.listaAtiva = this.subMenus[index]?.titulo;
|
|
4304
4297
|
this.onTituloSelecionado.emit(titulo);
|
|
4305
4298
|
}
|
|
4306
4299
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: NavTabsComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
@@ -4344,9 +4337,10 @@ class TelaItem {
|
|
|
4344
4337
|
class SubMenuComponent {
|
|
4345
4338
|
// #endregion PUBLIC
|
|
4346
4339
|
// #endregion ==========> PROPERTIES <==========
|
|
4347
|
-
constructor(_menuService, _projectUtil) {
|
|
4340
|
+
constructor(_menuService, _projectUtil, _customEnv) {
|
|
4348
4341
|
this._menuService = _menuService;
|
|
4349
4342
|
this._projectUtil = _projectUtil;
|
|
4343
|
+
this._customEnv = _customEnv;
|
|
4350
4344
|
// #region ==========> PROPERTIES <==========
|
|
4351
4345
|
// #region PUBLIC
|
|
4352
4346
|
this.navSubmenus = [];
|
|
@@ -4373,12 +4367,15 @@ class SubMenuComponent {
|
|
|
4373
4367
|
}
|
|
4374
4368
|
}
|
|
4375
4369
|
getHostName() {
|
|
4370
|
+
// Validação adicionada para ignorar esta chamada caso o componente seja exibido na docs
|
|
4371
|
+
if (this._customEnv.product === "InfraCodeDocs")
|
|
4372
|
+
return;
|
|
4376
4373
|
this._menuService.GetHostServerOutSystems().subscribe({
|
|
4377
4374
|
next: response => this.hostNameOutSystems = response.String,
|
|
4378
4375
|
error: error => this._projectUtil.showHttpError(error)
|
|
4379
4376
|
});
|
|
4380
4377
|
}
|
|
4381
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SubMenuComponent, deps: [{ token: MenuServicesService }, { token: ProjectUtilservice }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4378
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SubMenuComponent, deps: [{ token: MenuServicesService }, { token: ProjectUtilservice }, { token: LibCustomEnvironmentService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4382
4379
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.15", type: SubMenuComponent, isStandalone: true, selector: "app-nav-sub-menu, lib-submenu", inputs: { navSubmenus: "navSubmenus", isProduction: "isProduction", hostname: "hostname", activeItem: "activeItem" }, outputs: { onTituloSelecionado: "onTituloSelecionado", onTelaSelecionada: "onTelaSelecionada" }, ngImport: i0, template: "<lib-container>\n <div class=\"px-5\" innerContent1>\n @for(subMenu of navSubmenus; track $index) {\n <div [class]=\"$first && subMenu.titulo == '' && subMenu.icon == '' ? ' mb-2' : 'mt-4 mb-2'\">\n @if (subMenu.icon != '') {\n <lib-icon class=\"bold engrenagem-ajustada\" iconName=\"{{ subMenu.icon }}\" />\n }\n @if (subMenu.titulo != ''){\n <span class=\"fw-bold fs-4 ms-1\">{{ subMenu.titulo }}</span>\n }\n\n <app-nav-tabs [activeItem]=\"activeItem\" [subMenus]=\"navSubmenus[$index].subMenuItem\" [hostName]=\"hostNameOutSystems\"\n (onTelaSelecionada)=\"onTelaSelecionada.emit($event)\" (onTituloSelecionado)=\"onTituloSelecionado.emit($event)\" />\n </div>\n\n @if(!$last){ <hr /> }\n }\n </div>\n</lib-container>\n", styles: [".engrenagem-ajustada{position:relative;top:-4px}\n"], dependencies: [{ kind: "component", type: NavTabsComponent, selector: "app-nav-tabs", inputs: ["subMenus", "hostName", "activeItem"], outputs: ["onTituloSelecionado", "onTelaSelecionada"] }, { kind: "component", type: LibIconsComponent, selector: "lib-icon", inputs: ["iconName", "iconColor", "iconSize", "iconFill"] }, { kind: "component", type: ContentContainerComponent, selector: "lib-container", inputs: ["documentation", "tabs", "advancedTabs", "containerTitle", "useBorder", "currentTab"], outputs: ["onChangeTab"] }] }); }
|
|
4383
4380
|
}
|
|
4384
4381
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: SubMenuComponent, decorators: [{
|
|
@@ -4388,7 +4385,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
|
|
|
4388
4385
|
LibIconsComponent,
|
|
4389
4386
|
ContentContainerComponent
|
|
4390
4387
|
], standalone: true, template: "<lib-container>\n <div class=\"px-5\" innerContent1>\n @for(subMenu of navSubmenus; track $index) {\n <div [class]=\"$first && subMenu.titulo == '' && subMenu.icon == '' ? ' mb-2' : 'mt-4 mb-2'\">\n @if (subMenu.icon != '') {\n <lib-icon class=\"bold engrenagem-ajustada\" iconName=\"{{ subMenu.icon }}\" />\n }\n @if (subMenu.titulo != ''){\n <span class=\"fw-bold fs-4 ms-1\">{{ subMenu.titulo }}</span>\n }\n\n <app-nav-tabs [activeItem]=\"activeItem\" [subMenus]=\"navSubmenus[$index].subMenuItem\" [hostName]=\"hostNameOutSystems\"\n (onTelaSelecionada)=\"onTelaSelecionada.emit($event)\" (onTituloSelecionado)=\"onTituloSelecionado.emit($event)\" />\n </div>\n\n @if(!$last){ <hr /> }\n }\n </div>\n</lib-container>\n", styles: [".engrenagem-ajustada{position:relative;top:-4px}\n"] }]
|
|
4391
|
-
}], ctorParameters: () => [{ type: MenuServicesService }, { type: ProjectUtilservice }], propDecorators: { navSubmenus: [{
|
|
4388
|
+
}], ctorParameters: () => [{ type: MenuServicesService }, { type: ProjectUtilservice }, { type: LibCustomEnvironmentService }], propDecorators: { navSubmenus: [{
|
|
4392
4389
|
type: Input
|
|
4393
4390
|
}], isProduction: [{
|
|
4394
4391
|
type: Input
|
|
@@ -4408,5 +4405,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.15", ngImpo
|
|
|
4408
4405
|
* Generated bundle index. Do not edit.
|
|
4409
4406
|
*/
|
|
4410
4407
|
|
|
4411
|
-
export { AUTH_ROUTES, AuthAplicInterceptor, AuthGuard, AuthInfraInterceptor, AuthModule, AuthService, AuthStorageService, DynamicMenuComponent, ErrorMenuNotAllowed, ExternaLoginlGuard, IMenu, IndexedDBService, InfraUsuarioImg, IsMenuAllowedlGuard, LIB_CUSTOM_ENVIRONMENT_SERVICE, LIB_CUSTOM_LOGIN_SERVICE, LIB_CUSTOM_MENU_SERVICE, LIB_CUSTOM_STORAGE_SERVICE, LIB_MENU_CONFIG, LibCustomEnvironmentService, LibCustomLoginService, LibCustomMenuService, LibCustomStorageService, LibMenuConfigService, ListComponent, LoginComponent, LoginGuard, LoginOSComponent, LoginOSGuard, LoginProgress, MenuLateralComponent, MenuServicesService, NavSubMenus, NavSubmenuCards, NavSubmenuSearchItem, NavTabsComponent, NotifSubmenuComponent, NovaSenhaComponent, PesquisaTelasGlobalService, PrimaryDropdownComponent, RetInfraUsuarioImg, RetMenuItemStructure, RetMenuLateral, RetMenuPromise, RetNavSubMenu, RetSubmenuWithCards, SecondaryDropdownComponent, SelecaoEstabelecimentosModalComponent, SituacaoLogin, SubMenuCardComponent, SubMenuComponent, SubMenuItem, TelaItem };
|
|
4408
|
+
export { AUTH_ROUTES, AuthAplicInterceptor, AuthGuard, AuthInfraInterceptor, AuthModule, AuthService, AuthStorageService, DynamicMenuComponent, ErrorMenuNotAllowed, ExternaLoginlGuard, IMenu, IndexedDBService, InfraUsuarioImg, IsMenuAllowedlGuard, LIB_CUSTOM_ENVIRONMENT_SERVICE, LIB_CUSTOM_LOGIN_SERVICE, LIB_CUSTOM_MENU_SERVICE, LIB_CUSTOM_STORAGE_SERVICE, LIB_MENU_CONFIG, LibCustomEnvironmentService, LibCustomLoginService, LibCustomMenuService, LibCustomStorageService, LibMenuConfigService, ListComponent, LoginComponent, LoginGuard, LoginOSComponent, LoginOSGuard, LoginProgress, MenuLateralComponent, MenuServicesService, NavSubMenus, NavSubmenuCards, NavSubmenuSearchItem, NavTabsComponent, NotifSubmenuComponent, NovaSenhaComponent, PesquisaTelasGlobalService, PrimaryDropdownComponent, ProjectUtilservice, RetInfraUsuarioImg, RetMenuItemStructure, RetMenuLateral, RetMenuPromise, RetNavSubMenu, RetSubmenuWithCards, SecondaryDropdownComponent, SelecaoEstabelecimentosModalComponent, SituacaoLogin, SubMenuCardComponent, SubMenuComponent, SubMenuItem, TelaItem };
|
|
4412
4409
|
//# sourceMappingURL=ngx-sp-auth.mjs.map
|