Documentation Index
Fetch the complete documentation index at: https://anvil.servicetitan.com/llms.txt
Use this file to discover all available pages before exploring further.
This guide covers changes to the beta FilterBar component. These APIs may
continue to evolve before the stable release.
Overview
Three changes ship together:- The
overflowprop is removed. FilterBar always wraps. - The breakpoint that collapses filters into drawer-only mode shifts from 768px to 640px.
- A new
disableCollapseprop keeps filters inline at every container width.
Migration Guide
Drop the overflow prop
overflow="collapse" hid filters that didn’t fit; that behavior is removed. Configure any filter that should stay out of the toolbar with drawerOnly: true instead.
Breakpoint shift
Filters now stay inline down to a 640px container width (previously 768px). If your layout relied on filters collapsing at the higher breakpoint, you may need to adjust container sizing.Opt out of breakpoint collapse
disableCollapse is true, filters render inline at every container width. The drawer trigger still appears if any filter is configured as drawerOnly.