@croquiscom/pds 0.47.4 → 0.47.5

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 0.47.5
4
+
5
+ ### Patch Changes
6
+
7
+ - 0803997: Table GroupColumn stickyHeader 스타일 이슈 수정
8
+
3
9
  ## 0.47.4
4
10
 
5
11
  ### Patch Changes
@@ -1,9 +1,11 @@
1
1
  import React from 'react';
2
2
  import { TableColumnBase, SortDirection } from './types';
3
- export declare const COLUMNS_MIN_WIDTH = 48;
3
+ export declare const COLUMN_MIN_WIDTH = 48;
4
+ export declare const COLUMN_MIN_HEIGHT = 48;
4
5
  interface TableColProps extends TableColumnBase {
5
6
  id: string;
6
7
  fixedColWidth?: number;
8
+ groupColumn?: boolean;
7
9
  stickyHeader?: boolean;
8
10
  sortBy?: string;
9
11
  sortDirection?: SortDirection;