@testgorilla/tgo-ui 2.29.2 → 2.29.3

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.
@@ -149,7 +149,7 @@ export declare class EmptyStateComponent {
149
149
  onPrimaryButtonClick(event: Event): void;
150
150
  onSecondaryButtonClick(event: Event): void;
151
151
  onTertiaryButtonClick(event: Event): void;
152
- getVariant(variant: ButtonVariant): "ghost" | "primary" | "secondary";
152
+ getVariant(variant: ButtonVariant): "primary" | "secondary" | "ghost";
153
153
  static ɵfac: i0.ɵɵFactoryDeclaration<EmptyStateComponent, [{ optional: true; }]>;
154
154
  static ɵcmp: i0.ɵɵComponentDeclaration<EmptyStateComponent, "ui-empty-state", never, { "showIllustration": { "alias": "showIllustration"; "required": false; }; "illustrationVariant": { "alias": "illustrationVariant"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "emptyStateVariant": { "alias": "emptyStateVariant"; "required": false; }; "title": { "alias": "title"; "required": false; }; "bodyText": { "alias": "bodyText"; "required": false; }; "primaryButtonText": { "alias": "primaryButtonText"; "required": false; }; "primaryButtonVariant": { "alias": "primaryButtonVariant"; "required": false; }; "primaryButtonIconName": { "alias": "primaryButtonIconName"; "required": false; }; "primaryButtonIconPosition": { "alias": "primaryButtonIconPosition"; "required": false; }; "secondaryButtonText": { "alias": "secondaryButtonText"; "required": false; }; "secondaryButtonVariant": { "alias": "secondaryButtonVariant"; "required": false; }; "secondaryButtonIconName": { "alias": "secondaryButtonIconName"; "required": false; }; "secondaryButtonIconPosition": { "alias": "secondaryButtonIconPosition"; "required": false; }; "tertiaryButtonText": { "alias": "tertiaryButtonText"; "required": false; }; "tertiaryButtonVariant": { "alias": "tertiaryButtonVariant"; "required": false; }; "tertiaryButtonIconName": { "alias": "tertiaryButtonIconName"; "required": false; }; "tertiaryButtonIconPosition": { "alias": "tertiaryButtonIconPosition"; "required": false; }; "applicationTheme": { "alias": "applicationTheme"; "required": false; }; }, { "primaryButtonClick": "primaryButtonClick"; "secondaryButtonClick": "secondaryButtonClick"; "tertiaryButtonClick": "tertiaryButtonClick"; }, never, never, false, never>;
155
155
  }
@@ -290,7 +290,7 @@ export class PhoneInputComponent {
290
290
  provide: MAT_AUTOCOMPLETE_DEFAULT_OPTIONS,
291
291
  useValue: { overlayPanelClass: 'phone-number-autocomplete' },
292
292
  },
293
- ], viewQueries: [{ propertyName: "input", first: true, predicate: MatInput, descendants: true, read: ElementRef, static: true }, { propertyName: "select", first: true, predicate: MatSelect, descendants: true, read: ElementRef, static: true }], ngImport: i0, template: "<mat-form-field\n [formGroup]=\"form\"\n appearance=\"outline\"\n [color]=\"(errorsLength || (ngControl?.errors && ngControl?.touched )) ? 'warn' : 'accent'\"\n [ngClass]=\"{ disabled: form.disabled || disabled, 'full-width': fullWidth }\"\n>\n <mat-label>{{ 'COMMON.PHONE_NUMBER' | uiTranslate | async }} <span *ngIf=\"required\">*</span></mat-label>\n\n <div matPrefix class=\"country\">\n <button class=\"selected-flag\" matPrefix *ngIf=\"selectedCountry\">\n <img [height]=\"20\" [width]=\"24\" [attr.src]=\"countryFlagSrc + selectedCountry?.alpha2Code?.toLowerCase() + '.svg'\"\n [alt]=\"'Country flag ' + selectedCountry?.alpha2Code?.toLowerCase()\">\n </button>\n <mat-select\n #select\n (selectionChange)=\"onOptionsSelected($event.value)\"\n [value]=\"selectedCountry\"\n [disableOptionCentering]=\"true\"\n [panelClass]=\"'phone-number-select' + ' ' + applicationTheme\"\n [ngClass]=\"{ opened: select.panelOpen }\"\n >\n <mat-select-trigger>{{ selectedCountry?.callingCode }}</mat-select-trigger>\n <mat-option>\n <ngx-mat-select-search\n [formControl]=\"selectFilterCtrl\"\n ngDefaultControl\n placeholderLabel=\"\"\n noEntriesFoundLabel=\"\"\n >\n <ui-icon ngxMatSelectSearchClear size=\"24\" [name]=\"'Close-in-line'\"></ui-icon>\n </ngx-mat-select-search>\n </mat-option>\n <mat-option *ngFor=\"let country of countries$ | async; trackBy: filteredCountryTrackByMethod\" [value]=\"country\">\n <div class=\"country-option\">\n <img [height]=\"20\" [width]=\"24\" [attr.src]=\"countryFlagSrc + country?.alpha2Code?.toLowerCase()! + '.svg'\"\n [alt]=\"'Country flag ' + country?.alpha2Code?.toLowerCase()!\">\n <small>{{ $any([country?.name, '(' + country?.callingCode + ')']) | joinStrings : ' ' }}</small>\n </div>\n </mat-option>\n </mat-select>\n </div>\n\n <input\n (input)=\"onInput(form.get('phone_number')!.value)\"\n formControlName=\"phone_number\"\n (click)=\"disableClick($event)\"\n [ngStyle]=\"{ opacity: disabled ? 0.5 : 1 }\"\n [required]=\"required\"\n matInput\n type=\"text\"\n />\n\n <mat-hint class=\"error\" *ngIf=\"errorsLength || (ngControl?.errors | hasValidationError)\">\n <ng-container *ngIf=\"errorsLength\">\n <div class=\"errors\" *ngFor=\"let error of _errors; trackBy: trackByFn\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span [innerHTML]=\"error\"></span>\n </div>\n </ng-container>\n\n <ui-validation-error *ngIf=\"ngControl && !hideBuiltInErrors\" [ngControl]=\"ngControl\" [label]=\"hideLabelInErrors ? null : ('COMMON.PHONE_NUMBER' | uiTranslate | async)\"></ui-validation-error>\n\n </mat-hint>\n</mat-form-field>\n", styles: [".bg-teal-60b{background:#1c443c}.bg-teal-30b{background:#31766a}.bg-teal-default{background:#46a997}.bg-teal-30w{background:#7ec3b6}.bg-teal-60w{background:#b5ddd5}.bg-teal-secondary{background:#cbd6cb}.bg-teal-90w{background:#ecf6f5}.bg-petrol-60b{background:#102930}.bg-petrol-30b{background:#1b4754}.bg-petrol-default{background:#276678}.bg-petrol-30w{background:#6894a0}.bg-petrol-60w{background:#a9c2c9}.bg-petrol-secondary{background:#c8d7de}.bg-petrol-90w{background:#e9f0f1}.bg-error-60b{background:#513131}.bg-error-30b{background:#8e5655}.bg-error-60w{background:#e3c3c6}.bg-error-secondary{background:#f0dad9}.bg-error-default{background:#cb7b7a}.bg-warning-secondary{background:#f0d6bb}.bg-warning-default{background:#cca45f}.bg-black{background:#000}.bg-dark{background:#888}.bg-medium{background:#e0e0e0}.bg-grey{background:#ededed}.bg-light{background:#f6f6f6}.bg-white{background:#fff}.bg-box-shadow{background:#00000014}.bg-navigation-subtitle{background:#528593}.bgc-teal-60b{background-color:#1c443c}.bgc-teal-30b{background-color:#31766a}.bgc-teal-default{background-color:#46a997}.bgc-teal-30w{background-color:#7ec3b6}.bgc-teal-60w{background-color:#b5ddd5}.bgc-teal-secondary{background-color:#cbd6cb}.bgc-teal-90w{background-color:#ecf6f5}.bgc-petrol-60b{background-color:#102930}.bgc-petrol-30b{background-color:#1b4754}.bgc-petrol-default{background-color:#276678}.bgc-petrol-30w{background-color:#6894a0}.bgc-petrol-60w{background-color:#a9c2c9}.bgc-petrol-secondary{background-color:#c8d7de}.bgc-petrol-90w{background-color:#e9f0f1}.bgc-error-60b{background-color:#513131}.bgc-error-30b{background-color:#8e5655}.bgc-error-60w{background-color:#e3c3c6}.bgc-error-secondary{background-color:#f0dad9}.bgc-error-default{background-color:#cb7b7a}.bgc-warning-secondary{background-color:#f0d6bb}.bgc-warning-default{background-color:#cca45f}.bgc-black{background-color:#000}.bgc-dark{background-color:#888}.bgc-medium{background-color:#e0e0e0}.bgc-grey{background-color:#ededed}.bgc-light{background-color:#f6f6f6}.bgc-white{background-color:#fff}.bgc-box-shadow{background-color:#00000014}.bgc-navigation-subtitle{background-color:#528593}:host{display:flex;align-items:center}:host .selected-flag{display:flex;position:relative;margin-right:1rem;align-items:center}:host mat-spinner{padding:0 20px}:host .country{cursor:pointer!important;display:flex;align-items:center;margin:-8px 12px 0 16px}:host .country button{margin:0 8px 0 0;background:transparent;border:unset;padding:0}:host ::ng-deep .mat-mdc-select-trigger{display:flex;gap:8px}:host mat-select{flex:0}:host .mat-mdc-form-field{min-width:320px}:host .mat-mdc-form-field.full-width{width:100%}:host .mat-mdc-form-field.disabled ::ng-deep *{border-color:#d3d3d3;color:#d3d3d3;pointer-events:none}:host .mat-mdc-form-field.disabled ::ng-deep * .mat-mdc-select-arrow{opacity:.1}:host[theme=dark] mat-select ::ng-deep .mat-mdc-select-arrow,:host[theme=light] mat-select ::ng-deep .mat-mdc-select-arrow{background:url('data:image/svg+xml,<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M12 17.025L6 11.025L7.4 9.625L12 14.225L16.6 9.625L18 11.025L12 17.025Z\" fill=\"currentColor\"/>%0A</svg>%0A');background-size:cover;width:16px;height:16px}:host[theme=dark] mat-select ::ng-deep .mat-mdc-select-arrow svg,:host[theme=light] mat-select ::ng-deep .mat-mdc-select-arrow svg{display:none}:host[theme=dark] mat-select.opened ::ng-deep .mat-mdc-select-arrow,:host[theme=light] mat-select.opened ::ng-deep .mat-mdc-select-arrow{background:url('data:image/svg+xml,<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M12 9.6249L18 15.6249L16.6 17.0249L12 12.4249L7.4 17.0249L6 15.6249L12 9.6249Z\" fill=\"currentColor\"/>%0A</svg>%0A');background-size:cover;width:16px;height:16px}::ng-deep .mat-form-field-appearance-outline mat-select .mat-select-arrow-wrapper{transform:none}::ng-deep .mat-select-panel.phone-number-select{margin-top:36px;margin-left:45px}::ng-deep .mat-select-search-inner{box-shadow:none!important;height:48px;background-color:#fff!important;border-bottom:none!important}::ng-deep .mat-select-search-inner .mat-select-search-inner-row{width:100%}::ng-deep .mat-select-search-inner button.mat-select-search-clear{right:35px}::ng-deep .mat-select-search-inner button.mat-select-search-clear mat-icon{font-size:20px}@media screen and (min-width: 599px){::ng-deep .mat-select-panel.phone-number-select{margin-left:-33px;min-width:510px}::ng-deep .mat-select-search-inner{min-width:calc(100% + 33px)!important}}ngx-mat-select-search ::ng-deep button .mat-mdc-button-persistent-ripple,ngx-mat-select-search ::ng-deep button .mat-ripple,ngx-mat-select-search ::ng-deep button .mat-mdc-button-ripple{display:none}\n"], dependencies: [{ kind: "directive", type: i5.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i5.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i6.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i6.MatLabel, selector: "mat-label" }, { kind: "directive", type: i6.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i6.MatPrefix, selector: "[matPrefix], [matIconPrefix], [matTextPrefix]", inputs: ["matTextPrefix"] }, { kind: "component", type: i7.MatSelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex", "panelWidth", "hideSingleSelectionIndicator"], exportAs: ["matSelect"] }, { kind: "directive", type: i7.MatSelectTrigger, selector: "mat-select-trigger" }, { kind: "component", type: i2.MatOption, selector: "mat-option", exportAs: ["matOption"] }, { kind: "directive", type: i8.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "component", type: i9.MatSelectSearchComponent, selector: "ngx-mat-select-search", inputs: ["placeholderLabel", "type", "closeIcon", "closeSvgIcon", "noEntriesFoundLabel", "clearSearchInput", "searching", "disableInitialFocus", "enableClearOnEscapePressed", "preventHomeEndKeyPropagation", "disableScrollToActiveOnOptionsChanged", "ariaLabel", "showToggleAllCheckbox", "toggleAllCheckboxChecked", "toggleAllCheckboxIndeterminate", "toggleAllCheckboxTooltipMessage", "toggleAllCheckboxTooltipPosition", "hideClearSearchButton", "alwaysRestoreSelectedOptionsMulti", "recreateValuesArray"], outputs: ["toggleAll"] }, { kind: "directive", type: i9.MatSelectSearchClearDirective, selector: "[ngxMatSelectSearchClear]" }, { kind: "component", type: i10.IconComponent, selector: "ui-icon", inputs: ["size", "cssClass", "name", "color", "filled", "applicationTheme", "useFullIconName"] }, { kind: "component", type: i11.ValidationErrorComponent, selector: "ui-validation-error", inputs: ["ngControl", "touchedOn", "errorMessage", "label", "applicationTheme"] }, { kind: "pipe", type: i5.AsyncPipe, name: "async" }, { kind: "pipe", type: i12.UiTranslatePipe, name: "uiTranslate" }, { kind: "pipe", type: i13.HasValidationErrorPipe, name: "hasValidationError" }, { kind: "pipe", type: i14.JoinStringsPipe, name: "joinStrings" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
293
+ ], viewQueries: [{ propertyName: "input", first: true, predicate: MatInput, descendants: true, read: ElementRef, static: true }, { propertyName: "select", first: true, predicate: MatSelect, descendants: true, read: ElementRef, static: true }], ngImport: i0, template: "<mat-form-field\n [formGroup]=\"form\"\n appearance=\"outline\"\n [color]=\"(errorsLength || (ngControl?.errors && ngControl?.touched )) ? 'warn' : 'accent'\"\n [ngClass]=\"{ disabled: form.disabled || disabled, 'full-width': fullWidth }\"\n>\n <mat-label>{{ 'COMMON.PHONE_NUMBER' | uiTranslate | async }} <span *ngIf=\"required\">*</span></mat-label>\n\n <div matPrefix class=\"country\">\n <button class=\"selected-flag\" matPrefix *ngIf=\"selectedCountry\">\n <img [height]=\"20\" [width]=\"24\" [attr.src]=\"countryFlagSrc + selectedCountry?.alpha2Code?.toLowerCase() + '.svg'\"\n [alt]=\"'Country flag ' + selectedCountry?.alpha2Code?.toLowerCase()\">\n </button>\n <mat-select\n #select\n (selectionChange)=\"onOptionsSelected($event.value)\"\n [value]=\"selectedCountry\"\n [disableOptionCentering]=\"true\"\n [panelClass]=\"'phone-number-select' + ' ' + applicationTheme\"\n [ngClass]=\"{ opened: select.panelOpen }\"\n >\n <mat-select-trigger>{{ selectedCountry?.callingCode }}</mat-select-trigger>\n <mat-option>\n <ngx-mat-select-search\n [formControl]=\"selectFilterCtrl\"\n ngDefaultControl\n placeholderLabel=\"\"\n noEntriesFoundLabel=\"\"\n >\n <ui-icon ngxMatSelectSearchClear size=\"24\" [name]=\"'Close-in-line'\"></ui-icon>\n </ngx-mat-select-search>\n </mat-option>\n <mat-option *ngFor=\"let country of countries$ | async; trackBy: filteredCountryTrackByMethod\" [value]=\"country\">\n <div class=\"country-option\">\n <img [height]=\"20\" [width]=\"24\" [attr.src]=\"countryFlagSrc + country?.alpha2Code?.toLowerCase()! + '.svg'\"\n [alt]=\"'Country flag ' + country?.alpha2Code?.toLowerCase()!\">\n <small>{{ $any([country?.name, '(' + country?.callingCode + ')']) | joinStrings : ' ' }}</small>\n </div>\n </mat-option>\n </mat-select>\n </div>\n\n <input\n (input)=\"onInput(form.get('phone_number')!.value)\"\n formControlName=\"phone_number\"\n (click)=\"disableClick($event)\"\n [ngStyle]=\"{ opacity: disabled ? 0.5 : 1 }\"\n [required]=\"required\"\n matInput\n type=\"text\"\n />\n\n <mat-hint class=\"error\" *ngIf=\"errorsLength || (ngControl?.errors | hasValidationError)\">\n <ng-container *ngIf=\"errorsLength\">\n <div class=\"errors\" *ngFor=\"let error of _errors; trackBy: trackByFn\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span [innerHTML]=\"error\"></span>\n </div>\n </ng-container>\n\n <ui-validation-error *ngIf=\"ngControl && !hideBuiltInErrors\" [ngControl]=\"ngControl\" [label]=\"hideLabelInErrors ? null : ('COMMON.PHONE_NUMBER' | uiTranslate | async)\"></ui-validation-error>\n\n </mat-hint>\n</mat-form-field>\n", styles: [".bg-teal-60b{background:#1c443c}.bg-teal-30b{background:#31766a}.bg-teal-default{background:#46a997}.bg-teal-30w{background:#7ec3b6}.bg-teal-60w{background:#b5ddd5}.bg-teal-secondary{background:#cbd6cb}.bg-teal-90w{background:#ecf6f5}.bg-petrol-60b{background:#102930}.bg-petrol-30b{background:#1b4754}.bg-petrol-default{background:#276678}.bg-petrol-30w{background:#6894a0}.bg-petrol-60w{background:#a9c2c9}.bg-petrol-secondary{background:#c8d7de}.bg-petrol-90w{background:#e9f0f1}.bg-error-60b{background:#513131}.bg-error-30b{background:#8e5655}.bg-error-60w{background:#e3c3c6}.bg-error-secondary{background:#f0dad9}.bg-error-default{background:#cb7b7a}.bg-warning-secondary{background:#f0d6bb}.bg-warning-default{background:#cca45f}.bg-black{background:#000}.bg-dark{background:#888}.bg-medium{background:#e0e0e0}.bg-grey{background:#ededed}.bg-light{background:#f6f6f6}.bg-white{background:#fff}.bg-box-shadow{background:#00000014}.bg-navigation-subtitle{background:#528593}.bgc-teal-60b{background-color:#1c443c}.bgc-teal-30b{background-color:#31766a}.bgc-teal-default{background-color:#46a997}.bgc-teal-30w{background-color:#7ec3b6}.bgc-teal-60w{background-color:#b5ddd5}.bgc-teal-secondary{background-color:#cbd6cb}.bgc-teal-90w{background-color:#ecf6f5}.bgc-petrol-60b{background-color:#102930}.bgc-petrol-30b{background-color:#1b4754}.bgc-petrol-default{background-color:#276678}.bgc-petrol-30w{background-color:#6894a0}.bgc-petrol-60w{background-color:#a9c2c9}.bgc-petrol-secondary{background-color:#c8d7de}.bgc-petrol-90w{background-color:#e9f0f1}.bgc-error-60b{background-color:#513131}.bgc-error-30b{background-color:#8e5655}.bgc-error-60w{background-color:#e3c3c6}.bgc-error-secondary{background-color:#f0dad9}.bgc-error-default{background-color:#cb7b7a}.bgc-warning-secondary{background-color:#f0d6bb}.bgc-warning-default{background-color:#cca45f}.bgc-black{background-color:#000}.bgc-dark{background-color:#888}.bgc-medium{background-color:#e0e0e0}.bgc-grey{background-color:#ededed}.bgc-light{background-color:#f6f6f6}.bgc-white{background-color:#fff}.bgc-box-shadow{background-color:#00000014}.bgc-navigation-subtitle{background-color:#528593}:host{display:flex;align-items:center}:host .selected-flag{display:flex;position:relative;margin-right:1rem;align-items:center}:host mat-spinner{padding:0 20px}:host .country{cursor:pointer!important;display:flex;align-items:center;margin:-8px 12px 0 16px}:host .country button{margin:0 8px 0 0;background:transparent;border:unset;padding:0}:host ::ng-deep .mat-mdc-select-trigger{display:flex;gap:8px}:host mat-select{flex:0}:host .mat-mdc-form-field{min-width:320px}:host .mat-mdc-form-field.full-width{width:100%}:host .mat-mdc-form-field.disabled ::ng-deep *{border-color:#d3d3d3;color:#d3d3d3;pointer-events:none}:host .mat-mdc-form-field.disabled ::ng-deep * .mat-mdc-select-arrow{opacity:.1}:host[theme=dark] mat-select ::ng-deep .mat-mdc-select-arrow,:host[theme=light] mat-select ::ng-deep .mat-mdc-select-arrow{background:url('data:image/svg+xml,<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M12 17.025L6 11.025L7.4 9.625L12 14.225L16.6 9.625L18 11.025L12 17.025Z\" fill=\"currentColor\"/>%0A</svg>%0A');background-size:cover;width:16px;height:16px}:host[theme=dark] mat-select ::ng-deep .mat-mdc-select-arrow svg,:host[theme=light] mat-select ::ng-deep .mat-mdc-select-arrow svg{display:none}:host[theme=dark] mat-select.opened ::ng-deep .mat-mdc-select-arrow,:host[theme=light] mat-select.opened ::ng-deep .mat-mdc-select-arrow{background:url('data:image/svg+xml,<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M12 9.6249L18 15.6249L16.6 17.0249L12 12.4249L7.4 17.0249L6 15.6249L12 9.6249Z\" fill=\"currentColor\"/>%0A</svg>%0A');background-size:cover;width:16px;height:16px}::ng-deep .mat-form-field-appearance-outline mat-select .mat-select-arrow-wrapper{transform:none}::ng-deep .mat-select-panel.phone-number-select{margin-top:36px;margin-left:45px}::ng-deep .mat-select-search-inner{box-shadow:none!important;height:48px;background-color:#fff!important;border-bottom:none!important}::ng-deep .mat-select-search-inner .mat-select-search-inner-row{width:100%}::ng-deep .mat-select-search-inner button.mat-select-search-clear{right:35px}::ng-deep .mat-select-search-inner button.mat-select-search-clear mat-icon{font-size:20px}@media screen and (min-width: 599px){::ng-deep .mat-select-panel.phone-number-select{margin-left:-33px;min-width:510px}::ng-deep .mat-select-search-inner{min-width:calc(100% + 33px)!important}}ngx-mat-select-search ::ng-deep button .mat-mdc-button-persistent-ripple,ngx-mat-select-search ::ng-deep button .mat-ripple,ngx-mat-select-search ::ng-deep button .mat-mdc-button-ripple{display:none}\n"], dependencies: [{ kind: "directive", type: i5.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i5.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i5.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i5.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i1.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i6.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i6.MatLabel, selector: "mat-label" }, { kind: "directive", type: i6.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i6.MatPrefix, selector: "[matPrefix], [matIconPrefix], [matTextPrefix]", inputs: ["matTextPrefix"] }, { kind: "component", type: i7.MatSelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex", "panelWidth", "hideSingleSelectionIndicator"], exportAs: ["matSelect"] }, { kind: "directive", type: i7.MatSelectTrigger, selector: "mat-select-trigger" }, { kind: "component", type: i2.MatOption, selector: "mat-option", exportAs: ["matOption"] }, { kind: "directive", type: i8.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "component", type: i9.MatSelectSearchComponent, selector: "ngx-mat-select-search", inputs: ["placeholderLabel", "type", "closeIcon", "closeSvgIcon", "noEntriesFoundLabel", "clearSearchInput", "searching", "disableInitialFocus", "enableClearOnEscapePressed", "preventHomeEndKeyPropagation", "disableScrollToActiveOnOptionsChanged", "ariaLabel", "showToggleAllCheckbox", "toggleAllCheckboxChecked", "toggleAllCheckboxIndeterminate", "toggleAllCheckboxTooltipMessage", "toggleAllCheckboxTooltipPosition", "hideClearSearchButton", "alwaysRestoreSelectedOptionsMulti"], outputs: ["toggleAll"] }, { kind: "directive", type: i9.MatSelectSearchClearDirective, selector: "[ngxMatSelectSearchClear]" }, { kind: "component", type: i10.IconComponent, selector: "ui-icon", inputs: ["size", "cssClass", "name", "color", "filled", "applicationTheme", "useFullIconName"] }, { kind: "component", type: i11.ValidationErrorComponent, selector: "ui-validation-error", inputs: ["ngControl", "touchedOn", "errorMessage", "label", "applicationTheme"] }, { kind: "pipe", type: i5.AsyncPipe, name: "async" }, { kind: "pipe", type: i12.UiTranslatePipe, name: "uiTranslate" }, { kind: "pipe", type: i13.HasValidationErrorPipe, name: "hasValidationError" }, { kind: "pipe", type: i14.JoinStringsPipe, name: "joinStrings" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
294
294
  }
295
295
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PhoneInputComponent, decorators: [{
296
296
  type: Component,
@@ -4,6 +4,35 @@ import * as i0 from "@angular/core";
4
4
  export class UniversalSkillsService {
5
5
  constructor() {
6
6
  this.translationContext = 'UNIVERSAL_SKILLS_REPORT.';
7
+ this.staticSkillAreaGroupMap = [
8
+ [
9
+ SkillAreaTypes.BusinessSavvy,
10
+ SkillAreaTypes.StrategicPerspective,
11
+ SkillAreaTypes.CustomerFocus,
12
+ SkillAreaTypes.NavigatingComplexity,
13
+ SkillAreaTypes.AgileDecisionMaking,
14
+ SkillAreaTypes.EmbracingInnovation,
15
+ SkillAreaTypes.PlanningAndPrioritizing,
16
+ SkillAreaTypes.OrganizingResources,
17
+ SkillAreaTypes.DrivingResults,
18
+ ],
19
+ [
20
+ SkillAreaTypes.WorkingCollaboratively,
21
+ SkillAreaTypes.SocialAgility,
22
+ SkillAreaTypes.CommunicatingEffectively,
23
+ SkillAreaTypes.HandlingConflict,
24
+ SkillAreaTypes.ValuingDiversity,
25
+ SkillAreaTypes.DevelopingOthers,
26
+ ],
27
+ [
28
+ SkillAreaTypes.ShowingResilience,
29
+ SkillAreaTypes.NavigatingAmbiguity,
30
+ SkillAreaTypes.SelfAwareness,
31
+ SkillAreaTypes.SelfDevelopment,
32
+ SkillAreaTypes.EarningTrust,
33
+ SkillAreaTypes.BeingBold,
34
+ ],
35
+ ];
7
36
  }
8
37
  initializeSkillAreaGroupMap() {
9
38
  this.skillAreaGroupMap = {
@@ -27,31 +56,13 @@ export class UniversalSkillsService {
27
56
  prepareSkillAreaGroupMap(skillAreaDataList) {
28
57
  skillAreaDataList?.forEach(currentItem => {
29
58
  const formattedSkillAreaType = currentItem.skillAreaName;
30
- if (formattedSkillAreaType === SkillAreaTypes.BusinessSavvy ||
31
- formattedSkillAreaType === SkillAreaTypes.StrategicPerspective ||
32
- formattedSkillAreaType === SkillAreaTypes.CustomerFocus ||
33
- formattedSkillAreaType === SkillAreaTypes.NavigatingComplexity ||
34
- formattedSkillAreaType === SkillAreaTypes.AgileDecisionMaking ||
35
- formattedSkillAreaType === SkillAreaTypes.EmbracingInnovation ||
36
- formattedSkillAreaType === SkillAreaTypes.PlanningAndPrioritizing ||
37
- formattedSkillAreaType === SkillAreaTypes.OrganizingResources ||
38
- formattedSkillAreaType === SkillAreaTypes.DrivingResults) {
59
+ if (this.staticSkillAreaGroupMap[0].includes(formattedSkillAreaType)) {
39
60
  this.skillAreaGroupMap[SkillAreaGroupTypes.FocusingOnObjectives]?.skillAreaList?.push(currentItem);
40
61
  }
41
- if (formattedSkillAreaType === SkillAreaTypes.WorkingCollaboratively ||
42
- formattedSkillAreaType === SkillAreaTypes.SocialAgility ||
43
- formattedSkillAreaType === SkillAreaTypes.CommunicatingEffectively ||
44
- formattedSkillAreaType === SkillAreaTypes.HandlingConflict ||
45
- formattedSkillAreaType === SkillAreaTypes.ValuingDiversity ||
46
- formattedSkillAreaType === SkillAreaTypes.DevelopingOthers) {
62
+ if (this.staticSkillAreaGroupMap[1].includes(formattedSkillAreaType)) {
47
63
  this.skillAreaGroupMap[SkillAreaGroupTypes.WorkingWithPeople]?.skillAreaList?.push(currentItem);
48
64
  }
49
- if (formattedSkillAreaType === SkillAreaTypes.ShowingResilience ||
50
- formattedSkillAreaType === SkillAreaTypes.NavigatingAmbiguity ||
51
- formattedSkillAreaType === SkillAreaTypes.SelfAwareness ||
52
- formattedSkillAreaType === SkillAreaTypes.SelfDevelopment ||
53
- formattedSkillAreaType === SkillAreaTypes.EarningTrust ||
54
- formattedSkillAreaType === SkillAreaTypes.BeingBold) {
65
+ if (this.staticSkillAreaGroupMap[2].includes(formattedSkillAreaType)) {
55
66
  this.skillAreaGroupMap[SkillAreaGroupTypes.ManagingOnesSelf]?.skillAreaList?.push(currentItem);
56
67
  }
57
68
  });
@@ -59,6 +70,9 @@ export class UniversalSkillsService {
59
70
  getSkillAreaGroupMap() {
60
71
  return this.skillAreaGroupMap;
61
72
  }
73
+ getStaticSkillAreaGroupMap() {
74
+ return this.staticSkillAreaGroupMap;
75
+ }
62
76
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: UniversalSkillsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
63
77
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: UniversalSkillsService, providedIn: 'root' }); }
64
78
  }
@@ -68,4 +82,4 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImpo
68
82
  providedIn: 'root',
69
83
  }]
70
84
  }] });
71
- //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5pdmVyc2FsLXNraWxscy5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvdGdvLWNhbm9weS11aS9zZXJ2aWNlcy91bml2ZXJzYWwtc2tpbGxzLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzQyxPQUFPLEVBR0wsbUJBQW1CLEVBQ25CLGNBQWMsR0FDZixNQUFNLHlDQUF5QyxDQUFDOztBQUtqRCxNQUFNLE9BQU8sc0JBQXNCO0lBSG5DO1FBSVcsdUJBQWtCLEdBQUcsMEJBQTBCLENBQUM7S0FxRTFEO0lBakVDLDJCQUEyQjtRQUN6QixJQUFJLENBQUMsaUJBQWlCLEdBQUc7WUFDdkIsQ0FBQyxtQkFBbUIsQ0FBQyxvQkFBb0IsQ0FBQyxFQUFFO2dCQUMxQyxLQUFLLEVBQUUsR0FBRyxJQUFJLENBQUMsa0JBQWtCLHFEQUFxRDtnQkFDdEYsV0FBVyxFQUFFLEdBQUcsSUFBSSxDQUFDLGtCQUFrQiwyREFBMkQ7Z0JBQ2xHLGFBQWEsRUFBRSxFQUFFO2FBQ2xCO1lBQ0QsQ0FBQyxtQkFBbUIsQ0FBQyxpQkFBaUIsQ0FBQyxFQUFFO2dCQUN2QyxLQUFLLEVBQUUsR0FBRyxJQUFJLENBQUMsa0JBQWtCLGtEQUFrRDtnQkFDbkYsV0FBVyxFQUFFLEdBQUcsSUFBSSxDQUFDLGtCQUFrQix3REFBd0Q7Z0JBQy9GLGFBQWEsRUFBRSxFQUFFO2FBQ2xCO1lBQ0QsQ0FBQyxtQkFBbUIsQ0FBQyxnQkFBZ0IsQ0FBQyxFQUFFO2dCQUN0QyxLQUFLLEVBQUUsR0FBRyxJQUFJLENBQUMsa0JBQWtCLGlEQUFpRDtnQkFDbEYsV0FBVyxFQUFFLEdBQUcsSUFBSSxDQUFDLGtCQUFrQix1REFBdUQ7Z0JBQzlGLGFBQWEsRUFBRSxFQUFFO2FBQ2xCO1NBQ0YsQ0FBQztJQUNKLENBQUM7SUFFRCx3QkFBd0IsQ0FBQyxpQkFBa0M7UUFDekQsaUJBQWlCLEVBQUUsT0FBTyxDQUFDLFdBQVcsQ0FBQyxFQUFFO1lBQ3ZDLE1BQU0sc0JBQXNCLEdBQUcsV0FBVyxDQUFDLGFBQWEsQ0FBQztZQUV6RCxJQUNFLHNCQUFzQixLQUFLLGNBQWMsQ0FBQyxhQUFhO2dCQUN2RCxzQkFBc0IsS0FBSyxjQUFjLENBQUMsb0JBQW9CO2dCQUM5RCxzQkFBc0IsS0FBSyxjQUFjLENBQUMsYUFBYTtnQkFDdkQsc0JBQXNCLEtBQUssY0FBYyxDQUFDLG9CQUFvQjtnQkFDOUQsc0JBQXNCLEtBQUssY0FBYyxDQUFDLG1CQUFtQjtnQkFDN0Qsc0JBQXNCLEtBQUssY0FBYyxDQUFDLG1CQUFtQjtnQkFDN0Qsc0JBQXNCLEtBQUssY0FBYyxDQUFDLHVCQUF1QjtnQkFDakUsc0JBQXNCLEtBQUssY0FBYyxDQUFDLG1CQUFtQjtnQkFDN0Qsc0JBQXNCLEtBQUssY0FBYyxDQUFDLGNBQWMsRUFDeEQsQ0FBQztnQkFDRCxJQUFJLENBQUMsaUJBQWlCLENBQUMsbUJBQW1CLENBQUMsb0JBQW9CLENBQUMsRUFBRSxhQUFhLEVBQUUsSUFBSSxDQUFDLFdBQVcsQ0FBQyxDQUFDO1lBQ3JHLENBQUM7WUFFRCxJQUNFLHNCQUFzQixLQUFLLGNBQWMsQ0FBQyxzQkFBc0I7Z0JBQ2hFLHNCQUFzQixLQUFLLGNBQWMsQ0FBQyxhQUFhO2dCQUN2RCxzQkFBc0IsS0FBSyxjQUFjLENBQUMsd0JBQXdCO2dCQUNsRSxzQkFBc0IsS0FBSyxjQUFjLENBQUMsZ0JBQWdCO2dCQUMxRCxzQkFBc0IsS0FBSyxjQUFjLENBQUMsZ0JBQWdCO2dCQUMxRCxzQkFBc0IsS0FBSyxjQUFjLENBQUMsZ0JBQWdCLEVBQzFELENBQUM7Z0JBQ0QsSUFBSSxDQUFDLGlCQUFpQixDQUFDLG1CQUFtQixDQUFDLGlCQUFpQixDQUFDLEVBQUUsYUFBYSxFQUFFLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQztZQUNsRyxDQUFDO1lBRUQsSUFDRSxzQkFBc0IsS0FBSyxjQUFjLENBQUMsaUJBQWlCO2dCQUMzRCxzQkFBc0IsS0FBSyxjQUFjLENBQUMsbUJBQW1CO2dCQUM3RCxzQkFBc0IsS0FBSyxjQUFjLENBQUMsYUFBYTtnQkFDdkQsc0JBQXNCLEtBQUssY0FBYyxDQUFDLGVBQWU7Z0JBQ3pELHNCQUFzQixLQUFLLGNBQWMsQ0FBQyxZQUFZO2dCQUN0RCxzQkFBc0IsS0FBSyxjQUFjLENBQUMsU0FBUyxFQUNuRCxDQUFDO2dCQUNELElBQUksQ0FBQyxpQkFBaUIsQ0FBQyxtQkFBbUIsQ0FBQyxnQkFBZ0IsQ0FBQyxFQUFFLGFBQWEsRUFBRSxJQUFJLENBQUMsV0FBVyxDQUFDLENBQUM7WUFDakcsQ0FBQztRQUNILENBQUMsQ0FBQyxDQUFDO0lBQ0wsQ0FBQztJQUVELG9CQUFvQjtRQUNsQixPQUFPLElBQUksQ0FBQyxpQkFBaUIsQ0FBQztJQUNoQyxDQUFDOytHQXJFVSxzQkFBc0I7bUhBQXRCLHNCQUFzQixjQUZyQixNQUFNOzs0RkFFUCxzQkFBc0I7a0JBSGxDLFVBQVU7bUJBQUM7b0JBQ1YsVUFBVSxFQUFFLE1BQU07aUJBQ25CIiwic291cmNlc0NvbnRlbnQiOlsiaW1wb3J0IHsgSW5qZWN0YWJsZSB9IGZyb20gJ0Bhbmd1bGFyL2NvcmUnO1xuaW1wb3J0IHtcbiAgU2tpbGxBcmVhRGF0YSxcbiAgU2tpbGxBcmVhR3JvdXAsXG4gIFNraWxsQXJlYUdyb3VwVHlwZXMsXG4gIFNraWxsQXJlYVR5cGVzLFxufSBmcm9tICcuLi9tb2RlbHMvdW5pdmVyc2FsLXNraWxscy1yZXBvcnQubW9kZWwnO1xuXG5ASW5qZWN0YWJsZSh7XG4gIHByb3ZpZGVkSW46ICdyb290Jyxcbn0pXG5leHBvcnQgY2xhc3MgVW5pdmVyc2FsU2tpbGxzU2VydmljZSB7XG4gIHJlYWRvbmx5IHRyYW5zbGF0aW9uQ29udGV4dCA9ICdVTklWRVJTQUxfU0tJTExTX1JFUE9SVC4nO1xuXG4gIHByaXZhdGUgc2tpbGxBcmVhR3JvdXBNYXA6IFJlY29yZDxTa2lsbEFyZWFHcm91cFR5cGVzLCBTa2lsbEFyZWFHcm91cD47XG5cbiAgaW5pdGlhbGl6ZVNraWxsQXJlYUdyb3VwTWFwKCk6IHZvaWQge1xuICAgIHRoaXMuc2tpbGxBcmVhR3JvdXBNYXAgPSB7XG4gICAgICBbU2tpbGxBcmVhR3JvdXBUeXBlcy5Gb2N1c2luZ09uT2JqZWN0aXZlc106IHtcbiAgICAgICAgdGl0bGU6IGAke3RoaXMudHJhbnNsYXRpb25Db250ZXh0fVNLSUxMX0FSRUFfR1JPVVBfVFlQRVMuRk9DVVNJTkdfT05fT0JKRUNUSVZFUy5USVRMRWAsXG4gICAgICAgIGRlc2NyaXB0aW9uOiBgJHt0aGlzLnRyYW5zbGF0aW9uQ29udGV4dH1TS0lMTF9BUkVBX0dST1VQX1RZUEVTLkZPQ1VTSU5HX09OX09CSkVDVElWRVMuREVTQ1JJUFRJT05gLFxuICAgICAgICBza2lsbEFyZWFMaXN0OiBbXSxcbiAgICAgIH0sXG4gICAgICBbU2tpbGxBcmVhR3JvdXBUeXBlcy5Xb3JraW5nV2l0aFBlb3BsZV06IHtcbiAgICAgICAgdGl0bGU6IGAke3RoaXMudHJhbnNsYXRpb25Db250ZXh0fVNLSUxMX0FSRUFfR1JPVVBfVFlQRVMuV09SS0lOR19XSVRIX1BFT1BMRS5USVRMRWAsXG4gICAgICAgIGRlc2NyaXB0aW9uOiBgJHt0aGlzLnRyYW5zbGF0aW9uQ29udGV4dH1TS0lMTF9BUkVBX0dST1VQX1RZUEVTLldPUktJTkdfV0lUSF9QRU9QTEUuREVTQ1JJUFRJT05gLFxuICAgICAgICBza2lsbEFyZWFMaXN0OiBbXSxcbiAgICAgIH0sXG4gICAgICBbU2tpbGxBcmVhR3JvdXBUeXBlcy5NYW5hZ2luZ09uZXNTZWxmXToge1xuICAgICAgICB0aXRsZTogYCR7dGhpcy50cmFuc2xhdGlvbkNvbnRleHR9U0tJTExfQVJFQV9HUk9VUF9UWVBFUy5NQU5BR0lOR19PTkVTX1NFTEYuVElUTEVgLFxuICAgICAgICBkZXNjcmlwdGlvbjogYCR7dGhpcy50cmFuc2xhdGlvbkNvbnRleHR9U0tJTExfQVJFQV9HUk9VUF9UWVBFUy5NQU5BR0lOR19PTkVTX1NFTEYuREVTQ1JJUFRJT05gLFxuICAgICAgICBza2lsbEFyZWFMaXN0OiBbXSxcbiAgICAgIH0sXG4gICAgfTtcbiAgfVxuXG4gIHByZXBhcmVTa2lsbEFyZWFHcm91cE1hcChza2lsbEFyZWFEYXRhTGlzdDogU2tpbGxBcmVhRGF0YVtdKTogdm9pZCB7XG4gICAgc2tpbGxBcmVhRGF0YUxpc3Q/LmZvckVhY2goY3VycmVudEl0ZW0gPT4ge1xuICAgICAgY29uc3QgZm9ybWF0dGVkU2tpbGxBcmVhVHlwZSA9IGN1cnJlbnRJdGVtLnNraWxsQXJlYU5hbWU7XG5cbiAgICAgIGlmIChcbiAgICAgICAgZm9ybWF0dGVkU2tpbGxBcmVhVHlwZSA9PT0gU2tpbGxBcmVhVHlwZXMuQnVzaW5lc3NTYXZ2eSB8fFxuICAgICAgICBmb3JtYXR0ZWRTa2lsbEFyZWFUeXBlID09PSBTa2lsbEFyZWFUeXBlcy5TdHJhdGVnaWNQZXJzcGVjdGl2ZSB8fFxuICAgICAgICBmb3JtYXR0ZWRTa2lsbEFyZWFUeXBlID09PSBTa2lsbEFyZWFUeXBlcy5DdXN0b21lckZvY3VzIHx8XG4gICAgICAgIGZvcm1hdHRlZFNraWxsQXJlYVR5cGUgPT09IFNraWxsQXJlYVR5cGVzLk5hdmlnYXRpbmdDb21wbGV4aXR5IHx8XG4gICAgICAgIGZvcm1hdHRlZFNraWxsQXJlYVR5cGUgPT09IFNraWxsQXJlYVR5cGVzLkFnaWxlRGVjaXNpb25NYWtpbmcgfHxcbiAgICAgICAgZm9ybWF0dGVkU2tpbGxBcmVhVHlwZSA9PT0gU2tpbGxBcmVhVHlwZXMuRW1icmFjaW5nSW5ub3ZhdGlvbiB8fFxuICAgICAgICBmb3JtYXR0ZWRTa2lsbEFyZWFUeXBlID09PSBTa2lsbEFyZWFUeXBlcy5QbGFubmluZ0FuZFByaW9yaXRpemluZyB8fFxuICAgICAgICBmb3JtYXR0ZWRTa2lsbEFyZWFUeXBlID09PSBTa2lsbEFyZWFUeXBlcy5Pcmdhbml6aW5nUmVzb3VyY2VzIHx8XG4gICAgICAgIGZvcm1hdHRlZFNraWxsQXJlYVR5cGUgPT09IFNraWxsQXJlYVR5cGVzLkRyaXZpbmdSZXN1bHRzXG4gICAgICApIHtcbiAgICAgICAgdGhpcy5za2lsbEFyZWFHcm91cE1hcFtTa2lsbEFyZWFHcm91cFR5cGVzLkZvY3VzaW5nT25PYmplY3RpdmVzXT8uc2tpbGxBcmVhTGlzdD8ucHVzaChjdXJyZW50SXRlbSk7XG4gICAgICB9XG5cbiAgICAgIGlmIChcbiAgICAgICAgZm9ybWF0dGVkU2tpbGxBcmVhVHlwZSA9PT0gU2tpbGxBcmVhVHlwZXMuV29ya2luZ0NvbGxhYm9yYXRpdmVseSB8fFxuICAgICAgICBmb3JtYXR0ZWRTa2lsbEFyZWFUeXBlID09PSBTa2lsbEFyZWFUeXBlcy5Tb2NpYWxBZ2lsaXR5IHx8XG4gICAgICAgIGZvcm1hdHRlZFNraWxsQXJlYVR5cGUgPT09IFNraWxsQXJlYVR5cGVzLkNvbW11bmljYXRpbmdFZmZlY3RpdmVseSB8fFxuICAgICAgICBmb3JtYXR0ZWRTa2lsbEFyZWFUeXBlID09PSBTa2lsbEFyZWFUeXBlcy5IYW5kbGluZ0NvbmZsaWN0IHx8XG4gICAgICAgIGZvcm1hdHRlZFNraWxsQXJlYVR5cGUgPT09IFNraWxsQXJlYVR5cGVzLlZhbHVpbmdEaXZlcnNpdHkgfHxcbiAgICAgICAgZm9ybWF0dGVkU2tpbGxBcmVhVHlwZSA9PT0gU2tpbGxBcmVhVHlwZXMuRGV2ZWxvcGluZ090aGVyc1xuICAgICAgKSB7XG4gICAgICAgIHRoaXMuc2tpbGxBcmVhR3JvdXBNYXBbU2tpbGxBcmVhR3JvdXBUeXBlcy5Xb3JraW5nV2l0aFBlb3BsZV0/LnNraWxsQXJlYUxpc3Q/LnB1c2goY3VycmVudEl0ZW0pO1xuICAgICAgfVxuXG4gICAgICBpZiAoXG4gICAgICAgIGZvcm1hdHRlZFNraWxsQXJlYVR5cGUgPT09IFNraWxsQXJlYVR5cGVzLlNob3dpbmdSZXNpbGllbmNlIHx8XG4gICAgICAgIGZvcm1hdHRlZFNraWxsQXJlYVR5cGUgPT09IFNraWxsQXJlYVR5cGVzLk5hdmlnYXRpbmdBbWJpZ3VpdHkgfHxcbiAgICAgICAgZm9ybWF0dGVkU2tpbGxBcmVhVHlwZSA9PT0gU2tpbGxBcmVhVHlwZXMuU2VsZkF3YXJlbmVzcyB8fFxuICAgICAgICBmb3JtYXR0ZWRTa2lsbEFyZWFUeXBlID09PSBTa2lsbEFyZWFUeXBlcy5TZWxmRGV2ZWxvcG1lbnQgfHxcbiAgICAgICAgZm9ybWF0dGVkU2tpbGxBcmVhVHlwZSA9PT0gU2tpbGxBcmVhVHlwZXMuRWFybmluZ1RydXN0IHx8XG4gICAgICAgIGZvcm1hdHRlZFNraWxsQXJlYVR5cGUgPT09IFNraWxsQXJlYVR5cGVzLkJlaW5nQm9sZFxuICAgICAgKSB7XG4gICAgICAgIHRoaXMuc2tpbGxBcmVhR3JvdXBNYXBbU2tpbGxBcmVhR3JvdXBUeXBlcy5NYW5hZ2luZ09uZXNTZWxmXT8uc2tpbGxBcmVhTGlzdD8ucHVzaChjdXJyZW50SXRlbSk7XG4gICAgICB9XG4gICAgfSk7XG4gIH1cblxuICBnZXRTa2lsbEFyZWFHcm91cE1hcCgpOiBSZWNvcmQ8U2tpbGxBcmVhR3JvdXBUeXBlcywgU2tpbGxBcmVhR3JvdXA+IHtcbiAgICByZXR1cm4gdGhpcy5za2lsbEFyZWFHcm91cE1hcDtcbiAgfVxufVxuIl19
85
+ //# sourceMappingURL=data:application/json;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoidW5pdmVyc2FsLXNraWxscy5zZXJ2aWNlLmpzIiwic291cmNlUm9vdCI6IiIsInNvdXJjZXMiOlsiLi4vLi4vLi4vLi4vcHJvamVjdHMvdGdvLWNhbm9weS11aS9zZXJ2aWNlcy91bml2ZXJzYWwtc2tpbGxzLnNlcnZpY2UudHMiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IkFBQUEsT0FBTyxFQUFFLFVBQVUsRUFBRSxNQUFNLGVBQWUsQ0FBQztBQUMzQyxPQUFPLEVBR0wsbUJBQW1CLEVBQ25CLGNBQWMsR0FDZixNQUFNLHlDQUF5QyxDQUFDOztBQUtqRCxNQUFNLE9BQU8sc0JBQXNCO0lBSG5DO1FBSVcsdUJBQWtCLEdBQUcsMEJBQTBCLENBQUM7UUFHakQsNEJBQXVCLEdBQXVCO1lBQ3BEO2dCQUNFLGNBQWMsQ0FBQyxhQUFhO2dCQUM1QixjQUFjLENBQUMsb0JBQW9CO2dCQUNuQyxjQUFjLENBQUMsYUFBYTtnQkFDNUIsY0FBYyxDQUFDLG9CQUFvQjtnQkFDbkMsY0FBYyxDQUFDLG1CQUFtQjtnQkFDbEMsY0FBYyxDQUFDLG1CQUFtQjtnQkFDbEMsY0FBYyxDQUFDLHVCQUF1QjtnQkFDdEMsY0FBYyxDQUFDLG1CQUFtQjtnQkFDbEMsY0FBYyxDQUFDLGNBQWM7YUFDOUI7WUFDRDtnQkFDRSxjQUFjLENBQUMsc0JBQXNCO2dCQUNyQyxjQUFjLENBQUMsYUFBYTtnQkFDNUIsY0FBYyxDQUFDLHdCQUF3QjtnQkFDdkMsY0FBYyxDQUFDLGdCQUFnQjtnQkFDL0IsY0FBYyxDQUFDLGdCQUFnQjtnQkFDL0IsY0FBYyxDQUFDLGdCQUFnQjthQUNoQztZQUNEO2dCQUNFLGNBQWMsQ0FBQyxpQkFBaUI7Z0JBQ2hDLGNBQWMsQ0FBQyxtQkFBbUI7Z0JBQ2xDLGNBQWMsQ0FBQyxhQUFhO2dCQUM1QixjQUFjLENBQUMsZUFBZTtnQkFDOUIsY0FBYyxDQUFDLFlBQVk7Z0JBQzNCLGNBQWMsQ0FBQyxTQUFTO2FBQ3pCO1NBQ0YsQ0FBQztLQStDSDtJQTdDQywyQkFBMkI7UUFDekIsSUFBSSxDQUFDLGlCQUFpQixHQUFHO1lBQ3ZCLENBQUMsbUJBQW1CLENBQUMsb0JBQW9CLENBQUMsRUFBRTtnQkFDMUMsS0FBSyxFQUFFLEdBQUcsSUFBSSxDQUFDLGtCQUFrQixxREFBcUQ7Z0JBQ3RGLFdBQVcsRUFBRSxHQUFHLElBQUksQ0FBQyxrQkFBa0IsMkRBQTJEO2dCQUNsRyxhQUFhLEVBQUUsRUFBRTthQUNsQjtZQUNELENBQUMsbUJBQW1CLENBQUMsaUJBQWlCLENBQUMsRUFBRTtnQkFDdkMsS0FBSyxFQUFFLEdBQUcsSUFBSSxDQUFDLGtCQUFrQixrREFBa0Q7Z0JBQ25GLFdBQVcsRUFBRSxHQUFHLElBQUksQ0FBQyxrQkFBa0Isd0RBQXdEO2dCQUMvRixhQUFhLEVBQUUsRUFBRTthQUNsQjtZQUNELENBQUMsbUJBQW1CLENBQUMsZ0JBQWdCLENBQUMsRUFBRTtnQkFDdEMsS0FBSyxFQUFFLEdBQUcsSUFBSSxDQUFDLGtCQUFrQixpREFBaUQ7Z0JBQ2xGLFdBQVcsRUFBRSxHQUFHLElBQUksQ0FBQyxrQkFBa0IsdURBQXVEO2dCQUM5RixhQUFhLEVBQUUsRUFBRTthQUNsQjtTQUNGLENBQUM7SUFDSixDQUFDO0lBRUQsd0JBQXdCLENBQUMsaUJBQWtDO1FBQ3pELGlCQUFpQixFQUFFLE9BQU8sQ0FBQyxXQUFXLENBQUMsRUFBRTtZQUN2QyxNQUFNLHNCQUFzQixHQUFHLFdBQVcsQ0FBQyxhQUFhLENBQUM7WUFFekQsSUFBSSxJQUFJLENBQUMsdUJBQXVCLENBQUMsQ0FBQyxDQUFDLENBQUMsUUFBUSxDQUFDLHNCQUFzQixDQUFDLEVBQUUsQ0FBQztnQkFDckUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLG1CQUFtQixDQUFDLG9CQUFvQixDQUFDLEVBQUUsYUFBYSxFQUFFLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQztZQUNyRyxDQUFDO1lBRUQsSUFBSSxJQUFJLENBQUMsdUJBQXVCLENBQUMsQ0FBQyxDQUFDLENBQUMsUUFBUSxDQUFDLHNCQUFzQixDQUFDLEVBQUUsQ0FBQztnQkFDckUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLG1CQUFtQixDQUFDLGlCQUFpQixDQUFDLEVBQUUsYUFBYSxFQUFFLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQztZQUNsRyxDQUFDO1lBRUQsSUFBSSxJQUFJLENBQUMsdUJBQXVCLENBQUMsQ0FBQyxDQUFDLENBQUMsUUFBUSxDQUFDLHNCQUFzQixDQUFDLEVBQUUsQ0FBQztnQkFDckUsSUFBSSxDQUFDLGlCQUFpQixDQUFDLG1CQUFtQixDQUFDLGdCQUFnQixDQUFDLEVBQUUsYUFBYSxFQUFFLElBQUksQ0FBQyxXQUFXLENBQUMsQ0FBQztZQUNqRyxDQUFDO1FBQ0gsQ0FBQyxDQUFDLENBQUM7SUFDTCxDQUFDO0lBRUQsb0JBQW9CO1FBQ2xCLE9BQU8sSUFBSSxDQUFDLGlCQUFpQixDQUFDO0lBQ2hDLENBQUM7SUFFRCwwQkFBMEI7UUFDeEIsT0FBTyxJQUFJLENBQUMsdUJBQXVCLENBQUM7SUFDdEMsQ0FBQzsrR0E5RVUsc0JBQXNCO21IQUF0QixzQkFBc0IsY0FGckIsTUFBTTs7NEZBRVAsc0JBQXNCO2tCQUhsQyxVQUFVO21CQUFDO29CQUNWLFVBQVUsRUFBRSxNQUFNO2lCQUNuQiIsInNvdXJjZXNDb250ZW50IjpbImltcG9ydCB7IEluamVjdGFibGUgfSBmcm9tICdAYW5ndWxhci9jb3JlJztcbmltcG9ydCB7XG4gIFNraWxsQXJlYURhdGEsXG4gIFNraWxsQXJlYUdyb3VwLFxuICBTa2lsbEFyZWFHcm91cFR5cGVzLFxuICBTa2lsbEFyZWFUeXBlcyxcbn0gZnJvbSAnLi4vbW9kZWxzL3VuaXZlcnNhbC1za2lsbHMtcmVwb3J0Lm1vZGVsJztcblxuQEluamVjdGFibGUoe1xuICBwcm92aWRlZEluOiAncm9vdCcsXG59KVxuZXhwb3J0IGNsYXNzIFVuaXZlcnNhbFNraWxsc1NlcnZpY2Uge1xuICByZWFkb25seSB0cmFuc2xhdGlvbkNvbnRleHQgPSAnVU5JVkVSU0FMX1NLSUxMU19SRVBPUlQuJztcblxuICBwcml2YXRlIHNraWxsQXJlYUdyb3VwTWFwOiBSZWNvcmQ8U2tpbGxBcmVhR3JvdXBUeXBlcywgU2tpbGxBcmVhR3JvdXA+O1xuICBwcml2YXRlIHN0YXRpY1NraWxsQXJlYUdyb3VwTWFwOiBTa2lsbEFyZWFUeXBlc1tdW10gPSBbXG4gICAgW1xuICAgICAgU2tpbGxBcmVhVHlwZXMuQnVzaW5lc3NTYXZ2eSxcbiAgICAgIFNraWxsQXJlYVR5cGVzLlN0cmF0ZWdpY1BlcnNwZWN0aXZlLFxuICAgICAgU2tpbGxBcmVhVHlwZXMuQ3VzdG9tZXJGb2N1cyxcbiAgICAgIFNraWxsQXJlYVR5cGVzLk5hdmlnYXRpbmdDb21wbGV4aXR5LFxuICAgICAgU2tpbGxBcmVhVHlwZXMuQWdpbGVEZWNpc2lvbk1ha2luZyxcbiAgICAgIFNraWxsQXJlYVR5cGVzLkVtYnJhY2luZ0lubm92YXRpb24sXG4gICAgICBTa2lsbEFyZWFUeXBlcy5QbGFubmluZ0FuZFByaW9yaXRpemluZyxcbiAgICAgIFNraWxsQXJlYVR5cGVzLk9yZ2FuaXppbmdSZXNvdXJjZXMsXG4gICAgICBTa2lsbEFyZWFUeXBlcy5Ecml2aW5nUmVzdWx0cyxcbiAgICBdLFxuICAgIFtcbiAgICAgIFNraWxsQXJlYVR5cGVzLldvcmtpbmdDb2xsYWJvcmF0aXZlbHksXG4gICAgICBTa2lsbEFyZWFUeXBlcy5Tb2NpYWxBZ2lsaXR5LFxuICAgICAgU2tpbGxBcmVhVHlwZXMuQ29tbXVuaWNhdGluZ0VmZmVjdGl2ZWx5LFxuICAgICAgU2tpbGxBcmVhVHlwZXMuSGFuZGxpbmdDb25mbGljdCxcbiAgICAgIFNraWxsQXJlYVR5cGVzLlZhbHVpbmdEaXZlcnNpdHksXG4gICAgICBTa2lsbEFyZWFUeXBlcy5EZXZlbG9waW5nT3RoZXJzLFxuICAgIF0sXG4gICAgW1xuICAgICAgU2tpbGxBcmVhVHlwZXMuU2hvd2luZ1Jlc2lsaWVuY2UsXG4gICAgICBTa2lsbEFyZWFUeXBlcy5OYXZpZ2F0aW5nQW1iaWd1aXR5LFxuICAgICAgU2tpbGxBcmVhVHlwZXMuU2VsZkF3YXJlbmVzcyxcbiAgICAgIFNraWxsQXJlYVR5cGVzLlNlbGZEZXZlbG9wbWVudCxcbiAgICAgIFNraWxsQXJlYVR5cGVzLkVhcm5pbmdUcnVzdCxcbiAgICAgIFNraWxsQXJlYVR5cGVzLkJlaW5nQm9sZCxcbiAgICBdLFxuICBdO1xuXG4gIGluaXRpYWxpemVTa2lsbEFyZWFHcm91cE1hcCgpOiB2b2lkIHtcbiAgICB0aGlzLnNraWxsQXJlYUdyb3VwTWFwID0ge1xuICAgICAgW1NraWxsQXJlYUdyb3VwVHlwZXMuRm9jdXNpbmdPbk9iamVjdGl2ZXNdOiB7XG4gICAgICAgIHRpdGxlOiBgJHt0aGlzLnRyYW5zbGF0aW9uQ29udGV4dH1TS0lMTF9BUkVBX0dST1VQX1RZUEVTLkZPQ1VTSU5HX09OX09CSkVDVElWRVMuVElUTEVgLFxuICAgICAgICBkZXNjcmlwdGlvbjogYCR7dGhpcy50cmFuc2xhdGlvbkNvbnRleHR9U0tJTExfQVJFQV9HUk9VUF9UWVBFUy5GT0NVU0lOR19PTl9PQkpFQ1RJVkVTLkRFU0NSSVBUSU9OYCxcbiAgICAgICAgc2tpbGxBcmVhTGlzdDogW10sXG4gICAgICB9LFxuICAgICAgW1NraWxsQXJlYUdyb3VwVHlwZXMuV29ya2luZ1dpdGhQZW9wbGVdOiB7XG4gICAgICAgIHRpdGxlOiBgJHt0aGlzLnRyYW5zbGF0aW9uQ29udGV4dH1TS0lMTF9BUkVBX0dST1VQX1RZUEVTLldPUktJTkdfV0lUSF9QRU9QTEUuVElUTEVgLFxuICAgICAgICBkZXNjcmlwdGlvbjogYCR7dGhpcy50cmFuc2xhdGlvbkNvbnRleHR9U0tJTExfQVJFQV9HUk9VUF9UWVBFUy5XT1JLSU5HX1dJVEhfUEVPUExFLkRFU0NSSVBUSU9OYCxcbiAgICAgICAgc2tpbGxBcmVhTGlzdDogW10sXG4gICAgICB9LFxuICAgICAgW1NraWxsQXJlYUdyb3VwVHlwZXMuTWFuYWdpbmdPbmVzU2VsZl06IHtcbiAgICAgICAgdGl0bGU6IGAke3RoaXMudHJhbnNsYXRpb25Db250ZXh0fVNLSUxMX0FSRUFfR1JPVVBfVFlQRVMuTUFOQUdJTkdfT05FU19TRUxGLlRJVExFYCxcbiAgICAgICAgZGVzY3JpcHRpb246IGAke3RoaXMudHJhbnNsYXRpb25Db250ZXh0fVNLSUxMX0FSRUFfR1JPVVBfVFlQRVMuTUFOQUdJTkdfT05FU19TRUxGLkRFU0NSSVBUSU9OYCxcbiAgICAgICAgc2tpbGxBcmVhTGlzdDogW10sXG4gICAgICB9LFxuICAgIH07XG4gIH1cblxuICBwcmVwYXJlU2tpbGxBcmVhR3JvdXBNYXAoc2tpbGxBcmVhRGF0YUxpc3Q6IFNraWxsQXJlYURhdGFbXSk6IHZvaWQge1xuICAgIHNraWxsQXJlYURhdGFMaXN0Py5mb3JFYWNoKGN1cnJlbnRJdGVtID0+IHtcbiAgICAgIGNvbnN0IGZvcm1hdHRlZFNraWxsQXJlYVR5cGUgPSBjdXJyZW50SXRlbS5za2lsbEFyZWFOYW1lO1xuXG4gICAgICBpZiAodGhpcy5zdGF0aWNTa2lsbEFyZWFHcm91cE1hcFswXS5pbmNsdWRlcyhmb3JtYXR0ZWRTa2lsbEFyZWFUeXBlKSkge1xuICAgICAgICB0aGlzLnNraWxsQXJlYUdyb3VwTWFwW1NraWxsQXJlYUdyb3VwVHlwZXMuRm9jdXNpbmdPbk9iamVjdGl2ZXNdPy5za2lsbEFyZWFMaXN0Py5wdXNoKGN1cnJlbnRJdGVtKTtcbiAgICAgIH1cblxuICAgICAgaWYgKHRoaXMuc3RhdGljU2tpbGxBcmVhR3JvdXBNYXBbMV0uaW5jbHVkZXMoZm9ybWF0dGVkU2tpbGxBcmVhVHlwZSkpIHtcbiAgICAgICAgdGhpcy5za2lsbEFyZWFHcm91cE1hcFtTa2lsbEFyZWFHcm91cFR5cGVzLldvcmtpbmdXaXRoUGVvcGxlXT8uc2tpbGxBcmVhTGlzdD8ucHVzaChjdXJyZW50SXRlbSk7XG4gICAgICB9XG5cbiAgICAgIGlmICh0aGlzLnN0YXRpY1NraWxsQXJlYUdyb3VwTWFwWzJdLmluY2x1ZGVzKGZvcm1hdHRlZFNraWxsQXJlYVR5cGUpKSB7XG4gICAgICAgIHRoaXMuc2tpbGxBcmVhR3JvdXBNYXBbU2tpbGxBcmVhR3JvdXBUeXBlcy5NYW5hZ2luZ09uZXNTZWxmXT8uc2tpbGxBcmVhTGlzdD8ucHVzaChjdXJyZW50SXRlbSk7XG4gICAgICB9XG4gICAgfSk7XG4gIH1cblxuICBnZXRTa2lsbEFyZWFHcm91cE1hcCgpOiBSZWNvcmQ8U2tpbGxBcmVhR3JvdXBUeXBlcywgU2tpbGxBcmVhR3JvdXA+IHtcbiAgICByZXR1cm4gdGhpcy5za2lsbEFyZWFHcm91cE1hcDtcbiAgfVxuXG4gIGdldFN0YXRpY1NraWxsQXJlYUdyb3VwTWFwKCk6IFNraWxsQXJlYVR5cGVzW11bXSB7XG4gICAgcmV0dXJuIHRoaXMuc3RhdGljU2tpbGxBcmVhR3JvdXBNYXA7XG4gIH1cbn1cbiJdfQ==
@@ -157,6 +157,35 @@ var SkillAreaTypes;
157
157
  class UniversalSkillsService {
158
158
  constructor() {
159
159
  this.translationContext = 'UNIVERSAL_SKILLS_REPORT.';
160
+ this.staticSkillAreaGroupMap = [
161
+ [
162
+ SkillAreaTypes.BusinessSavvy,
163
+ SkillAreaTypes.StrategicPerspective,
164
+ SkillAreaTypes.CustomerFocus,
165
+ SkillAreaTypes.NavigatingComplexity,
166
+ SkillAreaTypes.AgileDecisionMaking,
167
+ SkillAreaTypes.EmbracingInnovation,
168
+ SkillAreaTypes.PlanningAndPrioritizing,
169
+ SkillAreaTypes.OrganizingResources,
170
+ SkillAreaTypes.DrivingResults,
171
+ ],
172
+ [
173
+ SkillAreaTypes.WorkingCollaboratively,
174
+ SkillAreaTypes.SocialAgility,
175
+ SkillAreaTypes.CommunicatingEffectively,
176
+ SkillAreaTypes.HandlingConflict,
177
+ SkillAreaTypes.ValuingDiversity,
178
+ SkillAreaTypes.DevelopingOthers,
179
+ ],
180
+ [
181
+ SkillAreaTypes.ShowingResilience,
182
+ SkillAreaTypes.NavigatingAmbiguity,
183
+ SkillAreaTypes.SelfAwareness,
184
+ SkillAreaTypes.SelfDevelopment,
185
+ SkillAreaTypes.EarningTrust,
186
+ SkillAreaTypes.BeingBold,
187
+ ],
188
+ ];
160
189
  }
161
190
  initializeSkillAreaGroupMap() {
162
191
  this.skillAreaGroupMap = {
@@ -180,31 +209,13 @@ class UniversalSkillsService {
180
209
  prepareSkillAreaGroupMap(skillAreaDataList) {
181
210
  skillAreaDataList?.forEach(currentItem => {
182
211
  const formattedSkillAreaType = currentItem.skillAreaName;
183
- if (formattedSkillAreaType === SkillAreaTypes.BusinessSavvy ||
184
- formattedSkillAreaType === SkillAreaTypes.StrategicPerspective ||
185
- formattedSkillAreaType === SkillAreaTypes.CustomerFocus ||
186
- formattedSkillAreaType === SkillAreaTypes.NavigatingComplexity ||
187
- formattedSkillAreaType === SkillAreaTypes.AgileDecisionMaking ||
188
- formattedSkillAreaType === SkillAreaTypes.EmbracingInnovation ||
189
- formattedSkillAreaType === SkillAreaTypes.PlanningAndPrioritizing ||
190
- formattedSkillAreaType === SkillAreaTypes.OrganizingResources ||
191
- formattedSkillAreaType === SkillAreaTypes.DrivingResults) {
212
+ if (this.staticSkillAreaGroupMap[0].includes(formattedSkillAreaType)) {
192
213
  this.skillAreaGroupMap[SkillAreaGroupTypes.FocusingOnObjectives]?.skillAreaList?.push(currentItem);
193
214
  }
194
- if (formattedSkillAreaType === SkillAreaTypes.WorkingCollaboratively ||
195
- formattedSkillAreaType === SkillAreaTypes.SocialAgility ||
196
- formattedSkillAreaType === SkillAreaTypes.CommunicatingEffectively ||
197
- formattedSkillAreaType === SkillAreaTypes.HandlingConflict ||
198
- formattedSkillAreaType === SkillAreaTypes.ValuingDiversity ||
199
- formattedSkillAreaType === SkillAreaTypes.DevelopingOthers) {
215
+ if (this.staticSkillAreaGroupMap[1].includes(formattedSkillAreaType)) {
200
216
  this.skillAreaGroupMap[SkillAreaGroupTypes.WorkingWithPeople]?.skillAreaList?.push(currentItem);
201
217
  }
202
- if (formattedSkillAreaType === SkillAreaTypes.ShowingResilience ||
203
- formattedSkillAreaType === SkillAreaTypes.NavigatingAmbiguity ||
204
- formattedSkillAreaType === SkillAreaTypes.SelfAwareness ||
205
- formattedSkillAreaType === SkillAreaTypes.SelfDevelopment ||
206
- formattedSkillAreaType === SkillAreaTypes.EarningTrust ||
207
- formattedSkillAreaType === SkillAreaTypes.BeingBold) {
218
+ if (this.staticSkillAreaGroupMap[2].includes(formattedSkillAreaType)) {
208
219
  this.skillAreaGroupMap[SkillAreaGroupTypes.ManagingOnesSelf]?.skillAreaList?.push(currentItem);
209
220
  }
210
221
  });
@@ -212,6 +223,9 @@ class UniversalSkillsService {
212
223
  getSkillAreaGroupMap() {
213
224
  return this.skillAreaGroupMap;
214
225
  }
226
+ getStaticSkillAreaGroupMap() {
227
+ return this.staticSkillAreaGroupMap;
228
+ }
215
229
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: UniversalSkillsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable }); }
216
230
  static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: UniversalSkillsService, providedIn: 'root' }); }
217
231
  }
@@ -15096,7 +15110,7 @@ class PhoneInputComponent {
15096
15110
  provide: MAT_AUTOCOMPLETE_DEFAULT_OPTIONS,
15097
15111
  useValue: { overlayPanelClass: 'phone-number-autocomplete' },
15098
15112
  },
15099
- ], viewQueries: [{ propertyName: "input", first: true, predicate: MatInput, descendants: true, read: ElementRef, static: true }, { propertyName: "select", first: true, predicate: MatSelect, descendants: true, read: ElementRef, static: true }], ngImport: i0, template: "<mat-form-field\n [formGroup]=\"form\"\n appearance=\"outline\"\n [color]=\"(errorsLength || (ngControl?.errors && ngControl?.touched )) ? 'warn' : 'accent'\"\n [ngClass]=\"{ disabled: form.disabled || disabled, 'full-width': fullWidth }\"\n>\n <mat-label>{{ 'COMMON.PHONE_NUMBER' | uiTranslate | async }} <span *ngIf=\"required\">*</span></mat-label>\n\n <div matPrefix class=\"country\">\n <button class=\"selected-flag\" matPrefix *ngIf=\"selectedCountry\">\n <img [height]=\"20\" [width]=\"24\" [attr.src]=\"countryFlagSrc + selectedCountry?.alpha2Code?.toLowerCase() + '.svg'\"\n [alt]=\"'Country flag ' + selectedCountry?.alpha2Code?.toLowerCase()\">\n </button>\n <mat-select\n #select\n (selectionChange)=\"onOptionsSelected($event.value)\"\n [value]=\"selectedCountry\"\n [disableOptionCentering]=\"true\"\n [panelClass]=\"'phone-number-select' + ' ' + applicationTheme\"\n [ngClass]=\"{ opened: select.panelOpen }\"\n >\n <mat-select-trigger>{{ selectedCountry?.callingCode }}</mat-select-trigger>\n <mat-option>\n <ngx-mat-select-search\n [formControl]=\"selectFilterCtrl\"\n ngDefaultControl\n placeholderLabel=\"\"\n noEntriesFoundLabel=\"\"\n >\n <ui-icon ngxMatSelectSearchClear size=\"24\" [name]=\"'Close-in-line'\"></ui-icon>\n </ngx-mat-select-search>\n </mat-option>\n <mat-option *ngFor=\"let country of countries$ | async; trackBy: filteredCountryTrackByMethod\" [value]=\"country\">\n <div class=\"country-option\">\n <img [height]=\"20\" [width]=\"24\" [attr.src]=\"countryFlagSrc + country?.alpha2Code?.toLowerCase()! + '.svg'\"\n [alt]=\"'Country flag ' + country?.alpha2Code?.toLowerCase()!\">\n <small>{{ $any([country?.name, '(' + country?.callingCode + ')']) | joinStrings : ' ' }}</small>\n </div>\n </mat-option>\n </mat-select>\n </div>\n\n <input\n (input)=\"onInput(form.get('phone_number')!.value)\"\n formControlName=\"phone_number\"\n (click)=\"disableClick($event)\"\n [ngStyle]=\"{ opacity: disabled ? 0.5 : 1 }\"\n [required]=\"required\"\n matInput\n type=\"text\"\n />\n\n <mat-hint class=\"error\" *ngIf=\"errorsLength || (ngControl?.errors | hasValidationError)\">\n <ng-container *ngIf=\"errorsLength\">\n <div class=\"errors\" *ngFor=\"let error of _errors; trackBy: trackByFn\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span [innerHTML]=\"error\"></span>\n </div>\n </ng-container>\n\n <ui-validation-error *ngIf=\"ngControl && !hideBuiltInErrors\" [ngControl]=\"ngControl\" [label]=\"hideLabelInErrors ? null : ('COMMON.PHONE_NUMBER' | uiTranslate | async)\"></ui-validation-error>\n\n </mat-hint>\n</mat-form-field>\n", styles: [".bg-teal-60b{background:#1c443c}.bg-teal-30b{background:#31766a}.bg-teal-default{background:#46a997}.bg-teal-30w{background:#7ec3b6}.bg-teal-60w{background:#b5ddd5}.bg-teal-secondary{background:#cbd6cb}.bg-teal-90w{background:#ecf6f5}.bg-petrol-60b{background:#102930}.bg-petrol-30b{background:#1b4754}.bg-petrol-default{background:#276678}.bg-petrol-30w{background:#6894a0}.bg-petrol-60w{background:#a9c2c9}.bg-petrol-secondary{background:#c8d7de}.bg-petrol-90w{background:#e9f0f1}.bg-error-60b{background:#513131}.bg-error-30b{background:#8e5655}.bg-error-60w{background:#e3c3c6}.bg-error-secondary{background:#f0dad9}.bg-error-default{background:#cb7b7a}.bg-warning-secondary{background:#f0d6bb}.bg-warning-default{background:#cca45f}.bg-black{background:#000}.bg-dark{background:#888}.bg-medium{background:#e0e0e0}.bg-grey{background:#ededed}.bg-light{background:#f6f6f6}.bg-white{background:#fff}.bg-box-shadow{background:#00000014}.bg-navigation-subtitle{background:#528593}.bgc-teal-60b{background-color:#1c443c}.bgc-teal-30b{background-color:#31766a}.bgc-teal-default{background-color:#46a997}.bgc-teal-30w{background-color:#7ec3b6}.bgc-teal-60w{background-color:#b5ddd5}.bgc-teal-secondary{background-color:#cbd6cb}.bgc-teal-90w{background-color:#ecf6f5}.bgc-petrol-60b{background-color:#102930}.bgc-petrol-30b{background-color:#1b4754}.bgc-petrol-default{background-color:#276678}.bgc-petrol-30w{background-color:#6894a0}.bgc-petrol-60w{background-color:#a9c2c9}.bgc-petrol-secondary{background-color:#c8d7de}.bgc-petrol-90w{background-color:#e9f0f1}.bgc-error-60b{background-color:#513131}.bgc-error-30b{background-color:#8e5655}.bgc-error-60w{background-color:#e3c3c6}.bgc-error-secondary{background-color:#f0dad9}.bgc-error-default{background-color:#cb7b7a}.bgc-warning-secondary{background-color:#f0d6bb}.bgc-warning-default{background-color:#cca45f}.bgc-black{background-color:#000}.bgc-dark{background-color:#888}.bgc-medium{background-color:#e0e0e0}.bgc-grey{background-color:#ededed}.bgc-light{background-color:#f6f6f6}.bgc-white{background-color:#fff}.bgc-box-shadow{background-color:#00000014}.bgc-navigation-subtitle{background-color:#528593}:host{display:flex;align-items:center}:host .selected-flag{display:flex;position:relative;margin-right:1rem;align-items:center}:host mat-spinner{padding:0 20px}:host .country{cursor:pointer!important;display:flex;align-items:center;margin:-8px 12px 0 16px}:host .country button{margin:0 8px 0 0;background:transparent;border:unset;padding:0}:host ::ng-deep .mat-mdc-select-trigger{display:flex;gap:8px}:host mat-select{flex:0}:host .mat-mdc-form-field{min-width:320px}:host .mat-mdc-form-field.full-width{width:100%}:host .mat-mdc-form-field.disabled ::ng-deep *{border-color:#d3d3d3;color:#d3d3d3;pointer-events:none}:host .mat-mdc-form-field.disabled ::ng-deep * .mat-mdc-select-arrow{opacity:.1}:host[theme=dark] mat-select ::ng-deep .mat-mdc-select-arrow,:host[theme=light] mat-select ::ng-deep .mat-mdc-select-arrow{background:url('data:image/svg+xml,<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M12 17.025L6 11.025L7.4 9.625L12 14.225L16.6 9.625L18 11.025L12 17.025Z\" fill=\"currentColor\"/>%0A</svg>%0A');background-size:cover;width:16px;height:16px}:host[theme=dark] mat-select ::ng-deep .mat-mdc-select-arrow svg,:host[theme=light] mat-select ::ng-deep .mat-mdc-select-arrow svg{display:none}:host[theme=dark] mat-select.opened ::ng-deep .mat-mdc-select-arrow,:host[theme=light] mat-select.opened ::ng-deep .mat-mdc-select-arrow{background:url('data:image/svg+xml,<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M12 9.6249L18 15.6249L16.6 17.0249L12 12.4249L7.4 17.0249L6 15.6249L12 9.6249Z\" fill=\"currentColor\"/>%0A</svg>%0A');background-size:cover;width:16px;height:16px}::ng-deep .mat-form-field-appearance-outline mat-select .mat-select-arrow-wrapper{transform:none}::ng-deep .mat-select-panel.phone-number-select{margin-top:36px;margin-left:45px}::ng-deep .mat-select-search-inner{box-shadow:none!important;height:48px;background-color:#fff!important;border-bottom:none!important}::ng-deep .mat-select-search-inner .mat-select-search-inner-row{width:100%}::ng-deep .mat-select-search-inner button.mat-select-search-clear{right:35px}::ng-deep .mat-select-search-inner button.mat-select-search-clear mat-icon{font-size:20px}@media screen and (min-width: 599px){::ng-deep .mat-select-panel.phone-number-select{margin-left:-33px;min-width:510px}::ng-deep .mat-select-search-inner{min-width:calc(100% + 33px)!important}}ngx-mat-select-search ::ng-deep button .mat-mdc-button-persistent-ripple,ngx-mat-select-search ::ng-deep button .mat-ripple,ngx-mat-select-search ::ng-deep button .mat-mdc-button-ripple{display:none}\n"], dependencies: [{ kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i1$2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i1$2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i5.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i5.MatLabel, selector: "mat-label" }, { kind: "directive", type: i5.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i5.MatPrefix, selector: "[matPrefix], [matIconPrefix], [matTextPrefix]", inputs: ["matTextPrefix"] }, { kind: "component", type: i7$1.MatSelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex", "panelWidth", "hideSingleSelectionIndicator"], exportAs: ["matSelect"] }, { kind: "directive", type: i7$1.MatSelectTrigger, selector: "mat-select-trigger" }, { kind: "component", type: i2$4.MatOption, selector: "mat-option", exportAs: ["matOption"] }, { kind: "directive", type: i8.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "component", type: i9.MatSelectSearchComponent, selector: "ngx-mat-select-search", inputs: ["placeholderLabel", "type", "closeIcon", "closeSvgIcon", "noEntriesFoundLabel", "clearSearchInput", "searching", "disableInitialFocus", "enableClearOnEscapePressed", "preventHomeEndKeyPropagation", "disableScrollToActiveOnOptionsChanged", "ariaLabel", "showToggleAllCheckbox", "toggleAllCheckboxChecked", "toggleAllCheckboxIndeterminate", "toggleAllCheckboxTooltipMessage", "toggleAllCheckboxTooltipPosition", "hideClearSearchButton", "alwaysRestoreSelectedOptionsMulti", "recreateValuesArray"], outputs: ["toggleAll"] }, { kind: "directive", type: i9.MatSelectSearchClearDirective, selector: "[ngxMatSelectSearchClear]" }, { kind: "component", type: IconComponent, selector: "ui-icon", inputs: ["size", "cssClass", "name", "color", "filled", "applicationTheme", "useFullIconName"] }, { kind: "component", type: ValidationErrorComponent, selector: "ui-validation-error", inputs: ["ngControl", "touchedOn", "errorMessage", "label", "applicationTheme"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: UiTranslatePipe, name: "uiTranslate" }, { kind: "pipe", type: HasValidationErrorPipe, name: "hasValidationError" }, { kind: "pipe", type: JoinStringsPipe, name: "joinStrings" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
15113
+ ], viewQueries: [{ propertyName: "input", first: true, predicate: MatInput, descendants: true, read: ElementRef, static: true }, { propertyName: "select", first: true, predicate: MatSelect, descendants: true, read: ElementRef, static: true }], ngImport: i0, template: "<mat-form-field\n [formGroup]=\"form\"\n appearance=\"outline\"\n [color]=\"(errorsLength || (ngControl?.errors && ngControl?.touched )) ? 'warn' : 'accent'\"\n [ngClass]=\"{ disabled: form.disabled || disabled, 'full-width': fullWidth }\"\n>\n <mat-label>{{ 'COMMON.PHONE_NUMBER' | uiTranslate | async }} <span *ngIf=\"required\">*</span></mat-label>\n\n <div matPrefix class=\"country\">\n <button class=\"selected-flag\" matPrefix *ngIf=\"selectedCountry\">\n <img [height]=\"20\" [width]=\"24\" [attr.src]=\"countryFlagSrc + selectedCountry?.alpha2Code?.toLowerCase() + '.svg'\"\n [alt]=\"'Country flag ' + selectedCountry?.alpha2Code?.toLowerCase()\">\n </button>\n <mat-select\n #select\n (selectionChange)=\"onOptionsSelected($event.value)\"\n [value]=\"selectedCountry\"\n [disableOptionCentering]=\"true\"\n [panelClass]=\"'phone-number-select' + ' ' + applicationTheme\"\n [ngClass]=\"{ opened: select.panelOpen }\"\n >\n <mat-select-trigger>{{ selectedCountry?.callingCode }}</mat-select-trigger>\n <mat-option>\n <ngx-mat-select-search\n [formControl]=\"selectFilterCtrl\"\n ngDefaultControl\n placeholderLabel=\"\"\n noEntriesFoundLabel=\"\"\n >\n <ui-icon ngxMatSelectSearchClear size=\"24\" [name]=\"'Close-in-line'\"></ui-icon>\n </ngx-mat-select-search>\n </mat-option>\n <mat-option *ngFor=\"let country of countries$ | async; trackBy: filteredCountryTrackByMethod\" [value]=\"country\">\n <div class=\"country-option\">\n <img [height]=\"20\" [width]=\"24\" [attr.src]=\"countryFlagSrc + country?.alpha2Code?.toLowerCase()! + '.svg'\"\n [alt]=\"'Country flag ' + country?.alpha2Code?.toLowerCase()!\">\n <small>{{ $any([country?.name, '(' + country?.callingCode + ')']) | joinStrings : ' ' }}</small>\n </div>\n </mat-option>\n </mat-select>\n </div>\n\n <input\n (input)=\"onInput(form.get('phone_number')!.value)\"\n formControlName=\"phone_number\"\n (click)=\"disableClick($event)\"\n [ngStyle]=\"{ opacity: disabled ? 0.5 : 1 }\"\n [required]=\"required\"\n matInput\n type=\"text\"\n />\n\n <mat-hint class=\"error\" *ngIf=\"errorsLength || (ngControl?.errors | hasValidationError)\">\n <ng-container *ngIf=\"errorsLength\">\n <div class=\"errors\" *ngFor=\"let error of _errors; trackBy: trackByFn\">\n <ui-icon [applicationTheme]=\"applicationTheme\" [name]=\"'Error'\"></ui-icon>\n <span [innerHTML]=\"error\"></span>\n </div>\n </ng-container>\n\n <ui-validation-error *ngIf=\"ngControl && !hideBuiltInErrors\" [ngControl]=\"ngControl\" [label]=\"hideLabelInErrors ? null : ('COMMON.PHONE_NUMBER' | uiTranslate | async)\"></ui-validation-error>\n\n </mat-hint>\n</mat-form-field>\n", styles: [".bg-teal-60b{background:#1c443c}.bg-teal-30b{background:#31766a}.bg-teal-default{background:#46a997}.bg-teal-30w{background:#7ec3b6}.bg-teal-60w{background:#b5ddd5}.bg-teal-secondary{background:#cbd6cb}.bg-teal-90w{background:#ecf6f5}.bg-petrol-60b{background:#102930}.bg-petrol-30b{background:#1b4754}.bg-petrol-default{background:#276678}.bg-petrol-30w{background:#6894a0}.bg-petrol-60w{background:#a9c2c9}.bg-petrol-secondary{background:#c8d7de}.bg-petrol-90w{background:#e9f0f1}.bg-error-60b{background:#513131}.bg-error-30b{background:#8e5655}.bg-error-60w{background:#e3c3c6}.bg-error-secondary{background:#f0dad9}.bg-error-default{background:#cb7b7a}.bg-warning-secondary{background:#f0d6bb}.bg-warning-default{background:#cca45f}.bg-black{background:#000}.bg-dark{background:#888}.bg-medium{background:#e0e0e0}.bg-grey{background:#ededed}.bg-light{background:#f6f6f6}.bg-white{background:#fff}.bg-box-shadow{background:#00000014}.bg-navigation-subtitle{background:#528593}.bgc-teal-60b{background-color:#1c443c}.bgc-teal-30b{background-color:#31766a}.bgc-teal-default{background-color:#46a997}.bgc-teal-30w{background-color:#7ec3b6}.bgc-teal-60w{background-color:#b5ddd5}.bgc-teal-secondary{background-color:#cbd6cb}.bgc-teal-90w{background-color:#ecf6f5}.bgc-petrol-60b{background-color:#102930}.bgc-petrol-30b{background-color:#1b4754}.bgc-petrol-default{background-color:#276678}.bgc-petrol-30w{background-color:#6894a0}.bgc-petrol-60w{background-color:#a9c2c9}.bgc-petrol-secondary{background-color:#c8d7de}.bgc-petrol-90w{background-color:#e9f0f1}.bgc-error-60b{background-color:#513131}.bgc-error-30b{background-color:#8e5655}.bgc-error-60w{background-color:#e3c3c6}.bgc-error-secondary{background-color:#f0dad9}.bgc-error-default{background-color:#cb7b7a}.bgc-warning-secondary{background-color:#f0d6bb}.bgc-warning-default{background-color:#cca45f}.bgc-black{background-color:#000}.bgc-dark{background-color:#888}.bgc-medium{background-color:#e0e0e0}.bgc-grey{background-color:#ededed}.bgc-light{background-color:#f6f6f6}.bgc-white{background-color:#fff}.bgc-box-shadow{background-color:#00000014}.bgc-navigation-subtitle{background-color:#528593}:host{display:flex;align-items:center}:host .selected-flag{display:flex;position:relative;margin-right:1rem;align-items:center}:host mat-spinner{padding:0 20px}:host .country{cursor:pointer!important;display:flex;align-items:center;margin:-8px 12px 0 16px}:host .country button{margin:0 8px 0 0;background:transparent;border:unset;padding:0}:host ::ng-deep .mat-mdc-select-trigger{display:flex;gap:8px}:host mat-select{flex:0}:host .mat-mdc-form-field{min-width:320px}:host .mat-mdc-form-field.full-width{width:100%}:host .mat-mdc-form-field.disabled ::ng-deep *{border-color:#d3d3d3;color:#d3d3d3;pointer-events:none}:host .mat-mdc-form-field.disabled ::ng-deep * .mat-mdc-select-arrow{opacity:.1}:host[theme=dark] mat-select ::ng-deep .mat-mdc-select-arrow,:host[theme=light] mat-select ::ng-deep .mat-mdc-select-arrow{background:url('data:image/svg+xml,<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M12 17.025L6 11.025L7.4 9.625L12 14.225L16.6 9.625L18 11.025L12 17.025Z\" fill=\"currentColor\"/>%0A</svg>%0A');background-size:cover;width:16px;height:16px}:host[theme=dark] mat-select ::ng-deep .mat-mdc-select-arrow svg,:host[theme=light] mat-select ::ng-deep .mat-mdc-select-arrow svg{display:none}:host[theme=dark] mat-select.opened ::ng-deep .mat-mdc-select-arrow,:host[theme=light] mat-select.opened ::ng-deep .mat-mdc-select-arrow{background:url('data:image/svg+xml,<svg width=\"24\" height=\"25\" viewBox=\"0 0 24 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">%0A<path d=\"M12 9.6249L18 15.6249L16.6 17.0249L12 12.4249L7.4 17.0249L6 15.6249L12 9.6249Z\" fill=\"currentColor\"/>%0A</svg>%0A');background-size:cover;width:16px;height:16px}::ng-deep .mat-form-field-appearance-outline mat-select .mat-select-arrow-wrapper{transform:none}::ng-deep .mat-select-panel.phone-number-select{margin-top:36px;margin-left:45px}::ng-deep .mat-select-search-inner{box-shadow:none!important;height:48px;background-color:#fff!important;border-bottom:none!important}::ng-deep .mat-select-search-inner .mat-select-search-inner-row{width:100%}::ng-deep .mat-select-search-inner button.mat-select-search-clear{right:35px}::ng-deep .mat-select-search-inner button.mat-select-search-clear mat-icon{font-size:20px}@media screen and (min-width: 599px){::ng-deep .mat-select-panel.phone-number-select{margin-left:-33px;min-width:510px}::ng-deep .mat-select-search-inner{min-width:calc(100% + 33px)!important}}ngx-mat-select-search ::ng-deep button .mat-mdc-button-persistent-ripple,ngx-mat-select-search ::ng-deep button .mat-ripple,ngx-mat-select-search ::ng-deep button .mat-mdc-button-ripple{display:none}\n"], dependencies: [{ kind: "directive", type: i1$1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1$1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1$1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "directive", type: i1$2.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$2.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$2.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i1$2.RequiredValidator, selector: ":not([type=checkbox])[required][formControlName],:not([type=checkbox])[required][formControl],:not([type=checkbox])[required][ngModel]", inputs: ["required"] }, { kind: "directive", type: i1$2.FormControlDirective, selector: "[formControl]", inputs: ["formControl", "disabled", "ngModel"], outputs: ["ngModelChange"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$2.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$2.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "component", type: i5.MatFormField, selector: "mat-form-field", inputs: ["hideRequiredMarker", "color", "floatLabel", "appearance", "subscriptSizing", "hintLabel"], exportAs: ["matFormField"] }, { kind: "directive", type: i5.MatLabel, selector: "mat-label" }, { kind: "directive", type: i5.MatHint, selector: "mat-hint", inputs: ["align", "id"] }, { kind: "directive", type: i5.MatPrefix, selector: "[matPrefix], [matIconPrefix], [matTextPrefix]", inputs: ["matTextPrefix"] }, { kind: "component", type: i7$1.MatSelect, selector: "mat-select", inputs: ["disabled", "disableRipple", "tabIndex", "panelWidth", "hideSingleSelectionIndicator"], exportAs: ["matSelect"] }, { kind: "directive", type: i7$1.MatSelectTrigger, selector: "mat-select-trigger" }, { kind: "component", type: i2$4.MatOption, selector: "mat-option", exportAs: ["matOption"] }, { kind: "directive", type: i8.MatInput, selector: "input[matInput], textarea[matInput], select[matNativeControl], input[matNativeControl], textarea[matNativeControl]", inputs: ["disabled", "id", "placeholder", "name", "required", "type", "errorStateMatcher", "aria-describedby", "value", "readonly"], exportAs: ["matInput"] }, { kind: "component", type: i9.MatSelectSearchComponent, selector: "ngx-mat-select-search", inputs: ["placeholderLabel", "type", "closeIcon", "closeSvgIcon", "noEntriesFoundLabel", "clearSearchInput", "searching", "disableInitialFocus", "enableClearOnEscapePressed", "preventHomeEndKeyPropagation", "disableScrollToActiveOnOptionsChanged", "ariaLabel", "showToggleAllCheckbox", "toggleAllCheckboxChecked", "toggleAllCheckboxIndeterminate", "toggleAllCheckboxTooltipMessage", "toggleAllCheckboxTooltipPosition", "hideClearSearchButton", "alwaysRestoreSelectedOptionsMulti"], outputs: ["toggleAll"] }, { kind: "directive", type: i9.MatSelectSearchClearDirective, selector: "[ngxMatSelectSearchClear]" }, { kind: "component", type: IconComponent, selector: "ui-icon", inputs: ["size", "cssClass", "name", "color", "filled", "applicationTheme", "useFullIconName"] }, { kind: "component", type: ValidationErrorComponent, selector: "ui-validation-error", inputs: ["ngControl", "touchedOn", "errorMessage", "label", "applicationTheme"] }, { kind: "pipe", type: i1$1.AsyncPipe, name: "async" }, { kind: "pipe", type: UiTranslatePipe, name: "uiTranslate" }, { kind: "pipe", type: HasValidationErrorPipe, name: "hasValidationError" }, { kind: "pipe", type: JoinStringsPipe, name: "joinStrings" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
15100
15114
  }
15101
15115
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "17.3.12", ngImport: i0, type: PhoneInputComponent, decorators: [{
15102
15116
  type: Component,