@sproutsocial/seeds-react-data-viz 0.5.3 → 0.6.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.
- package/dist/esm/index.js +4 -2
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.mts +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/package.json +8 -8
package/dist/esm/index.js
CHANGED
|
@@ -2078,7 +2078,8 @@ var LineChartWithData = memo23(function LineChartWithData2({
|
|
|
2078
2078
|
onClick,
|
|
2079
2079
|
tooltipClickLabel,
|
|
2080
2080
|
timeFormat = "12",
|
|
2081
|
-
xAnnotations
|
|
2081
|
+
xAnnotations,
|
|
2082
|
+
xAxisLabelFormatter: xAxisLabelFormatter2
|
|
2082
2083
|
}) {
|
|
2083
2084
|
const { options, chart, callback } = useTimeSeriesChartOptions({
|
|
2084
2085
|
currency,
|
|
@@ -2091,7 +2092,8 @@ var LineChartWithData = memo23(function LineChartWithData2({
|
|
|
2091
2092
|
yAxisLabelFormatter: yAxisLabelFormatter2,
|
|
2092
2093
|
onClick,
|
|
2093
2094
|
timeFormat,
|
|
2094
|
-
xAnnotations
|
|
2095
|
+
xAnnotations,
|
|
2096
|
+
xAxisLabelFormatter: xAxisLabelFormatter2
|
|
2095
2097
|
});
|
|
2096
2098
|
const { colors, patterns } = data.reduce(
|
|
2097
2099
|
(acc, item, index) => {
|