Skip to content

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

Merged
icholy merged 1 commit into
masterfrom
renovate/radix-ui-primitives-monorepo
Jul 27, 2026
Merged

chore(deps): update radix-ui-primitives monorepo#1518
icholy merged 1 commit into
masterfrom
renovate/radix-ui-primitives-monorepo

Conversation

@renovate

@renovate renovate Bot commented Jul 27, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
@radix-ui/react-label (source) 2.1.112.1.12 age confidence
@radix-ui/react-select (source) 2.3.32.3.4 age confidence
@radix-ui/react-switch (source) 1.3.31.3.4 age confidence
@radix-ui/react-tabs (source) 1.1.171.1.18 age confidence
@radix-ui/react-tooltip (source) 1.2.121.2.13 age confidence
radix-ui (source) 1.6.21.6.4 age confidence

Release Notes

radix-ui/primitives (@​radix-ui/react-label)

v2.1.12

  • Improved tree-shaking so bundlers can drop unused components. Component parts are now marked /* @​__PURE__ */ and use named render functions instead of Component.displayName = ... assignments, which previously prevented dead-code elimination with some bundlers.
  • Updated dependencies: @radix-ui/react-primitive@2.1.7
radix-ui/primitives (@​radix-ui/react-select)

v2.3.4

  • Improved tree-shaking so bundlers can drop unused components. Component parts are now marked /* @​__PURE__ */ and use named render functions instead of Component.displayName = ... assignments, which previously prevented dead-code elimination with some bundlers.
  • Updated dependencies: @radix-ui/react-popper@1.3.4, @radix-ui/react-dismissable-layer@1.1.16, @radix-ui/react-focus-scope@1.1.13, @radix-ui/react-portal@1.1.14, @radix-ui/react-presence@1.1.8, @radix-ui/react-visually-hidden@1.2.8, @radix-ui/react-use-controllable-state@1.2.4, @radix-ui/primitive@1.1.6, @radix-ui/number@1.1.2, @radix-ui/react-collection@1.1.12, @radix-ui/react-compose-refs@1.1.3, @radix-ui/react-context@1.2.0, @radix-ui/react-direction@1.1.2, @radix-ui/react-focus-guards@1.1.4, @radix-ui/react-id@1.1.2, @radix-ui/react-primitive@2.1.7, @radix-ui/react-slot@1.3.0, @radix-ui/react-use-callback-ref@1.1.2, @radix-ui/react-use-layout-effect@1.1.2, @radix-ui/react-use-previous@1.1.2
radix-ui/primitives (@​radix-ui/react-switch)

v1.3.4

  • Improved tree-shaking so bundlers can drop unused components. Component parts are now marked /* @​__PURE__ */ and use named render functions instead of Component.displayName = ... assignments, which previously prevented dead-code elimination with some bundlers.
  • Fixed a bug where updating a Checkbox, Switch, or RadioGroup value programmatically (eg. a "select all" control) while inside a <form> would dispatch a click event from the hidden bubble input that propagated to ancestor onClick handlers.
  • Updated dependencies: @radix-ui/react-use-controllable-state@1.2.4, @radix-ui/primitive@1.1.6, @radix-ui/react-compose-refs@1.1.3, @radix-ui/react-context@1.2.0, @radix-ui/react-primitive@2.1.7, @radix-ui/react-use-size@1.1.2
radix-ui/primitives (@​radix-ui/react-tabs)

v1.1.18

  • Improved tree-shaking so bundlers can drop unused components. Component parts are now marked /* @&#8203;__PURE__ */ and use named render functions instead of Component.displayName = ... assignments, which previously prevented dead-code elimination with some bundlers.
  • Updated dependencies: @radix-ui/react-presence@1.1.8, @radix-ui/react-roving-focus@1.1.16, @radix-ui/react-use-controllable-state@1.2.4, @radix-ui/primitive@1.1.6, @radix-ui/react-context@1.2.0, @radix-ui/react-direction@1.1.2, @radix-ui/react-id@1.1.2, @radix-ui/react-primitive@2.1.7
radix-ui/primitives (@​radix-ui/react-tooltip)

v1.2.13

  • Fixed a bug where Tooltip.Content children were mounted to the DOM twice.
  • Improved tree-shaking so bundlers can drop unused components. Component parts are now marked /* @&#8203;__PURE__ */ and use named render functions instead of Component.displayName = ... assignments, which previously prevented dead-code elimination with some bundlers.
  • Updated dependencies: @radix-ui/react-popper@1.3.4, @radix-ui/react-dismissable-layer@1.1.16, @radix-ui/react-portal@1.1.14, @radix-ui/react-presence@1.1.8, @radix-ui/react-visually-hidden@1.2.8, @radix-ui/react-use-controllable-state@1.2.4, @radix-ui/primitive@1.1.6, @radix-ui/react-compose-refs@1.1.3, @radix-ui/react-context@1.2.0, @radix-ui/react-id@1.1.2, @radix-ui/react-primitive@2.1.7, @radix-ui/react-slot@1.3.0, @radix-ui/react-use-layout-effect@1.1.2
radix-ui/primitives (radix-ui)

v1.6.4

  • Fixed a regression where importing primitives from the root radix-ui entry point erased every primitive's types to any.

v1.6.3

Dialog
  • Fixed broken ARIA references in Dialogs where title or description elements are not rendered.
Slider
  • Fixed a bug where onValueCommit was not called when a slider thumb was dragged across another thumb.
Toast
  • Fixed Toast removing non-focused toasts when pressing Escape.
Tooltip
  • Fixed a bug where Tooltip.Content children were mounted to the DOM twice.
Other updates
  • Fixed overriding inline animation style in Popper.Content.
  • Improved tree-shaking so bundlers can drop unused components. Component parts are now marked /* @&#8203;__PURE__ */ and use named render functions instead of Component.displayName = ... assignments, which previously prevented dead-code elimination with some bundlers.
  • Widened virtualRef prop type to allow RefObject<Measurable | null> in popover components.
  • Fixed dev-only checks with conditional exports to drop dev-warnings from production builds.
  • Added per-primitive subpath entry points so each primitive can be imported directly, eg. import { Accordion } from 'radix-ui/accordion' or import * as Accordion from 'radix-ui/accordion'. This mirrors the namespaced exports available from the root radix-ui entry point.
  • Fixed a bug where updating a Checkbox, Switch, or RadioGroup value programmatically (eg. a "select all" control) while inside a <form> would dispatch a click event from the hidden bubble input that propagated to ancestor onClick handlers.

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Enabled.

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.

@renovate
renovate Bot requested a review from icholy as a code owner July 27, 2026 03:32
@renovate
renovate Bot force-pushed the renovate/radix-ui-primitives-monorepo branch from fe90e03 to b731f3c Compare July 27, 2026 11:01
@icholy
icholy merged commit 113c5f6 into master Jul 27, 2026
7 checks passed
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.

1 participant