Skip to content

Commit

Permalink
refactor(links): remove openInNewTab option
Browse files Browse the repository at this point in the history
Co-Authored-By: zechmeister <[email protected]>
  • Loading branch information
chohner and zechmeister committed Jul 12, 2024
1 parent 0db2d7e commit b8f25eb
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 10 deletions.
5 changes: 0 additions & 5 deletions src/components/basic/link.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,6 @@
"url": {
"required": true,
"type": "string"
},
"openInNewTab": {
"type": "boolean",
"default": false,
"required": false
}
}
}
3 changes: 0 additions & 3 deletions src/components/form-elements/button.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,6 @@
},
"downloadFile": {
"type": "string"
},
"openInNewTab": {
"type": "boolean"
}
}
}
2 changes: 0 additions & 2 deletions types/generated/components.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ export interface BasicLink extends Schema.Component {
attributes: {
text: Attribute.String;
url: Attribute.String & Attribute.Required;
openInNewTab: Attribute.Boolean & Attribute.DefaultTo<false>;
};
}

Expand Down Expand Up @@ -124,7 +123,6 @@ export interface FormElementsButton extends Schema.Component {
href: Attribute.String;
text: Attribute.String;
downloadFile: Attribute.String;
openInNewTab: Attribute.Boolean;
};
}

Expand Down

0 comments on commit b8f25eb

Please sign in to comment.