@economic/taco 2.57.0-charts.12 → 2.57.0-charts.14
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/taco.cjs +32 -14
- package/dist/taco.cjs.map +1 -1
- package/dist/taco.d.ts +10 -0
- package/dist/taco.js +32 -14
- package/dist/taco.js.map +1 -1
- package/package.json +2 -2
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) {
|
@@ -82996,7 +83009,10 @@ function useChart(children, options) {
|
|
82996
83009
|
const [activeIndex, setActiveIndex] = React.useState();
|
82997
83010
|
const [hiddenItems, toggleItem] = useChartDataHiddenState();
|
82998
83011
|
const localization = useLocalization();
|
82999
|
-
const defaultFormatter2 = (value) => new Intl.NumberFormat(localization.locale).format(
|
83012
|
+
const defaultFormatter2 = (value) => new Intl.NumberFormat(localization.locale, { minimumFractionDigits: 2, trailingZeroDisplay: "stripIfInteger" }).format(
|
83013
|
+
value
|
83014
|
+
);
|
83015
|
+
const globalFormatter = (options == null ? void 0 : options.formatter) ?? defaultFormatter2;
|
83000
83016
|
const { items, shapes } = React.useMemo(() => {
|
83001
83017
|
const items2 = React.Children.toArray(children).filter((child) => React.isValidElement(child)).map((child) => {
|
83002
83018
|
const dataKey = child.props.dataKey ?? child.props.label;
|
@@ -83004,7 +83020,7 @@ function useChart(children, options) {
|
|
83004
83020
|
...child.props,
|
83005
83021
|
dataKey,
|
83006
83022
|
color: getThemeColor(child.props.color, "blue-300"),
|
83007
|
-
formatter: child.props.formatter ??
|
83023
|
+
formatter: child.props.formatter ?? globalFormatter,
|
83008
83024
|
isHidden: !!hiddenItems[dataKey],
|
83009
83025
|
unit: child.props.unit ?? (options == null ? void 0 : options.unit)
|
83010
83026
|
};
|
@@ -83031,7 +83047,7 @@ function useChart(children, options) {
|
|
83031
83047
|
});
|
83032
83048
|
return { items: items2, shapes: shapes2 };
|
83033
83049
|
}, [children, hiddenItems]);
|
83034
|
-
return { items, shapes, activeIndex, setActiveIndex, toggleItem };
|
83050
|
+
return { items, shapes, activeIndex, setActiveIndex, globalFormatter, toggleItem };
|
83035
83051
|
}
|
83036
83052
|
function useChartDataHiddenState() {
|
83037
83053
|
const [state, setState] = React.useState({});
|
@@ -83222,7 +83238,7 @@ BarChart.Bar = Bar;
|
|
83222
83238
|
const PIE_ACTIVE_WIDTH = 10;
|
83223
83239
|
const PIE_ACTIVE_WIDTH_OFFSET = 2;
|
83224
83240
|
function usePieChart(children, options) {
|
83225
|
-
const { items, shapes, activeIndex, setActiveIndex, toggleItem } = useChart(children, options);
|
83241
|
+
const { items, shapes, activeIndex, setActiveIndex, globalFormatter, toggleItem } = useChart(children, options);
|
83226
83242
|
const [radius, _setRadius] = React.useState(0);
|
83227
83243
|
function setRadius(width) {
|
83228
83244
|
_setRadius((width - 2 * (PIE_ACTIVE_WIDTH + PIE_ACTIVE_WIDTH_OFFSET)) / 2);
|
@@ -83243,7 +83259,7 @@ function usePieChart(children, options) {
|
|
83243
83259
|
labelLine: false,
|
83244
83260
|
outerRadius: radius
|
83245
83261
|
};
|
83246
|
-
return { pieProps, radius, setRadius, items, activeIndex, setActiveIndex, toggleItem, shapes };
|
83262
|
+
return { pieProps, radius, setRadius, items, activeIndex, setActiveIndex, globalFormatter, toggleItem, shapes };
|
83247
83263
|
}
|
83248
83264
|
const PIE_CHART_HOVER = 10;
|
83249
83265
|
const PIE_CHART_HOVER_OFFSET = 2;
|
@@ -83262,15 +83278,18 @@ function ActiveShape$1(props) {
|
|
83262
83278
|
const DONUT_WIDTH$1 = 20;
|
83263
83279
|
function DonutChart(props) {
|
83264
83280
|
const { children, formatter, showLegend = false, showTotal = false, tooltipTitle, unit: unit2, ...attributes } = props;
|
83265
|
-
const { pieProps, radius, setRadius, items, activeIndex, setActiveIndex, toggleItem } = usePieChart(
|
83266
|
-
|
83267
|
-
|
83268
|
-
|
83281
|
+
const { pieProps, radius, setRadius, items, activeIndex, setActiveIndex, globalFormatter, toggleItem } = usePieChart(
|
83282
|
+
children,
|
83283
|
+
{
|
83284
|
+
formatter,
|
83285
|
+
unit: unit2
|
83286
|
+
}
|
83287
|
+
);
|
83269
83288
|
const className = clsx("aspect-square", attributes.className);
|
83270
83289
|
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(
|
83271
83290
|
Total,
|
83272
83291
|
{
|
83273
|
-
formatter,
|
83292
|
+
formatter: globalFormatter,
|
83274
83293
|
items,
|
83275
83294
|
unit: unit2,
|
83276
83295
|
style: { top: radius + DONUT_WIDTH$1 / 2, width: radius + DONUT_WIDTH$1 * 2 }
|
@@ -83283,10 +83302,9 @@ function Segment$2(_) {
|
|
83283
83302
|
DonutChart.Segment = Segment$2;
|
83284
83303
|
function Total(props) {
|
83285
83304
|
const { formatter, items, unit: unit2, ...attributes } = props;
|
83286
|
-
const localization = useLocalization();
|
83287
83305
|
const total = React.useMemo(() => {
|
83288
83306
|
const total2 = items.filter((item) => !item.isHidden).reduce((acc, curr) => acc + curr.value, 0);
|
83289
|
-
return
|
83307
|
+
return formatter(total2);
|
83290
83308
|
}, [items]);
|
83291
83309
|
return /* @__PURE__ */ React.createElement(
|
83292
83310
|
"div",
|