File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -10,13 +10,15 @@ import { ContextActions } from './context-actions';
10
10
interface SearchInputProps {
11
11
value : string ;
12
12
placeholder : string ;
13
- endPlaceholder ?: string ; // Optional placeholder text shown on the right side of the input when empty
13
+ /** Placeholder text shown on the right side of the input when empty */
14
+ endPlaceholder ?: string ;
14
15
onBlur ?: React . FocusEventHandler < HTMLInputElement > ;
15
16
onChange : React . ChangeEventHandler < HTMLInputElement > ;
16
17
onKeyDown : React . KeyboardEventHandler < HTMLInputElement > ;
17
18
className : string ;
18
19
disabled ?: boolean ;
19
- matchCount : number ; // Number of search matches
20
+ /** Number of search matches, displayed at the end of the search field. */
21
+ matchCount : number ;
20
22
id : string ;
21
23
'data-testid' ?: string ;
22
24
cursor ?: {
You can’t perform that action at this time.
0 commit comments