@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 +6 -0
- package/dist/components/table/DataTable.d.ts +9 -0
- package/dist/components/table/DataTable.stories.d.ts +1 -0
- package/dist/components/table/types.d.ts +7 -1
- package/dist/index.es.js +1 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -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
|
|
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>;
|