@nettyapps/ntybase 0.1.24 → 21.0.1
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/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nettyapps/ntybase",
|
|
3
|
-
"version": "0.1
|
|
3
|
+
"version": "21.0.1",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
7
|
"peerDependencies": {
|
|
8
|
-
"@angular/common": "^
|
|
9
|
-
"@angular/core": "^
|
|
8
|
+
"@angular/common": "^21.0.3",
|
|
9
|
+
"@angular/core": "^21.0.3"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"tslib": "^2.3.0"
|
|
@@ -29,10 +29,10 @@
|
|
|
29
29
|
"default": "./package.json"
|
|
30
30
|
},
|
|
31
31
|
".": {
|
|
32
|
-
"types": "./
|
|
32
|
+
"types": "./types/nettyapps-ntybase.d.ts",
|
|
33
33
|
"default": "./fesm2022/nettyapps-ntybase.mjs"
|
|
34
34
|
}
|
|
35
35
|
},
|
|
36
36
|
"module": "fesm2022/nettyapps-ntybase.mjs",
|
|
37
|
-
"typings": "
|
|
37
|
+
"typings": "types/nettyapps-ntybase.d.ts"
|
|
38
38
|
}
|
|
@@ -587,7 +587,7 @@ interface CanComponentDeactivate {
|
|
|
587
587
|
canDeactivate: () => boolean | Promise<boolean> | Observable<boolean>;
|
|
588
588
|
}
|
|
589
589
|
declare class CanDeactivateGuard implements CanDeactivate<CanComponentDeactivate> {
|
|
590
|
-
canDeactivate(component: CanComponentDeactivate): boolean |
|
|
590
|
+
canDeactivate(component: CanComponentDeactivate): boolean | Promise<boolean> | Observable<boolean>;
|
|
591
591
|
}
|
|
592
592
|
|
|
593
593
|
declare class AuthenticationInterceptor implements HttpInterceptor {
|
|
@@ -739,12 +739,13 @@ declare class Login extends AuthBase {
|
|
|
739
739
|
private authService;
|
|
740
740
|
private formBuilder;
|
|
741
741
|
loginForm: FormGroup;
|
|
742
|
-
version: string | null
|
|
742
|
+
version: _angular_core.WritableSignal<string | null>;
|
|
743
743
|
isLoading: _angular_core.WritableSignal<boolean>;
|
|
744
744
|
error: _angular_core.WritableSignal<string | undefined>;
|
|
745
745
|
credentials: LoginContext;
|
|
746
746
|
ngOnInit(): void;
|
|
747
747
|
timeout(ms: number): Promise<unknown>;
|
|
748
|
+
private checkVersion;
|
|
748
749
|
private handleRememberMe;
|
|
749
750
|
private loadRememberedUsername;
|
|
750
751
|
login(): void;
|
|
@@ -882,6 +883,7 @@ declare class LeftSidenav implements OnInit, AfterViewInit {
|
|
|
882
883
|
originalMenuItems: _angular_core.WritableSignal<any[]>;
|
|
883
884
|
constructor();
|
|
884
885
|
ngOnInit(): void;
|
|
886
|
+
private trySetMenuName;
|
|
885
887
|
ngAfterViewInit(): void;
|
|
886
888
|
loadUserInfo(): void;
|
|
887
889
|
generateProfileImage(username: string): void;
|