Props for the MatchStatisticsCard component.
export interface MatchStatisticsCardProps { matchStats: { total: number; matched: number; pending: number; manual: number; skipped: number; }; noMatchesCount: number; searchTerm: string; onSearchTermChange: (value: string) => void; searchInputRef: React.RefObject<HTMLInputElement | null>; isFiltering?: boolean;} Copy
export interface MatchStatisticsCardProps { matchStats: { total: number; matched: number; pending: number; manual: number; skipped: number; }; noMatchesCount: number; searchTerm: string; onSearchTermChange: (value: string) => void; searchInputRef: React.RefObject<HTMLInputElement | null>; isFiltering?: boolean;}
Statistics for different match statuses.
Count of items with no matches found.
Current search term value.
Callback to update the search term.
Reference to the search input element.
Optional
Props for the MatchStatisticsCard component.
Source