Skip to content

Commit

Permalink
update relase page
Browse files Browse the repository at this point in the history
  • Loading branch information
radubrehar committed Aug 14, 2024
1 parent b0a3e06 commit 64705df
Show file tree
Hide file tree
Showing 2 changed files with 45 additions and 0 deletions.
37 changes: 37 additions & 0 deletions www/content/docs/reference/infinite-table-props.page.md
Original file line number Diff line number Diff line change
Expand Up @@ -975,6 +975,27 @@ If a column doesn't specify a <PropLink name="columns.sortType">sortType</PropLi

</Prop>

<Prop name="columns.defaultDraggable" type="boolean">

> Specifies whether the column is draggable by default (for reordering columns).
This property overrides the global <PropLink name="columnDefaultDraggable" />.
</Prop>

<Prop name="draggableColumns" type="boolean">

> Specifies whether columns are draggable (for reordering columns).
This property overrides the global <PropLink name="columnDefaultDraggable" /> and the column-level <PropLink name="columns.defaultDraggable" />.
</Prop>

<Prop name="columnDefaultDraggable" type="boolean">

> Specifies whether columns are draggable by default (for reordering columns).
This is overriden by <PropLink name="columns.defaultDraggable" /> and <PropLink name="draggableColumns" />.
</Prop>

<Prop name="columns.defaultEditable" type="boolean|(param)=>boolean|Promise<boolean>">

> Controls if the column is editable or not.
Expand Down Expand Up @@ -1027,6 +1048,22 @@ See related <PropLink name="columns.defaultWidth" />

</Prop>

<Prop name="columnGroupVisibility" type="Record<string, boolean>">

> Controls the visibility of column groups. By default, column groups are visible.
```tsx
<InfiniteTable<DATA_TYPE>
columnGroupVisibility={{
'country': false,
'city': true,
}}
columns={{...}}
/>
```

</Prop>

<Prop name="columns.defaultHiddenWhenGroupedBy" type="'*'| true | keyof DATA_TYPE | { [keyof DATA_TYPE]: true }">

> Controls default column visibility when <DataSourcePropLink name="groupBy" /> is used.
Expand Down
8 changes: 8 additions & 0 deletions www/content/docs/releases/index.page.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 64705df

Please sign in to comment.