@symphony-talent/component-library 4.11.0 → 4.13.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.
@@ -263,7 +263,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.2", ngImpor
263
263
 
264
264
  class TrimIdPipe {
265
265
  transform(value) {
266
- return value === null || value === void 0 ? void 0 : value.replace(/\s/g, '');
266
+ return value === null || value === void 0 ? void 0 : value.replace(/[^\w]/g, "");
267
267
  }
268
268
  }
269
269
  TrimIdPipe.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.1.2", ngImport: i0, type: TrimIdPipe, deps: [], target: i0.ɵɵFactoryTarget.Pipe });
@@ -1953,7 +1953,8 @@ class InputSearchCheckboxDropdownComponent {
1953
1953
  }
1954
1954
  focusOnSearchInput() {
1955
1955
  if (this.multiSelectSearch.componentHeading) {
1956
- this.renderer.selectRootElement(`#${this.conditionSelectionId}`).focus();
1956
+ let focusText = this.renderer.selectRootElement(`#dropdown-search-'${this.multiSelectSearch.componentHeading.replace(/[^\w]/g, "")}'`);
1957
+ focusText.focus();
1957
1958
  }
1958
1959
  }
1959
1960
  scrollHandler(event) {