@economic/taco 2.57.0-charts.5 → 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 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-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.65,
83023
+ fillOpacity: 0.75,
83021
83024
  formatter: item.formatter,
83022
83025
  name: item.label,
83023
83026
  stroke: color2,
@@ -83061,6 +83064,7 @@ function AreaChart(props) {
83061
83064
  xAxisTickFormatter,
83062
83065
  yAxisScale,
83063
83066
  yAxisTickFormatter,
83067
+ yAxisWidth,
83064
83068
  ...attributes
83065
83069
  } = props;
83066
83070
  const className = clsx("relative aspect-video", { "pb-6": showLegend }, customClassName);
@@ -83087,7 +83091,13 @@ function AreaChart(props) {
83087
83091
  hide: !showXAxis
83088
83092
  }
83089
83093
  ),
83090
- /* @__PURE__ */ React.createElement(YAxis, { ...getAxisProps(yAxisScale, yAxisTickFormatter), hide: !showYAxis }),
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
  {
@@ -83486,6 +83496,7 @@ function LineChart(props) {
83486
83496
  xAxisTickFormatter,
83487
83497
  yAxisScale,
83488
83498
  yAxisTickFormatter,
83499
+ yAxisWidth,
83489
83500
  ...attributes
83490
83501
  } = props;
83491
83502
  const className = clsx("relative aspect-video", { "pb-6": showLegend }, customClassName);
@@ -83511,7 +83522,13 @@ function LineChart(props) {
83511
83522
  hide: !showXAxis
83512
83523
  }
83513
83524
  ),
83514
- /* @__PURE__ */ React.createElement(YAxis, { ...getAxisProps(yAxisScale, yAxisTickFormatter), hide: !showYAxis }),
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
  }