change some files

This commit is contained in:
2026-06-02 17:08:52 +03:30
parent b8dc1d0e1b
commit cfb48c5bb0
76 changed files with 5204 additions and 2555 deletions

View File

@@ -0,0 +1,35 @@
// physical-info.constants.ts
import { BloodType, PhysicalInfoFormValues } from "../types";
export const PHYSICAL_INFO_EMPTY_VALUES: PhysicalInfoFormValues = {
applicantId: "",
bloodType: "",
height: "",
weight: "",
bmi: "",
hasDisability: false,
disabilityDescription: "",
hasChronicDisease: false,
chronicDiseaseDescription: "",
surgeryHistory: "",
medications: "",
specialMark: "",
};
export const BLOOD_TYPE_OPTIONS: Exclude<BloodType, "">[] = [
"A+",
"A-",
"B+",
"B-",
"AB+",
"AB-",
"O+",
"O-",
];