Props for MatchingSettingsSection component.
interface MatchingSettingsSectionProps { /** Unique identifier for this settings section. */ sectionId: string; /** Current matching configuration. */ matchConfig: MatchConfig; /** Current search query. */ searchQuery: string; /** Currently highlighted section ID. */ highlightedSectionId: string | null; /** Callback when matching config changes. */ onMatchConfigChange: (config: MatchConfig, field: string) => void;} Copy
interface MatchingSettingsSectionProps { /** Unique identifier for this settings section. */ sectionId: string; /** Current matching configuration. */ matchConfig: MatchConfig; /** Current search query. */ searchQuery: string; /** Currently highlighted section ID. */ highlightedSectionId: string | null; /** Callback when matching config changes. */ onMatchConfigChange: (config: MatchConfig, field: string) => void;}
Unique identifier for this settings section.
Current matching configuration.
Current search query.
Currently highlighted section ID.
Callback when matching config changes.
Props for MatchingSettingsSection component.
Source