@ceed/ads 1.41.3-next.2 → 1.41.3-next.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -74,10 +74,10 @@ export type BaseColumnDef<T extends Record<PropertyKey, V>, V, ID> = {
74
74
  [K in keyof T]: {
75
75
  field: K;
76
76
  /**
77
- * DataTable이 내부에서 자동으로 붙이는 컬럼 식별자(`__hds_column_0`, `__hds_column_1`, …).
78
- * 같은 `field`가 여러 쓰일 수 있고 `field#1` 같은 이름이 실제 `field`일 수도 있어, field 문자열과
79
- * 무관한 순번 기반 값을 쓴다. 표시 중인 컬럼의 순번이라 컬럼을 숨기면 컬럼의 값이 바뀐다.
80
- * 소비자가 지정하거나 외부에서 의존할 값이 아니다.
77
+ * DataTable이 내부에서 자동으로 붙이는 컬럼 식별자. `field`를 그대로 쓰고, 같은 `field`가 여러 번
78
+ * 정의된 경우에만 번째부터 `__2`, `__3` 접미사를 붙인다(이미 쓰인 이름은 건너뛴다).
79
+ * 숨긴 컬럼까지 포함한 전체 컬럼 기준으로 매기므로 컬럼을 숨겨도 값이 바뀌지 않는다.
80
+ * <col> key와 헤더 ref 매칭에만 쓰는 내부값이다. 소비자가 지정해도 무시되고, 외부에서 의존할 값이 아니다.
81
81
  */
82
82
  columnId?: string;
83
83
  headerName?: string;