From a52ab0b206cb5153753fcd98a234b98aa5fdd21a Mon Sep 17 00:00:00 2001 From: leeheejin Date: Thu, 8 Jan 2026 17:11:46 +0900 Subject: [PATCH] =?UTF-8?q?refactor:=20pivot-grid=20=EC=BB=B4=ED=8F=AC?= =?UTF-8?q?=EB=84=8C=ED=8A=B8=20=EA=B0=9C=EC=84=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/lib/registry/components/pivot-grid/README.md | 1 + frontend/lib/registry/components/pivot-grid/types.ts | 1 + frontend/lib/registry/components/pivot-grid/utils/aggregation.ts | 1 + frontend/lib/registry/components/pivot-grid/utils/index.ts | 1 + frontend/lib/registry/components/pivot-grid/utils/pivotEngine.ts | 1 + 5 files changed, 5 insertions(+) diff --git a/frontend/lib/registry/components/pivot-grid/README.md b/frontend/lib/registry/components/pivot-grid/README.md index 6ce42532..bc6fba52 100644 --- a/frontend/lib/registry/components/pivot-grid/README.md +++ b/frontend/lib/registry/components/pivot-grid/README.md @@ -236,3 +236,4 @@ pivot-grid/ 2. **멀티테넌시**: `autoFilter.companyCode`를 통해 회사별 데이터 격리가 적용됩니다. 3. **필드 순서**: `areaIndex`를 통해 영역 내 필드 순서를 지정하세요. + diff --git a/frontend/lib/registry/components/pivot-grid/types.ts b/frontend/lib/registry/components/pivot-grid/types.ts index c7f30186..e0ea3199 100644 --- a/frontend/lib/registry/components/pivot-grid/types.ts +++ b/frontend/lib/registry/components/pivot-grid/types.ts @@ -343,3 +343,4 @@ export interface PivotGridComponentConfig { exportConfig?: PivotExportConfig; } + diff --git a/frontend/lib/registry/components/pivot-grid/utils/aggregation.ts b/frontend/lib/registry/components/pivot-grid/utils/aggregation.ts index f0e5302b..39aa1c5f 100644 --- a/frontend/lib/registry/components/pivot-grid/utils/aggregation.ts +++ b/frontend/lib/registry/components/pivot-grid/utils/aggregation.ts @@ -173,3 +173,4 @@ export function getAggregationLabel(type: AggregationType): string { return labels[type] || "합계"; } + diff --git a/frontend/lib/registry/components/pivot-grid/utils/index.ts b/frontend/lib/registry/components/pivot-grid/utils/index.ts index 46d785c9..f832187e 100644 --- a/frontend/lib/registry/components/pivot-grid/utils/index.ts +++ b/frontend/lib/registry/components/pivot-grid/utils/index.ts @@ -1,3 +1,4 @@ export * from "./aggregation"; export * from "./pivotEngine"; + diff --git a/frontend/lib/registry/components/pivot-grid/utils/pivotEngine.ts b/frontend/lib/registry/components/pivot-grid/utils/pivotEngine.ts index 5117c2df..18113066 100644 --- a/frontend/lib/registry/components/pivot-grid/utils/pivotEngine.ts +++ b/frontend/lib/registry/components/pivot-grid/utils/pivotEngine.ts @@ -618,3 +618,4 @@ export function processPivotData( }; } +