diff --git a/www/content/docs/reference/infinite-table-props.page.md b/www/content/docs/reference/infinite-table-props.page.md index 29aaf9e2..304b687c 100644 --- a/www/content/docs/reference/infinite-table-props.page.md +++ b/www/content/docs/reference/infinite-table-props.page.md @@ -975,6 +975,27 @@ If a column doesn't specify a sortType + + +> Specifies whether the column is draggable by default (for reordering columns). + +This property overrides the global . + + + + +> Specifies whether columns are draggable (for reordering columns). + +This property overrides the global and the column-level . + + + + +> Specifies whether columns are draggable by default (for reordering columns). + +This is overriden by and . + + > Controls if the column is editable or not. @@ -1027,6 +1048,22 @@ See related + + +> Controls the visibility of column groups. By default, column groups are visible. + +```tsx + + columnGroupVisibility={{ + 'country': false, + 'city': true, + }} + columns={{...}} +/> +``` + + + > Controls default column visibility when is used. diff --git a/www/content/docs/releases/index.page.md b/www/content/docs/releases/index.page.md index c4d99d1a..acaf359a 100644 --- a/www/content/docs/releases/index.page.md +++ b/www/content/docs/releases/index.page.md @@ -3,6 +3,14 @@ title: Releases description: All releases | Infinite Table DataGrid for React --- +## 4.3.7 + +@milestone id="124" + +## 4.3.2 + +@milestone id="123" + ## 4.3.0 Fix major lazy loading bugs and issues.