@scripso-homepad/ui 0.4.6 → 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-Y7I7LA2K.js → chunk-DAOLVE64.js} +19 -23
- package/dist/chunk-DAOLVE64.js.map +1 -0
- package/dist/index.cjs +51 -33
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +34 -32
- package/dist/index.d.ts +34 -32
- package/dist/index.js +37 -15
- package/dist/index.js.map +1 -1
- package/dist/web/index.cjs +10 -14
- 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/components/Select.tsx +43 -13
- package/src/icons/ArrowUpRightIcon.tsx +1 -1
- package/src/icons/ArrowUpRightIcon.web.tsx +1 -1
- package/src/theme/input.ts +4 -9
- package/src/theme/select.ts +20 -6
- package/src/theme/tokens.ts +14 -14
- package/src/web/components/TableActionsMenu.tsx +2 -2
- package/src/web/icons/TableMenuInfoIcon.tsx +2 -2
- package/dist/chunk-Y7I7LA2K.js.map +0 -1
package/dist/web/index.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { __commonJS, __require, __toESM, Input } from '../chunk-
|
|
1
|
+
import { __commonJS, __require, __toESM, Input } from '../chunk-DAOLVE64.js';
|
|
2
2
|
import { ChevronsUpDown, Search, LogOut, PanelLeftClose, PanelLeftOpen, X, Menu, ChevronLeft, ChevronRight } from 'lucide-react';
|
|
3
3
|
import { clsx } from 'clsx';
|
|
4
4
|
import { twMerge } from 'tailwind-merge';
|
|
@@ -29354,8 +29354,8 @@ function TableMenuInfoIcon({ className }) {
|
|
|
29354
29354
|
children: /* @__PURE__ */ jsx(
|
|
29355
29355
|
"path",
|
|
29356
29356
|
{
|
|
29357
|
-
d: "
|
|
29358
|
-
stroke: "
|
|
29357
|
+
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",
|
|
29358
|
+
stroke: "currentColor",
|
|
29359
29359
|
strokeWidth: "2",
|
|
29360
29360
|
strokeLinecap: "round",
|
|
29361
29361
|
strokeLinejoin: "round"
|
|
@@ -29992,12 +29992,12 @@ function TableActionsMenu({
|
|
|
29992
29992
|
item.onSelect();
|
|
29993
29993
|
},
|
|
29994
29994
|
className: cn(
|
|
29995
|
-
"flex w-full cursor-pointer items-center gap-2.5 px-3
|
|
29995
|
+
"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",
|
|
29996
29996
|
index > 0 && "border-t border-storm-gray-50",
|
|
29997
29997
|
item.disabled && "cursor-not-allowed opacity-50"
|
|
29998
29998
|
),
|
|
29999
29999
|
children: [
|
|
30000
|
-
icon ? /* @__PURE__ */ jsx("span", { className: "inline-flex size-5 shrink-0 items-center justify-center", children: icon }) : null,
|
|
30000
|
+
icon ? /* @__PURE__ */ jsx("span", { className: "inline-flex size-5 shrink-0 items-center justify-center text-storm-gray-200", children: icon }) : null,
|
|
30001
30001
|
/* @__PURE__ */ jsx("span", { children: item.label })
|
|
30002
30002
|
]
|
|
30003
30003
|
},
|