We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
disablePoppingOnBackspace
1 parent 4c82bab commit 7cf5af9Copy full SHA for 7cf5af9
types/react-dropdown-tree-select.d.ts
@@ -99,6 +99,10 @@ declare module 'react-dropdown-tree-select' {
99
searchPredicate?: (currentNode: TreeNode, searchTerm: string) => boolean
100
/** inlineSearchInput=true Makes the search input renders inside the dropdown-content. Defaults to `false` */
101
inlineSearchInput?: boolean
102
+ /** disablePoppingOnBackspace=true indicates that when a user triggers a 'backspace' keyDown in the empty
103
+ * search bar, the tree will not deselect nodes.
104
+ */
105
+ disablePoppingOnBackspace?: boolean
106
}
107
108
export interface DropdownTreeSelectState {
0 commit comments