Skip to content

Commit

Permalink
updated trigger-button props to match new button props
Browse files Browse the repository at this point in the history
  • Loading branch information
tishoyanchev committed Sep 12, 2023
1 parent 6269016 commit eb518c2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import { IOpenable } from '../IOpenable';
export class DropdownItem implements IOpenable {
@Prop() isOpen: boolean = false;

@Prop() variant: 'solid' | 'outline' | 'outline-text' = 'solid';
@Prop() color: 'primary';
@Prop() theme: 'default' | 'danger' | 'inverse' = 'default';
@Prop() variant: 'primary';
@Prop() size: 's' | 'm' = 'm';
@Prop() disabled: boolean;
@Prop() hideArrow: boolean = false;
Expand All @@ -21,7 +21,7 @@ export class DropdownItem implements IOpenable {
return (
<ifx-button
variant={this.variant}
color={this.color}
theme={this.theme}
size={this.size}
disabled={this.disabled}
class="dropdown-trigger-button"
Expand Down
1 change: 1 addition & 0 deletions packages/components/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
</head>

<body>


</body>

Expand Down

0 comments on commit eb518c2

Please sign in to comment.