@underverse-ui/underverse 1.0.79 → 1.0.80

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.
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "package": "@underverse-ui/underverse",
3
- "version": "1.0.79",
3
+ "version": "1.0.80",
4
4
  "sourceEntry": "src/index.ts",
5
5
  "totalExports": 225,
6
6
  "exports": [
package/dist/index.cjs CHANGED
@@ -4051,7 +4051,7 @@ var EmojiPicker = ({
4051
4051
  className
4052
4052
  ),
4053
4053
  children: [
4054
- showSearch && /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: cn("shrink-0 border-b p-3", isEmbedded ? "bg-transparent" : "bg-muted/30"), children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "relative", children: [
4054
+ showSearch && /* @__PURE__ */ (0, import_jsx_runtime12.jsx)("div", { className: "shrink-0 border-b p-3 bg-transparent", children: /* @__PURE__ */ (0, import_jsx_runtime12.jsxs)("div", { className: "relative", children: [
4055
4055
  /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(import_lucide_react4.Search, { className: "absolute left-3 top-1/2 h-4 w-4 -translate-y-1/2 text-muted-foreground" }),
4056
4056
  /* @__PURE__ */ (0, import_jsx_runtime12.jsx)(
4057
4057
  "input",
@@ -4061,7 +4061,7 @@ var EmojiPicker = ({
4061
4061
  value: search,
4062
4062
  onChange: (e) => setSearch(e.target.value),
4063
4063
  className: cn(
4064
- "w-full rounded-full border border-border bg-background py-2 pl-9 pr-9 text-sm",
4064
+ "w-full rounded-full border border-border bg-background/90 py-2 pl-9 pr-9 text-sm shadow-sm",
4065
4065
  "placeholder:text-muted-foreground focus:outline-none focus:ring-2 focus:ring-primary/20"
4066
4066
  )
4067
4067
  }
@@ -16584,7 +16584,7 @@ function CategoryTreeSelect(props) {
16584
16584
  };
16585
16585
  const renderSearch = ({ sticky = true, className: className2 } = {}) => {
16586
16586
  if (!isSearchEnabled) return null;
16587
- return /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: cn(sticky && "sticky top-0 z-10 bg-popover/85 pb-2 backdrop-blur-xl", className2), children: /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: "relative", children: [
16587
+ return /* @__PURE__ */ (0, import_jsx_runtime49.jsx)("div", { className: cn(sticky && "sticky top-0 z-10 pb-2", className2), children: /* @__PURE__ */ (0, import_jsx_runtime49.jsxs)("div", { className: "relative", children: [
16588
16588
  /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(import_lucide_react26.Search, { className: "absolute left-3.5 top-1/2 -translate-y-1/2 h-4 w-4 text-muted-foreground/60 transition-colors peer-focus:text-primary" }),
16589
16589
  /* @__PURE__ */ (0, import_jsx_runtime49.jsx)(
16590
16590
  "input",
@@ -16594,7 +16594,7 @@ function CategoryTreeSelect(props) {
16594
16594
  onChange: (e) => setQuery(e.target.value),
16595
16595
  placeholder: mergedLabels.searchPlaceholder,
16596
16596
  className: cn(
16597
- "peer w-full rounded-full bg-muted/40 py-2.5 pl-10 pr-10 text-sm",
16597
+ "peer w-full rounded-full bg-background/90 py-2.5 pl-10 pr-10 text-sm shadow-sm",
16598
16598
  "border border-border/30",
16599
16599
  "focus:outline-none focus:bg-background focus:border-primary/30 focus:ring-2 focus:ring-primary/10",
16600
16600
  "transition-all duration-200",