Download Latest Version v3.2.2 source code.zip (4.8 MB)
Email in envelope

Get an email when there's a new version of NextUI

Home / v3.0.5
Name Modified Size InfoDownloads / Week
Parent folder
README.md 2026-05-15 2.6 kB
v3.0.5 source code.tar.gz 2026-05-15 2.2 MB
v3.0.5 source code.zip 2026-05-15 3.2 MB
Totals: 3 Items   5.4 MB 0

⚠️ Breaking Changes

TextTypography

The component shipped in v3.0.4 used text-* BEM modifiers, which collide with Tailwind's text-* utility family. tailwind-variants runs tailwind-merge on every variant composition and dedupes text--body-sm, text--color-muted, text--weight-normal to a single class — silently dropping the others.

Renaming the block to typography permanently fixes the collision (#6505, closes #6497).

Before:

:::tsx
import {Text} from "@heroui/react";

<Text type="body-sm" color="muted" weight="medium">
  Hello world
</Text>;

After:

:::tsx
import {Typography} from "@heroui/react";

<Typography type="body-sm" color="muted" weight="medium">
  Hello world
</Typography>;

What's Changed

New Contributors

Full Changelog: https://github.com/heroui-inc/heroui/compare/v3.0.4...v3.0.5

Source: README.md, updated 2026-05-15