Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion src/Select.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,14 @@ import { fillFieldNames, flattenOptions, injectPropsWithOption } from './utils/v
import warningProps, { warningNullOptions } from './utils/warningPropsUtil';
import useSearchConfig from './hooks/useSearchConfig';

const OMIT_DOM_PROPS = ['inputValue'];
const OMIT_DOM_PROPS = [
'inputValue',
'filterOption',
'optionFilterProp',
'filterSort',
'filterTreeNode',
'treeNodeFilterProp',
];

export type OnActiveValue = (
active: RawValueType,
Expand Down
Loading