@react-magma/charts 7.0.1-next.1 → 7.0.1-next.2

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.
@@ -22,6 +22,9 @@ export interface LineChartComponentProps {
22
22
  xAxis?: VictoryAxisProps;
23
23
  yAxis?: VictoryAxisProps;
24
24
  }
25
+ /**
26
+ * @deprecated Please use CarbonChart instead
27
+ */
25
28
  export interface LineChartProps<T extends ChartDataOptions> {
26
29
  /**
27
30
  * Props passed to each component that makes up the line chart. See `victory` for accepted props.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-magma/charts",
3
- "version": "7.0.1-next.1",
3
+ "version": "7.0.1-next.2",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -54,6 +54,9 @@ export interface LineChartComponentProps {
54
54
  yAxis?: VictoryAxisProps;
55
55
  }
56
56
 
57
+ /**
58
+ * @deprecated Please use CarbonChart instead
59
+ */
57
60
  // NOTE: These props are manually copied to line-chart.mdx
58
61
  export interface LineChartProps<T extends ChartDataOptions> {
59
62
  /**