From 8966c2f9b18856d3db5e08ec173c8b561c050d09 Mon Sep 17 00:00:00 2001 From: Santiago Lavaise Date: Mon, 13 Apr 2026 12:00:49 -0300 Subject: [PATCH] Update: Rangos de referencia de laboratorio actualizados --- src/sections/HistoriaClinica.tsx | 53 ++++++++++++++++---------------- 1 file changed, 27 insertions(+), 26 deletions(-) diff --git a/src/sections/HistoriaClinica.tsx b/src/sections/HistoriaClinica.tsx index cf6d536..ef0ef7d 100644 --- a/src/sections/HistoriaClinica.tsx +++ b/src/sections/HistoriaClinica.tsx @@ -60,42 +60,43 @@ interface HistoriaClinicaProps { } const PARAMETROS_COMUNES: Record = { - 'Hemoglobina': { unidad: 'g/dL', referencia: '12-16' }, - 'Hematocrito': { unidad: '%', referencia: '36-46' }, - 'Glóbulos Blancos': { unidad: 'miles/μL', referencia: '4.5-11.0' }, - 'Plaquetas': { unidad: 'miles/μL', referencia: '150-450' }, + 'Hemoglobina': { unidad: 'g/dL', referencia: '12-14' }, + 'Hematocrito': { unidad: '%', referencia: '36-42' }, + 'Glóbulos Blancos': { unidad: 'cel/μL', referencia: '4000-11000' }, + 'Plaquetas': { unidad: 'unidades/μL', referencia: '150000-400000' }, 'Glucosa': { unidad: 'mg/dL', referencia: '70-100' }, - 'Urea': { unidad: 'mg/dL', referencia: '17-43' }, - 'Creatinina': { unidad: 'mg/dL', referencia: '0.7-1.3' }, + 'Urea': { unidad: 'mg/dL', referencia: '17-48.5' }, + 'Creatinina': { unidad: 'mg/dL', referencia: '0.5-1' }, 'Sodio': { unidad: 'mEq/L', referencia: '135-145' }, - 'Potasio': { unidad: 'mEq/L', referencia: '3.5-5.0' }, - 'Cloro': { unidad: 'mEq/L', referencia: '98-106' }, - 'Bilirrubina Total': { unidad: 'mg/dL', referencia: '0.1-1.2' }, - 'TGO/AST': { unidad: 'U/L', referencia: '10-40' }, - 'TGP/ALT': { unidad: 'U/L', referencia: '10-40' }, - 'TP': { unidad: 'seg', referencia: '12-14' }, - 'KPTT': { unidad: 'seg', referencia: '25-35' }, - 'RIN': { unidad: '', referencia: '0.8-1.2' }, + 'Potasio': { unidad: 'mEq/L', referencia: '3.5-5.1' }, + 'Cloro': { unidad: 'mEq/L', referencia: '101-109' }, + 'Bilirrubina Total': { unidad: 'mg/dL', referencia: '0-1.2' }, + 'Bilirrubina Directa': { unidad: 'mg/dL', referencia: '0-0.3' }, + 'TGO/AST': { unidad: 'U/L', referencia: '0-35' }, + 'TGP/ALT': { unidad: 'U/L', referencia: '0-35' }, + 'TP': { unidad: '%', referencia: '70-100' }, + 'KPTT': { unidad: 'seg', referencia: '30-45' }, + 'RIN': { unidad: '', referencia: '0.8-1.5' }, }; const RANGOS_LABORATORIO: Record = { - 'Hematocrito': { min: 36, max: 46 }, - 'Hemoglobina': { min: 12, max: 16 }, - 'Leucocitos': { min: 4.5, max: 11 }, - 'Plaquetas': { min: 150, max: 450 }, + 'Hematocrito': { min: 36, max: 42 }, + 'Hemoglobina': { min: 12, max: 14 }, + 'Leucocitos': { min: 4000, max: 11000 }, + 'Plaquetas': { min: 150000, max: 400000 }, 'Glucemia': { min: 70, max: 100 }, - 'Urea': { min: 17, max: 43 }, - 'Creatinina': { min: 0.7, max: 1.3 }, + 'Urea': { min: 17, max: 48.5 }, + 'Creatinina': { min: 0.5, max: 1.2 }, 'Sodio': { min: 135, max: 145 }, - 'Potasio': { min: 3.5, max: 5.0 }, - 'Cloro': { min: 98, max: 106 }, + 'Potasio': { min: 3.5, max: 5.1 }, + 'Cloro': { min: 101, max: 109 }, 'Bilirrubina Total': { min: 0.1, max: 1.2 }, 'Bilirrubina Directa': { min: 0, max: 0.3 }, - 'GOT': { min: 10, max: 40 }, - 'GPT': { min: 10, max: 40 }, + 'GOT': { min: 0, max: 35 }, + 'GPT': { min: 0, max: 35 }, 'Tiempo de Protrombina': { min: 12, max: 14 }, - 'KPTT': { min: 25, max: 35 }, - 'INR': { min: 0.8, max: 1.2 }, + 'KPTT': { min: 30, max: 45 }, + 'INR': { min: 0.8, max: 1.5 }, }; function calcularEstadoLaboratorio(parametro: string, valor: string): 'Normal' | 'Alto' | 'Bajo' {