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;
}
interface MatchingSettingsSectionProps {
    sectionId: string;
    matchConfig: MatchConfig;
    searchQuery: string;
    highlightedSectionId: null | string;
    onMatchConfigChange: (config: MatchConfig, field: string) => void;
}

Properties

sectionId: string

Unique identifier for this settings section.

matchConfig: MatchConfig

Current matching configuration.

searchQuery: string

Current search query.

highlightedSectionId: null | string

Currently highlighted section ID.

onMatchConfigChange: (config: MatchConfig, field: string) => void

Callback when matching config changes.