@mindtris/ui 0.1.18 → 0.1.19
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 +3 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -12284,15 +12284,15 @@ function SelectItem({ className, children, ...props }) {
|
|
|
12284
12284
|
{
|
|
12285
12285
|
"data-slot": "select-item",
|
|
12286
12286
|
className: cn(
|
|
12287
|
-
"
|
|
12287
|
+
"flex w-full cursor-default select-none items-center justify-between gap-2 rounded-md px-2.5 py-2 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
|
|
12291
12291
|
),
|
|
12292
12292
|
...props,
|
|
12293
12293
|
children: [
|
|
12294
|
-
/* @__PURE__ */ jsx69(
|
|
12295
|
-
/* @__PURE__ */ jsx69(SelectPrimitive.
|
|
12294
|
+
/* @__PURE__ */ jsx69(SelectPrimitive.ItemText, { children }),
|
|
12295
|
+
/* @__PURE__ */ jsx69(SelectPrimitive.ItemIndicator, { asChild: true, children: /* @__PURE__ */ jsx69("div", { className: "flex h-5 w-5 shrink-0 items-center justify-center rounded-full bg-primary shadow-sm", children: /* @__PURE__ */ jsx69(Check6, { className: "h-3 w-3 text-white", strokeWidth: 3, "aria-hidden": true }) }) })
|
|
12296
12296
|
]
|
|
12297
12297
|
}
|
|
12298
12298
|
);
|