@croquiscom/pds 13.2.0 → 13.3.0

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
+ ## 13.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 5cacd4c: DataTable 세로 Scroll 발생시 자동 stickyHeader 처리 추가
8
+
3
9
  ## 13.2.0
4
10
 
5
11
  ### Minor Changes
@@ -27,8 +27,8 @@ export interface DataTableProps<DataType> {
27
27
  */
28
28
  loading?: boolean;
29
29
  /**
30
- * 테이블 헤더 고정 여부, 세로 스크롤 발생시 고정됩니다.
31
- * @default false
30
+ * 테이블 헤더 고정 여부, 세로 스크롤 발생시 자동 고정되며 사용처에서 재정의할 수 있습니다.
31
+ * @default true
32
32
  */
33
33
  stickyHeader?: boolean;
34
34
  /**
@@ -18,7 +18,7 @@ export declare const CustomNoDataPadding: Story;
18
18
  export declare const ColumnGroup: Story;
19
19
  export declare const CellSpan: Story;
20
20
  export declare const ColumnFixed: Story;
21
- export declare const StickyHeader: Story;
21
+ export declare const DisabledStickyHeader: Story;
22
22
  export declare const Scroll: Story;
23
23
  export declare const Selection: Story;
24
24
  export declare const ClickableSelection: Story;
@@ -1,3 +1,4 @@
1
1
  export declare const COLUMN_MIN_WIDTH = 48;
2
2
  export declare const COLUMN_MIN_HEIGHT = 48;
3
3
  export declare const EXPAND_COLUMN_WIDTH = 52;
4
+ export declare const SCROLL_MAX_HEIGHT = 600;