@salesforcedevs/dx-components 0.19.3-alpha.47 → 0.19.3-alpha.48

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforcedevs/dx-components",
3
- "version": "0.19.3-alpha.47",
3
+ "version": "0.19.3-alpha.48",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -23,15 +23,9 @@ export const highlightTerms = (
23
23
  try {
24
24
  if (element.innerHTML.match(MARK_TAGS)) {
25
25
  // Remove previously added mark tags
26
- console.log(
27
- "matching marks",
28
- element,
29
- element.style.backgroundColor
30
- );
31
26
  element.innerHTML = element.innerHTML.replace(MARK_TAGS, "");
32
27
  }
33
28
  if (element.innerHTML.match(searchExp) && query) {
34
- console.log("matching", element, element.innerHTML);
35
29
  element.innerHTML = element.innerHTML.replace(
36
30
  searchExp,
37
31
  '<mark style="background-color:var(--dx-g-yellow-vibrant-90)">$&</mark>'