Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Deprecate dash table, add dash[ag-grid] extra requirement
  • Loading branch information
T4rk1n committed Oct 17, 2025
commit c91efb8fe0efdbb1af57c1e8840dafc57989359d
10 changes: 9 additions & 1 deletion dash/development/base_component.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,15 @@
eg: html.A(href=os.getenv('DASH_LOGOUT_URL'))
"""
)
}
},
"dash_table": {
"DataTable": textwrap.dedent(
"""
The dash_table.DataTable will be removed from the builtin dash components in Dash 4.0
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This should be Dash 5.0 now?

Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I hope so - not much of a notice period if Dash 4 is released soon.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, it should be Dash 5.0.

We recommend using dash-ag-grid as a replacement. Install with `pip install dash[ag-grid]`.
"""
)
},
}


Expand Down
1 change: 1 addition & 0 deletions requirements/ag-grid.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
dash-ag-grid
1 change: 1 addition & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ def read_req_file(req_type):
"diskcache": read_req_file("diskcache"),
"compress": read_req_file("compress"),
"cloud": read_req_file("cloud"),
"ag-grid": read_req_file("ag-grid")
},
entry_points={
"console_scripts": [
Expand Down