@skysoftware-co/bayan-hr-widgets-ui 1.0.34 → 1.0.35

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.
@@ -0,0 +1,22 @@
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
+ import { Dependent } from '../shared/types/common';
3
+ import { HRSelfWidgetsService } from '../services/hr-self-widgets.service';
4
+ import * as i0 from "@angular/core";
5
+ export declare class DependentsWidgetComponent implements OnInit {
6
+ private readonly service;
7
+ baseUrl: string;
8
+ sectionTitle: string;
9
+ icon: import("@fortawesome/pro-light-svg-icons").IconDefinition;
10
+ headerIconClass: string;
11
+ headerTextClass: string;
12
+ headerDividerClass: string;
13
+ emptyStateContainerClass: string;
14
+ emptyStateTextClass: string;
15
+ dependents: Dependent[];
16
+ isLoading: boolean;
17
+ isLoadingChanged: EventEmitter<boolean>;
18
+ constructor(service: HRSelfWidgetsService);
19
+ ngOnInit(): void;
20
+ static ɵfac: i0.ɵɵFactoryDeclaration<DependentsWidgetComponent, never>;
21
+ static ɵcmp: i0.ɵɵComponentDeclaration<DependentsWidgetComponent, "hr-profile-dependents-widget", never, { "baseUrl": { "alias": "baseUrl"; "required": false; }; "sectionTitle": { "alias": "sectionTitle"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "headerIconClass": { "alias": "headerIconClass"; "required": false; }; "headerTextClass": { "alias": "headerTextClass"; "required": false; }; "headerDividerClass": { "alias": "headerDividerClass"; "required": false; }; "emptyStateContainerClass": { "alias": "emptyStateContainerClass"; "required": false; }; "emptyStateTextClass": { "alias": "emptyStateTextClass"; "required": false; }; }, { "isLoadingChanged": "isLoadingChanged"; }, never, never, true, never>;
22
+ }
@@ -0,0 +1,10 @@
1
+ import { TemplateRef } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class WidgetCardComponent {
4
+ cardClass: string;
5
+ height: number;
6
+ contentTemplate: TemplateRef<any>;
7
+ context: any;
8
+ static ɵfac: i0.ɵɵFactoryDeclaration<WidgetCardComponent, never>;
9
+ static ɵcmp: i0.ɵɵComponentDeclaration<WidgetCardComponent, "hr-widget-card", never, { "cardClass": { "alias": "cardClass"; "required": false; }; "height": { "alias": "height"; "required": false; }; "contentTemplate": { "alias": "contentTemplate"; "required": false; }; "context": { "alias": "context"; "required": false; }; }, {}, never, never, true, never>;
10
+ }
@@ -243,6 +243,10 @@ export type EntitlementsMedicalInsurance = {
243
243
  TotalEmployeeShare: number | null;
244
244
  TotalEmployerShare: number | null;
245
245
  };
246
+ export type DocumentModel = {
247
+ Key: string;
248
+ ContentType: string;
249
+ };
246
250
  export type Degree = {
247
251
  DegreeName: string;
248
252
  DegreeYear: string;
@@ -259,10 +263,6 @@ export type Experience = {
259
263
  TerminationReason: string;
260
264
  Document: DocumentModel | null;
261
265
  };
262
- export type DocumentModel = {
263
- Key: string;
264
- ContentType: string;
265
- };
266
266
  export type Dependent = {
267
267
  DependentName: string;
268
268
  DependentTypeName: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@skysoftware-co/bayan-hr-widgets-ui",
3
- "version": "1.0.34",
3
+ "version": "1.0.35",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "19.2.14",
6
6
  "@angular/core": "19.2.14",
package/public-api.d.ts CHANGED
@@ -21,3 +21,4 @@ export * from './lib/profile-job-info-service-charge-widget/profile-job-info-ser
21
21
  export * from './lib/my-next-week-vacation-insights-widget/my-next-week-vacation-insights-widget.component';
22
22
  export * from './lib/profile-experiences-widget/profile-experiences-widget-component';
23
23
  export * from './lib/profile-degrees-widget/profile-degrees-widget-component';
24
+ export * from './lib/profile-employee-dependents-widget/profile-employee-dependents-component';