Search
interface DataEditorProps {
// ...other props
onSearchClose?: (() => void);
onSearchResultsChanged?: ((results, navIndex) => void);
onSearchValueChange?: ((newVal) => void);
searchResults?: readonly Item[];
searchValue?: string;
showSearch?: boolean;
// ...other props
}onSearchClose
onSearchClose?: () => void;onSearchResultsChanged
onSearchValueChange
searchResults
searchValue
showSearch
Last updated