@skysoftware-co/bayan-hr-widgets-ui 1.0.12 → 1.0.14

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 (26) hide show
  1. package/README.md +19 -140
  2. package/fesm2022/skysoftware-co-bayan-hr-widgets-ui.mjs +1065 -102
  3. package/fesm2022/skysoftware-co-bayan-hr-widgets-ui.mjs.map +1 -1
  4. package/lib/my-vacation-team-widget/components/vacation-subordinates-popup/vacation-subordinates-popup.component.d.ts +38 -0
  5. package/lib/my-vacation-team-widget/my-vacation-team-widget.component.d.ts +31 -0
  6. package/lib/profile-bank-information-widget/profile-bank-information-widget.component.d.ts +5 -3
  7. package/lib/profile-job-information-contract-widget/profile-job-information-contract-widget.component.d.ts +30 -0
  8. package/lib/profile-job-information-main-widget/profile-job-information-main-widget.component.d.ts +30 -0
  9. package/lib/profile-job-information-salary-widget/profile-job-information-salary-widget.component.d.ts +36 -0
  10. package/lib/profile-job-information-service-charge-widget/profile-job-information-service-charge-widget.component.d.ts +32 -0
  11. package/lib/profile-personal-info-contact-widget/profile-personal-info-contact-widget.component.d.ts +2 -1
  12. package/lib/profile-personal-info-languages-widget/profile-personal-info-languages-widget.component.d.ts +2 -1
  13. package/lib/profile-personal-info-main-widget/profile-personal-info-main-widget.component.d.ts +2 -1
  14. package/lib/profile-personal-info-other-nationalities-widget/profile-personal-info-other-nationalities-widget.component.d.ts +2 -1
  15. package/lib/profile-profile-personal-info-address-widget/profile-personal-info-address-widget.component.d.ts +2 -1
  16. package/lib/services/hr-self-widgets.service.d.ts +10 -2
  17. package/lib/shared/services/job-information-cache.service.d.ts +22 -0
  18. package/lib/shared/types/common.d.ts +64 -26
  19. package/package.json +1 -1
  20. package/public-api.d.ts +6 -1
  21. package/lib/my-bank-information-widget/my-bank-information-widget.component.d.ts +0 -41
  22. package/lib/personal-info-address-widget/personal-info-address-widget.component.d.ts +0 -25
  23. package/lib/personal-info-contact-widget/personal-info-contact-widget.component.d.ts +0 -28
  24. package/lib/personal-info-languages-widget/personal-info-languages-widget.component.d.ts +0 -22
  25. package/lib/personal-info-main-widget/personal-info-main-widget.component.d.ts +0 -28
  26. package/lib/personal-info-other-nationalities-widget/personal-info-other-nationalities-widget.component.d.ts +0 -22
@@ -1,25 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { PersonalInfoAddressDetails } from '../shared/types/common';
3
- import { HRSelfWidgetsService } from '../services/hr-self-widgets.service';
4
- import * as i0 from "@angular/core";
5
- export declare class PersonalInfoAddressWidgetComponent implements OnInit {
6
- private readonly hrSelfWidgetsService;
7
- personalInfoAddressDetails: PersonalInfoAddressDetails | null;
8
- baseUrl: string;
9
- headerIconClass: string;
10
- headerTextClass: string;
11
- headerDividerClass: string;
12
- rowClass: string;
13
- columnClass: string;
14
- responsiveTopSpacingColumnClass: string;
15
- topSpacingBottomSpacingColumnClass: string;
16
- labelClass: string;
17
- valueClass: string;
18
- addressIcon: import("@fortawesome/pro-light-svg-icons").IconDefinition;
19
- sectionTitle: string;
20
- isLoadingChanged: EventEmitter<boolean>;
21
- constructor(hrSelfWidgetsService: HRSelfWidgetsService);
22
- ngOnInit(): void;
23
- static ɵfac: i0.ɵɵFactoryDeclaration<PersonalInfoAddressWidgetComponent, never>;
24
- static ɵcmp: i0.ɵɵComponentDeclaration<PersonalInfoAddressWidgetComponent, "hr-personal-info-address-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; }; "topSpacingBottomSpacingColumnClass": { "alias": "topSpacingBottomSpacingColumnClass"; "required": false; }; "labelClass": { "alias": "labelClass"; "required": false; }; "valueClass": { "alias": "valueClass"; "required": false; }; "addressIcon": { "alias": "addressIcon"; "required": false; }; "sectionTitle": { "alias": "sectionTitle"; "required": false; }; }, { "isLoadingChanged": "isLoadingChanged"; }, never, never, true, never>;
25
- }
@@ -1,28 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { PersonalInfoContactDetails } from '../shared/types/common';
3
- import { HRSelfWidgetsService } from '../services/hr-self-widgets.service';
4
- import * as i0 from "@angular/core";
5
- export declare class PersonalInfoContactWidgetComponent implements OnInit {
6
- private readonly hrSelfWidgetsService;
7
- employeePersonalInfoContactDetails: PersonalInfoContactDetails | null;
8
- baseUrl: string;
9
- headerIconClass: string;
10
- headerTextClass: string;
11
- headerDividerClass: string;
12
- rowClass: string;
13
- columnClass: string;
14
- responsiveTopSpacingColumnClass: string;
15
- topSpacingBottomMdSpacingColumnClass: string;
16
- topSpacingBottomSpacingColumnClass: string;
17
- labelClass: string;
18
- valueClass: string;
19
- emergencyContactLabelClass: string;
20
- contactIcon: import("@fortawesome/pro-light-svg-icons").IconDefinition;
21
- sectionTitle: string;
22
- showEmergencyContact: boolean;
23
- isLoadingChanged: EventEmitter<boolean>;
24
- constructor(hrSelfWidgetsService: HRSelfWidgetsService);
25
- ngOnInit(): void;
26
- static ɵfac: i0.ɵɵFactoryDeclaration<PersonalInfoContactWidgetComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<PersonalInfoContactWidgetComponent, "hr-personal-info-contact-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; }; "emergencyContactLabelClass": { "alias": "emergencyContactLabelClass"; "required": false; }; "contactIcon": { "alias": "contactIcon"; "required": false; }; "sectionTitle": { "alias": "sectionTitle"; "required": false; }; "showEmergencyContact": { "alias": "showEmergencyContact"; "required": false; }; }, { "isLoadingChanged": "isLoadingChanged"; }, never, never, true, never>;
28
- }
@@ -1,22 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { HRSelfWidgetsService } from '../services/hr-self-widgets.service';
3
- import * as i0 from "@angular/core";
4
- export declare class PersonalInfoLanguagesWidgetComponent implements OnInit {
5
- private readonly hrSelfWidgetsService;
6
- languages: string[] | null;
7
- baseUrl: string;
8
- headerIconClass: string;
9
- headerTextClass: string;
10
- headerDividerClass: string;
11
- contentTextClass: string;
12
- hasDataChange: EventEmitter<boolean>;
13
- languagesIcon: import("@fortawesome/pro-light-svg-icons").IconDefinition;
14
- sectionTitle: string;
15
- isLoadingChanged: EventEmitter<boolean>;
16
- constructor(hrSelfWidgetsService: HRSelfWidgetsService);
17
- ngOnInit(): void;
18
- private emitHasData;
19
- getLanguages(): string;
20
- static ɵfac: i0.ɵɵFactoryDeclaration<PersonalInfoLanguagesWidgetComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<PersonalInfoLanguagesWidgetComponent, "hr-personal-info-languages-widget", never, { "baseUrl": { "alias": "baseUrl"; "required": false; }; "headerIconClass": { "alias": "headerIconClass"; "required": false; }; "headerTextClass": { "alias": "headerTextClass"; "required": false; }; "headerDividerClass": { "alias": "headerDividerClass"; "required": false; }; "contentTextClass": { "alias": "contentTextClass"; "required": false; }; "languagesIcon": { "alias": "languagesIcon"; "required": false; }; "sectionTitle": { "alias": "sectionTitle"; "required": false; }; }, { "hasDataChange": "hasDataChange"; "isLoadingChanged": "isLoadingChanged"; }, never, never, true, never>;
22
- }
@@ -1,28 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { PersonalInfoMainDetails } from '../shared/types/common';
3
- import { HRSelfWidgetsService } from '../services/hr-self-widgets.service';
4
- import * as i0 from "@angular/core";
5
- export declare class PersonalInfoMainWidgetComponent implements OnInit {
6
- private readonly hrSelfWidgetsService;
7
- employeePersonalInformation: PersonalInfoMainDetails | null;
8
- baseUrl: string;
9
- alternateLanguage: string;
10
- headerIconClass: string;
11
- headerTextClass: string;
12
- headerDividerClass: string;
13
- rowClass: string;
14
- columnClass: string;
15
- hiddenSpacerColClass: string;
16
- topSpacingColumnClass: string;
17
- topSpacingBottomMdSpacingColumnClass: string;
18
- topSpacingBottomSpacingColumnClass: string;
19
- labelClass: string;
20
- valueClass: string;
21
- mainIcon: import("@fortawesome/pro-light-svg-icons").IconDefinition;
22
- sectionTitle: string;
23
- isLoadingChanged: EventEmitter<boolean>;
24
- constructor(hrSelfWidgetsService: HRSelfWidgetsService);
25
- ngOnInit(): void;
26
- static ɵfac: i0.ɵɵFactoryDeclaration<PersonalInfoMainWidgetComponent, never>;
27
- static ɵcmp: i0.ɵɵComponentDeclaration<PersonalInfoMainWidgetComponent, "hr-personal-info-main-widget", never, { "baseUrl": { "alias": "baseUrl"; "required": true; }; "alternateLanguage": { "alias": "alternateLanguage"; "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; }; "hiddenSpacerColClass": { "alias": "hiddenSpacerColClass"; "required": false; }; "topSpacingColumnClass": { "alias": "topSpacingColumnClass"; "required": false; }; "topSpacingBottomMdSpacingColumnClass": { "alias": "topSpacingBottomMdSpacingColumnClass"; "required": false; }; "topSpacingBottomSpacingColumnClass": { "alias": "topSpacingBottomSpacingColumnClass"; "required": false; }; "labelClass": { "alias": "labelClass"; "required": false; }; "valueClass": { "alias": "valueClass"; "required": false; }; "mainIcon": { "alias": "mainIcon"; "required": false; }; "sectionTitle": { "alias": "sectionTitle"; "required": false; }; }, { "isLoadingChanged": "isLoadingChanged"; }, never, never, true, never>;
28
- }
@@ -1,22 +0,0 @@
1
- import { EventEmitter, OnInit } from '@angular/core';
2
- import { HRSelfWidgetsService } from '../services/hr-self-widgets.service';
3
- import * as i0 from "@angular/core";
4
- export declare class PersonalInfoOtherNationalitiesWidgetComponent implements OnInit {
5
- private readonly hrSelfWidgetsService;
6
- personalInfo: string[] | null;
7
- baseUrl: string;
8
- headerIconClass: string;
9
- headerTextClass: string;
10
- headerDividerClass: string;
11
- contentTextClass: string;
12
- hasDataChange: EventEmitter<boolean>;
13
- isLoadingChanged: EventEmitter<boolean>;
14
- otherNationalitiesIcon: import("@fortawesome/pro-light-svg-icons").IconDefinition;
15
- sectionTitle: string;
16
- constructor(hrSelfWidgetsService: HRSelfWidgetsService);
17
- ngOnInit(): void;
18
- private emitHasData;
19
- getOtherNationalities(): string;
20
- static ɵfac: i0.ɵɵFactoryDeclaration<PersonalInfoOtherNationalitiesWidgetComponent, never>;
21
- static ɵcmp: i0.ɵɵComponentDeclaration<PersonalInfoOtherNationalitiesWidgetComponent, "hr-personal-info-other-nationalities-widget", never, { "baseUrl": { "alias": "baseUrl"; "required": true; }; "headerIconClass": { "alias": "headerIconClass"; "required": false; }; "headerTextClass": { "alias": "headerTextClass"; "required": false; }; "headerDividerClass": { "alias": "headerDividerClass"; "required": false; }; "contentTextClass": { "alias": "contentTextClass"; "required": false; }; "otherNationalitiesIcon": { "alias": "otherNationalitiesIcon"; "required": false; }; "sectionTitle": { "alias": "sectionTitle"; "required": false; }; }, { "hasDataChange": "hasDataChange"; "isLoadingChanged": "isLoadingChanged"; }, never, never, true, never>;
22
- }