@devopmaat/badaboom 1.3.3 → 1.3.5
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/_index.scss +2 -1
- package/fesm2022/devopmaat-badaboom.mjs +339 -310
- package/fesm2022/devopmaat-badaboom.mjs.map +1 -1
- package/lib/common/error-response-dialog/error-response-dialog.component.d.ts +10 -0
- package/lib/domain/auth/auth.service.d.ts +6 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { HttpErrorResponse } from '@angular/common/http';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class BdbErrorResponseDialogComponent {
|
|
4
|
+
readonly data: {
|
|
5
|
+
title: string;
|
|
6
|
+
error: HttpErrorResponse;
|
|
7
|
+
};
|
|
8
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<BdbErrorResponseDialogComponent, never>;
|
|
9
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<BdbErrorResponseDialogComponent, "bdb-error-response-dialog", never, {}, {}, never, never, true, never>;
|
|
10
|
+
}
|
|
@@ -2,6 +2,8 @@ import { BehaviorSubject, Observable } from 'rxjs';
|
|
|
2
2
|
import { AccountInfo } from './account-info';
|
|
3
3
|
import { AccountService } from './account.service';
|
|
4
4
|
import { TokenResponse } from './token-reponse';
|
|
5
|
+
import { MatDialog } from '@angular/material/dialog';
|
|
6
|
+
import { Router } from '@angular/router';
|
|
5
7
|
import * as i0 from "@angular/core";
|
|
6
8
|
export declare function getAuthorizationHeaderFromToken(token: string): string;
|
|
7
9
|
export declare function getTokenFromAuthorizationHeader(header: string): string;
|
|
@@ -9,6 +11,10 @@ export declare class AuthService {
|
|
|
9
11
|
private accountService;
|
|
10
12
|
token$: BehaviorSubject<string | null>;
|
|
11
13
|
account$: BehaviorSubject<AccountInfo | null>;
|
|
14
|
+
currentRefreshTokenRequest: Observable<string | null> | undefined;
|
|
15
|
+
matDialog: MatDialog;
|
|
16
|
+
router: Router;
|
|
17
|
+
readonly bdbOptions: import("../../bdb-options").BdbOptions;
|
|
12
18
|
constructor(accountService: AccountService);
|
|
13
19
|
login(value: {
|
|
14
20
|
email: string;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -34,6 +34,7 @@ export * from './lib/common/alert/bdb-alert.component';
|
|
|
34
34
|
export * from './lib/common/alert-error-response/bdb-alert-error-response.component';
|
|
35
35
|
export * from './lib/common/boolean-display/bdb-boolean-display.component';
|
|
36
36
|
export * from './lib/common/collapse-row/bdb-collapse-row.component';
|
|
37
|
+
export * from './lib/common/error-response-dialog/error-response-dialog.component';
|
|
37
38
|
export * from './lib/common/field/bdb-field.component';
|
|
38
39
|
export * from './lib/common/plain-number.pipe';
|
|
39
40
|
export * from './lib/common/file-size.pipe';
|