/**
 * REP-PERF-R15-01: Shared visible-row budget for all three report render surfaces
 * (ReportPreview, SharedReport/Body, ReportHtmlRenderer).
 *
 * These constants MUST match the PHP constants in ReportHtmlRenderer:
 *   VISIBLE_FINDINGS   ↔  self::VISIBLE_FINDINGS
 *   VISIBLE_RECOMMENDATIONS ↔  self::VISIBLE_RECOMMENDATIONS
 *   VISIBLE_DRAFTS     ↔  self::VISIBLE_DRAFTS
 *   VISIBLE_ROI        ↔  self::VISIBLE_ROI
 *
 * When changing a value here, update the matching PHP constant too.
 */
export const VISIBLE_FINDINGS = 20;
export const VISIBLE_RECOMMENDATIONS = 10;
export const VISIBLE_DRAFTS = 5;
export const VISIBLE_ROI = 10;
