gifted-charts-core 0.0.8 → 0.0.9

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gifted-charts-core",
3
- "version": "0.0.8",
3
+ "version": "0.0.9",
4
4
  "description": "Mathematical and logical utilities used by react-gifted-charts and react-native-gifted-charts",
5
5
  "main": "index.ts",
6
6
  "files": [
@@ -121,7 +121,7 @@ export const getPropsForAnimated2DWithGradient = (props) => {
121
121
  ? focusedBarConfig?.barInnerComponent ?? localBarInnerComponent
122
122
  : localBarInnerComponent,
123
123
  patternId: item.patternId || patternId,
124
- width: localBarWidth,
124
+ barWidth: localBarWidth,
125
125
  barStyle: barStyle,
126
126
  item: item,
127
127
  index: index,
@@ -551,7 +551,7 @@ export type trianglePropTypes = {
551
551
  export type animatedBarPropTypes = {
552
552
  isAnimated?: boolean;
553
553
  animationDuration: number;
554
- width: number;
554
+ barWidth: number;
555
555
  sideWidth: number;
556
556
  height: number;
557
557
  showGradient: boolean;
@@ -581,7 +581,7 @@ export type CommonPropsFor2Dand3DbarsType = {
581
581
  barBackgroundPattern: Function;
582
582
  barInnerComponent: (item?: barDataItem, index?: number) => ReactNode;
583
583
  patternId: String;
584
- width: number;
584
+ barWidth: number;
585
585
  barStyle: object;
586
586
  item: barDataItem;
587
587
  index: number;