Skip to content

Releases: sapegin/react-group

v4.0.0

09 May 09:00
Compare
Choose a tag to compare

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

20 Jun 12:06
Compare
Choose a tag to compare
  • Fixed: Make separator prop options in TypeScript types

v3.0.1

20 Jun 07:12
Compare
Choose a tag to compare
  • Fixed: Add TypeScript types

v3.0.0

05 Feb 15:09
Compare
Choose a tag to compare

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

24 Aug 11:22
Compare
Choose a tag to compare

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

09 Apr 06:58
Compare
Choose a tag to compare
  • Fixed: Use React.Children.toArray instead of manual conversion (#4)

v1.0.5

19 Jun 18:45
Compare
Choose a tag to compare
  • Fixed: Update React peer dependency

v1.0.4

13 Apr 11:58
Compare
Choose a tag to compare
  • Fixed: React 15.5 support (#2)

v1.0.3

02 Feb 16:00
Compare
Choose a tag to compare
  • Fixed: Fix warnings when using <br/> separator (#1)

v1.0.2

21 Jan 10:35
Compare
Choose a tag to compare
  • Fixed: Allow separator to be a component