lucid-ui
Version:
A UI component library from Xandr.
20 lines • 572 B
JavaScript
import * as DropMenu from '../DropMenu/DropMenu.reducers';
export function onSelect(state, selectedIndex) {
return {
...state,
selectedIndex,
DropMenu: DropMenu.onSelect(state.DropMenu, selectedIndex),
};
}
export function onSearch(state, searchText, firstVisibleIndex) {
return {
...state,
searchText,
selectedIndex: null,
DropMenu: {
...DropMenu.onFocusOption(state.DropMenu, firstVisibleIndex),
},
};
}
export { DropMenu };
//# sourceMappingURL=SearchableSelect.reducers.js.map