@mindtris/ui 0.1.15 → 0.1.16

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
@@ -12284,7 +12284,7 @@ function SelectItem({ className, children, ...props }) {
12284
12284
  {
12285
12285
  "data-slot": "select-item",
12286
12286
  className: cn(
12287
- "relative flex w-full cursor-default select-none items-center gap-2 rounded-md px-2.5 py-2 text-sm font-medium outline-none transition-colors",
12287
+ "relative flex w-full cursor-default select-none items-center gap-2 rounded-md px-2.5 py-2 pr-8 text-sm font-medium outline-none transition-colors",
12288
12288
  "focus:bg-muted focus:text-foreground data-[highlighted]:bg-muted data-[highlighted]:text-foreground",
12289
12289
  "data-[disabled]:pointer-events-none data-[disabled]:opacity-50",
12290
12290
  className
@@ -12292,7 +12292,7 @@ function SelectItem({ className, children, ...props }) {
12292
12292
  ...props,
12293
12293
  children: [
12294
12294
  /* @__PURE__ */ jsx69(SelectPrimitive.ItemText, { children }),
12295
- /* @__PURE__ */ jsx69("span", { className: "absolute right-2.5 top-1/2 -translate-y-1/2 flex h-3.5 w-3.5 shrink-0 items-center justify-center", children: /* @__PURE__ */ jsx69(SelectPrimitive.ItemIndicator, { className: "inline-flex", children: /* @__PURE__ */ jsx69(CircleCheck2, { className: "h-4 w-4 text-foreground", "aria-hidden": true }) }) })
12295
+ /* @__PURE__ */ jsx69("span", { className: "absolute right-2.5 top-1/2 -translate-y-1/2 flex h-3.5 w-3.5 shrink-0 items-center justify-center", children: /* @__PURE__ */ jsx69(SelectPrimitive.ItemIndicator, { className: "inline-flex", children: /* @__PURE__ */ jsx69(CircleCheck2, { className: "h-4 w-4 fill-primary text-primary-foreground", "aria-hidden": true }) }) })
12296
12296
  ]
12297
12297
  }
12298
12298
  );