@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
|
@@ -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
|
|
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
|
-
|
|
96
|
+
controlledRows: TableRowsType<DataType>;
|
|
97
97
|
rows: TableRowsType<DataType>;
|
|
98
98
|
}
|
|
99
|
-
export interface
|
|
99
|
+
export interface ResetSelectRowsAction {
|
|
100
100
|
type: 'RESET_SELECTED_ROWS';
|
|
101
101
|
}
|
|
102
|
-
export
|
|
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>;
|