From 3640e414de72f527e156d9822545d5dee30d7e68 Mon Sep 17 00:00:00 2001 From: Eduardo Hernandez Ley Date: Fri, 9 Oct 2020 17:10:18 -0700 Subject: [PATCH] Added missing prop 'inlineSearchPlaceholder' in 'TextProps' interface --- types/react-dropdown-tree-select.d.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/types/react-dropdown-tree-select.d.ts b/types/react-dropdown-tree-select.d.ts index 844f579d..55f9239f 100644 --- a/types/react-dropdown-tree-select.d.ts +++ b/types/react-dropdown-tree-select.d.ts @@ -154,6 +154,8 @@ declare module 'react-dropdown-tree-select' { export interface TextProps { /** The text to display as placeholder on the search box. Defaults to Choose... */ placeholder?: string + /** The text to display as placeholder on the inline search box. Only applicable with the `inlineSearchInput` setting. Defaults to `Search...` */ + inlineSearchPlaceholder?: string /** The text to display when the search does not find results in the content list. Defaults to No matches found */ noMatches?: string /** Adds `aria-labelledby` to search input when input starts with `#`, adds `aria-label` to search input when label has value (not containing '#') */