Skip to content

Commit

Permalink
fix(module:button): fix button type definition (#5085)
Browse files Browse the repository at this point in the history
close #5026
  • Loading branch information
Yadong Xie authored Apr 20, 2020
1 parent 3fb5f38 commit 62584de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/button/button.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import { NzIconDirective } from 'ng-zorro-antd/icon';
import { Subject } from 'rxjs';
import { filter, startWith, takeUntil } from 'rxjs/operators';

export type NzButtonType = 'primary' | 'dashed' | 'danger' | 'link' | null;
export type NzButtonType = 'primary' | 'default' | 'dashed' | 'danger' | 'link' | null;
export type NzButtonShape = 'circle' | 'round' | null;
export type NzButtonSize = 'large' | 'default' | 'small';

Expand Down

0 comments on commit 62584de

Please sign in to comment.