화면관리 중간 커밋
This commit is contained in:
@@ -38,6 +38,16 @@ export const TABLE_MANAGEMENT_KEYS = {
|
||||
WEB_TYPE_CODE_DESC: "table.management.web.type.code.description",
|
||||
WEB_TYPE_ENTITY: "table.management.web.type.entity",
|
||||
WEB_TYPE_ENTITY_DESC: "table.management.web.type.entity.description",
|
||||
WEB_TYPE_TEXTAREA: "table.management.web.type.textarea",
|
||||
WEB_TYPE_TEXTAREA_DESC: "table.management.web.type.textarea.description",
|
||||
WEB_TYPE_SELECT: "table.management.web.type.select",
|
||||
WEB_TYPE_SELECT_DESC: "table.management.web.type.select.description",
|
||||
WEB_TYPE_CHECKBOX: "table.management.web.type.checkbox",
|
||||
WEB_TYPE_CHECKBOX_DESC: "table.management.web.type.checkbox.description",
|
||||
WEB_TYPE_RADIO: "table.management.web.type.radio",
|
||||
WEB_TYPE_RADIO_DESC: "table.management.web.type.radio.description",
|
||||
WEB_TYPE_FILE: "table.management.web.type.file",
|
||||
WEB_TYPE_FILE_DESC: "table.management.web.type.file.description",
|
||||
|
||||
// 공통 UI 요소
|
||||
BUTTON_REFRESH: "table.management.button.refresh",
|
||||
@@ -100,4 +110,29 @@ export const WEB_TYPE_OPTIONS_WITH_KEYS = [
|
||||
labelKey: TABLE_MANAGEMENT_KEYS.WEB_TYPE_ENTITY,
|
||||
descriptionKey: TABLE_MANAGEMENT_KEYS.WEB_TYPE_ENTITY_DESC,
|
||||
},
|
||||
{
|
||||
value: "textarea",
|
||||
labelKey: TABLE_MANAGEMENT_KEYS.WEB_TYPE_TEXTAREA,
|
||||
descriptionKey: TABLE_MANAGEMENT_KEYS.WEB_TYPE_TEXTAREA_DESC,
|
||||
},
|
||||
{
|
||||
value: "select",
|
||||
labelKey: TABLE_MANAGEMENT_KEYS.WEB_TYPE_SELECT,
|
||||
descriptionKey: TABLE_MANAGEMENT_KEYS.WEB_TYPE_SELECT_DESC,
|
||||
},
|
||||
{
|
||||
value: "checkbox",
|
||||
labelKey: TABLE_MANAGEMENT_KEYS.WEB_TYPE_CHECKBOX,
|
||||
descriptionKey: TABLE_MANAGEMENT_KEYS.WEB_TYPE_CHECKBOX_DESC,
|
||||
},
|
||||
{
|
||||
value: "radio",
|
||||
labelKey: TABLE_MANAGEMENT_KEYS.WEB_TYPE_RADIO,
|
||||
descriptionKey: TABLE_MANAGEMENT_KEYS.WEB_TYPE_RADIO_DESC,
|
||||
},
|
||||
{
|
||||
value: "file",
|
||||
labelKey: TABLE_MANAGEMENT_KEYS.WEB_TYPE_FILE,
|
||||
descriptionKey: TABLE_MANAGEMENT_KEYS.WEB_TYPE_FILE_DESC,
|
||||
},
|
||||
] as const;
|
||||
|
||||
Reference in New Issue
Block a user