@economic/taco 2.57.0-charts.13 → 2.57.0-charts.15
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 +15 -2
- package/dist/taco.cjs.map +1 -1
- package/dist/taco.d.ts +10 -0
- package/dist/taco.js +15 -2
- package/dist/taco.js.map +1 -1
- package/package.json +2 -2
package/dist/taco.cjs
CHANGED
@@ -7737,6 +7737,9 @@ const defaultLocalisationTexts = {
|
|
7737
7737
|
today: "Today"
|
7738
7738
|
}
|
7739
7739
|
},
|
7740
|
+
card: {
|
7741
|
+
menu: "Open menu"
|
7742
|
+
},
|
7740
7743
|
combobox: {
|
7741
7744
|
tooltip: "Search in list"
|
7742
7745
|
},
|
@@ -11648,11 +11651,21 @@ const Content$8 = React__namespace.forwardRef(function CardContent(externalProps
|
|
11648
11651
|
});
|
11649
11652
|
const Card = React__namespace.forwardRef(function Card2(props, ref) {
|
11650
11653
|
const { title, menu, children, className, ...otherProps } = props;
|
11654
|
+
const localization = useLocalization();
|
11651
11655
|
const cardClassName = clsx(
|
11652
11656
|
"bg-white flex flex-col rounded-xl border border-solid border-radius-[12px] border-grey-300 hover:border-grey-500",
|
11653
11657
|
className
|
11654
11658
|
);
|
11655
|
-
return /* @__PURE__ */ React__namespace.createElement("div", { ...otherProps, className: cardClassName, "data-taco": "card", ref }, /* @__PURE__ */ React__namespace.createElement("div", { className: "flex justify-between px-4 pb-2 pt-4" }, title && /* @__PURE__ */ React__namespace.createElement(Truncate, { tooltip: title }, /* @__PURE__ */ React__namespace.createElement("h4", { className: "mb-0 flex-grow truncate text-left" }, title)), menu ? /* @__PURE__ */ React__namespace.createElement(
|
11659
|
+
return /* @__PURE__ */ React__namespace.createElement("div", { ...otherProps, className: cardClassName, "data-taco": "card", ref }, /* @__PURE__ */ React__namespace.createElement("div", { className: "flex justify-between px-4 pb-2 pt-4" }, title && /* @__PURE__ */ React__namespace.createElement(Truncate, { tooltip: title }, /* @__PURE__ */ React__namespace.createElement("h4", { className: "mb-0 flex-grow truncate text-left" }, title)), menu ? /* @__PURE__ */ React__namespace.createElement(
|
11660
|
+
IconButton,
|
11661
|
+
{
|
11662
|
+
"aria-label": localization.texts.card.menu,
|
11663
|
+
icon: "ellipsis-horizontal",
|
11664
|
+
appearance: "discrete",
|
11665
|
+
menu,
|
11666
|
+
className: "-mt-[4px]"
|
11667
|
+
}
|
11668
|
+
) : null), children);
|
11656
11669
|
});
|
11657
11670
|
Card.Content = Content$8;
|
11658
11671
|
function $010c2913dbd2fe3d$export$5cae361ad82dce8b(value) {
|
@@ -82826,7 +82839,7 @@ function Legend$1(props) {
|
|
82826
82839
|
return /* @__PURE__ */ React.createElement(
|
82827
82840
|
"button",
|
82828
82841
|
{
|
82829
|
-
key: item.label
|
82842
|
+
key: `${item.label}_${index2}`,
|
82830
82843
|
className: "hover:bg-grey-200 focus-visible:yt-focus flex items-center rounded px-1 !text-xs",
|
82831
82844
|
onClick: (event) => {
|
82832
82845
|
event == null ? void 0 : event.preventDefault();
|