Commit a2a579ce by Tobias Skarhed Committed by GitHub

Forms migration: Finalizing Select namespace (#23281)

parent 61e6e41e
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment