@testgorilla/tgo-ui 0.0.23 → 0.0.24
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/components/create-account/create-account.component.d.ts +9 -2
- package/components/create-account/create-account.constant.d.ts +10 -0
- package/components/create-account/create-account.model.d.ts +10 -0
- package/components/create-password/create-password.component.d.ts +9 -2
- package/components/create-password/create-password.constant.d.ts +5 -0
- package/components/create-password/create-password.model.d.ts +5 -0
- package/components/forgot-password/forgot-password.component.d.ts +9 -2
- package/components/forgot-password/forgot-password.constant.d.ts +6 -0
- package/components/forgot-password/forgot-password.model.d.ts +6 -0
- package/components/label/label.component.d.ts +39 -0
- package/components/label/label.component.module.d.ts +8 -0
- package/components/label/label.model.d.ts +16 -0
- package/components/login/login.component.d.ts +8 -2
- package/components/login/login.constant.d.ts +9 -0
- package/components/login/login.model.d.ts +9 -0
- package/components/navigation/navigation.component.d.ts +4 -4
- package/components/navigation/navigation.component.module.d.ts +2 -2
- package/components/table/directives/dynamic-component.directive.d.ts +13 -0
- package/{shared/pipes/dataPropertyGetter.d.ts → components/table/pipes/data-property-getter.d.ts} +0 -0
- package/components/table/table.component.d.ts +5 -11
- package/components/table/table.component.module.d.ts +6 -6
- package/components/table/table.model.d.ts +17 -8
- package/esm2020/components/create-account/create-account.component.mjs +19 -3
- package/esm2020/components/create-account/create-account.constant.mjs +11 -0
- package/esm2020/components/create-account/create-account.model.mjs +1 -1
- package/esm2020/components/create-password/create-password.component.mjs +19 -3
- package/esm2020/components/create-password/create-password.constant.mjs +6 -0
- package/esm2020/components/create-password/create-password.model.mjs +1 -1
- package/esm2020/components/forgot-password/forgot-password.component.mjs +13 -3
- package/esm2020/components/forgot-password/forgot-password.constant.mjs +7 -0
- package/esm2020/components/forgot-password/forgot-password.model.mjs +1 -1
- package/esm2020/components/label/label.component.mjs +55 -0
- package/esm2020/components/label/label.component.module.mjs +19 -0
- package/esm2020/components/label/label.model.mjs +9 -0
- package/esm2020/components/login/login.component.mjs +18 -3
- package/esm2020/components/login/login.constant.mjs +10 -0
- package/esm2020/components/login/login.model.mjs +1 -1
- package/esm2020/components/navigation/navigation.component.mjs +5 -5
- package/esm2020/components/navigation/navigation.component.module.mjs +5 -5
- package/esm2020/components/table/directives/dynamic-component.directive.mjs +39 -0
- package/esm2020/components/table/pipes/data-property-getter.mjs +32 -0
- package/esm2020/components/table/table.component.mjs +9 -19
- package/esm2020/components/table/table.component.module.mjs +7 -7
- package/esm2020/components/table/table.model.mjs +13 -14
- package/esm2020/public-api.mjs +10 -7
- package/fesm2015/testgorilla-tgo-ui.mjs +247 -114
- package/fesm2015/testgorilla-tgo-ui.mjs.map +1 -1
- package/fesm2020/testgorilla-tgo-ui.mjs +246 -114
- package/fesm2020/testgorilla-tgo-ui.mjs.map +1 -1
- package/package.json +15 -15
- package/public-api.d.ts +8 -4
- package/components/status/status.component.d.ts +0 -27
- package/components/status/status.component.module.d.ts +0 -9
- package/components/status/status.model.d.ts +0 -8
- package/esm2020/components/status/status.component.mjs +0 -44
- package/esm2020/components/status/status.component.module.mjs +0 -20
- package/esm2020/components/status/status.model.mjs +0 -2
- package/esm2020/shared/pipes/dataPropertyGetter.mjs +0 -32
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { FormBuilder } from '@angular/forms';
|
|
3
|
-
import { CreateAccountCredentials } from './create-account.model';
|
|
3
|
+
import { CreateAccountCredentials, Ii18nCreateAccount } from './create-account.model';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class CreateAccountComponent implements OnInit {
|
|
6
6
|
private fb;
|
|
@@ -21,6 +21,13 @@ export declare class CreateAccountComponent implements OnInit {
|
|
|
21
21
|
* @memberof ButtonComponent
|
|
22
22
|
*/
|
|
23
23
|
loading: boolean;
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @description Object with the translations for the component.
|
|
27
|
+
* @type {Ii18nCreateAccount}
|
|
28
|
+
* @memberof CreateAccountComponent
|
|
29
|
+
*/
|
|
30
|
+
i18n: Ii18nCreateAccount;
|
|
24
31
|
/**
|
|
25
32
|
* @ignore
|
|
26
33
|
*/
|
|
@@ -38,5 +45,5 @@ export declare class CreateAccountComponent implements OnInit {
|
|
|
38
45
|
login(): void;
|
|
39
46
|
checkErrors(field: string): void;
|
|
40
47
|
static ɵfac: i0.ɵɵFactoryDeclaration<CreateAccountComponent, never>;
|
|
41
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CreateAccountComponent, "ui-create-account", never, { "formErrors": "formErrors"; "loading": "loading"; }, { "submitEvent": "submitEvent"; "loginEvent": "loginEvent"; }, never, never>;
|
|
48
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CreateAccountComponent, "ui-create-account", never, { "formErrors": "formErrors"; "loading": "loading"; "i18n": "i18n"; }, { "submitEvent": "submitEvent"; "loginEvent": "loginEvent"; }, never, never>;
|
|
42
49
|
}
|
|
@@ -2,3 +2,13 @@ export interface CreateAccountCredentials {
|
|
|
2
2
|
username: string;
|
|
3
3
|
password: string;
|
|
4
4
|
}
|
|
5
|
+
export interface Ii18nCreateAccount {
|
|
6
|
+
title: string;
|
|
7
|
+
subtitle: string;
|
|
8
|
+
email_placeholder: string;
|
|
9
|
+
password_placeholder: string;
|
|
10
|
+
terms_conditions: string;
|
|
11
|
+
button_label: string;
|
|
12
|
+
have_career_passport: string;
|
|
13
|
+
login: string;
|
|
14
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { FormBuilder } from '@angular/forms';
|
|
3
|
-
import { CreatePasswordCredentials } from './create-password.model';
|
|
3
|
+
import { CreatePasswordCredentials, Ii18nCreatePassword } from './create-password.model';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class CreatePasswordComponent implements OnInit {
|
|
6
6
|
private fb;
|
|
@@ -20,6 +20,13 @@ export declare class CreatePasswordComponent implements OnInit {
|
|
|
20
20
|
* @memberof ButtonComponent
|
|
21
21
|
*/
|
|
22
22
|
loading: boolean;
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @description Object with the translations for the component.
|
|
26
|
+
* @type {Ii18nCreatePassword}
|
|
27
|
+
* @memberof CreatePasswordComponent
|
|
28
|
+
*/
|
|
29
|
+
i18n: Ii18nCreatePassword;
|
|
23
30
|
/**
|
|
24
31
|
* @ignore
|
|
25
32
|
*/
|
|
@@ -32,5 +39,5 @@ export declare class CreatePasswordComponent implements OnInit {
|
|
|
32
39
|
submit(): void;
|
|
33
40
|
checkErrors(field: string): void;
|
|
34
41
|
static ɵfac: i0.ɵɵFactoryDeclaration<CreatePasswordComponent, never>;
|
|
35
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CreatePasswordComponent, "ui-create-password", never, { "formErrors": "formErrors"; "loading": "loading"; }, { "submitEvent": "submitEvent"; }, never, never>;
|
|
42
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CreatePasswordComponent, "ui-create-password", never, { "formErrors": "formErrors"; "loading": "loading"; "i18n": "i18n"; }, { "submitEvent": "submitEvent"; }, never, never>;
|
|
36
43
|
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { FormBuilder } from '@angular/forms';
|
|
3
|
-
import { ForgotPasswordCredentials } from './forgot-password.model';
|
|
3
|
+
import { ForgotPasswordCredentials, Ii18nForgotPassword } from './forgot-password.model';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class ForgotPasswordComponent implements OnInit {
|
|
6
6
|
private fb;
|
|
@@ -20,6 +20,13 @@ export declare class ForgotPasswordComponent implements OnInit {
|
|
|
20
20
|
* @memberof ButtonComponent
|
|
21
21
|
*/
|
|
22
22
|
loading: boolean;
|
|
23
|
+
/**
|
|
24
|
+
*
|
|
25
|
+
* @description Object with the translations for the component.
|
|
26
|
+
* @type {Ii18nForgotPassword}
|
|
27
|
+
* @memberof ForgotPasswordComponent
|
|
28
|
+
*/
|
|
29
|
+
i18n: Ii18nForgotPassword;
|
|
23
30
|
/**
|
|
24
31
|
* @ignore
|
|
25
32
|
*/
|
|
@@ -37,5 +44,5 @@ export declare class ForgotPasswordComponent implements OnInit {
|
|
|
37
44
|
backToLogin(): void;
|
|
38
45
|
checkErrors(field: string): void;
|
|
39
46
|
static ɵfac: i0.ɵɵFactoryDeclaration<ForgotPasswordComponent, never>;
|
|
40
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ForgotPasswordComponent, "ui-forgot-password", never, { "formErrors": "formErrors"; "loading": "loading"; }, { "submitEvent": "submitEvent"; "backToLoginEvent": "backToLoginEvent"; }, never, never>;
|
|
47
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ForgotPasswordComponent, "ui-forgot-password", never, { "formErrors": "formErrors"; "loading": "loading"; "i18n": "i18n"; }, { "submitEvent": "submitEvent"; "backToLoginEvent": "backToLoginEvent"; }, never, never>;
|
|
41
48
|
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { LabelSizeEnum } from './label.model';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
export declare class LabelComponent {
|
|
4
|
+
/**
|
|
5
|
+
* @ignore
|
|
6
|
+
*/
|
|
7
|
+
LabelSizeEnum: typeof LabelSizeEnum;
|
|
8
|
+
/**
|
|
9
|
+
* Label background color
|
|
10
|
+
*
|
|
11
|
+
* @type {string}
|
|
12
|
+
* @memberof LabelComponent
|
|
13
|
+
*/
|
|
14
|
+
backgroundColor: string;
|
|
15
|
+
/**
|
|
16
|
+
* Status text color
|
|
17
|
+
*
|
|
18
|
+
* @type {string}
|
|
19
|
+
* @memberof LabelComponent
|
|
20
|
+
*/
|
|
21
|
+
textColor: string;
|
|
22
|
+
/**
|
|
23
|
+
* Status title
|
|
24
|
+
*
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof LabelComponent
|
|
27
|
+
*/
|
|
28
|
+
title: string;
|
|
29
|
+
/**
|
|
30
|
+
* Label size
|
|
31
|
+
*
|
|
32
|
+
* @type {LabelSizeEnum}
|
|
33
|
+
* @memberof LabelComponent
|
|
34
|
+
*/
|
|
35
|
+
size: LabelSizeEnum;
|
|
36
|
+
constructor();
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LabelComponent, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LabelComponent, "ui-label", never, { "backgroundColor": "backgroundColor"; "textColor": "textColor"; "title": "title"; "size": "size"; }, {}, never, never>;
|
|
39
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./label.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class LabelComponentModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<LabelComponentModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<LabelComponentModule, [typeof i1.LabelComponent], [typeof i2.CommonModule], [typeof i1.LabelComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<LabelComponentModule>;
|
|
8
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export interface ILabelOptions {
|
|
2
|
+
[key: string]: ILabelOptionItem;
|
|
3
|
+
}
|
|
4
|
+
export interface ILabelOptionItem {
|
|
5
|
+
title: string;
|
|
6
|
+
textColor: string;
|
|
7
|
+
backgroundColor: string;
|
|
8
|
+
size: LabelSizeEnum;
|
|
9
|
+
}
|
|
10
|
+
export declare enum LabelSizeEnum {
|
|
11
|
+
SMALL = "small",
|
|
12
|
+
MEDIUM = "medium",
|
|
13
|
+
LARGE = "large",
|
|
14
|
+
BIG = "big",
|
|
15
|
+
HUGE = "huge"
|
|
16
|
+
}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { FormBuilder } from '@angular/forms';
|
|
3
|
-
import { LoginCredentials } from './login.model';
|
|
3
|
+
import { Ii18nLogin, LoginCredentials } from './login.model';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
5
|
export declare class LoginComponent implements OnInit {
|
|
6
6
|
private fb;
|
|
@@ -21,6 +21,12 @@ export declare class LoginComponent implements OnInit {
|
|
|
21
21
|
* @memberof ButtonComponent
|
|
22
22
|
*/
|
|
23
23
|
loading: boolean;
|
|
24
|
+
/**
|
|
25
|
+
* @description Object with the translations for the component.
|
|
26
|
+
* @type {Ii18n}
|
|
27
|
+
* @memberof LoginComponent
|
|
28
|
+
*/
|
|
29
|
+
i18n: Ii18nLogin;
|
|
24
30
|
/**
|
|
25
31
|
* @ignore
|
|
26
32
|
*/
|
|
@@ -43,5 +49,5 @@ export declare class LoginComponent implements OnInit {
|
|
|
43
49
|
createAccount(): void;
|
|
44
50
|
checkErrors(field: string): void;
|
|
45
51
|
static ɵfac: i0.ɵɵFactoryDeclaration<LoginComponent, never>;
|
|
46
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "ui-login", never, { "loading": "loading"; }, { "submitEvent": "submitEvent"; "forgotPasswordEvent": "forgotPasswordEvent"; "createAccountEvent": "createAccountEvent"; }, never, never>;
|
|
52
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<LoginComponent, "ui-login", never, { "loading": "loading"; "i18n": "i18n"; }, { "submitEvent": "submitEvent"; "forgotPasswordEvent": "forgotPasswordEvent"; "createAccountEvent": "createAccountEvent"; }, never, never>;
|
|
47
53
|
}
|
|
@@ -3,3 +3,12 @@ export interface LoginCredentials {
|
|
|
3
3
|
password: string;
|
|
4
4
|
remember_me: boolean;
|
|
5
5
|
}
|
|
6
|
+
export interface Ii18nLogin {
|
|
7
|
+
title: string;
|
|
8
|
+
email_placeholder: string;
|
|
9
|
+
password_placeholder: string;
|
|
10
|
+
remember_me: string;
|
|
11
|
+
forgot_password: string;
|
|
12
|
+
not_have_account: string;
|
|
13
|
+
create_account: string;
|
|
14
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { EventEmitter } from '@angular/core';
|
|
2
|
-
import {
|
|
2
|
+
import { ILabelOptionItem } from '../label/label.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class NavigationComponent {
|
|
5
5
|
/**
|
|
@@ -19,11 +19,11 @@ export declare class NavigationComponent {
|
|
|
19
19
|
/**
|
|
20
20
|
* Navigation status component
|
|
21
21
|
*
|
|
22
|
-
* @type {
|
|
22
|
+
* @type {ILabelOptionItem}
|
|
23
23
|
* @memberof NavigationComponent
|
|
24
24
|
* @ignore
|
|
25
25
|
*/
|
|
26
|
-
|
|
26
|
+
labelItem: ILabelOptionItem;
|
|
27
27
|
/**
|
|
28
28
|
* @ignore
|
|
29
29
|
*/
|
|
@@ -31,5 +31,5 @@ export declare class NavigationComponent {
|
|
|
31
31
|
constructor();
|
|
32
32
|
goBackClicked(): void;
|
|
33
33
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<NavigationComponent, "ui-navigation", never, { "title": "title"; "subtitle": "subtitle"; "
|
|
34
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<NavigationComponent, "ui-navigation", never, { "title": "title"; "subtitle": "subtitle"; "labelItem": "labelItem"; }, { "goBackClickedEvent": "goBackClickedEvent"; }, never, never>;
|
|
35
35
|
}
|
|
@@ -3,9 +3,9 @@ import * as i1 from "./navigation.component";
|
|
|
3
3
|
import * as i2 from "@angular/common";
|
|
4
4
|
import * as i3 from "@angular/material/icon";
|
|
5
5
|
import * as i4 from "@angular/material/button";
|
|
6
|
-
import * as i5 from "../
|
|
6
|
+
import * as i5 from "../label/label.component.module";
|
|
7
7
|
export declare class NavigationComponentModule {
|
|
8
8
|
static ɵfac: i0.ɵɵFactoryDeclaration<NavigationComponentModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<NavigationComponentModule, [typeof i1.NavigationComponent], [typeof i2.CommonModule, typeof i3.MatIconModule, typeof i4.MatButtonModule, typeof i5.
|
|
9
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<NavigationComponentModule, [typeof i1.NavigationComponent], [typeof i2.CommonModule, typeof i3.MatIconModule, typeof i4.MatButtonModule, typeof i5.LabelComponentModule], [typeof i1.NavigationComponent]>;
|
|
10
10
|
static ɵinj: i0.ɵɵInjectorDeclaration<NavigationComponentModule>;
|
|
11
11
|
}
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
import { OnDestroy, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { IComponentRenderer } from '../table.model';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export declare class DynamicComponentDirective implements OnDestroy {
|
|
5
|
+
private vcr;
|
|
6
|
+
private subscription;
|
|
7
|
+
private compRef;
|
|
8
|
+
set dynamicComponent(componentRenderer: IComponentRenderer);
|
|
9
|
+
constructor(vcr: ViewContainerRef);
|
|
10
|
+
ngOnDestroy(): void;
|
|
11
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponentDirective, never>;
|
|
12
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicComponentDirective, "[dynamicComponent]", never, { "dynamicComponent": "dynamicComponent"; }, {}, never>;
|
|
13
|
+
}
|
package/{shared/pipes/dataPropertyGetter.d.ts → components/table/pipes/data-property-getter.d.ts}
RENAMED
|
File without changes
|
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
2
|
import { MatSort, Sort } from '@angular/material/sort';
|
|
3
3
|
import { MatTableDataSource } from '@angular/material/table';
|
|
4
|
-
import { DataPropertyGetterPipe } from '
|
|
5
|
-
import {
|
|
6
|
-
import { ColumnType, IDataSource, ITableColumn, ITableDetailColumn } from './table.model';
|
|
4
|
+
import { DataPropertyGetterPipe } from './pipes/data-property-getter';
|
|
5
|
+
import { ColumnTypeEnum, IDataSource, ITableColumn, ITableDetailColumn } from './table.model';
|
|
7
6
|
import * as i0 from "@angular/core";
|
|
8
7
|
export declare class TableComponent<T extends IDataSource, TDetail extends IDataSource> implements OnInit {
|
|
9
8
|
private dataPropertyGetterPipe;
|
|
@@ -18,6 +17,7 @@ export declare class TableComponent<T extends IDataSource, TDetail extends IData
|
|
|
18
17
|
/**
|
|
19
18
|
* Data to be rendered
|
|
20
19
|
*
|
|
20
|
+
* @ignore
|
|
21
21
|
* @type {IDataSource}
|
|
22
22
|
* @memberof TableComponent
|
|
23
23
|
*/
|
|
@@ -36,12 +36,6 @@ export declare class TableComponent<T extends IDataSource, TDetail extends IData
|
|
|
36
36
|
* @memberof TableComponent
|
|
37
37
|
*/
|
|
38
38
|
tableDetailColumns: ITableDetailColumn<T, TDetail>;
|
|
39
|
-
/**
|
|
40
|
-
* @type {IStatusOptions}
|
|
41
|
-
* @memberof TableComponent
|
|
42
|
-
* @ignore
|
|
43
|
-
*/
|
|
44
|
-
statusOptions: IStatusOptions;
|
|
45
39
|
/**
|
|
46
40
|
* @ignore
|
|
47
41
|
*/
|
|
@@ -77,7 +71,7 @@ export declare class TableComponent<T extends IDataSource, TDetail extends IData
|
|
|
77
71
|
/**
|
|
78
72
|
* @ignore
|
|
79
73
|
*/
|
|
80
|
-
DataType: typeof
|
|
74
|
+
DataType: typeof ColumnTypeEnum;
|
|
81
75
|
ngOnInit(): void;
|
|
82
76
|
constructor(dataPropertyGetterPipe: DataPropertyGetterPipe);
|
|
83
77
|
onSort(sortParams: Sort): void;
|
|
@@ -93,5 +87,5 @@ export declare class TableComponent<T extends IDataSource, TDetail extends IData
|
|
|
93
87
|
*/
|
|
94
88
|
private setTableDetailDataSource;
|
|
95
89
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent<any, any>, never>;
|
|
96
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent<any, any>, "ui-table", never, { "tableDetails": "tableDetails"; "tableData": "tableData"; "tableColumns": "tableColumns"; "tableDetailColumns": "tableDetailColumns";
|
|
90
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent<any, any>, "ui-table", never, { "tableDetails": "tableDetails"; "tableData": "tableData"; "tableColumns": "tableColumns"; "tableDetailColumns": "tableDetailColumns"; }, { "onSortEvent": "onSortEvent"; "onRowClickEvent": "onRowClickEvent"; "onDetailRowClickEvent": "onDetailRowClickEvent"; }, never, never>;
|
|
97
91
|
}
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./table.component";
|
|
3
|
-
import * as i2 from "
|
|
4
|
-
import * as i3 from "
|
|
5
|
-
import * as i4 from "@angular/
|
|
6
|
-
import * as i5 from "@angular/material/
|
|
7
|
-
import * as i6 from "
|
|
3
|
+
import * as i2 from "./pipes/data-property-getter";
|
|
4
|
+
import * as i3 from "./directives/dynamic-component.directive";
|
|
5
|
+
import * as i4 from "@angular/common";
|
|
6
|
+
import * as i5 from "@angular/material/table";
|
|
7
|
+
import * as i6 from "@angular/material/sort";
|
|
8
8
|
export declare class TableComponentModule {
|
|
9
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponentModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TableComponentModule, [typeof i1.TableComponent, typeof i2.DataPropertyGetterPipe
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TableComponentModule, [typeof i1.TableComponent, typeof i2.DataPropertyGetterPipe, typeof i3.DynamicComponentDirective], [typeof i4.CommonModule, typeof i5.MatTableModule, typeof i6.MatSortModule], [typeof i1.TableComponent]>;
|
|
11
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<TableComponentModule>;
|
|
12
12
|
}
|
|
@@ -1,14 +1,22 @@
|
|
|
1
|
+
import { Type } from '@angular/core';
|
|
1
2
|
export declare type IDataSource = {
|
|
2
3
|
[key: string]: any;
|
|
3
4
|
};
|
|
4
5
|
export interface ITableColumn<T> {
|
|
5
6
|
headerName: string;
|
|
6
7
|
field?: string;
|
|
7
|
-
type?:
|
|
8
|
+
type?: ColumnTypeEnum;
|
|
8
9
|
function?: (v: T) => string;
|
|
9
|
-
renderer?: (v: T) => string;
|
|
10
|
+
renderer?: (v: T) => IComponentRenderer | string;
|
|
10
11
|
sortable?: boolean;
|
|
11
|
-
styles?:
|
|
12
|
+
styles?: IColumnStyles;
|
|
13
|
+
}
|
|
14
|
+
export interface IComponentRenderer {
|
|
15
|
+
component: Type<any>;
|
|
16
|
+
inputs?: any;
|
|
17
|
+
outputs?: {
|
|
18
|
+
[key: string]: any;
|
|
19
|
+
};
|
|
12
20
|
}
|
|
13
21
|
export interface IDetailRowDataParams<T, TDetail> {
|
|
14
22
|
data: T;
|
|
@@ -18,17 +26,18 @@ export interface ITableDetailColumn<T, TDetail> {
|
|
|
18
26
|
columnDefs: ITableColumn<TDetail>[];
|
|
19
27
|
setDetailRowData: (params: IDetailRowDataParams<T, TDetail>) => void;
|
|
20
28
|
}
|
|
21
|
-
export interface
|
|
22
|
-
alignment?:
|
|
29
|
+
export interface IColumnStyles {
|
|
30
|
+
alignment?: ColumnAlignmentEnum;
|
|
23
31
|
width?: string;
|
|
32
|
+
'min-width'?: string;
|
|
33
|
+
padding?: string;
|
|
24
34
|
}
|
|
25
|
-
export declare enum
|
|
35
|
+
export declare enum ColumnTypeEnum {
|
|
26
36
|
FIELD = "field",
|
|
27
|
-
LABEL = "label",
|
|
28
37
|
FUNCTION = "function",
|
|
29
38
|
RENDERER = "renderer"
|
|
30
39
|
}
|
|
31
|
-
export declare enum
|
|
40
|
+
export declare enum ColumnAlignmentEnum {
|
|
32
41
|
LEFT = "left",
|
|
33
42
|
RIGHT = "right",
|
|
34
43
|
CENTER = "center"
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
|
|
2
2
|
import { Validators } from '@angular/forms';
|
|
3
|
+
import { CREATE_ACCOUNT_i18n } from './create-account.constant';
|
|
3
4
|
import * as i0 from "@angular/core";
|
|
4
5
|
import * as i1 from "@angular/forms";
|
|
5
6
|
import * as i2 from "../logo/logo.component";
|
|
@@ -35,6 +36,19 @@ export class CreateAccountComponent {
|
|
|
35
36
|
username: [''],
|
|
36
37
|
password: [''],
|
|
37
38
|
};
|
|
39
|
+
/**
|
|
40
|
+
* Indicator if the form is loading
|
|
41
|
+
*
|
|
42
|
+
* @memberof ButtonComponent
|
|
43
|
+
*/
|
|
44
|
+
this.loading = false;
|
|
45
|
+
/**
|
|
46
|
+
*
|
|
47
|
+
* @description Object with the translations for the component.
|
|
48
|
+
* @type {Ii18nCreateAccount}
|
|
49
|
+
* @memberof CreateAccountComponent
|
|
50
|
+
*/
|
|
51
|
+
this.i18n = CREATE_ACCOUNT_i18n;
|
|
38
52
|
/**
|
|
39
53
|
* @ignore
|
|
40
54
|
*/
|
|
@@ -76,17 +90,19 @@ export class CreateAccountComponent {
|
|
|
76
90
|
}
|
|
77
91
|
}
|
|
78
92
|
CreateAccountComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CreateAccountComponent, deps: [{ token: i1.FormBuilder }], target: i0.ɵɵFactoryTarget.Component });
|
|
79
|
-
CreateAccountComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CreateAccountComponent, selector: "ui-create-account", inputs: { formErrors: "formErrors", loading: "loading" }, outputs: { submitEvent: "submitEvent", loginEvent: "loginEvent" }, ngImport: i0, template: "<div class=\"form-box\">\n <ui-logo></ui-logo>\n <div class=\"title\">
|
|
93
|
+
CreateAccountComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: CreateAccountComponent, selector: "ui-create-account", inputs: { formErrors: "formErrors", loading: "loading", i18n: "i18n" }, outputs: { submitEvent: "submitEvent", loginEvent: "loginEvent" }, ngImport: i0, template: "<div class=\"form-box\">\n <ui-logo></ui-logo>\n <div class=\"title\">{{ i18n.title }}</div>\n <div class=\"subtitle\">{{ i18n.subtitle }}</div>\n <form [formGroup]=\"registerForm\">\n <div class=\"field\">\n <ui-field\n formControlName=\"username\"\n [placeholder]=\"i18n.email_placeholder\"\n [type]=\"'email'\"\n [required]=\"true\"\n [error]=\"formErrors.username[0]\"\n (ngModelChange)=\"checkErrors('username')\"\n ></ui-field>\n </div>\n <div class=\"field\">\n <ui-field\n formControlName=\"password\"\n [placeholder]=\"i18n.password_placeholder\"\n [type]=\"'password'\"\n [required]=\"true\"\n [error]=\"formErrors.password[0]\"\n (ngModelChange)=\"checkErrors('password')\"\n ></ui-field>\n <div class=\"password-strength-container\">\n <mat-password-strength\n [min]=\"12\"\n #passwordComponentWithValidation\n [password]=\"registerForm.controls['password'].value\"\n >\n </mat-password-strength>\n </div>\n <mat-password-strength-info [passwordComponent]=\"passwordComponentWithValidation\"> </mat-password-strength-info>\n </div>\n <div class=\"terms-conditions-container\">\n <mat-checkbox formControlName=\"agree_terms_and_conditions\">{{ i18n.terms_conditions }}</mat-checkbox>\n </div>\n <div class=\"submit-button\">\n <ui-button\n [label]=\"i18n.button_label\"\n [disabled]=\"registerForm.invalid\"\n [fullWidth]=\"true\"\n [loading]=\"loading\"\n (onClickEvent)=\"submit()\"\n ></ui-button>\n </div>\n <div>\n {{ i18n.have_career_passport }} <span class=\"log-in\" (click)=\"login()\">{{ i18n.login }}</span>\n </div>\n </form>\n</div>\n", styles: [".form-box{width:672px;padding:64px;background:#ffffff;box-shadow:0 8px 16px #0000001a;border-radius:8px;margin:auto;color:#000}.form-box .title{font-weight:700;font-size:22px;line-height:29.7px;margin-top:40px}.form-box .subtitle{font-weight:400;font-size:16px;line-height:21.6px;margin:24px 0}.form-box .field{width:100%}.form-box .password-strength-container{margin:2.7px 0 1px}.form-box .terms-conditions-container{margin-top:9px}.form-box .submit-button{margin:24px 0}.form-box mat-checkbox{font-weight:400}.form-box .log-in{font-weight:600;font-size:15px;cursor:pointer;color:#46a997}.form-box .log-in:hover{text-decoration:underline}.row{display:flex;flex-direction:row}.row.space-between{justify-content:space-between}\n"], components: [{ type: i2.LogoComponent, selector: "ui-logo" }, { type: i3.FieldComponent, selector: "ui-field", inputs: ["label", "preffixIcon", "suffixIcon", "required", "hint", "error", "placeholder", "type"] }, { type: i4.MatPasswordStrengthComponent, selector: "mat-password-strength", inputs: ["password", "externalError", "enableLengthRule", "enableLowerCaseLetterRule", "enableUpperCaseLetterRule", "enableDigitRule", "enableSpecialCharRule", "min", "max", "customValidator", "warnThreshold", "accentThreshold"], outputs: ["onStrengthChanged"], exportAs: ["matPasswordStrength"] }, { type: i4.MatPasswordStrengthInfoComponent, selector: "mat-password-strength-info", inputs: ["passwordComponent", "enableScoreInfo", "lowerCaseCriteriaMsg", "upperCaseCriteriaMsg", "digitsCriteriaMsg", "specialCharsCriteriaMsg", "customCharsCriteriaMsg", "minCharsCriteriaMsg", "matIconDone", "matIconError"], exportAs: ["matPasswordStrengthInfo"] }, { type: i5.MatCheckbox, selector: "mat-checkbox", inputs: ["disableRipple", "color", "tabIndex", "aria-label", "aria-labelledby", "aria-describedby", "id", "required", "labelPosition", "name", "value", "checked", "disabled", "indeterminate"], outputs: ["change", "indeterminateChange"], exportAs: ["matCheckbox"] }, { type: i6.ButtonComponent, selector: "ui-button", inputs: ["color", "label", "iconPosition", "iconName", "disabled", "loading", "fullWidth"], outputs: ["onClickEvent"] }], directives: [{ type: i1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { type: i1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush });
|
|
80
94
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: CreateAccountComponent, decorators: [{
|
|
81
95
|
type: Component,
|
|
82
|
-
args: [{ selector: 'ui-create-account', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"form-box\">\n <ui-logo></ui-logo>\n <div class=\"title\">
|
|
96
|
+
args: [{ selector: 'ui-create-account', changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"form-box\">\n <ui-logo></ui-logo>\n <div class=\"title\">{{ i18n.title }}</div>\n <div class=\"subtitle\">{{ i18n.subtitle }}</div>\n <form [formGroup]=\"registerForm\">\n <div class=\"field\">\n <ui-field\n formControlName=\"username\"\n [placeholder]=\"i18n.email_placeholder\"\n [type]=\"'email'\"\n [required]=\"true\"\n [error]=\"formErrors.username[0]\"\n (ngModelChange)=\"checkErrors('username')\"\n ></ui-field>\n </div>\n <div class=\"field\">\n <ui-field\n formControlName=\"password\"\n [placeholder]=\"i18n.password_placeholder\"\n [type]=\"'password'\"\n [required]=\"true\"\n [error]=\"formErrors.password[0]\"\n (ngModelChange)=\"checkErrors('password')\"\n ></ui-field>\n <div class=\"password-strength-container\">\n <mat-password-strength\n [min]=\"12\"\n #passwordComponentWithValidation\n [password]=\"registerForm.controls['password'].value\"\n >\n </mat-password-strength>\n </div>\n <mat-password-strength-info [passwordComponent]=\"passwordComponentWithValidation\"> </mat-password-strength-info>\n </div>\n <div class=\"terms-conditions-container\">\n <mat-checkbox formControlName=\"agree_terms_and_conditions\">{{ i18n.terms_conditions }}</mat-checkbox>\n </div>\n <div class=\"submit-button\">\n <ui-button\n [label]=\"i18n.button_label\"\n [disabled]=\"registerForm.invalid\"\n [fullWidth]=\"true\"\n [loading]=\"loading\"\n (onClickEvent)=\"submit()\"\n ></ui-button>\n </div>\n <div>\n {{ i18n.have_career_passport }} <span class=\"log-in\" (click)=\"login()\">{{ i18n.login }}</span>\n </div>\n </form>\n</div>\n", styles: [".form-box{width:672px;padding:64px;background:#ffffff;box-shadow:0 8px 16px #0000001a;border-radius:8px;margin:auto;color:#000}.form-box .title{font-weight:700;font-size:22px;line-height:29.7px;margin-top:40px}.form-box .subtitle{font-weight:400;font-size:16px;line-height:21.6px;margin:24px 0}.form-box .field{width:100%}.form-box .password-strength-container{margin:2.7px 0 1px}.form-box .terms-conditions-container{margin-top:9px}.form-box .submit-button{margin:24px 0}.form-box mat-checkbox{font-weight:400}.form-box .log-in{font-weight:600;font-size:15px;cursor:pointer;color:#46a997}.form-box .log-in:hover{text-decoration:underline}.row{display:flex;flex-direction:row}.row.space-between{justify-content:space-between}\n"] }]
|
|
83
97
|
}], ctorParameters: function () { return [{ type: i1.FormBuilder }]; }, propDecorators: { formErrors: [{
|
|
84
98
|
type: Input
|
|
85
99
|
}], loading: [{
|
|
86
100
|
type: Input
|
|
101
|
+
}], i18n: [{
|
|
102
|
+
type: Input
|
|
87
103
|
}], submitEvent: [{
|
|
88
104
|
type: Output
|
|
89
105
|
}], loginEvent: [{
|
|
90
106
|
type: Output
|
|
91
107
|
}] } });
|
|
92
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
108
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3JlYXRlLWFjY291bnQuY29tcG9uZW50LmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvY3JlYXRlLWFjY291bnQvY3JlYXRlLWFjY291bnQuY29tcG9uZW50LnRzIiwiLi4vLi4vLi4vLi4vLi4vc3JjL2NvbXBvbmVudHMvY3JlYXRlLWFjY291bnQvY3JlYXRlLWFjY291bnQuY29tcG9uZW50Lmh0bWwiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLHVCQUF1QixFQUFFLFNBQVMsRUFBRSxZQUFZLEVBQUUsS0FBSyxFQUFVLE1BQU0sRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUN4RyxPQUFPLEVBQWUsVUFBVSxFQUFFLE1BQU0sZ0JBQWdCLENBQUM7QUFDekQsT0FBTyxFQUFFLG1CQUFtQixFQUFFLE1BQU0sMkJBQTJCLENBQUM7Ozs7Ozs7O0FBU2hFLE1BQU0sT0FBTyxzQkFBc0I7SUEyRGpDLFlBQW9CLEVBQWU7UUFBZixPQUFFLEdBQUYsRUFBRSxDQUFhO1FBMURuQyxtSEFBbUg7UUFDbkgsd0RBQXdEO1FBQ3hELHdEQUF3RDtRQUV4RDs7V0FFRztRQUNILGlCQUFZLEdBQUcsSUFBSSxDQUFDLEVBQUUsQ0FBQyxLQUFLLENBQUM7WUFDM0IsUUFBUSxFQUFFLENBQUMsRUFBRSxFQUFFLENBQUMsVUFBVSxDQUFDLFFBQVEsRUFBRSxVQUFVLENBQUMsS0FBSyxDQUFDLENBQUM7WUFDdkQsUUFBUSxFQUFFO2dCQUNSLEVBQUU7Z0JBQ0Y7b0JBQ0UsVUFBVSxDQUFDLFFBQVE7b0JBQ25CLFVBQVUsQ0FBQyxTQUFTLENBQUMsRUFBRSxDQUFDO29CQUN4QixVQUFVLENBQUMsT0FBTyxDQUFDLCtFQUErRSxDQUFDO2lCQUNwRzthQUNGO1lBQ0QsMEJBQTBCLEVBQUUsQ0FBQyxLQUFLLEVBQUUsQ0FBQyxVQUFVLENBQUMsWUFBWSxDQUFDLENBQUM7U0FDL0QsQ0FBQyxDQUFDO1FBRUg7O1dBRUc7UUFDTSxlQUFVLEdBQUc7WUFDcEIsUUFBUSxFQUFFLENBQUMsRUFBRSxDQUFDO1lBQ2QsUUFBUSxFQUFFLENBQUMsRUFBRSxDQUFDO1NBQ2YsQ0FBQztRQUVGOzs7O1dBSUc7UUFDTSxZQUFPLEdBQUcsS0FBSyxDQUFDO1FBRXpCOzs7OztXQUtHO1FBQ00sU0FBSSxHQUF1QixtQkFBbUIsQ0FBQztRQUV4RDs7V0FFRztRQUNPLGdCQUFXLEdBQTJDLElBQUksWUFBWSxFQUE0QixDQUFDO1FBRTdHOztXQUVHO1FBQ08sZUFBVSxHQUF1QixJQUFJLFlBQVksRUFBUSxDQUFDO0lBTzlCLENBQUM7SUFMdkM7O09BRUc7SUFDSCxRQUFRLEtBQVUsQ0FBQztJQUluQixNQUFNO1FBQ0osSUFBSSxDQUFDLFdBQVcsQ0FBQyxJQUFJLENBQUM7WUFDcEIsUUFBUSxFQUFFLElBQUksQ0FBQyxZQUFZLENBQUMsR0FBRyxDQUFDLFVBQVUsQ0FBQyxFQUFFLEtBQUs7WUFDbEQsUUFBUSxFQUFFLElBQUksQ0FBQyxZQUFZLENBQUMsR0FBRyxDQUFDLFVBQVUsQ0FBQyxFQUFFLEtBQUs7U0FDbkQsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVELEtBQUs7UUFDSCxJQUFJLENBQUMsVUFBVSxDQUFDLElBQUksRUFBRSxDQUFDO0lBQ3pCLENBQUM7SUFFRCxXQUFXLENBQUMsS0FBYTtRQUN2QixJQUFJLElBQUksQ0FBQyxZQUFZLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQyxDQUFDLE9BQU8sRUFBRTtZQUM3QyxJQUFJLElBQUksQ0FBQyxZQUFZLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQyxDQUFDLFFBQVEsQ0FBQyxVQUFVLENBQUMsRUFBRTtnQkFDMUQsSUFBSSxDQUFDLFVBQVUsQ0FBQyxLQUFxQyxDQUFDLENBQUMsQ0FBQyxDQUFDLEdBQUcsd0JBQXdCLENBQUM7Z0JBQ3JGLE9BQU87YUFDUjtZQUVELElBQUksSUFBSSxDQUFDLFlBQVksQ0FBQyxRQUFRLENBQUMsS0FBSyxDQUFDLENBQUMsUUFBUSxDQUFDLE9BQU8sQ0FBQyxFQUFFO2dCQUN2RCxJQUFJLENBQUMsVUFBVSxDQUFDLEtBQXFDLENBQUMsQ0FBQyxDQUFDLENBQUMsR0FBRyxxQkFBcUIsQ0FBQztnQkFDbEYsT0FBTzthQUNSO1lBRUQsSUFBSSxLQUFLLEtBQUssVUFBVSxJQUFJLElBQUksQ0FBQyxZQUFZLENBQUMsUUFBUSxDQUFDLEtBQUssQ0FBQyxDQUFDLFFBQVEsQ0FBQyxTQUFTLENBQUMsRUFBRTtnQkFDakYsSUFBSSxDQUFDLFVBQVUsQ0FBQyxRQUFRLENBQUMsQ0FBQyxDQUFDLEdBQUcscUJBQXFCLENBQUM7Z0JBQ3BELE9BQU87YUFDUjtTQUNGO1FBRUQsSUFBSSxDQUFDLFVBQVUsQ0FBQyxLQUFxQyxDQUFDLENBQUMsQ0FBQyxDQUFDLEdBQUcsRUFBRSxDQUFDO0lBQ2pFLENBQUM7O29IQTNGVSxzQkFBc0I7d0dBQXRCLHNCQUFzQixvTUNYbkMseXhEQW1EQTs0RkR4Q2Esc0JBQXNCO2tCQU5sQyxTQUFTOytCQUNFLG1CQUFtQixtQkFHWix1QkFBdUIsQ0FBQyxNQUFNO2tHQTBCdEMsVUFBVTtzQkFBbEIsS0FBSztnQkFVRyxPQUFPO3NCQUFmLEtBQUs7Z0JBUUcsSUFBSTtzQkFBWixLQUFLO2dCQUtJLFdBQVc7c0JBQXBCLE1BQU07Z0JBS0csVUFBVTtzQkFBbkIsTUFBTSIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IENoYW5nZURldGVjdGlvblN0cmF0ZWd5LCBDb21wb25lbnQsIEV2ZW50RW1pdHRlciwgSW5wdXQsIE9uSW5pdCwgT3V0cHV0IH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBGb3JtQnVpbGRlciwgVmFsaWRhdG9ycyB9IGZyb20gJ0Bhbmd1bGFyL2Zvcm1zJztcbmltcG9ydCB7IENSRUFURV9BQ0NPVU5UX2kxOG4gfSBmcm9tICcuL2NyZWF0ZS1hY2NvdW50LmNvbnN0YW50JztcbmltcG9ydCB7IENyZWF0ZUFjY291bnRDcmVkZW50aWFscywgSWkxOG5DcmVhdGVBY2NvdW50IH0gZnJvbSAnLi9jcmVhdGUtYWNjb3VudC5tb2RlbCc7XG5cbkBDb21wb25lbnQoe1xuICBzZWxlY3RvcjogJ3VpLWNyZWF0ZS1hY2NvdW50JyxcbiAgdGVtcGxhdGVVcmw6ICcuL2NyZWF0ZS1hY2NvdW50LmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vY3JlYXRlLWFjY291bnQuY29tcG9uZW50LnNjc3MnXSxcbiAgY2hhbmdlRGV0ZWN0aW9uOiBDaGFuZ2VEZXRlY3Rpb25TdHJhdGVneS5PblB1c2gsXG59KVxuZXhwb3J0IGNsYXNzIENyZWF0ZUFjY291bnRDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICAvLyBUT0RPOiBTb21lIHByb3BlcnRpZXMgYW5kIG1ldGhvZHMgYXJlIGlnbm9yZWQgb24gcHVycG9zZSBiZWNhdXNlIG9mIGEgY3VycmVudCBpc3N1ZSB3aXRoIGNvbXBvZG9jIGFuZCBhbmd1bGFyIDEzXG4gIC8vIGh0dHBzOi8vZ2l0aHViLmNvbS9zdG9yeWJvb2tqcy9zdG9yeWJvb2svaXNzdWVzLzE2ODY1XG4gIC8vIGh0dHBzOi8vZ2l0aHViLmNvbS9zdG9yeWJvb2tqcy9zdG9yeWJvb2svaXNzdWVzLzE3MDA0XG5cbiAgLyoqXG4gICAqIEBpZ25vcmVcbiAgICovXG4gIHJlZ2lzdGVyRm9ybSA9IHRoaXMuZmIuZ3JvdXAoe1xuICAgIHVzZXJuYW1lOiBbJycsIFtWYWxpZGF0b3JzLnJlcXVpcmVkLCBWYWxpZGF0b3JzLmVtYWlsXV0sXG4gICAgcGFzc3dvcmQ6IFtcbiAgICAgICcnLFxuICAgICAgW1xuICAgICAgICBWYWxpZGF0b3JzLnJlcXVpcmVkLFxuICAgICAgICBWYWxpZGF0b3JzLm1pbkxlbmd0aCgxMiksXG4gICAgICAgIFZhbGlkYXRvcnMucGF0dGVybigvXig/PVxcRCpcXGQpKD89W15hLXpdKlthLXpdKSg/PS4qWyMkJSYnKCkqKywtLi86Ozw9Pj9AXSkoPz1bXkEtWl0qW0EtWl0pLnsxMix9JC8pLFxuICAgICAgXSxcbiAgICBdLFxuICAgIGFncmVlX3Rlcm1zX2FuZF9jb25kaXRpb25zOiBbZmFsc2UsIFtWYWxpZGF0b3JzLnJlcXVpcmVkVHJ1ZV1dLFxuICB9KTtcblxuICAvKipcbiAgICogQGlnbm9yZVxuICAgKi9cbiAgQElucHV0KCkgZm9ybUVycm9ycyA9IHtcbiAgICB1c2VybmFtZTogWycnXSxcbiAgICBwYXNzd29yZDogWycnXSxcbiAgfTtcblxuICAvKipcbiAgICogSW5kaWNhdG9yIGlmIHRoZSBmb3JtIGlzIGxvYWRpbmdcbiAgICpcbiAgICogQG1lbWJlcm9mIEJ1dHRvbkNvbXBvbmVudFxuICAgKi9cbiAgQElucHV0KCkgbG9hZGluZyA9IGZhbHNlO1xuXG4gIC8qKlxuICAgKlxuICAgKiBAZGVzY3JpcHRpb24gT2JqZWN0IHdpdGggdGhlIHRyYW5zbGF0aW9ucyBmb3IgdGhlIGNvbXBvbmVudC5cbiAgICogQHR5cGUge0lpMThuQ3JlYXRlQWNjb3VudH1cbiAgICogQG1lbWJlcm9mIENyZWF0ZUFjY291bnRDb21wb25lbnRcbiAgICovXG4gIEBJbnB1dCgpIGkxOG46IElpMThuQ3JlYXRlQWNjb3VudCA9IENSRUFURV9BQ0NPVU5UX2kxOG47XG5cbiAgLyoqXG4gICAqIEBpZ25vcmVcbiAgICovXG4gIEBPdXRwdXQoKSBzdWJtaXRFdmVudDogRXZlbnRFbWl0dGVyPENyZWF0ZUFjY291bnRDcmVkZW50aWFscz4gPSBuZXcgRXZlbnRFbWl0dGVyPENyZWF0ZUFjY291bnRDcmVkZW50aWFscz4oKTtcblxuICAvKipcbiAgICogQGlnbm9yZVxuICAgKi9cbiAgQE91dHB1dCgpIGxvZ2luRXZlbnQ6IEV2ZW50RW1pdHRlcjx2b2lkPiA9IG5ldyBFdmVudEVtaXR0ZXI8dm9pZD4oKTtcblxuICAvKipcbiAgICogQGlnbm9yZVxuICAgKi9cbiAgbmdPbkluaXQoKTogdm9pZCB7fVxuXG4gIGNvbnN0cnVjdG9yKHByaXZhdGUgZmI6IEZvcm1CdWlsZGVyKSB7fVxuXG4gIHN1Ym1pdCgpOiB2b2lkIHtcbiAgICB0aGlzLnN1Ym1pdEV2ZW50LmVtaXQoe1xuICAgICAgdXNlcm5hbWU6IHRoaXMucmVnaXN0ZXJGb3JtLmdldCgndXNlcm5hbWUnKT8udmFsdWUsXG4gICAgICBwYXNzd29yZDogdGhpcy5yZWdpc3RlckZvcm0uZ2V0KCdwYXNzd29yZCcpPy52YWx1ZSxcbiAgICB9KTtcbiAgfVxuXG4gIGxvZ2luKCk6IHZvaWQge1xuICAgIHRoaXMubG9naW5FdmVudC5lbWl0KCk7XG4gIH1cblxuICBjaGVja0Vycm9ycyhmaWVsZDogc3RyaW5nKSB7XG4gICAgaWYgKHRoaXMucmVnaXN0ZXJGb3JtLmNvbnRyb2xzW2ZpZWxkXS50b3VjaGVkKSB7XG4gICAgICBpZiAodGhpcy5yZWdpc3RlckZvcm0uY29udHJvbHNbZmllbGRdLmhhc0Vycm9yKCdyZXF1aXJlZCcpKSB7XG4gICAgICAgIHRoaXMuZm9ybUVycm9yc1tmaWVsZCBhcyBrZXlvZiB0eXBlb2YgdGhpcy5mb3JtRXJyb3JzXVswXSA9ICdUaGlzIGZpZWxkIGlzIHJlcXVpcmVkJztcbiAgICAgICAgcmV0dXJuO1xuICAgICAgfVxuXG4gICAgICBpZiAodGhpcy5yZWdpc3RlckZvcm0uY29udHJvbHNbZmllbGRdLmhhc0Vycm9yKCdlbWFpbCcpKSB7XG4gICAgICAgIHRoaXMuZm9ybUVycm9yc1tmaWVsZCBhcyBrZXlvZiB0eXBlb2YgdGhpcy5mb3JtRXJyb3JzXVswXSA9ICdFbnRlciBhIHZhbGlkIGVtYWlsJztcbiAgICAgICAgcmV0dXJuO1xuICAgICAgfVxuXG4gICAgICBpZiAoZmllbGQgPT09ICdwYXNzd29yZCcgJiYgdGhpcy5yZWdpc3RlckZvcm0uY29udHJvbHNbZmllbGRdLmhhc0Vycm9yKCdwYXR0ZXJuJykpIHtcbiAgICAgICAgdGhpcy5mb3JtRXJyb3JzLnBhc3N3b3JkWzBdID0gJ1Bhc3N3b3JkIGlzIGludmFsaWQnO1xuICAgICAgICByZXR1cm47XG4gICAgICB9XG4gICAgfVxuXG4gICAgdGhpcy5mb3JtRXJyb3JzW2ZpZWxkIGFzIGtleW9mIHR5cGVvZiB0aGlzLmZvcm1FcnJvcnNdWzBdID0gJyc7XG4gIH1cbn1cbiIsIjxkaXYgY2xhc3M9XCJmb3JtLWJveFwiPlxuICA8dWktbG9nbz48L3VpLWxvZ28+XG4gIDxkaXYgY2xhc3M9XCJ0aXRsZVwiPnt7IGkxOG4udGl0bGUgfX08L2Rpdj5cbiAgPGRpdiBjbGFzcz1cInN1YnRpdGxlXCI+e3sgaTE4bi5zdWJ0aXRsZSB9fTwvZGl2PlxuICA8Zm9ybSBbZm9ybUdyb3VwXT1cInJlZ2lzdGVyRm9ybVwiPlxuICAgIDxkaXYgY2xhc3M9XCJmaWVsZFwiPlxuICAgICAgPHVpLWZpZWxkXG4gICAgICAgIGZvcm1Db250cm9sTmFtZT1cInVzZXJuYW1lXCJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cImkxOG4uZW1haWxfcGxhY2Vob2xkZXJcIlxuICAgICAgICBbdHlwZV09XCInZW1haWwnXCJcbiAgICAgICAgW3JlcXVpcmVkXT1cInRydWVcIlxuICAgICAgICBbZXJyb3JdPVwiZm9ybUVycm9ycy51c2VybmFtZVswXVwiXG4gICAgICAgIChuZ01vZGVsQ2hhbmdlKT1cImNoZWNrRXJyb3JzKCd1c2VybmFtZScpXCJcbiAgICAgID48L3VpLWZpZWxkPlxuICAgIDwvZGl2PlxuICAgIDxkaXYgY2xhc3M9XCJmaWVsZFwiPlxuICAgICAgPHVpLWZpZWxkXG4gICAgICAgIGZvcm1Db250cm9sTmFtZT1cInBhc3N3b3JkXCJcbiAgICAgICAgW3BsYWNlaG9sZGVyXT1cImkxOG4ucGFzc3dvcmRfcGxhY2Vob2xkZXJcIlxuICAgICAgICBbdHlwZV09XCIncGFzc3dvcmQnXCJcbiAgICAgICAgW3JlcXVpcmVkXT1cInRydWVcIlxuICAgICAgICBbZXJyb3JdPVwiZm9ybUVycm9ycy5wYXNzd29yZFswXVwiXG4gICAgICAgIChuZ01vZGVsQ2hhbmdlKT1cImNoZWNrRXJyb3JzKCdwYXNzd29yZCcpXCJcbiAgICAgID48L3VpLWZpZWxkPlxuICAgICAgPGRpdiBjbGFzcz1cInBhc3N3b3JkLXN0cmVuZ3RoLWNvbnRhaW5lclwiPlxuICAgICAgICA8bWF0LXBhc3N3b3JkLXN0cmVuZ3RoXG4gICAgICAgICAgW21pbl09XCIxMlwiXG4gICAgICAgICAgI3Bhc3N3b3JkQ29tcG9uZW50V2l0aFZhbGlkYXRpb25cbiAgICAgICAgICBbcGFzc3dvcmRdPVwicmVnaXN0ZXJGb3JtLmNvbnRyb2xzWydwYXNzd29yZCddLnZhbHVlXCJcbiAgICAgICAgPlxuICAgICAgICA8L21hdC1wYXNzd29yZC1zdHJlbmd0aD5cbiAgICAgIDwvZGl2PlxuICAgICAgPG1hdC1wYXNzd29yZC1zdHJlbmd0aC1pbmZvIFtwYXNzd29yZENvbXBvbmVudF09XCJwYXNzd29yZENvbXBvbmVudFdpdGhWYWxpZGF0aW9uXCI+IDwvbWF0LXBhc3N3b3JkLXN0cmVuZ3RoLWluZm8+XG4gICAgPC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cInRlcm1zLWNvbmRpdGlvbnMtY29udGFpbmVyXCI+XG4gICAgICA8bWF0LWNoZWNrYm94IGZvcm1Db250cm9sTmFtZT1cImFncmVlX3Rlcm1zX2FuZF9jb25kaXRpb25zXCI+e3sgaTE4bi50ZXJtc19jb25kaXRpb25zIH19PC9tYXQtY2hlY2tib3g+XG4gICAgPC9kaXY+XG4gICAgPGRpdiBjbGFzcz1cInN1Ym1pdC1idXR0b25cIj5cbiAgICAgIDx1aS1idXR0b25cbiAgICAgICAgW2xhYmVsXT1cImkxOG4uYnV0dG9uX2xhYmVsXCJcbiAgICAgICAgW2Rpc2FibGVkXT1cInJlZ2lzdGVyRm9ybS5pbnZhbGlkXCJcbiAgICAgICAgW2Z1bGxXaWR0aF09XCJ0cnVlXCJcbiAgICAgICAgW2xvYWRpbmddPVwibG9hZGluZ1wiXG4gICAgICAgIChvbkNsaWNrRXZlbnQpPVwic3VibWl0KClcIlxuICAgICAgPjwvdWktYnV0dG9uPlxuICAgIDwvZGl2PlxuICAgIDxkaXY+XG4gICAgICB7eyBpMThuLmhhdmVfY2FyZWVyX3Bhc3Nwb3J0IH19IDxzcGFuIGNsYXNzPVwibG9nLWluXCIgKGNsaWNrKT1cImxvZ2luKClcIj57eyBpMThuLmxvZ2luIH19PC9zcGFuPlxuICAgIDwvZGl2PlxuICA8L2Zvcm0+XG48L2Rpdj5cbiJdfQ==
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
export const CREATE_ACCOUNT_i18n = {
|
|
2
|
+
title: 'Create your Career Passport',
|
|
3
|
+
subtitle: 'Enter the email address to which you received an assessment invite.',
|
|
4
|
+
email_placeholder: 'Email',
|
|
5
|
+
password_placeholder: 'Password',
|
|
6
|
+
terms_conditions: 'Agree to Terms & Conditions',
|
|
7
|
+
button_label: 'Next',
|
|
8
|
+
have_career_passport: 'Already have a Career Passport?',
|
|
9
|
+
login: 'Log in here',
|
|
10
|
+
};
|
|
11
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3JlYXRlLWFjY291bnQuY29uc3RhbnQuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvY29tcG9uZW50cy9jcmVhdGUtYWNjb3VudC9jcmVhdGUtYWNjb3VudC5jb25zdGFudC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxNQUFNLENBQUMsTUFBTSxtQkFBbUIsR0FBRztJQUNqQyxLQUFLLEVBQUUsNkJBQTZCO0lBQ3BDLFFBQVEsRUFBRSxxRUFBcUU7SUFDL0UsaUJBQWlCLEVBQUUsT0FBTztJQUMxQixvQkFBb0IsRUFBRSxVQUFVO0lBQ2hDLGdCQUFnQixFQUFFLDZCQUE2QjtJQUMvQyxZQUFZLEVBQUUsTUFBTTtJQUNwQixvQkFBb0IsRUFBRSxpQ0FBaUM7SUFDdkQsS0FBSyxFQUFFLGFBQWE7Q0FDckIsQ0FBQyIsInNvdXJjZXNDb250ZW50IjpbImV4cG9ydCBjb25zdCBDUkVBVEVfQUNDT1VOVF9pMThuID0ge1xuICB0aXRsZTogJ0NyZWF0ZSB5b3VyIENhcmVlciBQYXNzcG9ydCcsXG4gIHN1YnRpdGxlOiAnRW50ZXIgdGhlIGVtYWlsIGFkZHJlc3MgdG8gd2hpY2ggeW91IHJlY2VpdmVkIGFuIGFzc2Vzc21lbnQgaW52aXRlLicsXG4gIGVtYWlsX3BsYWNlaG9sZGVyOiAnRW1haWwnLFxuICBwYXNzd29yZF9wbGFjZWhvbGRlcjogJ1Bhc3N3b3JkJyxcbiAgdGVybXNfY29uZGl0aW9uczogJ0FncmVlIHRvIFRlcm1zICYgQ29uZGl0aW9ucycsXG4gIGJ1dHRvbl9sYWJlbDogJ05leHQnLFxuICBoYXZlX2NhcmVlcl9wYXNzcG9ydDogJ0FscmVhZHkgaGF2ZSBhIENhcmVlciBQYXNzcG9ydD8nLFxuICBsb2dpbjogJ0xvZyBpbiBoZXJlJyxcbn07XG4iXX0=
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export {};
|
|
2
|
-
//# sourceMappingURL=data:application/json;base64,
|
|
2
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3JlYXRlLWFjY291bnQubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9zcmMvY29tcG9uZW50cy9jcmVhdGUtYWNjb3VudC9jcmVhdGUtYWNjb3VudC5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiIiwic291cmNlc0NvbnRlbnQiOlsiZXhwb3J0IGludGVyZmFjZSBDcmVhdGVBY2NvdW50Q3JlZGVudGlhbHMge1xuICB1c2VybmFtZTogc3RyaW5nO1xuICBwYXNzd29yZDogc3RyaW5nO1xufVxuXG5leHBvcnQgaW50ZXJmYWNlIElpMThuQ3JlYXRlQWNjb3VudCB7XG4gIHRpdGxlOiBzdHJpbmc7XG4gIHN1YnRpdGxlOiBzdHJpbmc7XG4gIGVtYWlsX3BsYWNlaG9sZGVyOiBzdHJpbmc7XG4gIHBhc3N3b3JkX3BsYWNlaG9sZGVyOiBzdHJpbmc7XG4gIHRlcm1zX2NvbmRpdGlvbnM6IHN0cmluZztcbiAgYnV0dG9uX2xhYmVsOiBzdHJpbmc7XG4gIGhhdmVfY2FyZWVyX3Bhc3Nwb3J0OiBzdHJpbmc7XG4gIGxvZ2luOiBzdHJpbmc7XG59XG4iXX0=
|