@skysoftware-co/bayan-hr-widgets-ui 1.0.20 → 1.0.22
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/README.md +77 -0
- package/fesm2022/skysoftware-co-bayan-hr-widgets-ui.mjs +806 -8
- package/fesm2022/skysoftware-co-bayan-hr-widgets-ui.mjs.map +1 -1
- package/lib/profile-bank-info-widget/profile-bank-info-widget.component.d.ts +44 -0
- package/lib/profile-degrees-widget/profile-degrees-widget-component.d.ts +39 -0
- package/lib/profile-experiences-widget/profile-experiences-widget-component.d.ts +38 -0
- package/lib/profile-job-info-contract-widget/profile-job-info-contract-widget.component.d.ts +30 -0
- package/lib/profile-job-info-main-widget/profile-job-info-main-widget.component.d.ts +30 -0
- package/lib/profile-job-info-salary-widget/profile-job-info-salary-widget.component.d.ts +36 -0
- package/lib/profile-job-info-service-charge-widget/profile-job-info-service-charge-widget.component.d.ts +32 -0
- package/lib/shared/types/common.d.ts +16 -16
- package/package.json +1 -1
- package/public-api.d.ts +7 -0
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, OnInit, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { MyBankInfo } from '../shared/types/common';
|
|
3
|
+
import { HRCommonMethodsService } from '../shared/services/common-methods.service';
|
|
4
|
+
import { HRSelfWidgetsService } from '../services/hr-self-widgets.service';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ProfileBankInfoWidgetComponent implements OnInit, OnChanges {
|
|
7
|
+
private readonly commonMethodsService;
|
|
8
|
+
private readonly hrSelfWidgetsService;
|
|
9
|
+
isLoading: boolean;
|
|
10
|
+
constructor(commonMethodsService: HRCommonMethodsService, hrSelfWidgetsService: HRSelfWidgetsService);
|
|
11
|
+
ngOnInit(): void;
|
|
12
|
+
employeeBankInformation: MyBankInfo[];
|
|
13
|
+
currencyCode: string;
|
|
14
|
+
currencyDecimals: number;
|
|
15
|
+
headerIconClass: string;
|
|
16
|
+
headerTextClass: string;
|
|
17
|
+
headerDividerClass: string;
|
|
18
|
+
cardClass: string;
|
|
19
|
+
mainBadgeClass: string;
|
|
20
|
+
mainBadgeTextClass: string;
|
|
21
|
+
triangleClass: string;
|
|
22
|
+
rowClass: string;
|
|
23
|
+
rowMainPtClass: string;
|
|
24
|
+
rowNormalPtClass: string;
|
|
25
|
+
columnClass: string;
|
|
26
|
+
responsiveTopSpacingColClass: string;
|
|
27
|
+
topSpacingColClass: string;
|
|
28
|
+
labelClass: string;
|
|
29
|
+
valueClass: string;
|
|
30
|
+
emptyStateContainerClass: string;
|
|
31
|
+
emptyStateTextClass: string;
|
|
32
|
+
bankInformationIcon: import("@fortawesome/pro-light-svg-icons").IconDefinition;
|
|
33
|
+
sectionHeaderVisibility: boolean;
|
|
34
|
+
sectionTitle: string;
|
|
35
|
+
language: string;
|
|
36
|
+
baseUrl: string;
|
|
37
|
+
errorOccurred: EventEmitter<string>;
|
|
38
|
+
isRTL: boolean;
|
|
39
|
+
isLoadingChanged: EventEmitter<boolean>;
|
|
40
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
41
|
+
formatAmount(value: number | null | undefined): string;
|
|
42
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileBankInfoWidgetComponent, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileBankInfoWidgetComponent, "hr-profile-bank-info-widget", never, { "currencyCode": { "alias": "currencyCode"; "required": false; }; "currencyDecimals": { "alias": "currencyDecimals"; "required": false; }; "headerIconClass": { "alias": "headerIconClass"; "required": false; }; "headerTextClass": { "alias": "headerTextClass"; "required": false; }; "headerDividerClass": { "alias": "headerDividerClass"; "required": false; }; "cardClass": { "alias": "cardClass"; "required": false; }; "mainBadgeClass": { "alias": "mainBadgeClass"; "required": false; }; "mainBadgeTextClass": { "alias": "mainBadgeTextClass"; "required": false; }; "triangleClass": { "alias": "triangleClass"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "rowMainPtClass": { "alias": "rowMainPtClass"; "required": false; }; "rowNormalPtClass": { "alias": "rowNormalPtClass"; "required": false; }; "columnClass": { "alias": "columnClass"; "required": false; }; "responsiveTopSpacingColClass": { "alias": "responsiveTopSpacingColClass"; "required": false; }; "topSpacingColClass": { "alias": "topSpacingColClass"; "required": false; }; "labelClass": { "alias": "labelClass"; "required": false; }; "valueClass": { "alias": "valueClass"; "required": false; }; "emptyStateContainerClass": { "alias": "emptyStateContainerClass"; "required": false; }; "emptyStateTextClass": { "alias": "emptyStateTextClass"; "required": false; }; "bankInformationIcon": { "alias": "bankInformationIcon"; "required": false; }; "sectionHeaderVisibility": { "alias": "sectionHeaderVisibility"; "required": false; }; "sectionTitle": { "alias": "sectionTitle"; "required": false; }; "language": { "alias": "language"; "required": false; }; "baseUrl": { "alias": "baseUrl"; "required": true; }; }, { "errorOccurred": "errorOccurred"; "isLoadingChanged": "isLoadingChanged"; }, never, never, true, never>;
|
|
44
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { HRSelfWidgetsService } from '../services/hr-self-widgets.service';
|
|
3
|
+
import { IconDefinition } from '@fortawesome/angular-fontawesome';
|
|
4
|
+
import { Degree } from '../shared/types/common';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ProfileDegreesWidgetComponent implements OnInit {
|
|
7
|
+
private readonly service;
|
|
8
|
+
degrees: Degree[];
|
|
9
|
+
isLoading: boolean;
|
|
10
|
+
baseUrl: string;
|
|
11
|
+
sectionTitle: string;
|
|
12
|
+
degreesIcon: import("@fortawesome/pro-light-svg-icons").IconDefinition;
|
|
13
|
+
viewIcon: IconDefinition;
|
|
14
|
+
downloadIcon: import("@fortawesome/pro-light-svg-icons").IconDefinition;
|
|
15
|
+
headerIconClass: string;
|
|
16
|
+
headerTextClass: string;
|
|
17
|
+
headerDividerClass: string;
|
|
18
|
+
rowClass: string;
|
|
19
|
+
itemRowClass: string;
|
|
20
|
+
itemColumnClass: string;
|
|
21
|
+
labelClass: string;
|
|
22
|
+
valueClass: string;
|
|
23
|
+
valueEllipsisClass: string;
|
|
24
|
+
actionsColumnClass: string;
|
|
25
|
+
viewIconClass: string;
|
|
26
|
+
downloadIconClass: string;
|
|
27
|
+
emptyStateContainerClass: string;
|
|
28
|
+
emptyStateTextClass: string;
|
|
29
|
+
isLoadingChanged: EventEmitter<boolean>;
|
|
30
|
+
attachmentViewed: EventEmitter<any>;
|
|
31
|
+
attachmentDownloaded: EventEmitter<any>;
|
|
32
|
+
errorOccurred: EventEmitter<string>;
|
|
33
|
+
constructor(service: HRSelfWidgetsService);
|
|
34
|
+
ngOnInit(): void;
|
|
35
|
+
onAttachmentView(file: any): void;
|
|
36
|
+
onAttachmentDownload(file: any): void;
|
|
37
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileDegreesWidgetComponent, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileDegreesWidgetComponent, "hr-profile-degrees-widget", never, { "baseUrl": { "alias": "baseUrl"; "required": false; }; "sectionTitle": { "alias": "sectionTitle"; "required": false; }; "degreesIcon": { "alias": "degreesIcon"; "required": false; }; "viewIcon": { "alias": "viewIcon"; "required": false; }; "downloadIcon": { "alias": "downloadIcon"; "required": false; }; "headerIconClass": { "alias": "headerIconClass"; "required": false; }; "headerTextClass": { "alias": "headerTextClass"; "required": false; }; "headerDividerClass": { "alias": "headerDividerClass"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "itemRowClass": { "alias": "itemRowClass"; "required": false; }; "itemColumnClass": { "alias": "itemColumnClass"; "required": false; }; "labelClass": { "alias": "labelClass"; "required": false; }; "valueClass": { "alias": "valueClass"; "required": false; }; "valueEllipsisClass": { "alias": "valueEllipsisClass"; "required": false; }; "actionsColumnClass": { "alias": "actionsColumnClass"; "required": false; }; "viewIconClass": { "alias": "viewIconClass"; "required": false; }; "downloadIconClass": { "alias": "downloadIconClass"; "required": false; }; "emptyStateContainerClass": { "alias": "emptyStateContainerClass"; "required": false; }; "emptyStateTextClass": { "alias": "emptyStateTextClass"; "required": false; }; }, { "isLoadingChanged": "isLoadingChanged"; "attachmentViewed": "attachmentViewed"; "attachmentDownloaded": "attachmentDownloaded"; "errorOccurred": "errorOccurred"; }, never, never, true, never>;
|
|
39
|
+
}
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { HRSelfWidgetsService } from '../services/hr-self-widgets.service';
|
|
3
|
+
import { IconDefinition } from '@fortawesome/angular-fontawesome';
|
|
4
|
+
import { Experience } from '../shared/types/common';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ProfileExperiencesWidgetComponent implements OnInit {
|
|
7
|
+
private service;
|
|
8
|
+
experiences: Experience[];
|
|
9
|
+
isLoading: boolean;
|
|
10
|
+
baseUrl: string;
|
|
11
|
+
sectionTitle: string;
|
|
12
|
+
viewIcon: IconDefinition;
|
|
13
|
+
downloadIcon: import("@fortawesome/pro-light-svg-icons").IconDefinition;
|
|
14
|
+
experienceIcon: import("@fortawesome/pro-light-svg-icons").IconDefinition;
|
|
15
|
+
headerIconClass: string;
|
|
16
|
+
headerTextClass: string;
|
|
17
|
+
headerDividerClass: string;
|
|
18
|
+
rowClass: string;
|
|
19
|
+
itemRowClass: string;
|
|
20
|
+
itemColumnClass: string;
|
|
21
|
+
labelClass: string;
|
|
22
|
+
valueClass: string;
|
|
23
|
+
actionsColumnClass: string;
|
|
24
|
+
viewIconClass: string;
|
|
25
|
+
downloadIconClass: string;
|
|
26
|
+
emptyStateContainerClass: string;
|
|
27
|
+
emptyStateTextClass: string;
|
|
28
|
+
isLoadingChanged: EventEmitter<boolean>;
|
|
29
|
+
attachmentViewed: EventEmitter<any>;
|
|
30
|
+
attachmentDownloaded: EventEmitter<any>;
|
|
31
|
+
errorOccurred: EventEmitter<string>;
|
|
32
|
+
constructor(service: HRSelfWidgetsService);
|
|
33
|
+
ngOnInit(): void;
|
|
34
|
+
onAttachmentView(file: any): void;
|
|
35
|
+
onAttachmentDownload(file: any): void;
|
|
36
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileExperiencesWidgetComponent, never>;
|
|
37
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileExperiencesWidgetComponent, "hr-profile-experiences-widget", never, { "baseUrl": { "alias": "baseUrl"; "required": false; }; "sectionTitle": { "alias": "sectionTitle"; "required": false; }; "viewIcon": { "alias": "viewIcon"; "required": false; }; "downloadIcon": { "alias": "downloadIcon"; "required": false; }; "experienceIcon": { "alias": "experienceIcon"; "required": false; }; "headerIconClass": { "alias": "headerIconClass"; "required": false; }; "headerTextClass": { "alias": "headerTextClass"; "required": false; }; "headerDividerClass": { "alias": "headerDividerClass"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "itemRowClass": { "alias": "itemRowClass"; "required": false; }; "itemColumnClass": { "alias": "itemColumnClass"; "required": false; }; "labelClass": { "alias": "labelClass"; "required": false; }; "valueClass": { "alias": "valueClass"; "required": false; }; "actionsColumnClass": { "alias": "actionsColumnClass"; "required": false; }; "viewIconClass": { "alias": "viewIconClass"; "required": false; }; "downloadIconClass": { "alias": "downloadIconClass"; "required": false; }; "emptyStateContainerClass": { "alias": "emptyStateContainerClass"; "required": false; }; "emptyStateTextClass": { "alias": "emptyStateTextClass"; "required": false; }; }, { "isLoadingChanged": "isLoadingChanged"; "attachmentViewed": "attachmentViewed"; "attachmentDownloaded": "attachmentDownloaded"; "errorOccurred": "errorOccurred"; }, never, never, true, never>;
|
|
38
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { HRSelfWidgetsService } from '../services/hr-self-widgets.service';
|
|
3
|
+
import { JobInformationContract } from '../shared/types/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ProfileJobInfoContractWidgetComponent implements OnInit {
|
|
6
|
+
private readonly hrSelfWidgetsService;
|
|
7
|
+
jobInformationContract: JobInformationContract | null;
|
|
8
|
+
isLoading: boolean;
|
|
9
|
+
baseUrl: string;
|
|
10
|
+
headerIconClass: string;
|
|
11
|
+
headerTextClass: string;
|
|
12
|
+
headerDividerClass: string;
|
|
13
|
+
rowClass: string;
|
|
14
|
+
columnClass: string;
|
|
15
|
+
responsiveTopSpacingColumnClass: string;
|
|
16
|
+
topSpacingBottomMdSpacingColumnClass: string;
|
|
17
|
+
topSpacingBottomSpacingColumnClass: string;
|
|
18
|
+
labelClass: string;
|
|
19
|
+
valueClass: string;
|
|
20
|
+
emptyStateContainerClass: string;
|
|
21
|
+
emptyStateTextClass: string;
|
|
22
|
+
contractIcon: import("@fortawesome/pro-light-svg-icons").IconDefinition;
|
|
23
|
+
sectionTitle: string;
|
|
24
|
+
isLoadingChanged: EventEmitter<boolean>;
|
|
25
|
+
errorOccurred: EventEmitter<string>;
|
|
26
|
+
constructor(hrSelfWidgetsService: HRSelfWidgetsService);
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileJobInfoContractWidgetComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileJobInfoContractWidgetComponent, "hr-profile-job-info-contract-widget", never, { "baseUrl": { "alias": "baseUrl"; "required": true; }; "headerIconClass": { "alias": "headerIconClass"; "required": false; }; "headerTextClass": { "alias": "headerTextClass"; "required": false; }; "headerDividerClass": { "alias": "headerDividerClass"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "columnClass": { "alias": "columnClass"; "required": false; }; "responsiveTopSpacingColumnClass": { "alias": "responsiveTopSpacingColumnClass"; "required": false; }; "topSpacingBottomMdSpacingColumnClass": { "alias": "topSpacingBottomMdSpacingColumnClass"; "required": false; }; "topSpacingBottomSpacingColumnClass": { "alias": "topSpacingBottomSpacingColumnClass"; "required": false; }; "labelClass": { "alias": "labelClass"; "required": false; }; "valueClass": { "alias": "valueClass"; "required": false; }; "emptyStateContainerClass": { "alias": "emptyStateContainerClass"; "required": false; }; "emptyStateTextClass": { "alias": "emptyStateTextClass"; "required": false; }; "contractIcon": { "alias": "contractIcon"; "required": false; }; "sectionTitle": { "alias": "sectionTitle"; "required": false; }; }, { "isLoadingChanged": "isLoadingChanged"; "errorOccurred": "errorOccurred"; }, never, never, true, never>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { HRSelfWidgetsService } from '../services/hr-self-widgets.service';
|
|
3
|
+
import { JobInformationMain } from '../shared/types/common';
|
|
4
|
+
import * as i0 from "@angular/core";
|
|
5
|
+
export declare class ProfileJobInfoMainWidgetComponent implements OnInit {
|
|
6
|
+
private readonly hrSelfWidgetsService;
|
|
7
|
+
jobInformationMain: JobInformationMain | null;
|
|
8
|
+
isLoading: boolean;
|
|
9
|
+
baseUrl: string;
|
|
10
|
+
headerIconClass: string;
|
|
11
|
+
headerTextClass: string;
|
|
12
|
+
headerDividerClass: string;
|
|
13
|
+
rowClass: string;
|
|
14
|
+
columnClass: string;
|
|
15
|
+
responsiveTopSpacingColumnClass: string;
|
|
16
|
+
topSpacingBottomMdSpacingColumnClass: string;
|
|
17
|
+
topSpacingBottomSpacingColumnClass: string;
|
|
18
|
+
labelClass: string;
|
|
19
|
+
valueClass: string;
|
|
20
|
+
emptyStateContainerClass: string;
|
|
21
|
+
emptyStateTextClass: string;
|
|
22
|
+
mainIcon: import("@fortawesome/pro-light-svg-icons").IconDefinition;
|
|
23
|
+
sectionTitle: string;
|
|
24
|
+
isLoadingChanged: EventEmitter<boolean>;
|
|
25
|
+
errorOccurred: EventEmitter<string>;
|
|
26
|
+
constructor(hrSelfWidgetsService: HRSelfWidgetsService);
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileJobInfoMainWidgetComponent, never>;
|
|
29
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileJobInfoMainWidgetComponent, "hr-profile-job-info-main-widget", never, { "baseUrl": { "alias": "baseUrl"; "required": true; }; "headerIconClass": { "alias": "headerIconClass"; "required": false; }; "headerTextClass": { "alias": "headerTextClass"; "required": false; }; "headerDividerClass": { "alias": "headerDividerClass"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "columnClass": { "alias": "columnClass"; "required": false; }; "responsiveTopSpacingColumnClass": { "alias": "responsiveTopSpacingColumnClass"; "required": false; }; "topSpacingBottomMdSpacingColumnClass": { "alias": "topSpacingBottomMdSpacingColumnClass"; "required": false; }; "topSpacingBottomSpacingColumnClass": { "alias": "topSpacingBottomSpacingColumnClass"; "required": false; }; "labelClass": { "alias": "labelClass"; "required": false; }; "valueClass": { "alias": "valueClass"; "required": false; }; "emptyStateContainerClass": { "alias": "emptyStateContainerClass"; "required": false; }; "emptyStateTextClass": { "alias": "emptyStateTextClass"; "required": false; }; "mainIcon": { "alias": "mainIcon"; "required": false; }; "sectionTitle": { "alias": "sectionTitle"; "required": false; }; }, { "isLoadingChanged": "isLoadingChanged"; "errorOccurred": "errorOccurred"; }, never, never, true, never>;
|
|
30
|
+
}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { HRSelfWidgetsService } from '../services/hr-self-widgets.service';
|
|
3
|
+
import { HRCommonMethodsService } from '../shared/services/common-methods.service';
|
|
4
|
+
import { Allowances, JobInformationSalary } from '../shared/types/common';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ProfileJobInfoSalaryWidgetComponent implements OnInit {
|
|
7
|
+
private readonly hrSelfWidgetsService;
|
|
8
|
+
private readonly commonMethodsService;
|
|
9
|
+
jobInformationSalary: JobInformationSalary | null;
|
|
10
|
+
isLoading: boolean;
|
|
11
|
+
baseUrl: string;
|
|
12
|
+
currencyCode: string;
|
|
13
|
+
currencyDecimals: number;
|
|
14
|
+
headerIconClass: string;
|
|
15
|
+
headerTextClass: string;
|
|
16
|
+
headerDividerClass: string;
|
|
17
|
+
rowClass: string;
|
|
18
|
+
columnClass: string;
|
|
19
|
+
grossSalaryColumnClass: string;
|
|
20
|
+
labelClass: string;
|
|
21
|
+
valueClass: string;
|
|
22
|
+
currencyClass: string;
|
|
23
|
+
emptyStateContainerClass: string;
|
|
24
|
+
emptyStateTextClass: string;
|
|
25
|
+
salaryIcon: import("@fortawesome/pro-light-svg-icons").IconDefinition;
|
|
26
|
+
sectionTitle: string;
|
|
27
|
+
isLoadingChanged: EventEmitter<boolean>;
|
|
28
|
+
errorOccurred: EventEmitter<string>;
|
|
29
|
+
constructor(hrSelfWidgetsService: HRSelfWidgetsService, commonMethodsService: HRCommonMethodsService);
|
|
30
|
+
ngOnInit(): void;
|
|
31
|
+
get basicSalary(): number | null;
|
|
32
|
+
get allowances(): Allowances[];
|
|
33
|
+
formatAmount(value: number | null | undefined): string;
|
|
34
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileJobInfoSalaryWidgetComponent, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileJobInfoSalaryWidgetComponent, "hr-profile-job-info-salary-widget", never, { "baseUrl": { "alias": "baseUrl"; "required": true; }; "currencyCode": { "alias": "currencyCode"; "required": false; }; "currencyDecimals": { "alias": "currencyDecimals"; "required": false; }; "headerIconClass": { "alias": "headerIconClass"; "required": false; }; "headerTextClass": { "alias": "headerTextClass"; "required": false; }; "headerDividerClass": { "alias": "headerDividerClass"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "columnClass": { "alias": "columnClass"; "required": false; }; "grossSalaryColumnClass": { "alias": "grossSalaryColumnClass"; "required": false; }; "labelClass": { "alias": "labelClass"; "required": false; }; "valueClass": { "alias": "valueClass"; "required": false; }; "currencyClass": { "alias": "currencyClass"; "required": false; }; "emptyStateContainerClass": { "alias": "emptyStateContainerClass"; "required": false; }; "emptyStateTextClass": { "alias": "emptyStateTextClass"; "required": false; }; "salaryIcon": { "alias": "salaryIcon"; "required": false; }; "sectionTitle": { "alias": "sectionTitle"; "required": false; }; }, { "isLoadingChanged": "isLoadingChanged"; "errorOccurred": "errorOccurred"; }, never, never, true, never>;
|
|
36
|
+
}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { HRSelfWidgetsService } from '../services/hr-self-widgets.service';
|
|
3
|
+
import { HRCommonMethodsService } from '../shared/services/common-methods.service';
|
|
4
|
+
import { JobInformationServiceCharge } from '../shared/types/common';
|
|
5
|
+
import * as i0 from "@angular/core";
|
|
6
|
+
export declare class ProfileJobInfoServiceChargeWidgetComponent implements OnInit {
|
|
7
|
+
private readonly hrSelfWidgetsService;
|
|
8
|
+
private readonly commonMethodsService;
|
|
9
|
+
jobInformationServiceCharge: JobInformationServiceCharge | null;
|
|
10
|
+
isLoading: boolean;
|
|
11
|
+
baseUrl: string;
|
|
12
|
+
currencyCode: string;
|
|
13
|
+
headerIconClass: string;
|
|
14
|
+
headerTextClass: string;
|
|
15
|
+
headerDividerClass: string;
|
|
16
|
+
rowClass: string;
|
|
17
|
+
columnClass: string;
|
|
18
|
+
labelClass: string;
|
|
19
|
+
valueClass: string;
|
|
20
|
+
emptyStateContainerClass: string;
|
|
21
|
+
emptyStateTextClass: string;
|
|
22
|
+
serviceChargeIcon: import("@fortawesome/pro-light-svg-icons").IconDefinition;
|
|
23
|
+
sectionTitle: string;
|
|
24
|
+
isLoadingChanged: EventEmitter<boolean>;
|
|
25
|
+
errorOccurred: EventEmitter<string>;
|
|
26
|
+
constructor(hrSelfWidgetsService: HRSelfWidgetsService, commonMethodsService: HRCommonMethodsService);
|
|
27
|
+
ngOnInit(): void;
|
|
28
|
+
get modeLabelKey(): string;
|
|
29
|
+
get value(): string;
|
|
30
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ProfileJobInfoServiceChargeWidgetComponent, never>;
|
|
31
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ProfileJobInfoServiceChargeWidgetComponent, "hr-profile-job-info-service-charge-widget", never, { "baseUrl": { "alias": "baseUrl"; "required": true; }; "currencyCode": { "alias": "currencyCode"; "required": false; }; "headerIconClass": { "alias": "headerIconClass"; "required": false; }; "headerTextClass": { "alias": "headerTextClass"; "required": false; }; "headerDividerClass": { "alias": "headerDividerClass"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "columnClass": { "alias": "columnClass"; "required": false; }; "labelClass": { "alias": "labelClass"; "required": false; }; "valueClass": { "alias": "valueClass"; "required": false; }; "emptyStateContainerClass": { "alias": "emptyStateContainerClass"; "required": false; }; "emptyStateTextClass": { "alias": "emptyStateTextClass"; "required": false; }; "serviceChargeIcon": { "alias": "serviceChargeIcon"; "required": false; }; "sectionTitle": { "alias": "sectionTitle"; "required": false; }; }, { "isLoadingChanged": "isLoadingChanged"; "errorOccurred": "errorOccurred"; }, never, never, true, never>;
|
|
32
|
+
}
|
|
@@ -186,14 +186,27 @@ export declare enum VacationPopupType {
|
|
|
186
186
|
Upcoming = 1,
|
|
187
187
|
ExpectedToReturn = 2
|
|
188
188
|
}
|
|
189
|
+
export type ScheduleRequestsResponse = {
|
|
190
|
+
PendingVacationRequests: {
|
|
191
|
+
VacationTypeName: string;
|
|
192
|
+
Color: string;
|
|
193
|
+
StartDate: Date;
|
|
194
|
+
EndDate: Date;
|
|
195
|
+
}[];
|
|
196
|
+
PendingEventRequests: {
|
|
197
|
+
Description: string;
|
|
198
|
+
StartDate: Date;
|
|
199
|
+
EndDate: Date;
|
|
200
|
+
}[];
|
|
201
|
+
};
|
|
189
202
|
export type EntitlementsVacation = {
|
|
190
|
-
VacationTypeName: string;
|
|
191
|
-
EntitlementDays:
|
|
203
|
+
VacationTypeName: string | null;
|
|
204
|
+
EntitlementDays: number | null;
|
|
192
205
|
};
|
|
193
206
|
export type EntitlementsIndemnity = {
|
|
194
207
|
IsEligibleForIndemnity: boolean | null;
|
|
195
208
|
IndemnityServiceYears: number | null;
|
|
196
|
-
IndemnityStartDate: Date | null;
|
|
209
|
+
IndemnityStartDate: string | Date | null;
|
|
197
210
|
IndemnitySalary: number | null;
|
|
198
211
|
};
|
|
199
212
|
export type EmployeeTicketDetails = {
|
|
@@ -230,19 +243,6 @@ export type EntitlementsMedicalInsurance = {
|
|
|
230
243
|
TotalEmployeeShare: number | null;
|
|
231
244
|
TotalEmployerShare: number | null;
|
|
232
245
|
};
|
|
233
|
-
export type ScheduleRequestsResponse = {
|
|
234
|
-
PendingVacationRequests: {
|
|
235
|
-
VacationTypeName: string;
|
|
236
|
-
Color: string;
|
|
237
|
-
StartDate: Date;
|
|
238
|
-
EndDate: Date;
|
|
239
|
-
}[];
|
|
240
|
-
PendingEventRequests: {
|
|
241
|
-
Description: string;
|
|
242
|
-
StartDate: Date;
|
|
243
|
-
EndDate: Date;
|
|
244
|
-
}[];
|
|
245
|
-
};
|
|
246
246
|
export type DocumentModel = {
|
|
247
247
|
Key: string;
|
|
248
248
|
ContentType: string;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -7,9 +7,16 @@ export * from './lib/shared/pipes/translate.pipe';
|
|
|
7
7
|
export * from './lib/shared/components/card-header/card-header.component';
|
|
8
8
|
export * from './lib/my-calendar-widget/my-calendar-widget.component';
|
|
9
9
|
export * from './lib/shared/components/hr-employee-calendar/hr-employee-calendar.component';
|
|
10
|
+
export * from './lib/profile-bank-info-widget/profile-bank-info-widget.component';
|
|
10
11
|
export * from './lib/profile-personal-info-main-widget/profile-personal-info-main-widget.component';
|
|
11
12
|
export * from './lib/profile-personal-info-contact-widget/profile-personal-info-contact-widget.component';
|
|
12
13
|
export * from './lib/profile-personal-info-languages-widget/profile-personal-info-languages-widget.component';
|
|
13
14
|
export * from './lib/profile-personal-info-other-nationalities-widget/profile-personal-info-other-nationalities-widget.component';
|
|
14
15
|
export * from './lib/profile-profile-personal-info-address-widget/profile-personal-info-address-widget.component';
|
|
16
|
+
export * from './lib/profile-job-info-main-widget/profile-job-info-main-widget.component';
|
|
17
|
+
export * from './lib/profile-job-info-contract-widget/profile-job-info-contract-widget.component';
|
|
18
|
+
export * from './lib/profile-job-info-salary-widget/profile-job-info-salary-widget.component';
|
|
19
|
+
export * from './lib/profile-job-info-service-charge-widget/profile-job-info-service-charge-widget.component';
|
|
15
20
|
export * from './lib/my-vacation-team-widget/my-vacation-team-widget.component';
|
|
21
|
+
export * from './lib/profile-experiences-widget/profile-experiences-widget-component';
|
|
22
|
+
export * from './lib/profile-degrees-widget/profile-degrees-widget-component';
|