refactor: pivot-grid 컴포넌트 개선

This commit is contained in:
leeheejin
2026-01-08 17:11:46 +09:00
parent 551e893f15
commit a52ab0b206
5 changed files with 5 additions and 0 deletions

View File

@@ -236,3 +236,4 @@ pivot-grid/
2. **멀티테넌시**: `autoFilter.companyCode`를 통해 회사별 데이터 격리가 적용됩니다.
3. **필드 순서**: `areaIndex`를 통해 영역 내 필드 순서를 지정하세요.

View File

@@ -343,3 +343,4 @@ export interface PivotGridComponentConfig {
exportConfig?: PivotExportConfig;
}

View File

@@ -173,3 +173,4 @@ export function getAggregationLabel(type: AggregationType): string {
return labels[type] || "합계";
}

View File

@@ -1,3 +1,4 @@
export * from "./aggregation";
export * from "./pivotEngine";

View File

@@ -618,3 +618,4 @@ export function processPivotData(
};
}