@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 +7 -7
- package/dist/taco.cjs.map +1 -1
- package/dist/taco.css +18 -7
- package/dist/taco.d.ts +58 -1
- package/dist/taco.js +7 -7
- package/dist/taco.js.map +1 -1
- package/package.json +2 -2
package/dist/taco.css
CHANGED
@@ -1567,9 +1567,20 @@ table[data-taco^='table'] tr[data-row-create] {
|
|
1567
1567
|
@apply h-full;
|
1568
1568
|
}
|
1569
1569
|
|
1570
|
+
[data-taco='card-content'] > [data-taco='chart-wrapper'] {
|
1571
|
+
container: wrapper / inline-size;
|
1572
|
+
}
|
1573
|
+
|
1570
1574
|
[data-taco='card-content'] > [data-taco='chart-wrapper'] [data-taco='chart-donut']:not([class*='w-']),
|
1571
1575
|
[data-taco='card-content'] > [data-taco='chart-wrapper'] [data-taco='chart-pie']:not([class*='w-']) {
|
1572
|
-
@apply aspect-square w-
|
1576
|
+
@apply aspect-square w-3/5;
|
1577
|
+
}
|
1578
|
+
|
1579
|
+
@container wrapper (width > 400px) {
|
1580
|
+
[data-taco='card-content'] > [data-taco='chart-wrapper'] [data-taco='chart-donut']:not([class*='w-']),
|
1581
|
+
[data-taco='card-content'] > [data-taco='chart-wrapper'] [data-taco='chart-pie']:not([class*='w-']) {
|
1582
|
+
@apply w-2/3;
|
1583
|
+
}
|
1573
1584
|
}
|
1574
1585
|
|
1575
1586
|
.recharts-cartesian-axis line,
|
@@ -1598,13 +1609,9 @@ table[data-taco^='table'] tr[data-row-create] {
|
|
1598
1609
|
container: wrapper / inline-size;
|
1599
1610
|
}
|
1600
1611
|
|
1601
|
-
|
1602
|
-
@apply text-xl;
|
1603
|
-
}
|
1604
|
-
|
1605
|
-
@container wrapper (width < 130px) {
|
1612
|
+
@container wrapper (width > 130px) {
|
1606
1613
|
[data-taco='chart-donut-total'] span:first-child {
|
1607
|
-
@apply text-
|
1614
|
+
@apply text-xl;
|
1608
1615
|
}
|
1609
1616
|
}
|
1610
1617
|
|
@@ -1613,3 +1620,7 @@ table[data-taco^='table'] tr[data-row-create] {
|
|
1613
1620
|
@apply text-base;
|
1614
1621
|
}
|
1615
1622
|
}
|
1623
|
+
|
1624
|
+
[data-taco='chart-donut']:has([data-taco='chart-tooltip']) {
|
1625
|
+
@apply relative z-10;
|
1626
|
+
}
|
package/dist/taco.d.ts
CHANGED
@@ -163,8 +163,17 @@ export declare interface AreaChartAreaProps<TData extends object> extends ChartC
|
|
163
163
|
}
|
164
164
|
|
165
165
|
export declare interface AreaChartProps<TData extends object> extends ChartProps<TData>, default_2.ComponentProps<'div'> {
|
166
|
+
/** Show dots for each data point
|
167
|
+
* @default false
|
168
|
+
*/
|
166
169
|
showDots?: boolean;
|
170
|
+
/** Stack areas on top of one another, instead of other each other. 'expand' fills the available space
|
171
|
+
* @default false
|
172
|
+
*/
|
167
173
|
stacked?: boolean | 'expand';
|
174
|
+
/** Interpolation type of the line
|
175
|
+
* @default natural
|
176
|
+
*/
|
168
177
|
type?: CurveType;
|
169
178
|
}
|
170
179
|
|
@@ -240,8 +249,17 @@ export declare interface BarChartBarProps<TData extends object> extends ChartChi
|
|
240
249
|
}
|
241
250
|
|
242
251
|
export declare interface BarChartProps<TData extends object> extends ChartProps<TData>, default_2.ComponentProps<'div'> {
|
243
|
-
|
252
|
+
/** Orientation of the bars
|
253
|
+
* @default false
|
254
|
+
*/
|
255
|
+
orientation?: 'horizontal' | 'vertical';
|
256
|
+
/** Show bar values as labels next to/inside the bar
|
257
|
+
* @default vertical
|
258
|
+
*/
|
244
259
|
showLabels?: boolean;
|
260
|
+
/** Stack bars on top of one another, instead of other each other. 'expand' fills the available space
|
261
|
+
* @default false
|
262
|
+
*/
|
245
263
|
stacked?: boolean | 'expand';
|
246
264
|
}
|
247
265
|
|
@@ -451,16 +469,39 @@ declare interface ChartChildProps<TData extends object> {
|
|
451
469
|
}
|
452
470
|
|
453
471
|
declare interface ChartProps<TData extends object> {
|
472
|
+
/** Data to show in chart, should be an array of objects */
|
454
473
|
data: TData[];
|
474
|
+
/** Key in data to use for X Axis */
|
455
475
|
dataKey: keyof TData;
|
476
|
+
/** Show a legend below the chart, hidden by default
|
477
|
+
* @default false
|
478
|
+
*/
|
456
479
|
showLegend?: boolean;
|
480
|
+
/** Show the X Axis, shown by default
|
481
|
+
* @default true
|
482
|
+
*/
|
457
483
|
showXAxis?: boolean;
|
484
|
+
/** Show the Y Axis, shown by default
|
485
|
+
* @default false
|
486
|
+
*/
|
458
487
|
showYAxis?: boolean;
|
488
|
+
/** Add a title to the Tooltip show when hovering data */
|
459
489
|
tooltipTitle?: TooltipTitle;
|
490
|
+
/**
|
491
|
+
* @default auto
|
492
|
+
*/
|
460
493
|
xAxisScale?: ScaleType | Function;
|
494
|
+
/** Format the value shown for each tick on the X Axis */
|
461
495
|
xAxisTickFormatter?: TickFormatter;
|
496
|
+
/**
|
497
|
+
* @default auto
|
498
|
+
*/
|
462
499
|
yAxisScale?: ScaleType | Function;
|
500
|
+
/** Format the value shown for each tick on the Y Axis */
|
463
501
|
yAxisTickFormatter?: TickFormatter;
|
502
|
+
/** Adjust the width of the Y Axis to reduce whitespace
|
503
|
+
* @default 55
|
504
|
+
*/
|
464
505
|
yAxisWidth?: number;
|
465
506
|
}
|
466
507
|
|
@@ -1097,6 +1138,9 @@ export declare namespace DonutChart {
|
|
1097
1138
|
}
|
1098
1139
|
|
1099
1140
|
export declare interface DonutChartProps<TData extends object> extends Omit<PieChartProps<TData>, 'showLabels'> {
|
1141
|
+
/** Show total value in center of Donut
|
1142
|
+
* @default false
|
1143
|
+
*/
|
1100
1144
|
showTotal?: boolean;
|
1101
1145
|
}
|
1102
1146
|
|
@@ -1884,7 +1928,13 @@ export declare interface LineChartAreaProps<TData extends object> extends ChartC
|
|
1884
1928
|
}
|
1885
1929
|
|
1886
1930
|
export declare interface LineChartProps<TData extends object> extends ChartProps<TData>, default_2.ComponentProps<'div'> {
|
1931
|
+
/** Show dots for each data point
|
1932
|
+
* @default false
|
1933
|
+
*/
|
1887
1934
|
showDots?: boolean;
|
1935
|
+
/** Interpolation type of the line
|
1936
|
+
* @default natural
|
1937
|
+
*/
|
1888
1938
|
type?: CurveType;
|
1889
1939
|
}
|
1890
1940
|
|
@@ -2478,8 +2528,15 @@ export declare namespace PieChart {
|
|
2478
2528
|
}
|
2479
2529
|
|
2480
2530
|
export declare interface PieChartProps<TData extends object> extends Pick<ChartProps<TData>, 'showLegend' | 'tooltipTitle'>, default_2.ComponentProps<'div'> {
|
2531
|
+
/** Format the displayed value
|
2532
|
+
* @default Intl.NumberFormat
|
2533
|
+
*/
|
2481
2534
|
formatter?: ChartValueFormatter;
|
2535
|
+
/** Show labels inside each segment
|
2536
|
+
* @default false
|
2537
|
+
*/
|
2482
2538
|
showLabels?: boolean;
|
2539
|
+
/** Text representation of data, used in tooltips and totals */
|
2483
2540
|
unit?: string;
|
2484
2541
|
}
|
2485
2542
|
|
package/dist/taco.js
CHANGED
@@ -82772,11 +82772,11 @@ function ChartWrapper(props) {
|
|
82772
82772
|
function Tooltip(props) {
|
82773
82773
|
const { active, payload = [], style, title } = props;
|
82774
82774
|
if (active && payload.length) {
|
82775
|
-
return /* @__PURE__ */ React__default.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__default.createElement("span", { className: "font-bold" }, title) : null, /* @__PURE__ */ React__default.createElement("dl", { className: "m-0 grid grid-cols-[max-content_max-content] gap-x-4 gap-y-0.5", style }, payload.map((entry, index2) => {
|
82775
|
+
return /* @__PURE__ */ React__default.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__default.createElement("span", { className: "font-bold" }, title) : null, /* @__PURE__ */ React__default.createElement("dl", { className: "m-0 grid grid-cols-[max-content_max-content] gap-x-4 gap-y-0.5", style }, payload.map((entry, index2) => {
|
82776
82776
|
const color2 = entry.color ?? entry.payload.color;
|
82777
82777
|
const formatter = entry.formatter ?? entry.payload.formatter;
|
82778
82778
|
const unit2 = entry.unit ?? entry.payload.unit;
|
82779
|
-
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, { key: `${entry.name}-${index2}` }, /* @__PURE__ */ React__default.createElement("dt", { className: "text-grey-700 mb-0 flex items-center gap-1 font-normal" }, /* @__PURE__ */ React__default.createElement("span", { className: "-mt-px h-2.5 w-2.5 rounded-sm", style: { background: color2 } }), entry.name), /* @__PURE__ */ React__default.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__default.createElement("span", { className: "text-grey-700" }, unit2) : null));
|
82779
|
+
return /* @__PURE__ */ React__default.createElement(React__default.Fragment, { key: `${entry.name}-${index2}` }, /* @__PURE__ */ React__default.createElement("dt", { className: "text-grey-700 mb-0 flex items-center gap-1 font-normal", "data-taco": "chart-tooltip" }, /* @__PURE__ */ React__default.createElement("span", { className: "-mt-px h-2.5 w-2.5 rounded-sm", style: { background: color2 } }), entry.name), /* @__PURE__ */ React__default.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__default.createElement("span", { className: "text-grey-700" }, unit2) : null));
|
82780
82780
|
})));
|
82781
82781
|
}
|
82782
82782
|
return null;
|
@@ -83100,7 +83100,7 @@ function Area(_) {
|
|
83100
83100
|
AreaChart.Area = Area;
|
83101
83101
|
const BAR_WIDTH = 18;
|
83102
83102
|
function BarChart(props) {
|
83103
|
-
const isHorizontal = props.
|
83103
|
+
const isHorizontal = props.orientation === "horizontal";
|
83104
83104
|
const {
|
83105
83105
|
children,
|
83106
83106
|
className: customClassName,
|
@@ -83111,6 +83111,7 @@ function BarChart(props) {
|
|
83111
83111
|
showXAxis = !isHorizontal,
|
83112
83112
|
showYAxis = isHorizontal,
|
83113
83113
|
stacked = false,
|
83114
|
+
tooltipTitle,
|
83114
83115
|
xAxisScale,
|
83115
83116
|
xAxisTickFormatter,
|
83116
83117
|
yAxisScale,
|
@@ -83137,7 +83138,7 @@ function BarChart(props) {
|
|
83137
83138
|
stackOffset: stacked === "expand" ? "expand" : void 0
|
83138
83139
|
},
|
83139
83140
|
/* @__PURE__ */ React__default.createElement(CartesianGrid, { horizontal: !isHorizontal, vertical: false }),
|
83140
|
-
/* @__PURE__ */ React__default.createElement(Tooltip$1, { content: /* @__PURE__ */ React__default.createElement(Tooltip,
|
83141
|
+
/* @__PURE__ */ React__default.createElement(Tooltip$1, { content: /* @__PURE__ */ React__default.createElement(Tooltip, { title: tooltipTitle }) }),
|
83141
83142
|
/* @__PURE__ */ React__default.createElement(
|
83142
83143
|
XAxis,
|
83143
83144
|
{
|
@@ -83248,8 +83249,7 @@ function DonutChart(props) {
|
|
83248
83249
|
unit: unit2
|
83249
83250
|
});
|
83250
83251
|
const className = clsx("aspect-square", attributes.className);
|
83251
|
-
|
83252
|
-
return /* @__PURE__ */ React__default.createElement("div", { className: "relative", "data-taco": "chart-wrapper" }, /* @__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$3, { title: tooltipTitle }) }), /* @__PURE__ */ React__default.createElement(Pie, { ...pieProps, innerRadius: radius - DONUT_WIDTH$1 }))), showTotal ? /* @__PURE__ */ React__default.createElement(
|
83252
|
+
return /* @__PURE__ */ React__default.createElement("div", { className: "relative", "data-taco": "chart-wrapper" }, /* @__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 }))), showTotal ? /* @__PURE__ */ React__default.createElement(
|
83253
83253
|
Total,
|
83254
83254
|
{
|
83255
83255
|
formatter,
|
@@ -83277,7 +83277,7 @@ function Total(props) {
|
|
83277
83277
|
className: "absolute-center flex aspect-video flex-col items-center justify-center overflow-hidden rounded-full",
|
83278
83278
|
"data-taco": "chart-donut-total"
|
83279
83279
|
},
|
83280
|
-
/* @__PURE__ */ React__default.createElement(Tooltip$3, { title: total }, /* @__PURE__ */ React__default.createElement("span", { className: "w-full truncate text-center font-bold tabular-nums" }, total)),
|
83280
|
+
/* @__PURE__ */ React__default.createElement(Tooltip$3, { title: total }, /* @__PURE__ */ React__default.createElement("span", { className: "w-full truncate text-center text-lg font-bold tabular-nums" }, total)),
|
83281
83281
|
unit2 ? /* @__PURE__ */ React__default.createElement("span", { className: "text-grey-700 -mb-1 -mt-0.5 truncate text-xs" }, unit2) : null
|
83282
83282
|
);
|
83283
83283
|
}
|