@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
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { DestroyRef, EventEmitter } from '@angular/core';
|
|
1
|
+
import { DestroyRef, ElementRef, EventEmitter } from '@angular/core';
|
|
2
2
|
import { ControlValueAccessor, FormControl } from '@angular/forms';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class PasswordComponent implements ControlValueAccessor {
|
|
@@ -19,6 +19,7 @@ export declare class PasswordComponent implements ControlValueAccessor {
|
|
|
19
19
|
required: boolean;
|
|
20
20
|
passwordChange: EventEmitter<string>;
|
|
21
21
|
allCriteriaPassed: EventEmitter<boolean>;
|
|
22
|
+
requiredCriteria: ElementRef<HTMLElement>;
|
|
22
23
|
protected formControl: FormControl<string | null>;
|
|
23
24
|
protected criteriaPassed: {
|
|
24
25
|
[key: string]: boolean;
|
|
@@ -37,6 +38,7 @@ export declare class PasswordComponent implements ControlValueAccessor {
|
|
|
37
38
|
writeValue(obj: any): void;
|
|
38
39
|
registerOnChange(fn: any): void;
|
|
39
40
|
registerOnTouched(fn: any): void;
|
|
41
|
+
get allRequirementsMet(): boolean;
|
|
40
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<PasswordComponent, never>;
|
|
41
43
|
static ɵcmp: i0.ɵɵComponentDeclaration<PasswordComponent, "ui-password-criteria", never, { "showCriteria": { "alias": "showCriteria"; "required": false; }; "required": { "alias": "required"; "required": false; }; }, { "passwordChange": "passwordChange"; "allCriteriaPassed": "allCriteriaPassed"; }, never, never, false, never>;
|
|
42
44
|
}
|
|
@@ -135,6 +135,15 @@ export declare class RadioButtonComponent implements OnInit, OnChanges, ControlV
|
|
|
135
135
|
* @memberof RadioButtonComponent
|
|
136
136
|
*/
|
|
137
137
|
alignment: Alignment;
|
|
138
|
+
/**
|
|
139
|
+
* Sets the tab index for the checkbox component.
|
|
140
|
+
* This determines the order in which elements receive focus when the user navigates through them using the Tab key.
|
|
141
|
+
* Default value is 0.
|
|
142
|
+
*
|
|
143
|
+
* @type {number}
|
|
144
|
+
* @memberof RadioButtonComponent
|
|
145
|
+
*/
|
|
146
|
+
tabIndex: number;
|
|
138
147
|
/**
|
|
139
148
|
* Event emitted when the checked state of the radio button changes.
|
|
140
149
|
*
|
|
@@ -167,6 +176,7 @@ export declare class RadioButtonComponent implements OnInit, OnChanges, ControlV
|
|
|
167
176
|
private checkHost;
|
|
168
177
|
private setCompanyColor;
|
|
169
178
|
onFocus(showTooltip: boolean): void;
|
|
179
|
+
focus(): void;
|
|
170
180
|
static ɵfac: i0.ɵɵFactoryDeclaration<RadioButtonComponent, [{ optional: true; }, { optional: true; self: true; }, { optional: true; host: true; }, null, null, null, null]>;
|
|
171
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "ui-radio-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "allowUnselect": { "alias": "allowUnselect"; "required": false; }; "companyColor": { "alias": "companyColor"; "required": false; }; "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "value": { "alias": "value"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaRequired": { "alias": "ariaRequired"; "required": false; }; "hasError": { "alias": "hasError"; "required": false; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; }; "ariaDescribedby": { "alias": "ariaDescribedby"; "required": false; }; "truncateText": { "alias": "truncateText"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; }, { "changeRadio": "changeRadio"; }, never, ["[radio-label]"], false, never>;
|
|
181
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<RadioButtonComponent, "ui-radio-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "selected": { "alias": "selected"; "required": false; }; "allowUnselect": { "alias": "allowUnselect"; "required": false; }; "companyColor": { "alias": "companyColor"; "required": false; }; "name": { "alias": "name"; "required": false; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "value": { "alias": "value"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "ariaRequired": { "alias": "ariaRequired"; "required": false; }; "hasError": { "alias": "hasError"; "required": false; }; "ariaLabelledby": { "alias": "ariaLabelledby"; "required": false; }; "ariaDescribedby": { "alias": "ariaDescribedby"; "required": false; }; "truncateText": { "alias": "truncateText"; "required": false; }; "alignment": { "alias": "alignment"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; }, { "changeRadio": "changeRadio"; }, never, ["[radio-label]"], false, never>;
|
|
172
182
|
}
|
|
@@ -48,6 +48,7 @@ export declare class ScaleComponent implements OnInit, OnChanges {
|
|
|
48
48
|
focusItem(index: number): void;
|
|
49
49
|
getAriaLabel(index: number): string;
|
|
50
50
|
private setCompanyColor;
|
|
51
|
+
onFocus(item: number): void;
|
|
51
52
|
static ɵfac: i0.ɵɵFactoryDeclaration<ScaleComponent, [{ optional: true; }]>;
|
|
52
53
|
static ɵcmp: i0.ɵɵComponentDeclaration<ScaleComponent, "ui-scale", never, { "selectedIndex": { "alias": "selectedIndex"; "required": false; }; "length": { "alias": "length"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; "companyColor": { "alias": "companyColor"; "required": false; }; }, { "selectedIndexChange": "selectedIndexChange"; }, never, never, false, never>;
|
|
53
54
|
}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TemplateRef, Type } from '@angular/core';
|
|
1
|
+
import { Injector, TemplateRef, Type } from '@angular/core';
|
|
2
2
|
import { SidePanelConfig } from './side-panel.model';
|
|
3
3
|
import * as i0 from "@angular/core";
|
|
4
4
|
export declare class SidePanelService {
|
|
@@ -9,7 +9,7 @@ export declare class SidePanelService {
|
|
|
9
9
|
private injector;
|
|
10
10
|
private appRef;
|
|
11
11
|
constructor();
|
|
12
|
-
open(content: Type<any> | TemplateRef<any>, config: Partial<SidePanelConfig
|
|
12
|
+
open(content: Type<any> | TemplateRef<any>, config: Partial<SidePanelConfig>, parentInjector?: Injector): void;
|
|
13
13
|
destroyComponent(): void;
|
|
14
14
|
private createSidePanelInjector;
|
|
15
15
|
private createSidePanelComponent;
|
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { DecimalPipe } from '@angular/common';
|
|
2
|
+
import { ChangeDetectorRef, EventEmitter } from '@angular/core';
|
|
3
|
+
import { AbstractControl, ValidationErrors, Validator } from '@angular/forms';
|
|
4
|
+
import { ApplicationTheme } from '../../models/application-theme.model';
|
|
2
5
|
import { SliderValue, SliderVariant } from './slider.model';
|
|
3
|
-
import { ApplicationTheme } from "../../models/application-theme.model";
|
|
4
6
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class SliderComponent {
|
|
7
|
+
export declare class SliderComponent implements Validator {
|
|
6
8
|
private readonly defaultAppTheme;
|
|
7
9
|
/**
|
|
8
10
|
* The maximum value of the slider.
|
|
@@ -83,23 +85,32 @@ export declare class SliderComponent {
|
|
|
83
85
|
* @memberof SliderComponent
|
|
84
86
|
*/
|
|
85
87
|
variant: SliderVariant;
|
|
88
|
+
useDecimal: import("@angular/core").InputSignal<boolean>;
|
|
89
|
+
minLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
90
|
+
maxLabel: import("@angular/core").InputSignal<string | undefined>;
|
|
91
|
+
inputWidth: import("@angular/core").InputSignal<number>;
|
|
86
92
|
sliderValueChange: EventEmitter<SliderValue>;
|
|
93
|
+
cdr: ChangeDetectorRef;
|
|
94
|
+
decimalPipe: DecimalPipe;
|
|
95
|
+
private control?;
|
|
87
96
|
constructor(defaultAppTheme: ApplicationTheme);
|
|
88
97
|
private value;
|
|
89
98
|
protected translationContext: string;
|
|
90
99
|
protected touchedControlName: string;
|
|
91
|
-
onChange: (
|
|
100
|
+
onChange: (value: SliderValue) => void;
|
|
92
101
|
onTouch: () => void;
|
|
93
|
-
registerOnChange(fn:
|
|
94
|
-
registerOnTouched(fn:
|
|
102
|
+
registerOnChange(fn: (value: SliderValue) => void): void;
|
|
103
|
+
registerOnTouched(fn: () => void): void;
|
|
95
104
|
setDisabledState(isDisabled: boolean): void;
|
|
96
|
-
writeValue(value:
|
|
105
|
+
writeValue(value: SliderValue): void;
|
|
97
106
|
protected onValueChange(ev?: number): void;
|
|
98
107
|
protected onInputBlur(inputName: string): void;
|
|
99
108
|
protected onInputFocus(): void;
|
|
100
109
|
private isValueChanged;
|
|
101
110
|
get hasError(): boolean;
|
|
102
111
|
get isBasicSlider(): boolean;
|
|
112
|
+
formatLabel(value: number): string;
|
|
113
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
103
114
|
static ɵfac: i0.ɵɵFactoryDeclaration<SliderComponent, [{ optional: true; }]>;
|
|
104
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SliderComponent, "ui-slider", never, { "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "percentage": { "alias": "percentage"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "sliderStart": { "alias": "sliderStart"; "required": false; }; "sliderEnd": { "alias": "sliderEnd"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showInputs": { "alias": "showInputs"; "required": false; }; "step": { "alias": "step"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; }, { "sliderValueChange": "sliderValueChange"; }, never, never,
|
|
115
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SliderComponent, "ui-slider", never, { "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "percentage": { "alias": "percentage"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "sliderStart": { "alias": "sliderStart"; "required": false; }; "sliderEnd": { "alias": "sliderEnd"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showInputs": { "alias": "showInputs"; "required": false; }; "step": { "alias": "step"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; "variant": { "alias": "variant"; "required": false; }; "useDecimal": { "alias": "useDecimal"; "required": false; "isSignal": true; }; "minLabel": { "alias": "minLabel"; "required": false; "isSignal": true; }; "maxLabel": { "alias": "maxLabel"; "required": false; "isSignal": true; }; "inputWidth": { "alias": "inputWidth"; "required": false; "isSignal": true; }; }, { "sliderValueChange": "sliderValueChange"; }, never, never, true, never>;
|
|
105
116
|
}
|
|
@@ -1,14 +1,7 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./slider.component";
|
|
3
|
-
import * as i2 from "@angular/common";
|
|
4
|
-
import * as i3 from "@angular/material/slider";
|
|
5
|
-
import * as i4 from "@angular/forms";
|
|
6
|
-
import * as i5 from "@angular/material/input";
|
|
7
|
-
import * as i6 from "@angular/material/tooltip";
|
|
8
|
-
import * as i7 from "../icon/icon.component.module";
|
|
9
|
-
import * as i8 from "../../pipes/ui-translate.pipe";
|
|
10
3
|
export declare class SliderComponentModule {
|
|
11
4
|
static ɵfac: i0.ɵɵFactoryDeclaration<SliderComponentModule, never>;
|
|
12
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SliderComponentModule, [typeof i1.SliderComponent], [typeof
|
|
5
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SliderComponentModule, never, [typeof i1.SliderComponent], [typeof i1.SliderComponent]>;
|
|
13
6
|
static ɵinj: i0.ɵɵInjectorDeclaration<SliderComponentModule>;
|
|
14
7
|
}
|
|
@@ -83,6 +83,8 @@ export declare class SpiderChartComponent implements OnInit {
|
|
|
83
83
|
private resetActiveElement;
|
|
84
84
|
toggleDatasetVisibility(datasetIndex: number): void;
|
|
85
85
|
isDatasetVisible(datasetIndex: number): boolean | undefined;
|
|
86
|
+
getFirstLine(label: string): string;
|
|
87
|
+
getSecondLine(label: string): string;
|
|
86
88
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpiderChartComponent, never>;
|
|
87
89
|
static ɵcmp: i0.ɵɵComponentDeclaration<SpiderChartComponent, "ui-spider-chart", never, { "size": { "alias": "size"; "required": false; }; "spiderChartData": { "alias": "spiderChartData"; "required": false; }; "stepSize": { "alias": "stepSize"; "required": false; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; }, {}, never, never, false, never>;
|
|
88
90
|
}
|
|
@@ -4,9 +4,10 @@ import * as i2 from "@angular/common";
|
|
|
4
4
|
import * as i3 from "../../pipes/ui-translate.pipe";
|
|
5
5
|
import * as i4 from "ng2-charts";
|
|
6
6
|
import * as i5 from "@angular/material/tooltip";
|
|
7
|
-
import * as i6 from "
|
|
7
|
+
import * as i6 from "../../pipes/memoize-func.pipe";
|
|
8
|
+
import * as i7 from "../spinner/spinner.module";
|
|
8
9
|
export declare class SpiderChartComponentModule {
|
|
9
10
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpiderChartComponentModule, never>;
|
|
10
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<SpiderChartComponentModule, [typeof i1.SpiderChartComponent], [typeof i2.NgClass, typeof i3.UiTranslatePipe, typeof i4.NgChartsModule, typeof i5.MatTooltipModule, typeof i3.UiTranslatePipe, typeof i6.SpinnerComponentModule, typeof i2.CommonModule], [typeof i1.SpiderChartComponent]>;
|
|
11
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SpiderChartComponentModule, [typeof i1.SpiderChartComponent], [typeof i2.NgClass, typeof i3.UiTranslatePipe, typeof i4.NgChartsModule, typeof i5.MatTooltipModule, typeof i3.UiTranslatePipe, typeof i6.MemoizeFuncPipe, typeof i7.SpinnerComponentModule, typeof i2.CommonModule], [typeof i1.SpiderChartComponent]>;
|
|
11
12
|
static ɵinj: i0.ɵɵInjectorDeclaration<SpiderChartComponentModule>;
|
|
12
13
|
}
|
|
@@ -20,6 +20,12 @@ export declare class SpinnerComponent implements OnInit, OnChanges {
|
|
|
20
20
|
* @memberof SpinnerComponent
|
|
21
21
|
*/
|
|
22
22
|
isLoader: boolean;
|
|
23
|
+
/**
|
|
24
|
+
* The text to display below the spinner.
|
|
25
|
+
* @type {string}
|
|
26
|
+
* @memberof SpinnerComponent
|
|
27
|
+
*/
|
|
28
|
+
text: string | null;
|
|
23
29
|
/**
|
|
24
30
|
*
|
|
25
31
|
* Defines the application theme
|
|
@@ -34,5 +40,5 @@ export declare class SpinnerComponent implements OnInit, OnChanges {
|
|
|
34
40
|
ngOnInit(): void;
|
|
35
41
|
setSpinnerClasses(): void;
|
|
36
42
|
static ɵfac: i0.ɵɵFactoryDeclaration<SpinnerComponent, [{ optional: true; }]>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SpinnerComponent, "ui-spinner", never, { "size": { "alias": "size"; "required": false; }; "isLoader": { "alias": "isLoader"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; }, {}, never, never, false, never>;
|
|
43
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SpinnerComponent, "ui-spinner", never, { "size": { "alias": "size"; "required": false; }; "isLoader": { "alias": "isLoader"; "required": false; }; "text": { "alias": "text"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; }, {}, never, never, false, never>;
|
|
38
44
|
}
|
|
@@ -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,5 +1,5 @@
|
|
|
1
1
|
import { AfterViewInit, DestroyRef, ElementRef, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { ColumnEllipse, ColumnType, ComponentRenderer, DataSource, ScrollSettings, TableColumn,
|
|
2
|
+
import { ColumnEllipse, ColumnType, ComponentRenderer, DataSource, ScrollSettings, TableColumn, TableConfigWithPagination, TableData, TableDetailColumn } from './table.model';
|
|
3
3
|
import { PageEvent } from '@angular/material/paginator';
|
|
4
4
|
import { ApplicationTheme } from '../../models/application-theme.model';
|
|
5
5
|
import { MatTableDataSource } from '@angular/material/table';
|
|
@@ -16,14 +16,14 @@ export declare class TableComponent<T extends DataSource, TDetail extends DataSo
|
|
|
16
16
|
* @type {TableConfig}
|
|
17
17
|
* @memberof TableComponent
|
|
18
18
|
*/
|
|
19
|
-
|
|
19
|
+
config: TableConfigWithPagination<T>;
|
|
20
20
|
/**
|
|
21
21
|
* Input property for providing the table data.
|
|
22
22
|
*
|
|
23
23
|
* @type {TableData}
|
|
24
24
|
* @memberof TableComponent
|
|
25
25
|
*/
|
|
26
|
-
|
|
26
|
+
data: TableData;
|
|
27
27
|
/**
|
|
28
28
|
* Input property indicating whether the table is in a loading state.
|
|
29
29
|
*
|
|
@@ -54,6 +54,27 @@ export declare class TableComponent<T extends DataSource, TDetail extends DataSo
|
|
|
54
54
|
* @memberof TableComponent
|
|
55
55
|
*/
|
|
56
56
|
disableBorderRadius: boolean;
|
|
57
|
+
/**
|
|
58
|
+
* Condensed table
|
|
59
|
+
*
|
|
60
|
+
* @type {boolean}
|
|
61
|
+
* @memberof TableComponent
|
|
62
|
+
*/
|
|
63
|
+
isCondensed: boolean;
|
|
64
|
+
/**
|
|
65
|
+
* Sticky header
|
|
66
|
+
*
|
|
67
|
+
* @type {boolean}
|
|
68
|
+
* @memberof TableComponent
|
|
69
|
+
*/
|
|
70
|
+
stickyHeader: boolean;
|
|
71
|
+
/**
|
|
72
|
+
* Max height
|
|
73
|
+
*
|
|
74
|
+
* @type {string}
|
|
75
|
+
* @memberof TableComponent
|
|
76
|
+
*/
|
|
77
|
+
maxHeight: string;
|
|
57
78
|
onRowClickEvent: EventEmitter<any>;
|
|
58
79
|
onDetailRowClickEvent: EventEmitter<any>;
|
|
59
80
|
paginatorChange: EventEmitter<PageEvent>;
|
|
@@ -70,7 +91,7 @@ export declare class TableComponent<T extends DataSource, TDetail extends DataSo
|
|
|
70
91
|
'border-radius': string;
|
|
71
92
|
height: string;
|
|
72
93
|
};
|
|
73
|
-
protected dataSourceDetail: MatTableDataSource<any, import("@angular/material/
|
|
94
|
+
protected dataSourceDetail: MatTableDataSource<any, import("@angular/material/paginator").MatPaginator>;
|
|
74
95
|
protected elementDetail: any;
|
|
75
96
|
protected readonly DataType: typeof ColumnType;
|
|
76
97
|
protected scrollSettings$: BehaviorSubject<ScrollSettings>;
|
|
@@ -82,13 +103,15 @@ export declare class TableComponent<T extends DataSource, TDetail extends DataSo
|
|
|
82
103
|
callRenderer([rendererFn, element]: [(v: T) => ComponentRenderer | string, T]): any;
|
|
83
104
|
protected onPaginatorChange(event: PageEvent): void;
|
|
84
105
|
protected onChangeColumnSize(columnIndex: number, showTooltip: boolean): void;
|
|
85
|
-
protected onSortChange(sortState: Sort): void;
|
|
86
|
-
protected onRowClick(rowParams: any): void;
|
|
106
|
+
protected onSortChange(sortState: Sort, emitEvent?: boolean): void;
|
|
107
|
+
protected onRowClick(rowParams: any, rowIndex: number): void;
|
|
87
108
|
protected onDetailRowClick(rowParams: any): void;
|
|
88
109
|
protected toggleRow(element: T): void;
|
|
89
110
|
private setTableDetailDataSource;
|
|
111
|
+
private setTableConfig;
|
|
112
|
+
private setTableData;
|
|
90
113
|
private defaultPaginationConfig;
|
|
91
114
|
trackColumnUniqueId: (index: number, column: TableColumn<T>) => string;
|
|
92
115
|
static ɵfac: i0.ɵɵFactoryDeclaration<TableComponent<any, any>, [{ optional: true; }, null, null]>;
|
|
93
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent<any, any>, "ui-table", never, { "config": { "alias": "config"; "required": true; }; "data": { "alias": "data"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; "tableDetailColumns": { "alias": "tableDetailColumns"; "required": false; }; "tableDetails": { "alias": "tableDetails"; "required": false; }; "disableBorderRadius": { "alias": "disableBorderRadius"; "required": false; }; }, { "onRowClickEvent": "onRowClickEvent"; "onDetailRowClickEvent": "onDetailRowClickEvent"; "paginatorChange": "paginatorChange"; "sortChange": "sortChange"; }, never, ["[title-actions]"], false, never>;
|
|
116
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TableComponent<any, any>, "ui-table", never, { "config": { "alias": "config"; "required": true; }; "data": { "alias": "data"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; "tableDetailColumns": { "alias": "tableDetailColumns"; "required": false; }; "tableDetails": { "alias": "tableDetails"; "required": false; }; "disableBorderRadius": { "alias": "disableBorderRadius"; "required": false; }; "isCondensed": { "alias": "isCondensed"; "required": false; }; "stickyHeader": { "alias": "stickyHeader"; "required": false; }; "maxHeight": { "alias": "maxHeight"; "required": false; }; }, { "onRowClickEvent": "onRowClickEvent"; "onDetailRowClickEvent": "onDetailRowClickEvent"; "paginatorChange": "paginatorChange"; "sortChange": "sortChange"; }, never, ["[title-actions]"], false, never>;
|
|
94
117
|
}
|
|
@@ -10,7 +10,7 @@ import * as i8 from "../button/button.component.module";
|
|
|
10
10
|
import * as i9 from "@angular/material/sort";
|
|
11
11
|
import * as i10 from "../icon/icon.component.module";
|
|
12
12
|
import * as i11 from "../../directives/ellipse-text.directive";
|
|
13
|
-
import * as i12 from "
|
|
13
|
+
import * as i12 from "../../directives/dynamic-component.directive";
|
|
14
14
|
import * as i13 from "../../pipes/data-property-getter";
|
|
15
15
|
import * as i14 from "../../pipes/memoize-func.pipe";
|
|
16
16
|
export declare class TableComponentModule {
|
|
@@ -7,15 +7,14 @@ export interface TableConfig<T = any> {
|
|
|
7
7
|
sort?: Sort;
|
|
8
8
|
hidePagination?: boolean;
|
|
9
9
|
noDataRowTpl?: TemplateRef<any>;
|
|
10
|
+
sortable?: boolean;
|
|
10
11
|
}
|
|
11
12
|
export interface TableConfigWithPagination<T> extends TableConfig<T> {
|
|
12
|
-
pagination
|
|
13
|
+
pagination?: Pagination;
|
|
13
14
|
}
|
|
14
15
|
export interface TableColumn<T = any> {
|
|
15
|
-
title
|
|
16
|
+
title?: string;
|
|
16
17
|
key: string;
|
|
17
|
-
widthPerc?: number;
|
|
18
|
-
minWidthPx?: number;
|
|
19
18
|
allowMultiline?: boolean;
|
|
20
19
|
bold?: boolean;
|
|
21
20
|
showTooltip?: boolean;
|
|
@@ -85,6 +84,16 @@ export declare enum ColumnAlignment {
|
|
|
85
84
|
RIGHT = "right",
|
|
86
85
|
CENTER = "center"
|
|
87
86
|
}
|
|
87
|
+
export declare enum ColumnTypeEnum {
|
|
88
|
+
FIELD = "field",
|
|
89
|
+
FUNCTION = "function",
|
|
90
|
+
RENDERER = "renderer"
|
|
91
|
+
}
|
|
92
|
+
export declare enum ColumnAlignmentEnum {
|
|
93
|
+
LEFT = "left",
|
|
94
|
+
RIGHT = "right",
|
|
95
|
+
CENTER = "center"
|
|
96
|
+
}
|
|
88
97
|
export type DataSource = {
|
|
89
98
|
[key: string]: any;
|
|
90
99
|
};
|
|
@@ -13,6 +13,7 @@ export declare class TabDirective implements OnInit {
|
|
|
13
13
|
nextTab: Tab;
|
|
14
14
|
}) => boolean | Promise<boolean>) | undefined>;
|
|
15
15
|
linkUrl: import("@angular/core").InputSignal<string | undefined>;
|
|
16
|
+
order: import("@angular/core").InputSignal<number | undefined>;
|
|
16
17
|
private tabsComponent;
|
|
17
18
|
private template;
|
|
18
19
|
private syncProps;
|
|
@@ -20,5 +21,5 @@ export declare class TabDirective implements OnInit {
|
|
|
20
21
|
ngOnInit(): void;
|
|
21
22
|
private addTab;
|
|
22
23
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabDirective, never>;
|
|
23
|
-
static ɵdir: i0.ɵɵDirectiveDeclaration<TabDirective, "ng-template[uiTab]", never, { "tabLabel": { "alias": "tabLabel"; "required": true; "isSignal": true; }; "tabName": { "alias": "tabName"; "required": true; "isSignal": true; }; "iconLeft": { "alias": "iconLeft"; "required": false; "isSignal": true; }; "iconRight": { "alias": "iconRight"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "canLeave": { "alias": "canLeave"; "required": false; "isSignal": true; }; "linkUrl": { "alias": "linkUrl"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
24
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<TabDirective, "ng-template[uiTab]", never, { "tabLabel": { "alias": "tabLabel"; "required": true; "isSignal": true; }; "tabName": { "alias": "tabName"; "required": true; "isSignal": true; }; "iconLeft": { "alias": "iconLeft"; "required": false; "isSignal": true; }; "iconRight": { "alias": "iconRight"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "canLeave": { "alias": "canLeave"; "required": false; "isSignal": true; }; "linkUrl": { "alias": "linkUrl"; "required": false; "isSignal": true; }; "order": { "alias": "order"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
24
25
|
}
|
|
@@ -57,9 +57,12 @@ export declare class TabsComponent {
|
|
|
57
57
|
protected tabs: Tab[];
|
|
58
58
|
readonly tabIndex: import("@angular/core").WritableSignal<number>;
|
|
59
59
|
protected tabIndexMap: Record<string, number>;
|
|
60
|
+
private insertionCounter;
|
|
60
61
|
constructor(defaultAppTheme: ApplicationTheme, isMobile$: Observable<boolean>);
|
|
61
62
|
ngAfterViewInit(): void;
|
|
62
63
|
addTab(tab: Tab): void;
|
|
64
|
+
private sortTabs;
|
|
65
|
+
private updateTabIndexMap;
|
|
63
66
|
onTabChange(ev: MatTabChangeEvent): void;
|
|
64
67
|
selectTab(tabName: string): void;
|
|
65
68
|
indexOf(tabName: string): number;
|
|
@@ -4,8 +4,9 @@ import * as i2 from "./tab.directive";
|
|
|
4
4
|
import * as i3 from "@angular/common";
|
|
5
5
|
import * as i4 from "@angular/material/tabs";
|
|
6
6
|
import * as i5 from "../icon/icon.component.module";
|
|
7
|
+
import * as i6 from "../../pipes/ui-translate.pipe";
|
|
7
8
|
export declare class TabsComponentModule {
|
|
8
9
|
static ɵfac: i0.ɵɵFactoryDeclaration<TabsComponentModule, never>;
|
|
9
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TabsComponentModule, [typeof i1.TabsComponent], [typeof i2.TabDirective, typeof i3.CommonModule, typeof i4.MatTabsModule, typeof i5.IconComponentModule], [typeof i1.TabsComponent, typeof i2.TabDirective]>;
|
|
10
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TabsComponentModule, [typeof i1.TabsComponent], [typeof i2.TabDirective, typeof i3.CommonModule, typeof i4.MatTabsModule, typeof i5.IconComponentModule, typeof i6.UiTranslatePipe], [typeof i1.TabsComponent, typeof i2.TabDirective]>;
|
|
10
11
|
static ɵinj: i0.ɵɵInjectorDeclaration<TabsComponentModule>;
|
|
11
12
|
}
|
|
@@ -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
|
|
@@ -19,15 +21,13 @@ export declare class UniversalSkillsReportComponent implements OnInit {
|
|
|
19
21
|
* @memberof UniversalSkillsReportComponent
|
|
20
22
|
*/
|
|
21
23
|
skillAreaDataList: SkillAreaData[];
|
|
22
|
-
readonly translationContext = "UNIVERSAL_SKILLS_REPORT";
|
|
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
|
-
|
|
29
|
-
|
|
30
|
-
private checkScoreClassification;
|
|
31
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<UniversalSkillsReportComponent, [{ optional: true; }]>;
|
|
30
|
+
checkScoreClassification([percentileScoring, isLabelRequest]: [number, boolean]): string | RebrandBadgeColor;
|
|
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,47 @@
|
|
|
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
|
+
/**
|
|
26
|
+
* Defines if the component is loading
|
|
27
|
+
* @property loading
|
|
28
|
+
* @type {boolean}
|
|
29
|
+
* @memberof UniversalSkillsSpiderChartsComponent
|
|
30
|
+
*/
|
|
31
|
+
loading: boolean;
|
|
32
|
+
/**
|
|
33
|
+
* Defines the size of the spider chart
|
|
34
|
+
* @property size
|
|
35
|
+
* @type {'small' | 'large'}
|
|
36
|
+
* @memberof UniversalSkillsSpiderChartsComponent
|
|
37
|
+
*/
|
|
38
|
+
size: 'small' | 'large';
|
|
39
|
+
readonly translationContext = "UNIVERSAL_SKILLS_REPORT.";
|
|
40
|
+
skillAreaGroupMap: Record<SkillAreaGroupTypes, SkillAreaGroup>;
|
|
41
|
+
skillAreaSpiderChartData: SkillAreaSpiderChartData[];
|
|
42
|
+
constructor(defaultAppTheme: ApplicationTheme, universalSkillsService: UniversalSkillsService, uiTranslatePipe: UiTranslatePipe);
|
|
43
|
+
ngOnInit(): void;
|
|
44
|
+
prepareSpiderChartData(): void;
|
|
45
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UniversalSkillsSpiderChartsComponent, [{ optional: true; }, null, null]>;
|
|
46
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UniversalSkillsSpiderChartsComponent, "ui-universal-skills-spider-charts", never, { "applicationTheme": { "alias": "applicationTheme"; "required": false; }; "skillAreaDataList": { "alias": "skillAreaDataList"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, {}, never, never, false, never>;
|
|
47
|
+
}
|
|
@@ -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
|
+
}
|
package/{components/deprecated-table/directives → directives}/dynamic-component.directive.d.ts
RENAMED
|
@@ -1,6 +1,12 @@
|
|
|
1
|
-
import { OnDestroy, ViewContainerRef } from '@angular/core';
|
|
2
|
-
import { IComponentRenderer } from '../deprecated-table.model';
|
|
1
|
+
import { OnDestroy, Type, ViewContainerRef } from '@angular/core';
|
|
3
2
|
import * as i0 from "@angular/core";
|
|
3
|
+
interface IComponentRenderer {
|
|
4
|
+
component: Type<any>;
|
|
5
|
+
inputs?: any;
|
|
6
|
+
outputs?: {
|
|
7
|
+
[key: string]: any;
|
|
8
|
+
};
|
|
9
|
+
}
|
|
4
10
|
export declare class DynamicComponentDirective implements OnDestroy {
|
|
5
11
|
private vcr;
|
|
6
12
|
private subscription;
|
|
@@ -11,3 +17,4 @@ export declare class DynamicComponentDirective implements OnDestroy {
|
|
|
11
17
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicComponentDirective, never>;
|
|
12
18
|
static ɵdir: i0.ɵɵDirectiveDeclaration<DynamicComponentDirective, "[dynamicComponent]", never, { "dynamicComponent": { "alias": "dynamicComponent"; "required": false; }; }, {}, never, never, true, never>;
|
|
13
19
|
}
|
|
20
|
+
export {};
|