verben-authentication-ui 0.0.2 → 0.0.4

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.
Files changed (46) hide show
  1. package/esm2022/lib/components/forgot-password/ForgotPasswordData.mjs +2 -0
  2. package/esm2022/lib/components/forgot-password/forgot-password.component.mjs +66 -0
  3. package/esm2022/lib/components/forgot-password/forgot-password.module.mjs +34 -0
  4. package/esm2022/lib/components/reset-password/reset-password.component.mjs +15 -8
  5. package/esm2022/lib/components/two-factor-auth-setup/two-factor-auth-setup.component.mjs +3 -3
  6. package/esm2022/lib/components/user-request/user-request.component.mjs +67 -26
  7. package/esm2022/lib/components/user-request-approval/access-request.columns.mjs +24 -0
  8. package/esm2022/lib/components/user-request-approval/base-table-style.mjs +53 -0
  9. package/esm2022/lib/components/user-request-approval/helper.mjs +33 -0
  10. package/esm2022/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.mjs +26 -0
  11. package/esm2022/lib/components/user-request-approval/user-request-approval.component.mjs +202 -0
  12. package/esm2022/lib/components/user-request-approval/user-request-approval.module.mjs +75 -0
  13. package/esm2022/lib/components/user-request-approval/user-request-form/user-request-form.component.mjs +54 -0
  14. package/esm2022/lib/models/ErrorResponse.mjs +11 -0
  15. package/esm2022/lib/models/base.mjs +2 -0
  16. package/esm2022/lib/models/object-state.mjs +8 -0
  17. package/esm2022/lib/models/user-access-request-status.mjs +7 -0
  18. package/esm2022/lib/models/user-access-request.mjs +2 -0
  19. package/esm2022/lib/models/user.mjs +2 -0
  20. package/esm2022/lib/services/environment.service.mjs +26 -0
  21. package/esm2022/lib/services/http-web-request.service.mjs +85 -0
  22. package/esm2022/public-api.mjs +7 -1
  23. package/fesm2022/verben-authentication-ui.mjs +748 -45
  24. package/fesm2022/verben-authentication-ui.mjs.map +1 -1
  25. package/lib/components/forgot-password/ForgotPasswordData.d.ts +3 -0
  26. package/lib/components/forgot-password/forgot-password.component.d.ts +21 -0
  27. package/lib/components/forgot-password/forgot-password.module.d.ts +10 -0
  28. package/lib/components/reset-password/reset-password.component.d.ts +5 -2
  29. package/lib/components/user-request/user-request.component.d.ts +18 -7
  30. package/lib/components/user-request-approval/access-request.columns.d.ts +3 -0
  31. package/lib/components/user-request-approval/base-table-style.d.ts +1 -0
  32. package/lib/components/user-request-approval/helper.d.ts +6 -0
  33. package/lib/components/user-request-approval/user-access-request-status-badge/user-access-request-status-badge.component.d.ts +12 -0
  34. package/lib/components/user-request-approval/user-request-approval.component.d.ts +50 -0
  35. package/lib/components/user-request-approval/user-request-approval.module.d.ts +12 -0
  36. package/lib/components/user-request-approval/user-request-form/user-request-form.component.d.ts +20 -0
  37. package/lib/models/ErrorResponse.d.ts +6 -0
  38. package/lib/models/base.d.ts +10 -0
  39. package/lib/models/object-state.d.ts +6 -0
  40. package/lib/models/user-access-request-status.d.ts +5 -0
  41. package/lib/models/user-access-request.d.ts +7 -0
  42. package/lib/models/user.d.ts +18 -0
  43. package/lib/services/environment.service.d.ts +14 -0
  44. package/lib/services/http-web-request.service.d.ts +17 -0
  45. package/package.json +2 -2
  46. package/public-api.d.ts +6 -0
@@ -0,0 +1,3 @@
1
+ export interface ForgotPasswordData {
2
+ Email: string;
3
+ }
@@ -0,0 +1,21 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { AbstractControl, FormBuilder, FormGroup, ValidationErrors } from '@angular/forms';
3
+ import { ForgotPasswordData } from './ForgotPasswordData';
4
+ import * as i0 from "@angular/core";
5
+ export declare class ForgotPasswordComponent {
6
+ private fb;
7
+ title: string;
8
+ subTitle: string;
9
+ buttonCaption: string;
10
+ buttonTextColor?: string;
11
+ buttonBackgroundColor?: string;
12
+ onSubmit: EventEmitter<ForgotPasswordData>;
13
+ forgotPasswordForm: FormGroup;
14
+ constructor(fb: FormBuilder);
15
+ isValidEmail(mail: string): boolean;
16
+ emailValidator(control: AbstractControl): ValidationErrors | null;
17
+ checkForm(): boolean;
18
+ submit(): void;
19
+ static ɵfac: i0.ɵɵFactoryDeclaration<ForgotPasswordComponent, never>;
20
+ static ɵcmp: i0.ɵɵComponentDeclaration<ForgotPasswordComponent, "verben-forgot-password", never, { "title": { "alias": "title"; "required": false; }; "subTitle": { "alias": "subTitle"; "required": false; }; "buttonCaption": { "alias": "buttonCaption"; "required": false; }; "buttonTextColor": { "alias": "buttonTextColor"; "required": false; }; "buttonBackgroundColor": { "alias": "buttonBackgroundColor"; "required": false; }; }, { "onSubmit": "onSubmit"; }, never, never, false, never>;
21
+ }
@@ -0,0 +1,10 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./forgot-password.component";
3
+ import * as i2 from "@angular/forms";
4
+ import * as i3 from "verben-ng-ui";
5
+ import * as i4 from "@angular/common";
6
+ export declare class ForgotPasswordModule {
7
+ static ɵfac: i0.ɵɵFactoryDeclaration<ForgotPasswordModule, never>;
8
+ static ɵmod: i0.ɵɵNgModuleDeclaration<ForgotPasswordModule, [typeof i1.ForgotPasswordComponent], [typeof i2.FormsModule, typeof i2.ReactiveFormsModule, typeof i3.VerbenaInputModule, typeof i3.VerbenaButtonModule, typeof i4.CommonModule], [typeof i1.ForgotPasswordComponent]>;
9
+ static ɵinj: i0.ɵɵInjectorDeclaration<ForgotPasswordModule>;
10
+ }
@@ -1,9 +1,11 @@
1
1
  import { EventEmitter } from '@angular/core';
2
2
  import { AbstractControl, FormBuilder, FormGroup, ValidationErrors } from '@angular/forms';
3
3
  import { ResetPasswordData } from './ResetPasswordData';
4
+ import { HttpWebRequestService } from '../../services/http-web-request.service';
4
5
  import * as i0 from "@angular/core";
5
6
  export declare class ResetPasswordComponent {
6
7
  private fb;
8
+ private req;
7
9
  title: string;
8
10
  subTitle: string;
9
11
  buttonCaption: string;
@@ -11,12 +13,13 @@ export declare class ResetPasswordComponent {
11
13
  buttonBackgroundColor?: string;
12
14
  showOldPassword: boolean;
13
15
  onSubmit: EventEmitter<ResetPasswordData>;
16
+ onSubmitResponseEnd: EventEmitter<any>;
14
17
  resetPasswordForm: FormGroup;
15
- constructor(fb: FormBuilder);
18
+ constructor(fb: FormBuilder, req: HttpWebRequestService);
16
19
  checkForm(): boolean;
17
20
  oldPasswordValidator(control: AbstractControl): ValidationErrors | null;
18
21
  confirmPasswordValidator(control: AbstractControl): ValidationErrors | null;
19
22
  submit(): void;
20
23
  static ɵfac: i0.ɵɵFactoryDeclaration<ResetPasswordComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<ResetPasswordComponent, "verben-reset-password", never, { "title": { "alias": "title"; "required": false; }; "subTitle": { "alias": "subTitle"; "required": false; }; "buttonCaption": { "alias": "buttonCaption"; "required": false; }; "buttonTextColor": { "alias": "buttonTextColor"; "required": false; }; "buttonBackgroundColor": { "alias": "buttonBackgroundColor"; "required": false; }; "showOldPassword": { "alias": "showOldPassword"; "required": false; }; }, { "onSubmit": "onSubmit"; }, never, never, false, never>;
24
+ static ɵcmp: i0.ɵɵComponentDeclaration<ResetPasswordComponent, "verben-reset-password", never, { "title": { "alias": "title"; "required": false; }; "subTitle": { "alias": "subTitle"; "required": false; }; "buttonCaption": { "alias": "buttonCaption"; "required": false; }; "buttonTextColor": { "alias": "buttonTextColor"; "required": false; }; "buttonBackgroundColor": { "alias": "buttonBackgroundColor"; "required": false; }; "showOldPassword": { "alias": "showOldPassword"; "required": false; }; }, { "onSubmit": "onSubmit"; "onSubmitResponseEnd": "onSubmitResponseEnd"; }, never, never, false, never>;
22
25
  }
@@ -1,12 +1,11 @@
1
1
  import { EventEmitter } from '@angular/core';
2
+ import { AbstractControl, FormBuilder, FormGroup, ValidationErrors } from '@angular/forms';
2
3
  import * as i0 from "@angular/core";
3
4
  export declare class UserRequestComponent {
5
+ private fb;
4
6
  width: string;
5
- fName: string;
6
- lName: string;
7
- email: string;
8
- pwd: string;
9
- cPwd: string;
7
+ headingTitle: string;
8
+ headingClass: string;
10
9
  customClass: string;
11
10
  bgColor: string;
12
11
  boxShadow: string;
@@ -22,13 +21,23 @@ export declare class UserRequestComponent {
22
21
  btnBgColor: string;
23
22
  btnWidth: string;
24
23
  btnPd: string;
24
+ termsLink: string;
25
+ privacyLink: string;
26
+ routerLink: string;
25
27
  formSubmit: EventEmitter<{
26
28
  FirstName: string;
27
29
  LastName: string;
28
30
  MailAddress: string;
29
31
  Password: string;
30
32
  ConfirmPassword: string;
33
+ Terms: boolean;
31
34
  }>;
35
+ googleClick: EventEmitter<any>;
36
+ appleClick: EventEmitter<any>;
37
+ userRequestForm: FormGroup;
38
+ constructor(fb: FormBuilder);
39
+ passwordMatchValidator(control: AbstractControl): ValidationErrors | null;
40
+ get passwordMismatchError(): boolean;
32
41
  get styles(): {
33
42
  'background-color': string;
34
43
  'box-shadow': string;
@@ -36,11 +45,13 @@ export declare class UserRequestComponent {
36
45
  'border-radius': string;
37
46
  color: string;
38
47
  'max-width': string;
39
- margin: string;
40
48
  height: string;
41
49
  padding: string;
42
50
  };
51
+ checkForm(): boolean;
52
+ handleGoogleAuth(): void;
53
+ handleAppleAuth(): void;
43
54
  submitForm(): void;
44
55
  static ɵfac: i0.ɵɵFactoryDeclaration<UserRequestComponent, never>;
45
- static ɵcmp: i0.ɵɵComponentDeclaration<UserRequestComponent, "lib-user-request", never, { "width": { "alias": "width"; "required": false; }; "fName": { "alias": "fName"; "required": false; }; "lName": { "alias": "lName"; "required": false; }; "email": { "alias": "email"; "required": false; }; "pwd": { "alias": "pwd"; "required": false; }; "cPwd": { "alias": "cPwd"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "boxShadow": { "alias": "boxShadow"; "required": false; }; "border": { "alias": "border"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "height": { "alias": "height"; "required": false; }; "pd": { "alias": "pd"; "required": false; }; "text": { "alias": "text"; "required": false; }; "color": { "alias": "color"; "required": false; }; "btnBorder": { "alias": "btnBorder"; "required": false; }; "btnBorderRadius": { "alias": "btnBorderRadius"; "required": false; }; "btnBgColor": { "alias": "btnBgColor"; "required": false; }; "btnWidth": { "alias": "btnWidth"; "required": false; }; "btnPd": { "alias": "btnPd"; "required": false; }; }, { "formSubmit": "formSubmit"; }, never, never, false, never>;
56
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserRequestComponent, "lib-user-request", never, { "width": { "alias": "width"; "required": false; }; "headingTitle": { "alias": "headingTitle"; "required": false; }; "headingClass": { "alias": "headingClass"; "required": false; }; "customClass": { "alias": "customClass"; "required": false; }; "bgColor": { "alias": "bgColor"; "required": false; }; "boxShadow": { "alias": "boxShadow"; "required": false; }; "border": { "alias": "border"; "required": false; }; "borderRadius": { "alias": "borderRadius"; "required": false; }; "textColor": { "alias": "textColor"; "required": false; }; "height": { "alias": "height"; "required": false; }; "pd": { "alias": "pd"; "required": false; }; "text": { "alias": "text"; "required": false; }; "color": { "alias": "color"; "required": false; }; "btnBorder": { "alias": "btnBorder"; "required": false; }; "btnBorderRadius": { "alias": "btnBorderRadius"; "required": false; }; "btnBgColor": { "alias": "btnBgColor"; "required": false; }; "btnWidth": { "alias": "btnWidth"; "required": false; }; "btnPd": { "alias": "btnPd"; "required": false; }; "termsLink": { "alias": "termsLink"; "required": false; }; "privacyLink": { "alias": "privacyLink"; "required": false; }; "routerLink": { "alias": "routerLink"; "required": false; }; }, { "formSubmit": "formSubmit"; "googleClick": "googleClick"; "appleClick": "appleClick"; }, never, never, false, never>;
46
57
  }
@@ -0,0 +1,3 @@
1
+ import { ColumnDefinition } from 'verben-ng-ui';
2
+ import { UserAccessRequest } from '../../models/user-access-request';
3
+ export declare const columns: ColumnDefinition<UserAccessRequest>[];
@@ -0,0 +1 @@
1
+ export declare const baseStyle: any;
@@ -0,0 +1,6 @@
1
+ import { UserAccessRequest } from '../../models/user-access-request';
2
+ export declare const roles: {
3
+ id: string;
4
+ name: string;
5
+ }[];
6
+ export declare const mockData: UserAccessRequest[];
@@ -0,0 +1,12 @@
1
+ import { UserAccessRequestStatus } from '../../../models/user-access-request-status';
2
+ import * as i0 from "@angular/core";
3
+ export declare class UserAccessRequestStatusBadgeComponent {
4
+ status: UserAccessRequestStatus;
5
+ badgeConfig(): {
6
+ bgColor: string;
7
+ textColor: string;
8
+ label: string;
9
+ };
10
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserAccessRequestStatusBadgeComponent, never>;
11
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserAccessRequestStatusBadgeComponent, "lib-user-access-request-status-badge", never, { "status": { "alias": "status"; "required": false; }; }, {}, never, never, false, never>;
12
+ }
@@ -0,0 +1,50 @@
1
+ import { UserAccessRequest } from '../../models/user-access-request';
2
+ import { CardData, CardDataViewComponent, DataViewComponent, IDataFilter } from 'verben-ng-ui';
3
+ import * as i0 from "@angular/core";
4
+ export declare class UserRequestApprovalComponent {
5
+ cardDataView: CardDataViewComponent;
6
+ dataView: DataViewComponent;
7
+ columns: import("verben-ng-ui").ColumnDefinition<UserAccessRequest>[];
8
+ data: UserAccessRequest[];
9
+ styles: any;
10
+ currentData: CardData | null;
11
+ isGridView: boolean;
12
+ selected: CardData | null;
13
+ cardData: CardData[];
14
+ openDetailView(mailAddress: string): void;
15
+ getCardDataByMailAddress(mailAddress: string): CardData | undefined;
16
+ onViewChange(isGridView: boolean): void;
17
+ openFormView(index: number): void;
18
+ handleExport(exportedData: Partial<any>[]): void;
19
+ /**
20
+ *
21
+ * @param data Simple csv export for testing
22
+ */
23
+ private downloadCSV;
24
+ onSelectionChange(selectedRows: UserAccessRequest[]): void;
25
+ /**
26
+ * Copied over from card view doc until I understand usage
27
+ */
28
+ selectedColumnCount: number;
29
+ selectedFilterTableCount: number;
30
+ isOPen: boolean;
31
+ selectedSortCount: number;
32
+ showColumn: boolean;
33
+ showSort: boolean;
34
+ selectedAll: boolean;
35
+ visibleColumns: IDataFilter[];
36
+ filterArray: IDataFilter[];
37
+ sortOptions: IDataFilter[];
38
+ clearData(): void;
39
+ loadMore(): void;
40
+ onColumnChange(event: boolean): void;
41
+ onSortChange(event: boolean): void;
42
+ onColumnsUpdated(updatedColumns: IDataFilter[]): void;
43
+ onSortUpdated(updatedSorts: IDataFilter[]): void;
44
+ onStateChange(event: {
45
+ key: string;
46
+ value: boolean;
47
+ }): void;
48
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserRequestApprovalComponent, never>;
49
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserRequestApprovalComponent, "lib-user-request-approval", never, {}, {}, never, never, false, never>;
50
+ }
@@ -0,0 +1,12 @@
1
+ import * as i0 from "@angular/core";
2
+ import * as i1 from "./user-request-approval.component";
3
+ import * as i2 from "./user-request-form/user-request-form.component";
4
+ import * as i3 from "./user-access-request-status-badge/user-access-request-status-badge.component";
5
+ import * as i4 from "@angular/common";
6
+ import * as i5 from "verben-ng-ui";
7
+ import * as i6 from "@angular/forms";
8
+ export declare class LibUserRequestApprovalModule {
9
+ static ɵfac: i0.ɵɵFactoryDeclaration<LibUserRequestApprovalModule, never>;
10
+ static ɵmod: i0.ɵɵNgModuleDeclaration<LibUserRequestApprovalModule, [typeof i1.UserRequestApprovalComponent, typeof i2.UserRequestFormComponent, typeof i3.UserAccessRequestStatusBadgeComponent], [typeof i4.CommonModule, typeof i5.DataTableModule, typeof i5.CardModule, typeof i5.SvgModule, typeof i5.DataViewModule, typeof i5.CardDataViewModule, typeof i5.SortTableModule, typeof i5.VisibleColumnModule, typeof i5.TableFilterModule, typeof i5.DataExportModule, typeof i6.FormsModule, typeof i6.ReactiveFormsModule, typeof i5.VerbenaInputModule, typeof i5.VerbenaButtonModule, typeof i5.VerbenaBadgeModule, typeof i5.DropDownModule], [typeof i1.UserRequestApprovalComponent]>;
11
+ static ɵinj: i0.ɵɵInjectorDeclaration<LibUserRequestApprovalModule>;
12
+ }
@@ -0,0 +1,20 @@
1
+ import { EventEmitter } from '@angular/core';
2
+ import { FormBuilder, FormGroup } from '@angular/forms';
3
+ import { CardData } from 'verben-ng-ui';
4
+ import * as i0 from "@angular/core";
5
+ export declare class UserRequestFormComponent {
6
+ private fb;
7
+ set currentData(value: CardData | null);
8
+ switchView: EventEmitter<undefined>;
9
+ form: FormGroup;
10
+ roles: {
11
+ id: string;
12
+ name: string;
13
+ }[];
14
+ constructor(fb: FormBuilder);
15
+ ngOnInit(): void;
16
+ onSave(): void;
17
+ onDelete(): void;
18
+ static ɵfac: i0.ɵɵFactoryDeclaration<UserRequestFormComponent, never>;
19
+ static ɵcmp: i0.ɵɵComponentDeclaration<UserRequestFormComponent, "lib-user-request-form", never, { "currentData": { "alias": "currentData"; "required": false; }; }, { "switchView": "switchView"; }, never, never, false, never>;
20
+ }
@@ -0,0 +1,6 @@
1
+ export declare class ErrorResponse {
2
+ ErrorMsg: string;
3
+ StatusCode?: number | undefined;
4
+ FullLog?: any;
5
+ constructor(ErrorMsg: string, StatusCode?: number | undefined, FullLog?: any);
6
+ }
@@ -0,0 +1,10 @@
1
+ import { ObjectState } from './object-state';
2
+ export interface BaseModel {
3
+ id: string | number;
4
+ Id: string;
5
+ CreatedAt: Date;
6
+ UpdatedAt: Date;
7
+ State: ObjectState;
8
+ Tenant: string;
9
+ readonly Error?: string;
10
+ }
@@ -0,0 +1,6 @@
1
+ export declare enum ObjectState {
2
+ New = "New",
3
+ Changed = "Changed",
4
+ Unchanged = "Unchanged",
5
+ Removed = "Removed"
6
+ }
@@ -0,0 +1,5 @@
1
+ export declare enum UserAccessRequestStatus {
2
+ Pending = 0,
3
+ Approved = 1,
4
+ Declined = 2
5
+ }
@@ -0,0 +1,7 @@
1
+ import { User } from './user';
2
+ import { UserAccessRequestStatus } from './user-access-request-status';
3
+ export interface UserAccessRequest extends User {
4
+ Status: UserAccessRequestStatus;
5
+ ActionBy?: string;
6
+ Comment?: string;
7
+ }
@@ -0,0 +1,18 @@
1
+ import { BaseModel } from './base';
2
+ export interface User extends BaseModel {
3
+ Password: string;
4
+ OldPassword?: string;
5
+ PhoneNumber?: string;
6
+ Name: string;
7
+ MailAddress: string;
8
+ Token?: string;
9
+ ExpireOn: Date;
10
+ IsSeeded: boolean;
11
+ RoleID?: string;
12
+ OTP?: string;
13
+ Department?: string;
14
+ Faculty?: string;
15
+ OTPExpireOn: Date;
16
+ Tenants: string[];
17
+ DepartmentName?: string;
18
+ }
@@ -0,0 +1,14 @@
1
+ import { InjectionToken } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare const ENVIRONMENT: InjectionToken<Environment>;
4
+ export interface Environment {
5
+ production: boolean;
6
+ AuthenticationAPI: string;
7
+ }
8
+ export declare class EnvironmentService {
9
+ private env;
10
+ constructor(env: Environment);
11
+ get environment(): Environment;
12
+ static ɵfac: i0.ɵɵFactoryDeclaration<EnvironmentService, never>;
13
+ static ɵprov: i0.ɵɵInjectableDeclaration<EnvironmentService>;
14
+ }
@@ -0,0 +1,17 @@
1
+ import { HttpClient } from '@angular/common/http';
2
+ import { Observable } from 'rxjs';
3
+ import { EnvironmentService } from './environment.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class HttpWebRequestService {
6
+ private http;
7
+ private envSvc;
8
+ isProd: boolean;
9
+ constructor(http: HttpClient, envSvc: EnvironmentService);
10
+ get(url: string, baseUrl?: string): Promise<unknown>;
11
+ post(url: string, body: any, baseUrl?: string): Promise<any>;
12
+ postFile(url: string, formData: FormData, baseUrl?: string): Promise<any>;
13
+ put(url: string, body: any, baseUrl?: string): Observable<Object>;
14
+ delete(url: string, baseUrl?: string): Observable<any>;
15
+ static ɵfac: i0.ɵɵFactoryDeclaration<HttpWebRequestService, never>;
16
+ static ɵprov: i0.ɵɵInjectableDeclaration<HttpWebRequestService>;
17
+ }
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "verben-authentication-ui",
3
- "version": "0.0.2",
3
+ "version": "0.0.4",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.0.0 || ^18.0.0",
6
6
  "@angular/core": "^14.0.0 || ^18.0.0"
7
7
  },
8
8
  "dependencies": {
9
9
  "tslib": "^2.3.0",
10
- "verben-ng-ui": "~0.0.4"
10
+ "verben-ng-ui": "~0.0.8"
11
11
  },
12
12
  "sideEffects": false,
13
13
  "module": "fesm2022/verben-authentication-ui.mjs",
package/public-api.d.ts CHANGED
@@ -15,3 +15,9 @@ export * from './lib/components/two-factor-auth-setup/two-factor-auth-setup.modu
15
15
  export * from './lib/components/two-factor-auth-setup/two-factor-auth-setup.component';
16
16
  export * from './lib/components/mail/mail.module';
17
17
  export * from './lib/components/mail/mail.component';
18
+ export * from './lib/components/forgot-password/forgot-password.component';
19
+ export * from './lib/components/forgot-password/forgot-password.module';
20
+ export * from './lib/components/forgot-password/ForgotPasswordData';
21
+ export * from './lib/services/environment.service';
22
+ export * from './lib/components/user-request-approval/user-request-approval.module';
23
+ export * from './lib/components/user-request-approval/user-request-approval.component';