@croquiscom/pds 3.8.1 → 3.8.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,11 @@
1
1
  # @croquiscom/pds
2
2
 
3
+ ## 3.8.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 9bce60a: autoResetRowSelect 비활성화시 전체 선택 체크박스의 동작 버그 수정
8
+
3
9
  ## 3.8.1
4
10
 
5
11
  ### Patch Changes
@@ -21,7 +21,8 @@ export declare const StickyHeader: any;
21
21
  export declare const Scroll: any;
22
22
  export declare const Selection: any;
23
23
  export declare const ClickableSelection: any;
24
- export declare const ResetSelectedRows: any;
24
+ export declare const AutoResetRowSelectOn: any;
25
+ export declare const AutoResetRowSelectOff: any;
25
26
  export declare const BeforehandSelectionByKey: any;
26
27
  export declare const BeforehandSelectionByFunction: any;
27
28
  export declare const Sort: any;
@@ -93,10 +93,14 @@ export interface SelectRowAction<DataType> {
93
93
  }
94
94
  export interface SelectControlledRowAction<DataType> {
95
95
  type: 'SELECT_CONTROLLED_ROW';
96
- controlled_rows: TableRowsType<DataType>;
96
+ controlledRows: TableRowsType<DataType>;
97
97
  rows: TableRowsType<DataType>;
98
98
  }
99
- export interface ResetSelectRows {
99
+ export interface ResetSelectRowsAction {
100
100
  type: 'RESET_SELECTED_ROWS';
101
101
  }
102
- export type TableAction<DataType> = SelectRowsAction<DataType> | SelectRowAction<DataType> | SelectControlledRowAction<DataType> | ResetSelectRows;
102
+ export interface CheckAllSelectedRowsAction<DataType> {
103
+ type: 'CHECK_ALL_SELECTED_ROWS';
104
+ rows: TableRowsType<DataType>;
105
+ }
106
+ export type TableAction<DataType> = SelectRowsAction<DataType> | SelectRowAction<DataType> | SelectControlledRowAction<DataType> | ResetSelectRowsAction | CheckAllSelectedRowsAction<DataType>;