@salesforcedevs/dx-components 0.19.3-alpha.49 → 0.19.3-alpha.52

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.49",
3
+ "version": "0.19.3-alpha.52",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -122,7 +122,10 @@ export default class Sidebar extends LightningElement {
122
122
  this.assignFilteredTrees();
123
123
  this.dispatchEvent(
124
124
  new CustomEvent("highlightedtermchange", {
125
- detail: this.searchText,
125
+ detail: {
126
+ query: this.searchText,
127
+ termsToHighlight: [this.searchText]
128
+ },
126
129
  composed: true,
127
130
  bubbles: true
128
131
  })