analytica-frontend-lib 1.0.55 → 1.0.57

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/index.mjs CHANGED
@@ -171,7 +171,7 @@ var Badge = ({
171
171
  className: `${baseClasses} ${variantClasses} ${sizeClasses} ${className}`,
172
172
  ...props,
173
173
  children: [
174
- /* @__PURE__ */ jsx3(Bell, { size: 24, className: "text-primary-950" }),
174
+ /* @__PURE__ */ jsx3(Bell, { size: 24, className: "text-current", "aria-hidden": "true" }),
175
175
  notificationActive && /* @__PURE__ */ jsx3(
176
176
  "span",
177
177
  {
@@ -3048,9 +3048,8 @@ var DropdownMenuTrigger = ({
3048
3048
  const open = useStore(store, (s) => s.open);
3049
3049
  const toggleOpen = () => store.setState({ open: !open });
3050
3050
  return /* @__PURE__ */ jsx23(
3051
- Button_default,
3051
+ "button",
3052
3052
  {
3053
- variant: "outline",
3054
3053
  onClick: (e) => {
3055
3054
  e.stopPropagation();
3056
3055
  toggleOpen();
@@ -3789,9 +3788,10 @@ var MenuItem = forwardRef11(
3789
3788
  {
3790
3789
  "data-variant": "menu2",
3791
3790
  className: `
3792
- flex flex-row items-center p-4 gap-2 border-b-2 border-transparent text-text-950 text-sx font-bold cursor-pointer focus:rounded-sm
3791
+ w-full flex flex-row items-center p-4 gap-2 border-b-4 border-transparent text-text-950 text-sx font-bold cursor-pointer focus:rounded-sm
3793
3792
  focus:outline-none focus:border-indicator-info focus:border-2
3794
3793
  ${selectedValue === value ? "border-b-primary-950" : ""}
3794
+ ${className ?? ""}
3795
3795
  `,
3796
3796
  ...commonProps,
3797
3797
  children
@@ -3802,7 +3802,7 @@ var MenuItem = forwardRef11(
3802
3802
  {
3803
3803
  "data-variant": "breadcrumb",
3804
3804
  className: `
3805
- p-2 rounded-lg hover:text-primary-600 cursor-pointer font-bold text-xs
3805
+ w-full p-2 rounded-lg hover:text-primary-600 cursor-pointer font-bold text-xs
3806
3806
  focus:outline-none focus:border-indicator-info focus:border-2
3807
3807
  ${selectedValue === value ? "text-primary-950" : "text-text-600"}
3808
3808
  ${className ?? ""}
@@ -4330,7 +4330,7 @@ var CardStatus = forwardRef12(
4330
4330
  `,
4331
4331
  children: [
4332
4332
  /* @__PURE__ */ jsx26("p", { className: "text-xs font-bold text-text-950", children: header }),
4333
- /* @__PURE__ */ jsxs21("span", { className: "flex flex-row gap-1 items-center", children: [
4333
+ status && /* @__PURE__ */ jsxs21("span", { className: "flex flex-row gap-1 items-center", children: [
4334
4334
  /* @__PURE__ */ jsx26(
4335
4335
  Badge_default,
4336
4336
  {