@cqa-lib/cqa-ui 1.0.122 → 1.0.123

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.
@@ -2000,7 +2000,7 @@ class DynamicSelectFieldComponent {
2000
2000
  }
2001
2001
  // Escape HTML first, then apply highlighting
2002
2002
  const escaped = this.escapeHtml(text);
2003
- return escaped.replace(regex, (match) => `<span class="cqa-primary-text">${match}</span>`);
2003
+ return escaped.replace(regex, (match) => `<span class="cqa-text-primary">${match}</span>`);
2004
2004
  }
2005
2005
  /**
2006
2006
  * Escapes HTML special characters to prevent XSS.