Skip to content

Releases: mckinsey/vizro

vizro-core-0.1.25

15 Oct 14:50
308f2d7
Compare
Choose a tag to compare

Added

  • All Vizro resources are served through a CDN when serve_locally=False. (#775)

Fixed

  • Remove extraneous <link> to font file. (#775)

  • Fix user override of Vizro's JavaScript resources. (#775)

  • Remove unnecessarily repeated loading of data. (#802)

Community contributions

Grateful thanks to our community of contributors:

vizro-ai-0.3.0

02 Oct 15:09
25fbb00
Compare
Choose a tag to compare

Highlights ✨

  • VizroAI now allows any model with langchain structured output capabilities to be used, not just ChatOpenAI. (#646)
  • VizroAI now has a more flexible output when choosing VizroAI.plot(...,return_elements=True). See Vizro-AI docs for all new options. (#646)
  • VizroAI now supports text-to-dashboard generation using VizroAI.dashboard(). To get started, visit the Vizro-AI docs.

Removed

  • Removed the automatic display of chart explanation and insights in Jupyter. (#646)

Changed

  • Changed the return type of VizroAI.plot(...,return_elements=True) from PlotOutputs dataclass to a pydantic model with more flexible methods. See Vizro-AI docs for more info. (#646)

Deprecated

  • Removed argument explain from VizroAI.plot(). Use return_elements=True instead. (#646)

vizro-core-0.1.24

01 Oct 13:10
f2f1497
Compare
Choose a tag to compare

Added

  • Add id to title of Graph, Table, AgGrid and Container. (#705)

  • Theme switcher can now switch between light and dark logos. (#745)

Changed

  • Changed dependency from ruff to black and autoflake in order to facilitate installation on pyodide. (#757)

Fixed

  • Enable overwriting global font-family in vizro chart templates. (#717)

vizro-core-0.1.23

12 Sep 07:33
c3b5db0
Compare
Choose a tag to compare

Fixed

  • Fix incompatibility with older plotly versions due to chart template update. (#695)

vizro-core-0.1.22

10 Sep 11:02
5530f59
Compare
Choose a tag to compare

Removed

  • Remove automatic alignment for chart title when it's specified within a Plotly chart. A warning will now suggest using Graph.title instead. (#669)

Added

  • Enable header and footer argument inside Graph, Table and AgGrid. (#669)

  • Enable title argument inside Graph. (#669)

  • Add chart layout template specification for map_style. (#677)

Fixed

  • Fix bug that prevented VizroBaseModel._to_python() to convert dict fields of models correctly. (#660)

  • Fix dynamically calculated row height for Dropdown when the options are provided as dictionaries. (#672)

vizro-ai-0.2.3

09 Sep 17:33
ae87bf5
Compare
Choose a tag to compare

Added

  • Added Docker image of VizroAI.plot UI for local use (#1177)

vizro-ai-0.2.2

06 Sep 14:42
51fc1e4
Compare
Choose a tag to compare

Fixed

  • Documented the step for instantiating VizroAI in text-to-dashboard pages (#685)

vizro-core-0.1.21

28 Aug 07:35
01a37df
Compare
Choose a tag to compare

Changed

  • Improve page loading time for AgGrid, Table and Figure. (#644)

  • Optimize vizro templates vizro_dark and vizro_light for charts. (#645)

Fixed

  • Fix persistence of columnSize and selectedRows for AgGrid. (#644)

vizro-ai-0.2.1

28 Aug 18:40
68d2cd6
Compare
Choose a tag to compare

Removed

  • Remove _return_all_text from VizroAI class (#518)

Added

  • Add argument return_elements toVizroAI.plot(). When it is set to True, the return type will be changed to a dataclass containing the code string, figure object, business insights, and code explanation. (#488)

  • Add functionality to generate dashboards from text. This feature is currently in Alpha and is not yet officially released (#651)

Changed

  • Disabled figure display upon variable assignment. To display outcome of VizroAI.plot() add .show(). (#527)

  • Stabilized plot performance by addressing several dataframe mutation issues. (#603)

vizro-core-0.1.20

21 Aug 17:10
078d462
Compare
Choose a tag to compare

Added

  • Add validation error message if CapturedCallable is directly provided. (#590)

  • Create vizro.figures.library to contain KPI card Dash components that can be used outside the Vizro framework. (#578)

  • Add dark mode and loading spinner to the layout loading screen (before Vizro app is shown). (#598)

Changed

  • Serve Google Material icons library locally to enable offline functionality. (#578)

  • Disable altering the default plotly template by importing Vizro. (#615)

Fixed

  • Fix subclassing of vm.Graph, vm.Table, vm.AgGrid, vm.Figure and vm.Action models. (#606)

  • Fix display of marks in vm.Slider and vm.RangeSlider by converting floats to integers when possible. (#613)

  • Update chart title padding dynamically to prevent subtitle cutoff. (#632)