@aws-amplify/ui-angular 2.3.0 → 2.3.1
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/aws-amplify-ui-angular.d.ts +24 -24
- package/aws-amplify-ui-angular.metadata.json +1 -1
- package/bundles/aws-amplify-ui-angular.umd.js +110 -324
- package/bundles/aws-amplify-ui-angular.umd.js.map +1 -1
- package/bundles/aws-amplify-ui-angular.umd.min.js +1 -1
- package/bundles/aws-amplify-ui-angular.umd.min.js.map +1 -1
- package/esm2015/aws-amplify-ui-angular.js +25 -25
- package/esm2015/lib/common/helpers.js +3 -3
- package/esm2015/lib/common/types/auth-types.js +1 -1
- package/esm2015/lib/components/authenticator/authenticator.module.js +3 -3
- package/esm2015/lib/components/authenticator/components/base-form-fields/base-form-fields.component.js +54 -0
- package/esm2015/lib/components/authenticator/components/confirm-reset-password/amplify-confirm-reset-password.component.js +3 -15
- package/esm2015/lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component.js +3 -13
- package/esm2015/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.js +3 -15
- package/esm2015/lib/components/authenticator/components/confirm-verify-user/amplify-confirm-verify-user.component.js +3 -15
- package/esm2015/lib/components/authenticator/components/force-new-password/force-new-password-form-fields/force-new-password-form-fields.component.js +2 -22
- package/esm2015/lib/components/authenticator/components/force-new-password/force-new-password.component.js +3 -15
- package/esm2015/lib/components/authenticator/components/form-field/form-field.component.js +12 -67
- package/esm2015/lib/components/authenticator/components/index.js +2 -2
- package/esm2015/lib/components/authenticator/components/reset-password/reset-password.component.js +3 -19
- package/esm2015/lib/components/authenticator/components/setup-totp/setup-totp.component.js +3 -13
- package/esm2015/lib/components/authenticator/components/sign-in/sign-in.component.js +3 -21
- package/esm2015/lib/components/authenticator/components/sign-up/sign-up-form-fields/sign-up-form-fields.component.js +2 -50
- package/fesm2015/aws-amplify-ui-angular.js +75 -283
- package/fesm2015/aws-amplify-ui-angular.js.map +1 -1
- package/lib/common/types/auth-types.d.ts +2 -2
- package/lib/components/authenticator/components/base-form-fields/base-form-fields.component.d.ts +15 -0
- package/lib/components/authenticator/components/confirm-reset-password/amplify-confirm-reset-password.component.d.ts +3 -7
- package/lib/components/authenticator/components/confirm-sign-in/confirm-sign-in.component.d.ts +2 -4
- package/lib/components/authenticator/components/confirm-sign-up/confirm-sign-up.component.d.ts +3 -7
- package/lib/components/authenticator/components/confirm-verify-user/amplify-confirm-verify-user.component.d.ts +3 -7
- package/lib/components/authenticator/components/force-new-password/force-new-password-form-fields/force-new-password-form-fields.component.d.ts +1 -7
- package/lib/components/authenticator/components/force-new-password/force-new-password.component.d.ts +1 -7
- package/lib/components/authenticator/components/form-field/form-field.component.d.ts +5 -29
- package/lib/components/authenticator/components/index.d.ts +1 -1
- package/lib/components/authenticator/components/reset-password/reset-password.component.d.ts +3 -8
- package/lib/components/authenticator/components/setup-totp/setup-totp.component.d.ts +3 -4
- package/lib/components/authenticator/components/sign-in/sign-in.component.d.ts +3 -10
- package/lib/components/authenticator/components/sign-up/sign-up-form-fields/sign-up-form-fields.component.d.ts +1 -19
- package/package.json +7 -2
- package/esm2015/lib/components/authenticator/components/user-name-alias/user-name-alias.component.js +0 -42
- package/lib/components/authenticator/components/user-name-alias/user-name-alias.component.d.ts +0 -21
|
@@ -1,39 +1,15 @@
|
|
|
1
|
-
import {
|
|
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
|
-
|
|
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
|
-
|
|
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';
|
package/lib/components/authenticator/components/reset-password/reset-password.component.d.ts
CHANGED
|
@@ -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 {
|
|
5
|
-
export declare class ResetPasswordComponent
|
|
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
|
-
|
|
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 {
|
|
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
|
-
|
|
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 {
|
|
5
|
-
export declare class SignInComponent
|
|
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
|
-
|
|
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
|
-
|
|
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
|
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-amplify/ui-angular",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.1",
|
|
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.
|
|
15
|
+
"@aws-amplify/ui": "3.3.1",
|
|
11
16
|
"@stencil/core": "2.8.0",
|
|
12
17
|
"nanoid": "3.1.31",
|
|
13
18
|
"qrcode": "1.5.0",
|
package/esm2015/lib/components/authenticator/components/user-name-alias/user-name-alias.component.js
DELETED
|
@@ -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=
|
package/lib/components/authenticator/components/user-name-alias/user-name-alias.component.d.ts
DELETED
|
@@ -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
|
-
}
|