Releases: sapegin/react-group
Releases · sapegin/react-group
v4.0.0
4.0.0 (2024-05-09)
Bug Fixes
Features
- Upgrade the release process (b064a13)
BREAKING CHANGES
- Node.js 20 is the minimum supported version
v3.0.2
- Fixed: Make separator prop options in TypeScript types
v3.0.1
- Fixed: Add TypeScript types
v3.0.0
Breaking changes
- Remove the wrapper tag (
div
or span
), return an array instead
- No support for React lower than 16
- No
as
and className
props
Bug fixes
- Fix filtering of falsy elements
v2.0.0
Breaking changes
- Node 4 and 5 are no longer supported, Node 6 is the minimal version.
New features
Render using custom element with the new is
prop:
<Group is="nav">
<a href="#">One</a>
<a href="#">Two</a>
<a href="#">Three</a>
</Group>
v1.0.6
- Fixed: Use React.Children.toArray instead of manual conversion (#4)
v1.0.5
- Fixed: Update React peer dependency
v1.0.4
- Fixed: React 15.5 support (#2)
v1.0.3
- Fixed: Fix warnings when using
<br/>
separator (#1)
v1.0.2
- Fixed: Allow separator to be a component