@salesforcedevs/dx-components 1.3.334 → 1.3.336

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.336",
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": "69d95be87ff1f8843d955fd1c11e62cfdfef14be"
50
50
  }
@@ -210,6 +210,7 @@ footer.signup-variant-no-signup {
210
210
 
211
211
  .terms a {
212
212
  color: var(--dx-g-blue-vibrant-70);
213
+ text-decoration: underline;
213
214
  }
214
215
 
215
216
  .terms > span,
@@ -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() {