@bitblit/ngx-acute-warden 5.1.652-alpha → 5.1.654-alpha
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/lib/constants.d.ts +4 -0
- package/lib/constants.js +5 -0
- package/lib/constants.js.map +1 -0
- package/lib/guards/logged-in-guard.d.ts +6 -4
- package/lib/guards/logged-in-guard.js +23 -8
- package/lib/guards/logged-in-guard.js.map +1 -1
- package/lib/guards/not-logged-in-guard.d.ts +6 -4
- package/lib/guards/not-logged-in-guard.js +24 -10
- package/lib/guards/not-logged-in-guard.js.map +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/index.js.map +1 -1
- package/package.json +8 -8
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { InjectionToken } from "@angular/core";
|
|
2
|
+
export declare const ACUTE_WARDEN_LOGIN_PATH: InjectionToken<string>;
|
|
3
|
+
export declare const ACUTE_WARDEN_DEFAULT_POST_LOGIN_PATH: InjectionToken<string>;
|
|
4
|
+
export declare const ACUTE_WARDEN_DEFAULT_IF_LOGGED_IN_PATH: InjectionToken<string>;
|
package/lib/constants.js
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { InjectionToken } from "@angular/core";
|
|
2
|
+
export const ACUTE_WARDEN_LOGIN_PATH = new InjectionToken('ACUTE_WARDEN_LOGIN_PATH');
|
|
3
|
+
export const ACUTE_WARDEN_DEFAULT_POST_LOGIN_PATH = new InjectionToken('ACUTE_WARDEN_DEFAULT_POST_LOGIN_PATH');
|
|
4
|
+
export const ACUTE_WARDEN_DEFAULT_IF_LOGGED_IN_PATH = new InjectionToken('ACUTE_WARDEN_DEFAULT_IF_LOGGED_IN_PATH');
|
|
5
|
+
//# sourceMappingURL=constants.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"constants.js","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,eAAe,CAAC;AAE/C,MAAM,CAAC,MAAM,uBAAuB,GAA2B,IAAI,cAAc,CAAS,yBAAyB,CAAC,CAAC;AACrH,MAAM,CAAC,MAAM,oCAAoC,GAA2B,IAAI,cAAc,CAAS,sCAAsC,CAAC,CAAC;AAC/I,MAAM,CAAC,MAAM,sCAAsC,GAA2B,IAAI,cAAc,CAAS,wCAAwC,CAAC,CAAC"}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
import { ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot } from
|
|
2
|
-
import { Observable } from
|
|
3
|
-
import { WardenUserService } from
|
|
1
|
+
import { ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot } from "@angular/router";
|
|
2
|
+
import { Observable } from "rxjs";
|
|
3
|
+
import { WardenUserService } from "@bitblit/ratchet-warden-common/client/warden-user-service";
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class LoggedInGuard implements CanActivate {
|
|
6
6
|
private userService;
|
|
7
7
|
private router;
|
|
8
|
-
|
|
8
|
+
private loginPath;
|
|
9
|
+
private defaultPostLoginPath;
|
|
10
|
+
constructor(userService: WardenUserService<any>, router: Router, loginPath: string, defaultPostLoginPath: string);
|
|
9
11
|
canActivate(route: ActivatedRouteSnapshot, state: RouterStateSnapshot): Observable<boolean> | Promise<boolean> | boolean;
|
|
10
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<LoggedInGuard, never>;
|
|
11
13
|
static ɵprov: i0.ɵɵInjectableDeclaration<LoggedInGuard>;
|
|
@@ -1,28 +1,43 @@
|
|
|
1
|
-
import { Injectable } from
|
|
2
|
-
import { Router } from
|
|
3
|
-
import { WardenUserService } from
|
|
4
|
-
import { No } from
|
|
1
|
+
import { Inject, Injectable } from "@angular/core";
|
|
2
|
+
import { Router } from "@angular/router";
|
|
3
|
+
import { WardenUserService } from "@bitblit/ratchet-warden-common/client/warden-user-service";
|
|
4
|
+
import { No } from "@bitblit/ratchet-common/lang/no";
|
|
5
|
+
import { ACUTE_WARDEN_DEFAULT_POST_LOGIN_PATH, ACUTE_WARDEN_LOGIN_PATH } from "../constants.js";
|
|
6
|
+
import { RequireRatchet } from "@bitblit/ratchet-common/lang/require-ratchet";
|
|
5
7
|
import * as i0 from "@angular/core";
|
|
6
8
|
import * as i1 from "@bitblit/ratchet-warden-common/client/warden-user-service";
|
|
7
9
|
import * as i2 from "@angular/router";
|
|
8
10
|
export class LoggedInGuard {
|
|
9
11
|
userService;
|
|
10
12
|
router;
|
|
11
|
-
|
|
13
|
+
loginPath;
|
|
14
|
+
defaultPostLoginPath;
|
|
15
|
+
constructor(userService, router, loginPath, defaultPostLoginPath) {
|
|
12
16
|
this.userService = userService;
|
|
13
17
|
this.router = router;
|
|
18
|
+
this.loginPath = loginPath;
|
|
19
|
+
this.defaultPostLoginPath = defaultPostLoginPath;
|
|
20
|
+
RequireRatchet.notNullUndefinedOrOnlyWhitespaceString(this.loginPath, 'ACUTE_WARDEN_LOGIN_PATH');
|
|
21
|
+
RequireRatchet.notNullUndefinedOrOnlyWhitespaceString(this.defaultPostLoginPath, 'ACUTE_WARDEN_DEFAULT_POST_LOGIN_PATH');
|
|
14
22
|
}
|
|
15
23
|
canActivate(route, state) {
|
|
16
24
|
if (!this.userService.isLoggedIn()) {
|
|
17
|
-
this.
|
|
25
|
+
const target = state.url === this.loginPath ? this.defaultPostLoginPath : state.url;
|
|
26
|
+
this.router.navigate([this.loginPath], { queryParams: { returnUrl: target } }).then(No.op);
|
|
18
27
|
return false;
|
|
19
28
|
}
|
|
20
29
|
return true;
|
|
21
30
|
}
|
|
22
|
-
static ɵfac = function LoggedInGuard_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || LoggedInGuard)(i0.ɵɵinject(i1.WardenUserService), i0.ɵɵinject(i2.Router)); };
|
|
31
|
+
static ɵfac = function LoggedInGuard_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || LoggedInGuard)(i0.ɵɵinject(i1.WardenUserService), i0.ɵɵinject(i2.Router), i0.ɵɵinject(ACUTE_WARDEN_LOGIN_PATH), i0.ɵɵinject(ACUTE_WARDEN_DEFAULT_POST_LOGIN_PATH)); };
|
|
23
32
|
static ɵprov = i0.ɵɵdefineInjectable({ token: LoggedInGuard, factory: LoggedInGuard.ɵfac });
|
|
24
33
|
}
|
|
25
34
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(LoggedInGuard, [{
|
|
26
35
|
type: Injectable
|
|
27
|
-
}], () => [{ type: i1.WardenUserService }, { type: i2.Router }
|
|
36
|
+
}], () => [{ type: i1.WardenUserService }, { type: i2.Router }, { type: undefined, decorators: [{
|
|
37
|
+
type: Inject,
|
|
38
|
+
args: [ACUTE_WARDEN_LOGIN_PATH]
|
|
39
|
+
}] }, { type: undefined, decorators: [{
|
|
40
|
+
type: Inject,
|
|
41
|
+
args: [ACUTE_WARDEN_DEFAULT_POST_LOGIN_PATH]
|
|
42
|
+
}] }], null); })();
|
|
28
43
|
//# sourceMappingURL=logged-in-guard.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"logged-in-guard.js","sourceRoot":"","sources":["../../src/guards/logged-in-guard.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"logged-in-guard.js","sourceRoot":"","sources":["../../src/guards/logged-in-guard.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AACnD,OAAO,EAAuC,MAAM,EAAuB,MAAM,iBAAiB,CAAC;AAEnG,OAAO,EAAE,iBAAiB,EAAE,MAAM,2DAA2D,CAAC;AAC9F,OAAO,EAAE,EAAE,EAAE,MAAM,iCAAiC,CAAC;AACrD,OAAO,EAAE,oCAAoC,EAAE,uBAAuB,EAAE,MAAM,iBAAiB,CAAC;AAChG,OAAO,EAAE,cAAc,EAAE,MAAM,8CAA8C,CAAC;;;;AAG9E,MAAM,OAAO,aAAa;IAEd;IACA;IACiC;IACa;IAJxD,YACU,WAAmC,EACnC,MAAc,EACmB,SAAiB,EACJ,oBAA4B;QAH1E,gBAAW,GAAX,WAAW,CAAwB;QACnC,WAAM,GAAN,MAAM,CAAQ;QACmB,cAAS,GAAT,SAAS,CAAQ;QACJ,yBAAoB,GAApB,oBAAoB,CAAQ;QAElF,cAAc,CAAC,sCAAsC,CAAC,IAAI,CAAC,SAAS,EAAE,yBAAyB,CAAC,CAAC;QACjG,cAAc,CAAC,sCAAsC,CAAC,IAAI,CAAC,oBAAoB,EAAE,sCAAsC,CAAC,CAAC;IAC3H,CAAC;IAED,WAAW,CAAC,KAA6B,EAAE,KAA0B;QACnE,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,UAAU,EAAE,EAAE,CAAC;YAEnC,MAAM,MAAM,GAAW,KAAK,CAAC,GAAG,KAAK,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,KAAK,CAAC,GAAG,CAAC;YAC5F,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,EAAE,EAAE,WAAW,EAAE,EAAE,SAAS,EAAE,MAAM,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;YAC3F,OAAO,KAAK,CAAC;QACf,CAAC;QACD,OAAO,IAAI,CAAC;IACd,CAAC;uGAnBU,aAAa,yEAId,uBAAuB,eACvB,oCAAoC;kDALnC,aAAa,WAAb,aAAa;;iFAAb,aAAa;cADzB,UAAU;;sBAKN,MAAM;uBAAC,uBAAuB;;sBAC9B,MAAM;uBAAC,oCAAoC"}
|
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
import { ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot } from
|
|
2
|
-
import { Observable } from
|
|
3
|
-
import { WardenUserService } from
|
|
1
|
+
import { ActivatedRouteSnapshot, CanActivate, Router, RouterStateSnapshot } from "@angular/router";
|
|
2
|
+
import { Observable } from "rxjs";
|
|
3
|
+
import { WardenUserService } from "@bitblit/ratchet-warden-common/client/warden-user-service";
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class NotLoggedInGuard implements CanActivate {
|
|
6
6
|
private userService;
|
|
7
7
|
private router;
|
|
8
|
-
|
|
8
|
+
private defaultIfLoggedInPath;
|
|
9
|
+
private loginPath;
|
|
10
|
+
constructor(userService: WardenUserService<any>, router: Router, defaultIfLoggedInPath: string, loginPath: string);
|
|
9
11
|
canActivate(route: ActivatedRouteSnapshot, _state: RouterStateSnapshot): Observable<boolean> | Promise<boolean> | boolean;
|
|
10
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<NotLoggedInGuard, never>;
|
|
11
13
|
static ɵprov: i0.ɵɵInjectableDeclaration<NotLoggedInGuard>;
|
|
@@ -1,37 +1,51 @@
|
|
|
1
|
-
import { Injectable } from
|
|
2
|
-
import { Router } from
|
|
3
|
-
import { Logger } from
|
|
4
|
-
import { WardenUserService } from
|
|
5
|
-
import { No } from
|
|
1
|
+
import { Inject, Injectable } from "@angular/core";
|
|
2
|
+
import { Router } from "@angular/router";
|
|
3
|
+
import { Logger } from "@bitblit/ratchet-common/logger/logger";
|
|
4
|
+
import { WardenUserService } from "@bitblit/ratchet-warden-common/client/warden-user-service";
|
|
5
|
+
import { No } from "@bitblit/ratchet-common/lang/no";
|
|
6
|
+
import { ACUTE_WARDEN_DEFAULT_IF_LOGGED_IN_PATH, ACUTE_WARDEN_LOGIN_PATH } from "../constants.js";
|
|
7
|
+
import { RequireRatchet } from "@bitblit/ratchet-common/lang/require-ratchet";
|
|
6
8
|
import * as i0 from "@angular/core";
|
|
7
9
|
import * as i1 from "@bitblit/ratchet-warden-common/client/warden-user-service";
|
|
8
10
|
import * as i2 from "@angular/router";
|
|
9
11
|
export class NotLoggedInGuard {
|
|
10
12
|
userService;
|
|
11
13
|
router;
|
|
12
|
-
|
|
14
|
+
defaultIfLoggedInPath;
|
|
15
|
+
loginPath;
|
|
16
|
+
constructor(userService, router, defaultIfLoggedInPath, loginPath) {
|
|
13
17
|
this.userService = userService;
|
|
14
18
|
this.router = router;
|
|
19
|
+
this.defaultIfLoggedInPath = defaultIfLoggedInPath;
|
|
20
|
+
this.loginPath = loginPath;
|
|
21
|
+
RequireRatchet.notNullUndefinedOrOnlyWhitespaceString(this.defaultIfLoggedInPath, 'ACUTE_WARDEN_DEFAULT_IF_LOGGED_IN_PATH');
|
|
22
|
+
RequireRatchet.notNullUndefinedOrOnlyWhitespaceString(this.loginPath, 'ACUTE_WARDEN_LOGIN_PATH');
|
|
15
23
|
}
|
|
16
24
|
canActivate(route, _state) {
|
|
17
25
|
Logger.info('--- %j', route.queryParamMap);
|
|
18
26
|
if (route.queryParamMap.get('logout') === 'true') {
|
|
19
27
|
Logger.info('Logging out...');
|
|
20
28
|
this.userService.logout();
|
|
21
|
-
this.router.navigate([
|
|
29
|
+
this.router.navigate([this.loginPath]).then(No.op);
|
|
22
30
|
}
|
|
23
31
|
if (this.userService.isLoggedIn()) {
|
|
24
|
-
const target =
|
|
32
|
+
const target = this.defaultIfLoggedInPath;
|
|
25
33
|
Logger.info('NotLoggedInGuard fail(logged in) : Redirecting to logged in %s', target);
|
|
26
34
|
this.router.navigate([target]).then(No.op);
|
|
27
35
|
return false;
|
|
28
36
|
}
|
|
29
37
|
return true;
|
|
30
38
|
}
|
|
31
|
-
static ɵfac = function NotLoggedInGuard_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || NotLoggedInGuard)(i0.ɵɵinject(i1.WardenUserService), i0.ɵɵinject(i2.Router)); };
|
|
39
|
+
static ɵfac = function NotLoggedInGuard_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || NotLoggedInGuard)(i0.ɵɵinject(i1.WardenUserService), i0.ɵɵinject(i2.Router), i0.ɵɵinject(ACUTE_WARDEN_DEFAULT_IF_LOGGED_IN_PATH), i0.ɵɵinject(ACUTE_WARDEN_LOGIN_PATH)); };
|
|
32
40
|
static ɵprov = i0.ɵɵdefineInjectable({ token: NotLoggedInGuard, factory: NotLoggedInGuard.ɵfac });
|
|
33
41
|
}
|
|
34
42
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(NotLoggedInGuard, [{
|
|
35
43
|
type: Injectable
|
|
36
|
-
}], () => [{ type: i1.WardenUserService }, { type: i2.Router }
|
|
44
|
+
}], () => [{ type: i1.WardenUserService }, { type: i2.Router }, { type: undefined, decorators: [{
|
|
45
|
+
type: Inject,
|
|
46
|
+
args: [ACUTE_WARDEN_DEFAULT_IF_LOGGED_IN_PATH]
|
|
47
|
+
}] }, { type: undefined, decorators: [{
|
|
48
|
+
type: Inject,
|
|
49
|
+
args: [ACUTE_WARDEN_LOGIN_PATH]
|
|
50
|
+
}] }], null); })();
|
|
37
51
|
//# sourceMappingURL=not-logged-in-guard.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"not-logged-in-guard.js","sourceRoot":"","sources":["../../src/guards/not-logged-in-guard.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"not-logged-in-guard.js","sourceRoot":"","sources":["../../src/guards/not-logged-in-guard.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,eAAe,CAAC;AACnD,OAAO,EAAuC,MAAM,EAAuB,MAAM,iBAAiB,CAAC;AAGnG,OAAO,EAAE,MAAM,EAAE,MAAM,uCAAuC,CAAC;AAC/D,OAAO,EAAE,iBAAiB,EAAE,MAAM,2DAA2D,CAAC;AAC9F,OAAO,EAAE,EAAE,EAAE,MAAM,iCAAiC,CAAC;AACrD,OAAO,EAAE,sCAAsC,EAAE,uBAAuB,EAAE,MAAM,iBAAiB,CAAC;AAClG,OAAO,EAAE,cAAc,EAAE,MAAM,8CAA8C,CAAC;;;;AAG9E,MAAM,OAAO,gBAAgB;IAEjB;IACA;IACgD;IACf;IAJ3C,YACU,WAAmC,EACnC,MAAc,EACkC,qBAA6B,EAC5C,SAAiB;QAHlD,gBAAW,GAAX,WAAW,CAAwB;QACnC,WAAM,GAAN,MAAM,CAAQ;QACkC,0BAAqB,GAArB,qBAAqB,CAAQ;QAC5C,cAAS,GAAT,SAAS,CAAQ;QAE1D,cAAc,CAAC,sCAAsC,CAAC,IAAI,CAAC,qBAAqB,EAAE,wCAAwC,CAAC,CAAC;QAC5H,cAAc,CAAC,sCAAsC,CAAC,IAAI,CAAC,SAAS,EAAE,yBAAyB,CAAC,CAAC;IACnG,CAAC;IAED,WAAW,CAAC,KAA6B,EAAE,MAA2B;QACpE,MAAM,CAAC,IAAI,CAAC,QAAQ,EAAE,KAAK,CAAC,aAAa,CAAC,CAAC;QAC3C,IAAI,KAAK,CAAC,aAAa,CAAC,GAAG,CAAC,QAAQ,CAAC,KAAK,MAAM,EAAE,CAAC;YACjD,MAAM,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;YAC9B,IAAI,CAAC,WAAW,CAAC,MAAM,EAAE,CAAC;YAC1B,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;QACrD,CAAC;QAED,IAAI,IAAI,CAAC,WAAW,CAAC,UAAU,EAAE,EAAE,CAAC;YAElC,MAAM,MAAM,GAAW,IAAI,CAAC,qBAAqB,CAAC;YAElD,MAAM,CAAC,IAAI,CAAC,gEAAgE,EAAE,MAAM,CAAC,CAAC;YACtF,IAAI,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;YAC3C,OAAO,KAAK,CAAC;QACf,CAAC;QACD,OAAO,IAAI,CAAC;IACd,CAAC;0GA5BU,gBAAgB,yEAIjB,sCAAsC,eACtC,uBAAuB;kDALtB,gBAAgB,WAAhB,gBAAgB;;iFAAhB,gBAAgB;cAD5B,UAAU;;sBAKN,MAAM;uBAAC,sCAAsC;;sBAC7C,MAAM;uBAAC,uBAAuB"}
|
package/lib/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './build/ngx-acute-warden-info';
|
|
2
|
+
export * from './constants';
|
|
2
3
|
export * from './components/acute-create-user/acute-create-user.component';
|
|
3
4
|
export * from './components/acute-login/acute-login.component';
|
|
4
5
|
export * from './components/acute-magic-lander/acute-magic-lander.component';
|
package/lib/index.js
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
export * from './build/ngx-acute-warden-info';
|
|
2
|
+
export * from './constants';
|
|
2
3
|
export * from './components/acute-create-user/acute-create-user.component';
|
|
3
4
|
export * from './components/acute-login/acute-login.component';
|
|
4
5
|
export * from './components/acute-magic-lander/acute-magic-lander.component';
|
package/lib/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,+BAA+B,CAAC;
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,+BAA+B,CAAC;AAC9C,cAAc,aAAa,CAAC;AAE5B,cAAc,4DAA4D,CAAC;AAC3E,cAAc,gDAAgD,CAAC;AAC/D,cAAc,8DAA8D,CAAC;AAC7E,cAAc,8DAA8D,CAAC;AAE7E,cAAc,mCAAmC,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bitblit/ngx-acute-warden",
|
|
3
|
-
"version": "5.1.
|
|
3
|
+
"version": "5.1.654-alpha",
|
|
4
4
|
"description": "Library for using angular with ratchet-warden",
|
|
5
5
|
"module": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -44,9 +44,9 @@
|
|
|
44
44
|
"@angular/platform-browser": "19.2.9",
|
|
45
45
|
"@angular/platform-browser-dynamic": "19.2.9",
|
|
46
46
|
"@angular/router": "19.2.9",
|
|
47
|
-
"@bitblit/ngx-acute-common": "5.1.
|
|
48
|
-
"@bitblit/ratchet-common": "5.1.
|
|
49
|
-
"@bitblit/ratchet-warden-common": "5.1.
|
|
47
|
+
"@bitblit/ngx-acute-common": "5.1.654-alpha",
|
|
48
|
+
"@bitblit/ratchet-common": "5.1.654-alpha",
|
|
49
|
+
"@bitblit/ratchet-warden-common": "5.1.654-alpha",
|
|
50
50
|
"primeflex": "4.0.0",
|
|
51
51
|
"primeicons": "7.0.0",
|
|
52
52
|
"primeng": "19.1.2",
|
|
@@ -63,9 +63,9 @@
|
|
|
63
63
|
"@angular/platform-browser": "^19.2.9",
|
|
64
64
|
"@angular/platform-browser-dynamic": "^19.2.9",
|
|
65
65
|
"@angular/router": "^19.2.9",
|
|
66
|
-
"@bitblit/ngx-acute-common": "5.1.
|
|
67
|
-
"@bitblit/ratchet-common": "5.1.
|
|
68
|
-
"@bitblit/ratchet-warden-common": "5.1.
|
|
66
|
+
"@bitblit/ngx-acute-common": "5.1.654-alpha",
|
|
67
|
+
"@bitblit/ratchet-common": "5.1.654-alpha",
|
|
68
|
+
"@bitblit/ratchet-warden-common": "5.1.654-alpha",
|
|
69
69
|
"primeflex": "4.0.0",
|
|
70
70
|
"primeicons": "7.0.0",
|
|
71
71
|
"primeng": "19.1.2",
|
|
@@ -74,6 +74,6 @@
|
|
|
74
74
|
},
|
|
75
75
|
"devDependencies": {
|
|
76
76
|
"@angular/compiler-cli": "19.2.9",
|
|
77
|
-
"@bitblit/ratchet-node-only": "5.1.
|
|
77
|
+
"@bitblit/ratchet-node-only": "5.1.654-alpha"
|
|
78
78
|
}
|
|
79
79
|
}
|