@scripso-homepad/ui 0.4.7 → 0.4.8

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.
@@ -28574,8 +28574,8 @@ var stormGray = {
28574
28574
  "3": "#8f9aa3",
28575
28575
  "4": "#6a7984"};
28576
28576
  var navy = {
28577
- "0.5": "#e5e9ef",
28578
- "5": "#08275d"};
28577
+ "0.5": "#dee5eb",
28578
+ "5": "#082640"};
28579
28579
  var rubyRed = {
28580
28580
  "0.5": "#f7dddf",
28581
28581
  "5": "#ae0011"};
@@ -28650,8 +28650,8 @@ function createOutlineStyle(ringColor) {
28650
28650
  };
28651
28651
  }
28652
28652
  var defaultOutline = {
28653
- borderRadius: radii.lg,
28654
- borderWidth: 0,
28653
+ borderRadius: radii.lg + INPUT_OUTLINE_WIDTH,
28654
+ borderWidth: INPUT_OUTLINE_WIDTH,
28655
28655
  borderColor: colors.transparent,
28656
28656
  padding: 0,
28657
28657
  backgroundColor: colors.transparent,
@@ -29840,8 +29840,8 @@ function TableMenuInfoIcon({ className }) {
29840
29840
  children: /* @__PURE__ */ jsxRuntime.jsx(
29841
29841
  "path",
29842
29842
  {
29843
- d: "M9.9974 13.3337V10.0003M9.9974 6.66699H10.0057M18.3307 10.0003C18.3307 14.6027 14.5998 18.3337 9.9974 18.3337C5.39502 18.3337 1.66406 14.6027 1.66406 10.0003C1.66406 5.39795 5.39502 1.66699 9.9974 1.66699C14.5998 1.66699 18.3307 5.39795 18.3307 10.0003Z",
29844
- stroke: "#B5BCC1",
29843
+ d: "M10.0013 13.3337V10.0003M10.0013 6.66699H10.0096M18.3346 10.0003C18.3346 14.6027 14.6037 18.3337 10.0013 18.3337C5.39893 18.3337 1.66797 14.6027 1.66797 10.0003C1.66797 5.39795 5.39893 1.66699 10.0013 1.66699C14.6037 1.66699 18.3346 5.39795 18.3346 10.0003Z",
29844
+ stroke: "currentColor",
29845
29845
  strokeWidth: "2",
29846
29846
  strokeLinecap: "round",
29847
29847
  strokeLinejoin: "round"
@@ -30478,12 +30478,12 @@ function TableActionsMenu({
30478
30478
  item.onSelect();
30479
30479
  },
30480
30480
  className: cn(
30481
- "flex w-full cursor-pointer items-center gap-2.5 px-3 py-4 text-left font-sans text-sm font-medium leading-none text-storm-gray-900 transition-colors hover:bg-storm-gray-0",
30481
+ "flex h-[51px] w-full cursor-pointer items-center gap-2.5 px-3 text-left font-sans text-sm font-medium leading-none text-storm-gray-900 transition-colors hover:bg-storm-gray-0",
30482
30482
  index > 0 && "border-t border-storm-gray-50",
30483
30483
  item.disabled && "cursor-not-allowed opacity-50"
30484
30484
  ),
30485
30485
  children: [
30486
- icon ? /* @__PURE__ */ jsxRuntime.jsx("span", { className: "inline-flex size-5 shrink-0 items-center justify-center", children: icon }) : null,
30486
+ icon ? /* @__PURE__ */ jsxRuntime.jsx("span", { className: "inline-flex size-5 shrink-0 items-center justify-center text-storm-gray-200", children: icon }) : null,
30487
30487
  /* @__PURE__ */ jsxRuntime.jsx("span", { children: item.label })
30488
30488
  ]
30489
30489
  },