@salesforcedevs/dx-components 1.3.333 → 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.333",
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": "f8a9a7adc4db6429233975f512e1ec381b7ed0e6"
49
+ "gitHead": "2862c96ace8525a40000901f23ef6ede22b269e9"
50
50
  }
@@ -32,7 +32,7 @@ export const generalLinksRaw: OptionWithRequiredNested[] = [
32
32
  },
33
33
  {
34
34
  link: {
35
- href: "/docs/analytics/einstein-vision-language/overview"
35
+ href: "/developer-centers/einstein-1-studio"
36
36
  },
37
37
  label: "Einstein",
38
38
  id: "Einstein"
@@ -65,9 +65,9 @@ export const generalLinksRaw: OptionWithRequiredNested[] = [
65
65
  id: "Trailhead"
66
66
  },
67
67
  {
68
- link: { href: "/code-samples-and-sdks" },
69
- label: "Code Samples and SDKs",
70
- id: "Code Samples and SDKs"
68
+ link: { href: "/sample-apps" },
69
+ label: "Sample Apps",
70
+ id: "Sample Apps"
71
71
  },
72
72
  { link: { href: "/podcast" }, label: "Podcasts", id: "Podcasts" },
73
73
  {
@@ -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() {