This repository was archived by the owner on Jun 4, 2024. It is now read-only.
File tree 2 files changed +8
-7
lines changed
2 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -273,6 +273,7 @@ export interface IProps {
273
273
filter_query ?: string ;
274
274
filter_action ?: TableAction ;
275
275
hidden_columns ?: string [ ] ;
276
+ include_headers_on_copy_paste ?: boolean ;
276
277
locale_format : INumberLocale ;
277
278
merge_duplicate_headers ?: boolean ;
278
279
fixed_columns ?: Fixed ;
Original file line number Diff line number Diff line change @@ -287,13 +287,6 @@ export const propTypes = {
287
287
*/
288
288
id : PropTypes . string . isRequired ,
289
289
290
- /**
291
- * If true, headers are included when copying from the table to different
292
- * tabs and elsewhere. Note that headers are ignored when copying from the table onto itself and
293
- * between two tables within the same tab.
294
- */
295
- include_headers_on_copy_paste : PropTypes . bool ,
296
-
297
290
/**
298
291
* The `name` of the column,
299
292
* as it appears in the column header.
@@ -392,6 +385,13 @@ export const propTypes = {
392
385
type : PropTypes . oneOf ( [ 'any' , 'numeric' , 'text' , 'datetime' ] )
393
386
} ) ) ,
394
387
388
+ /**
389
+ * If true, headers are included when copying from the table to different
390
+ * tabs and elsewhere. Note that headers are ignored when copying from the table onto itself and
391
+ * between two tables within the same tab.
392
+ */
393
+ include_headers_on_copy_paste : PropTypes . bool ,
394
+
395
395
/**
396
396
* The localization specific formatting information applied to all columns in the table.
397
397
*
You can’t perform that action at this time.
0 commit comments