verben-authentication-ui 0.2.7 → 0.2.9

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.
@@ -1,4 +1,4 @@
1
- import { EventEmitter } from '@angular/core';
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { FormBuilder, FormGroup } from '@angular/forms';
3
3
  import { LoginData } from '../../models/log-in';
4
4
  import { HttpWebRequestService } from '../../services/http-web-request.service';
@@ -7,7 +7,7 @@ import { ErrorResponse } from '../../models/ErrorResponse';
7
7
  import { ResponseKeyValue } from '../../models/ResponseKeyValue';
8
8
  import { EnvironmentService } from '../../services/environment.service';
9
9
  import * as i0 from "@angular/core";
10
- export declare class SignInComponent {
10
+ export declare class SignInComponent implements OnInit {
11
11
  private fb;
12
12
  private server;
13
13
  private utilService;
@@ -48,10 +48,14 @@ export declare class SignInComponent {
48
48
  onSubmitEnd: EventEmitter<ResponseKeyValue | ErrorResponse>;
49
49
  googleClick: EventEmitter<any>;
50
50
  appleClick: EventEmitter<any>;
51
+ tenantDetails: any | null;
52
+ AuthMechanisms: {}[] | null;
51
53
  loginForm: FormGroup;
52
54
  apiKey: string;
53
55
  secret: string;
54
56
  constructor(fb: FormBuilder, server: HttpWebRequestService, utilService: UtilService, envSvc: EnvironmentService);
57
+ ngOnInit(): void;
58
+ getTenantConfig(): Promise<void>;
55
59
  checkForm(): boolean;
56
60
  submit(): Promise<void>;
57
61
  handleGoogleAuth(): void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "verben-authentication-ui",
3
- "version": "0.2.7",
3
+ "version": "0.2.9",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^14.0.0 || ^18.0.0",
6
6
  "@angular/core": "^14.0.0 || ^18.0.0",