@croquiscom/pds 15.13.1 → 15.14.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
+ ## 15.14.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 5cff1bf: DataTable > rowExpansion, onExpandRows 옵션 추가
8
+
3
9
  ## 15.13.1
4
10
 
5
11
  ### Patch Changes
@@ -107,6 +107,15 @@ export interface DataTableProps<DataType> {
107
107
  * @default true
108
108
  */
109
109
  expandableButton?: boolean;
110
+ /**
111
+ * 테이블 로우 확장 상태
112
+ * - 각 테이블 로우에 고유 key가 존재해야 합니다.
113
+ */
114
+ rowExpansion?: Key[];
115
+ /**
116
+ * 확장된 로우의 키 리스트를 전달합니다.
117
+ */
118
+ onExpandRows?: (expandedRowKeys: Key[]) => void;
110
119
  /**
111
120
  * 열 하위에 확장된 Row를 렌더링합니다.
112
121
  * - 각 테이블 로우에 고유 key가 존재해야 합니다.
@@ -37,4 +37,5 @@ export declare const CustomRowColor: Story;
37
37
  export declare const DisabledCellOff: Story;
38
38
  export declare const ExpandableRow: Story;
39
39
  export declare const ExpandableRowNoButton: Story;
40
+ export declare const BeforehandExpansionByKey: Story;
40
41
  export declare const WrapperSticky: Story;
@@ -109,6 +109,7 @@ export interface DataTableState<DataType = any> {
109
109
  emitSelectedEvent?: boolean;
110
110
  autoResetRowSelection?: boolean;
111
111
  expandedRows?: Key[];
112
+ emitExpandedEvent?: boolean;
112
113
  }
113
114
  export interface SelectRowsAction<DataType> {
114
115
  type: 'SELECT_ROWS';
@@ -137,4 +138,9 @@ export interface ExpandedRowAction<DataType> {
137
138
  row: DataTableRowType<DataType>;
138
139
  expanded: boolean;
139
140
  }
140
- export type DataTableAction<DataType> = SelectRowsAction<DataType> | SelectRowAction<DataType> | SelectControlledRowAction<DataType> | ResetSelectRowsAction | CheckAllSelectedRowsAction<DataType> | ExpandedRowAction<DataType>;
141
+ export interface ExpandControlledRowAction<DataType> {
142
+ type: 'EXPAND_CONTROLLED_ROW';
143
+ expandedRows: Key[];
144
+ rows: DataTableRowsType<DataType>;
145
+ }
146
+ export type DataTableAction<DataType> = SelectRowsAction<DataType> | SelectRowAction<DataType> | SelectControlledRowAction<DataType> | ResetSelectRowsAction | CheckAllSelectedRowsAction<DataType> | ExpandedRowAction<DataType> | ExpandControlledRowAction<DataType>;