Skip to content

Commit

Permalink
Update defaultProps.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
uyarn authored Aug 4, 2022
1 parent 8cfd1f6 commit ca9bc02
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/dropdown/defaultProps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,13 @@ import { TdDropdownProps, TdDropdownItemProps } from './type';

export const dropdownDefaultProps: TdDropdownProps = {
direction: 'right',
disabled: false,
hideAfterItemClick: true,
maxColumnWidth: 100,
maxHeight: 300,
minColumnWidth: 10,
options: [],
placement: 'bottom-left',
theme: 'default',
trigger: 'hover',
};

export const dropdownItemDefaultProps: TdDropdownItemProps = { active: false, disabled: false, divider: false };
export const dropdownItemDefaultProps: TdDropdownItemProps = { active: false, divider: false };

0 comments on commit ca9bc02

Please sign in to comment.