react-native-financial-charts 1.0.0 → 1.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # 📈 React Native Finance Kit
1
+ # 📈 React Native Financial Charts
2
2
 
3
3
  <p align="center">
4
4
  <img src="./docs/assets/0.gif" alt="Interactive Line" />
@@ -20,7 +20,7 @@ Designed to render animations at **60/120 FPS** on the UI thread, with absolute
20
20
  Since this library relies on powerful native modules, you must install the **Peer Dependencies**:
21
21
 
22
22
  ```bash
23
- yarn add react-native-finance-kit
23
+ yarn add react-native-financial-charts
24
24
 
25
25
  # Install required dependencies
26
26
  yarn add @shopify/react-native-skia react-native-reanimated react-native-gesture-handler d3
@@ -35,7 +35,7 @@ yarn add @shopify/react-native-skia react-native-reanimated react-native-gesture
35
35
  ```tsx
36
36
  import React from 'react';
37
37
  import { View } from 'react-native';
38
- import { Chart } from 'react-native-finance-kit';
38
+ import { Chart } from 'react-native-financial-charts';
39
39
  import { GestureHandlerRootView } from 'react-native-gesture-handler';
40
40
 
41
41
  const data = [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-financial-charts",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "A high-performance financial visual chart for React Native built with Skia.",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",