- CommandMenuSearch 컴포넌트 추가 (Cmd+K 글로벌 메뉴 검색) - AuthenticatedLayout: 검색 통합, 모바일/데스크톱 스켈레톤 분리 - middleware: 토큰 갱신 후 리다이렉트 방식으로 변경 (race condition 방지) - IntegratedDetailTemplate: stickyButtons 옵션 추가 (하단 고정 버튼) - UniversalListPage: 컬럼 정렬 기능 추가 (sortBy, sortOrder) - Sidebar: 축소 모드 패딩/간격 최적화 - 각종 컴포넌트 버그 수정 및 경로 정규화 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
39 lines
862 B
TypeScript
39 lines
862 B
TypeScript
'use client';
|
|
|
|
import { Building2 } from 'lucide-react';
|
|
import type { DetailConfig } from '@/components/templates/IntegratedDetailTemplate/types';
|
|
|
|
/**
|
|
* 거래처 등록 페이지 Config
|
|
*/
|
|
export const clientCreateConfig: DetailConfig = {
|
|
title: '거래처',
|
|
description: '거래처 정보를 입력하세요',
|
|
icon: Building2,
|
|
basePath: '/sales/client-management',
|
|
fields: [],
|
|
actions: {
|
|
showBack: true,
|
|
showSave: true,
|
|
submitLabel: '등록',
|
|
backLabel: '취소',
|
|
},
|
|
};
|
|
|
|
/**
|
|
* 거래처 수정 페이지 Config
|
|
*/
|
|
export const clientEditConfig: DetailConfig = {
|
|
title: '거래처',
|
|
description: '거래처 정보를 수정합니다',
|
|
icon: Building2,
|
|
basePath: '/sales/client-management',
|
|
fields: [],
|
|
actions: {
|
|
showBack: true,
|
|
showSave: true,
|
|
submitLabel: '수정',
|
|
backLabel: '취소',
|
|
},
|
|
};
|