Commit a2a579ce by Tobias Skarhed Committed by GitHub

Forms migration: Finalizing Select namespace (#23281)

parent 61e6e41e
...@@ -9,8 +9,6 @@ import { Switch } from './Switch'; ...@@ -9,8 +9,6 @@ import { Switch } from './Switch';
import { Legend } from './Legend'; import { Legend } from './Legend';
import { TextArea } from './TextArea/TextArea'; import { TextArea } from './TextArea/TextArea';
import { Checkbox } from './Checkbox'; import { Checkbox } from './Checkbox';
//Remove after Enterprise migrations have been merged
import { Select } from '../Select/Select';
const Forms = { const Forms = {
RadioButtonGroup, RadioButtonGroup,
...@@ -24,7 +22,6 @@ const Forms = { ...@@ -24,7 +22,6 @@ const Forms = {
TextArea, TextArea,
Checkbox, Checkbox,
Legend, Legend,
Select,
}; };
export default Forms; export default Forms;
...@@ -18,8 +18,6 @@ export interface SelectCommonProps<T> { ...@@ -18,8 +18,6 @@ export interface SelectCommonProps<T> {
onKeyDown?: (event: React.KeyboardEvent) => void; onKeyDown?: (event: React.KeyboardEvent) => void;
placeholder?: string; placeholder?: string;
disabled?: boolean; disabled?: boolean;
//To be removed, is here to make Enterprise mergable
isDisabled?: boolean;
isSearchable?: boolean; isSearchable?: boolean;
isClearable?: boolean; isClearable?: boolean;
autoFocus?: 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