@momo-webplatform/mobase 0.0.10 → 0.0.11

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.
@@ -2,7 +2,7 @@ import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
2
2
  import * as React from "react";
3
3
  import * as AlertDialogPrimitive from "@radix-ui/react-alert-dialog";
4
4
  import { cn } from "../../helpers/utils";
5
- import { buttonVariants } from "../..//components/Button";
5
+ import { buttonVariants } from "../Button";
6
6
  const AlertDialog = AlertDialogPrimitive.Root;
7
7
  const AlertDialogTrigger = AlertDialogPrimitive.Trigger;
8
8
  const AlertDialogPortal = AlertDialogPrimitive.Portal;
@@ -3,7 +3,7 @@ import * as React from "react";
3
3
  import { Command as CommandPrimitive } from "cmdk";
4
4
  import { Search } from "lucide-react";
5
5
  import { cn } from "../../helpers/utils";
6
- import { Dialog, DialogContent } from "~/src/components/Dialog/dialog";
6
+ import { Dialog, DialogContent } from "../Dialog";
7
7
  const Command = React.forwardRef(({ className, ...props }, ref) => (_jsx(CommandPrimitive, { ref: ref, className: cn("flex h-full w-full flex-col overflow-hidden rounded-md bg-popover text-popover-foreground", className), ...props })));
8
8
  Command.displayName = CommandPrimitive.displayName;
9
9
  const CommandDialog = ({ children, ...props }) => {