Skip to content

Commit

Permalink
Refactor #4078
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Feb 20, 2023
1 parent e83f7c7 commit 9c90dd9
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 6 deletions.
1 change: 0 additions & 1 deletion components/lib/datatable/DataTableBase.js
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,6 @@ export const DataTableBase = {
rowHover: false,
rows: null,
rowsPerPageOptions: null,
scrollDirection: 'vertical',
scrollHeight: null,
scrollable: false,
selectAll: false,
Expand Down
6 changes: 1 addition & 5 deletions components/lib/datatable/datatable.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -940,6 +940,7 @@ export interface DataTableProps<TValue extends DataTableValueArray> extends Omit
/**
* Defines the responsive mode, valid options are "stack" and "scroll".
* @defaultValue scroll
* @deprecated since version 9.2.0
*/
responsiveLayout?: 'scroll' | 'stack' | undefined;
/**
Expand All @@ -966,11 +967,6 @@ export interface DataTableProps<TValue extends DataTableValueArray> extends Omit
* Array of integer values to display inside rows per page dropdown.
*/
rowsPerPageOptions?: number[] | undefined;
/**
* Orientation of the scrolling, options are "vertical", "horizontal" and "both".
* @defaultValue vertical|horizontal
*/
scrollDirection?: 'vertical' | 'horizontal' | 'both' | undefined;
/**
* Height of the scroll viewport.
*/
Expand Down

0 comments on commit 9c90dd9

Please sign in to comment.