@croquiscom/pds 15.9.0 → 15.9.2

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,17 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 15.9.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 5efa2cd: DropdownMultiSelect 화살표로 닫히지 않는 오류 수정
8
+
9
+ ## 15.9.1
10
+
11
+ ### Patch Changes
12
+
13
+ - f387c07: DataTable virtualizedProps 설명 수정
14
+
3
15
  ## 15.9.0
4
16
 
5
17
  ### Minor Changes
@@ -131,7 +131,7 @@ export interface DataTableProps<DataType> {
131
131
  */
132
132
  setContainerRef?: (node: HTMLDivElement | null) => void;
133
133
  /**
134
- * 가상화를 위한 데이터, 데이터 여부에 따라 가상화 처리를 합니다.
134
+ * 가상화 테이블에 사용되는 props입니다. 가상화된 테이블을 사용하기 위해서는 VirtualizedDataTable를 사용해주세요.
135
135
  */
136
136
  virtualizedProps?: {
137
137
  virtaulizedItems: VirtualItem[];