@symphony-talent/component-library 4.174.0 → 4.175.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.
@@ -3919,10 +3919,13 @@ class FilterTabsV2Component {
3919
3919
  }
3920
3920
  onTabSetClick(event) {
3921
3921
  if (event.target.innerText === 'Basic Search' ||
3922
- event.target.innerText === 'Advanced Search') {
3922
+ event.target.innerText === 'Advanced Search' ||
3923
+ event.target.innerText === 'AI Search') {
3923
3924
  this.tabSetClicked.emit({
3924
3925
  basicSearchClicked: event.target.innerText === 'Basic Search',
3925
3926
  advancedSearchClicked: event.target.innerText === 'Advanced Search',
3927
+ aiSearchClicked: event.target.innerText === 'AI Search',
3928
+ event: event,
3926
3929
  });
3927
3930
  }
3928
3931
  }