| Name | Modified | Size | Downloads / 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
Text → Typography
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
- fix(styles): use accent soft foreground for default hover by @jrgarciadev in https://github.com/heroui-inc/heroui/pull/6500
- fix(styles): disable twMerge for textVariants by @wingkwong in https://github.com/heroui-inc/heroui/pull/6501
- refactor(styles): use unprefixed source tokens across components and theme builder by @diegonzs in https://github.com/heroui-inc/heroui/pull/6499
- feat(docs): add CLI page by @wingkwong in https://github.com/heroui-inc/heroui/pull/6498
- docs(native): document HeroUI Native v1.0.3 release by @vvv-sss in https://github.com/heroui-inc/heroui/pull/6502
- docs(text): refine Text component docs — reorder sidebar and update usage demo by @jrgarciadev in https://github.com/heroui-inc/heroui/pull/6504
- refactor(text): rename Text to Typography by @aosmcleod in https://github.com/heroui-inc/heroui/pull/6505
- chore(deps): bump next version + action version by @wingkwong in https://github.com/heroui-inc/heroui/pull/6529
- fix(styles): use field-border for radio default border color by @jrgarciadev in https://github.com/heroui-inc/heroui/pull/6522
- fix(styles): add field border width to checkbox control by @jrgarciadev in https://github.com/heroui-inc/heroui/pull/6521
- docs(releases): add v3.0.5 release notes by @jrgarciadev in https://github.com/heroui-inc/heroui/pull/6531
- V3.0.5 by @jrgarciadev in https://github.com/heroui-inc/heroui/pull/6503
New Contributors
- @aosmcleod made their first contribution in https://github.com/heroui-inc/heroui/pull/6505
Full Changelog: https://github.com/heroui-inc/heroui/compare/v3.0.4...v3.0.5