Releases: woven-planet/lakefront
Select Props Update
This is an update to the Select component props.
Node 18
React 18 Upgrade
This release corresponds to the pr #312. Updating this repository to use React 18 instead of React 17.
Added prop for Breadcrumb LInk
Breadcrumb Link prop: Allows you to pass your own Link connected to your application router.
This is most useful for applications using React-router v6 and above.
Prerelease same version to run workflows
This release is to allow us to use the same version number to run our workflows with.
Upgrade RC React 18
This Release Candidate (2.1.8-rc.1) is for upgrading React to version 18. As well as, other coupled dependencies such as jest, react-types and several others in package.json.
Simplified Filter Section Headers
This release simplifies filter section headers. Now that we display filter values as chips in the top of the filter pane, individual section headers just display the number of applied filters (when collapsed). This behavior previously only occurred when filter values reached a certain threshold (>= 4
), but now is the standard for any number (> 0
) of applied filters. Note, the previous behavior is still achievable by passing badgeThreshold={4}
to the Filter
component and/or overriding the getFilterCount
function of each filter module.
⚠️ Version 1.0.x BREAKING CHANGES
userFilter
hook. To avoid issues, perform a find and replace, finding any instances of clearFilter
and clearAllFilters
, and replacing them with resetFilter
and resetAllFilters
. Review #303 for more details.
Happy first major release day!
Filter Dropdown Presets
This release creates a dropdown in the Filter component that enables users to set up custom preset values for filters they are using. Users have to specify a filterMapping
that correlates the values of the dropdown menu to the specific filters they want to set preset values for. This closes Issue #276.
Loading Update
Loading component has been updated to include variants as well as a variant by default.