change some files
This commit is contained in:
35
ui/forms/physicalInfo/constants/index.ts
Normal file
35
ui/forms/physicalInfo/constants/index.ts
Normal 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-",
|
||||
];
|
||||
Reference in New Issue
Block a user