@economic/taco 2.57.0-charts.9 → 2.57.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/README.md +2 -5
- package/dist/taco.cjs +86 -108
- package/dist/taco.cjs.map +1 -1
- package/dist/taco.css +18 -7
- package/dist/taco.d.ts +110 -26
- package/dist/taco.js +86 -108
- package/dist/taco.js.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
@@ -36,10 +36,7 @@ Your `tailwind.config.js` should look something like this:
|
|
36
36
|
module.exports = {
|
37
37
|
presets: [require('@economic/taco/tailwind.config.js')],
|
38
38
|
content: {
|
39
|
-
files: [
|
40
|
-
'./src/**/*.{ts,tsx}',
|
41
|
-
'./node_modules/@economic/taco/dist/taco.js',
|
42
|
-
],
|
39
|
+
files: ['./src/**/*.{ts,tsx}', './node_modules/@economic/taco/dist/taco.js'],
|
43
40
|
},
|
44
41
|
};
|
45
42
|
```
|
@@ -49,7 +46,7 @@ You should then import the tailwind and taco stylesheet in your application:
|
|
49
46
|
```css
|
50
47
|
@import 'tailwindcss/base';
|
51
48
|
@import 'tailwindcss/components';
|
52
|
-
@import '@economic/taco/
|
49
|
+
@import '@economic/taco/taco.css';
|
53
50
|
@import 'tailwindcss/utilities';
|
54
51
|
```
|
55
52
|
|
package/dist/taco.cjs
CHANGED
@@ -7737,6 +7737,9 @@ const defaultLocalisationTexts = {
|
|
7737
7737
|
today: "Today"
|
7738
7738
|
}
|
7739
7739
|
},
|
7740
|
+
card: {
|
7741
|
+
menu: "Open menu"
|
7742
|
+
},
|
7740
7743
|
combobox: {
|
7741
7744
|
tooltip: "Search in list"
|
7742
7745
|
},
|
@@ -8035,7 +8038,7 @@ const defaultLocalisationTexts = {
|
|
8035
8038
|
}
|
8036
8039
|
};
|
8037
8040
|
const defaultLocalizationContext = {
|
8038
|
-
locale: "
|
8041
|
+
locale: "da-DK",
|
8039
8042
|
texts: defaultLocalisationTexts,
|
8040
8043
|
formatting: {
|
8041
8044
|
date: "dd.mm.yy"
|
@@ -11648,11 +11651,21 @@ const Content$8 = React__namespace.forwardRef(function CardContent(externalProps
|
|
11648
11651
|
});
|
11649
11652
|
const Card = React__namespace.forwardRef(function Card2(props, ref) {
|
11650
11653
|
const { title, menu, children, className, ...otherProps } = props;
|
11654
|
+
const localization = useLocalization();
|
11651
11655
|
const cardClassName = clsx(
|
11652
11656
|
"bg-white flex flex-col rounded-xl border border-solid border-radius-[12px] border-grey-300 hover:border-grey-500",
|
11653
11657
|
className
|
11654
11658
|
);
|
11655
|
-
return /* @__PURE__ */ React__namespace.createElement("div", { ...otherProps, className: cardClassName, "data-taco": "card", ref }, /* @__PURE__ */ React__namespace.createElement("div", { className: "flex justify-between px-4 pb-2 pt-4" }, title && /* @__PURE__ */ React__namespace.createElement(Truncate, { tooltip: title }, /* @__PURE__ */ React__namespace.createElement("h4", { className: "mb-0 flex-grow truncate text-left" }, title)), menu ? /* @__PURE__ */ React__namespace.createElement(
|
11659
|
+
return /* @__PURE__ */ React__namespace.createElement("div", { ...otherProps, className: cardClassName, "data-taco": "card", ref }, /* @__PURE__ */ React__namespace.createElement("div", { className: "flex justify-between px-4 pb-2 pt-4" }, title && /* @__PURE__ */ React__namespace.createElement(Truncate, { tooltip: title }, /* @__PURE__ */ React__namespace.createElement("h4", { className: "mb-0 flex-grow truncate text-left" }, title)), menu ? /* @__PURE__ */ React__namespace.createElement(
|
11660
|
+
IconButton,
|
11661
|
+
{
|
11662
|
+
"aria-label": localization.texts.card.menu,
|
11663
|
+
icon: "ellipsis-horizontal",
|
11664
|
+
appearance: "discrete",
|
11665
|
+
menu,
|
11666
|
+
className: "-mt-[4px]"
|
11667
|
+
}
|
11668
|
+
) : null), children);
|
11656
11669
|
});
|
11657
11670
|
Card.Content = Content$8;
|
11658
11671
|
function $010c2913dbd2fe3d$export$5cae361ad82dce8b(value) {
|
@@ -82761,20 +82774,48 @@ var AreaChart$1 = generateCategoricalChart({
|
|
82761
82774
|
}],
|
82762
82775
|
formatAxisMap: formatAxisMap2
|
82763
82776
|
});
|
82764
|
-
function getAxisProps(
|
82765
|
-
const
|
82777
|
+
function getAxisProps(axis, props, inverted = false) {
|
82778
|
+
const { showXAxis = true, showYAxis = false } = props;
|
82779
|
+
const isYAxis = axis === "y";
|
82780
|
+
let hide2 = isYAxis ? !showYAxis : !showXAxis;
|
82781
|
+
let dataKey = isYAxis ? void 0 : props.dataKey;
|
82782
|
+
let minTickGap = 5;
|
82783
|
+
let type;
|
82784
|
+
if (inverted) {
|
82785
|
+
dataKey = isYAxis ? props.dataKey : void 0;
|
82786
|
+
hide2 = isYAxis ? !showXAxis : !showYAxis;
|
82787
|
+
minTickGap = isYAxis ? 1 : minTickGap;
|
82788
|
+
type = isYAxis ? "category" : "number";
|
82789
|
+
}
|
82766
82790
|
return {
|
82767
82791
|
axisLine: false,
|
82768
82792
|
dataKey,
|
82769
82793
|
fontSize: 11,
|
82794
|
+
hide: hide2,
|
82770
82795
|
interval: "preserveStartEnd",
|
82771
|
-
|
82796
|
+
minTickGap,
|
82797
|
+
scale: isYAxis ? props.yAxisScale : props.xAxisScale,
|
82772
82798
|
tickLine: false,
|
82773
|
-
tickMargin:
|
82774
|
-
tickFormatter,
|
82775
|
-
|
82799
|
+
tickMargin: axis === "y" ? 2 : 6,
|
82800
|
+
tickFormatter: isYAxis ? props.yAxisTickFormatter : props.xAxisTickFormatter,
|
82801
|
+
type,
|
82802
|
+
width: (isYAxis ? props.yAxisWidth : void 0) ?? 55
|
82776
82803
|
};
|
82777
82804
|
}
|
82805
|
+
function stripCartesianProps(props) {
|
82806
|
+
const {
|
82807
|
+
dataKey,
|
82808
|
+
showXAxis,
|
82809
|
+
showYAxis,
|
82810
|
+
xAxisScale,
|
82811
|
+
xAxisTickFormatter,
|
82812
|
+
yAxisScale,
|
82813
|
+
yAxisTickFormatter,
|
82814
|
+
yAxisWidth,
|
82815
|
+
...otherProps
|
82816
|
+
} = props;
|
82817
|
+
return otherProps;
|
82818
|
+
}
|
82778
82819
|
function ChartWrapper(props) {
|
82779
82820
|
const { onSetWidth: handleSetWidth, ...attributes } = props;
|
82780
82821
|
const ref = React.useRef(null);
|
@@ -82790,11 +82831,11 @@ function ChartWrapper(props) {
|
|
82790
82831
|
function Tooltip(props) {
|
82791
82832
|
const { active, payload = [], style, title } = props;
|
82792
82833
|
if (active && payload.length) {
|
82793
|
-
return /* @__PURE__ */ React.createElement("div", { className: "border-grey-300 z-20 flex flex-col gap-y-1 rounded-md border bg-white px-2 py-1.5 text-xs shadow-sm" }, title ? /* @__PURE__ */ React.createElement("span", { className: "font-bold" }, title) : null, /* @__PURE__ */ React.createElement("dl", { className: "m-0 grid grid-cols-[max-content_max-content] gap-x-4 gap-y-0.5", style }, payload.map((entry, index2) => {
|
82834
|
+
return /* @__PURE__ */ React.createElement("div", { className: "border-grey-300 z-20 z-[999] flex flex-col gap-y-1 rounded-md border bg-white px-2 py-1.5 text-xs shadow-sm" }, title ? /* @__PURE__ */ React.createElement("span", { className: "font-bold" }, title) : null, /* @__PURE__ */ React.createElement("dl", { className: "m-0 grid grid-cols-[max-content_max-content] gap-x-4 gap-y-0.5", style }, payload.map((entry, index2) => {
|
82794
82835
|
const color2 = entry.color ?? entry.payload.color;
|
82795
82836
|
const formatter = entry.formatter ?? entry.payload.formatter;
|
82796
82837
|
const unit2 = entry.unit ?? entry.payload.unit;
|
82797
|
-
return /* @__PURE__ */ React.createElement(React.Fragment, { key: `${entry.name}-${index2}` }, /* @__PURE__ */ React.createElement("dt", { className: "text-grey-700 mb-0 flex items-center gap-1 font-normal" }, /* @__PURE__ */ React.createElement("span", { className: "-mt-px h-2.5 w-2.5 rounded-sm", style: { background: color2 } }), entry.name), /* @__PURE__ */ React.createElement("dd", { className: "mb-0 text-right font-bold tabular-nums text-black" }, (formatter == null ? void 0 : formatter(entry.value ?? "", entry.name ?? "", entry, index2, entry.payload)) ?? entry.value,
|
82838
|
+
return /* @__PURE__ */ React.createElement(React.Fragment, { key: `${entry.name}-${index2}` }, /* @__PURE__ */ React.createElement("dt", { className: "text-grey-700 mb-0 flex items-center gap-1 font-normal", "data-taco": "chart-tooltip" }, /* @__PURE__ */ React.createElement("span", { className: "-mt-px h-2.5 w-2.5 rounded-sm", style: { background: color2 } }), entry.name), /* @__PURE__ */ React.createElement("dd", { className: "mb-0 text-right font-bold tabular-nums text-black" }, (formatter == null ? void 0 : formatter(entry.value ?? "", entry.name ?? "", entry, index2, entry.payload)) ?? entry.value, unit2 ? /* @__PURE__ */ React.createElement("span", { className: "text-grey-700 pl-0.5" }, unit2) : null));
|
82798
82839
|
})));
|
82799
82840
|
}
|
82800
82841
|
return null;
|
@@ -82826,7 +82867,7 @@ function Legend$1(props) {
|
|
82826
82867
|
return /* @__PURE__ */ React.createElement(
|
82827
82868
|
"button",
|
82828
82869
|
{
|
82829
|
-
key: item.label
|
82870
|
+
key: `${item.label}_${index2}`,
|
82830
82871
|
className: "hover:bg-grey-200 focus-visible:yt-focus flex items-center rounded px-1 !text-xs",
|
82831
82872
|
onClick: (event) => {
|
82832
82873
|
event == null ? void 0 : event.preventDefault();
|
@@ -82996,7 +83037,8 @@ function useChart(children, options) {
|
|
82996
83037
|
const [activeIndex, setActiveIndex] = React.useState();
|
82997
83038
|
const [hiddenItems, toggleItem] = useChartDataHiddenState();
|
82998
83039
|
const localization = useLocalization();
|
82999
|
-
const defaultFormatter2 = (value) => new Intl.NumberFormat(localization.locale).format(value);
|
83040
|
+
const defaultFormatter2 = (value) => new Intl.NumberFormat(localization.locale, { minimumFractionDigits: 2 }).format(value);
|
83041
|
+
const globalFormatter = (options == null ? void 0 : options.formatter) ?? defaultFormatter2;
|
83000
83042
|
const { items, shapes } = React.useMemo(() => {
|
83001
83043
|
const items2 = React.Children.toArray(children).filter((child) => React.isValidElement(child)).map((child) => {
|
83002
83044
|
const dataKey = child.props.dataKey ?? child.props.label;
|
@@ -83004,7 +83046,7 @@ function useChart(children, options) {
|
|
83004
83046
|
...child.props,
|
83005
83047
|
dataKey,
|
83006
83048
|
color: getThemeColor(child.props.color, "blue-300"),
|
83007
|
-
formatter: child.props.formatter ??
|
83049
|
+
formatter: child.props.formatter ?? globalFormatter,
|
83008
83050
|
isHidden: !!hiddenItems[dataKey],
|
83009
83051
|
unit: child.props.unit ?? (options == null ? void 0 : options.unit)
|
83010
83052
|
};
|
@@ -83031,7 +83073,7 @@ function useChart(children, options) {
|
|
83031
83073
|
});
|
83032
83074
|
return { items: items2, shapes: shapes2 };
|
83033
83075
|
}, [children, hiddenItems]);
|
83034
|
-
return { items, shapes, activeIndex, setActiveIndex, toggleItem };
|
83076
|
+
return { items, shapes, activeIndex, setActiveIndex, globalFormatter, toggleItem };
|
83035
83077
|
}
|
83036
83078
|
function useChartDataHiddenState() {
|
83037
83079
|
const [state, setState] = React.useState({});
|
@@ -83053,21 +83095,13 @@ function AreaChart(props) {
|
|
83053
83095
|
children,
|
83054
83096
|
className: customClassName,
|
83055
83097
|
data,
|
83056
|
-
dataKey,
|
83057
|
-
showDots = false,
|
83058
83098
|
showLegend = false,
|
83059
|
-
|
83060
|
-
showYAxis = false,
|
83099
|
+
showDots = false,
|
83061
83100
|
stacked = false,
|
83062
83101
|
tooltipTitle,
|
83063
83102
|
type = "natural",
|
83064
|
-
xAxisScale,
|
83065
|
-
xAxisTickFormatter,
|
83066
|
-
yAxisScale,
|
83067
|
-
yAxisTickFormatter,
|
83068
|
-
yAxisWidth,
|
83069
83103
|
...attributes
|
83070
|
-
} = props;
|
83104
|
+
} = stripCartesianProps(props);
|
83071
83105
|
const className = clsx("relative aspect-video", { "pb-8": showLegend }, customClassName);
|
83072
83106
|
const { items, shapes, activeIndex, setActiveIndex, toggleItem } = useChart(children);
|
83073
83107
|
return /* @__PURE__ */ React.createElement("div", { className, "data-taco": "chart-wrapper" }, /* @__PURE__ */ React.createElement(ChartWrapper, { ...attributes, className: "h-full w-full", "data-taco": "chart-area" }, /* @__PURE__ */ React.createElement(
|
@@ -83085,20 +83119,8 @@ function AreaChart(props) {
|
|
83085
83119
|
},
|
83086
83120
|
/* @__PURE__ */ React.createElement(CartesianGrid, { vertical: false }),
|
83087
83121
|
/* @__PURE__ */ React.createElement(Tooltip$1, { content: /* @__PURE__ */ React.createElement(Tooltip, { title: tooltipTitle }) }),
|
83088
|
-
/* @__PURE__ */ React.createElement(
|
83089
|
-
|
83090
|
-
{
|
83091
|
-
...getAxisProps(xAxisScale, xAxisTickFormatter, dataKey),
|
83092
|
-
hide: !showXAxis
|
83093
|
-
}
|
83094
|
-
),
|
83095
|
-
/* @__PURE__ */ React.createElement(
|
83096
|
-
YAxis,
|
83097
|
-
{
|
83098
|
-
...getAxisProps(yAxisScale, yAxisTickFormatter, void 0, yAxisWidth),
|
83099
|
-
hide: !showYAxis
|
83100
|
-
}
|
83101
|
-
),
|
83122
|
+
/* @__PURE__ */ React.createElement(XAxis, { ...getAxisProps("x", props) }),
|
83123
|
+
/* @__PURE__ */ React.createElement(YAxis, { ...getAxisProps("y", props) }),
|
83102
83124
|
shapes.map((shape) => /* @__PURE__ */ React.createElement(
|
83103
83125
|
Area$1,
|
83104
83126
|
{
|
@@ -83118,24 +83140,18 @@ function Area(_) {
|
|
83118
83140
|
AreaChart.Area = Area;
|
83119
83141
|
const BAR_WIDTH = 18;
|
83120
83142
|
function BarChart(props) {
|
83121
|
-
const isHorizontal = props.layout === "horizontal";
|
83122
83143
|
const {
|
83123
83144
|
children,
|
83124
83145
|
className: customClassName,
|
83125
83146
|
data,
|
83126
|
-
|
83147
|
+
orientation,
|
83127
83148
|
showLabels = false,
|
83128
83149
|
showLegend = false,
|
83129
|
-
showXAxis = !isHorizontal,
|
83130
|
-
showYAxis = isHorizontal,
|
83131
83150
|
stacked = false,
|
83132
|
-
|
83133
|
-
xAxisTickFormatter,
|
83134
|
-
yAxisScale,
|
83135
|
-
yAxisTickFormatter,
|
83136
|
-
yAxisWidth,
|
83151
|
+
tooltipTitle,
|
83137
83152
|
...attributes
|
83138
|
-
} = props;
|
83153
|
+
} = stripCartesianProps(props);
|
83154
|
+
const isHorizontal = props.orientation === "horizontal";
|
83139
83155
|
const className = clsx("relative aspect-video", { "pb-8": showLegend }, customClassName);
|
83140
83156
|
const { items, shapes, activeIndex, setActiveIndex, toggleItem } = useChart(children);
|
83141
83157
|
return /* @__PURE__ */ React.createElement("div", { className, "data-taco": "chart-wrapper" }, /* @__PURE__ */ React.createElement(ChartWrapper, { ...attributes, className: "h-full w-full", "data-taco": "chart-bar" }, /* @__PURE__ */ React.createElement(
|
@@ -83155,29 +83171,9 @@ function BarChart(props) {
|
|
83155
83171
|
stackOffset: stacked === "expand" ? "expand" : void 0
|
83156
83172
|
},
|
83157
83173
|
/* @__PURE__ */ React.createElement(CartesianGrid, { horizontal: !isHorizontal, vertical: false }),
|
83158
|
-
/* @__PURE__ */ React.createElement(Tooltip$1, { content: /* @__PURE__ */ React.createElement(Tooltip,
|
83159
|
-
/* @__PURE__ */ React.createElement(
|
83160
|
-
|
83161
|
-
{
|
83162
|
-
...getAxisProps(xAxisScale, xAxisTickFormatter, isHorizontal ? void 0 : dataKey),
|
83163
|
-
hide: !showXAxis,
|
83164
|
-
type: isHorizontal ? "number" : void 0
|
83165
|
-
}
|
83166
|
-
),
|
83167
|
-
/* @__PURE__ */ React.createElement(
|
83168
|
-
YAxis,
|
83169
|
-
{
|
83170
|
-
...getAxisProps(
|
83171
|
-
yAxisScale,
|
83172
|
-
yAxisTickFormatter,
|
83173
|
-
isHorizontal ? dataKey : void 0,
|
83174
|
-
yAxisWidth
|
83175
|
-
),
|
83176
|
-
hide: !showYAxis,
|
83177
|
-
minTickGap: isHorizontal ? 1 : 5,
|
83178
|
-
type: isHorizontal ? "category" : void 0
|
83179
|
-
}
|
83180
|
-
),
|
83174
|
+
/* @__PURE__ */ React.createElement(Tooltip$1, { content: /* @__PURE__ */ React.createElement(Tooltip, { title: tooltipTitle }) }),
|
83175
|
+
/* @__PURE__ */ React.createElement(XAxis, { ...getAxisProps("x", props, isHorizontal) }),
|
83176
|
+
/* @__PURE__ */ React.createElement(YAxis, { ...getAxisProps("y", props, isHorizontal) }),
|
83181
83177
|
shapes.map((shape, index2) => /* @__PURE__ */ React.createElement(
|
83182
83178
|
Bar$1,
|
83183
83179
|
{
|
@@ -83221,7 +83217,7 @@ BarChart.Bar = Bar;
|
|
83221
83217
|
const PIE_ACTIVE_WIDTH = 10;
|
83222
83218
|
const PIE_ACTIVE_WIDTH_OFFSET = 2;
|
83223
83219
|
function usePieChart(children, options) {
|
83224
|
-
const { items, shapes, activeIndex, setActiveIndex, toggleItem } = useChart(children, options);
|
83220
|
+
const { items, shapes, activeIndex, setActiveIndex, globalFormatter, toggleItem } = useChart(children, options);
|
83225
83221
|
const [radius, _setRadius] = React.useState(0);
|
83226
83222
|
function setRadius(width) {
|
83227
83223
|
_setRadius((width - 2 * (PIE_ACTIVE_WIDTH + PIE_ACTIVE_WIDTH_OFFSET)) / 2);
|
@@ -83242,7 +83238,7 @@ function usePieChart(children, options) {
|
|
83242
83238
|
labelLine: false,
|
83243
83239
|
outerRadius: radius
|
83244
83240
|
};
|
83245
|
-
return { pieProps, radius, setRadius, items, activeIndex, setActiveIndex, toggleItem, shapes };
|
83241
|
+
return { pieProps, radius, setRadius, items, activeIndex, setActiveIndex, globalFormatter, toggleItem, shapes };
|
83246
83242
|
}
|
83247
83243
|
const PIE_CHART_HOVER = 10;
|
83248
83244
|
const PIE_CHART_HOVER_OFFSET = 2;
|
@@ -83261,18 +83257,21 @@ function ActiveShape$1(props) {
|
|
83261
83257
|
const DONUT_WIDTH$1 = 20;
|
83262
83258
|
function DonutChart(props) {
|
83263
83259
|
const { children, formatter, showLegend = false, showTotal = false, tooltipTitle, unit: unit2, ...attributes } = props;
|
83264
|
-
const { pieProps, radius, setRadius, items, activeIndex, setActiveIndex, toggleItem } = usePieChart(
|
83265
|
-
|
83266
|
-
|
83267
|
-
|
83260
|
+
const { pieProps, radius, setRadius, items, activeIndex, setActiveIndex, globalFormatter, toggleItem } = usePieChart(
|
83261
|
+
children,
|
83262
|
+
{
|
83263
|
+
formatter,
|
83264
|
+
unit: unit2
|
83265
|
+
}
|
83266
|
+
);
|
83268
83267
|
const className = clsx("aspect-square", attributes.className);
|
83269
|
-
return /* @__PURE__ */ React.createElement("div", { className: "relative", "data-taco": "chart-wrapper" }, /* @__PURE__ */ React.createElement(ChartWrapper, { ...attributes, className, "data-taco": "chart-donut", onSetWidth: setRadius }, /* @__PURE__ */ React.createElement(PieChart$1, null, /* @__PURE__ */ React.createElement(Tooltip$1, { content: /* @__PURE__ */ React.createElement(Tooltip
|
83268
|
+
return /* @__PURE__ */ React.createElement("div", { className: "relative", "data-taco": "chart-wrapper" }, /* @__PURE__ */ React.createElement(ChartWrapper, { ...attributes, className, "data-taco": "chart-donut", onSetWidth: setRadius }, /* @__PURE__ */ React.createElement(PieChart$1, null, /* @__PURE__ */ React.createElement(Tooltip$1, { content: /* @__PURE__ */ React.createElement(Tooltip, { title: tooltipTitle }) }), /* @__PURE__ */ React.createElement(Pie, { ...pieProps, innerRadius: radius - DONUT_WIDTH$1 }))), showTotal ? /* @__PURE__ */ React.createElement(
|
83270
83269
|
Total,
|
83271
83270
|
{
|
83272
|
-
formatter,
|
83271
|
+
formatter: globalFormatter,
|
83273
83272
|
items,
|
83274
83273
|
unit: unit2,
|
83275
|
-
style: { top: radius
|
83274
|
+
style: { top: radius + DONUT_WIDTH$1 / 2, width: radius + DONUT_WIDTH$1 * 2 }
|
83276
83275
|
}
|
83277
83276
|
) : null, showLegend ? /* @__PURE__ */ React.createElement(Legend$1, { items, hoverIndex: activeIndex, onHover: setActiveIndex, onToggle: toggleItem }) : null);
|
83278
83277
|
}
|
@@ -83282,19 +83281,18 @@ function Segment$2(_) {
|
|
83282
83281
|
DonutChart.Segment = Segment$2;
|
83283
83282
|
function Total(props) {
|
83284
83283
|
const { formatter, items, unit: unit2, ...attributes } = props;
|
83285
|
-
const localization = useLocalization();
|
83286
83284
|
const total = React.useMemo(() => {
|
83287
83285
|
const total2 = items.filter((item) => !item.isHidden).reduce((acc, curr) => acc + curr.value, 0);
|
83288
|
-
return
|
83286
|
+
return formatter(total2);
|
83289
83287
|
}, [items]);
|
83290
83288
|
return /* @__PURE__ */ React.createElement(
|
83291
83289
|
"div",
|
83292
83290
|
{
|
83293
83291
|
...attributes,
|
83294
|
-
className: "absolute-center
|
83292
|
+
className: "absolute-center flex aspect-video flex-col items-center justify-center overflow-hidden rounded-full",
|
83295
83293
|
"data-taco": "chart-donut-total"
|
83296
83294
|
},
|
83297
|
-
/* @__PURE__ */ React.createElement(Tooltip$3, { title: total }, /* @__PURE__ */ React.createElement("span", { className: "w-full truncate text-center font-bold tabular-nums" }, total)),
|
83295
|
+
/* @__PURE__ */ React.createElement(Tooltip$3, { title: total }, /* @__PURE__ */ React.createElement("span", { className: "w-full truncate text-center text-lg font-bold tabular-nums" }, total)),
|
83298
83296
|
unit2 ? /* @__PURE__ */ React.createElement("span", { className: "text-grey-700 -mb-1 -mt-0.5 truncate text-xs" }, unit2) : null
|
83299
83297
|
);
|
83300
83298
|
}
|
@@ -83487,20 +83485,12 @@ function LineChart(props) {
|
|
83487
83485
|
children,
|
83488
83486
|
className: customClassName,
|
83489
83487
|
data,
|
83490
|
-
dataKey,
|
83491
|
-
showDots = false,
|
83492
83488
|
showLegend = false,
|
83493
|
-
|
83494
|
-
showYAxis = false,
|
83489
|
+
showDots = false,
|
83495
83490
|
tooltipTitle,
|
83496
83491
|
type = "natural",
|
83497
|
-
xAxisScale,
|
83498
|
-
xAxisTickFormatter,
|
83499
|
-
yAxisScale,
|
83500
|
-
yAxisTickFormatter,
|
83501
|
-
yAxisWidth,
|
83502
83492
|
...attributes
|
83503
|
-
} = props;
|
83493
|
+
} = stripCartesianProps(props);
|
83504
83494
|
const className = clsx("relative aspect-video", { "pb-8": showLegend }, customClassName);
|
83505
83495
|
const { items, shapes, activeIndex, setActiveIndex, toggleItem } = useChart(children);
|
83506
83496
|
return /* @__PURE__ */ React.createElement("div", { className, "data-taco": "chart-wrapper" }, /* @__PURE__ */ React.createElement(ChartWrapper, { ...attributes, className: "h-full w-full", "data-taco": "chart-line" }, /* @__PURE__ */ React.createElement(
|
@@ -83517,20 +83507,8 @@ function LineChart(props) {
|
|
83517
83507
|
},
|
83518
83508
|
/* @__PURE__ */ React.createElement(CartesianGrid, { vertical: false }),
|
83519
83509
|
/* @__PURE__ */ React.createElement(Tooltip$1, { content: /* @__PURE__ */ React.createElement(Tooltip, { title: tooltipTitle }) }),
|
83520
|
-
/* @__PURE__ */ React.createElement(
|
83521
|
-
|
83522
|
-
{
|
83523
|
-
...getAxisProps(xAxisScale, xAxisTickFormatter, dataKey),
|
83524
|
-
hide: !showXAxis
|
83525
|
-
}
|
83526
|
-
),
|
83527
|
-
/* @__PURE__ */ React.createElement(
|
83528
|
-
YAxis,
|
83529
|
-
{
|
83530
|
-
...getAxisProps(yAxisScale, yAxisTickFormatter, void 0, yAxisWidth),
|
83531
|
-
hide: !showYAxis
|
83532
|
-
}
|
83533
|
-
),
|
83510
|
+
/* @__PURE__ */ React.createElement(XAxis, { ...getAxisProps("x", props) }),
|
83511
|
+
/* @__PURE__ */ React.createElement(YAxis, { ...getAxisProps("y", props) }),
|
83534
83512
|
shapes.map((shape) => /* @__PURE__ */ React.createElement(Line$1, { key: shape.dataKey, ...shape, dot: showDots ? shape.dot : false, type }))
|
83535
83513
|
)), showLegend ? /* @__PURE__ */ React.createElement(Legend$1, { items, hoverIndex: activeIndex, onHover: setActiveIndex, onToggle: toggleItem }) : null);
|
83536
83514
|
}
|