@salesforcedevs/dx-components 1.3.385 → 1.3.387

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": "1.3.385",
3
+ "version": "1.3.387",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -46,5 +46,5 @@
46
46
  "volta": {
47
47
  "node": "18.18.0"
48
48
  },
49
- "gitHead": "fb00ce295b885355afa5da7f74b7e36f13e4fd36"
49
+ "gitHead": "5181a287c393b41fe90d9e23c054421eaa1d2e72"
50
50
  }
@@ -45,7 +45,11 @@ export default class Toc extends LightningElement {
45
45
  const href = target.getAttribute("href");
46
46
 
47
47
  this.dispatchEvent(
48
- new CustomEvent("selectedcontent", { detail: { name: id } })
48
+ new CustomEvent("selectedcontent", {
49
+ detail: { name: id },
50
+ bubbles: true,
51
+ composed: true
52
+ })
49
53
  );
50
54
 
51
55
  this._value = id!;
@@ -106,7 +106,6 @@ span {
106
106
  /* this is a hack since we can't target the ::slotted ctas */
107
107
  display: flex;
108
108
  gap: var(--dx-g-spacing-xs) var(--dx-g-spacing-xl);
109
- justify-content: space-between;
110
109
  }
111
110
 
112
111
  /* card image */