@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.
- package/esm2020/lib/atoms/input-search-checkbox-dropdown/input-search-checkbox-dropdown.component.mjs +3 -2
- package/esm2020/lib/pipe/trim-id.pipe.mjs +2 -2
- package/esm2020/projects/component-library/lib/atoms/input-search-checkbox-dropdown/input-search-checkbox-dropdown.component.mjs +3 -2
- package/esm2020/projects/component-library/lib/pipe/trim-id.pipe.mjs +2 -2
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs +3 -2
- package/fesm2015/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2015/symphony-talent-component-library.mjs +3 -2
- package/fesm2015/symphony-talent-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs +3 -2
- package/fesm2020/symphony-talent-component-library-projects-component-library.mjs.map +1 -1
- package/fesm2020/symphony-talent-component-library.mjs +3 -2
- package/fesm2020/symphony-talent-component-library.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -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?.replace(
|
|
266
|
+
return 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 });
|
|
@@ -1951,7 +1951,8 @@ class InputSearchCheckboxDropdownComponent {
|
|
|
1951
1951
|
}
|
|
1952
1952
|
focusOnSearchInput() {
|
|
1953
1953
|
if (this.multiSelectSearch.componentHeading) {
|
|
1954
|
-
this.renderer.selectRootElement(
|
|
1954
|
+
let focusText = this.renderer.selectRootElement(`#dropdown-search-'${this.multiSelectSearch.componentHeading.replace(/[^\w]/g, "")}'`);
|
|
1955
|
+
focusText.focus();
|
|
1955
1956
|
}
|
|
1956
1957
|
}
|
|
1957
1958
|
scrollHandler(event) {
|