refactor: old paths updated to reflect new path for files in excalidraw package

This commit is contained in:
Deepen Timalsina 2025-04-14 22:50:46 +05:45
parent 98e7946887
commit 18a187e470
107 changed files with 256 additions and 242 deletions

View file

@ -1,8 +1,8 @@
import { trackEvent } from "@excalidraw/excalidraw/analytics";
import { trackEvent } from "@excalidraw/excalidraw/src/analytics";
import { copyTextToSystemClipboard } from "@excalidraw/excalidraw/src/clipboard";
import { Dialog } from "@excalidraw/excalidraw/components/Dialog";
import { FilledButton } from "@excalidraw/excalidraw/components/FilledButton";
import { TextField } from "@excalidraw/excalidraw/components/TextField";
import { Dialog } from "@excalidraw/excalidraw/src/components/Dialog";
import { FilledButton } from "@excalidraw/excalidraw/src/components/FilledButton";
import { TextField } from "@excalidraw/excalidraw/src/components/TextField";
import {
copyIcon,
LinkIcon,
@ -11,9 +11,9 @@ import {
share,
shareIOS,
shareWindows,
} from "@excalidraw/excalidraw/components/icons";
import { useUIAppState } from "@excalidraw/excalidraw/context/ui-appState";
import { useCopyStatus } from "@excalidraw/excalidraw/hooks/useCopiedIndicator";
} from "@excalidraw/excalidraw/src/components/icons";
import { useUIAppState } from "@excalidraw/excalidraw/src/context/ui-appState";
import { useCopyStatus } from "@excalidraw/excalidraw/src/hooks/useCopiedIndicator";
import { useI18n } from "@excalidraw/excalidraw/src/i18n";
import { KEYS, getFrame } from "@excalidraw/common";
import { useEffect, useRef, useState } from "react";