myoperator-ui 0.0.176-beta.0 → 0.0.176-beta.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/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3204,7 +3204,7 @@ const DialogOverlay = React.forwardRef<
|
|
|
3204
3204
|
<DialogPrimitive.Overlay
|
|
3205
3205
|
ref={ref}
|
|
3206
3206
|
className={cn(
|
|
3207
|
-
"fixed inset-0 z-
|
|
3207
|
+
"fixed inset-0 z-[9999] bg-black/50 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0",
|
|
3208
3208
|
className
|
|
3209
3209
|
)}
|
|
3210
3210
|
{...props}
|
|
@@ -3213,7 +3213,7 @@ const DialogOverlay = React.forwardRef<
|
|
|
3213
3213
|
DialogOverlay.displayName = DialogPrimitive.Overlay.displayName;
|
|
3214
3214
|
|
|
3215
3215
|
const dialogContentVariants = cva(
|
|
3216
|
-
"fixed left-[50%] top-[50%] z-
|
|
3216
|
+
"fixed left-[50%] top-[50%] z-[9999] grid translate-x-[-50%] translate-y-[-50%] gap-4 border border-border bg-background p-6 shadow-lg duration-200 data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[state=closed]:slide-out-to-left-1/2 data-[state=closed]:slide-out-to-top-[48%] data-[state=open]:slide-in-from-left-1/2 data-[state=open]:slide-in-from-top-[48%] rounded-lg",
|
|
3217
3217
|
{
|
|
3218
3218
|
variants: {
|
|
3219
3219
|
size: {
|