@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.d.ts CHANGED
@@ -459,6 +459,11 @@ export declare type CardProps = Omit<React_2.HTMLAttributes<HTMLDivElement>, 'ti
459
459
  menu?: (props: Partial<MenuProps>) => JSX.Element;
460
460
  };
461
461
 
462
+ export declare type CardTexts = {
463
+ /** Text and aria-label for menu button in Card */
464
+ menu: string;
465
+ };
466
+
462
467
  declare interface ChartChildProps<TData extends object> {
463
468
  dataKey: keyof TData;
464
469
  label: string;
@@ -740,6 +745,9 @@ export declare const defaultLocalisationTexts: {
740
745
  today: string;
741
746
  };
742
747
  };
748
+ card: {
749
+ menu: string;
750
+ };
743
751
  combobox: {
744
752
  tooltip: string;
745
753
  };
@@ -2174,6 +2182,8 @@ export declare type LocalizationTexts = {
2174
2182
  banner: BannerTexts;
2175
2183
  /** Localized texts and aria-labels for [Calendar](component:calendar) component */
2176
2184
  calendar: CalendarTexts;
2185
+ /** Localized texts and aria-labels for [Card](component:card) component */
2186
+ card: CardTexts;
2177
2187
  /** Localized texts and aria-labels for [Combobox](component:combobox) component */
2178
2188
  combobox: ComboboxTexts;
2179
2189
  /** Localized texts and aria-labels for [DatePicker](component:datepicker) component */
package/dist/taco.js CHANGED
@@ -7719,6 +7719,9 @@ const defaultLocalisationTexts = {
7719
7719
  today: "Today"
7720
7720
  }
7721
7721
  },
7722
+ card: {
7723
+ menu: "Open menu"
7724
+ },
7722
7725
  combobox: {
7723
7726
  tooltip: "Search in list"
7724
7727
  },
@@ -11630,11 +11633,21 @@ const Content$8 = React.forwardRef(function CardContent(externalProps, ref) {
11630
11633
  });
11631
11634
  const Card = React.forwardRef(function Card2(props, ref) {
11632
11635
  const { title, menu, children, className, ...otherProps } = props;
11636
+ const localization = useLocalization();
11633
11637
  const cardClassName = clsx(
11634
11638
  "bg-white flex flex-col rounded-xl border border-solid border-radius-[12px] border-grey-300 hover:border-grey-500",
11635
11639
  className
11636
11640
  );
11637
- return /* @__PURE__ */ React.createElement("div", { ...otherProps, className: cardClassName, "data-taco": "card", ref }, /* @__PURE__ */ React.createElement("div", { className: "flex justify-between px-4 pb-2 pt-4" }, title && /* @__PURE__ */ React.createElement(Truncate, { tooltip: title }, /* @__PURE__ */ React.createElement("h4", { className: "mb-0 flex-grow truncate text-left" }, title)), menu ? /* @__PURE__ */ React.createElement(IconButton, { icon: "ellipsis-horizontal", appearance: "discrete", menu, className: "-mt-[4px]" }) : null), children);
11641
+ return /* @__PURE__ */ React.createElement("div", { ...otherProps, className: cardClassName, "data-taco": "card", ref }, /* @__PURE__ */ React.createElement("div", { className: "flex justify-between px-4 pb-2 pt-4" }, title && /* @__PURE__ */ React.createElement(Truncate, { tooltip: title }, /* @__PURE__ */ React.createElement("h4", { className: "mb-0 flex-grow truncate text-left" }, title)), menu ? /* @__PURE__ */ React.createElement(
11642
+ IconButton,
11643
+ {
11644
+ "aria-label": localization.texts.card.menu,
11645
+ icon: "ellipsis-horizontal",
11646
+ appearance: "discrete",
11647
+ menu,
11648
+ className: "-mt-[4px]"
11649
+ }
11650
+ ) : null), children);
11638
11651
  });
11639
11652
  Card.Content = Content$8;
11640
11653
  function $010c2913dbd2fe3d$export$5cae361ad82dce8b(value) {
@@ -82808,7 +82821,7 @@ function Legend$1(props) {
82808
82821
  return /* @__PURE__ */ React__default.createElement(
82809
82822
  "button",
82810
82823
  {
82811
- key: item.label,
82824
+ key: `${item.label}_${index2}`,
82812
82825
  className: "hover:bg-grey-200 focus-visible:yt-focus flex items-center rounded px-1 !text-xs",
82813
82826
  onClick: (event) => {
82814
82827
  event == null ? void 0 : event.preventDefault();