@testgorilla/tgo-ui 2.99.1 → 3.0.0
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/components/alert-banner/alert-banner.component.d.ts +9 -1
- package/components/autocomplete/autocomplete.component.d.ts +21 -4
- package/components/autocomplete/autocomplete.component.module.d.ts +2 -1
- package/components/avatar/avatar.component.module.d.ts +2 -1
- package/components/button/button.component.d.ts +14 -3
- package/components/button/button.model.d.ts +2 -2
- package/components/card/card.component.d.ts +16 -4
- package/components/checkbox/checkbox.component.d.ts +15 -4
- package/components/checklist/checklist.model.d.ts +1 -0
- package/components/confirm-dialog/confirm-dialog.component.d.ts +11 -2
- package/components/confirm-dialog/confirm-dialog.model.d.ts +8 -0
- package/components/datepicker/{DateAdapter.d.ts → date-adapter.d.ts} +6 -2
- package/components/datepicker/datepicker.component.d.ts +4 -4
- package/components/dialog/dialog.component.d.ts +10 -1
- package/components/dialog/dialog.model.d.ts +12 -0
- package/components/dialog/dialog.service.d.ts +3 -2
- package/components/dropdown/dropdown.component.d.ts +12 -2
- package/components/empty-state/empty-state.component.d.ts +38 -1
- package/components/field/field.component.d.ts +39 -9
- package/components/file-upload/file-upload.component.d.ts +19 -2
- package/components/filter-button/filter-button.component.d.ts +140 -0
- package/components/filter-button/filter-button.component.module.d.ts +18 -0
- package/components/filter-button/filter-button.model.d.ts +13 -0
- package/components/gaussian-chart/gaussian-chart.component.d.ts +75 -0
- package/components/gaussian-chart/gaussian-chart.module.d.ts +13 -0
- package/components/icon/icon.config.d.ts +1 -1
- package/components/logo/logo.component.d.ts +1 -1
- package/components/multi-input/multi-input.component.d.ts +14 -7
- package/components/navbar/mobile-navbar-side-sheet/mobile-navbar-side-sheet.component.d.ts +5 -3
- package/components/navbar/navbar.component.d.ts +11 -4
- package/components/page-header/page-header.component.d.ts +1 -1
- package/components/password-criteria/password.component.d.ts +3 -1
- package/components/radio-button/radio-button.component.d.ts +11 -1
- package/components/scale/scale.component.d.ts +1 -0
- package/components/side-panel/side-panel.service.d.ts +2 -2
- package/components/slider/slider.component.d.ts +19 -8
- package/components/slider/slider.component.module.d.ts +1 -8
- package/components/spider-chart/spider-chart.component.d.ts +2 -0
- package/components/spider-chart/spider-chart.module.d.ts +3 -2
- package/components/spinner/spinner.component.d.ts +7 -1
- package/components/step/step.component.d.ts +12 -4
- package/components/stepper/stepper.component.d.ts +11 -3
- package/components/table/table.component.d.ts +30 -7
- package/components/table/table.component.module.d.ts +1 -1
- package/components/table/table.model.d.ts +13 -4
- package/components/tabs/tab.directive.d.ts +2 -1
- package/components/tabs/tabs.component.d.ts +3 -0
- package/components/tabs/tabs.component.module.d.ts +2 -1
- package/components/tabs/tabs.model.d.ts +2 -0
- package/components/universal-skills-report/universal-skills-report.component.d.ts +7 -7
- package/components/universal-skills-spider-charts/universal-skills-spider-charts.component.d.ts +47 -0
- package/components/universal-skills-spider-charts/universal-skills-spider-charts.component.module.d.ts +16 -0
- package/{components/deprecated-table/directives → directives}/dynamic-component.directive.d.ts +9 -2
- package/esm2022/assets/i18n/da-dk.json +62 -1
- package/esm2022/assets/i18n/de.json +62 -1
- package/esm2022/assets/i18n/en.json +664 -10
- package/esm2022/assets/i18n/es.json +62 -1
- package/esm2022/assets/i18n/fr.json +62 -1
- package/esm2022/assets/i18n/it-it.json +62 -1
- package/esm2022/assets/i18n/ja-jp.json +62 -1
- package/esm2022/assets/i18n/nb-no.json +62 -1
- package/esm2022/assets/i18n/nl.json +62 -1
- package/esm2022/assets/i18n/pl-pl.json +62 -1
- package/esm2022/assets/i18n/pt-br.json +62 -1
- package/esm2022/assets/i18n/sv-se.json +62 -1
- package/esm2022/components/accordion/accordion.component.mjs +5 -5
- package/esm2022/components/accordion/accordion.component.module.mjs +4 -4
- package/esm2022/components/alert-banner/alert-banner.component.mjs +15 -5
- package/esm2022/components/alert-banner/alert-banner.component.module.mjs +4 -4
- package/esm2022/components/autocomplete/autocomplete.component.mjs +113 -21
- package/esm2022/components/autocomplete/autocomplete.component.module.mjs +11 -7
- package/esm2022/components/autocomplete/includes.pipe.mjs +3 -3
- package/esm2022/components/autocomplete/prevent-input.directive.mjs +3 -3
- package/esm2022/components/autocomplete/transform-Item.pipe.mjs +3 -3
- package/esm2022/components/avatar/avatar.component.mjs +7 -6
- package/esm2022/components/avatar/avatar.component.module.mjs +7 -6
- package/esm2022/components/badge/badge.component.mjs +4 -4
- package/esm2022/components/badge/badge.component.module.mjs +4 -4
- package/esm2022/components/button/button.component.mjs +44 -20
- package/esm2022/components/button/button.component.module.mjs +4 -4
- package/esm2022/components/button/button.model.mjs +1 -1
- package/esm2022/components/card/card.component.mjs +38 -7
- package/esm2022/components/card/card.component.module.mjs +4 -4
- package/esm2022/components/checkbox/checkbox.component.mjs +35 -11
- package/esm2022/components/checkbox/checkbox.component.module.mjs +4 -4
- package/esm2022/components/checkbox/focus-visible.directive.mjs +3 -3
- package/esm2022/components/checklist/checklist.component.mjs +6 -6
- package/esm2022/components/checklist/checklist.model.mjs +1 -1
- package/esm2022/components/confirm-dialog/confirm-dialog.component.mjs +18 -6
- package/esm2022/components/confirm-dialog/confirm-dialog.component.module.mjs +4 -4
- package/esm2022/components/confirm-dialog/confirm-dialog.model.mjs +1 -1
- package/esm2022/components/datepicker/date-adapter.mjs +39 -0
- package/esm2022/components/datepicker/datepicker.component.mjs +15 -17
- package/esm2022/components/datepicker/datepicker.component.module.mjs +4 -4
- package/esm2022/components/datepicker/datepicker.service.mjs +3 -3
- package/esm2022/components/datepicker/no-date-format.directive.mjs +6 -6
- package/esm2022/components/deprecated-paginator/deprecated-paginator.component.mjs +3 -3
- package/esm2022/components/deprecated-paginator/deprecated-paginator.component.module.mjs +4 -4
- package/esm2022/components/dialog/dialog.component.mjs +21 -8
- package/esm2022/components/dialog/dialog.component.module.mjs +4 -4
- package/esm2022/components/dialog/dialog.model.mjs +2 -0
- package/esm2022/components/dialog/dialog.service.mjs +6 -5
- package/esm2022/components/divider/divider.component.mjs +3 -3
- package/esm2022/components/divider/divider.component.module.mjs +4 -4
- package/esm2022/components/dropdown/dropdown.component.mjs +28 -9
- package/esm2022/components/dropdown/dropdown.component.module.mjs +4 -4
- package/esm2022/components/elevation-shadow/elevation-shadow.component.mjs +3 -3
- package/esm2022/components/elevation-shadow/elevation-shadow.component.module.mjs +4 -4
- package/esm2022/components/empty-state/empty-state.component.mjs +53 -5
- package/esm2022/components/empty-state/empty-state.component.module.mjs +4 -4
- package/esm2022/components/field/field.component.mjs +53 -29
- package/esm2022/components/field/field.component.module.mjs +4 -4
- package/esm2022/components/file-upload/file-upload.component.mjs +46 -32
- package/esm2022/components/file-upload/file-upload.component.module.mjs +4 -4
- package/esm2022/components/filter-button/filter-button.component.mjs +255 -0
- package/esm2022/components/filter-button/filter-button.component.module.mjs +58 -0
- package/esm2022/components/filter-button/filter-button.model.mjs +2 -0
- package/esm2022/components/gaussian-chart/gaussian-chart.component.mjs +246 -0
- package/esm2022/components/gaussian-chart/gaussian-chart.module.mjs +42 -0
- package/esm2022/components/icon/icon.component.mjs +5 -5
- package/esm2022/components/icon/icon.component.module.mjs +4 -4
- package/esm2022/components/icon/icon.config.mjs +27 -1
- package/esm2022/components/icon-label/icon-label.component.mjs +3 -3
- package/esm2022/components/icon-label/icon-label.component.module.mjs +4 -4
- package/esm2022/components/logo/logo.component.mjs +4 -4
- package/esm2022/components/logo/logo.component.module.mjs +4 -4
- package/esm2022/components/media-card/media-card.component.mjs +5 -5
- package/esm2022/components/multi-input/multi-input.component.mjs +37 -24
- package/esm2022/components/multi-input/multi-input.component.module.mjs +4 -4
- package/esm2022/components/navbar/mobile-navbar-side-sheet/mobile-navbar-side-sheet.component.mjs +13 -9
- package/esm2022/components/navbar/navbar.component.mjs +17 -14
- package/esm2022/components/navbar/navbar.component.module.mjs +4 -4
- package/esm2022/components/overflow-menu/overflow-menu.component.mjs +4 -4
- package/esm2022/components/overflow-menu/overflow-menu.component.module.mjs +4 -4
- package/esm2022/components/page-header/page-header.component.mjs +5 -5
- package/esm2022/components/page-header/page-header.component.module.mjs +4 -4
- package/esm2022/components/paginator/paginator.component.mjs +3 -3
- package/esm2022/components/paginator/paginator.component.module.mjs +4 -4
- package/esm2022/components/password-criteria/password.component.mjs +13 -7
- package/esm2022/components/password-criteria/password.component.module.mjs +4 -4
- package/esm2022/components/password-strength/password-strength.component.mjs +3 -3
- package/esm2022/components/password-strength/password-strength.component.module.mjs +4 -4
- package/esm2022/components/phone-input/join-strings.pipe.mjs +3 -3
- package/esm2022/components/phone-input/phone-input.component.mjs +4 -4
- package/esm2022/components/phone-input/phone-input.component.module.mjs +4 -4
- package/esm2022/components/progress-bar/progress-bar.component.mjs +4 -4
- package/esm2022/components/progress-bar/progress-bar.component.module.mjs +4 -4
- package/esm2022/components/radial-progress/radial-progress.component.mjs +3 -3
- package/esm2022/components/radial-progress/radial-progress.component.module.mjs +4 -4
- package/esm2022/components/radio-button/radio-button.component.mjs +19 -5
- package/esm2022/components/radio-button/radio-button.component.module.mjs +4 -4
- package/esm2022/components/rating/half-star.pipe.mjs +3 -3
- package/esm2022/components/rating/rating.component.mjs +3 -3
- package/esm2022/components/rating/rating.component.module.mjs +4 -4
- package/esm2022/components/scale/scale.component.mjs +18 -6
- package/esm2022/components/scale/scale.component.module.mjs +4 -4
- package/esm2022/components/segmented-bar/segmented-bar.component.mjs +3 -3
- package/esm2022/components/segmented-bar/segmented-bar.component.module.mjs +4 -4
- package/esm2022/components/segmented-button/segmented-button.component.mjs +6 -6
- package/esm2022/components/segmented-button/segmented-button.component.module.mjs +4 -4
- package/esm2022/components/side-panel/side-panel.component.mjs +6 -6
- package/esm2022/components/side-panel/side-panel.service.mjs +9 -8
- package/esm2022/components/side-sheet/side-sheet.component.mjs +3 -3
- package/esm2022/components/side-sheet/side-sheet.component.module.mjs +4 -4
- package/esm2022/components/side-sheet/side-sheet.service.mjs +3 -3
- package/esm2022/components/skeleton/skeleton.component.mjs +3 -3
- package/esm2022/components/slider/slider.component.mjs +70 -12
- package/esm2022/components/slider/slider.component.module.mjs +6 -33
- package/esm2022/components/slider/slider.model.mjs +1 -1
- package/esm2022/components/snackbar/snackbar.component.mjs +4 -4
- package/esm2022/components/snackbar/snackbar.component.module.mjs +4 -4
- package/esm2022/components/snackbar/snackbar.service.mjs +3 -3
- package/esm2022/components/spider-chart/spider-chart.component.mjs +25 -7
- package/esm2022/components/spider-chart/spider-chart.module.mjs +8 -5
- package/esm2022/components/spinner/spinner.component.mjs +15 -6
- package/esm2022/components/spinner/spinner.module.mjs +4 -4
- package/esm2022/components/step/step.component.mjs +52 -12
- package/esm2022/components/step/step.component.module.mjs +4 -4
- package/esm2022/components/stepper/stepper.component.mjs +52 -18
- package/esm2022/components/stepper/stepper.component.module.mjs +4 -4
- package/esm2022/components/table/sentence-case.pipe.mjs +3 -3
- package/esm2022/components/table/table.component.mjs +104 -57
- package/esm2022/components/table/table.component.module.mjs +6 -6
- package/esm2022/components/table/table.model.mjs +13 -1
- package/esm2022/components/tabs/tab.directive.mjs +7 -4
- package/esm2022/components/tabs/tabs.component.mjs +38 -9
- package/esm2022/components/tabs/tabs.component.module.mjs +7 -6
- package/esm2022/components/tabs/tabs.model.mjs +1 -1
- package/esm2022/components/tag/tag.component.mjs +3 -3
- package/esm2022/components/tag/tag.component.module.mjs +4 -4
- package/esm2022/components/toggle/toggle.component.mjs +4 -4
- package/esm2022/components/toggle/toggle.component.module.mjs +4 -4
- package/esm2022/components/tooltip/tooltip-template.directive.mjs +14 -12
- package/esm2022/components/tooltip/tooltip.component.mjs +3 -3
- package/esm2022/components/tooltip/tooltip.component.module.mjs +4 -4
- package/esm2022/components/universal-skills-report/universal-skills-report.component.mjs +29 -64
- package/esm2022/components/universal-skills-report/universal-skills-report.component.module.mjs +4 -4
- package/esm2022/components/universal-skills-spider-charts/universal-skills-spider-charts.component.mjs +109 -0
- package/esm2022/components/universal-skills-spider-charts/universal-skills-spider-charts.component.module.mjs +52 -0
- package/esm2022/components/validation-error/validation-error.component.mjs +3 -3
- package/esm2022/components/validation-error/validation-error.module.mjs +4 -4
- package/esm2022/directives/digits-only.directive.mjs +3 -3
- package/esm2022/directives/drag-drop.directive.mjs +3 -3
- package/esm2022/directives/dynamic-component.directive.mjs +40 -0
- package/esm2022/directives/ellipse-text.directive.mjs +3 -3
- package/esm2022/directives/select-text.directive.mjs +3 -3
- package/esm2022/directives/step-line-element.directive.mjs +3 -3
- package/esm2022/models/universal-skills-report.model.mjs +33 -0
- package/esm2022/pipes/data-property-getter.mjs +3 -3
- package/esm2022/pipes/has-validation-error.pipe.mjs +3 -3
- package/esm2022/pipes/memoize-func.pipe.mjs +3 -3
- package/esm2022/pipes/name-initials.pipe.mjs +3 -3
- package/esm2022/pipes/ui-ordinal-suffix.pipe.mjs +3 -3
- package/esm2022/pipes/ui-translate.pipe.mjs +3 -3
- package/esm2022/public-api.mjs +17 -6
- package/esm2022/services/icons.service.mjs +3 -3
- package/esm2022/services/universal-skills.service.mjs +85 -0
- package/esm2022/utils/autocomplete-utils.mjs +15 -3
- package/esm2022/utils/localization/language.service.mjs +3 -3
- package/fesm2022/testgorilla-tgo-ui.mjs +3878 -1246
- package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -1
- package/models/universal-skills-report.model.d.ts +44 -0
- package/package.json +17 -15
- package/projects/tgo-canopy-ui/assets/i18n/da-dk.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/de.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/en.json +665 -10
- package/projects/tgo-canopy-ui/assets/i18n/es.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/fr.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/it-it.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/ja-jp.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/nb-no.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/nl.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/pl-pl.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/pt-br.json +62 -1
- package/projects/tgo-canopy-ui/assets/i18n/sv-se.json +62 -1
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Analytics-filled.svg +3 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Analytics-in-line.svg +3 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Failed-to-load-filled.svg +3 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Failed-to-load-in-line.svg +3 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/History-filled.svg +3 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/History-in-line.svg +3 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Star-filled.svg +5 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Star-in-line.svg +5 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Tag-filled.svg +3 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Tag-in-line.svg +3 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/TestGorilla-Pink-filled.svg +11 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/TestGorilla-Pink-in-line.svg +11 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Verified-badge-filled.svg +23 -0
- package/projects/tgo-canopy-ui/assets/icons/rebrand/Verified-badge-in-line.svg +23 -0
- package/projects/tgo-canopy-ui/theme/_input.scss +1 -0
- package/projects/tgo-canopy-ui/theme/_palette.scss +9 -9
- package/projects/tgo-canopy-ui/theme/_tooltip.scss +12 -8
- package/projects/tgo-canopy-ui/theme/_typography.scss +4 -0
- package/projects/tgo-canopy-ui/theme/_variables.scss +3 -3
- package/public-api.d.ts +11 -4
- package/services/universal-skills.service.d.ts +13 -0
- package/utils/autocomplete-utils.d.ts +2 -2
- package/components/deprecated-table/deprecated-table.component.d.ts +0 -91
- package/components/deprecated-table/deprecated-table.component.module.d.ts +0 -14
- package/components/deprecated-table/deprecated-table.model.d.ts +0 -45
- package/components/universal-skills-report/universal-skills-report.model.d.ts +0 -33
- package/esm2022/components/datepicker/DateAdapter.mjs +0 -30
- package/esm2022/components/deprecated-table/deprecated-table.component.mjs +0 -158
- package/esm2022/components/deprecated-table/deprecated-table.component.module.mjs +0 -43
- package/esm2022/components/deprecated-table/deprecated-table.model.mjs +0 -13
- package/esm2022/components/deprecated-table/directives/dynamic-component.directive.mjs +0 -40
- package/esm2022/components/universal-skills-report/universal-skills-report.model.mjs +0 -19
|
@@ -0,0 +1,109 @@
|
|
|
1
|
+
import { ChangeDetectionStrategy, Component, Inject, Input, Optional } from '@angular/core';
|
|
2
|
+
import { take } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
import * as i1 from "../../services/universal-skills.service";
|
|
5
|
+
import * as i2 from "../../pipes/ui-translate.pipe";
|
|
6
|
+
import * as i3 from "../accordion/accordion.component";
|
|
7
|
+
import * as i4 from "../spider-chart/spider-chart.component";
|
|
8
|
+
import * as i5 from "../divider/divider.component";
|
|
9
|
+
import * as i6 from "@angular/common";
|
|
10
|
+
export class UniversalSkillsSpiderChartsComponent {
|
|
11
|
+
constructor(defaultAppTheme, universalSkillsService, uiTranslatePipe) {
|
|
12
|
+
this.defaultAppTheme = defaultAppTheme;
|
|
13
|
+
this.universalSkillsService = universalSkillsService;
|
|
14
|
+
this.uiTranslatePipe = uiTranslatePipe;
|
|
15
|
+
/**
|
|
16
|
+
* Defines the application theme
|
|
17
|
+
* @property applicationTheme
|
|
18
|
+
* @type {ApplicationTheme}
|
|
19
|
+
* @memberof UniversalSkillsSpiderChartsComponent
|
|
20
|
+
*/
|
|
21
|
+
this.applicationTheme = 'light';
|
|
22
|
+
/**
|
|
23
|
+
* Defines if the component is loading
|
|
24
|
+
* @property loading
|
|
25
|
+
* @type {boolean}
|
|
26
|
+
* @memberof UniversalSkillsSpiderChartsComponent
|
|
27
|
+
*/
|
|
28
|
+
this.loading = false;
|
|
29
|
+
/**
|
|
30
|
+
* Defines the size of the spider chart
|
|
31
|
+
* @property size
|
|
32
|
+
* @type {'small' | 'large'}
|
|
33
|
+
* @memberof UniversalSkillsSpiderChartsComponent
|
|
34
|
+
*/
|
|
35
|
+
this.size = 'large';
|
|
36
|
+
this.translationContext = 'UNIVERSAL_SKILLS_REPORT.';
|
|
37
|
+
this.skillAreaSpiderChartData = [];
|
|
38
|
+
if (defaultAppTheme) {
|
|
39
|
+
this.applicationTheme = defaultAppTheme;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
ngOnInit() {
|
|
43
|
+
this.universalSkillsService.initializeSkillAreaGroupMap();
|
|
44
|
+
this.universalSkillsService.prepareSkillAreaGroupMap(this.skillAreaDataList);
|
|
45
|
+
this.skillAreaGroupMap = this.universalSkillsService.getSkillAreaGroupMap();
|
|
46
|
+
this.prepareSpiderChartData();
|
|
47
|
+
}
|
|
48
|
+
prepareSpiderChartData() {
|
|
49
|
+
this.skillAreaSpiderChartData = [];
|
|
50
|
+
Object.values(this.skillAreaGroupMap).forEach(skillAreaGroup => {
|
|
51
|
+
const labelObservables = skillAreaGroup.skillAreaList.map(skillArea => this.uiTranslatePipe.transform(`${this.translationContext}SKILL_AREA_TYPES.${skillArea.skillAreaName}.TITLE`));
|
|
52
|
+
const labelDescriptionObservables = skillAreaGroup.skillAreaList.map(skillArea => this.uiTranslatePipe.transform(`${this.translationContext}SKILL_AREA_TYPES.${skillArea.skillAreaName}.DESCRIPTION`));
|
|
53
|
+
const allObservables = [...labelObservables, ...labelDescriptionObservables];
|
|
54
|
+
const translations = [];
|
|
55
|
+
allObservables.forEach(observable => {
|
|
56
|
+
observable.pipe(take(1)).subscribe(translation => {
|
|
57
|
+
translations.push(translation);
|
|
58
|
+
});
|
|
59
|
+
});
|
|
60
|
+
const labels = translations.slice(0, labelObservables.length);
|
|
61
|
+
const labelDescriptions = translations.slice(labelObservables.length);
|
|
62
|
+
this.skillAreaSpiderChartData.push({
|
|
63
|
+
title: skillAreaGroup.title,
|
|
64
|
+
description: skillAreaGroup.description,
|
|
65
|
+
spiderChartData: {
|
|
66
|
+
labels: labels,
|
|
67
|
+
labelDescription: labelDescriptions,
|
|
68
|
+
plotData: skillAreaGroup.skillAreaList?.[0]?.poolPercentileScoring !== undefined
|
|
69
|
+
? [
|
|
70
|
+
{
|
|
71
|
+
data: skillAreaGroup.skillAreaList.map(skillArea => skillArea.percentileScoring),
|
|
72
|
+
databaseLabel: "This candidate's score",
|
|
73
|
+
},
|
|
74
|
+
{
|
|
75
|
+
data: skillAreaGroup.skillAreaList.map(skillArea => skillArea.poolPercentileScoring ?? 0),
|
|
76
|
+
databaseLabel: 'Average score of all candidates',
|
|
77
|
+
},
|
|
78
|
+
]
|
|
79
|
+
: [
|
|
80
|
+
{
|
|
81
|
+
data: skillAreaGroup.skillAreaList.map(skillArea => skillArea.percentileScoring),
|
|
82
|
+
databaseLabel: "This candidate's score",
|
|
83
|
+
},
|
|
84
|
+
],
|
|
85
|
+
},
|
|
86
|
+
});
|
|
87
|
+
});
|
|
88
|
+
}
|
|
89
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UniversalSkillsSpiderChartsComponent, deps: [{ token: 'CANOPYUI_DEFAULT_APPLICATION_THEME', optional: true }, { token: i1.UniversalSkillsService }, { token: i2.UiTranslatePipe }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
90
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "18.2.13", type: UniversalSkillsSpiderChartsComponent, selector: "ui-universal-skills-spider-charts", inputs: { applicationTheme: "applicationTheme", skillAreaDataList: "skillAreaDataList", loading: "loading", size: "size" }, ngImport: i0, template: "@for (spiderChartData of skillAreaSpiderChartData; track spiderChartData) {\n <ui-accordion class=\"universal-skills-spider-charts\" [label]=\"(spiderChartData.title | uiTranslate | async) || ''\" variant=\"filter\">\n <ui-spider-chart [spiderChartData]=\"spiderChartData.spiderChartData\" [loading]=\"loading\" [size]=\"size\"></ui-spider-chart>\n </ui-accordion>\n @if ($index < skillAreaSpiderChartData.length - 1) {\n <ui-divider class=\"universal-skills-spider-charts-divider\" size=\"small\"></ui-divider>\n }\n}\n", styles: [".universal-skills-spider-charts ::ng-deep .accordion-wrapper[theme=light] .mat-expansion-panel .mat-expansion-panel-header .accordion-label{font-weight:700}.universal-skills-spider-charts-divider ::ng-deep .ui-divider-wrapper{margin-top:8px;margin-bottom:8px}\n"], dependencies: [{ kind: "component", type: i3.AccordionComponent, selector: "ui-accordion", inputs: ["label", "open", "disabled", "showPremiumIcon", "premiumTooltipText", "applicationTheme", "labelIcon", "variant", "allowCustomHeader", "noBackgroundColor", "toggleIconPosition"], outputs: ["closed", "opened"] }, { kind: "component", type: i4.SpiderChartComponent, selector: "ui-spider-chart", inputs: ["size", "spiderChartData", "stepSize", "ariaLabel", "loading", "applicationTheme"] }, { kind: "component", type: i5.DividerComponent, selector: "ui-divider", inputs: ["size", "companyColor", "applicationTheme", "label"] }, { kind: "pipe", type: i6.AsyncPipe, name: "async" }, { kind: "pipe", type: i2.UiTranslatePipe, name: "uiTranslate" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
91
|
+
}
|
|
92
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UniversalSkillsSpiderChartsComponent, decorators: [{
|
|
93
|
+
type: Component,
|
|
94
|
+
args: [{ selector: 'ui-universal-skills-spider-charts', changeDetection: ChangeDetectionStrategy.OnPush, template: "@for (spiderChartData of skillAreaSpiderChartData; track spiderChartData) {\n <ui-accordion class=\"universal-skills-spider-charts\" [label]=\"(spiderChartData.title | uiTranslate | async) || ''\" variant=\"filter\">\n <ui-spider-chart [spiderChartData]=\"spiderChartData.spiderChartData\" [loading]=\"loading\" [size]=\"size\"></ui-spider-chart>\n </ui-accordion>\n @if ($index < skillAreaSpiderChartData.length - 1) {\n <ui-divider class=\"universal-skills-spider-charts-divider\" size=\"small\"></ui-divider>\n }\n}\n", styles: [".universal-skills-spider-charts ::ng-deep .accordion-wrapper[theme=light] .mat-expansion-panel .mat-expansion-panel-header .accordion-label{font-weight:700}.universal-skills-spider-charts-divider ::ng-deep .ui-divider-wrapper{margin-top:8px;margin-bottom:8px}\n"] }]
|
|
95
|
+
}], ctorParameters: () => [{ type: undefined, decorators: [{
|
|
96
|
+
type: Optional
|
|
97
|
+
}, {
|
|
98
|
+
type: Inject,
|
|
99
|
+
args: ['CANOPYUI_DEFAULT_APPLICATION_THEME']
|
|
100
|
+
}] }, { type: i1.UniversalSkillsService }, { type: i2.UiTranslatePipe }], propDecorators: { applicationTheme: [{
|
|
101
|
+
type: Input
|
|
102
|
+
}], skillAreaDataList: [{
|
|
103
|
+
type: Input
|
|
104
|
+
}], loading: [{
|
|
105
|
+
type: Input
|
|
106
|
+
}], size: [{
|
|
107
|
+
type: Input
|
|
108
|
+
}] } });
|
|
109
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5pdmVyc2FsLXNraWxscy1zcGlkZXItY2hhcnRzLmNvbXBvbmVudC5qcyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Rnby1jYW5vcHktdWkvY29tcG9uZW50cy91bml2ZXJzYWwtc2tpbGxzLXNwaWRlci1jaGFydHMvdW5pdmVyc2FsLXNraWxscy1zcGlkZXItY2hhcnRzLmNvbXBvbmVudC50cyIsIi4uLy4uLy4uLy4uLy4uL3Byb2plY3RzL3Rnby1jYW5vcHktdWkvY29tcG9uZW50cy91bml2ZXJzYWwtc2tpbGxzLXNwaWRlci1jaGFydHMvdW5pdmVyc2FsLXNraWxscy1zcGlkZXItY2hhcnRzLmNvbXBvbmVudC5odG1sIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSx1QkFBdUIsRUFBRSxTQUFTLEVBQUUsTUFBTSxFQUFFLEtBQUssRUFBVSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFVcEcsT0FBTyxFQUFZLElBQUksRUFBRSxNQUFNLE1BQU0sQ0FBQzs7Ozs7Ozs7QUFRdEMsTUFBTSxPQUFPLG9DQUFvQztJQXNDL0MsWUFDNkUsZUFBaUMsRUFDcEcsc0JBQThDLEVBQzlDLGVBQWdDO1FBRm1DLG9CQUFlLEdBQWYsZUFBZSxDQUFrQjtRQUNwRywyQkFBc0IsR0FBdEIsc0JBQXNCLENBQXdCO1FBQzlDLG9CQUFlLEdBQWYsZUFBZSxDQUFpQjtRQXhDMUM7Ozs7O1dBS0c7UUFDTSxxQkFBZ0IsR0FBcUIsT0FBTyxDQUFDO1FBVXREOzs7OztXQUtHO1FBQ00sWUFBTyxHQUFZLEtBQUssQ0FBQztRQUVsQzs7Ozs7V0FLRztRQUNNLFNBQUksR0FBc0IsT0FBTyxDQUFDO1FBRWxDLHVCQUFrQixHQUFHLDBCQUEwQixDQUFDO1FBR3pELDZCQUF3QixHQUErQixFQUFFLENBQUM7UUFPeEQsSUFBSSxlQUFlLEVBQUUsQ0FBQztZQUNwQixJQUFJLENBQUMsZ0JBQWdCLEdBQUcsZUFBZSxDQUFDO1FBQzFDLENBQUM7SUFDSCxDQUFDO0lBRUQsUUFBUTtRQUNOLElBQUksQ0FBQyxzQkFBc0IsQ0FBQywyQkFBMkIsRUFBRSxDQUFDO1FBQzFELElBQUksQ0FBQyxzQkFBc0IsQ0FBQyx3QkFBd0IsQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsQ0FBQztRQUM3RSxJQUFJLENBQUMsaUJBQWlCLEdBQUcsSUFBSSxDQUFDLHNCQUFzQixDQUFDLG9CQUFvQixFQUFFLENBQUM7UUFDNUUsSUFBSSxDQUFDLHNCQUFzQixFQUFFLENBQUM7SUFDaEMsQ0FBQztJQUVELHNCQUFzQjtRQUNwQixJQUFJLENBQUMsd0JBQXdCLEdBQUcsRUFBRSxDQUFDO1FBQ25DLE1BQU0sQ0FBQyxNQUFNLENBQUMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLENBQUMsT0FBTyxDQUFDLGNBQWMsQ0FBQyxFQUFFO1lBQzdELE1BQU0sZ0JBQWdCLEdBQUcsY0FBYyxDQUFDLGFBQWEsQ0FBQyxHQUFHLENBQUMsU0FBUyxDQUFDLEVBQUUsQ0FDcEUsSUFBSSxDQUFDLGVBQWUsQ0FBQyxTQUFTLENBQUMsR0FBRyxJQUFJLENBQUMsa0JBQWtCLG9CQUFvQixTQUFTLENBQUMsYUFBYSxRQUFRLENBQUMsQ0FDOUcsQ0FBQztZQUVGLE1BQU0sMkJBQTJCLEdBQUcsY0FBYyxDQUFDLGFBQWEsQ0FBQyxHQUFHLENBQUMsU0FBUyxDQUFDLEVBQUUsQ0FDL0UsSUFBSSxDQUFDLGVBQWUsQ0FBQyxTQUFTLENBQzVCLEdBQUcsSUFBSSxDQUFDLGtCQUFrQixvQkFBb0IsU0FBUyxDQUFDLGFBQWEsY0FBYyxDQUNwRixDQUNGLENBQUM7WUFFRixNQUFNLGNBQWMsR0FBRyxDQUFDLEdBQUcsZ0JBQWdCLEVBQUUsR0FBRywyQkFBMkIsQ0FBQyxDQUFDO1lBQzdFLE1BQU0sWUFBWSxHQUFhLEVBQUUsQ0FBQztZQUNsQyxjQUFjLENBQUMsT0FBTyxDQUFDLFVBQVUsQ0FBQyxFQUFFO2dCQUNsQyxVQUFVLENBQUMsSUFBSSxDQUFDLElBQUksQ0FBQyxDQUFDLENBQUMsQ0FBQyxDQUFDLFNBQVMsQ0FBQyxXQUFXLENBQUMsRUFBRTtvQkFDL0MsWUFBWSxDQUFDLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQztnQkFDakMsQ0FBQyxDQUFDLENBQUM7WUFDTCxDQUFDLENBQUMsQ0FBQztZQUNILE1BQU0sTUFBTSxHQUFHLFlBQVksQ0FBQyxLQUFLLENBQUMsQ0FBQyxFQUFFLGdCQUFnQixDQUFDLE1BQU0sQ0FBQyxDQUFDO1lBQzlELE1BQU0saUJBQWlCLEdBQUcsWUFBWSxDQUFDLEtBQUssQ0FBQyxnQkFBZ0IsQ0FBQyxNQUFNLENBQUMsQ0FBQztZQUV0RSxJQUFJLENBQUMsd0JBQXdCLENBQUMsSUFBSSxDQUFDO2dCQUNqQyxLQUFLLEVBQUUsY0FBYyxDQUFDLEtBQUs7Z0JBQzNCLFdBQVcsRUFBRSxjQUFjLENBQUMsV0FBVztnQkFDdkMsZUFBZSxFQUFFO29CQUNmLE1BQU0sRUFBRSxNQUFNO29CQUNkLGdCQUFnQixFQUFFLGlCQUFpQjtvQkFDbkMsUUFBUSxFQUNOLGNBQWMsQ0FBQyxhQUFhLEVBQUUsQ0FBQyxDQUFDLENBQUMsRUFBRSxxQkFBcUIsS0FBSyxTQUFTO3dCQUNwRSxDQUFDLENBQUM7NEJBQ0U7Z0NBQ0UsSUFBSSxFQUFFLGNBQWMsQ0FBQyxhQUFhLENBQUMsR0FBRyxDQUFDLFNBQVMsQ0FBQyxFQUFFLENBQUMsU0FBUyxDQUFDLGlCQUFpQixDQUFDO2dDQUNoRixhQUFhLEVBQUUsd0JBQXdCOzZCQUN4Qzs0QkFDRDtnQ0FDRSxJQUFJLEVBQUUsY0FBYyxDQUFDLGFBQWEsQ0FBQyxHQUFHLENBQUMsU0FBUyxDQUFDLEVBQUUsQ0FBQyxTQUFTLENBQUMscUJBQXFCLElBQUksQ0FBQyxDQUFDO2dDQUN6RixhQUFhLEVBQUUsaUNBQWlDOzZCQUNqRDt5QkFDRjt3QkFDSCxDQUFDLENBQUM7NEJBQ0U7Z0NBQ0UsSUFBSSxFQUFFLGNBQWMsQ0FBQyxhQUFhLENBQUMsR0FBRyxDQUFDLFNBQVMsQ0FBQyxFQUFFLENBQUMsU0FBUyxDQUFDLGlCQUFpQixDQUFDO2dDQUNoRixhQUFhLEVBQUUsd0JBQXdCOzZCQUN4Qzt5QkFDRjtpQkFDUjthQUNGLENBQUMsQ0FBQztRQUNMLENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQzsrR0F6R1Usb0NBQW9DLGtCQXVDekIsb0NBQW9DO21HQXZDL0Msb0NBQW9DLHFNQ2xCakQsb2hCQVFBOzs0RkRVYSxvQ0FBb0M7a0JBTmhELFNBQVM7K0JBQ0UsbUNBQW1DLG1CQUc1Qix1QkFBdUIsQ0FBQyxNQUFNOzswQkF5QzVDLFFBQVE7OzBCQUFJLE1BQU07MkJBQUMsb0NBQW9DOzRHQWhDakQsZ0JBQWdCO3NCQUF4QixLQUFLO2dCQVFHLGlCQUFpQjtzQkFBekIsS0FBSztnQkFRRyxPQUFPO3NCQUFmLEtBQUs7Z0JBUUcsSUFBSTtzQkFBWixLQUFLIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3ksIENvbXBvbmVudCwgSW5qZWN0LCBJbnB1dCwgT25Jbml0LCBPcHRpb25hbCB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHsgQXBwbGljYXRpb25UaGVtZSB9IGZyb20gJy4uLy4uL21vZGVscy9hcHBsaWNhdGlvbi10aGVtZS5tb2RlbCc7XG5pbXBvcnQge1xuICBTa2lsbEFyZWFEYXRhLFxuICBTa2lsbEFyZWFHcm91cCxcbiAgU2tpbGxBcmVhR3JvdXBUeXBlcyxcbiAgU2tpbGxBcmVhU3BpZGVyQ2hhcnREYXRhLFxufSBmcm9tICcuLi8uLi9tb2RlbHMvdW5pdmVyc2FsLXNraWxscy1yZXBvcnQubW9kZWwnO1xuaW1wb3J0IHsgVW5pdmVyc2FsU2tpbGxzU2VydmljZSB9IGZyb20gJy4uLy4uL3NlcnZpY2VzL3VuaXZlcnNhbC1za2lsbHMuc2VydmljZSc7XG5pbXBvcnQgeyBVaVRyYW5zbGF0ZVBpcGUgfSBmcm9tICcuLi8uLi9waXBlcy91aS10cmFuc2xhdGUucGlwZSc7XG5pbXBvcnQgeyBmb3JrSm9pbiwgdGFrZSB9IGZyb20gJ3J4anMnO1xuXG5AQ29tcG9uZW50KHtcbiAgc2VsZWN0b3I6ICd1aS11bml2ZXJzYWwtc2tpbGxzLXNwaWRlci1jaGFydHMnLFxuICB0ZW1wbGF0ZVVybDogJy4vdW5pdmVyc2FsLXNraWxscy1zcGlkZXItY2hhcnRzLmNvbXBvbmVudC5odG1sJyxcbiAgc3R5bGVVcmxzOiBbJy4vdW5pdmVyc2FsLXNraWxscy1zcGlkZXItY2hhcnRzLmNvbXBvbmVudC5zY3NzJ10sXG4gIGNoYW5nZURldGVjdGlvbjogQ2hhbmdlRGV0ZWN0aW9uU3RyYXRlZ3kuT25QdXNoLFxufSlcbmV4cG9ydCBjbGFzcyBVbml2ZXJzYWxTa2lsbHNTcGlkZXJDaGFydHNDb21wb25lbnQgaW1wbGVtZW50cyBPbkluaXQge1xuICAvKipcbiAgICogRGVmaW5lcyB0aGUgYXBwbGljYXRpb24gdGhlbWVcbiAgICogQHByb3BlcnR5IGFwcGxpY2F0aW9uVGhlbWVcbiAgICogQHR5cGUge0FwcGxpY2F0aW9uVGhlbWV9XG4gICAqIEBtZW1iZXJvZiBVbml2ZXJzYWxTa2lsbHNTcGlkZXJDaGFydHNDb21wb25lbnRcbiAgICovXG4gIEBJbnB1dCgpIGFwcGxpY2F0aW9uVGhlbWU6IEFwcGxpY2F0aW9uVGhlbWUgPSAnbGlnaHQnO1xuXG4gIC8qKlxuICAgKiBUaGUgbGlzdCBvZiBpdGVtcyB0byBiZSB1c2VkXG4gICAqIEBwcm9wZXJ0eSBpdGVtc1xuICAgKiBAdHlwZSB7U2tpbGxBcmVhRGF0YVtdfVxuICAgKiBAbWVtYmVyb2YgVW5pdmVyc2FsU2tpbGxzUmVwb3J0Q29tcG9uZW50XG4gICAqL1xuICBASW5wdXQoKSBza2lsbEFyZWFEYXRhTGlzdDogU2tpbGxBcmVhRGF0YVtdO1xuXG4gIC8qKlxuICAgKiBEZWZpbmVzIGlmIHRoZSBjb21wb25lbnQgaXMgbG9hZGluZ1xuICAgKiBAcHJvcGVydHkgbG9hZGluZ1xuICAgKiBAdHlwZSB7Ym9vbGVhbn1cbiAgICogQG1lbWJlcm9mIFVuaXZlcnNhbFNraWxsc1NwaWRlckNoYXJ0c0NvbXBvbmVudFxuICAgKi9cbiAgQElucHV0KCkgbG9hZGluZzogYm9vbGVhbiA9IGZhbHNlO1xuXG4gIC8qKlxuICAgKiBEZWZpbmVzIHRoZSBzaXplIG9mIHRoZSBzcGlkZXIgY2hhcnRcbiAgICogQHByb3BlcnR5IHNpemVcbiAgICogQHR5cGUgeydzbWFsbCcgfCAnbGFyZ2UnfVxuICAgKiBAbWVtYmVyb2YgVW5pdmVyc2FsU2tpbGxzU3BpZGVyQ2hhcnRzQ29tcG9uZW50XG4gICAqL1xuICBASW5wdXQoKSBzaXplOiAnc21hbGwnIHwgJ2xhcmdlJyA9ICdsYXJnZSc7XG5cbiAgcmVhZG9ubHkgdHJhbnNsYXRpb25Db250ZXh0ID0gJ1VOSVZFUlNBTF9TS0lMTFNfUkVQT1JULic7XG5cbiAgc2tpbGxBcmVhR3JvdXBNYXA6IFJlY29yZDxTa2lsbEFyZWFHcm91cFR5cGVzLCBTa2lsbEFyZWFHcm91cD47XG4gIHNraWxsQXJlYVNwaWRlckNoYXJ0RGF0YTogU2tpbGxBcmVhU3BpZGVyQ2hhcnREYXRhW10gPSBbXTtcblxuICBjb25zdHJ1Y3RvcihcbiAgICBAT3B0aW9uYWwoKSBASW5qZWN0KCdDQU5PUFlVSV9ERUZBVUxUX0FQUExJQ0FUSU9OX1RIRU1FJykgcHJpdmF0ZSByZWFkb25seSBkZWZhdWx0QXBwVGhlbWU6IEFwcGxpY2F0aW9uVGhlbWUsXG4gICAgcHJpdmF0ZSB1bml2ZXJzYWxTa2lsbHNTZXJ2aWNlOiBVbml2ZXJzYWxTa2lsbHNTZXJ2aWNlLFxuICAgIHByaXZhdGUgdWlUcmFuc2xhdGVQaXBlOiBVaVRyYW5zbGF0ZVBpcGVcbiAgKSB7XG4gICAgaWYgKGRlZmF1bHRBcHBUaGVtZSkge1xuICAgICAgdGhpcy5hcHBsaWNhdGlvblRoZW1lID0gZGVmYXVsdEFwcFRoZW1lO1xuICAgIH1cbiAgfVxuXG4gIG5nT25Jbml0KCkge1xuICAgIHRoaXMudW5pdmVyc2FsU2tpbGxzU2VydmljZS5pbml0aWFsaXplU2tpbGxBcmVhR3JvdXBNYXAoKTtcbiAgICB0aGlzLnVuaXZlcnNhbFNraWxsc1NlcnZpY2UucHJlcGFyZVNraWxsQXJlYUdyb3VwTWFwKHRoaXMuc2tpbGxBcmVhRGF0YUxpc3QpO1xuICAgIHRoaXMuc2tpbGxBcmVhR3JvdXBNYXAgPSB0aGlzLnVuaXZlcnNhbFNraWxsc1NlcnZpY2UuZ2V0U2tpbGxBcmVhR3JvdXBNYXAoKTtcbiAgICB0aGlzLnByZXBhcmVTcGlkZXJDaGFydERhdGEoKTtcbiAgfVxuXG4gIHByZXBhcmVTcGlkZXJDaGFydERhdGEoKTogdm9pZCB7XG4gICAgdGhpcy5za2lsbEFyZWFTcGlkZXJDaGFydERhdGEgPSBbXTtcbiAgICBPYmplY3QudmFsdWVzKHRoaXMuc2tpbGxBcmVhR3JvdXBNYXApLmZvckVhY2goc2tpbGxBcmVhR3JvdXAgPT4ge1xuICAgICAgY29uc3QgbGFiZWxPYnNlcnZhYmxlcyA9IHNraWxsQXJlYUdyb3VwLnNraWxsQXJlYUxpc3QubWFwKHNraWxsQXJlYSA9PlxuICAgICAgICB0aGlzLnVpVHJhbnNsYXRlUGlwZS50cmFuc2Zvcm0oYCR7dGhpcy50cmFuc2xhdGlvbkNvbnRleHR9U0tJTExfQVJFQV9UWVBFUy4ke3NraWxsQXJlYS5za2lsbEFyZWFOYW1lfS5USVRMRWApXG4gICAgICApO1xuXG4gICAgICBjb25zdCBsYWJlbERlc2NyaXB0aW9uT2JzZXJ2YWJsZXMgPSBza2lsbEFyZWFHcm91cC5za2lsbEFyZWFMaXN0Lm1hcChza2lsbEFyZWEgPT5cbiAgICAgICAgdGhpcy51aVRyYW5zbGF0ZVBpcGUudHJhbnNmb3JtKFxuICAgICAgICAgIGAke3RoaXMudHJhbnNsYXRpb25Db250ZXh0fVNLSUxMX0FSRUFfVFlQRVMuJHtza2lsbEFyZWEuc2tpbGxBcmVhTmFtZX0uREVTQ1JJUFRJT05gXG4gICAgICAgIClcbiAgICAgICk7XG5cbiAgICAgIGNvbnN0IGFsbE9ic2VydmFibGVzID0gWy4uLmxhYmVsT2JzZXJ2YWJsZXMsIC4uLmxhYmVsRGVzY3JpcHRpb25PYnNlcnZhYmxlc107XG4gICAgICBjb25zdCB0cmFuc2xhdGlvbnM6IHN0cmluZ1tdID0gW107XG4gICAgICBhbGxPYnNlcnZhYmxlcy5mb3JFYWNoKG9ic2VydmFibGUgPT4ge1xuICAgICAgICBvYnNlcnZhYmxlLnBpcGUodGFrZSgxKSkuc3Vic2NyaWJlKHRyYW5zbGF0aW9uID0+IHtcbiAgICAgICAgICB0cmFuc2xhdGlvbnMucHVzaCh0cmFuc2xhdGlvbik7XG4gICAgICAgIH0pO1xuICAgICAgfSk7XG4gICAgICBjb25zdCBsYWJlbHMgPSB0cmFuc2xhdGlvbnMuc2xpY2UoMCwgbGFiZWxPYnNlcnZhYmxlcy5sZW5ndGgpO1xuICAgICAgY29uc3QgbGFiZWxEZXNjcmlwdGlvbnMgPSB0cmFuc2xhdGlvbnMuc2xpY2UobGFiZWxPYnNlcnZhYmxlcy5sZW5ndGgpO1xuXG4gICAgICB0aGlzLnNraWxsQXJlYVNwaWRlckNoYXJ0RGF0YS5wdXNoKHtcbiAgICAgICAgdGl0bGU6IHNraWxsQXJlYUdyb3VwLnRpdGxlLFxuICAgICAgICBkZXNjcmlwdGlvbjogc2tpbGxBcmVhR3JvdXAuZGVzY3JpcHRpb24sXG4gICAgICAgIHNwaWRlckNoYXJ0RGF0YToge1xuICAgICAgICAgIGxhYmVsczogbGFiZWxzLFxuICAgICAgICAgIGxhYmVsRGVzY3JpcHRpb246IGxhYmVsRGVzY3JpcHRpb25zLFxuICAgICAgICAgIHBsb3REYXRhOlxuICAgICAgICAgICAgc2tpbGxBcmVhR3JvdXAuc2tpbGxBcmVhTGlzdD8uWzBdPy5wb29sUGVyY2VudGlsZVNjb3JpbmcgIT09IHVuZGVmaW5lZFxuICAgICAgICAgICAgICA/IFtcbiAgICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgZGF0YTogc2tpbGxBcmVhR3JvdXAuc2tpbGxBcmVhTGlzdC5tYXAoc2tpbGxBcmVhID0+IHNraWxsQXJlYS5wZXJjZW50aWxlU2NvcmluZyksXG4gICAgICAgICAgICAgICAgICAgIGRhdGFiYXNlTGFiZWw6IFwiVGhpcyBjYW5kaWRhdGUncyBzY29yZVwiLFxuICAgICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgZGF0YTogc2tpbGxBcmVhR3JvdXAuc2tpbGxBcmVhTGlzdC5tYXAoc2tpbGxBcmVhID0+IHNraWxsQXJlYS5wb29sUGVyY2VudGlsZVNjb3JpbmcgPz8gMCksXG4gICAgICAgICAgICAgICAgICAgIGRhdGFiYXNlTGFiZWw6ICdBdmVyYWdlIHNjb3JlIG9mIGFsbCBjYW5kaWRhdGVzJyxcbiAgICAgICAgICAgICAgICAgIH0sXG4gICAgICAgICAgICAgICAgXVxuICAgICAgICAgICAgICA6IFtcbiAgICAgICAgICAgICAgICAgIHtcbiAgICAgICAgICAgICAgICAgICAgZGF0YTogc2tpbGxBcmVhR3JvdXAuc2tpbGxBcmVhTGlzdC5tYXAoc2tpbGxBcmVhID0+IHNraWxsQXJlYS5wZXJjZW50aWxlU2NvcmluZyksXG4gICAgICAgICAgICAgICAgICAgIGRhdGFiYXNlTGFiZWw6IFwiVGhpcyBjYW5kaWRhdGUncyBzY29yZVwiLFxuICAgICAgICAgICAgICAgICAgfSxcbiAgICAgICAgICAgICAgICBdLFxuICAgICAgICB9LFxuICAgICAgfSk7XG4gICAgfSk7XG4gIH1cbn1cbiIsIkBmb3IgKHNwaWRlckNoYXJ0RGF0YSBvZiBza2lsbEFyZWFTcGlkZXJDaGFydERhdGE7IHRyYWNrIHNwaWRlckNoYXJ0RGF0YSkge1xuICA8dWktYWNjb3JkaW9uIGNsYXNzPVwidW5pdmVyc2FsLXNraWxscy1zcGlkZXItY2hhcnRzXCIgW2xhYmVsXT1cIihzcGlkZXJDaGFydERhdGEudGl0bGUgfCB1aVRyYW5zbGF0ZSB8IGFzeW5jKSB8fCAnJ1wiIHZhcmlhbnQ9XCJmaWx0ZXJcIj5cbiAgICA8dWktc3BpZGVyLWNoYXJ0IFtzcGlkZXJDaGFydERhdGFdPVwic3BpZGVyQ2hhcnREYXRhLnNwaWRlckNoYXJ0RGF0YVwiIFtsb2FkaW5nXT1cImxvYWRpbmdcIiBbc2l6ZV09XCJzaXplXCI+PC91aS1zcGlkZXItY2hhcnQ+XG4gIDwvdWktYWNjb3JkaW9uPlxuICBAaWYgKCRpbmRleCA8IHNraWxsQXJlYVNwaWRlckNoYXJ0RGF0YS5sZW5ndGggLSAxKSB7XG4gICAgPHVpLWRpdmlkZXIgY2xhc3M9XCJ1bml2ZXJzYWwtc2tpbGxzLXNwaWRlci1jaGFydHMtZGl2aWRlclwiIHNpemU9XCJzbWFsbFwiPjwvdWktZGl2aWRlcj5cbiAgfVxufVxuIl19
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { NgModule } from '@angular/core';
|
|
2
|
+
import { CommonModule, KeyValuePipe } from '@angular/common';
|
|
3
|
+
import { UniversalSkillsSpiderChartsComponent } from './universal-skills-spider-charts.component';
|
|
4
|
+
import { AccordionComponentModule } from '../accordion/accordion.component.module';
|
|
5
|
+
import { BadgeComponentModule } from '../badge/badge.component.module';
|
|
6
|
+
import { ProgressBarComponentModule } from '../progress-bar/progress-bar.component.module';
|
|
7
|
+
import { MemoizeFuncPipe } from '../../pipes/memoize-func.pipe';
|
|
8
|
+
import { UiTranslatePipe } from '../../pipes/ui-translate.pipe';
|
|
9
|
+
import { OrdinalSuffixPipe } from '../../pipes/ui-ordinal-suffix.pipe';
|
|
10
|
+
import { SpiderChartComponentModule } from '../spider-chart/spider-chart.module';
|
|
11
|
+
import { DividerComponentModule } from '../divider/divider.component.module';
|
|
12
|
+
import * as i0 from "@angular/core";
|
|
13
|
+
export class UniversalSkillsSpiderChartsComponentModule {
|
|
14
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UniversalSkillsSpiderChartsComponentModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
15
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: UniversalSkillsSpiderChartsComponentModule, declarations: [UniversalSkillsSpiderChartsComponent], imports: [CommonModule,
|
|
16
|
+
AccordionComponentModule,
|
|
17
|
+
BadgeComponentModule,
|
|
18
|
+
ProgressBarComponentModule,
|
|
19
|
+
SpiderChartComponentModule,
|
|
20
|
+
DividerComponentModule,
|
|
21
|
+
MemoizeFuncPipe,
|
|
22
|
+
UiTranslatePipe,
|
|
23
|
+
OrdinalSuffixPipe,
|
|
24
|
+
KeyValuePipe], exports: [UniversalSkillsSpiderChartsComponent] }); }
|
|
25
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UniversalSkillsSpiderChartsComponentModule, providers: [UiTranslatePipe], imports: [CommonModule,
|
|
26
|
+
AccordionComponentModule,
|
|
27
|
+
BadgeComponentModule,
|
|
28
|
+
ProgressBarComponentModule,
|
|
29
|
+
SpiderChartComponentModule,
|
|
30
|
+
DividerComponentModule] }); }
|
|
31
|
+
}
|
|
32
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UniversalSkillsSpiderChartsComponentModule, decorators: [{
|
|
33
|
+
type: NgModule,
|
|
34
|
+
args: [{
|
|
35
|
+
declarations: [UniversalSkillsSpiderChartsComponent],
|
|
36
|
+
imports: [
|
|
37
|
+
CommonModule,
|
|
38
|
+
AccordionComponentModule,
|
|
39
|
+
BadgeComponentModule,
|
|
40
|
+
ProgressBarComponentModule,
|
|
41
|
+
SpiderChartComponentModule,
|
|
42
|
+
DividerComponentModule,
|
|
43
|
+
MemoizeFuncPipe,
|
|
44
|
+
UiTranslatePipe,
|
|
45
|
+
OrdinalSuffixPipe,
|
|
46
|
+
KeyValuePipe,
|
|
47
|
+
],
|
|
48
|
+
providers: [UiTranslatePipe],
|
|
49
|
+
exports: [UniversalSkillsSpiderChartsComponent],
|
|
50
|
+
}]
|
|
51
|
+
}] });
|
|
52
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5pdmVyc2FsLXNraWxscy1zcGlkZXItY2hhcnRzLmNvbXBvbmVudC5tb2R1bGUuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi8uLi9wcm9qZWN0cy90Z28tY2Fub3B5LXVpL2NvbXBvbmVudHMvdW5pdmVyc2FsLXNraWxscy1zcGlkZXItY2hhcnRzL3VuaXZlcnNhbC1za2lsbHMtc3BpZGVyLWNoYXJ0cy5jb21wb25lbnQubW9kdWxlLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBLE9BQU8sRUFBRSxRQUFRLEVBQUUsTUFBTSxlQUFlLENBQUM7QUFDekMsT0FBTyxFQUFFLFlBQVksRUFBRSxZQUFZLEVBQUUsTUFBTSxpQkFBaUIsQ0FBQztBQUM3RCxPQUFPLEVBQUUsb0NBQW9DLEVBQUUsTUFBTSw0Q0FBNEMsQ0FBQztBQUNsRyxPQUFPLEVBQUUsd0JBQXdCLEVBQUUsTUFBTSx5Q0FBeUMsQ0FBQztBQUNuRixPQUFPLEVBQUUsb0JBQW9CLEVBQUUsTUFBTSxpQ0FBaUMsQ0FBQztBQUN2RSxPQUFPLEVBQUUsMEJBQTBCLEVBQUUsTUFBTSwrQ0FBK0MsQ0FBQztBQUMzRixPQUFPLEVBQUUsZUFBZSxFQUFFLE1BQU0sK0JBQStCLENBQUM7QUFDaEUsT0FBTyxFQUFFLGVBQWUsRUFBRSxNQUFNLCtCQUErQixDQUFDO0FBQ2hFLE9BQU8sRUFBRSxpQkFBaUIsRUFBRSxNQUFNLG9DQUFvQyxDQUFDO0FBQ3ZFLE9BQU8sRUFBRSwwQkFBMEIsRUFBRSxNQUFNLHFDQUFxQyxDQUFDO0FBQ2pGLE9BQU8sRUFBRSxzQkFBc0IsRUFBRSxNQUFNLHFDQUFxQyxDQUFDOztBQW1CN0UsTUFBTSxPQUFPLDBDQUEwQzsrR0FBMUMsMENBQTBDO2dIQUExQywwQ0FBMEMsaUJBaEJ0QyxvQ0FBb0MsYUFFakQsWUFBWTtZQUNaLHdCQUF3QjtZQUN4QixvQkFBb0I7WUFDcEIsMEJBQTBCO1lBQzFCLDBCQUEwQjtZQUMxQixzQkFBc0I7WUFDdEIsZUFBZTtZQUNmLGVBQWU7WUFDZixpQkFBaUI7WUFDakIsWUFBWSxhQUdKLG9DQUFvQztnSEFFbkMsMENBQTBDLGFBSDFDLENBQUMsZUFBZSxDQUFDLFlBWDFCLFlBQVk7WUFDWix3QkFBd0I7WUFDeEIsb0JBQW9CO1lBQ3BCLDBCQUEwQjtZQUMxQiwwQkFBMEI7WUFDMUIsc0JBQXNCOzs0RkFTYiwwQ0FBMEM7a0JBakJ0RCxRQUFRO21CQUFDO29CQUNSLFlBQVksRUFBRSxDQUFDLG9DQUFvQyxDQUFDO29CQUNwRCxPQUFPLEVBQUU7d0JBQ1AsWUFBWTt3QkFDWix3QkFBd0I7d0JBQ3hCLG9CQUFvQjt3QkFDcEIsMEJBQTBCO3dCQUMxQiwwQkFBMEI7d0JBQzFCLHNCQUFzQjt3QkFDdEIsZUFBZTt3QkFDZixlQUFlO3dCQUNmLGlCQUFpQjt3QkFDakIsWUFBWTtxQkFDYjtvQkFDRCxTQUFTLEVBQUUsQ0FBQyxlQUFlLENBQUM7b0JBQzVCLE9BQU8sRUFBRSxDQUFDLG9DQUFvQyxDQUFDO2lCQUNoRCIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IE5nTW9kdWxlIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBDb21tb25Nb2R1bGUsIEtleVZhbHVlUGlwZSB9IGZyb20gJ0Bhbmd1bGFyL2NvbW1vbic7XG5pbXBvcnQgeyBVbml2ZXJzYWxTa2lsbHNTcGlkZXJDaGFydHNDb21wb25lbnQgfSBmcm9tICcuL3VuaXZlcnNhbC1za2lsbHMtc3BpZGVyLWNoYXJ0cy5jb21wb25lbnQnO1xuaW1wb3J0IHsgQWNjb3JkaW9uQ29tcG9uZW50TW9kdWxlIH0gZnJvbSAnLi4vYWNjb3JkaW9uL2FjY29yZGlvbi5jb21wb25lbnQubW9kdWxlJztcbmltcG9ydCB7IEJhZGdlQ29tcG9uZW50TW9kdWxlIH0gZnJvbSAnLi4vYmFkZ2UvYmFkZ2UuY29tcG9uZW50Lm1vZHVsZSc7XG5pbXBvcnQgeyBQcm9ncmVzc0JhckNvbXBvbmVudE1vZHVsZSB9IGZyb20gJy4uL3Byb2dyZXNzLWJhci9wcm9ncmVzcy1iYXIuY29tcG9uZW50Lm1vZHVsZSc7XG5pbXBvcnQgeyBNZW1vaXplRnVuY1BpcGUgfSBmcm9tICcuLi8uLi9waXBlcy9tZW1vaXplLWZ1bmMucGlwZSc7XG5pbXBvcnQgeyBVaVRyYW5zbGF0ZVBpcGUgfSBmcm9tICcuLi8uLi9waXBlcy91aS10cmFuc2xhdGUucGlwZSc7XG5pbXBvcnQgeyBPcmRpbmFsU3VmZml4UGlwZSB9IGZyb20gJy4uLy4uL3BpcGVzL3VpLW9yZGluYWwtc3VmZml4LnBpcGUnO1xuaW1wb3J0IHsgU3BpZGVyQ2hhcnRDb21wb25lbnRNb2R1bGUgfSBmcm9tICcuLi9zcGlkZXItY2hhcnQvc3BpZGVyLWNoYXJ0Lm1vZHVsZSc7XG5pbXBvcnQgeyBEaXZpZGVyQ29tcG9uZW50TW9kdWxlIH0gZnJvbSAnLi4vZGl2aWRlci9kaXZpZGVyLmNvbXBvbmVudC5tb2R1bGUnO1xuXG5ATmdNb2R1bGUoe1xuICBkZWNsYXJhdGlvbnM6IFtVbml2ZXJzYWxTa2lsbHNTcGlkZXJDaGFydHNDb21wb25lbnRdLFxuICBpbXBvcnRzOiBbXG4gICAgQ29tbW9uTW9kdWxlLFxuICAgIEFjY29yZGlvbkNvbXBvbmVudE1vZHVsZSxcbiAgICBCYWRnZUNvbXBvbmVudE1vZHVsZSxcbiAgICBQcm9ncmVzc0JhckNvbXBvbmVudE1vZHVsZSxcbiAgICBTcGlkZXJDaGFydENvbXBvbmVudE1vZHVsZSxcbiAgICBEaXZpZGVyQ29tcG9uZW50TW9kdWxlLFxuICAgIE1lbW9pemVGdW5jUGlwZSxcbiAgICBVaVRyYW5zbGF0ZVBpcGUsXG4gICAgT3JkaW5hbFN1ZmZpeFBpcGUsXG4gICAgS2V5VmFsdWVQaXBlLFxuICBdLFxuICBwcm92aWRlcnM6IFtVaVRyYW5zbGF0ZVBpcGVdLFxuICBleHBvcnRzOiBbVW5pdmVyc2FsU2tpbGxzU3BpZGVyQ2hhcnRzQ29tcG9uZW50XSxcbn0pXG5leHBvcnQgY2xhc3MgVW5pdmVyc2FsU2tpbGxzU3BpZGVyQ2hhcnRzQ29tcG9uZW50TW9kdWxlIHt9XG4iXX0=
|
|
@@ -32,10 +32,10 @@ export class ValidationErrorComponent {
|
|
|
32
32
|
return 0;
|
|
33
33
|
}
|
|
34
34
|
}
|
|
35
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
36
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "
|
|
35
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ValidationErrorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
36
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "18.2.13", type: ValidationErrorComponent, selector: "ui-validation-error", inputs: { ngControl: "ngControl", touchedOn: "touchedOn", errorMessage: "errorMessage", label: "label", applicationTheme: "applicationTheme" }, host: { properties: { "attr.theme": "this.applicationTheme" } }, ngImport: i0, template: "<div class=\"errors\" *ngIf=\"ngControl?.hasError('maxlength')\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span>{{ translationContextErrors + 'MAX_LENGTH' | uiTranslate : { maxlength: getErrorValue('maxlength') } | async }}</span>\n</div>\n\n<div class=\"errors\" *ngIf=\"ngControl?.hasError('minlength')\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span>{{ translationContextErrors + 'MIN_LENGTH' | uiTranslate : { maxlength: getErrorValue('minlength') } | async }}</span>\n</div>\n\n<div class=\"errors\" *ngIf=\"ngControl?.hasError('min')\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span>{{ translationContextErrors + 'MIN' | uiTranslate : { min: getErrorValue('min') } | async }}</span>\n</div>\n\n<div class=\"errors\" *ngIf=\"ngControl?.hasError('max')\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span>{{ translationContextErrors + 'MAX' | uiTranslate : { max: getErrorValue('max') } | async }}</span>\n</div>\n\n<div class=\"errors\" *ngIf=\"ngControl?.hasError('required') && (touchedOn ? ngControl?.touched : true)\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span>{{ translationContextErrors + (label ? 'REQUIRED_FIELD' : 'REQUIRED') | uiTranslate : { label } | async }}</span>\n</div>\n\n<div class=\"errors\" *ngIf=\"ngControl?.hasError('email')\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span>{{ translationContextErrors + 'EMAIL_INCORRECT' | uiTranslate | async }}</span>\n</div>\n\n<div class=\"custom-errors\" *ngIf=\"errorMessage\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span>{{ errorMessage }}</span>\n</div>\n", styles: [""], dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2.IconComponent, selector: "ui-icon", inputs: ["size", "cssClass", "name", "color", "filled", "applicationTheme", "useFullIconName"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }, { kind: "pipe", type: i3.UiTranslatePipe, name: "uiTranslate" }] }); }
|
|
37
37
|
}
|
|
38
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
38
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ValidationErrorComponent, decorators: [{
|
|
39
39
|
type: Component,
|
|
40
40
|
args: [{ selector: 'ui-validation-error', template: "<div class=\"errors\" *ngIf=\"ngControl?.hasError('maxlength')\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span>{{ translationContextErrors + 'MAX_LENGTH' | uiTranslate : { maxlength: getErrorValue('maxlength') } | async }}</span>\n</div>\n\n<div class=\"errors\" *ngIf=\"ngControl?.hasError('minlength')\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span>{{ translationContextErrors + 'MIN_LENGTH' | uiTranslate : { maxlength: getErrorValue('minlength') } | async }}</span>\n</div>\n\n<div class=\"errors\" *ngIf=\"ngControl?.hasError('min')\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span>{{ translationContextErrors + 'MIN' | uiTranslate : { min: getErrorValue('min') } | async }}</span>\n</div>\n\n<div class=\"errors\" *ngIf=\"ngControl?.hasError('max')\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span>{{ translationContextErrors + 'MAX' | uiTranslate : { max: getErrorValue('max') } | async }}</span>\n</div>\n\n<div class=\"errors\" *ngIf=\"ngControl?.hasError('required') && (touchedOn ? ngControl?.touched : true)\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span>{{ translationContextErrors + (label ? 'REQUIRED_FIELD' : 'REQUIRED') | uiTranslate : { label } | async }}</span>\n</div>\n\n<div class=\"errors\" *ngIf=\"ngControl?.hasError('email')\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span>{{ translationContextErrors + 'EMAIL_INCORRECT' | uiTranslate | async }}</span>\n</div>\n\n<div class=\"custom-errors\" *ngIf=\"errorMessage\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span>{{ errorMessage }}</span>\n</div>\n" }]
|
|
41
41
|
}], propDecorators: { ngControl: [{
|
|
@@ -5,11 +5,11 @@ import { IconComponentModule } from '../icon/icon.component.module';
|
|
|
5
5
|
import { UiTranslatePipe } from '../../pipes/ui-translate.pipe';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
7
|
export class ValidationErrorModule {
|
|
8
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
9
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "
|
|
10
|
-
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "
|
|
8
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ValidationErrorModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
9
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: ValidationErrorModule, declarations: [ValidationErrorComponent], imports: [CommonModule, IconComponentModule, UiTranslatePipe], exports: [ValidationErrorComponent] }); }
|
|
10
|
+
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ValidationErrorModule, imports: [CommonModule, IconComponentModule] }); }
|
|
11
11
|
}
|
|
12
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
12
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: ValidationErrorModule, decorators: [{
|
|
13
13
|
type: NgModule,
|
|
14
14
|
args: [{
|
|
15
15
|
declarations: [ValidationErrorComponent],
|
|
@@ -46,10 +46,10 @@ export class DigitsOnlyDirective {
|
|
|
46
46
|
}
|
|
47
47
|
}
|
|
48
48
|
}
|
|
49
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
50
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
49
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DigitsOnlyDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
50
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: DigitsOnlyDirective, isStandalone: true, selector: "[digitsOnly]", inputs: { allowNegative: "allowNegative", allowDecimal: "allowDecimal", allowOnlyDigits: "allowOnlyDigits" }, host: { listeners: { "keypress": "onKeyPress($event)", "paste": "onPaste($event)", "keydown": "onKeydown($event)", "input": "onInput($event)" } }, ngImport: i0 }); }
|
|
51
51
|
}
|
|
52
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
52
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DigitsOnlyDirective, decorators: [{
|
|
53
53
|
type: Directive,
|
|
54
54
|
args: [{
|
|
55
55
|
selector: '[digitsOnly]',
|
|
@@ -29,10 +29,10 @@ export class DragDropDirective {
|
|
|
29
29
|
}
|
|
30
30
|
}
|
|
31
31
|
}
|
|
32
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
33
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
32
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DragDropDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
33
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: DragDropDirective, selector: "[uiDragDrop]", outputs: { fileDropped: "fileDropped" }, host: { listeners: { "dragover": "onDragOver($event)", "dragleave": "onDragLeave($event)", "drop": "ondrop($event)" }, properties: { "class.file-over": "this.file" } }, ngImport: i0 }); }
|
|
34
34
|
}
|
|
35
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
35
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DragDropDirective, decorators: [{
|
|
36
36
|
type: Directive,
|
|
37
37
|
args: [{
|
|
38
38
|
selector: '[uiDragDrop]'
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import { Directive, Input } from '@angular/core';
|
|
2
|
+
import { Subscription } from 'rxjs';
|
|
3
|
+
import * as i0 from "@angular/core";
|
|
4
|
+
export class DynamicComponentDirective {
|
|
5
|
+
set dynamicComponent(componentRenderer) {
|
|
6
|
+
if (componentRenderer.component) {
|
|
7
|
+
this.compRef = this.vcr.createComponent(componentRenderer.component);
|
|
8
|
+
if (componentRenderer.inputs) {
|
|
9
|
+
Object.keys(componentRenderer.inputs).map(inputName => (this.compRef.instance[inputName] = componentRenderer.inputs[inputName]));
|
|
10
|
+
}
|
|
11
|
+
if (componentRenderer.outputs) {
|
|
12
|
+
Object.keys(componentRenderer.outputs).map(output => {
|
|
13
|
+
this.subscription.add(this.compRef.instance[output].subscribe(componentRenderer.outputs?.[output]));
|
|
14
|
+
});
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
constructor(vcr) {
|
|
19
|
+
this.vcr = vcr;
|
|
20
|
+
this.subscription = new Subscription();
|
|
21
|
+
}
|
|
22
|
+
ngOnDestroy() {
|
|
23
|
+
if (this.compRef) {
|
|
24
|
+
this.compRef.destroy();
|
|
25
|
+
}
|
|
26
|
+
this.subscription.unsubscribe();
|
|
27
|
+
}
|
|
28
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DynamicComponentDirective, deps: [{ token: i0.ViewContainerRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
29
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: DynamicComponentDirective, isStandalone: true, selector: "[dynamicComponent]", inputs: { dynamicComponent: "dynamicComponent" }, ngImport: i0 }); }
|
|
30
|
+
}
|
|
31
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DynamicComponentDirective, decorators: [{
|
|
32
|
+
type: Directive,
|
|
33
|
+
args: [{
|
|
34
|
+
selector: '[dynamicComponent]',
|
|
35
|
+
standalone: true,
|
|
36
|
+
}]
|
|
37
|
+
}], ctorParameters: () => [{ type: i0.ViewContainerRef }], propDecorators: { dynamicComponent: [{
|
|
38
|
+
type: Input
|
|
39
|
+
}] } });
|
|
40
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiZHluYW1pYy1jb21wb25lbnQuZGlyZWN0aXZlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvdGdvLWNhbm9weS11aS9kaXJlY3RpdmVzL2R5bmFtaWMtY29tcG9uZW50LmRpcmVjdGl2ZS50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFBQSxPQUFPLEVBQWdCLFNBQVMsRUFBZ0IsS0FBSyxFQUFxQyxNQUFNLGVBQWUsQ0FBQztBQUNoSCxPQUFPLEVBQUUsWUFBWSxFQUFFLE1BQU0sTUFBTSxDQUFDOztBQVlwQyxNQUFNLE9BQU8seUJBQXlCO0lBSXBDLElBQWEsZ0JBQWdCLENBQUMsaUJBQXFDO1FBQ2pFLElBQUksaUJBQWlCLENBQUMsU0FBUyxFQUFFLENBQUM7WUFDaEMsSUFBSSxDQUFDLE9BQU8sR0FBRyxJQUFJLENBQUMsR0FBRyxDQUFDLGVBQWUsQ0FBQyxpQkFBaUIsQ0FBQyxTQUFTLENBQUMsQ0FBQztZQUVyRSxJQUFJLGlCQUFpQixDQUFDLE1BQU0sRUFBRSxDQUFDO2dCQUM3QixNQUFNLENBQUMsSUFBSSxDQUFDLGlCQUFpQixDQUFDLE1BQU0sQ0FBQyxDQUFDLEdBQUcsQ0FDdkMsU0FBUyxDQUFDLEVBQUUsQ0FBQyxDQUFDLElBQUksQ0FBQyxPQUFPLENBQUMsUUFBUSxDQUFDLFNBQVMsQ0FBQyxHQUFHLGlCQUFpQixDQUFDLE1BQU0sQ0FBQyxTQUFTLENBQUMsQ0FBQyxDQUN0RixDQUFDO1lBQ0osQ0FBQztZQUVELElBQUksaUJBQWlCLENBQUMsT0FBTyxFQUFFLENBQUM7Z0JBQzlCLE1BQU0sQ0FBQyxJQUFJLENBQUMsaUJBQWlCLENBQUMsT0FBTyxDQUFDLENBQUMsR0FBRyxDQUFDLE1BQU0sQ0FBQyxFQUFFO29CQUNsRCxJQUFJLENBQUMsWUFBWSxDQUFDLEdBQUcsQ0FDbEIsSUFBSSxDQUFDLE9BQU8sQ0FBQyxRQUFRLENBQUMsTUFBTSxDQUF1QixDQUFDLFNBQVMsQ0FBQyxpQkFBaUIsQ0FBQyxPQUFPLEVBQUUsQ0FBQyxNQUFNLENBQUMsQ0FBQyxDQUNwRyxDQUFDO2dCQUNKLENBQUMsQ0FBQyxDQUFDO1lBQ0wsQ0FBQztRQUNILENBQUM7SUFDSCxDQUFDO0lBRUQsWUFBb0IsR0FBcUI7UUFBckIsUUFBRyxHQUFILEdBQUcsQ0FBa0I7UUF2QmpDLGlCQUFZLEdBQUcsSUFBSSxZQUFZLEVBQUUsQ0FBQztJQXVCRSxDQUFDO0lBRTdDLFdBQVc7UUFDVCxJQUFJLElBQUksQ0FBQyxPQUFPLEVBQUUsQ0FBQztZQUNqQixJQUFJLENBQUMsT0FBTyxDQUFDLE9BQU8sRUFBRSxDQUFDO1FBQ3pCLENBQUM7UUFDRCxJQUFJLENBQUMsWUFBWSxDQUFDLFdBQVcsRUFBRSxDQUFDO0lBQ2xDLENBQUM7K0dBL0JVLHlCQUF5QjttR0FBekIseUJBQXlCOzs0RkFBekIseUJBQXlCO2tCQUpyQyxTQUFTO21CQUFDO29CQUNULFFBQVEsRUFBRSxvQkFBb0I7b0JBQzlCLFVBQVUsRUFBRSxJQUFJO2lCQUNqQjtxRkFLYyxnQkFBZ0I7c0JBQTVCLEtBQUsiLCJzb3VyY2VzQ29udGVudCI6WyJpbXBvcnQgeyBDb21wb25lbnRSZWYsIERpcmVjdGl2ZSwgRXZlbnRFbWl0dGVyLCBJbnB1dCwgT25EZXN0cm95LCBUeXBlLCBWaWV3Q29udGFpbmVyUmVmIH0gZnJvbSAnQGFuZ3VsYXIvY29yZSc7XG5pbXBvcnQgeyBTdWJzY3JpcHRpb24gfSBmcm9tICdyeGpzJztcblxuaW50ZXJmYWNlIElDb21wb25lbnRSZW5kZXJlciB7XG4gIGNvbXBvbmVudDogVHlwZTxhbnk+O1xuICBpbnB1dHM/OiBhbnk7XG4gIG91dHB1dHM/OiB7IFtrZXk6IHN0cmluZ106IGFueSB9O1xufVxuXG5ARGlyZWN0aXZlKHtcbiAgc2VsZWN0b3I6ICdbZHluYW1pY0NvbXBvbmVudF0nLFxuICBzdGFuZGFsb25lOiB0cnVlLFxufSlcbmV4cG9ydCBjbGFzcyBEeW5hbWljQ29tcG9uZW50RGlyZWN0aXZlIGltcGxlbWVudHMgT25EZXN0cm95IHtcbiAgcHJpdmF0ZSBzdWJzY3JpcHRpb24gPSBuZXcgU3Vic2NyaXB0aW9uKCk7XG4gIHByaXZhdGUgY29tcFJlZjogQ29tcG9uZW50UmVmPGFueT47XG5cbiAgQElucHV0KCkgc2V0IGR5bmFtaWNDb21wb25lbnQoY29tcG9uZW50UmVuZGVyZXI6IElDb21wb25lbnRSZW5kZXJlcikge1xuICAgIGlmIChjb21wb25lbnRSZW5kZXJlci5jb21wb25lbnQpIHtcbiAgICAgIHRoaXMuY29tcFJlZiA9IHRoaXMudmNyLmNyZWF0ZUNvbXBvbmVudChjb21wb25lbnRSZW5kZXJlci5jb21wb25lbnQpO1xuXG4gICAgICBpZiAoY29tcG9uZW50UmVuZGVyZXIuaW5wdXRzKSB7XG4gICAgICAgIE9iamVjdC5rZXlzKGNvbXBvbmVudFJlbmRlcmVyLmlucHV0cykubWFwKFxuICAgICAgICAgIGlucHV0TmFtZSA9PiAodGhpcy5jb21wUmVmLmluc3RhbmNlW2lucHV0TmFtZV0gPSBjb21wb25lbnRSZW5kZXJlci5pbnB1dHNbaW5wdXROYW1lXSlcbiAgICAgICAgKTtcbiAgICAgIH1cblxuICAgICAgaWYgKGNvbXBvbmVudFJlbmRlcmVyLm91dHB1dHMpIHtcbiAgICAgICAgT2JqZWN0LmtleXMoY29tcG9uZW50UmVuZGVyZXIub3V0cHV0cykubWFwKG91dHB1dCA9PiB7XG4gICAgICAgICAgdGhpcy5zdWJzY3JpcHRpb24uYWRkKFxuICAgICAgICAgICAgKHRoaXMuY29tcFJlZi5pbnN0YW5jZVtvdXRwdXRdIGFzIEV2ZW50RW1pdHRlcjxhbnk+KS5zdWJzY3JpYmUoY29tcG9uZW50UmVuZGVyZXIub3V0cHV0cz8uW291dHB1dF0pXG4gICAgICAgICAgKTtcbiAgICAgICAgfSk7XG4gICAgICB9XG4gICAgfVxuICB9XG5cbiAgY29uc3RydWN0b3IocHJpdmF0ZSB2Y3I6IFZpZXdDb250YWluZXJSZWYpIHt9XG5cbiAgbmdPbkRlc3Ryb3koKSB7XG4gICAgaWYgKHRoaXMuY29tcFJlZikge1xuICAgICAgdGhpcy5jb21wUmVmLmRlc3Ryb3koKTtcbiAgICB9XG4gICAgdGhpcy5zdWJzY3JpcHRpb24udW5zdWJzY3JpYmUoKTtcbiAgfVxufVxuIl19
|
|
@@ -27,10 +27,10 @@ export class EllipseTextDirective {
|
|
|
27
27
|
: (textElement.clientWidth + this.maxDiffPixels) < textElement.scrollWidth);
|
|
28
28
|
});
|
|
29
29
|
}
|
|
30
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
31
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
30
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: EllipseTextDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
31
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: EllipseTextDirective, isStandalone: true, selector: "[uiEllipseText]", inputs: { isMultiline: "isMultiline", maxDiffPixels: "maxDiffPixels", refresh: "refresh" }, outputs: { onChangeTextState: "onChangeTextState" }, host: { listeners: { "window:resize": "resize()" } }, ngImport: i0 }); }
|
|
32
32
|
}
|
|
33
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
33
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: EllipseTextDirective, decorators: [{
|
|
34
34
|
type: Directive,
|
|
35
35
|
args: [{
|
|
36
36
|
selector: '[uiEllipseText]',
|
|
@@ -26,10 +26,10 @@ export class SelectTextDirective {
|
|
|
26
26
|
this.setTextColor();
|
|
27
27
|
}
|
|
28
28
|
}
|
|
29
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
30
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
29
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SelectTextDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
30
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: SelectTextDirective, selector: "[selectText]", inputs: { selectText: "selectText" }, usesOnChanges: true, ngImport: i0 }); }
|
|
31
31
|
}
|
|
32
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
32
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: SelectTextDirective, decorators: [{
|
|
33
33
|
type: Directive,
|
|
34
34
|
args: [{
|
|
35
35
|
selector: '[selectText]',
|
|
@@ -32,10 +32,10 @@ export class StepLineElementDirective {
|
|
|
32
32
|
this.setSize();
|
|
33
33
|
});
|
|
34
34
|
}
|
|
35
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
36
|
-
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "
|
|
35
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: StepLineElementDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
36
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "18.2.13", type: StepLineElementDirective, selector: "[stepLineElement]", inputs: { stepLineElement: "stepLineElement", position: "position" }, host: { listeners: { "window:resize.out-zone": "resize($event)" } }, usesOnChanges: true, ngImport: i0 }); }
|
|
37
37
|
}
|
|
38
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
38
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: StepLineElementDirective, decorators: [{
|
|
39
39
|
type: Directive,
|
|
40
40
|
args: [{
|
|
41
41
|
selector: '[stepLineElement]',
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
//TODO Update this model after backend/endpoint definitions
|
|
2
|
+
export var SkillAreaGroupTypes;
|
|
3
|
+
(function (SkillAreaGroupTypes) {
|
|
4
|
+
SkillAreaGroupTypes[SkillAreaGroupTypes["FocusingOnObjectives"] = 1] = "FocusingOnObjectives";
|
|
5
|
+
SkillAreaGroupTypes[SkillAreaGroupTypes["WorkingWithPeople"] = 2] = "WorkingWithPeople";
|
|
6
|
+
SkillAreaGroupTypes[SkillAreaGroupTypes["ManagingOnesSelf"] = 3] = "ManagingOnesSelf";
|
|
7
|
+
})(SkillAreaGroupTypes || (SkillAreaGroupTypes = {}));
|
|
8
|
+
//TODO Update this model after backend/endpoint definitions
|
|
9
|
+
export var SkillAreaTypes;
|
|
10
|
+
(function (SkillAreaTypes) {
|
|
11
|
+
SkillAreaTypes["BusinessSavvy"] = "BUSINESS_SAVVY";
|
|
12
|
+
SkillAreaTypes["StrategicPerspective"] = "STRATEGIC_PERSPECTIVE";
|
|
13
|
+
SkillAreaTypes["CustomerFocus"] = "CUSTOMER_FOCUS";
|
|
14
|
+
SkillAreaTypes["NavigatingComplexity"] = "NAVIGATING_COMPLEXITY";
|
|
15
|
+
SkillAreaTypes["AgileDecisionMaking"] = "AGILE_DECISION_MAKING";
|
|
16
|
+
SkillAreaTypes["EmbracingInnovation"] = "EMBRACING_INNOVATION";
|
|
17
|
+
SkillAreaTypes["PlanningAndPrioritizing"] = "PLANNING_AND_PRIORITIZING";
|
|
18
|
+
SkillAreaTypes["OrganizingResources"] = "ORGANIZING_RESOURCES";
|
|
19
|
+
SkillAreaTypes["DrivingResults"] = "DRIVING_RESULTS";
|
|
20
|
+
SkillAreaTypes["WorkingCollaboratively"] = "WORKING_COLLABORATIVELY";
|
|
21
|
+
SkillAreaTypes["SocialAgility"] = "SOCIAL_AGILITY";
|
|
22
|
+
SkillAreaTypes["CommunicatingEffectively"] = "COMMUNICATING_EFFECTIVELY";
|
|
23
|
+
SkillAreaTypes["HandlingConflict"] = "HANDLING_CONFLICT";
|
|
24
|
+
SkillAreaTypes["ValuingDiversity"] = "VALUING_DIVERSITY";
|
|
25
|
+
SkillAreaTypes["DevelopingOthers"] = "DEVELOPING_OTHERS";
|
|
26
|
+
SkillAreaTypes["ShowingResilience"] = "SHOWING_RESILIENCE";
|
|
27
|
+
SkillAreaTypes["NavigatingAmbiguity"] = "NAVIGATING_AMBIGUITY";
|
|
28
|
+
SkillAreaTypes["SelfAwareness"] = "SELF_AWARENESS";
|
|
29
|
+
SkillAreaTypes["SelfDevelopment"] = "SELF_DEVELOPMENT";
|
|
30
|
+
SkillAreaTypes["BeingBold"] = "BEING_BOLD";
|
|
31
|
+
SkillAreaTypes["EarningTrust"] = "EARNING_TRUST";
|
|
32
|
+
})(SkillAreaTypes || (SkillAreaTypes = {}));
|
|
33
|
+
//# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5pdmVyc2FsLXNraWxscy1yZXBvcnQubW9kZWwuanMiLCJzb3VyY2VSb290IjoiIiwic291cmNlcyI6WyIuLi8uLi8uLi8uLi9wcm9qZWN0cy90Z28tY2Fub3B5LXVpL21vZGVscy91bml2ZXJzYWwtc2tpbGxzLXJlcG9ydC5tb2RlbC50cyJdLCJuYW1lcyI6W10sIm1hcHBpbmdzIjoiQUFvQkEsMkRBQTJEO0FBQzNELE1BQU0sQ0FBTixJQUFZLG1CQUlYO0FBSkQsV0FBWSxtQkFBbUI7SUFDN0IsNkZBQXdCLENBQUE7SUFDeEIsdUZBQXFCLENBQUE7SUFDckIscUZBQW9CLENBQUE7QUFDdEIsQ0FBQyxFQUpXLG1CQUFtQixLQUFuQixtQkFBbUIsUUFJOUI7QUFFRCwyREFBMkQ7QUFDM0QsTUFBTSxDQUFOLElBQVksY0F3Qlg7QUF4QkQsV0FBWSxjQUFjO0lBQ3hCLGtEQUFnQyxDQUFBO0lBQ2hDLGdFQUE4QyxDQUFBO0lBQzlDLGtEQUFnQyxDQUFBO0lBQ2hDLGdFQUE4QyxDQUFBO0lBQzlDLCtEQUE2QyxDQUFBO0lBQzdDLDhEQUE0QyxDQUFBO0lBQzVDLHVFQUFxRCxDQUFBO0lBQ3JELDhEQUE0QyxDQUFBO0lBQzVDLG9EQUFrQyxDQUFBO0lBRWxDLG9FQUFrRCxDQUFBO0lBQ2xELGtEQUFnQyxDQUFBO0lBQ2hDLHdFQUFzRCxDQUFBO0lBQ3RELHdEQUFzQyxDQUFBO0lBQ3RDLHdEQUFzQyxDQUFBO0lBQ3RDLHdEQUFzQyxDQUFBO0lBRXRDLDBEQUF3QyxDQUFBO0lBQ3hDLDhEQUE0QyxDQUFBO0lBQzVDLGtEQUFnQyxDQUFBO0lBQ2hDLHNEQUFvQyxDQUFBO0lBQ3BDLDBDQUF3QixDQUFBO0lBQ3hCLGdEQUE4QixDQUFBO0FBQ2hDLENBQUMsRUF4QlcsY0FBYyxLQUFkLGNBQWMsUUF3QnpCIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgU3BpZGVyQ2hhcnREYXRhIH0gZnJvbSAnLi4vY29tcG9uZW50cy9zcGlkZXItY2hhcnQvc3BpZGVyLWNoYXJ0Lm1vZGVsJztcblxuZXhwb3J0IGludGVyZmFjZSBTa2lsbEFyZWFHcm91cCB7XG4gIHRpdGxlOiBzdHJpbmc7XG4gIGRlc2NyaXB0aW9uOiBzdHJpbmc7XG4gIHNraWxsQXJlYUxpc3Q6IFNraWxsQXJlYURhdGFbXTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBTa2lsbEFyZWFTcGlkZXJDaGFydERhdGEge1xuICB0aXRsZTogc3RyaW5nO1xuICBkZXNjcmlwdGlvbjogc3RyaW5nO1xuICBzcGlkZXJDaGFydERhdGE6IFNwaWRlckNoYXJ0RGF0YTtcbn1cblxuZXhwb3J0IGludGVyZmFjZSBTa2lsbEFyZWFEYXRhIHtcbiAgcGVyY2VudGlsZVNjb3Jpbmc6IG51bWJlcjtcbiAgcG9vbFBlcmNlbnRpbGVTY29yaW5nPzogbnVtYmVyO1xuICBza2lsbEFyZWFOYW1lOiBTa2lsbEFyZWFUeXBlcztcbn1cblxuLy9UT0RPIFVwZGF0ZSB0aGlzIG1vZGVsIGFmdGVyIGJhY2tlbmQvZW5kcG9pbnQgZGVmaW5pdGlvbnNcbmV4cG9ydCBlbnVtIFNraWxsQXJlYUdyb3VwVHlwZXMge1xuICBGb2N1c2luZ09uT2JqZWN0aXZlcyA9IDEsXG4gIFdvcmtpbmdXaXRoUGVvcGxlID0gMixcbiAgTWFuYWdpbmdPbmVzU2VsZiA9IDMsXG59XG5cbi8vVE9ETyBVcGRhdGUgdGhpcyBtb2RlbCBhZnRlciBiYWNrZW5kL2VuZHBvaW50IGRlZmluaXRpb25zXG5leHBvcnQgZW51bSBTa2lsbEFyZWFUeXBlcyB7XG4gIEJ1c2luZXNzU2F2dnkgPSAnQlVTSU5FU1NfU0FWVlknLFxuICBTdHJhdGVnaWNQZXJzcGVjdGl2ZSA9ICdTVFJBVEVHSUNfUEVSU1BFQ1RJVkUnLFxuICBDdXN0b21lckZvY3VzID0gJ0NVU1RPTUVSX0ZPQ1VTJyxcbiAgTmF2aWdhdGluZ0NvbXBsZXhpdHkgPSAnTkFWSUdBVElOR19DT01QTEVYSVRZJyxcbiAgQWdpbGVEZWNpc2lvbk1ha2luZyA9ICdBR0lMRV9ERUNJU0lPTl9NQUtJTkcnLFxuICBFbWJyYWNpbmdJbm5vdmF0aW9uID0gJ0VNQlJBQ0lOR19JTk5PVkFUSU9OJyxcbiAgUGxhbm5pbmdBbmRQcmlvcml0aXppbmcgPSAnUExBTk5JTkdfQU5EX1BSSU9SSVRJWklORycsXG4gIE9yZ2FuaXppbmdSZXNvdXJjZXMgPSAnT1JHQU5JWklOR19SRVNPVVJDRVMnLFxuICBEcml2aW5nUmVzdWx0cyA9ICdEUklWSU5HX1JFU1VMVFMnLFxuXG4gIFdvcmtpbmdDb2xsYWJvcmF0aXZlbHkgPSAnV09SS0lOR19DT0xMQUJPUkFUSVZFTFknLFxuICBTb2NpYWxBZ2lsaXR5ID0gJ1NPQ0lBTF9BR0lMSVRZJyxcbiAgQ29tbXVuaWNhdGluZ0VmZmVjdGl2ZWx5ID0gJ0NPTU1VTklDQVRJTkdfRUZGRUNUSVZFTFknLFxuICBIYW5kbGluZ0NvbmZsaWN0ID0gJ0hBTkRMSU5HX0NPTkZMSUNUJyxcbiAgVmFsdWluZ0RpdmVyc2l0eSA9ICdWQUxVSU5HX0RJVkVSU0lUWScsXG4gIERldmVsb3BpbmdPdGhlcnMgPSAnREVWRUxPUElOR19PVEhFUlMnLFxuXG4gIFNob3dpbmdSZXNpbGllbmNlID0gJ1NIT1dJTkdfUkVTSUxJRU5DRScsXG4gIE5hdmlnYXRpbmdBbWJpZ3VpdHkgPSAnTkFWSUdBVElOR19BTUJJR1VJVFknLFxuICBTZWxmQXdhcmVuZXNzID0gJ1NFTEZfQVdBUkVORVNTJyxcbiAgU2VsZkRldmVsb3BtZW50ID0gJ1NFTEZfREVWRUxPUE1FTlQnLFxuICBCZWluZ0JvbGQgPSAnQkVJTkdfQk9MRCcsXG4gIEVhcm5pbmdUcnVzdCA9ICdFQVJOSU5HX1RSVVNUJyxcbn1cbiJdfQ==
|
|
@@ -20,10 +20,10 @@ export class DataPropertyGetterPipe {
|
|
|
20
20
|
}
|
|
21
21
|
return obj;
|
|
22
22
|
}
|
|
23
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
24
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
23
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DataPropertyGetterPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
24
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: DataPropertyGetterPipe, isStandalone: true, name: "dataPropertyGetter" }); }
|
|
25
25
|
}
|
|
26
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
26
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: DataPropertyGetterPipe, decorators: [{
|
|
27
27
|
type: Pipe,
|
|
28
28
|
args: [{
|
|
29
29
|
name: 'dataPropertyGetter',
|
|
@@ -14,10 +14,10 @@ export class HasValidationErrorPipe {
|
|
|
14
14
|
transform(value) {
|
|
15
15
|
return value ? !!Object.keys(value).filter(key => this.errorTypes.includes(key)).length : false;
|
|
16
16
|
}
|
|
17
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
18
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
17
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HasValidationErrorPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
18
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: HasValidationErrorPipe, isStandalone: true, name: "hasValidationError" }); }
|
|
19
19
|
}
|
|
20
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
20
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: HasValidationErrorPipe, decorators: [{
|
|
21
21
|
type: Pipe,
|
|
22
22
|
args: [{
|
|
23
23
|
name: 'hasValidationError',
|
|
@@ -26,10 +26,10 @@ export class MemoizeFuncPipe {
|
|
|
26
26
|
}
|
|
27
27
|
return handler(value);
|
|
28
28
|
}
|
|
29
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
30
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
29
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MemoizeFuncPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
30
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: MemoizeFuncPipe, isStandalone: true, name: "memoizeFunc" }); }
|
|
31
31
|
}
|
|
32
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
32
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: MemoizeFuncPipe, decorators: [{
|
|
33
33
|
type: Pipe,
|
|
34
34
|
args: [{
|
|
35
35
|
name: 'memoizeFunc',
|
|
@@ -13,10 +13,10 @@ export class NameInitialsPipe {
|
|
|
13
13
|
return `${firstLetters[0]?.toUpperCase() ?? ''}${firstLetters[1]?.toLowerCase() ?? ''}`;
|
|
14
14
|
}
|
|
15
15
|
}
|
|
16
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
17
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
16
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NameInitialsPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
17
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: NameInitialsPipe, name: "nameInitials" }); }
|
|
18
18
|
}
|
|
19
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
19
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: NameInitialsPipe, decorators: [{
|
|
20
20
|
type: Pipe,
|
|
21
21
|
args: [{
|
|
22
22
|
name: 'nameInitials',
|
|
@@ -18,10 +18,10 @@ export class OrdinalSuffixPipe {
|
|
|
18
18
|
return 'PERCENTILE_SUFFIXES.TH';
|
|
19
19
|
}
|
|
20
20
|
}
|
|
21
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
22
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
21
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: OrdinalSuffixPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
22
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: OrdinalSuffixPipe, isStandalone: true, name: "ordinalSuffix" }); }
|
|
23
23
|
}
|
|
24
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
24
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: OrdinalSuffixPipe, decorators: [{
|
|
25
25
|
type: Pipe,
|
|
26
26
|
args: [{
|
|
27
27
|
name: 'ordinalSuffix',
|
|
@@ -68,10 +68,10 @@ export class UiTranslatePipe {
|
|
|
68
68
|
return value ?? match;
|
|
69
69
|
});
|
|
70
70
|
}
|
|
71
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "
|
|
72
|
-
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "
|
|
71
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UiTranslatePipe, deps: [{ token: i1.LanguageService }], target: i0.ɵɵFactoryTarget.Pipe }); }
|
|
72
|
+
static { this.ɵpipe = i0.ɵɵngDeclarePipe({ minVersion: "14.0.0", version: "18.2.13", ngImport: i0, type: UiTranslatePipe, isStandalone: true, name: "uiTranslate" }); }
|
|
73
73
|
}
|
|
74
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "
|
|
74
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "18.2.13", ngImport: i0, type: UiTranslatePipe, decorators: [{
|
|
75
75
|
type: Pipe,
|
|
76
76
|
args: [{
|
|
77
77
|
name: 'uiTranslate',
|