analytica-frontend-lib 1.0.48 → 1.0.50

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
@@ -3463,7 +3463,7 @@ var Select = ({
3463
3463
  }
3464
3464
  }, [propValue]);
3465
3465
  const sizeClasses = SIZE_CLASSES11[size];
3466
- return /* @__PURE__ */ jsx24("div", { className: `relative ${sizeClasses} w-[288px]`, ref: selectRef, children: injectStore2(children, store) });
3466
+ return /* @__PURE__ */ jsx24("div", { className: `relative ${sizeClasses}`, ref: selectRef, children: injectStore2(children, store) });
3467
3467
  };
3468
3468
  var SelectValue = ({
3469
3469
  placeholder,
@@ -3702,7 +3702,7 @@ var MenuItem = forwardRef11(
3702
3702
  className: `
3703
3703
  w-full flex flex-col gap-0.5 items-center py-1 px-2 rounded-sm font-medium text-xs
3704
3704
  [&>svg]:size-6 cursor-pointer hover:bg-primary-600 hover:text-text
3705
- focus:outline-none focus:border-2-indicator-info focus:border-2
3705
+ focus:outline-none focus:border-indicator-info focus:border-2
3706
3706
  ${selectedValue === value ? "bg-primary-50 text-primary-950" : "text-text-950"}
3707
3707
  ${className ?? ""}
3708
3708
  `,
@@ -3715,7 +3715,8 @@ var MenuItem = forwardRef11(
3715
3715
  {
3716
3716
  "data-variant": "menu2",
3717
3717
  className: `
3718
- flex flex-row items-center p-4 gap-2 border-b-2 border-transparent text-text-950 text-sx font-bold cursor-pointer
3718
+ 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
3719
+ focus:outline-none focus:border-indicator-info focus:border-2
3719
3720
  ${selectedValue === value ? "border-b-primary-950" : ""}
3720
3721
  `,
3721
3722
  ...commonProps,
@@ -3727,7 +3728,7 @@ var MenuItem = forwardRef11(
3727
3728
  {
3728
3729
  "data-variant": "breadcrumb",
3729
3730
  className: `
3730
- p-2 rounded-lg hover:text-primary-600 cursor-pointer font-bold text-xs
3731
+ p-2 rounded-lg hover:text-primary-600 cursor-pointer font-bold text-xs
3731
3732
  focus:outline-none focus:border-indicator-info focus:border-2
3732
3733
  ${selectedValue === value ? "text-primary-950" : "text-text-600"}
3733
3734
  ${className ?? ""}