@economic/taco 2.57.0-charts.10 → 2.57.0-charts.12

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 CHANGED
@@ -82790,11 +82790,11 @@ function ChartWrapper(props) {
82790
82790
  function Tooltip(props) {
82791
82791
  const { active, payload = [], style, title } = props;
82792
82792
  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) => {
82793
+ 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
82794
  const color2 = entry.color ?? entry.payload.color;
82795
82795
  const formatter = entry.formatter ?? entry.payload.formatter;
82796
82796
  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, " ", unit2 ? /* @__PURE__ */ React.createElement("span", { className: "text-grey-700" }, unit2) : null));
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", "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" }, unit2) : null));
82798
82798
  })));
82799
82799
  }
82800
82800
  return null;
@@ -83118,7 +83118,7 @@ function Area(_) {
83118
83118
  AreaChart.Area = Area;
83119
83119
  const BAR_WIDTH = 18;
83120
83120
  function BarChart(props) {
83121
- const isHorizontal = props.layout === "horizontal";
83121
+ const isHorizontal = props.orientation === "horizontal";
83122
83122
  const {
83123
83123
  children,
83124
83124
  className: customClassName,
@@ -83129,6 +83129,7 @@ function BarChart(props) {
83129
83129
  showXAxis = !isHorizontal,
83130
83130
  showYAxis = isHorizontal,
83131
83131
  stacked = false,
83132
+ tooltipTitle,
83132
83133
  xAxisScale,
83133
83134
  xAxisTickFormatter,
83134
83135
  yAxisScale,
@@ -83155,7 +83156,7 @@ function BarChart(props) {
83155
83156
  stackOffset: stacked === "expand" ? "expand" : void 0
83156
83157
  },
83157
83158
  /* @__PURE__ */ React.createElement(CartesianGrid, { horizontal: !isHorizontal, vertical: false }),
83158
- /* @__PURE__ */ React.createElement(Tooltip$1, { content: /* @__PURE__ */ React.createElement(Tooltip, null) }),
83159
+ /* @__PURE__ */ React.createElement(Tooltip$1, { content: /* @__PURE__ */ React.createElement(Tooltip, { title: tooltipTitle }) }),
83159
83160
  /* @__PURE__ */ React.createElement(
83160
83161
  XAxis,
83161
83162
  {
@@ -83266,8 +83267,7 @@ function DonutChart(props) {
83266
83267
  unit: unit2
83267
83268
  });
83268
83269
  const className = clsx("aspect-square", attributes.className);
83269
- console.log("radius", radius);
83270
- 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$3, { title: tooltipTitle }) }), /* @__PURE__ */ React.createElement(Pie, { ...pieProps, innerRadius: radius - DONUT_WIDTH$1 }))), showTotal ? /* @__PURE__ */ React.createElement(
83270
+ 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
83271
  Total,
83272
83272
  {
83273
83273
  formatter,
@@ -83295,7 +83295,7 @@ function Total(props) {
83295
83295
  className: "absolute-center flex aspect-video flex-col items-center justify-center overflow-hidden rounded-full",
83296
83296
  "data-taco": "chart-donut-total"
83297
83297
  },
83298
- /* @__PURE__ */ React.createElement(Tooltip$3, { title: total }, /* @__PURE__ */ React.createElement("span", { className: "w-full truncate text-center font-bold tabular-nums" }, total)),
83298
+ /* @__PURE__ */ React.createElement(Tooltip$3, { title: total }, /* @__PURE__ */ React.createElement("span", { className: "w-full truncate text-center text-lg font-bold tabular-nums" }, total)),
83299
83299
  unit2 ? /* @__PURE__ */ React.createElement("span", { className: "text-grey-700 -mb-1 -mt-0.5 truncate text-xs" }, unit2) : null
83300
83300
  );
83301
83301
  }