Skip to content

chore(deps): update radix-ui-primitives monorepo#13

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/radix-ui-primitives-monorepo
Open

chore(deps): update radix-ui-primitives monorepo#13
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/radix-ui-primitives-monorepo

Conversation

@renovate

@renovate renovate Bot commented Jun 13, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@radix-ui/react-radio-group (source) 1.3.81.4.2 age confidence
@radix-ui/react-toast (source) 1.2.151.2.18 age confidence
radix-ui (source) 1.4.31.6.1 age confidence

Release Notes

radix-ui/primitives (@​radix-ui/react-radio-group)

v1.4.2

  • Updated dependencies: @radix-ui/react-primitive@2.1.7, @radix-ui/react-roving-focus@1.1.14

v1.4.1

  • Updated dependencies: @radix-ui/react-primitive@2.1.6, @radix-ui/react-roving-focus@1.1.13

v1.4.0

  • Added unstable RadioGroupItemProvider, RadioGroupItemTrigger and RadioGroupItemBubbleInput parts. These expose the previously internal composition of a radio item (context provider, the interactive control, and the hidden form input) so consumers can directly access and recompose them. The RadioGroupItem component continues to render them by default.
  • Added repository.directory to all package.json files
  • Updated dependencies: @radix-ui/react-presence@1.1.6, @radix-ui/react-direction@1.1.2, @radix-ui/primitive@1.1.4, @radix-ui/react-compose-refs@1.1.3, @radix-ui/react-context@1.1.4, @radix-ui/react-primitive@2.1.5, @radix-ui/react-roving-focus@1.1.12, @radix-ui/react-use-controllable-state@1.2.3, @radix-ui/react-use-previous@1.1.2, @radix-ui/react-use-size@1.1.2
radix-ui/primitives (@​radix-ui/react-toast)

v1.2.18

  • Fixed infinite re-render loop in React 19 caused by unstable composed ref callback references.
  • Cleared the close timer on unmount to prevent memory leaks and errors in test environments
  • Updated dependencies: @radix-ui/react-primitive@2.1.7, @radix-ui/react-dismissable-layer@1.1.14, @radix-ui/react-collection@1.1.11, @radix-ui/react-portal@1.1.13, @radix-ui/react-visually-hidden@1.2.7

v1.2.17

  • Updated dependencies: @radix-ui/react-dismissable-layer@1.1.13, @radix-ui/react-primitive@2.1.6, @radix-ui/react-collection@1.1.10, @radix-ui/react-portal@1.1.12, @radix-ui/react-visually-hidden@1.2.6

v1.2.16

  • Allow to specify container for ToastAnnounce
  • Added repository.directory to all package.json files
  • Updated dependencies: @radix-ui/react-presence@1.1.6, @radix-ui/react-dismissable-layer@1.1.12, @radix-ui/react-collection@1.1.9, @radix-ui/primitive@1.1.4, @radix-ui/react-compose-refs@1.1.3, @radix-ui/react-context@1.1.4, @radix-ui/react-portal@1.1.11, @radix-ui/react-primitive@2.1.5, @radix-ui/react-use-callback-ref@1.1.2, @radix-ui/react-use-controllable-state@1.2.3, @radix-ui/react-use-layout-effect@1.1.2, @radix-ui/react-visually-hidden@1.2.5
radix-ui/primitives (radix-ui)

v1.6.1

  • Cleared the close timer when unmounting Toast components to prevent memory leaks and errors in test environments.
  • Fixed infinite re-render loop in React 19 caused by unstable composed ref callback references.
  • Removed global React.CSSProperties augmentation from emitted declaration files.

v1.6.0

const Slot = createSlot<HTMLButtonElement, MyCustomButtonProps>('Slot');
Avatar
  • Fixed several edge cases with Avatar's loading state
    • An avatar's fallback would not be displayed again if its image component unmounted. This is now fixed.
    • Rendering multiple Avatar.Image components per Avatar.Root was never supported and results in buggy, unpredictable behavior. We now warn about this in development.
    • Zero-sized images were treated as loading, meaning that onLoadingStatusChange is never called once loaded. A zero-sized image now triggers an error status on load.
Password Toggle Field
  • Renamed misspelled onVisiblityChange prop to onVisibilityChange.
  • Fixed prop type definitions to include asChild for all component parts.
Scroll Area
  • Stabilized the viewport style tag unless the nonce changes.
Slot
  • SlotProps and createSlot now accept generic type arguments to specify the type of element a slot should render, as well as its props.
Toggle Group
  • Updated single-select and multi-select toggle groups to use the radiogroup and toolbar roles, respectively.
Select
  • Allowed a Select.Item with an empty string value to act as a "clear" option. Selecting it resets the selection back to the placeholder, restoring the native <select> behavior for optional selects. Previously using an empty string value would throw an error.
  • Fixed a bug where typeahead search resulted in focusing an element that no longer exists.
Other updates
  • Fixed a regression in that caused submenu misalignment when using custom portals.
  • Removed dev-only warnings for dialogs when title and/or description is not rendered.
  • Fixed a bug where menus and submenus remained open after a window loses focus.
  • Fixed Dismissable Layer so outside interactions stopped by extension UI overlays do not dismiss dialogs or popovers.
  • Fixed Duplicate index signature errors that surfaced when consuming multiple packages together.

v1.5.0

Context Menu
  • Added support for a controlled open prop on ContextMenu.Root. This is intended for reading the open state and closing the menu programmatically, though we discourage opening the menu programmatically since opening the menu depends on user interaction to position the menu.

    function ControlledContextMenu() {
      const [open, setOpen] = React.useState(false);
      return (
        <ContextMenu.Root open={open} onOpenChange={setOpen}>
          <ContextMenu.Trigger>Open</ContextMenu.Trigger>
          <ContextMenu.Content>
            <button type="button" onClick={() => setOpen(false)}>
              Close me
            </button>
            <ContextMenu.Item>Item 1</ContextMenu.Item>
            <ContextMenu.Item>Item 2</ContextMenu.Item>
          </ContextMenu.Content>
        </ContextMenu.Root>
      );
    }
  • Fixed a bug in where submenus remained expanded after re-opening on long-press touch events.

Dialog
  • Fixed a bug where iOS text selection and editing on HTML inputs within dialogs were broken.
  • Fixed a bug causing disabled pointer events in closed dialogs.
One-Time Password Field
  • Fixed pasting into One-Time Password Field in environments that do not support the legacy "Text" clipboard format by reading the pasted value as "text/plain".
  • Fixed issues with focus management in React 19.2+.
  • Fixed a bug to ensure that pasted values exceeding the field length are truncated.
Popper
  • Fixed a "Maximum update depth exceeded" bug for pages with a large number of popper instances.
  • Exposed data-side and data-align on PopperAnchor element
Presence
  • Fixed a "Maximum update depth exceeded" bug in React 19 that could occur when Presence was given a child with an unstable ref.
Radio Group
  • Added unstable RadioGroupItemProvider, RadioGroupItemTrigger and RadioGroupItemBubbleInput parts. These expose the previously internal composition of a radio item that included a visually hidden input so consumers can directly access and recompose them. The RadioGroupItem component continues to render them by default.

    import { RadioGroup } from 'radix-ui';
    
    function ExampleRadioGroup() {
      return (
        <RadioGroup.Root>
          {['one', 'two', 'three'].map((value) => (
            <RadioGroup.unstable_ItemProvider key={value} value={value}>
              <RadioGroup.unstable_ItemTrigger>
                <RadioGroup.Indicator />
              </RadioGroup.unstable_ItemTrigger>
              {/* the hidden input is now exposed and can be omitted if not needed */}
              <RadioGroup.unstable_ItemBubbleInput />
            </RadioGroup.unstable_ItemProvider>
          ))}
        </RadioGroup.Root>
      );
    }
Select
  • Added unstable Provider and BubbleInput parts to Select. These expose the previously internal composition that included a visually hidden select so consumers can directly access and recompose them. Select continues to render them by default.

    import { Select } from 'radix-ui';
    
    function ExampleSelect() {
      return (
        <Select.unstable_Provider>
          <Select.Trigger />
          <Select.Portal />
          {/* the hidden input is now exposed and can be omitted if not needed */}
          <Select.unstable_BubbleInput />
        </Select.unstable_Provider>
      );
    }
  • Added support for presence-based exit animations.

  • Fixed the bubble hidden input so that submits an empty string when no value is selected.

  • Fixed select closing unexpectedly after touch-scrolling its content when rendered inside an open shadow DOM.

  • Fixed SelectValue logging invalid prop errors when used with both asChild and a placeholder

Slider
  • Added unstable ThumbProvider, ThumbTrigger, and BubbleInput parts to Slider. SliderThumb was previously a single component that implicitly rendered a hidden native input for form submission. It is now composed from these new parts, which are exposed so consumers can decouple the visually hidden input from the thumb. SliderThumb continues to render them by default.

    import { Slider } from 'radix-ui';
    
    function ExampleSlider() {
      return (
        <Slider.Root defaultValue={[data.price.min, data.price.max]}>
          <Slider.Track>
            <Slider.Range />
          </Slider.Track>
    
          <Slider.unstable_ThumbProvider name="price[min]">
            <Slider.unstable_ThumbTrigger />
            {/* the hidden input is now exposed and can be omitted if not needed */}
            <Slider.unstable_BubbleInput />
          </Slider.unstable_ThumbProvider>
    
          <Slider.unstable_ThumbProvider name="price[max]">
            <Slider.unstable_ThumbTrigger />
            <Slider.unstable_BubbleInput />
          </Slider.unstable_ThumbProvider>
        </Slider.Root>
      );
    }
  • Added focusVisible for non-keyboard interactions with slider thumbs for progressively enabling styles using :focus-visible alongside programmatic focus management.

  • Fixed a Slider bug where very small step values made the thumbs unresponsive.

  • Fixed focus bugs for sliders in a scrollable context.

Slot
  • Added support for nested Slottable items via a render prop. This allows a slotted element to be wrapped while still merging Slot props and refs onto it.
  • Fixed infinite re-render loop in React 19 caused by Slot creating a new ref callback on every render.
  • Improved error messages for invalid slot children.
Switch
  • Added unstable Provider, Trigger and BubbleInput parts to Switch. These expose the previously internal composition that included a visually hidden input so consumers can directly access and recompose them. The Switch component continues to render them by default.

    import { Switch } from 'radix-ui';
    
    function ExampleSwitch() {
      return (
        <Switch.unstable_Provider>
          <Switch.unstable_Trigger>
            <Switch.Thumb />
          </Switch.unstable_Trigger>
          {/* the hidden input is now exposed and can be omitted if not needed */}
          <Switch.unstable_BubbleInput />
        </Switch.unstable_Provider>
      );
    }
Tooltip
  • Fixed a runtime error when an event target is a non-Node entity.
  • Fixed a Tooltip bug so that skipDelayDuration={0} works as expected. Previously, the open delay could still be skipped when moving between triggers.
Other changes
  • Use React's built-in useSyncExternalStore (React 18+) instead of importing the CJS-only use-sync-external-store/shim, with a fallback for React < 18. The shim called require("react") at module-evaluation time, which crashed ESM-only browser bundles when importing some components from the radix-ui package.
  • Fixed triggers referencing a non-existent elements via aria-controls when their content is removed from the DOM (credit to @​dodomorandi for the original PR).
  • Fixed a performance bottleneck where opening an overlay re-scanned the document and re-inserted the focus guards on every mount, forcing a synchronous reflow. The shared guard pair is now cached and only written to the DOM when their edge position actually changes.
  • Added missing use client directives to modules causing errors in RSC modules.
  • Added align prop to Menu.SubContent.
  • Fixed missing data-state attribute for Scroll Area scrollbars.
  • Allow to specify container for Toast.Announce.

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@vercel

vercel Bot commented Jun 13, 2026

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
cedric-crm Ready Ready Preview, Comment Jul 1, 2026 3:45pm

@renovate renovate Bot force-pushed the renovate/radix-ui-primitives-monorepo branch from ba65626 to 457a69b Compare July 1, 2026 15:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants