Skip to content

Releases: coinjar/react-native-wagmi-charts

v2.5.3

04 Sep 22:01
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.5.2...v2.5.3

v2.5.2

17 Jun 01:04
Compare
Choose a tag to compare

What's Changed

  • Split SVGs in ChartPath to improve performance (#177)
  • Fix Dot's pulse animation (#176)

New Contributors

Full Changelog: v2.5.1...v2.5.2

v2.5.1

22 May 01:56
Compare
Choose a tag to compare

Changes

  • Code clean up by (#172)

Full Changelog: v2.5.0...v2.5.1

v2.5.0

21 May 00:35
Compare
Choose a tag to compare

Changes

  • Upgrade to RN 0.74 and Expo SDK 51 (#173)

New Contributors

Full Changelog: v2.4.1...v2.5.0

v2.4.1

02 May 05:15
Compare
Choose a tag to compare

Changes

  • Fix highlight path in #170

Full Changelog: v2.4.0...v2.4.1

v2.4.0

30 Apr 00:09
Compare
Choose a tag to compare

Changes

  • Update example expo version to v48 #143
  • Add xDomain support + fix min/max label positions #144
  • Upgrade example expo version to v49 + remove @shopify/react-native-skia package #149
  • Fix snapToPoint crash #148
  • Support react-native-reanimated v3.3.0 #151
  • Fix types + upgrade packages 5e4232f
  • Add fbjs package to example #169

Full Changelog: v.2.3.0...v2.4.0

Release v2.3.0

21 Feb 11:51
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v2.2.0...v.2.3.0

Release v2.2.0

18 Jan 05:21
Compare
Choose a tag to compare

Features

  • feat: static labels/tooltips #81
  • feat: add a minimum for x value on Cursor change #78

Fixes

  • chore(docs): fix gradient code examples #79
  • fix: move rn-svg also to peer deps #80
  • fix: prevent Require cycle warning #96
  • fix: fix types path #83
  • fix: tooltip docs #69

v2.1.0

16 Dec 00:08
Compare
Choose a tag to compare

Changes

Features

  • Updated React Native Reanimated to 2.3.x
  • Updated React Native Gesture Handler to 2.x.x
  • Added LineChart.HoverTrap for web

v2.0.0

23 Nov 10:57
Compare
Choose a tag to compare

Breaking changes

  • By default, the LineChart.Dot component is not pulseable by default, this is now opt in with the hasPulse prop.
    • Removed LineChart.Dot's outerPulse prop in favour of hasPulse & pulseBehaviour
    • See more in the docs

Before

<LineChart.Dot color="red" at={10} />
<LineChart.Dot color="red" at={10} pulseOuter="always" />
<LineChart.Dot color="red" at={10} pulseOuter="never" />

After

<LineChart.Dot color="red" at={10} hasPulse />
<LineChart.Dot color="red" at={10} hasPulse pulseBehaviour="always" />
<LineChart.Dot color="red" at={10} />

Features

Fixes

  • Fixed issue where LineChart.CursorCrosshair was causing Android to crash (#50)