Skip to content

Releases: mckinsey/vizro

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)

vizro-core-0.1.19

16 Jul 14:30
35c3261
Compare
Choose a tag to compare

Removed

  • Remove demo dashboard folder from repository. (#581)

Added

  • Improve validation error messages for CapturedCallable. (#547)

  • Vizro app itself implements WSGI interface as a shortcut to app.dash.server. (#580)

Changed

  • Include sign in default reference_format of kpi_card_reference. (#549)

  • Update optionHeight of vm.Dropdown dynamically based on character length. (#574)

  • Rename features demo dashboard folder to dev. (#581)

Fixed

  • Fix title disappearance when scrolling dash_data_table. (#548)

  • Ensure that categorical selectors always return a list of values. (#562)

  • Remove default icon provision for vm.NavLink when the icon count exceeds 9 and a user icon is provided.(#572)

  • External href links in vm.Card now open in the full body of the window as opposed to in the same frame as they were clicked. (#585)

vizro-core-0.1.18

24 Jun 10:50
3ade3b4
Compare
Choose a tag to compare

Highlights ✨

Added

  • Add KPI dashboard to examples. (#505)

Changed

  • Turn off pagination by default in dash_ag_grid. (#512)

  • Move changing theme callback to the client-side. (#523)

Fixed

  • Fix disappearance of charts after theme switch on mobile. (#511)

  • Ignore unexpected query parameters rather than raising an exception. (#539)

vizro-core-0.1.17

30 May 09:26
ea8c35c
Compare
Choose a tag to compare

Highlights ✨

  • Enable dynamic data parametrization, so that different data can be loaded while the dashboard is running. (#482)

Removed

Changed

  • Store page.id in outer page container to enable page specific styling. (#455)

  • Change the default of the dash_ag_grid function to the default of the underlying Dash dag.AgGrid. (#446)

Fixed

vizro-ai-0.2.0

09 May 18:16
f3159a0
Compare
Choose a tag to compare

Removed

  • Removed temperature and model_name arguments of VizroAI class. For current configuration options, visit the Vizro-AI docs (#423)

Added

  • Enable customization of LLM models provided to VizroAI class. (#423)

Changed

  • VizroAI.plot now generates and returns a plotly.graph_objects.Figure object. (#411). This facilitates the integration of Vizro-AI charts into the vizro dashboard, visit the dedicated user-guide for details.

vizro-core-0.1.16

30 Apr 13:56
256acc3
Compare
Choose a tag to compare

Removed

  • Remove class names checkboxes-list, radio-items-list and input-container from Vizro stylesheets. (#414)

Changed

  • Update design of dashboard layout. (#433)

vizro-core-0.1.15

15 Apr 08:32
ef3e2ae
Compare
Choose a tag to compare

Highlights ✨

  • Add dynamic data, which can be reloaded while the dashboard is running. An optional caching layer enables efficient refreshes with per-data source timeouts. Visit the user guide on data for more details. (#398)

Changed

  • Replace default bootstrap stylesheet with vizro-bootstrap stylesheet. (#384)

  • Refactor code and remove custom classNames from Button, Card, NavBar and NavLink. (#384)

  • Change default continuous color scale to SEQUENTIAL_CYAN. (#407)

Fixed

  • Fix CSS for floatingFilter in AgGrid. (#388)

vizro-core-0.1.14

26 Mar 09:52
90ddfd5
Compare
Choose a tag to compare

Highlights ✨

Changed

  • Replace dmc.Tooltip with dbc.Tooltip and change CSS selectors accordingly. (#361)

  • Rename CSS classNames nav_card_container and card_container to nav-card and card. (#373)

Fixed

  • Fix navigation to external links by replacing dcc.Link with dbc.NavLink. (#364)

vizro-ai-0.1.2

13 Mar 17:57
1f511d2
Compare
Choose a tag to compare

Added

  • Add max_debug_retry parameter to VizroAI.plot to allow users to determine the maximum number of debugging attempts desired. (#261)

  • Enable automatic loading of environment variables in a .env file. (#270)

Changed

  • Remove upper bound for langchain and openai dependencies. (#369)

Fixed

  • Remove the keyword explain from docs example explaining the _get_chart_code function. (#256)