dap-design-system 0.36.2 → 0.36.3
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.d.ts +0 -2
- package/dist/dds.js +1 -7
- package/dist/dds.js.map +1 -1
- package/dist/manifest/types/vue/index.d.ts +327 -333
- package/dist/manifest/vscode.html-custom-data.json +111 -111
- package/dist/manifest/web-types.json +497 -509
- package/dist/react-types.ts +9 -9
- package/dist/react.d.ts +1 -7
- package/dist/react.js +85 -87
- package/dist/react.js.map +1 -1
- package/package.json +1 -1
package/dist/dds.d.ts
CHANGED
|
@@ -4498,8 +4498,6 @@ export declare class DapDSSideNav extends DdsElement {
|
|
|
4498
4498
|
* @title - Side navigation group
|
|
4499
4499
|
* @group side-navigation
|
|
4500
4500
|
*
|
|
4501
|
-
* @event {{ href: string, event: Event }} dds-item-click - Event fired when the side navigation item is clicked.
|
|
4502
|
-
*
|
|
4503
4501
|
* @slot - The content of the side navigation group.
|
|
4504
4502
|
* @slot submenu - The submenu of the side navigation group.
|
|
4505
4503
|
* @slot suffix - The suffix of the side navigation group.
|
package/dist/dds.js
CHANGED
|
@@ -13901,13 +13901,7 @@ let fi = class extends z {
|
|
|
13901
13901
|
${this.href ? h`<a
|
|
13902
13902
|
href=${this.href}
|
|
13903
13903
|
class="sidenav-group__link"
|
|
13904
|
-
part="link"
|
|
13905
|
-
@click=${(e) => {
|
|
13906
|
-
e.stopPropagation(), this.emit("dds-item-click", {
|
|
13907
|
-
href: this.href,
|
|
13908
|
-
event: e
|
|
13909
|
-
});
|
|
13910
|
-
}}>
|
|
13904
|
+
part="link">
|
|
13911
13905
|
<slot></slot>
|
|
13912
13906
|
<slot name="suffix"></slot>
|
|
13913
13907
|
</a>` : h`<slot></slot>`}
|