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