@testgorilla/tgo-ui 2.24.4 → 2.24.5

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/components/autocomplete/autocomplete.component.d.ts +6 -6
  2. package/components/badge/badge.model.d.ts +2 -1
  3. package/components/spider-chart/spider-chart.component.d.ts +88 -0
  4. package/components/spider-chart/spider-chart.model.d.ts +12 -0
  5. package/components/spider-chart/spider-chart.module.d.ts +12 -0
  6. package/components/universal-skills-report/universal-skills-report.component.d.ts +33 -0
  7. package/components/universal-skills-report/universal-skills-report.component.module.d.ts +14 -0
  8. package/components/universal-skills-report/universal-skills-report.model.d.ts +33 -0
  9. package/esm2022/assets/i18n/en.json +36 -0
  10. package/esm2022/components/autocomplete/autocomplete.component.mjs +40 -36
  11. package/esm2022/components/badge/badge.component.mjs +2 -2
  12. package/esm2022/components/badge/badge.model.mjs +2 -1
  13. package/esm2022/components/spider-chart/spider-chart.component.mjs +425 -0
  14. package/esm2022/components/spider-chart/spider-chart.model.mjs +4 -0
  15. package/esm2022/components/spider-chart/spider-chart.module.mjs +41 -0
  16. package/esm2022/components/universal-skills-report/universal-skills-report.component.mjs +115 -0
  17. package/esm2022/components/universal-skills-report/universal-skills-report.component.module.mjs +43 -0
  18. package/esm2022/components/universal-skills-report/universal-skills-report.model.mjs +19 -0
  19. package/esm2022/pipes/ui-ordinal-suffix.pipe.mjs +31 -0
  20. package/esm2022/public-api.mjs +9 -1
  21. package/fesm2022/testgorilla-tgo-ui.mjs +1544 -861
  22. package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -1
  23. package/package.json +3 -1
  24. package/pipes/ui-ordinal-suffix.pipe.d.ts +7 -0
  25. package/projects/tgo-canopy-ui/assets/i18n/en.json +36 -0
  26. package/public-api.d.ts +6 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@testgorilla/tgo-ui",
3
- "version": "2.24.4",
3
+ "version": "2.24.5",
4
4
  "license": "proprietary-license",
5
5
  "lint-staged": {
6
6
  "src/**/*.ts": [
@@ -27,7 +27,9 @@
27
27
  "@angular/platform-browser": "~17.3.7",
28
28
  "@angular/platform-browser-dynamic": "~17.3.7",
29
29
  "@angular/router": "~17.3.7",
30
+ "chart.js": "^4.4.5",
30
31
  "libphonenumber-js": "^1.10.59",
32
+ "ng2-charts": "^5.0.4",
31
33
  "ngx-mat-select-search": "^7.0.6",
32
34
  "ngx-skeleton-loader": "^8.1.0",
33
35
  "rxjs": "~7.8.0",
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import * as i0 from "@angular/core";
3
+ export declare class OrdinalSuffixPipe implements PipeTransform {
4
+ transform(value: number): string;
5
+ static ɵfac: i0.ɵɵFactoryDeclaration<OrdinalSuffixPipe, never>;
6
+ static ɵpipe: i0.ɵɵPipeDeclaration<OrdinalSuffixPipe, "ordinalSuffix", true>;
7
+ }
@@ -17,6 +17,12 @@
17
17
  "MAX_LESS_THAN_MIN": "Max value ({{max}}) cannot be less then current min value ({{min}})",
18
18
  "MIN_MORE_THAN_MAX": "Min value ({{min}}) cannot be more then current max value ({{max}})"
19
19
  },
20
+ "CHARTS": {
21
+ "SPIDER": {
22
+ "DATASET_HIDDEN": "{{dataset}} hidden. Press enter to show",
23
+ "DATASET_VISIBLE": "{{dataset}} visible. Press enter to hide"
24
+ }
25
+ },
20
26
  "DATEPICKER": {
21
27
  "START_DATE": "Start date",
22
28
  "END_DATE": "End date"
@@ -122,6 +128,36 @@
122
128
  "TAG": {
123
129
  "REMOVE": "Remove tag"
124
130
  },
131
+ "UNIVERSAL_SKILLS_REPORT": {
132
+ "PERCENTILE": "percentile",
133
+ "SKILL_AREA_GROUP_TYPES": {
134
+ "FOCUSING_ON_OBJECTIVES": {
135
+ "TITLE": "Focusing on objectives",
136
+ "DESCRIPTION": "The skill cluster Focusing on objectives assesses an individual's capability in achieving goals."
137
+ },
138
+ "WORKING_WITH_PEOPLE": {
139
+ "TITLE": "Working with people",
140
+ "DESCRIPTION": "The skill cluster Working with people assesses an individual's capability in fostering interpersonal connections and collaborations."
141
+ },
142
+ "MANAGING_ONES_SELF": {
143
+ "TITLE": "Managing one's self",
144
+ "DESCRIPTION": "The skill cluster Managing one’s self assesses an individual’s capability in using inner resources to adapt, overcome, learn, and explore new possibilities."
145
+ }
146
+ },
147
+ "BADGE_LABEL_TYPES": {
148
+ "WELL_BELLOW_AVERAGE": "Well below average",
149
+ "BELLOW_AVERAGE": "Below average",
150
+ "AVERAGE": "Average",
151
+ "ABOVE_AVERAGE": "Above average",
152
+ "WELL_ABOVE_AVERAGE": "Well above average"
153
+ }
154
+ },
155
+ "PERCENTILE_SUFFIXES": {
156
+ "ST": "st",
157
+ "ND": "nd",
158
+ "RD": "rd",
159
+ "TH": "th"
160
+ },
125
161
  "TOOLTIP": {
126
162
  "DETAILS": "Details"
127
163
  }
package/public-api.d.ts CHANGED
@@ -1,3 +1,6 @@
1
+ export * from './components/universal-skills-report/universal-skills-report.component';
2
+ export * from './components/universal-skills-report/universal-skills-report.component.module';
3
+ export * from './components/universal-skills-report/universal-skills-report.model';
1
4
  export * from './components/alert-banner/alert-banner.component';
2
5
  export * from './components/alert-banner/alert-banner.component.module';
3
6
  export * from './components/button/button.component';
@@ -141,6 +144,9 @@ export * from './components/validation-error/validation-error.module';
141
144
  export * from './components/side-panel/side-panel.component';
142
145
  export * from './components/side-panel/side-panel.model';
143
146
  export * from './components/side-panel/side-panel.service';
147
+ export * from './components/spider-chart/spider-chart.component';
148
+ export * from './components/spider-chart/spider-chart.module';
149
+ export * from './components/spider-chart/spider-chart.model';
144
150
  export * from './components/checklist/checklist.component';
145
151
  export * from './components/checklist/checklist.model';
146
152
  export * from './components/media-card/media-card.component';