-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- bringing ag-grid from version v27.x to v29.x+ - added secondary `agGridEnterprise.react.js` as additional importing `ag-grid-enterprise` due to all-modules no longer supported - updating props for breaking changes due to version update - adding props for easier user / dash manipulation (enable... props ) for creating buttons - removing `agGridColumns` due to deprecation and removal due to v29 - added `className` support for css customization native to ag-grid (removed hardcoded styling as well) - added overarching `dangerously_allow_html` to grid props only provided at render, to keep `columnDefs` from receiving possible updates to show unsafe html - added `data_previous` and `data_previous_timestamp` to allow for use with user change logs - added `dashGridOptions` to allow for arbitrary use of props not explicitly listed - added `setRowId` for allowing `rowData` change detection to work - added prop `columnState` to allow for pulling the current state of the columns after user interaction, necessary for saving layouts outside of snapshots - fixed issue where conditional formatting was not applied to nested columns - fixed issue where columns would not take edits or adjustments due to becoming static - updated `markdownRenderer.js` to use github markdown, and also have the ability to be passed a target for links, to avoid `dangerously_allow_html` - updated `requirements.txt` to pull the latest packages
- Loading branch information
Showing
13 changed files
with
422 additions
and
1,346 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
packages/dash_design_kit-1.6.6.tar.gz | ||
dash==2.0.0 | ||
gunicorn==19.9.0 | ||
dash-table==5.0.0 | ||
pandas==1.2.3 | ||
pyyaml==6.0 | ||
dash-bootstrap-components==1.0.0 | ||
dash-daq==0.5.0 | ||
dash>=2.0.0 | ||
gunicorn>=19.9.0 | ||
pandas>=1.2.3 | ||
pyyaml>=6.0 | ||
dash-bootstrap-components>=1.0.0 | ||
dash-daq>=0.5.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,6 @@ | ||
export default { | ||
agGrid: () => | ||
import(/* webpackChunkName: "dashaggrid" */ './fragments/AgGrid.react'), | ||
agGridEnterprise: () => | ||
import(/* webpackChunkName: "dashaggrid" */ './fragments/AgGridEnterprise.react'), | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.