@mindtris/ui 0.1.11 → 0.1.12

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
@@ -12381,6 +12381,7 @@ function SelectContent({
12381
12381
  /* @__PURE__ */ jsx72(
12382
12382
  SelectPrimitive.Viewport,
12383
12383
  {
12384
+ "data-slot": "select-viewport",
12384
12385
  className: cn(
12385
12386
  "p-1",
12386
12387
  position === "popper" && "h-[var(--radix-select-trigger-height)] w-full min-w-[var(--radix-select-trigger-width)] scroll-my-1"
@@ -12411,15 +12412,15 @@ function SelectItem({ className, children, ...props }) {
12411
12412
  {
12412
12413
  "data-slot": "select-item",
12413
12414
  className: cn(
12414
- "relative flex w-full cursor-default select-none items-center gap-2 rounded-sm py-1.5 pl-2 pr-8 text-sm outline-none",
12415
+ "relative flex w-full cursor-default select-none items-center gap-2 rounded-md py-1.5 pl-2 pr-8 text-sm outline-none mx-1",
12415
12416
  "focus:bg-muted focus:text-foreground data-[highlighted]:bg-muted data-[highlighted]:text-foreground",
12416
12417
  "data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
12417
12418
  className
12418
12419
  ),
12419
12420
  ...props,
12420
12421
  children: [
12421
- /* @__PURE__ */ jsx72("span", { className: "absolute right-2 flex h-3.5 w-3.5 shrink-0 items-center justify-center", children: /* @__PURE__ */ jsx72(SelectPrimitive.ItemIndicator, { className: "inline-flex", children: /* @__PURE__ */ jsx72(CircleCheck2, { className: "h-4 w-4 text-foreground", "aria-hidden": true }) }) }),
12422
- /* @__PURE__ */ jsx72(SelectPrimitive.ItemText, { children })
12422
+ /* @__PURE__ */ jsx72(SelectPrimitive.ItemText, { children }),
12423
+ /* @__PURE__ */ jsx72("span", { className: "absolute right-3 top-1/2 -translate-y-1/2 flex h-3.5 w-3.5 shrink-0 items-center justify-center", children: /* @__PURE__ */ jsx72(SelectPrimitive.ItemIndicator, { className: "inline-flex", children: /* @__PURE__ */ jsx72(CircleCheck2, { className: "h-4 w-4 text-foreground", "aria-hidden": true }) }) })
12423
12424
  ]
12424
12425
  }
12425
12426
  );