Skip to content

Commit

Permalink
refactor(ui): select imports rename
Browse files Browse the repository at this point in the history
  • Loading branch information
32penkin committed Oct 17, 2019
1 parent 35884a8 commit 8bc4abd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/framework/ui/select/selectGroupOption.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ import {
SelectOptionProps,
SelectOptionType,
} from './selectOption.component';
import { SelectOption as BipolarOptionType} from './select.component';
import { SelectOption as SelectOptionProp} from './select.component';
import { SelectionStrategy } from './selection.strategy';

interface ComponentProps {
multiSelect?: boolean;
strategy: SelectionStrategy<BipolarOptionType>;
strategy: SelectionStrategy<SelectOptionProp>;
renderItem?: (item: ListRenderItemInfo<SelectOptionType>) => React.ReactElement<any>;
}

Expand Down
4 changes: 2 additions & 2 deletions src/framework/ui/select/selectOptionsList.component.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ import {
SelectGroupOption,
SelectGroupOptionElement,
} from './selectGroupOption.component';
import { SelectOption as BipolarOptionType} from './select.component';
import { SelectOption as SelectOptionProp} from './select.component';
import { SelectionStrategy } from './selection.strategy';

type DefaultMenuItemElement = SelectOptionElement | SelectGroupOptionElement;
Expand All @@ -32,7 +32,7 @@ type MenuItemElement = DefaultMenuItemElement | React.ReactElement<any>;
export interface ComponentProps {
data: SelectOptionType[];
multiSelect?: boolean;
strategy: SelectionStrategy<BipolarOptionType>;
strategy: SelectionStrategy<SelectOptionProp>;
renderItem?: (item: ListRenderItemInfo<SelectOptionType>) => React.ReactElement<any>;
onSelect: (option: SelectOptionType, event?: GestureResponderEvent) => void;
}
Expand Down

0 comments on commit 8bc4abd

Please sign in to comment.