@economic/taco 2.57.0-charts.5 → 2.57.0-charts.7
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 +61 -44
- package/dist/taco.cjs.map +1 -1
- package/dist/taco.css +1 -1
- package/dist/taco.js +61 -44
- package/dist/taco.js.map +1 -1
- package/package.json +2 -2
package/dist/taco.cjs
CHANGED
@@ -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-3 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.8,
|
83021
83024
|
formatter: item.formatter,
|
83022
83025
|
name: item.label,
|
83023
83026
|
stroke: color2,
|
@@ -83061,9 +83064,10 @@ 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", { "pb-
|
83070
|
+
const className = clsx("relative aspect-video", { "pb-8": showLegend }, customClassName);
|
83067
83071
|
const { items, shapes, activeIndex, setActiveIndex, toggleItem } = useChart(children);
|
83068
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,
|
@@ -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,7 +83135,7 @@ function BarChart(props) {
|
|
83125
83135
|
yAxisWidth,
|
83126
83136
|
...attributes
|
83127
83137
|
} = props;
|
83128
|
-
const className = clsx("relative aspect-video", { "pb-
|
83138
|
+
const className = clsx("relative aspect-video", { "pb-8": showLegend }, customClassName);
|
83129
83139
|
const { items, shapes, activeIndex, setActiveIndex, toggleItem } = useChart(children);
|
83130
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,
|
@@ -83486,9 +83496,10 @@ function LineChart(props) {
|
|
83486
83496
|
xAxisTickFormatter,
|
83487
83497
|
yAxisScale,
|
83488
83498
|
yAxisTickFormatter,
|
83499
|
+
yAxisWidth,
|
83489
83500
|
...attributes
|
83490
83501
|
} = props;
|
83491
|
-
const className = clsx("relative aspect-video", { "pb-
|
83502
|
+
const className = clsx("relative aspect-video", { "pb-8": showLegend }, customClassName);
|
83492
83503
|
const { items, shapes, activeIndex, setActiveIndex, toggleItem } = useChart(children);
|
83493
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(
|
83494
83505
|
LineChart$1,
|
@@ -83511,7 +83522,13 @@ function LineChart(props) {
|
|
83511
83522
|
hide: !showXAxis
|
83512
83523
|
}
|
83513
83524
|
),
|
83514
|
-
/* @__PURE__ */ React.createElement(
|
83525
|
+
/* @__PURE__ */ React.createElement(
|
83526
|
+
YAxis,
|
83527
|
+
{
|
83528
|
+
...getAxisProps(yAxisScale, yAxisTickFormatter, void 0, yAxisWidth),
|
83529
|
+
hide: !showYAxis
|
83530
|
+
}
|
83531
|
+
),
|
83515
83532
|
shapes.map((shape) => /* @__PURE__ */ React.createElement(Line$1, { key: shape.dataKey, ...shape, dot: showDots ? shape.dot : false, type }))
|
83516
83533
|
)), showLegend ? /* @__PURE__ */ React.createElement(Legend$1, { items, hoverIndex: activeIndex, onHover: setActiveIndex, onToggle: toggleItem }) : null);
|
83517
83534
|
}
|