Skip to content

Latest commit

 

History

History
382 lines (203 loc) · 14.1 KB

CHANGELOG.md

File metadata and controls

382 lines (203 loc) · 14.1 KB

Changelog

Unreleased

See the fragment files in the changelog.d directory.

0.1.16 — 2024-04-30

Removed

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

Changed

  • Update design of dashboard layout. (#433)

0.1.15 — 2024-04-15

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)

0.1.14 — 2024-03-26

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)

0.1.13 — 2024-03-12

Highlights ✨

Changed

  • Apply new design to Slider and RangeSlider. (#336)
  • Consolidate gaps between selectors. (#336)

Fixed

  • Fix path to built-in Vizro assets when requests_pathname_prefix is not the same as routes_pathname_prefix. (#358)

0.1.12 — 2024-03-04

Changed

  • Temporarily exclude dash==2.16.0 (#341)

Fixed

  • Added default Bootstrap theme to external stylesheets and fix any visually incompatible CSS declarations. (#311)

  • Fix CSS bug on page-main overflowing page-container in mobile layouts. (#331)

0.1.11 — 2024-02-13

Fixed

  • Improve layouts for small devices. (#302)

0.1.10 — 2024-01-31

Highlights ✨

  • Introduce Tabs model as a new Page component. (#280)

Changed

  • Replace html.P with html.Label in form components. (#293)

Fixed

  • Fix bug on accordion group not opening properly when re-directing to active page via navigation card or URL path. (#276)

0.1.9 — 2024-01-25

Highlights ✨

Added

  • Enable automatic logo insertion into page-header container. (#248)

  • Enable the side panel to collapse/expand with a button. (#225)

Changed

  • Move dashboard-title to top header container page-header. (#238)

Fixed

  • Add CSS for dmc.Switch and fix CSS when toggle-switch is turned on. (#244)

  • Fix bug of value argument not properly being evaluated in Slider and RangeSlider. (#266)

  • Fix bug on scrolling and viewport on Safari. (#277)

0.1.8 — 2024-01-04

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 — 2023-12-15

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)

0.1.6 — 2023-11-09

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 — 2023-10-26

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 — 2023-10-09

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 — 2023-09-29

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 — 2023-09-25

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 favor 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 — 2023-09-21

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).

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