Skip to content

Commit

Permalink
docs(core/menu-about): update jsdocs (#1244)
Browse files Browse the repository at this point in the history
Co-authored-by: Daniel Leroux <[email protected]>
  • Loading branch information
nuke-ellington and danielleroux authored May 2, 2024
1 parent b4b06a6 commit 1a0175f
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
5 changes: 5 additions & 0 deletions .changeset/quiet-pillows-jog.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@siemens/ix': patch
---

docs(core/menu-about): update jsdocs for label property
2 changes: 1 addition & 1 deletion packages/core/component-doc.json
Original file line number Diff line number Diff line change
Expand Up @@ -9741,7 +9741,7 @@
"mutable": false,
"attr": "label",
"reflectToAttr": false,
"docs": "Label of first tab",
"docs": "Content of the header",
"docsTags": [],
"default": "'About & legal information'",
"values": [
Expand Down
4 changes: 2 additions & 2 deletions packages/core/src/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1405,7 +1405,7 @@ export namespace Components {
*/
"activeTabLabel": string;
/**
* Label of first tab
* Content of the header
*/
"label": string;
/**
Expand Down Expand Up @@ -5515,7 +5515,7 @@ declare namespace LocalJSX {
*/
"activeTabLabel"?: string;
/**
* Label of first tab
* Content of the header
*/
"label"?: string;
/**
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/components/menu-about/menu-about.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export class MenuAbout {
@Prop({ mutable: true }) activeTabLabel: string;

/**
* Label of first tab
* Content of the header
*/
@Prop() label = 'About & legal information';

Expand Down

0 comments on commit 1a0175f

Please sign in to comment.