@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.
- package/README.md +1 -1
- package/dist/{chunk-7KLVMNDM.js → chunk-DAOLVE64.js} +16 -16
- package/dist/chunk-DAOLVE64.js.map +1 -0
- package/dist/index.cjs +17 -17
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +29 -29
- package/dist/index.d.ts +29 -29
- package/dist/index.js +5 -5
- package/dist/index.js.map +1 -1
- package/dist/web/index.cjs +8 -8
- package/dist/web/index.cjs.map +1 -1
- package/dist/web/index.js +5 -5
- package/dist/web/index.js.map +1 -1
- package/package.json +1 -1
- package/src/icons/ArrowUpRightIcon.tsx +1 -1
- package/src/icons/ArrowUpRightIcon.web.tsx +1 -1
- package/src/theme/input.ts +2 -2
- package/src/theme/select.ts +2 -2
- package/src/theme/tokens.ts +12 -12
- package/src/web/components/TableActionsMenu.tsx +2 -2
- package/src/web/icons/TableMenuInfoIcon.tsx +2 -2
- package/dist/chunk-7KLVMNDM.js.map +0 -1
package/dist/web/index.cjs
CHANGED
|
@@ -28574,8 +28574,8 @@ var stormGray = {
|
|
|
28574
28574
|
"3": "#8f9aa3",
|
|
28575
28575
|
"4": "#6a7984"};
|
|
28576
28576
|
var navy = {
|
|
28577
|
-
"0.5": "#
|
|
28578
|
-
"5": "#
|
|
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:
|
|
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: "
|
|
29844
|
-
stroke: "
|
|
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
|
|
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
|
},
|