feat: 다중 도메인 UI 개선 및 컴포넌트 리팩토링

- 게시판, HR, 설정, 차량관리, 건설, 견적 등 전반적 UI 개선
- FormField, TabChip, Select 등 공통 컴포넌트 개선
- 가격배분 edit 페이지 제거 및 상세 페이지 통합
- 체크리스트, 근태, 급여, 권한 관리 등 폼 개선

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
유병철
2026-02-25 22:30:06 +09:00
parent 1675bcbedf
commit 8f9507a665
86 changed files with 856 additions and 685 deletions

View File

@@ -12,7 +12,7 @@
import { useState, useCallback, memo } from 'react';
import { format } from 'date-fns';
import { User, Pencil, Trash2 } from 'lucide-react';
import { User, Edit, Trash2 } from 'lucide-react';
import { Button } from '@/components/ui/button';
import { Textarea } from '@/components/ui/textarea';
import { DeleteConfirmDialog } from '@/components/ui/confirm-dialog';
@@ -90,7 +90,7 @@ export const CommentItem = memo(function CommentItem({
{/* 댓글 내용 */}
<div className="flex-1 min-w-0">
{/* 작성자 정보 + 날짜 + 버튼 */}
<div className="flex items-center justify-between gap-2 mb-1">
<div className="flex flex-col sm:flex-row sm:items-center sm:justify-between gap-1 sm:gap-2 mb-1">
<div className="flex items-center gap-2 text-sm">
<span className="font-medium text-gray-900">{authorInfo}</span>
<span className="text-gray-400">
@@ -107,7 +107,7 @@ export const CommentItem = memo(function CommentItem({
className="h-7 px-2 text-gray-500 hover:text-gray-700"
onClick={handleEditClick}
>
<Pencil className="h-3 w-3 mr-1" />
<Edit className="h-3 w-3 mr-1" />
</Button>
<Button