Dash-ag-grid

Latest version: v31.3.1

Safety actively analyzes 723947 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 2 of 4

2.3.0

Added
- [212](https://github.com/plotly/dash-ag-grid/pull/212) Async function for `getApiAsync` and `getColumnApiAsync` for use with grid initializing

Fixed
- [226](https://github.com/plotly/dash-ag-grid/pull/226) Fixed issue when using grouped rows with `rowData` and `virtualRowData` populating incorrectly. [#215](https://github.com/plotly/dash-ag-grid/issues/215)

2.2.0

Added
- [199](https://github.com/plotly/dash-ag-grid/pull/199) Add `scrollTo` prop which allows scrolling to rows and columns.
- [209](https://github.com/plotly/dash-ag-grid/pull/209) Add `getApi` and `getColumnApi` to `dash_ag_grid` namespace to allow for JS functions to call the grid's API directly

Fixed
- [210](https://github.com/plotly/dash-ag-grid/pull/210) Fix issue with `columnState` and React 18

Updated
- [210](https://github.com/plotly/dash-ag-grid/pull/210) Migrate props that use `setProps` from the `render()` to `componentDidUpdate`

2.1.0

Added
- [201](https://github.com/plotly/dash-ag-grid/pull/201) Add `cellDoubleClicked` prop, which works exactly like `cellClicked`

Updated
- [174](https://github.com/plotly/dash-ag-grid/pull/174)
- `columnState` floats during grid interaction and only gets pushed when sent in a callback
- `columnDefs` trumps `columnState` if it is pushed in a callback without a `columnState`

- [207](https://github.com/plotly/dash-ag-grid/pull/207) Update AG Grid from 29.3.3 to 29.3.5, with a few minor bugfixes, see their changelog for [29.3.4](https://www.ag-grid.com/changelog/?fixVersion=29.3.4) and [29.3.5](https://www.ag-grid.com/changelog/?fixVersion=29.3.5). Also other minor dependency updates.

Fixed
- [174](https://github.com/plotly/dash-ag-grid/pull/174) Fix [#171](https://github.com/plotly/dash-ag-grid/issues/171): `Markdown` renderer now displays a blank cell rather than writing `undefined` if there is no value

- [204](https://github.com/plotly/dash-ag-grid/pull/204) `filterOptions` will now work as a regular object

- [206](https://github.com/plotly/dash-ag-grid/pull/206) Fix [#195](https://github.com/plotly/dash-ag-grid/issues/195) where if the user was to redo the exact same action, callbacks on `cellValueChanged` would not trigger again. Fix by adding `timestamp` into the object, as we have in other event-type props to make them unique.

2.0.0

Removed

- [Overhaul commit](https://github.com/plotly/dash-ag-grid/commit/b888d6ab4fcb4afac187492e8b6c9cf0d0f8842b)
- Remove `agGridColumns` component due to deprecation in AG Grid v29, use `columnDefs` instead.
- Remove some hardcoded CSS

- [132](https://github.com/plotly/dash-ag-grid/pull/132) Remove prop `autoSizeAllColumns`, use the `columnSize` prop instead.

Added

- [Overhaul commit](https://github.com/plotly/dash-ag-grid/commit/b888d6ab4fcb4afac187492e8b6c9cf0d0f8842b)
- Add `className` prop for css customization native to AG Grid
- Add `enable*` props for easier user / dash manipulation, for creating buttons
- Add overarching `dangerously_allow_code` prop to grid props only provided at render, to keep `columnDefs` from receiving possible updates to execute malicious JavaScript (originally called `dangerously_allow_html` but renamed later)
- Add `data_previous` and `data_previous_timestamp` props to allow easier change tracking in callbacks
- Add `dashGridOptions` prop to allow for arbitrary use of AG Grid props not explicitly listed
- Add `setRowId` prop to allow `rowData` change detection
- Add `columnState` prop to retrieve the current state of the columns after user interaction

- [6](https://github.com/plotly/dash-ag-grid/pull/6)
- Allow strings of functions to be passed as parameters to `valueGetterFunction`, `valueFormatterFunction`. This allows for functions to be parsed even in a strict CSP environment.
- Add row conditional formatting via `getRowStyle`, acts similar to `cellStyles`
- Add ability for custom parsing functions to be passed via the namespace `window.dashAgGridFunctions`
- Allow for `null` to be passed to `columnSize`, to prevent the fit to width or autosize being the only options

- [28](https://github.com/plotly/dash-ag-grid/pull/28)
- Allow for other column prop functions to pass without disabling them if `dangerously_allow_code` is not passed
- Copy over `columnDef` `dangerously_allow_code` to allow for the prop to be placed only on the grid level
- Keep `params` together instead of splitting into separate keys, to allow for easier transition to using AG Grid docs

- [39](https://github.com/plotly/dash-ag-grid/pull/39)
- Allow for `defaultColDef` to be iterated through for functions
- Add `tooltipComponent` to be altered if it was list as a function object

- [49](https://github.com/plotly/dash-ag-grid/pull/49) Safely handle more attributes when `dangerously_allow_code` is disabled:
- Top-level attributes `rowClassRules`, `getRowStyle`, and `getRowClass`
- Column attributes `cellClass`, `cellStyle`, and `cellClassRules`

- [67](https://github.com/plotly/dash-ag-grid/pull/67) Function parsing recursive columnDefs
- Add more functions to be available for parsing
- Allow for recursively going through `columnDefs` -> `children` and master detail info

- [76](https://github.com/plotly/dash-ag-grid/pull/76) Add logging function available by default, available via `{"function": "log()"}`

- [111](https://github.com/plotly/dash-ag-grid/pull/111) Add `filterModel` prop in order to capture the grid's active filters

- [132](https://github.com/plotly/dash-ag-grid/pull/132)
- Add new `columnSize` option `responsiveSizeToFit`, which will adjust column sizes based upon grid size and columns added or removed
- Add `columnSizeOptions` prop to modify the behavior chosen in `columnSize`
- Add ability to push `columnState` back to grid and replay the settings

- [145](https://github.com/plotly/dash-ag-grid/pull/145)
- Support `alignedGrids`
- Support functions with `tooltipComponentParams`
- Add `paginationInfo` for read-only info from the grid's pagination
- Add `paginationGoTo` to navigate to different pages

-[164](https://github.com/plotly/dash-ag-grid/pull/164) Support passing `selectedRows` functions or ids for performing selections

Updated
- [Overhaul commit](https://github.com/plotly/dash-ag-grid/commit/b888d6ab4fcb4afac187492e8b6c9cf0d0f8842b)
- Update AG Grid from v27.x to v29.x - see [AG Grid Changelog](https://www.ag-grid.com/changelog/) for details.
- Update markdown renderer to use github markdown, and also have the ability to be passed a target for links, to avoid `dangerously_allow_code`
- Update `requirements.txt` (Python dependencies for demos and docs) to allow the latest packages

- [39](https://github.com/plotly/dash-ag-grid/pull/39)
- Change `selectionChanged` to `selectedRows` to make props align with AG Grid
- Allow `selectedRows` to persist

- [70](https://github.com/plotly/dash-ag-grid/pull/70) Change `clickData` to `cellRendererData` to more closely line up with what this does

- [81](https://github.com/plotly/dash-ag-grid/pull/81)
- Prop clean-up overhaul
- Remove `cellStyle` from the grid level, allowing more flexibility in customization, and alignment with AG grid
- Allow for functions, styleConditions and regular dictionaries to be passed to the `cellStyle` on all levels
- Add `rowId` to `cellClicked` data

- [132](https://github.com/plotly/dash-ag-grid/pull/132) Change `columnSize` option of `autoSizeAll` -> `autoSize`

- [145](https://github.com/plotly/dash-ag-grid/pull/145) and [#159](https://github.com/plotly/dash-ag-grid/pull/159) Update AG Grid `29.1.0` -> `29.3.3`

- [155](https://github.com/plotly/dash-ag-grid/pull/155)
- Update React to `18.2.0`
- Update `material-ui` to `mui` for `rowMenuRenderer`

-[164](https://github.com/plotly/dash-ag-grid/pull/164) Update `selectedRows` to maintain persistence by utilizing `rowIds` if available

Fixed
- [Overhaul commit](https://github.com/plotly/dash-ag-grid/commit/b888d6ab4fcb4afac187492e8b6c9cf0d0f8842b)
- Fix conditional formatting for nested columns
- Fix issue where columns would not take edits or adjustments due to becoming static

- [6](https://github.com/plotly/dash-ag-grid/pull/6) Fix props issue for `enableAddRows`

- [19](https://github.com/plotly/dash-ag-grid/pull/19) Fixed `cellClicked` as reported in [#17](https://github.com/plotly/dash-ag-grid/issues/17)

- [45](https://github.com/plotly/dash-ag-grid/pull/45) Fix [#44](https://github.com/plotly/dash-ag-grid/issues/44), markdown ignoring `target="_blank"` to open links in a new tab. Now if `dangerously_use_code` is `false`, markdown cells honor `columnDef.linkTarget`, but if `dangerously_use_code` is `true` you MUST use the HTML syntax `<a target="_blank">` to achieve this, markdown syntax `[text](url)` will ignore `columnDef.linkTarget`.

- [47](https://github.com/plotly/dash-ag-grid/pull/47) Fix `virtualRowData` by setting the default `rowModelType='clientSide'`

- [81](https://github.com/plotly/dash-ag-grid/pull/81) Fix syncing issue with `rowData`, `virtualRowData` when cell edits and async `rowTransactions` occur

- [90](https://github.com/plotly/dash-ag-grid/pull/90) Fix `columnState` to be populated once `gridReady`

- [92](https://github.com/plotly/dash-ag-grid/pull/92) Fix `defaultStyle` when no `styleConditions` is in `cellStyle`

- [111](https://github.com/plotly/dash-ag-grid/pull/111) Fix templates to only populate when `dangerously_allow_code=True`

- [132](https://github.com/plotly/dash-ag-grid/pull/132) Fix `columnSize` to update upon interaction

- [145](https://github.com/plotly/dash-ag-grid/pull/145)
- Fix `onRowDragEnd` to trigger `virtualRowData` update
- Fix all `virtualRowData` updates to take into account sorting

- [155](https://github.com/plotly/dash-ag-grid/pull/155) and [#158](https://github.com/plotly/dash-ag-grid/pull/158)
- Fix `openGroups` where clearing out the set would cause issues
- Fix `paginationGoTo` to work with a starting page

- [161](https://github.com/plotly/dash-ag-grid/pull/161) Fix the default style to be applied even when a style is given from the developer. `style.height` and `style.width` always exist but can be overridden if other values are provided in the `style` prop.

-[164](https://github.com/plotly/dash-ag-grid/pull/164)
- Fix `comparator` to not be restricted to just params
- Fix `paginationGoTo` to allow `0` to be passed

1.3.2

Updated

- [DE146](https://github.com/plotly/dash-ag-grid-closed/pull/146) Update DashAgGrid component to be async.

1.3.1

Fixed

- [DE129](https://github.com/plotly/dash-ag-grid-closed/pull/129) Rebuild with latest dash component generator for Py3.6 compatibility

Page 2 of 4

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.