gifted-charts-core 0.0.26 → 0.0.27
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.
- package/package.json +2 -2
- package/src/index.d.ts +1 -1
- package/src/index.js +1 -1
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gifted-charts-core",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.27",
|
|
4
4
|
"description": "Mathematical and logical utilities used by react-gifted-charts and react-native-gifted-charts",
|
|
5
|
-
"main": "index.
|
|
5
|
+
"main": "index.ts",
|
|
6
6
|
"files": [
|
|
7
7
|
"src"
|
|
8
8
|
],
|
package/src/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/***************************************** Bar Chart *****************************************
|
|
3
3
|
/***********************************************************************************************************************/
|
|
4
4
|
export { useBarChart } from './BarChart';
|
|
5
|
-
export { getPropsForAnimated2DWithGradient } from './BarChart/Animated2DWithGradient
|
|
5
|
+
export { getPropsForAnimated2DWithGradient } from './BarChart/Animated2DWithGradient';
|
|
6
6
|
export { useRenderStackBars } from './BarChart/RenderStackBars';
|
|
7
7
|
export { type stackDataItem, type StackedBarChartPropsType, type BarChartPropsType, type defaultLineConfigType, type barDataItem, type Animated2DWithGradientPropsType, type RenderBarsPropsType, type trianglePropTypes, type animatedBarPropTypes, type FocusedBarConfig, type CommonPropsFor2Dand3DbarsType } from './BarChart/types';
|
|
8
8
|
/************************************************************************************************************************
|
package/src/index.js
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
/***************************************** Bar Chart *****************************************
|
|
3
3
|
/***********************************************************************************************************************/
|
|
4
4
|
export { useBarChart } from './BarChart';
|
|
5
|
-
export { getPropsForAnimated2DWithGradient } from './BarChart/Animated2DWithGradient
|
|
5
|
+
export { getPropsForAnimated2DWithGradient } from './BarChart/Animated2DWithGradient';
|
|
6
6
|
export { useRenderStackBars } from './BarChart/RenderStackBars';
|
|
7
7
|
/************************************************************************************************************************
|
|
8
8
|
/***************************************** Line Chart *****************************************
|