change some files
This commit is contained in:
39
ui/forms/skillsForm/constant/index.ts
Normal file
39
ui/forms/skillsForm/constant/index.ts
Normal file
@@ -0,0 +1,39 @@
|
||||
import type { ProficiencyLevel, SkillsFormValues } from "../types";
|
||||
|
||||
export const proficiencyOptions: { value: ProficiencyLevel; label: string }[] = [
|
||||
{ value: "", label: "انتخاب ..." },
|
||||
{ value: "NONE", label: "ندارد" },
|
||||
{ value: "VERY_WEAK", label: "خیلی ضعیف" },
|
||||
{ value: "WEAK", label: "ضعیف" },
|
||||
{ value: "AVERAGE", label: "متوسط" },
|
||||
{ value: "GOOD", label: "خوب" },
|
||||
{ value: "VERY_GOOD", label: "خیلی خوب" },
|
||||
{ value: "EXCELLENT", label: "عالی" },
|
||||
];
|
||||
|
||||
export const certTypes = ["IELTS", "TOFEL", "TOLIMO", "MCHE"] as const;
|
||||
|
||||
export const INITIAL_SKILLS_VALUES: SkillsFormValues = {
|
||||
computerSkill: {
|
||||
pcUsage: "",
|
||||
word: "",
|
||||
excel: "",
|
||||
powerPoint: "",
|
||||
rahkaran: "",
|
||||
kasra: "",
|
||||
didgah: "",
|
||||
his: "",
|
||||
otherSoftware: "",
|
||||
},
|
||||
languageSkill: {
|
||||
englishLevel: "",
|
||||
englishDescription: "",
|
||||
hasEnglishCertificate: false,
|
||||
englishCertificateType: "",
|
||||
arabicLevel: "",
|
||||
arabicDescription: "",
|
||||
otherLanguagesDescription: "",
|
||||
dialectsDescription: "",
|
||||
otherSkills: "",
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user