dap-design-system 0.35.18 → 0.35.19
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/dist/dds.js +2 -2
- package/dist/dds.js.map +1 -1
- package/dist/manifest/types/vue/index.d.ts +414 -414
- package/dist/manifest/vscode.html-custom-data.json +203 -203
- package/dist/manifest/web-types.json +833 -833
- package/dist/react-types.ts +6 -6
- package/dist/react.js +83 -83
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
package/dist/dds.js
CHANGED
|
@@ -13883,7 +13883,7 @@ let bi = class extends z {
|
|
|
13883
13883
|
class="sidenav-group__link"
|
|
13884
13884
|
part="link"
|
|
13885
13885
|
@click=${(e) => {
|
|
13886
|
-
this.emit("dds-item-click", {
|
|
13886
|
+
e.stopPropagation(), this.emit("dds-item-click", {
|
|
13887
13887
|
href: this.href,
|
|
13888
13888
|
event: e
|
|
13889
13889
|
});
|
|
@@ -13957,7 +13957,7 @@ let Wo = class extends z {
|
|
|
13957
13957
|
href=${this.href}
|
|
13958
13958
|
class="sidenav-item__link"
|
|
13959
13959
|
@click=${(e) => {
|
|
13960
|
-
this.emit("dds-item-click", {
|
|
13960
|
+
e.stopPropagation(), this.emit("dds-item-click", {
|
|
13961
13961
|
href: this.href,
|
|
13962
13962
|
event: e
|
|
13963
13963
|
});
|