@salesforcedevs/dx-components 1.3.334 → 1.3.335

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.334",
3
+ "version": "1.3.335",
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": "4d0cdd026fd451e2db124abab418a2c44053abbb"
49
+ "gitHead": "2862c96ace8525a40000901f23ef6ede22b269e9"
50
50
  }
@@ -92,6 +92,14 @@ export default class TabPanelList extends LightningElement {
92
92
  this.tabElements.forEach((tab: any, index) => {
93
93
  tab.active = this.activeIndex === index;
94
94
  });
95
+
96
+ this.dispatchEvent(
97
+ new CustomEvent("tabchanged", {
98
+ detail: this.id || this.groupId,
99
+ bubbles: true,
100
+ composed: true
101
+ })
102
+ );
95
103
  }
96
104
 
97
105
  private focusActiveTab() {