@@ -301,6 +301,7 @@ export interface IProps {
301
301
tooltip_conditional : ConditionalTooltip [ ] ;
302
302
303
303
active_cell ?: ICellCoordinates ;
304
+ cell_selectable ?: boolean ;
304
305
column_selectable ?: Selection ;
305
306
columns ?: Columns ;
306
307
dropdown ?: StaticDropdowns ;
@@ -351,35 +352,35 @@ export interface IProps {
351
352
}
352
353
353
354
interface IDefaultProps {
354
- active_cell : ICellCoordinates ;
355
+ cell_selectable : boolean ;
355
356
column_selectable : Selection ;
357
+ css : IStylesheetRule [ ] ;
356
358
dropdown : StaticDropdowns ;
357
359
dropdown_conditional : ConditionalDropdowns ;
358
360
dropdown_data : DataDropdowns ;
359
- css : IStylesheetRule [ ] ;
360
361
editable : boolean ;
362
+ end_cell : ICellCoordinates ;
361
363
export_columns : ExportColumns ;
362
364
export_format : ExportFormat ;
363
365
export_headers : ExportHeaders ;
364
366
fill_width : boolean ;
365
367
filter_query : string ;
366
368
filter_action : TableAction ;
367
- include_headers_on_copy_paste : boolean ;
368
- merge_duplicate_headers : boolean ;
369
369
fixed_columns : Fixed ;
370
370
fixed_rows : Fixed ;
371
+ include_headers_on_copy_paste : boolean ;
372
+ merge_duplicate_headers : boolean ;
371
373
row_deletable : boolean ;
372
374
row_selectable : Selection ;
373
375
selected_cells : SelectedCells ;
374
376
selected_columns : string [ ] ;
375
- start_cell : ICellCoordinates ;
376
- end_cell : ICellCoordinates ;
377
- selected_rows : Indices ;
378
377
selected_row_ids : RowId [ ] ;
378
+ selected_rows : Indices ;
379
379
sort_action : TableAction ;
380
380
sort_by : SortBy ;
381
381
sort_mode : SortMode ;
382
382
sort_as_null : SortAsNull ;
383
+ start_cell : ICellCoordinates ;
383
384
style_as_list_view : boolean ;
384
385
tooltip_data : DataTooltips ;
385
386
@@ -475,8 +476,9 @@ export type HeaderFactoryProps = ControlledTableProps & {
475
476
} ;
476
477
477
478
export interface ICellFactoryProps {
478
- active_cell : ICellCoordinates ;
479
+ active_cell ? : ICellCoordinates ;
479
480
applyFocus ?: boolean ;
481
+ cell_selectable : boolean ;
480
482
dropdown : StaticDropdowns ;
481
483
dropdown_conditional : ConditionalDropdowns ;
482
484
dropdown_data : DataDropdowns ;
0 commit comments