Releases: mckinsey/vizro
vizro-core-0.1.43
Highlights ✨
-
Introduce the "Select All" option for
Checklist
and multi-selectDropdown
. Easily select or deselect all options with a single click within the selector. (#1000) -
The current state of controls on a page in your app can be shared by sharing its URL. Set
show_in_url=True
inFilter
andParameter
to include their values in the URL. See the user guide on filters for more information. (#1243)
Removed
- Simplified the
left-side
container by removing the extraleft-sidebar
andleft-main
containers. The left-side now directly usesnav-bar
andnav-control-panel
as its children. (#1268)
Added
-
Add
custom_header
static method toDashboard
, allowing users to inject custom Dash components into a dedicated area of the dashboard header. See the user guide for details. (#1267) -
Emit a warning in all models when
description
is set buttitle
is missing or empty. (#1275)
Changed
- Update several header class names for improved clarity and consistency. (#1267)
vizro-mcp-0.1.2
vizro-core-0.1.42
Added
-
yaml/json configurations can specify
_target_
functions with any import path rather than being restricted to built-in Vizro functions. (#1255) -
Add option to validate yaml/json configurations without importing
CapturedCallable
functions. See the user guide on extensions for more details. (#1255)
Fixed
- Temporarily limit the upper bound of
dash
to<3.1.0
to investigate a bug indash==3.1.0
. (#1259)
vizro-core-0.1.41
Added
- Add
description
argument toButton
to enable tooltip next to button text. See the user guide on button for an example. (#1225)
Changed
- Update the default settings for
dash_ag_grid
to enhance layout compatibility and performance. The grid now uses"domLayout": "autoHeight"
and enables pagination by default. (#1226)
Fixed
- Fix dynamically calculated row height for
Dropdown
when used inContainer.controls
. (#1238)
vizro-core-0.1.40
Highlights ✨
- Enable controls inside containers. See the user guide on container for more details. (#1094)
Added
-
Add
description
argument toTabs
to enable tooltips in the title. See the user guide on container for an example. (#1178) -
Enable
extra
argument forvm.Graph
, which allows passing arguments directly to the underlyingdcc.Graph
. (#1210)
Fixed
- Fix a bug where assigning a custom action to
Filter.selector.actions
raised an error. (#1197)
vizro-ai-0.3.7
vizro-core-0.1.39
Added
-
Add
description
argument toDashboard
,Page
,Container
,Graph
,AgGrid
andTable
to enable tooltips in titles. See this user guide for an example. (#1144) -
Enable
title
insideTabs
. (#1169)
Changed
- Bump
dash>=3.0.0
,dash-bootstrap-components>=2.0.0
,dash-ag-grid>=31.3.1
anddash-mantine-components>=1.0.0
. (#1160)
Fixed
- Fix bug where
dash_data_table
anddash_ag_grid
callables with the sameid
would not raise an error but break the dashboard. (#1159)
vizro-mcp-0.1.1
Fixed
- Fix name conflict with
langchain
by avoiding use of conflicting parameter names in tools. (#1177)
vizro-mcp-0.1.0
Added
- Initial release of the Vizro MCP server. (#1125)
- still experimental, please provide feedback via github issues
- pinned
vizro
version to0.1.38
- published with 6 tools and 3 prompt templates
vizro-core-0.1.38
Added
-
Add
collapsed
argument tovm.Container
to enable collapsible containers. See the user guide on collapsible container for more details. (#1079) -
Enable styling of
vm.Button
with a new argumentvariant="plain"/"filled"/"outlined"
. See the user guide on styled buttons for more details. (#1114) -
Add
description
argument toChecklist
,Dropdown
,RadioItems
,Slider
,RangeSlider
andDatePicker
to enable info-icons in selector titles. See the user guide on info-icons for more details. (#1124)
Changed
-
Update the light theme for better consistency and contrast. Right-side and card backgrounds now adapt when a
Container
withvariant="filled"
is used. (#1048) -
actions
now have typelist[ActionType]
rather thanlist[Action]
. (#1054)