ngx-sp-auth 3.0.2 → 3.0.3
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 +23 -1
- package/fesm2022/ngx-sp-auth.mjs.map +1 -1
- package/lib/components/menu-lateral/model/ret-menu-item-structure.d.ts +7 -0
- package/lib/components/menu-lateral/model/ret-menu-lateral.d.ts +7 -0
- package/lib/components/menu-lateral/model/ret-menu-promise.d.ts +5 -0
- package/package.json +1 -1
- package/public-api.d.ts +3 -0
package/fesm2022/ngx-sp-auth.mjs
CHANGED
|
@@ -3117,6 +3117,28 @@ class InfraUsuarioImg {
|
|
|
3117
3117
|
}
|
|
3118
3118
|
}
|
|
3119
3119
|
|
|
3120
|
+
class RetMenuItemStructure {
|
|
3121
|
+
constructor() {
|
|
3122
|
+
this.Error = false;
|
|
3123
|
+
this.ErrorMessage = "";
|
|
3124
|
+
this.MenuItem = [];
|
|
3125
|
+
}
|
|
3126
|
+
}
|
|
3127
|
+
|
|
3128
|
+
class RetMenuLateral {
|
|
3129
|
+
constructor() {
|
|
3130
|
+
this.Error = false;
|
|
3131
|
+
this.ErrorMessage = "";
|
|
3132
|
+
}
|
|
3133
|
+
}
|
|
3134
|
+
|
|
3135
|
+
class RetMenuPromise {
|
|
3136
|
+
constructor() {
|
|
3137
|
+
this.menuList = [];
|
|
3138
|
+
this.isAuthorized = false;
|
|
3139
|
+
}
|
|
3140
|
+
}
|
|
3141
|
+
|
|
3120
3142
|
class RetNavSubMenu {
|
|
3121
3143
|
constructor() {
|
|
3122
3144
|
this.Error = false;
|
|
@@ -3364,5 +3386,5 @@ const AUTH_ROUTES = [
|
|
|
3364
3386
|
* Generated bundle index. Do not edit.
|
|
3365
3387
|
*/
|
|
3366
3388
|
|
|
3367
|
-
export { AUTH_ROUTES, AuthAplicInterceptor, AuthGuard, AuthInfraInterceptor, AuthModule, AuthService, AuthStorageService, DynamicMenuComponent, EnvironmentService, ExternaLoginlGuard, IMenu, InfraUsuarioImg, LibCustomLoginService, LibCustomMenuService, LibCustomStorageService, LibMenuConfigService, LoginComponent, LoginGuard, LoginOSComponent, LoginOSGuard, LoginProgress, MenuLateralComponent, MenuServicesService, NotifSubmenuComponent, NovaSenhaComponent, PrimaryDropdownComponent, RetNavSubMenu, RetSubmenuWithCards, SecondaryDropdownComponent, SelecaoEstabelecimentosModalComponent, SituacaoLogin };
|
|
3389
|
+
export { AUTH_ROUTES, AuthAplicInterceptor, AuthGuard, AuthInfraInterceptor, AuthModule, AuthService, AuthStorageService, DynamicMenuComponent, EnvironmentService, ExternaLoginlGuard, IMenu, InfraUsuarioImg, LibCustomLoginService, LibCustomMenuService, LibCustomStorageService, LibMenuConfigService, LoginComponent, LoginGuard, LoginOSComponent, LoginOSGuard, LoginProgress, MenuLateralComponent, MenuServicesService, NotifSubmenuComponent, NovaSenhaComponent, PrimaryDropdownComponent, RetMenuItemStructure, RetMenuLateral, RetMenuPromise, RetNavSubMenu, RetSubmenuWithCards, SecondaryDropdownComponent, SelecaoEstabelecimentosModalComponent, SituacaoLogin };
|
|
3368
3390
|
//# sourceMappingURL=ngx-sp-auth.mjs.map
|