@testgorilla/tgo-ui 2.25.0 → 2.25.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.
@@ -10,7 +10,7 @@ export interface TableConfig<T = any> {
10
10
  sortable?: boolean;
11
11
  }
12
12
  export interface TableConfigWithPagination<T> extends TableConfig<T> {
13
- pagination: Pagination;
13
+ pagination?: Pagination;
14
14
  }
15
15
  export interface TableColumn<T = any> {
16
16
  title?: string;
@@ -19,7 +19,7 @@ export declare class UniversalSkillsReportComponent implements OnInit {
19
19
  * @memberof UniversalSkillsReportComponent
20
20
  */
21
21
  skillAreaDataList: SkillAreaData[];
22
- readonly translationContext = "UNIVERSAL_SKILLS_REPORT";
22
+ readonly translationContext = "UNIVERSAL_SKILLS_REPORT.";
23
23
  skillAreaGroupMap: Record<SkillAreaGroupTypes, SkillAreaGroup>;
24
24
  constructor(defaultAppTheme: ApplicationTheme);
25
25
  ngOnInit(): void;
@@ -27,7 +27,7 @@ export declare class UniversalSkillsReportComponent implements OnInit {
27
27
  getScoreBadgeColor(percentileScoring: number): RebrandBadgeColor;
28
28
  private initializeSkillAreaGroupMap;
29
29
  private prepareSkillAreaGroupMap;
30
- private checkScoreClassification;
30
+ checkScoreClassification([percentileScoring, isLabelRequest]: [number, boolean]): string | RebrandBadgeColor;
31
31
  static ɵfac: i0.ɵɵFactoryDeclaration<UniversalSkillsReportComponent, [{ optional: true; }]>;
32
32
  static ɵcmp: i0.ɵɵComponentDeclaration<UniversalSkillsReportComponent, "ui-universal-skills-report", never, { "applicationTheme": { "alias": "applicationTheme"; "required": false; }; "skillAreaDataList": { "alias": "skillAreaDataList"; "required": false; }; }, {}, never, never, false, never>;
33
33
  }
@@ -5,17 +5,7 @@ export interface SkillAreaGroup {
5
5
  }
6
6
  export interface SkillAreaData {
7
7
  percentileScoring: number;
8
- skillArea: SkillArea;
9
- reportGroup: ReportBox[];
10
- }
11
- export interface SkillArea {
12
- type: string;
13
- title: string;
14
- description: string;
15
- }
16
- export interface ReportBox {
17
- title: string;
18
- description: string;
8
+ skillAreaName: SkillAreaTypes;
19
9
  }
20
10
  export declare enum SkillAreaGroupTypes {
21
11
  FocusingOnObjectives = 1,
@@ -23,11 +13,25 @@ export declare enum SkillAreaGroupTypes {
23
13
  ManagingOnesSelf = 3
24
14
  }
25
15
  export declare enum SkillAreaTypes {
26
- BusinessSavvy = "business_savvy",
27
- CustomerFocus = "customer_focus",
28
- BuildingRelationships = "building_relationships",
29
- HandlingConflict = "handling_conflict",
30
- CommunicatingEffectively = "communicating_effectively",
31
- EarningTrust = "earning_trust",
32
- ShowingResilience = "showing_resilience"
16
+ BusinessSavvy = "BUSINESS_SAVVY",
17
+ StrategicPerspective = "STRATEGIC_PERSPECTIVE",
18
+ CustomerFocus = "CUSTOMER_FOCUS",
19
+ NavigatingComplexity = "NAVIGATING_COMPLEXITY",
20
+ AgileDecisionMaking = "AGILE_DECISION_MAKING",
21
+ EmbracingInnovation = "EMBRACING_INNOVATION",
22
+ PlanningAndPrioritizing = "PLANNING_AND_PRIORITIZING",
23
+ OrganizingResources = "ORGANIZING_RESOURCES",
24
+ DrivingResults = "DRIVING_RESULTS",
25
+ WorkingCollaboratively = "WORKING_COLLABORATIVELY",
26
+ SocialAgility = "SOCIAL_AGILITY",
27
+ CommunicatingEffectively = "COMMUNICATING_EFFECTIVELY",
28
+ HandlingConflict = "HANDLING_CONFLICT",
29
+ ValuingDiversity = "VALUING_DIVERSITY",
30
+ DevelopingOthers = "DEVELOPING_OTHERS",
31
+ ShowingResilience = "SHOWING_RESILIENCE",
32
+ NavigatingAmbiguity = "NAVIGATING_AMBIGUITY",
33
+ SelfAwareness = "SELF_AWARENESS",
34
+ SelfDevelopment = "SELF_DEVELOPMENT",
35
+ BeingBold = "BEING_BOLD",
36
+ EarningTrust = "EARNING_TRUST"
33
37
  }