@facter/ds-core 1.29.0 → 1.30.1
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.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2495,7 +2495,7 @@ var DataTable = Object.assign(DataTableRoot, {
|
|
|
2495
2495
|
ColumnHeader: DataTableColumnHeader
|
|
2496
2496
|
});
|
|
2497
2497
|
function DialogMeshEffect() {
|
|
2498
|
-
return /* @__PURE__ */ jsxs("div", { className: "absolute inset-0 overflow-hidden rounded-t-lg pointer-events-none", children: [
|
|
2498
|
+
return /* @__PURE__ */ jsxs("div", { className: "absolute inset-0 overflow-hidden rounded-t-lg pointer-events-none", style: { border: "2px solid red", zIndex: 9 }, children: [
|
|
2499
2499
|
/* @__PURE__ */ jsx(
|
|
2500
2500
|
"div",
|
|
2501
2501
|
{
|
|
@@ -2587,7 +2587,7 @@ var DialogContent = React10.memo(
|
|
|
2587
2587
|
...props,
|
|
2588
2588
|
children: [
|
|
2589
2589
|
!disableMeshEffect && /* @__PURE__ */ jsx(DialogMeshEffect, {}),
|
|
2590
|
-
|
|
2590
|
+
children,
|
|
2591
2591
|
showCloseButton && /* @__PURE__ */ jsxs(DialogPrimitive.Close, { className: "absolute right-4 top-4 z-50 rounded-sm opacity-70 ring-offset-background transition-opacity hover:opacity-100 focus:outline-none focus:ring-2 focus:ring-ring focus:ring-offset-2 disabled:pointer-events-none data-[state=open]:bg-accent data-[state=open]:text-muted-foreground", children: [
|
|
2592
2592
|
/* @__PURE__ */ jsx(X, { className: "h-4 w-4" }),
|
|
2593
2593
|
/* @__PURE__ */ jsx("span", { className: "sr-only", children: "Fechar" })
|