File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10,13 +10,15 @@ import { ContextActions } from './context-actions';
1010interface SearchInputProps {
1111 value : string ;
1212 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 ;
1415 onBlur ?: React . FocusEventHandler < HTMLInputElement > ;
1516 onChange : React . ChangeEventHandler < HTMLInputElement > ;
1617 onKeyDown : React . KeyboardEventHandler < HTMLInputElement > ;
1718 className : string ;
1819 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 ;
2022 id : string ;
2123 'data-testid' ?: string ;
2224 cursor ?: {
You can’t perform that action at this time.
0 commit comments