Skip to content

Commit

Permalink
fix: expose portal prop on the date pickers (#652)
Browse files Browse the repository at this point in the history
Co-authored-by: Hunter Johnston <64506580+huntabyte@users.noreply.github.com>
  • Loading branch information
NDOY3M4N and huntabyte authored Sep 12, 2024
1 parent 48d9002 commit d3521e1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/healthy-mangos-hang.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"bits-ui": patch
---

fix(Date Pickers): expose `portal` prop
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
type $$Props = Props;
export let portal: $$Props["portal"] = undefined;
export let open: $$Props["open"] = undefined;
export let onOpenChange: $$Props["onOpenChange"] = undefined;
export let value: $$Props["value"] = undefined;
Expand Down Expand Up @@ -167,6 +168,7 @@
$: updateOption("weekdayFormat", weekdayFormat);
$: updateOption("numberOfMonths", numberOfMonths);
$: updateOption("onOutsideClick", onOutsideClick);
$: updateOption("portal", portal);
</script>

<slot ids={$idValues} isInvalid={$localIsInvalid} />
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
type $$Props = Props;
export let portal: $$Props["portal"] = undefined;
export let value: $$Props["value"] = undefined;
export let onValueChange: $$Props["onValueChange"] = undefined;
export let placeholder: $$Props["placeholder"] = undefined;
Expand Down Expand Up @@ -50,6 +51,7 @@
isDateDisabled,
fixedWeeks,
calendarLabel,
portal,
disabled,
granularity,
hideTimeZone,
Expand Down Expand Up @@ -216,6 +218,7 @@
$: updateOption("weekdayFormat", weekdayFormat);
$: updateOption("numberOfMonths", numberOfMonths);
$: updateOption("onOutsideClick", onOutsideClick);
$: updateOption("portal", portal);
</script>

<slot
Expand Down

0 comments on commit d3521e1

Please sign in to comment.