Vizro Versions Save

Vizro is a toolkit for creating modular data visualization applications.

0.1.8

4 months ago

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

  • Fix position of invisible button inside Card. (#236)

  • Fix a bug that prevented the update of nested graph properties through parameters when the graph property was not previously defined. (#273)

0.1.7

5 months ago

Highlights ✨

Added

  • Enable tooltips for NavLink (#186)

Changed

  • Change the persistence of client-side data to session rather than local (#182)

  • Bump dash lower bound to 2.14.1 (#203)

Fixed

  • Remove graph flickering on page load with Vizro light theme (#166)

  • Fix vm.Slider and vm.RangeSlider to work with incorrect text input (#173)

  • Remove default font color from global CSS to enable overwrites (#213)

vizro-ai-0.1.0

6 months ago

Highlights ✨

  • Initial release of Vizro-AI package. Vizro-AI is a tool for generating data visualizations. (#138)

0.1.6

6 months ago

Highlights ✨

Added

  • Vizro takes **kwargs that are passed through to Dash (#151)

Changed

  • The path to a custom assets folder is now configurable using the assets_folder argument when instantiating Vizro (#151)

Fixed

  • Assets are now routed correctly when hosting the dashboard in a subdirectory (#151)

Security

0.1.5

6 months ago

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 when step is defined in Slider and RangeSlider (#115)

Changed

  • Autopopulate navigation.pages with registered pages during Dashboard validation if navigation.pages = None (#117)

  • Update warning for duplicated IDs in data_manager and model_manager to now recommend Vizro._reset() as a potential fix when working in a Jupyter notebook (#120)

Fixed

  • If the targets argument in the export_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)

0.1.4

7 months ago

Added

  • Add highlighting to accordion button of active page (#74)

  • Add validator for Dashboard.navigation to default to Navigation() if not provided (#74)

  • Add comparison table to Why Vizro docs page (#90)

  • Parameters can be optional: use the string "NONE" as an option of Parameter.selector to pass None(#95)

  • Raise ModuleNotFoundError in case the export_data action is used with file_format="xlsx" and neither openpyxl nor xlsxwriter are installed (#97)

Changed

  • Move creation of dash.page_registry to Dashboard.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)

0.1.3

7 months ago

Added

  • Add a "why Vizro" section to the docs (#73)

Changed

  • Remove left_side container by default if there are no elements present (#68)

Fixed

  • Raise ValueError of shared column with inconsistent dtypes properly (#64)

0.1.2

7 months ago

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 in jest.
    • 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)

0.1.1

7 months ago

Added

  • Enable title argument in Dashboard 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)

Changed

  • Provide ID to outer div to enable CSS customization of component and its sub-components (#29)

  • Disable creation of accordion navigation if only one page is provided (#32)

  • Change the structure of user-guides in documentation to group topics (#42).

v0.1.0

8 months ago

0.1.0 — 2023-09-08

Added

  • Add Vizro templates and enable choice of light and dark themes
  • Enable integration of plotly express charts within Graph
  • Enable data connections via Kedro data catalog
  • Add ModelManager and DataManager class
  • Add the Vizro class and enable parsing and running a dashboard
  • Add the following pydantic models:
    • Action
    • Button
    • Card
    • Checklist
    • Dashboard
    • Dropdown
    • Filter
    • Graph
    • Layout
    • Navigation
    • Page
    • Parameter
    • RadioItems
    • RangeSlider
    • Slider
    • VizroBaseModel
  • Enable the addition and usage of custom components and custom charts