Changelog

Published versions of @radui/ui. Minor and patch sections follow SemVer. Source: CHANGELOG.md in the repository.

Release

v0.1.9

npm
Patch Changes
  • 4be6c27Fix React RSC (React Server Components) vulnerability by ensuring proper client component directives and preventing server-side rendering issues
  • 9fb0047Improve component styling and accessibility, add animations, and update component examples

Release

v0.1.8

npm
Patch Changes
  • d22ef40resize, size and varaint api support added for textarea

Release

v0.1.6

npm
Patch Changes
  • 4363ff3Added Separator for dropdown , context and menubar menus
  • 336fe3fMenuPrimitive root now supports rtl, loop, avoidCollision,placement and the item supports disabled, asChild , onSelect. Tests for the same have been added too.
  • bcad222Fix incomplete npm bundles for some 0.1.x releases; raise Node heap for builds, add export validation and a --check flag, with ESM/CJS and root export support.

Release

v0.1.5

npm
Patch Changes
  • f77dc1bSub-components, now throw subtle warnings instead of console logs

Release

v0.1.0

npm
Minor Changes
  • b471ddbTests, API improvements across components, Steps + Minimap, roving focus for CheckboxGroup, RadioGroup and Select updates, forwardRef on many primitives, a11y and build fixes.
BREAKING CHANGES

Toggle: onChange was renamed to onPressedChange.

// Before
<Toggle onChange={(pressed) => { /* handle toggle */ }} />

// After
<Toggle onPressedChange={(pressed) => { /* handle toggle */ }} />