Releases: mckinsey/vizro
vizro-ai-0.1.1
vizro-core-0.1.8
Added
-
When set, the dashboard title appears alongside the individual page title as the text labeling a browser tab. (#228)
-
Enable adding description and image to the meta tags. (#185)
Changed
- Re-arrange main containers on page and change their CSS IDs. (#205)
Fixed
vizro-core-0.1.7
Highlights ✨
-
Release of custom actions. Visit the user guide on custom actions to learn more. (#178)
-
Add
NavBar
andNavLink
models to enable a hierarchical navigation bar with icons. Visit the user guide on navigation to learn more. (#70)
Added
- Enable tooltips for
NavLink
(#186)
Changed
-
Change the persistence of client-side data to
session
rather thanlocal
(#182) -
Bump dash lower bound to 2.14.1 (#203)
Fixed
vizro-ai-0.1.0
Highlights ✨
- Initial release of Vizro-AI package. Vizro-AI is a tool for generating data
visualizations. (#138)
vizro-core-0.1.6
Highlights ✨
- Release of the Vizro Dash DataTable. Visit the user guide on tables to learn more. (#114)
Added
Vizro
takes**kwargs
that are passed through toDash
(#151)
Changed
- The path to a custom assets folder is now configurable using the
assets_folder
argument when instantiatingVizro
(#151)
Fixed
- Assets are now routed correctly when hosting the dashboard in a subdirectory (#151)
Security
- Bump werkzeug version suggested by Snyk to avoid a vulnerability: https://security.snyk.io/vuln/SNYK-PYTHON-WERKZEUG-6035177 (#128)
vizro-core-0.1.5
Removed
- Remove warning message if not all registered pages are used in
Navigation
(#117)
Added
-
Add plotly layout template for waterfall chart type (#106)
-
Add CSS default styling for
textarea
(#106) -
Provide ID to unique outer HTML divs on page (#111)
-
Enable turning off
marks
whenstep
is defined inSlider
andRangeSlider
(#115)
Changed
-
Autopopulate
navigation.pages
with registered pages duringDashboard
validation ifnavigation.pages = None
(#117) -
Update warning for duplicated IDs in
data_manager
andmodel_manager
to now recommendVizro._reset()
as a potential fix when working in a Jupyter notebook (#120)
Fixed
-
If the
targets
argument in theexport_data
action function is specified as"falsy"
value (None
,[]
), triggering the action will result in the same outcome as if the argument were not set, exporting data from all charts on the current page. (#93) -
Fix alignment between control panel, dashboard title and page title (#106)
-
CapturedCallable
now handles variadic keywords arguments (**kwargs
) correctly (#121)
Security
- Bump @babel/traverse from 7.22.20 to 7.23.2 (#118)
vizro-core-0.1.4
Added
-
Add highlighting to accordion button of active page (#74)
-
Add validator for
Dashboard.navigation
to default toNavigation()
if not provided (#74) -
Add comparison table to
Why Vizro
docs page (#90) -
Parameters can be optional: use the string
"NONE"
as an option ofParameter.selector
to passNone
(#95) -
Raise
ModuleNotFoundError
in case theexport_data
action is used withfile_format="xlsx"
and neitheropenpyxl
norxlsxwriter
are installed (#97)
Changed
- Move creation of
dash.page_registry
toDashboard.pre_build
(#74) - Change the default collapsible behavior and highlighting color of the selected accordion group (#74)
Fixed
-
Fix unit test interdependence issue due to shared dash.page_registry (#84)
-
Fix bug of horizontal rulers not being visible in
Card
(#91) -
Fix bug so that
add_type
updates forward references in new type added (#92)
Security
- Update pydantic requirement to
pydantic>=1.10.13, <2
due to medium Snyk vulnerability (#83)
vizro-core-0.1.3
vizro-core-0.1.2
Added
- Add additional information in case of duplicate
model_manager
ID's to guide users if this occurs in a Jupyter Notebooks. (#59)
Changed
-
Optimize the client-server communication (#34)
- Eliminate most server side callbacks in favour of client-side callbacks
- Add tests for client-side callbacks written in Node.js framework called
jest
. - Add hatch command
hatch run test-js
that runs unit tests written injest
. - Logging information now only displayed for action function carried out (no trigger or finished information)
-
Replaced all screenshots in the docs to reflect new navigation designs (#48)
Fixed
- Fixed issue of accordion arrow not loading on deployed demo version (#44)
vizro-core-0.1.1
Added
-
Enable
title
argument inDashboard
model, which allows a title to be added on every page on top left-side (#31) -
Add the ability to use custom actions. Currently in beta, expect this to break at any time. (#46)