File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
packages/blade/src/components/Table Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -120,7 +120,7 @@ const RefreshWrapper = styled(BaseBox)<{
120
120
const _Table = < Item , > ( {
121
121
children,
122
122
data,
123
- multiSelectionMode = 'row' ,
123
+ multiSelectTrigger = 'row' ,
124
124
selectionType = 'none' ,
125
125
onSelectionChange,
126
126
isHeaderSticky,
@@ -263,7 +263,7 @@ const _Table = <Item,>({
263
263
} ,
264
264
{
265
265
clickType :
266
- multiSelectionMode === 'row' ? SelectClickTypes . RowClick : SelectClickTypes . ButtonClick ,
266
+ multiSelectTrigger === 'row' ? SelectClickTypes . RowClick : SelectClickTypes . ButtonClick ,
267
267
rowSelect : selectionType !== 'none' ? rowSelectType [ selectionType ] : undefined ,
268
268
} ,
269
269
) ;
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ type TableProps<Item> = {
76
76
* Selection mode determines how the table rows can be selected.
77
77
* @default 'row'
78
78
**/
79
- multiSelectionMode ?: 'checkbox' | 'row' ;
79
+ multiSelectTrigger ?: 'checkbox' | 'row' ;
80
80
/**
81
81
* The selectionType prop determines the type of selection that is allowed on the table.
82
82
* The selectionType prop can be 'none', 'single' or 'multiple'.
You can’t perform that action at this time.
0 commit comments