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( }; } +