@aws-amplify/ui-angular 2.3.0 → 2.3.3

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 (49) hide show
  1. package/aws-amplify-ui-angular.d.ts +24 -24
  2. package/aws-amplify-ui-angular.metadata.json +1 -1
  3. package/bundles/aws-amplify-ui-angular-legacy.umd.js.map +1 -1
  4. package/bundles/aws-amplify-ui-angular-legacy.umd.min.js.map +1 -1
  5. package/bundles/aws-amplify-ui-angular.umd.js +139 -347
  6. package/bundles/aws-amplify-ui-angular.umd.js.map +1 -1
  7. package/bundles/aws-amplify-ui-angular.umd.min.js +1 -1
  8. package/bundles/aws-amplify-ui-angular.umd.min.js.map +1 -1
  9. package/esm2015/aws-amplify-ui-angular.js +25 -25
  10. package/esm2015/lib/common/helpers.js +3 -3
  11. package/esm2015/lib/common/types/auth-types.js +1 -1
  12. package/esm2015/lib/components/authenticator/authenticator.module.js +3 -3
  13. package/esm2015/lib/components/authenticator/components/authenticator/authenticator.component.js +27 -9
  14. package/esm2015/lib/components/authenticator/components/base-form-fields/base-form-fields.component.js +54 -0
  15. package/esm2015/lib/components/authenticator/components/confirm-reset-password/amplify-confirm-reset-password.component.js +3 -15
  16. package/esm2015/lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component.js +3 -13
  17. package/esm2015/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.js +3 -15
  18. package/esm2015/lib/components/authenticator/components/confirm-verify-user/amplify-confirm-verify-user.component.js +3 -15
  19. package/esm2015/lib/components/authenticator/components/force-new-password/force-new-password-form-fields/force-new-password-form-fields.component.js +2 -22
  20. package/esm2015/lib/components/authenticator/components/force-new-password/force-new-password.component.js +3 -15
  21. package/esm2015/lib/components/authenticator/components/form-field/form-field.component.js +12 -67
  22. package/esm2015/lib/components/authenticator/components/index.js +2 -2
  23. package/esm2015/lib/components/authenticator/components/reset-password/reset-password.component.js +3 -19
  24. package/esm2015/lib/components/authenticator/components/setup-totp/setup-totp.component.js +3 -13
  25. package/esm2015/lib/components/authenticator/components/sign-in/sign-in.component.js +3 -21
  26. package/esm2015/lib/components/authenticator/components/sign-up/sign-up-form-fields/sign-up-form-fields.component.js +2 -50
  27. package/esm2015/lib/services/authenticator.service.js +3 -13
  28. package/fesm2015/aws-amplify-ui-angular-legacy.js.map +1 -1
  29. package/fesm2015/aws-amplify-ui-angular.js +103 -303
  30. package/fesm2015/aws-amplify-ui-angular.js.map +1 -1
  31. package/lib/common/types/auth-types.d.ts +2 -2
  32. package/lib/components/authenticator/components/authenticator/authenticator.component.d.ts +5 -2
  33. package/lib/components/authenticator/components/base-form-fields/base-form-fields.component.d.ts +15 -0
  34. package/lib/components/authenticator/components/confirm-reset-password/amplify-confirm-reset-password.component.d.ts +3 -7
  35. package/lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component.d.ts +2 -4
  36. package/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.d.ts +3 -7
  37. package/lib/components/authenticator/components/confirm-verify-user/amplify-confirm-verify-user.component.d.ts +3 -7
  38. package/lib/components/authenticator/components/force-new-password/force-new-password-form-fields/force-new-password-form-fields.component.d.ts +1 -7
  39. package/lib/components/authenticator/components/force-new-password/force-new-password.component.d.ts +1 -7
  40. package/lib/components/authenticator/components/form-field/form-field.component.d.ts +5 -29
  41. package/lib/components/authenticator/components/index.d.ts +1 -1
  42. package/lib/components/authenticator/components/reset-password/reset-password.component.d.ts +3 -8
  43. package/lib/components/authenticator/components/setup-totp/setup-totp.component.d.ts +3 -4
  44. package/lib/components/authenticator/components/sign-in/sign-in.component.d.ts +3 -10
  45. package/lib/components/authenticator/components/sign-up/sign-up-form-fields/sign-up-form-fields.component.d.ts +1 -19
  46. package/lib/services/authenticator.service.d.ts +2 -2
  47. package/package.json +8 -3
  48. package/esm2015/lib/components/authenticator/components/user-name-alias/user-name-alias.component.js +0 -42
  49. package/lib/components/authenticator/components/user-name-alias/user-name-alias.component.d.ts +0 -21
@@ -1,16 +1,12 @@
1
1
  /// <reference types="amazon-cognito-identity-js" />
2
- import { OnInit } from '@angular/core';
3
2
  import { AuthenticatorService } from '../../../../services/authenticator.service';
4
- import { FormField } from '@aws-amplify/ui';
5
- export declare class ForceNewPasswordComponent implements OnInit {
3
+ export declare class ForceNewPasswordComponent {
6
4
  authenticator: AuthenticatorService;
7
5
  dataAttr: string;
8
6
  headerText: string;
9
7
  changePasswordText: string;
10
8
  backToSignInText: string;
11
- formOverrides: FormField;
12
9
  constructor(authenticator: AuthenticatorService);
13
- ngOnInit(): void;
14
10
  get context(): {
15
11
  $implicit: {
16
12
  resendCode: (data?: Record<string | number | symbol, any>) => void;
@@ -53,8 +49,6 @@ export declare class ForceNewPasswordComponent implements OnInit {
53
49
  };
54
50
  codeDeliveryDetails: import("amazon-cognito-identity-js").CodeDeliveryDetails;
55
51
  };
56
- setFormFields(): void;
57
- grabField(name: string, field: string, defaultV: any): any;
58
52
  onInput(event: Event): void;
59
53
  onSubmit(event: Event): void;
60
54
  }
@@ -1,39 +1,15 @@
1
- import { OnInit } from '@angular/core';
2
- import { AuthInputAttributes } from '@aws-amplify/ui';
1
+ import { FormFieldOptions } from '@aws-amplify/ui';
3
2
  import { AuthenticatorService } from '../../../../services/authenticator.service';
4
- /**
5
- * Input interface opinionated for authenticator usage.
6
- *
7
- * TODO: Separate this component out to two parts -- 1) amplify-auth-input that
8
- * contains authenticator opinionated logic and 2) amplify-text-field primitive
9
- * that does not make any auth-related inference.
10
- */
11
- export declare class FormFieldComponent implements OnInit {
3
+ export declare class FormFieldComponent {
12
4
  private authenticator;
13
5
  name: string;
14
- type: string;
15
- required: boolean;
16
- placeholder: string;
17
- label: string;
18
- initialValue: string;
19
- disabled: boolean;
20
- autocomplete: string;
21
- labelHidden: boolean;
22
- defaultCountryCode: string;
23
- dialCodeList: Array<string>;
6
+ formField: FormFieldOptions;
24
7
  defaultCountryCodeValue: string;
25
8
  countryDialCodesValue: string[];
26
- textFieldId: string;
27
- selectFieldId: string;
28
9
  constructor(authenticator: AuthenticatorService);
29
- ngOnInit(): void;
30
- get attributeMap(): AuthInputAttributes;
31
- get error(): string;
10
+ get errors(): string[];
32
11
  onBlur($event: Event): void;
33
- inferLabel(): string;
34
- inferPlaceholder(): string;
35
- inferType(): string;
36
- inferAutocomplete(): string;
37
12
  isPasswordField(): boolean;
38
13
  isPhoneField(): boolean;
14
+ translate(phrase: string): string;
39
15
  }
@@ -12,6 +12,6 @@ export { SetupTotpComponent } from './setup-totp/setup-totp.component';
12
12
  export { SignInComponent } from './sign-in/sign-in.component';
13
13
  export { SignUpComponent } from './sign-up/sign-up.component';
14
14
  export { SignUpFormFieldsComponent } from './sign-up/sign-up-form-fields/sign-up-form-fields.component';
15
- export { UserNameAliasComponent } from './user-name-alias/user-name-alias.component';
16
15
  export { ForceNewPasswordFormFieldsComponent } from './force-new-password/force-new-password-form-fields/force-new-password-form-fields.component';
17
16
  export { VerifyUserComponent } from './verify-user/verify-user.component';
17
+ export { BaseFormFieldsComponent } from './base-form-fields/base-form-fields.component';
@@ -1,19 +1,14 @@
1
1
  /// <reference types="amazon-cognito-identity-js" />
2
- import { OnInit } from '@angular/core';
3
2
  import { AuthenticatorService } from '../../../../services/authenticator.service';
4
- import { FormField } from '@aws-amplify/ui';
5
- export declare class ResetPasswordComponent implements OnInit {
3
+ import { FormFieldsArray } from '@aws-amplify/ui';
4
+ export declare class ResetPasswordComponent {
6
5
  authenticator: AuthenticatorService;
7
6
  dataAttr: string;
8
7
  headerText: string;
9
8
  sendCodeText: string;
10
9
  backToSignInText: string;
11
- labelText: string;
12
- formOverrides: FormField;
10
+ sortedFormFields: FormFieldsArray;
13
11
  constructor(authenticator: AuthenticatorService);
14
- ngOnInit(): void;
15
- setFormFields(): void;
16
- grabField(name: string, field: string, defaultV: any): any;
17
12
  get context(): {
18
13
  $implicit: {
19
14
  resendCode: (data?: Record<string | number | symbol, any>) => void;
@@ -1,6 +1,6 @@
1
1
  /// <reference types="amazon-cognito-identity-js" />
2
2
  import { OnInit } from '@angular/core';
3
- import { FormField } from '@aws-amplify/ui';
3
+ import { FormFields, FormFieldsArray } from '@aws-amplify/ui';
4
4
  import { AuthenticatorService } from '../../../../services/authenticator.service';
5
5
  export declare class SetupTotpComponent implements OnInit {
6
6
  authenticator: AuthenticatorService;
@@ -11,11 +11,10 @@ export declare class SetupTotpComponent implements OnInit {
11
11
  copyTextLabel: string;
12
12
  backToSignInText: string;
13
13
  confirmText: string;
14
- formOverrides: FormField;
14
+ sortedFormFields: FormFieldsArray;
15
+ formOverrides: FormFields;
15
16
  constructor(authenticator: AuthenticatorService);
16
17
  ngOnInit(): void;
17
- setFormFields(): void;
18
- grabField(name: string, field: string, defaultV: any): any;
19
18
  get context(): {
20
19
  $implicit: {
21
20
  resendCode: (data?: Record<string | number | symbol, any>) => void;
@@ -1,20 +1,13 @@
1
1
  /// <reference types="amazon-cognito-identity-js" />
2
- import { OnInit } from '@angular/core';
3
2
  import { AuthenticatorService } from '../../../../services/authenticator.service';
4
- import { FormFieldOptions, FormField } from '@aws-amplify/ui';
5
- export declare class SignInComponent implements OnInit {
3
+ import { FormFieldsArray } from '@aws-amplify/ui';
4
+ export declare class SignInComponent {
6
5
  authenticator: AuthenticatorService;
7
6
  dataAttr: string;
8
7
  forgotPasswordText: string;
9
8
  signInButtonText: string;
10
- userOverrides: FormFieldOptions;
11
- passwordOR: FormFieldOptions;
12
- formOverrides: FormField;
9
+ sortedFormFields: FormFieldsArray;
13
10
  constructor(authenticator: AuthenticatorService);
14
- ngOnInit(): void;
15
- setFormFields(): void;
16
- labelHidden(name: string, defaultV?: boolean): boolean;
17
- required(name: string, defaultV?: boolean): boolean;
18
11
  get context(): {
19
12
  $implicit: {
20
13
  resendCode: (data?: Record<string | number | symbol, any>) => void;
@@ -1,20 +1,2 @@
1
- import { OnInit } from '@angular/core';
2
- import { AuthenticatorService } from '../../../../../services/authenticator.service';
3
- import { FormField, FormFieldOptions, LoginMechanism, SignUpAttribute, CommonFields, translate } from '@aws-amplify/ui';
4
- export declare class SignUpFormFieldsComponent implements OnInit {
5
- private authenticator;
6
- primaryAlias: string;
7
- secondaryAliases: string[];
8
- fieldNames: Array<LoginMechanism | SignUpAttribute>;
9
- fieldNamesCombined: Array<SignUpAttribute | CommonFields>;
10
- loginMechanism: LoginMechanism;
11
- order: (string | number)[];
12
- userOverrides: FormFieldOptions;
13
- formOverrides: FormField;
14
- translate: typeof translate;
15
- constructor(authenticator: AuthenticatorService);
16
- ngOnInit(): void;
17
- get errors(): string | string[];
18
- setFormFields(): void;
19
- grabField(name: string, field: string, defaultV: any): any;
1
+ export declare class SignUpFormFieldsComponent {
20
2
  }
@@ -1,6 +1,6 @@
1
1
  /// <reference types="amazon-cognito-identity-js" />
2
2
  import { OnDestroy } from '@angular/core';
3
- import { AuthContext, AuthenticatorMachineOptions, AuthEvent, AuthInterpreter, AuthMachineState } from '@aws-amplify/ui';
3
+ import { AuthContext, AuthEvent, AuthInterpreter, AuthMachineState } from '@aws-amplify/ui';
4
4
  import { Event, Subscription } from 'xstate';
5
5
  import { AuthSubscriptionCallback } from '../common';
6
6
  /**
@@ -13,7 +13,7 @@ export declare class AuthenticatorService implements OnDestroy {
13
13
  private _machineSubscription;
14
14
  private _hubSubscription;
15
15
  private _facade;
16
- startMachine({ initialState, loginMechanisms, services, signUpAttributes, socialProviders, formFields, }: AuthenticatorMachineOptions): void;
16
+ constructor();
17
17
  ngOnDestroy(): void;
18
18
  /**
19
19
  * Context facades
package/package.json CHANGED
@@ -1,18 +1,23 @@
1
1
  {
2
2
  "name": "@aws-amplify/ui-angular",
3
- "version": "2.3.0",
3
+ "version": "2.3.3",
4
4
  "license": "Apache-2.0",
5
+ "repository": {
6
+ "type": "git",
7
+ "url": "https://github.com/aws-amplify/amplify-ui",
8
+ "directory": "packages/angular/projects/ui-angular"
9
+ },
5
10
  "peerDependencies": {
6
11
  "aws-amplify": "3.x.x || 4.x.x"
7
12
  },
8
13
  "dependencies": {
9
14
  "@aws-amplify/ui-components": "^1.7.0",
10
- "@aws-amplify/ui": "3.3.0",
15
+ "@aws-amplify/ui": "3.4.0",
11
16
  "@stencil/core": "2.8.0",
12
17
  "nanoid": "3.1.31",
13
18
  "qrcode": "1.5.0",
14
19
  "tslib": "2.3.1",
15
- "xstate": "4.28.0"
20
+ "xstate": "^4.30.6"
16
21
  },
17
22
  "publishConfig": {
18
23
  "directory": "../../dist/ui-angular"
@@ -1,42 +0,0 @@
1
- import { Component, Input } from '@angular/core';
2
- import { AuthenticatorService } from '../../../../services/authenticator.service';
3
- import { getAliasInfoFromContext } from '@aws-amplify/ui';
4
- export class UserNameAliasComponent {
5
- constructor(authenticator) {
6
- this.authenticator = authenticator;
7
- this.name = 'username';
8
- this.disabled = false;
9
- this.initialValue = '';
10
- this.required = true;
11
- }
12
- ngOnInit() {
13
- var _a, _b, _c;
14
- const context = this.authenticator.context;
15
- const { label: lbl, type } = getAliasInfoFromContext(context);
16
- this.labelValue = (_a = this.label) !== null && _a !== void 0 ? _a : lbl;
17
- this.type = type;
18
- this.placeholderValue = (_b = this.placeholder) !== null && _b !== void 0 ? _b : lbl;
19
- this.requiredValue = (_c = this.required) !== null && _c !== void 0 ? _c : true;
20
- }
21
- }
22
- UserNameAliasComponent.decorators = [
23
- { type: Component, args: [{
24
- selector: 'amplify-user-name-alias',
25
- template: "<amplify-form-field\n data-amplify-usernamealias\n [name]=\"name\"\n [labelHidden]=\"labelHidden\"\n [label]=\"labelValue\"\n [placeholder]=\"placeholderValue\"\n [required]=\"requiredValue\"\n [defaultCountryCode]=\"dialCode\"\n [dialCodeList]=\"dialCodeList\"\n [type]=\"type\"\n [initialValue]=\"initialValue\"\n [disabled]=\"disabled\"\n autocomplete=\"username\"\n>\n</amplify-form-field>\n"
26
- },] }
27
- ];
28
- UserNameAliasComponent.ctorParameters = () => [
29
- { type: AuthenticatorService }
30
- ];
31
- UserNameAliasComponent.propDecorators = {
32
- name: [{ type: Input }],
33
- disabled: [{ type: Input }],
34
- initialValue: [{ type: Input }],
35
- required: [{ type: Input }],
36
- labelHidden: [{ type: Input }],
37
- label: [{ type: Input }],
38
- placeholder: [{ type: Input }],
39
- dialCode: [{ type: Input }],
40
- dialCodeList: [{ type: Input }]
41
- };
42
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidXNlci1uYW1lLWFsaWFzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3VpLWFuZ3VsYXIvc3JjL2xpYi9jb21wb25lbnRzL2F1dGhlbnRpY2F0b3IvY29tcG9uZW50cy91c2VyLW5hbWUtYWxpYXMvdXNlci1uYW1lLWFsaWFzLmNvbXBvbmVudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQUUsU0FBUyxFQUFFLEtBQUssRUFBVSxNQUFNLGVBQWUsQ0FBQztBQUN6RCxPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSw0Q0FBNEMsQ0FBQztBQUNsRixPQUFPLEVBQUUsdUJBQXVCLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQU0xRCxNQUFNLE9BQU8sc0JBQXNCO0lBaUJqQyxZQUFvQixhQUFtQztRQUFuQyxrQkFBYSxHQUFiLGFBQWEsQ0FBc0I7UUFoQjlDLFNBQUksR0FBVyxVQUFVLENBQUM7UUFDMUIsYUFBUSxHQUFZLEtBQUssQ0FBQztRQUMxQixpQkFBWSxHQUFXLEVBQUUsQ0FBQztRQUMxQixhQUFRLEdBQVksSUFBSSxDQUFDO0lBYXdCLENBQUM7SUFFM0QsUUFBUTs7UUFDTixNQUFNLE9BQU8sR0FBRyxJQUFJLENBQUMsYUFBYSxDQUFDLE9BQU8sQ0FBQztRQUMzQyxNQUFNLEVBQUUsS0FBSyxFQUFFLEdBQUcsRUFBRSxJQUFJLEVBQUUsR0FBRyx1QkFBdUIsQ0FBQyxPQUFPLENBQUMsQ0FBQztRQUU5RCxJQUFJLENBQUMsVUFBVSxTQUFHLElBQUksQ0FBQyxLQUFLLG1DQUFJLEdBQUcsQ0FBQztRQUNwQyxJQUFJLENBQUMsSUFBSSxHQUFHLElBQUksQ0FBQztRQUNqQixJQUFJLENBQUMsZ0JBQWdCLFNBQUcsSUFBSSxDQUFDLFdBQVcsbUNBQUksR0FBRyxDQUFDO1FBQ2hELElBQUksQ0FBQyxhQUFhLFNBQUcsSUFBSSxDQUFDLFFBQVEsbUNBQUksSUFBSSxDQUFDO0lBQzdDLENBQUM7OztZQS9CRixTQUFTLFNBQUM7Z0JBQ1QsUUFBUSxFQUFFLHlCQUF5QjtnQkFDbkMsbWFBQStDO2FBQ2hEOzs7WUFOUSxvQkFBb0I7OzttQkFRMUIsS0FBSzt1QkFDTCxLQUFLOzJCQUNMLEtBQUs7dUJBQ0wsS0FBSzswQkFDTCxLQUFLO29CQUNMLEtBQUs7MEJBQ0wsS0FBSzt1QkFDTCxLQUFLOzJCQUNMLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnQsIElucHV0LCBPbkluaXQgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7IEF1dGhlbnRpY2F0b3JTZXJ2aWNlIH0gZnJvbSAnLi4vLi4vLi4vLi4vc2VydmljZXMvYXV0aGVudGljYXRvci5zZXJ2aWNlJztcbmltcG9ydCB7IGdldEFsaWFzSW5mb0Zyb21Db250ZXh0IH0gZnJvbSAnQGF3cy1hbXBsaWZ5L3VpJztcblxuQENvbXBvbmVudCh7XG4gIHNlbGVjdG9yOiAnYW1wbGlmeS11c2VyLW5hbWUtYWxpYXMnLFxuICB0ZW1wbGF0ZVVybDogJy4vdXNlci1uYW1lLWFsaWFzLmNvbXBvbmVudC5odG1sJyxcbn0pXG5leHBvcnQgY2xhc3MgVXNlck5hbWVBbGlhc0NvbXBvbmVudCBpbXBsZW1lbnRzIE9uSW5pdCB7XG4gIEBJbnB1dCgpIG5hbWU6IHN0cmluZyA9ICd1c2VybmFtZSc7XG4gIEBJbnB1dCgpIGRpc2FibGVkOiBib29sZWFuID0gZmFsc2U7XG4gIEBJbnB1dCgpIGluaXRpYWxWYWx1ZTogc3RyaW5nID0gJyc7XG4gIEBJbnB1dCgpIHJlcXVpcmVkOiBib29sZWFuID0gdHJ1ZTtcbiAgQElucHV0KCkgbGFiZWxIaWRkZW46IGJvb2xlYW47XG4gIEBJbnB1dCgpIGxhYmVsOiBzdHJpbmc7XG4gIEBJbnB1dCgpIHBsYWNlaG9sZGVyOiBzdHJpbmc7XG4gIEBJbnB1dCgpIGRpYWxDb2RlOiBzdHJpbmc7XG4gIEBJbnB1dCgpIGRpYWxDb2RlTGlzdDogQXJyYXk8c3RyaW5nPjtcblxuICBwdWJsaWMgbGFiZWxWYWx1ZTogc3RyaW5nO1xuICBwdWJsaWMgdHlwZTogc3RyaW5nO1xuICBwdWJsaWMgZXJyb3I6IHN0cmluZztcbiAgcHVibGljIHBsYWNlaG9sZGVyVmFsdWU6IHN0cmluZztcbiAgcHVibGljIHJlcXVpcmVkVmFsdWU6IGJvb2xlYW47XG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSBhdXRoZW50aWNhdG9yOiBBdXRoZW50aWNhdG9yU2VydmljZSkge31cblxuICBuZ09uSW5pdCgpOiB2b2lkIHtcbiAgICBjb25zdCBjb250ZXh0ID0gdGhpcy5hdXRoZW50aWNhdG9yLmNvbnRleHQ7XG4gICAgY29uc3QgeyBsYWJlbDogbGJsLCB0eXBlIH0gPSBnZXRBbGlhc0luZm9Gcm9tQ29udGV4dChjb250ZXh0KTtcblxuICAgIHRoaXMubGFiZWxWYWx1ZSA9IHRoaXMubGFiZWwgPz8gbGJsO1xuICAgIHRoaXMudHlwZSA9IHR5cGU7XG4gICAgdGhpcy5wbGFjZWhvbGRlclZhbHVlID0gdGhpcy5wbGFjZWhvbGRlciA/PyBsYmw7XG4gICAgdGhpcy5yZXF1aXJlZFZhbHVlID0gdGhpcy5yZXF1aXJlZCA/PyB0cnVlO1xuICB9XG59XG4iXX0=
@@ -1,21 +0,0 @@
1
- import { OnInit } from '@angular/core';
2
- import { AuthenticatorService } from '../../../../services/authenticator.service';
3
- export declare class UserNameAliasComponent implements OnInit {
4
- private authenticator;
5
- name: string;
6
- disabled: boolean;
7
- initialValue: string;
8
- required: boolean;
9
- labelHidden: boolean;
10
- label: string;
11
- placeholder: string;
12
- dialCode: string;
13
- dialCodeList: Array<string>;
14
- labelValue: string;
15
- type: string;
16
- error: string;
17
- placeholderValue: string;
18
- requiredValue: boolean;
19
- constructor(authenticator: AuthenticatorService);
20
- ngOnInit(): void;
21
- }