Forms migration: Finalizing Select namespace (#23281)

This commit is contained in:
Tobias Skarhed
2020-04-02 13:25:09 +02:00
committed by GitHub
parent 61e6e41ead
commit a2a579cea7
2 changed files with 0 additions and 5 deletions
@@ -9,8 +9,6 @@ import { Switch } from './Switch';
import { Legend } from './Legend';
import { TextArea } from './TextArea/TextArea';
import { Checkbox } from './Checkbox';
//Remove after Enterprise migrations have been merged
import { Select } from '../Select/Select';
const Forms = {
RadioButtonGroup,
@@ -24,7 +22,6 @@ const Forms = {
TextArea,
Checkbox,
Legend,
Select,
};
export default Forms;
@@ -18,8 +18,6 @@ export interface SelectCommonProps<T> {
onKeyDown?: (event: React.KeyboardEvent) => void;
placeholder?: string;
disabled?: boolean;
//To be removed, is here to make Enterprise mergable
isDisabled?: boolean;
isSearchable?: boolean;
isClearable?: boolean;
autoFocus?: boolean;