@overmap-ai/blocks 1.0.31-tailwind-components.46 → 1.0.32
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/blocks.js +4 -2
- package/dist/blocks.js.map +1 -1
- package/dist/blocks.umd.cjs +4 -2
- package/dist/blocks.umd.cjs.map +1 -1
- package/package.json +1 -1
package/dist/blocks.js
CHANGED
|
@@ -292,7 +292,9 @@ const buttonCva = cva(
|
|
|
292
292
|
"hover:inset-ring-0",
|
|
293
293
|
"hover:bg-(--accent-a3)",
|
|
294
294
|
"hover:text-(--accent-a12)",
|
|
295
|
-
"active:bg-(--accent-a4)"
|
|
295
|
+
"active:bg-(--accent-a4)",
|
|
296
|
+
"data-[state='open']:inset-ring-0",
|
|
297
|
+
"data-[state='open']:bg-(--accent-a3)"
|
|
296
298
|
]
|
|
297
299
|
},
|
|
298
300
|
icon: {
|
|
@@ -1255,7 +1257,7 @@ const DialogContent = forwardRef((props, ref) => {
|
|
|
1255
1257
|
children: [
|
|
1256
1258
|
/* @__PURE__ */ jsxs("div", { className: "flex h-max w-full justify-between", children: [
|
|
1257
1259
|
/* @__PURE__ */ jsx(RadixDialog.Title, { className: "font-medium", children: title }),
|
|
1258
|
-
/* @__PURE__ */ jsx(RadixDialog.Close, { children: /* @__PURE__ */ jsx(IconButton, { accentColor: "base", size: size2, variant: "ghost", children: /* @__PURE__ */ jsx(HiX, {}) }) })
|
|
1260
|
+
/* @__PURE__ */ jsx(RadixDialog.Close, { asChild: true, children: /* @__PURE__ */ jsx(IconButton, { accentColor: "base", size: size2, variant: "ghost", children: /* @__PURE__ */ jsx(HiX, {}) }) })
|
|
1259
1261
|
] }),
|
|
1260
1262
|
computedChildren
|
|
1261
1263
|
]
|