fix(deps): update dependency bits-ui to v2 #5
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
^1.4.8
->^2.5.0
Test plan: CI should pass with updated dependencies. No review required: this is an automated dependency update PR.
Release Notes
huntabyte/bits-ui (bits-ui)
v2.5.0
Compare Source
Minor Changes
feat(RangeCalendar): add
minDays
andmaxDays
props to require min/max number days in a range (#1558)feat(RangeCalendar): add
excludeDisabled
prop that whentrue
, will reset the range if it includes a disabled date (#1558)feat(Calendar): add
maxDays
prop to limit the number of days that can be selected whentype="multiple"
(#1558)feat(RangeCalendar): add
data-range-middle
attribute toDay
andCell
components to indicate items within the selected range, but not the start or end. Useful for conditional styling. (#1558)feat(RangeCalendar): mark
data-selection-start
anddata-selection-end
as deprecated in favor ofdata-range-start
anddata-range-end
which introduce improved functionality that would be considered breaking should the behavior be added todata-selection-start
anddata-selection-end
. Withdata-range-start|end
, when the start date is selected but an end has not been selected, that date will have both thedata-range-start
anddata-range-end
which makes it easier to conditionally style the dates (#1558)feat(Select): expose
autocomplete
prop onSelect.Root
for passingautocomplete
attribute to the hidden input (#1547)Patch Changes
fix(RangeCalendar): ensure props are synced with months (#1558)
fix(Calendar): issue where props weren't being synced with the months (#1558)
v2.4.1
Compare Source
Patch Changes
fix(FloatingComponents): ensure bad coordinates aren't used when anchor becomes hidden/removed (#1546)
fix(Slider): shadow DOM support (#1544)
v2.4.0
Compare Source
Minor Changes
BitsConfig
provider component for globally configuring default component props via context. (#1530)Patch Changes
v2.3.1
Compare Source
Patch Changes
data-state
reflects value when showing preview (#1533)v2.3.0
Compare Source
Minor Changes
unstable_RatingGroup
pending API stabilization and community feedback. (#1525)v2.2.1
Compare Source
Patch Changes
fix(Tooltip): ensure
Tooltip.Trigger
s can be composed with other floating component triggers (#1527)fix(Slider): ensure floating point precision aligns with step (#1529)
v2.2.0
Compare Source
Minor Changes
inputValue
prop onCombobox.Root
to synchronize input value with programmatic updates to the value from outside Bits UI (#1517)Patch Changes
v2.1.0
Compare Source
(Had to publish 2.1.0 instead of 2.0.0 as someone published 2.0.x to NPM many years ago)
Major Changes
breaking: bump minimum Svelte peer dependency to
^5.33.0
to support Attachments and $props.id(). (#1494)breaking:
@internationalized/date
is now a required peer dependency. (#1494)Minor Changes
feat(Slider): add
Slider.ThumbLabel
for rendering a label positioned relative to aSlider.Thumb
. (#1494)feat(Slider): add
Slider.TickLabel
for rendering a label positioned relative to aSlider.Tick
. (#1494)feat(Slider): support discrete step values via
steps
:number[] | number
onSlider.Root
. If an array is passed, it defines the selectable values directly, andmin
/max
default to the array's bounds. (#1494)feat: add
TimeField
component for time input with segmented control and full keyboard support. (#1494)feat(Slider): introduce the
tickItems
snippet prop onSlider.Root
as a replacement for the now-deprecatedticks
, enabling a more flexible API that better supports renderingTickLabels
. PrefertickItems
going forward. (#1494)feat: add
TimeRangeField
component for selecting a start and end time. (#1494)feat(Slider): introduce the
thumbItems
snippet prop onSlider.Root
as a replacement for the now-deprecatedthumbs
, enabling a more flexible API that better supports renderingThumbLabels
. PreferthumbItems
going forward. (#1494)feat(Slider): add
trackPadding
prop toSlider.Root
as an SSR-friendly alternative tothumbPositioning="contain"
, which requires client-side measurement. (#1494)Patch Changes
null
forref
prop to align with other components. (#1494)v1.8.0
Compare Source
Minor Changes
thumbPositioning
for more granular control of thumb positioning (#1470)Patch Changes
fix(NavigationMenu): moving from submenu trigger to menu item in the same menu should close the submenu (#1489)
feat(NavigationMenu):
openOnHover
prop to control whether menu items open on hover or not (#1491)fix(NavigationMenu): issues with non-viewport transitions (#1489)
v1.7.0
Compare Source
Minor Changes
feat(DropdownMenu): new
DropdownMenu.CheckboxGroup
component (#1486)feat(ContextMenu): new
ContextMenu.CheckboxGroup
component (#1486)feat(Menubar): new
Menubar.CheckboxGroup
component (#1486)Patch Changes
fix(Select): ensure scroll buttons render on subsequent mounts (#1484)
fix(Combobox): ensure scroll buttons render on subsequent mounts (#1484)
v1.6.1
Compare Source
Patch Changes
fix(Tooltip): ensure only one tooltip within a Provider can be open at a time (#1481)
fix(Command): replace
encodeURIComponent
withcss.escape
for attribute values (#1482)v1.6.0
Compare Source
Minor Changes
active
state (#1471)Patch Changes
fix(DateRangeField): ensure prepopulated value takes priority over placeholder for validation (#1479)
fix(NavigationMenu): do not close
Sub
content when clicking the trigger (#1473)fix(NavigationMenu): render
Content
withoutViewport
(#1474)fix(DateField): ensure prepopulated value takes priority over placeholder for validation (#1479)
v1.5.3
Compare Source
Patch Changes
v1.5.2
Compare Source
Patch Changes
fix(RangeCalendar): ensure
weekStartsOn
is absolute and fallback to locale if not provided (#1462)fix(DateRangePicker): use current field to determine max days in month (#1460)
fix(DateRangePicker): ensure
weekStartsOn
is absolute and fallback to locale if not provided (#1462)fix(DatePicker): ensure
weekStartsOn
is absolute and fallback to locale if not provided (#1462)fix(Calendar): ensure
weekStartsOn
is absolute and fallback to locale if not provided (#1462)fix(DateRangeField): use current field to determine max days in month (#1460)
v1.5.1
Compare Source
Patch Changes
v1.5.0
Compare Source
Minor Changes
onSelect
for SubTrigger (#1454)Patch Changes
fix(ScrollArea): ensure thumb properly restores previous position (#1455)
fix(DatePicker): export
Portal
parts (#1451)fix(Menu): remove unused
closeOnSelect
prop from SubTrigger components (#1453)Configuration
📅 Schedule: Branch creation - "on the 1st through 7th day of the month" in timezone America/Los_Angeles, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.