@economic/taco 2.57.0-charts.10 → 2.57.0-charts.11
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 +6 -6
- package/dist/taco.cjs.map +1 -1
- package/dist/taco.css +18 -7
- package/dist/taco.js +6 -6
- package/dist/taco.js.map +1 -1
- package/package.json +2 -2
package/dist/taco.css
CHANGED
@@ -1567,9 +1567,20 @@ table[data-taco^='table'] tr[data-row-create] {
|
|
1567
1567
|
@apply h-full;
|
1568
1568
|
}
|
1569
1569
|
|
1570
|
+
[data-taco='card-content'] > [data-taco='chart-wrapper'] {
|
1571
|
+
container: wrapper / inline-size;
|
1572
|
+
}
|
1573
|
+
|
1570
1574
|
[data-taco='card-content'] > [data-taco='chart-wrapper'] [data-taco='chart-donut']:not([class*='w-']),
|
1571
1575
|
[data-taco='card-content'] > [data-taco='chart-wrapper'] [data-taco='chart-pie']:not([class*='w-']) {
|
1572
|
-
@apply aspect-square w-
|
1576
|
+
@apply aspect-square w-3/5;
|
1577
|
+
}
|
1578
|
+
|
1579
|
+
@container wrapper (width > 400px) {
|
1580
|
+
[data-taco='card-content'] > [data-taco='chart-wrapper'] [data-taco='chart-donut']:not([class*='w-']),
|
1581
|
+
[data-taco='card-content'] > [data-taco='chart-wrapper'] [data-taco='chart-pie']:not([class*='w-']) {
|
1582
|
+
@apply w-2/3;
|
1583
|
+
}
|
1573
1584
|
}
|
1574
1585
|
|
1575
1586
|
.recharts-cartesian-axis line,
|
@@ -1598,13 +1609,9 @@ table[data-taco^='table'] tr[data-row-create] {
|
|
1598
1609
|
container: wrapper / inline-size;
|
1599
1610
|
}
|
1600
1611
|
|
1601
|
-
|
1602
|
-
@apply text-xl;
|
1603
|
-
}
|
1604
|
-
|
1605
|
-
@container wrapper (width < 130px) {
|
1612
|
+
@container wrapper (width > 130px) {
|
1606
1613
|
[data-taco='chart-donut-total'] span:first-child {
|
1607
|
-
@apply text-
|
1614
|
+
@apply text-xl;
|
1608
1615
|
}
|
1609
1616
|
}
|
1610
1617
|
|
@@ -1613,3 +1620,7 @@ table[data-taco^='table'] tr[data-row-create] {
|
|
1613
1620
|
@apply text-base;
|
1614
1621
|
}
|
1615
1622
|
}
|
1623
|
+
|
1624
|
+
[data-taco='chart-donut']:has([data-taco='chart-tooltip']) {
|
1625
|
+
@apply relative z-10;
|
1626
|
+
}
|
package/dist/taco.js
CHANGED
@@ -82772,11 +82772,11 @@ function ChartWrapper(props) {
|
|
82772
82772
|
function Tooltip(props) {
|
82773
82773
|
const { active, payload = [], style, title } = props;
|
82774
82774
|
if (active && payload.length) {
|
82775
|
-
return /* @__PURE__ */ React__default.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__default.createElement("span", { className: "font-bold" }, title) : null, /* @__PURE__ */ React__default.createElement("dl", { className: "m-0 grid grid-cols-[max-content_max-content] gap-x-4 gap-y-0.5", style }, payload.map((entry, index2) => {
|
82775
|
+
return /* @__PURE__ */ React__default.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__default.createElement("span", { className: "font-bold" }, title) : null, /* @__PURE__ */ React__default.createElement("dl", { className: "m-0 grid grid-cols-[max-content_max-content] gap-x-4 gap-y-0.5", style }, payload.map((entry, index2) => {
|
82776
82776
|
const color2 = entry.color ?? entry.payload.color;
|
82777
82777
|
const formatter = entry.formatter ?? entry.payload.formatter;
|
82778
82778
|
const unit2 = entry.unit ?? entry.payload.unit;
|
82779
|
-
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, { key: `${entry.name}-${index2}` }, /* @__PURE__ */ React__default.createElement("dt", { className: "text-grey-700 mb-0 flex items-center gap-1 font-normal" }, /* @__PURE__ */ React__default.createElement("span", { className: "-mt-px h-2.5 w-2.5 rounded-sm", style: { background: color2 } }), entry.name), /* @__PURE__ */ React__default.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__default.createElement("span", { className: "text-grey-700" }, unit2) : null));
|
82779
|
+
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, { key: `${entry.name}-${index2}` }, /* @__PURE__ */ React__default.createElement("dt", { className: "text-grey-700 mb-0 flex items-center gap-1 font-normal", "data-taco": "chart-tooltip" }, /* @__PURE__ */ React__default.createElement("span", { className: "-mt-px h-2.5 w-2.5 rounded-sm", style: { background: color2 } }), entry.name), /* @__PURE__ */ React__default.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__default.createElement("span", { className: "text-grey-700" }, unit2) : null));
|
82780
82780
|
})));
|
82781
82781
|
}
|
82782
82782
|
return null;
|
@@ -83111,6 +83111,7 @@ function BarChart(props) {
|
|
83111
83111
|
showXAxis = !isHorizontal,
|
83112
83112
|
showYAxis = isHorizontal,
|
83113
83113
|
stacked = false,
|
83114
|
+
tooltipTitle,
|
83114
83115
|
xAxisScale,
|
83115
83116
|
xAxisTickFormatter,
|
83116
83117
|
yAxisScale,
|
@@ -83137,7 +83138,7 @@ function BarChart(props) {
|
|
83137
83138
|
stackOffset: stacked === "expand" ? "expand" : void 0
|
83138
83139
|
},
|
83139
83140
|
/* @__PURE__ */ React__default.createElement(CartesianGrid, { horizontal: !isHorizontal, vertical: false }),
|
83140
|
-
/* @__PURE__ */ React__default.createElement(Tooltip$1, { content: /* @__PURE__ */ React__default.createElement(Tooltip,
|
83141
|
+
/* @__PURE__ */ React__default.createElement(Tooltip$1, { content: /* @__PURE__ */ React__default.createElement(Tooltip, { title: tooltipTitle }) }),
|
83141
83142
|
/* @__PURE__ */ React__default.createElement(
|
83142
83143
|
XAxis,
|
83143
83144
|
{
|
@@ -83248,8 +83249,7 @@ function DonutChart(props) {
|
|
83248
83249
|
unit: unit2
|
83249
83250
|
});
|
83250
83251
|
const className = clsx("aspect-square", attributes.className);
|
83251
|
-
|
83252
|
-
return /* @__PURE__ */ React__default.createElement("div", { className: "relative", "data-taco": "chart-wrapper" }, /* @__PURE__ */ React__default.createElement(ChartWrapper, { ...attributes, className, "data-taco": "chart-donut", onSetWidth: setRadius }, /* @__PURE__ */ React__default.createElement(PieChart$1, null, /* @__PURE__ */ React__default.createElement(Tooltip$1, { content: /* @__PURE__ */ React__default.createElement(Tooltip$3, { title: tooltipTitle }) }), /* @__PURE__ */ React__default.createElement(Pie, { ...pieProps, innerRadius: radius - DONUT_WIDTH$1 }))), showTotal ? /* @__PURE__ */ React__default.createElement(
|
83252
|
+
return /* @__PURE__ */ React__default.createElement("div", { className: "relative", "data-taco": "chart-wrapper" }, /* @__PURE__ */ React__default.createElement(ChartWrapper, { ...attributes, className, "data-taco": "chart-donut", onSetWidth: setRadius }, /* @__PURE__ */ React__default.createElement(PieChart$1, null, /* @__PURE__ */ React__default.createElement(Tooltip$1, { content: /* @__PURE__ */ React__default.createElement(Tooltip, { title: tooltipTitle }) }), /* @__PURE__ */ React__default.createElement(Pie, { ...pieProps, innerRadius: radius - DONUT_WIDTH$1 }))), showTotal ? /* @__PURE__ */ React__default.createElement(
|
83253
83253
|
Total,
|
83254
83254
|
{
|
83255
83255
|
formatter,
|
@@ -83277,7 +83277,7 @@ function Total(props) {
|
|
83277
83277
|
className: "absolute-center flex aspect-video flex-col items-center justify-center overflow-hidden rounded-full",
|
83278
83278
|
"data-taco": "chart-donut-total"
|
83279
83279
|
},
|
83280
|
-
/* @__PURE__ */ React__default.createElement(Tooltip$3, { title: total }, /* @__PURE__ */ React__default.createElement("span", { className: "w-full truncate text-center font-bold tabular-nums" }, total)),
|
83280
|
+
/* @__PURE__ */ React__default.createElement(Tooltip$3, { title: total }, /* @__PURE__ */ React__default.createElement("span", { className: "w-full truncate text-center text-lg font-bold tabular-nums" }, total)),
|
83281
83281
|
unit2 ? /* @__PURE__ */ React__default.createElement("span", { className: "text-grey-700 -mb-1 -mt-0.5 truncate text-xs" }, unit2) : null
|
83282
83282
|
);
|
83283
83283
|
}
|