@economic/taco 2.57.0-charts.4 → 2.57.0-charts.6
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 +69 -51
- package/dist/taco.cjs.map +1 -1
- package/dist/taco.css +36 -23
- package/dist/taco.js +69 -51
- package/dist/taco.js.map +1 -1
- package/package.json +2 -2
package/dist/taco.cjs
CHANGED
@@ -82775,7 +82775,7 @@ function getAxisProps(scale2, tickFormatter, dataKey, width) {
|
|
82775
82775
|
width: width ?? 55
|
82776
82776
|
};
|
82777
82777
|
}
|
82778
|
-
function
|
82778
|
+
function ChartWrapper(props) {
|
82779
82779
|
const { onSetWidth: handleSetWidth, ...attributes } = props;
|
82780
82780
|
const ref = React.useRef(null);
|
82781
82781
|
React.useLayoutEffect(() => {
|
@@ -82784,7 +82784,7 @@ function ChartContainer(props) {
|
|
82784
82784
|
handleSetWidth(rect.width);
|
82785
82785
|
}
|
82786
82786
|
}, [ref]);
|
82787
|
-
const className = clsx("flex justify-center
|
82787
|
+
const className = clsx("flex justify-center m-auto", attributes.className);
|
82788
82788
|
return /* @__PURE__ */ React.createElement("div", { ...attributes, className, ref }, /* @__PURE__ */ React.createElement(ResponsiveContainer, null, props.children));
|
82789
82789
|
}
|
82790
82790
|
function Tooltip(props) {
|
@@ -82799,44 +82799,6 @@ function Tooltip(props) {
|
|
82799
82799
|
}
|
82800
82800
|
return null;
|
82801
82801
|
}
|
82802
|
-
function Legend$1(props) {
|
82803
|
-
const { hoverIndex, items, onHover: handleHover, onToggle: handleToggle } = props;
|
82804
|
-
const handleMouseEnter = (item, index2) => {
|
82805
|
-
if (item.isHidden) {
|
82806
|
-
return;
|
82807
|
-
}
|
82808
|
-
handleHover(index2);
|
82809
|
-
};
|
82810
|
-
const handleMouseLeave = () => handleHover(void 0);
|
82811
|
-
const handleClick = (item) => {
|
82812
|
-
if (!item.isHidden) {
|
82813
|
-
handleHover(void 0);
|
82814
|
-
}
|
82815
|
-
handleToggle(item.dataKey);
|
82816
|
-
};
|
82817
|
-
const moreButton = (moreButtonText) => /* @__PURE__ */ React.createElement(Button$4, { appearance: "transparent", className: "text-grey-700 !h-5 !min-h-[1.25rem] !px-1.5 text-xs" }, moreButtonText);
|
82818
|
-
return /* @__PURE__ */ React.createElement(OverflowGroup, { className: "mt-2.5 w-full gap-x-1", moreButton }, items.map((item, index2) => {
|
82819
|
-
const className = clsx("mr-1 flex h-3 w-3 rounded-sm", {
|
82820
|
-
[`bg-${item.color}`]: !item.isHidden,
|
82821
|
-
border: item.isHidden
|
82822
|
-
});
|
82823
|
-
return /* @__PURE__ */ React.createElement(
|
82824
|
-
"button",
|
82825
|
-
{
|
82826
|
-
key: item.label,
|
82827
|
-
className: "hover:bg-grey-200 focus-visible:yt-focus flex items-center rounded px-1 !text-xs",
|
82828
|
-
onClick: (event) => {
|
82829
|
-
event == null ? void 0 : event.preventDefault();
|
82830
|
-
handleClick(item);
|
82831
|
-
},
|
82832
|
-
onMouseEnter: () => handleMouseEnter(item, index2),
|
82833
|
-
onMouseLeave: () => handleMouseLeave()
|
82834
|
-
},
|
82835
|
-
/* @__PURE__ */ React.createElement("span", { className }, hoverIndex === index2 ? /* @__PURE__ */ React.createElement(Icon$1, { name: "tick-bold", className: clsx("!h-full !w-full", { "text-white": !item.isHidden }) }) : null),
|
82836
|
-
item.label
|
82837
|
-
);
|
82838
|
-
}));
|
82839
|
-
}
|
82840
82802
|
const THEME_COLORS = {
|
82841
82803
|
transparent: "transparent",
|
82842
82804
|
current: "currentColor",
|
@@ -82988,6 +82950,47 @@ const getInverseThemeColor = (themeColor) => {
|
|
82988
82950
|
}
|
82989
82951
|
return color2 === "black" ? "white" : "black";
|
82990
82952
|
};
|
82953
|
+
function Legend$1(props) {
|
82954
|
+
const { hoverIndex, items, onHover: handleHover, onToggle: handleToggle } = props;
|
82955
|
+
const handleMouseEnter = (item, index2) => {
|
82956
|
+
if (item.isHidden) {
|
82957
|
+
return;
|
82958
|
+
}
|
82959
|
+
handleHover(index2);
|
82960
|
+
};
|
82961
|
+
const handleMouseLeave = () => handleHover(void 0);
|
82962
|
+
const handleClick = (item) => {
|
82963
|
+
if (!item.isHidden) {
|
82964
|
+
handleHover(void 0);
|
82965
|
+
}
|
82966
|
+
handleToggle(item.dataKey);
|
82967
|
+
};
|
82968
|
+
const moreButton = (moreButtonText) => /* @__PURE__ */ React.createElement(Button$4, { appearance: "transparent", className: "text-grey-700 !h-5 !min-h-[1.25rem] !px-1.5 text-xs" }, moreButtonText);
|
82969
|
+
return /* @__PURE__ */ React.createElement(OverflowGroup, { className: "mt-2.5 w-full gap-x-1", moreButton }, items.map((item, index2) => {
|
82970
|
+
const className = clsx("mr-1 flex h-3 w-3 rounded-sm", {
|
82971
|
+
border: item.isHidden
|
82972
|
+
});
|
82973
|
+
let style;
|
82974
|
+
if (!item.isHidden) {
|
82975
|
+
style = { backgroundColor: getThemeColor(item.color) };
|
82976
|
+
}
|
82977
|
+
return /* @__PURE__ */ React.createElement(
|
82978
|
+
"button",
|
82979
|
+
{
|
82980
|
+
key: item.label,
|
82981
|
+
className: "hover:bg-grey-200 focus-visible:yt-focus flex items-center rounded px-1 !text-xs",
|
82982
|
+
onClick: (event) => {
|
82983
|
+
event == null ? void 0 : event.preventDefault();
|
82984
|
+
handleClick(item);
|
82985
|
+
},
|
82986
|
+
onMouseEnter: () => handleMouseEnter(item, index2),
|
82987
|
+
onMouseLeave: () => handleMouseLeave()
|
82988
|
+
},
|
82989
|
+
/* @__PURE__ */ React.createElement("span", { className, style }, hoverIndex === index2 ? /* @__PURE__ */ React.createElement(Icon$1, { name: "tick-bold", className: clsx("!h-full !w-full", { "text-white": !item.isHidden }) }) : null),
|
82990
|
+
item.label
|
82991
|
+
);
|
82992
|
+
}));
|
82993
|
+
}
|
82991
82994
|
function useChart(children, options) {
|
82992
82995
|
const [activeIndex, setActiveIndex] = React.useState();
|
82993
82996
|
const [hiddenItems, toggleItem] = useChartDataHiddenState();
|
@@ -83017,7 +83020,7 @@ function useChart(children, options) {
|
|
83017
83020
|
},
|
83018
83021
|
isAnimationActive: false,
|
83019
83022
|
fill: color2,
|
83020
|
-
fillOpacity: 0.
|
83023
|
+
fillOpacity: 0.75,
|
83021
83024
|
formatter: item.formatter,
|
83022
83025
|
name: item.label,
|
83023
83026
|
stroke: color2,
|
@@ -83061,11 +83064,12 @@ function AreaChart(props) {
|
|
83061
83064
|
xAxisTickFormatter,
|
83062
83065
|
yAxisScale,
|
83063
83066
|
yAxisTickFormatter,
|
83067
|
+
yAxisWidth,
|
83064
83068
|
...attributes
|
83065
83069
|
} = props;
|
83066
|
-
const className = clsx("relative aspect-video", { "
|
83070
|
+
const className = clsx("relative aspect-video", { "pb-6": showLegend }, customClassName);
|
83067
83071
|
const { items, shapes, activeIndex, setActiveIndex, toggleItem } = useChart(children);
|
83068
|
-
return /* @__PURE__ */ React.createElement("div", { className, "data-taco": "chart-wrapper" }, /* @__PURE__ */ React.createElement(
|
83072
|
+
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(
|
83069
83073
|
AreaChart$1,
|
83070
83074
|
{
|
83071
83075
|
data,
|
@@ -83087,7 +83091,13 @@ function AreaChart(props) {
|
|
83087
83091
|
hide: !showXAxis
|
83088
83092
|
}
|
83089
83093
|
),
|
83090
|
-
/* @__PURE__ */ React.createElement(
|
83094
|
+
/* @__PURE__ */ React.createElement(
|
83095
|
+
YAxis,
|
83096
|
+
{
|
83097
|
+
...getAxisProps(yAxisScale, yAxisTickFormatter, void 0, yAxisWidth),
|
83098
|
+
hide: !showYAxis
|
83099
|
+
}
|
83100
|
+
),
|
83091
83101
|
shapes.map((shape) => /* @__PURE__ */ React.createElement(
|
83092
83102
|
Area$1,
|
83093
83103
|
{
|
@@ -83125,9 +83135,9 @@ function BarChart(props) {
|
|
83125
83135
|
yAxisWidth,
|
83126
83136
|
...attributes
|
83127
83137
|
} = props;
|
83128
|
-
const className = clsx("relative aspect-video", { "
|
83138
|
+
const className = clsx("relative aspect-video", { "pb-6": showLegend }, customClassName);
|
83129
83139
|
const { items, shapes, activeIndex, setActiveIndex, toggleItem } = useChart(children);
|
83130
|
-
return /* @__PURE__ */ React.createElement("div", { className, "data-taco": "chart-wrapper" }, /* @__PURE__ */ React.createElement(
|
83140
|
+
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(
|
83131
83141
|
BarChart$1,
|
83132
83142
|
{
|
83133
83143
|
data,
|
@@ -83163,6 +83173,7 @@ function BarChart(props) {
|
|
83163
83173
|
yAxisWidth
|
83164
83174
|
),
|
83165
83175
|
hide: !showYAxis,
|
83176
|
+
minTickGap: isHorizontal ? 1 : 5,
|
83166
83177
|
type: isHorizontal ? "category" : void 0
|
83167
83178
|
}
|
83168
83179
|
),
|
@@ -83262,7 +83273,7 @@ function DonutChart(props) {
|
|
83262
83273
|
unit: unit2,
|
83263
83274
|
style: { top: radius / 2 - 2, width: radius + DONUT_WIDTH$1 }
|
83264
83275
|
}
|
83265
|
-
) : null, /* @__PURE__ */ React.createElement(
|
83276
|
+
) : null, /* @__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 }))), showLegend ? /* @__PURE__ */ React.createElement(Legend$1, { items, hoverIndex: activeIndex, onHover: setActiveIndex, onToggle: toggleItem }) : null);
|
83266
83277
|
}
|
83267
83278
|
function Segment$2(_) {
|
83268
83279
|
return null;
|
@@ -83485,11 +83496,12 @@ function LineChart(props) {
|
|
83485
83496
|
xAxisTickFormatter,
|
83486
83497
|
yAxisScale,
|
83487
83498
|
yAxisTickFormatter,
|
83499
|
+
yAxisWidth,
|
83488
83500
|
...attributes
|
83489
83501
|
} = props;
|
83490
|
-
const className = clsx("relative aspect-video", { "
|
83502
|
+
const className = clsx("relative aspect-video", { "pb-6": showLegend }, customClassName);
|
83491
83503
|
const { items, shapes, activeIndex, setActiveIndex, toggleItem } = useChart(children);
|
83492
|
-
return /* @__PURE__ */ React.createElement("div", { className, "data-taco": "chart-wrapper" }, /* @__PURE__ */ React.createElement(
|
83504
|
+
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(
|
83493
83505
|
LineChart$1,
|
83494
83506
|
{
|
83495
83507
|
data,
|
@@ -83510,7 +83522,13 @@ function LineChart(props) {
|
|
83510
83522
|
hide: !showXAxis
|
83511
83523
|
}
|
83512
83524
|
),
|
83513
|
-
/* @__PURE__ */ React.createElement(
|
83525
|
+
/* @__PURE__ */ React.createElement(
|
83526
|
+
YAxis,
|
83527
|
+
{
|
83528
|
+
...getAxisProps(yAxisScale, yAxisTickFormatter, void 0, yAxisWidth),
|
83529
|
+
hide: !showYAxis
|
83530
|
+
}
|
83531
|
+
),
|
83514
83532
|
shapes.map((shape) => /* @__PURE__ */ React.createElement(Line$1, { key: shape.dataKey, ...shape, dot: showDots ? shape.dot : false, type }))
|
83515
83533
|
)), showLegend ? /* @__PURE__ */ React.createElement(Legend$1, { items, hoverIndex: activeIndex, onHover: setActiveIndex, onToggle: toggleItem }) : null);
|
83516
83534
|
}
|
@@ -83525,7 +83543,7 @@ function PieChart(props) {
|
|
83525
83543
|
unit: unit2
|
83526
83544
|
});
|
83527
83545
|
const className = clsx("aspect-square", attributes.className);
|
83528
|
-
return /* @__PURE__ */ React.createElement("div", { className: "relative", "data-taco": "chart-wrapper" }, /* @__PURE__ */ React.createElement(
|
83546
|
+
return /* @__PURE__ */ React.createElement("div", { className: "relative", "data-taco": "chart-wrapper" }, /* @__PURE__ */ React.createElement(ChartWrapper, { ...attributes, className, "data-taco": "chart-pie", 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, label: showLabels ? /* @__PURE__ */ React.createElement(Label, null) : void 0 }))), showLegend ? /* @__PURE__ */ React.createElement(Legend$1, { items, hoverIndex: activeIndex, onHover: setActiveIndex, onToggle: toggleItem }) : null);
|
83529
83547
|
}
|
83530
83548
|
function Segment(_) {
|
83531
83549
|
return null;
|