@testgorilla/tgo-ui 2.26.5 → 2.26.7
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/button/button.component.d.ts +0 -1
- package/components/filter-button/filter-button.component.d.ts +112 -0
- package/components/filter-button/filter-button.component.module.d.ts +16 -0
- package/components/filter-button/filter-button.model.d.ts +6 -0
- package/components/step/step.component.d.ts +12 -4
- package/components/stepper/stepper.component.d.ts +11 -3
- package/components/universal-skills-report/universal-skills-report.component.d.ts +5 -5
- package/components/universal-skills-spider-charts/universal-skills-spider-charts.component.d.ts +33 -0
- package/components/universal-skills-spider-charts/universal-skills-spider-charts.component.module.d.ts +16 -0
- package/esm2022/assets/i18n/en.json +5 -1
- package/esm2022/components/button/button.component.mjs +3 -14
- package/esm2022/components/filter-button/filter-button.component.mjs +201 -0
- package/esm2022/components/filter-button/filter-button.component.module.mjs +51 -0
- package/esm2022/components/filter-button/filter-button.model.mjs +2 -0
- package/esm2022/components/spider-chart/spider-chart.component.mjs +2 -2
- package/esm2022/components/step/step.component.mjs +51 -11
- package/esm2022/components/stepper/stepper.component.mjs +51 -17
- package/esm2022/components/universal-skills-report/universal-skills-report.component.mjs +17 -66
- package/esm2022/components/universal-skills-spider-charts/universal-skills-spider-charts.component.mjs +86 -0
- package/esm2022/components/universal-skills-spider-charts/universal-skills-spider-charts.component.module.mjs +52 -0
- package/esm2022/models/universal-skills-report.model.mjs +33 -0
- package/esm2022/public-api.mjs +9 -2
- package/esm2022/services/universal-skills.service.mjs +71 -0
- package/fesm2022/testgorilla-tgo-ui.mjs +513 -85
- package/fesm2022/testgorilla-tgo-ui.mjs.map +1 -1
- package/{components/universal-skills-report → models}/universal-skills-report.model.d.ts +7 -0
- package/package.json +1 -1
- package/projects/tgo-canopy-ui/assets/i18n/en.json +5 -1
- package/public-api.d.ts +6 -1
- package/services/universal-skills.service.d.ts +11 -0
- package/esm2022/components/universal-skills-report/universal-skills-report.model.mjs +0 -33
|
@@ -223,7 +223,6 @@ export declare class ButtonComponent implements OnInit, AfterViewInit {
|
|
|
223
223
|
onKeydown(event: KeyboardEvent): void;
|
|
224
224
|
onKeyup(event: KeyboardEvent): void;
|
|
225
225
|
onLabelEllipsisChange(state: boolean): void;
|
|
226
|
-
getIconName(iconName: string, defaultValue: string): IconName;
|
|
227
226
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonComponent, [{ optional: true; }]>;
|
|
228
227
|
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonComponent, "ui-button", never, { "size": { "alias": "size"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "label": { "alias": "label"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "justIcon": { "alias": "justIcon"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; "url": { "alias": "url"; "required": false; }; "urlTarget": { "alias": "urlTarget"; "required": false; }; "value": { "alias": "value"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "isPremium": { "alias": "isPremium"; "required": false; }; "type": { "alias": "type"; "required": false; }; "companyColor": { "alias": "companyColor"; "required": false; }; "buttonBadgeConfig": { "alias": "buttonBadgeConfig"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; "disabledScaleOnClick": { "alias": "disabledScaleOnClick"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaRequired": { "alias": "ariaRequired"; "required": false; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; }; "ariaDescribedby": { "alias": "ariaDescribedby"; "required": false; }; "preventDefault": { "alias": "preventDefault"; "required": false; }; "hasBackground": { "alias": "hasBackground"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; }, { "buttonClickEvent": "buttonClickEvent"; "buttonHoverEvent": "buttonHoverEvent"; }, never, never, false, never>;
|
|
229
228
|
static ngAcceptInputType_preventDefault: unknown;
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import { ChangeDetectorRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
+
import { ApplicationTheme } from '../../models/application-theme.model';
|
|
3
|
+
import { FilterButtonOption } from './filter-button.model';
|
|
4
|
+
import { IconName } from '../icon/icon.model';
|
|
5
|
+
import { ButtonIconPosition } from '../button/button.model';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class FilterButtonComponent implements OnChanges {
|
|
8
|
+
private readonly defaultAppTheme;
|
|
9
|
+
private readonly cdr;
|
|
10
|
+
class: string;
|
|
11
|
+
/**
|
|
12
|
+
* The button label when no value is selected.
|
|
13
|
+
*
|
|
14
|
+
* @type {string}
|
|
15
|
+
* @memberof FilterButtonComponent
|
|
16
|
+
*/
|
|
17
|
+
label: string;
|
|
18
|
+
/**
|
|
19
|
+
* Optional message to display on the overflow bottom.
|
|
20
|
+
*
|
|
21
|
+
* @type {string}
|
|
22
|
+
* @memberof FilterButtonComponent
|
|
23
|
+
*/
|
|
24
|
+
message?: string | undefined;
|
|
25
|
+
/**
|
|
26
|
+
* List of selected values.
|
|
27
|
+
*
|
|
28
|
+
* @type {string[]}
|
|
29
|
+
* @memberof FilterButtonComponent
|
|
30
|
+
*/
|
|
31
|
+
value: string[];
|
|
32
|
+
/**
|
|
33
|
+
* Whether the component is disabled.
|
|
34
|
+
* Default: false.
|
|
35
|
+
*
|
|
36
|
+
* @type {boolean}
|
|
37
|
+
* @memberof FilterButtonComponent
|
|
38
|
+
*/
|
|
39
|
+
disabled: boolean;
|
|
40
|
+
/**
|
|
41
|
+
* List of options.
|
|
42
|
+
*
|
|
43
|
+
* @type {OptionType}
|
|
44
|
+
* @memberof FilterButtonComponent
|
|
45
|
+
*/
|
|
46
|
+
options: FilterButtonOption[];
|
|
47
|
+
/**
|
|
48
|
+
* Whether the user should be allowed to clear the values.
|
|
49
|
+
* Default: true.
|
|
50
|
+
*
|
|
51
|
+
* @type {boolean}
|
|
52
|
+
* @memberof FilterButtonComponent
|
|
53
|
+
*/
|
|
54
|
+
allowClear: boolean;
|
|
55
|
+
/**
|
|
56
|
+
* Whether the user should be allowed to select single or multiple values.
|
|
57
|
+
* Default: false.
|
|
58
|
+
*
|
|
59
|
+
* @type {boolean}
|
|
60
|
+
* @memberof FilterButtonComponent
|
|
61
|
+
*/
|
|
62
|
+
singleSelection?: boolean | undefined;
|
|
63
|
+
/**
|
|
64
|
+
* The icon name to display.
|
|
65
|
+
*
|
|
66
|
+
* @type {string}
|
|
67
|
+
* @memberof FilterButtonComponent
|
|
68
|
+
*
|
|
69
|
+
**/
|
|
70
|
+
iconName?: IconName;
|
|
71
|
+
/**
|
|
72
|
+
* The position of the icon.
|
|
73
|
+
* Default: 'right'.
|
|
74
|
+
*
|
|
75
|
+
* @type {ButtonIconPosition}
|
|
76
|
+
* @memberof FilterButtonComponent
|
|
77
|
+
*/
|
|
78
|
+
iconPosition?: ButtonIconPosition;
|
|
79
|
+
/**
|
|
80
|
+
* Emits the list of selected values when the selection changes.
|
|
81
|
+
*
|
|
82
|
+
* @type {EventEmitter<string[]>}
|
|
83
|
+
* @memberof FilterButtonComponent
|
|
84
|
+
*/
|
|
85
|
+
changed: EventEmitter<string[]>;
|
|
86
|
+
/**
|
|
87
|
+
*
|
|
88
|
+
* Defines the application theme
|
|
89
|
+
*
|
|
90
|
+
* @type {ApplicationTheme}
|
|
91
|
+
* @memberof FilterButtonComponent
|
|
92
|
+
*/
|
|
93
|
+
applicationTheme: ApplicationTheme;
|
|
94
|
+
overlayContainer: any;
|
|
95
|
+
isOpen: import("@angular/core").WritableSignal<boolean>;
|
|
96
|
+
displayedLabel: import("@angular/core").WritableSignal<string>;
|
|
97
|
+
tooltip: import("@angular/core").WritableSignal<string>;
|
|
98
|
+
search: import("@angular/core").WritableSignal<string>;
|
|
99
|
+
displayedOptions: import("@angular/core").Signal<FilterButtonOption[]>;
|
|
100
|
+
readonly MIN_OPTIONS_LENGTH_FOR_SEARCH = 8;
|
|
101
|
+
constructor(defaultAppTheme: ApplicationTheme, cdr: ChangeDetectorRef);
|
|
102
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
103
|
+
clearValue(): void;
|
|
104
|
+
outsideClick(): void;
|
|
105
|
+
toggle(): void;
|
|
106
|
+
overlayAttach(): void;
|
|
107
|
+
isSelected(value?: string): boolean;
|
|
108
|
+
optionChanged(selected: boolean, option: FilterButtonOption): void;
|
|
109
|
+
private updateLabel;
|
|
110
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterButtonComponent, [{ optional: true; }, null]>;
|
|
111
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FilterButtonComponent, "ui-filter-button", never, { "label": { "alias": "label"; "required": false; }; "message": { "alias": "message"; "required": false; }; "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "options": { "alias": "options"; "required": false; }; "allowClear": { "alias": "allowClear"; "required": false; }; "singleSelection": { "alias": "singleSelection"; "required": false; }; "iconName": { "alias": "iconName"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; }, { "changed": "changed"; }, never, never, false, never>;
|
|
112
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./filter-button.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "@angular/forms";
|
|
5
|
+
import * as i4 from "@angular/material/tooltip";
|
|
6
|
+
import * as i5 from "@angular/cdk/overlay";
|
|
7
|
+
import * as i6 from "../../pipes/ui-translate.pipe";
|
|
8
|
+
import * as i7 from "../button/button.component.module";
|
|
9
|
+
import * as i8 from "../checkbox/checkbox.component.module";
|
|
10
|
+
import * as i9 from "../field/field.component.module";
|
|
11
|
+
import * as i10 from "../radio-button/radio-button.component.module";
|
|
12
|
+
export declare class FilterButtonComponentModule {
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FilterButtonComponentModule, never>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<FilterButtonComponentModule, [typeof i1.FilterButtonComponent], [typeof i2.CommonModule, typeof i3.FormsModule, typeof i4.MatTooltipModule, typeof i5.OverlayModule, typeof i6.UiTranslatePipe, typeof i7.ButtonComponentModule, typeof i8.CheckboxComponentModule, typeof i9.FieldComponentModule, typeof i10.RadioButtonComponentModule], [typeof i1.FilterButtonComponent]>;
|
|
15
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<FilterButtonComponentModule>;
|
|
16
|
+
}
|
|
@@ -1,10 +1,13 @@
|
|
|
1
|
-
import { EventEmitter, TemplateRef } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, DestroyRef, ElementRef, EventEmitter, TemplateRef } from '@angular/core';
|
|
2
2
|
import { IconName } from '../icon/icon.model';
|
|
3
3
|
import { ApplicationTheme } from '../../models/application-theme.model';
|
|
4
4
|
import { HtmlDescription, StepperPosition } from '../stepper/stepper.model';
|
|
5
|
+
import { FocusMonitor } from "@angular/cdk/a11y";
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class StepComponent {
|
|
7
|
+
export declare class StepComponent implements AfterViewInit {
|
|
7
8
|
private readonly defaultAppTheme;
|
|
9
|
+
private focusMonitor;
|
|
10
|
+
private destroyRef;
|
|
8
11
|
/**
|
|
9
12
|
* Input property for the label of the step.
|
|
10
13
|
*
|
|
@@ -153,9 +156,14 @@ export declare class StepComponent {
|
|
|
153
156
|
* @memberof StepComponent
|
|
154
157
|
*/
|
|
155
158
|
stepSelected: EventEmitter<number>;
|
|
156
|
-
|
|
159
|
+
protected keyboardFocused: import("@angular/core").WritableSignal<boolean>;
|
|
160
|
+
stepElement: ElementRef<HTMLElement>;
|
|
161
|
+
constructor(defaultAppTheme: ApplicationTheme, focusMonitor: FocusMonitor, destroyRef: DestroyRef);
|
|
162
|
+
ngAfterViewInit(): void;
|
|
157
163
|
protected get hasLastStepDefaultIcon(): boolean;
|
|
158
164
|
protected onStepSelected(index: number): void;
|
|
159
|
-
|
|
165
|
+
protected subscriberFocus(): void;
|
|
166
|
+
onKeydown($event: KeyboardEvent): void;
|
|
167
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepComponent, [{ optional: true; }, null, null]>;
|
|
160
168
|
static ɵcmp: i0.ɵɵComponentDeclaration<StepComponent, "ui-step", never, { "label": { "alias": "label"; "required": false; }; "isVisited": { "alias": "isVisited"; "required": false; }; "submitted": { "alias": "submitted"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "index": { "alias": "index"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "isLast": { "alias": "isLast"; "required": false; }; "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "prevStepIsVisited": { "alias": "prevStepIsVisited"; "required": false; }; "mobileMode": { "alias": "mobileMode"; "required": false; }; "finalIcon": { "alias": "finalIcon"; "required": false; }; "showIconWhenSelected": { "alias": "showIconWhenSelected"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; "position": { "alias": "position"; "required": false; }; "htmlDescription": { "alias": "htmlDescription"; "required": false; }; "boldLabel": { "alias": "boldLabel"; "required": false; }; "descriptionTpl": { "alias": "descriptionTpl"; "required": false; }; "labelTooltip": { "alias": "labelTooltip"; "required": false; }; "alwaysShowIcon": { "alias": "alwaysShowIcon"; "required": false; }; "context": { "alias": "context"; "required": false; }; }, { "stepSelected": "stepSelected"; }, never, never, false, never>;
|
|
161
169
|
}
|
|
@@ -1,11 +1,14 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { DestroyRef, ElementRef, EventEmitter } from '@angular/core';
|
|
2
2
|
import { Step, StepperPosition } from './stepper.model';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import { ApplicationTheme } from "../../models/application-theme.model";
|
|
5
|
+
import { FocusMonitor } from "@angular/cdk/a11y";
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class StepperComponent {
|
|
7
8
|
private readonly defaultAppTheme;
|
|
8
9
|
protected readonly isMobile$: Observable<boolean>;
|
|
10
|
+
protected focusMonitor: FocusMonitor;
|
|
11
|
+
protected destroyRef: DestroyRef;
|
|
9
12
|
/**
|
|
10
13
|
*
|
|
11
14
|
* Auto selects first step as visited
|
|
@@ -77,10 +80,15 @@ export declare class StepperComponent {
|
|
|
77
80
|
protected selectedIndex: number;
|
|
78
81
|
get isOpen(): boolean;
|
|
79
82
|
set isOpen(value: boolean);
|
|
80
|
-
|
|
83
|
+
protected keyboardFocused: import("@angular/core").WritableSignal<boolean>;
|
|
84
|
+
stepperElement: ElementRef<HTMLElement>;
|
|
85
|
+
constructor(defaultAppTheme: ApplicationTheme, isMobile$: Observable<boolean>, focusMonitor: FocusMonitor, destroyRef: DestroyRef);
|
|
86
|
+
ngAfterViewInit(): void;
|
|
81
87
|
protected onSelect(changedIndex: number, step: Step): void;
|
|
82
88
|
protected showStepsToggle(): void;
|
|
83
89
|
protected onCloseStepList(): void;
|
|
84
|
-
|
|
90
|
+
protected subscriberFocus(): void;
|
|
91
|
+
private selectedStepFocus;
|
|
92
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<StepperComponent, [{ optional: true; }, null, null, null]>;
|
|
85
93
|
static ɵcmp: i0.ɵɵComponentDeclaration<StepperComponent, "ui-stepper", never, { "setFirstStepAutoSelect": { "alias": "firstStepAutoSelect"; "required": false; }; "steps": { "alias": "steps"; "required": false; }; "setSelectedIndex": { "alias": "selectedIndex"; "required": false; }; "lastStepFinalIcon": { "alias": "lastStepFinalIcon"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "position": { "alias": "position"; "required": false; }; "ariaRequired": { "alias": "ariaRequired"; "required": false; }; }, { "selectionChange": "selectionChange"; }, never, never, false, never>;
|
|
86
94
|
}
|
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
import { OnInit } from '@angular/core';
|
|
2
2
|
import { ApplicationTheme } from '../../models/application-theme.model';
|
|
3
3
|
import { RebrandBadgeColor } from '../badge/badge.model';
|
|
4
|
-
import { SkillAreaData, SkillAreaGroup, SkillAreaGroupTypes } from '
|
|
4
|
+
import { SkillAreaData, SkillAreaGroup, SkillAreaGroupTypes } from '../../models/universal-skills-report.model';
|
|
5
|
+
import { UniversalSkillsService } from '../../services/universal-skills.service';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
7
|
export declare class UniversalSkillsReportComponent implements OnInit {
|
|
7
8
|
private readonly defaultAppTheme;
|
|
9
|
+
private universalSkillsService;
|
|
8
10
|
/**
|
|
9
11
|
* Defines the application theme
|
|
10
12
|
* @property applicationTheme
|
|
@@ -21,13 +23,11 @@ export declare class UniversalSkillsReportComponent implements OnInit {
|
|
|
21
23
|
skillAreaDataList: SkillAreaData[];
|
|
22
24
|
readonly translationContext = "UNIVERSAL_SKILLS_REPORT.";
|
|
23
25
|
skillAreaGroupMap: Record<SkillAreaGroupTypes, SkillAreaGroup>;
|
|
24
|
-
constructor(defaultAppTheme: ApplicationTheme);
|
|
26
|
+
constructor(defaultAppTheme: ApplicationTheme, universalSkillsService: UniversalSkillsService);
|
|
25
27
|
ngOnInit(): void;
|
|
26
28
|
getScoreBadgeLabel(percentileScoring: number): string;
|
|
27
29
|
getScoreBadgeColor(percentileScoring: number): RebrandBadgeColor;
|
|
28
|
-
private initializeSkillAreaGroupMap;
|
|
29
|
-
private prepareSkillAreaGroupMap;
|
|
30
30
|
checkScoreClassification([percentileScoring, isLabelRequest]: [number, boolean]): string | RebrandBadgeColor;
|
|
31
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UniversalSkillsReportComponent, [{ optional: true; }]>;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UniversalSkillsReportComponent, [{ optional: true; }, null]>;
|
|
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
|
}
|
package/components/universal-skills-spider-charts/universal-skills-spider-charts.component.d.ts
ADDED
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ApplicationTheme } from '../../models/application-theme.model';
|
|
3
|
+
import { SkillAreaData, SkillAreaGroup, SkillAreaGroupTypes, SkillAreaSpiderChartData } from '../../models/universal-skills-report.model';
|
|
4
|
+
import { UniversalSkillsService } from '../../services/universal-skills.service';
|
|
5
|
+
import { UiTranslatePipe } from '../../pipes/ui-translate.pipe';
|
|
6
|
+
import * as i0 from "@angular/core";
|
|
7
|
+
export declare class UniversalSkillsSpiderChartsComponent implements OnInit {
|
|
8
|
+
private readonly defaultAppTheme;
|
|
9
|
+
private universalSkillsService;
|
|
10
|
+
private uiTranslatePipe;
|
|
11
|
+
/**
|
|
12
|
+
* Defines the application theme
|
|
13
|
+
* @property applicationTheme
|
|
14
|
+
* @type {ApplicationTheme}
|
|
15
|
+
* @memberof UniversalSkillsSpiderChartsComponent
|
|
16
|
+
*/
|
|
17
|
+
applicationTheme: ApplicationTheme;
|
|
18
|
+
/**
|
|
19
|
+
* The list of items to be used
|
|
20
|
+
* @property items
|
|
21
|
+
* @type {SkillAreaData[]}
|
|
22
|
+
* @memberof UniversalSkillsReportComponent
|
|
23
|
+
*/
|
|
24
|
+
skillAreaDataList: SkillAreaData[];
|
|
25
|
+
readonly translationContext = "UNIVERSAL_SKILLS_REPORT.";
|
|
26
|
+
skillAreaGroupMap: Record<SkillAreaGroupTypes, SkillAreaGroup>;
|
|
27
|
+
skillAreaSpiderChartData: SkillAreaSpiderChartData[];
|
|
28
|
+
constructor(defaultAppTheme: ApplicationTheme, universalSkillsService: UniversalSkillsService, uiTranslatePipe: UiTranslatePipe);
|
|
29
|
+
ngOnInit(): void;
|
|
30
|
+
prepareSpiderChartData(): void;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UniversalSkillsSpiderChartsComponent, [{ optional: true; }, null, null]>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UniversalSkillsSpiderChartsComponent, "ui-universal-skills-spider-charts", never, { "applicationTheme": { "alias": "applicationTheme"; "required": false; }; "skillAreaDataList": { "alias": "skillAreaDataList"; "required": false; }; }, {}, never, never, false, never>;
|
|
33
|
+
}
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./universal-skills-spider-charts.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
import * as i3 from "../accordion/accordion.component.module";
|
|
5
|
+
import * as i4 from "../badge/badge.component.module";
|
|
6
|
+
import * as i5 from "../progress-bar/progress-bar.component.module";
|
|
7
|
+
import * as i6 from "../spider-chart/spider-chart.module";
|
|
8
|
+
import * as i7 from "../divider/divider.component.module";
|
|
9
|
+
import * as i8 from "../../pipes/memoize-func.pipe";
|
|
10
|
+
import * as i9 from "../../pipes/ui-translate.pipe";
|
|
11
|
+
import * as i10 from "../../pipes/ui-ordinal-suffix.pipe";
|
|
12
|
+
export declare class UniversalSkillsSpiderChartsComponentModule {
|
|
13
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UniversalSkillsSpiderChartsComponentModule, never>;
|
|
14
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<UniversalSkillsSpiderChartsComponentModule, [typeof i1.UniversalSkillsSpiderChartsComponent], [typeof i2.CommonModule, typeof i3.AccordionComponentModule, typeof i4.BadgeComponentModule, typeof i5.ProgressBarComponentModule, typeof i6.SpiderChartComponentModule, typeof i7.DividerComponentModule, typeof i8.MemoizeFuncPipe, typeof i9.UiTranslatePipe, typeof i10.OrdinalSuffixPipe, typeof i2.KeyValuePipe], [typeof i1.UniversalSkillsSpiderChartsComponent]>;
|
|
15
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<UniversalSkillsSpiderChartsComponentModule>;
|
|
16
|
+
}
|
|
@@ -11,7 +11,10 @@
|
|
|
11
11
|
"MAX_SELECTED_ERROR": "You’ve reached the maximum of ({{max}}) tags. Remove a tag to add another."
|
|
12
12
|
},
|
|
13
13
|
"STEPPER": {
|
|
14
|
-
"FINAL_STEP": "Final step"
|
|
14
|
+
"FINAL_STEP": "Final step",
|
|
15
|
+
"COMPLETED": "Completed",
|
|
16
|
+
"INCOMPLETE": "Incomplete",
|
|
17
|
+
"SELECTED_OF": "Selected ({{selected}} of {{total}}) current step"
|
|
15
18
|
},
|
|
16
19
|
"SLIDER": {
|
|
17
20
|
"MAX_LESS_THAN_MIN": "Max value ({{max}}) cannot be less then current min value ({{min}})",
|
|
@@ -79,6 +82,7 @@
|
|
|
79
82
|
"MAX": "Max",
|
|
80
83
|
"MIN": "Min",
|
|
81
84
|
"CLEAR": "Clear",
|
|
85
|
+
"RESET": "Reset",
|
|
82
86
|
"PHONE_NUMBER": "Phone number",
|
|
83
87
|
"ON": "On",
|
|
84
88
|
"OFF": "Off",
|