@gyramais/gyra-design 0.1.20 → 0.1.22

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/README.md CHANGED
@@ -33,5 +33,5 @@ Para realizar o build do pacote completo
33
33
 
34
34
  Para realizar o build de um componente específico (ex: Button)
35
35
  ```
36
- npm run build --component=Button
36
+ npm run build-rollup --component=Button
37
37
  ```
@@ -17,6 +17,7 @@ type ChartProps = {
17
17
  layout?: 'horizontal' | 'vertical';
18
18
  barSize?: number;
19
19
  barGap?: number;
20
+ barMaxValue?: number;
20
21
  indexes?: Array<{
21
22
  name: string;
22
23
  key: string;
@@ -36,5 +37,5 @@ type ChartProps = {
36
37
  };
37
38
  data?: BarChartData | PieChartData | LineChartData;
38
39
  };
39
- declare const Chart: ({ id, className, type, layout, barSize, barGap, indexes, x, y, data, }: ChartProps) => React.JSX.Element;
40
+ declare const Chart: ({ id, className, type, layout, barSize, barGap, barMaxValue, indexes, x, y, data, }: ChartProps) => React.JSX.Element;
40
41
  export { Chart };