@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.css CHANGED
@@ -181,29 +181,6 @@ table.yt-table tbody.yt-table__body tr.yt-table__row td.yt-table__cell {
181
181
  @apply opacity-100;
182
182
  }
183
183
  }
184
-
185
- .recharts-cartesian-axis line,
186
- .recharts-cartesian-grid-horizontal line,
187
- .recharts-cartesian-grid-vertical line {
188
- @apply !stroke-grey-100;
189
- }
190
-
191
- .recharts-cartesian-axis-tick-value {
192
- @apply !fill-grey-700;
193
- }
194
-
195
- .recharts-tooltip-cursor {
196
- @apply !fill-transparent;
197
- }
198
-
199
- .recharts-legend-wrapper {
200
- @apply !left-0 !w-full;
201
- }
202
-
203
- .recharts-sector,
204
- .recharts-wrapper > svg g {
205
- @apply !outline-none;
206
- }
207
184
  [data-taco='badge'] > [data-taco='spinner'] {
208
185
  @apply ml-2 h-3 w-3;
209
186
  }
@@ -1581,3 +1558,39 @@ table[data-taco^='table'][data-table-row-height='extra-tall'] tr[data-row-create
1581
1558
  table[data-taco^='table'] tr[data-row-create] {
1582
1559
  @apply print:hidden;
1583
1560
  }
1561
+ [data-taco='card-content'] > [data-taco='chart-wrapper']:not(:has([data-taco='chart-donut'], [data-taco='chart-pie'])) {
1562
+ @apply w-full;
1563
+ }
1564
+
1565
+ [data-taco='card-content']
1566
+ > [data-taco='chart-wrapper']:not([class*='h-']):not(:has([data-taco='chart-donut'], [data-taco='chart-pie'])) {
1567
+ @apply h-full;
1568
+ }
1569
+
1570
+ [data-taco='card-content'] > [data-taco='chart-wrapper'] [data-taco='chart-donut']:not([class*='w-']),
1571
+ [data-taco='card-content'] > [data-taco='chart-wrapper'] [data-taco='chart-pie']:not([class*='w-']) {
1572
+ @apply aspect-square w-2/3;
1573
+ }
1574
+
1575
+ .recharts-cartesian-axis line,
1576
+ .recharts-cartesian-grid-horizontal line,
1577
+ .recharts-cartesian-grid-vertical line {
1578
+ @apply !stroke-grey-100;
1579
+ }
1580
+
1581
+ .recharts-cartesian-axis-tick-value {
1582
+ @apply !fill-grey-700;
1583
+ }
1584
+
1585
+ .recharts-tooltip-cursor {
1586
+ @apply !fill-transparent;
1587
+ }
1588
+
1589
+ .recharts-legend-wrapper {
1590
+ @apply !left-0 !w-full;
1591
+ }
1592
+
1593
+ .recharts-sector,
1594
+ .recharts-wrapper > svg g {
1595
+ @apply !outline-none;
1596
+ }
package/dist/taco.js CHANGED
@@ -82757,7 +82757,7 @@ function getAxisProps(scale2, tickFormatter, dataKey, width) {
82757
82757
  width: width ?? 55
82758
82758
  };
82759
82759
  }
82760
- function ChartContainer(props) {
82760
+ function ChartWrapper(props) {
82761
82761
  const { onSetWidth: handleSetWidth, ...attributes } = props;
82762
82762
  const ref = React__default.useRef(null);
82763
82763
  React__default.useLayoutEffect(() => {
@@ -82766,7 +82766,7 @@ function ChartContainer(props) {
82766
82766
  handleSetWidth(rect.width);
82767
82767
  }
82768
82768
  }, [ref]);
82769
- const className = clsx("flex justify-center mx-auto", attributes.className);
82769
+ const className = clsx("flex justify-center m-auto", attributes.className);
82770
82770
  return /* @__PURE__ */ React__default.createElement("div", { ...attributes, className, ref }, /* @__PURE__ */ React__default.createElement(ResponsiveContainer, null, props.children));
82771
82771
  }
82772
82772
  function Tooltip(props) {
@@ -82781,44 +82781,6 @@ function Tooltip(props) {
82781
82781
  }
82782
82782
  return null;
82783
82783
  }
82784
- function Legend$1(props) {
82785
- const { hoverIndex, items, onHover: handleHover, onToggle: handleToggle } = props;
82786
- const handleMouseEnter = (item, index2) => {
82787
- if (item.isHidden) {
82788
- return;
82789
- }
82790
- handleHover(index2);
82791
- };
82792
- const handleMouseLeave = () => handleHover(void 0);
82793
- const handleClick = (item) => {
82794
- if (!item.isHidden) {
82795
- handleHover(void 0);
82796
- }
82797
- handleToggle(item.dataKey);
82798
- };
82799
- const moreButton = (moreButtonText) => /* @__PURE__ */ React__default.createElement(Button$4, { appearance: "transparent", className: "text-grey-700 !h-5 !min-h-[1.25rem] !px-1.5 text-xs" }, moreButtonText);
82800
- return /* @__PURE__ */ React__default.createElement(OverflowGroup, { className: "mt-2.5 w-full gap-x-1", moreButton }, items.map((item, index2) => {
82801
- const className = clsx("mr-1 flex h-3 w-3 rounded-sm", {
82802
- [`bg-${item.color}`]: !item.isHidden,
82803
- border: item.isHidden
82804
- });
82805
- return /* @__PURE__ */ React__default.createElement(
82806
- "button",
82807
- {
82808
- key: item.label,
82809
- className: "hover:bg-grey-200 focus-visible:yt-focus flex items-center rounded px-1 !text-xs",
82810
- onClick: (event) => {
82811
- event == null ? void 0 : event.preventDefault();
82812
- handleClick(item);
82813
- },
82814
- onMouseEnter: () => handleMouseEnter(item, index2),
82815
- onMouseLeave: () => handleMouseLeave()
82816
- },
82817
- /* @__PURE__ */ React__default.createElement("span", { className }, hoverIndex === index2 ? /* @__PURE__ */ React__default.createElement(Icon$1, { name: "tick-bold", className: clsx("!h-full !w-full", { "text-white": !item.isHidden }) }) : null),
82818
- item.label
82819
- );
82820
- }));
82821
- }
82822
82784
  const THEME_COLORS = {
82823
82785
  transparent: "transparent",
82824
82786
  current: "currentColor",
@@ -82970,6 +82932,47 @@ const getInverseThemeColor = (themeColor) => {
82970
82932
  }
82971
82933
  return color2 === "black" ? "white" : "black";
82972
82934
  };
82935
+ function Legend$1(props) {
82936
+ const { hoverIndex, items, onHover: handleHover, onToggle: handleToggle } = props;
82937
+ const handleMouseEnter = (item, index2) => {
82938
+ if (item.isHidden) {
82939
+ return;
82940
+ }
82941
+ handleHover(index2);
82942
+ };
82943
+ const handleMouseLeave = () => handleHover(void 0);
82944
+ const handleClick = (item) => {
82945
+ if (!item.isHidden) {
82946
+ handleHover(void 0);
82947
+ }
82948
+ handleToggle(item.dataKey);
82949
+ };
82950
+ const moreButton = (moreButtonText) => /* @__PURE__ */ React__default.createElement(Button$4, { appearance: "transparent", className: "text-grey-700 !h-5 !min-h-[1.25rem] !px-1.5 text-xs" }, moreButtonText);
82951
+ return /* @__PURE__ */ React__default.createElement(OverflowGroup, { className: "mt-2.5 w-full gap-x-1", moreButton }, items.map((item, index2) => {
82952
+ const className = clsx("mr-1 flex h-3 w-3 rounded-sm", {
82953
+ border: item.isHidden
82954
+ });
82955
+ let style;
82956
+ if (!item.isHidden) {
82957
+ style = { backgroundColor: getThemeColor(item.color) };
82958
+ }
82959
+ return /* @__PURE__ */ React__default.createElement(
82960
+ "button",
82961
+ {
82962
+ key: item.label,
82963
+ className: "hover:bg-grey-200 focus-visible:yt-focus flex items-center rounded px-1 !text-xs",
82964
+ onClick: (event) => {
82965
+ event == null ? void 0 : event.preventDefault();
82966
+ handleClick(item);
82967
+ },
82968
+ onMouseEnter: () => handleMouseEnter(item, index2),
82969
+ onMouseLeave: () => handleMouseLeave()
82970
+ },
82971
+ /* @__PURE__ */ React__default.createElement("span", { className, style }, hoverIndex === index2 ? /* @__PURE__ */ React__default.createElement(Icon$1, { name: "tick-bold", className: clsx("!h-full !w-full", { "text-white": !item.isHidden }) }) : null),
82972
+ item.label
82973
+ );
82974
+ }));
82975
+ }
82973
82976
  function useChart(children, options) {
82974
82977
  const [activeIndex, setActiveIndex] = React__default.useState();
82975
82978
  const [hiddenItems, toggleItem] = useChartDataHiddenState();
@@ -82999,7 +83002,7 @@ function useChart(children, options) {
82999
83002
  },
83000
83003
  isAnimationActive: false,
83001
83004
  fill: color2,
83002
- fillOpacity: 0.65,
83005
+ fillOpacity: 0.75,
83003
83006
  formatter: item.formatter,
83004
83007
  name: item.label,
83005
83008
  stroke: color2,
@@ -83043,11 +83046,12 @@ function AreaChart(props) {
83043
83046
  xAxisTickFormatter,
83044
83047
  yAxisScale,
83045
83048
  yAxisTickFormatter,
83049
+ yAxisWidth,
83046
83050
  ...attributes
83047
83051
  } = props;
83048
- const className = clsx("relative aspect-video", { "mb-6": showLegend }, customClassName);
83052
+ const className = clsx("relative aspect-video", { "pb-6": showLegend }, customClassName);
83049
83053
  const { items, shapes, activeIndex, setActiveIndex, toggleItem } = useChart(children);
83050
- return /* @__PURE__ */ React__default.createElement("div", { className, "data-taco": "chart-wrapper" }, /* @__PURE__ */ React__default.createElement(ChartContainer, { ...attributes, className: "h-full w-full", "data-taco": "chart-area" }, /* @__PURE__ */ React__default.createElement(
83054
+ return /* @__PURE__ */ React__default.createElement("div", { className, "data-taco": "chart-wrapper" }, /* @__PURE__ */ React__default.createElement(ChartWrapper, { ...attributes, className: "h-full w-full", "data-taco": "chart-area" }, /* @__PURE__ */ React__default.createElement(
83051
83055
  AreaChart$1,
83052
83056
  {
83053
83057
  data,
@@ -83069,7 +83073,13 @@ function AreaChart(props) {
83069
83073
  hide: !showXAxis
83070
83074
  }
83071
83075
  ),
83072
- /* @__PURE__ */ React__default.createElement(YAxis, { ...getAxisProps(yAxisScale, yAxisTickFormatter), hide: !showYAxis }),
83076
+ /* @__PURE__ */ React__default.createElement(
83077
+ YAxis,
83078
+ {
83079
+ ...getAxisProps(yAxisScale, yAxisTickFormatter, void 0, yAxisWidth),
83080
+ hide: !showYAxis
83081
+ }
83082
+ ),
83073
83083
  shapes.map((shape) => /* @__PURE__ */ React__default.createElement(
83074
83084
  Area$1,
83075
83085
  {
@@ -83107,9 +83117,9 @@ function BarChart(props) {
83107
83117
  yAxisWidth,
83108
83118
  ...attributes
83109
83119
  } = props;
83110
- const className = clsx("relative aspect-video", { "mb-6": showLegend }, customClassName);
83120
+ const className = clsx("relative aspect-video", { "pb-6": showLegend }, customClassName);
83111
83121
  const { items, shapes, activeIndex, setActiveIndex, toggleItem } = useChart(children);
83112
- return /* @__PURE__ */ React__default.createElement("div", { className, "data-taco": "chart-wrapper" }, /* @__PURE__ */ React__default.createElement(ChartContainer, { ...attributes, className: "h-full w-full", "data-taco": "chart-bar" }, /* @__PURE__ */ React__default.createElement(
83122
+ return /* @__PURE__ */ React__default.createElement("div", { className, "data-taco": "chart-wrapper" }, /* @__PURE__ */ React__default.createElement(ChartWrapper, { ...attributes, className: "h-full w-full", "data-taco": "chart-bar" }, /* @__PURE__ */ React__default.createElement(
83113
83123
  BarChart$1,
83114
83124
  {
83115
83125
  data,
@@ -83145,6 +83155,7 @@ function BarChart(props) {
83145
83155
  yAxisWidth
83146
83156
  ),
83147
83157
  hide: !showYAxis,
83158
+ minTickGap: isHorizontal ? 1 : 5,
83148
83159
  type: isHorizontal ? "category" : void 0
83149
83160
  }
83150
83161
  ),
@@ -83244,7 +83255,7 @@ function DonutChart(props) {
83244
83255
  unit: unit2,
83245
83256
  style: { top: radius / 2 - 2, width: radius + DONUT_WIDTH$1 }
83246
83257
  }
83247
- ) : null, /* @__PURE__ */ React__default.createElement(ChartContainer, { ...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 }))), showLegend ? /* @__PURE__ */ React__default.createElement(Legend$1, { items, hoverIndex: activeIndex, onHover: setActiveIndex, onToggle: toggleItem }) : null);
83258
+ ) : null, /* @__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 }))), showLegend ? /* @__PURE__ */ React__default.createElement(Legend$1, { items, hoverIndex: activeIndex, onHover: setActiveIndex, onToggle: toggleItem }) : null);
83248
83259
  }
83249
83260
  function Segment$2(_) {
83250
83261
  return null;
@@ -83467,11 +83478,12 @@ function LineChart(props) {
83467
83478
  xAxisTickFormatter,
83468
83479
  yAxisScale,
83469
83480
  yAxisTickFormatter,
83481
+ yAxisWidth,
83470
83482
  ...attributes
83471
83483
  } = props;
83472
- const className = clsx("relative aspect-video", { "mb-6": showLegend }, customClassName);
83484
+ const className = clsx("relative aspect-video", { "pb-6": showLegend }, customClassName);
83473
83485
  const { items, shapes, activeIndex, setActiveIndex, toggleItem } = useChart(children);
83474
- return /* @__PURE__ */ React__default.createElement("div", { className, "data-taco": "chart-wrapper" }, /* @__PURE__ */ React__default.createElement(ChartContainer, { ...attributes, className: "h-full w-full", "data-taco": "chart-line" }, /* @__PURE__ */ React__default.createElement(
83486
+ return /* @__PURE__ */ React__default.createElement("div", { className, "data-taco": "chart-wrapper" }, /* @__PURE__ */ React__default.createElement(ChartWrapper, { ...attributes, className: "h-full w-full", "data-taco": "chart-line" }, /* @__PURE__ */ React__default.createElement(
83475
83487
  LineChart$1,
83476
83488
  {
83477
83489
  data,
@@ -83492,7 +83504,13 @@ function LineChart(props) {
83492
83504
  hide: !showXAxis
83493
83505
  }
83494
83506
  ),
83495
- /* @__PURE__ */ React__default.createElement(YAxis, { ...getAxisProps(yAxisScale, yAxisTickFormatter), hide: !showYAxis }),
83507
+ /* @__PURE__ */ React__default.createElement(
83508
+ YAxis,
83509
+ {
83510
+ ...getAxisProps(yAxisScale, yAxisTickFormatter, void 0, yAxisWidth),
83511
+ hide: !showYAxis
83512
+ }
83513
+ ),
83496
83514
  shapes.map((shape) => /* @__PURE__ */ React__default.createElement(Line$1, { key: shape.dataKey, ...shape, dot: showDots ? shape.dot : false, type }))
83497
83515
  )), showLegend ? /* @__PURE__ */ React__default.createElement(Legend$1, { items, hoverIndex: activeIndex, onHover: setActiveIndex, onToggle: toggleItem }) : null);
83498
83516
  }
@@ -83507,7 +83525,7 @@ function PieChart(props) {
83507
83525
  unit: unit2
83508
83526
  });
83509
83527
  const className = clsx("aspect-square", attributes.className);
83510
- return /* @__PURE__ */ React__default.createElement("div", { className: "relative", "data-taco": "chart-wrapper" }, /* @__PURE__ */ React__default.createElement(ChartContainer, { ...attributes, className, "data-taco": "chart-pie", 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, label: showLabels ? /* @__PURE__ */ React__default.createElement(Label, null) : void 0 }))), showLegend ? /* @__PURE__ */ React__default.createElement(Legend$1, { items, hoverIndex: activeIndex, onHover: setActiveIndex, onToggle: toggleItem }) : null);
83528
+ return /* @__PURE__ */ React__default.createElement("div", { className: "relative", "data-taco": "chart-wrapper" }, /* @__PURE__ */ React__default.createElement(ChartWrapper, { ...attributes, className, "data-taco": "chart-pie", 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, label: showLabels ? /* @__PURE__ */ React__default.createElement(Label, null) : void 0 }))), showLegend ? /* @__PURE__ */ React__default.createElement(Legend$1, { items, hoverIndex: activeIndex, onHover: setActiveIndex, onToggle: toggleItem }) : null);
83511
83529
  }
83512
83530
  function Segment(_) {
83513
83531
  return null;