카테고리 기능 구현

This commit is contained in:
kjs
2025-11-05 15:23:57 +09:00
parent f4fd1184cd
commit 573a300a4a
35 changed files with 9577 additions and 131 deletions

View File

@@ -62,6 +62,8 @@ export const TABLE_MANAGEMENT_KEYS = {
WEB_TYPE_URL_DESC: "table.management.web.type.url.description",
WEB_TYPE_DROPDOWN: "table.management.web.type.dropdown",
WEB_TYPE_DROPDOWN_DESC: "table.management.web.type.dropdown.description",
WEB_TYPE_CATEGORY: "table.management.web.type.category",
WEB_TYPE_CATEGORY_DESC: "table.management.web.type.category.description",
// 공통 UI 요소
BUTTON_REFRESH: "table.management.button.refresh",
@@ -184,4 +186,9 @@ export const WEB_TYPE_OPTIONS_WITH_KEYS = [
labelKey: TABLE_MANAGEMENT_KEYS.WEB_TYPE_DROPDOWN,
descriptionKey: TABLE_MANAGEMENT_KEYS.WEB_TYPE_DROPDOWN_DESC,
},
{
value: "category",
labelKey: TABLE_MANAGEMENT_KEYS.WEB_TYPE_CATEGORY,
descriptionKey: TABLE_MANAGEMENT_KEYS.WEB_TYPE_CATEGORY_DESC,
},
] as const;