Fix utils bundle

This commit is contained in:
Marcel Mraz 2025-03-24 14:43:04 +01:00
parent cc2916215a
commit daf91fa318
No known key found for this signature in database
GPG key ID: 4EBD6E62DC830CD2
2 changed files with 3 additions and 3 deletions

View file

@ -43,6 +43,8 @@ import { refreshTextDimensions } from "@excalidraw/element/newElement";
import { getNormalizedDimensions } from "@excalidraw/element/sizeHelpers"; import { getNormalizedDimensions } from "@excalidraw/element/sizeHelpers";
import { isInvisiblySmallElement } from "@excalidraw/element/sizeHelpers";
import type { LocalPoint, Radians } from "@excalidraw/math"; import type { LocalPoint, Radians } from "@excalidraw/math";
import type { import type {
@ -71,8 +73,6 @@ import {
getNormalizedZoom, getNormalizedZoom,
} from "../scene"; } from "../scene";
import { isInvisiblySmallElement } from "..";
import type { AppState, BinaryFiles, LibraryItem } from "../types"; import type { AppState, BinaryFiles, LibraryItem } from "../types";
import type { ImportedDataState, LegacyAppState } from "./types"; import type { ImportedDataState, LegacyAppState } from "./types";

View file

@ -1,10 +1,10 @@
import { MIME_TYPES } from "@excalidraw/common";
import { getDefaultAppState } from "@excalidraw/excalidraw/appState"; import { getDefaultAppState } from "@excalidraw/excalidraw/appState";
import { import {
copyBlobToClipboardAsPng, copyBlobToClipboardAsPng,
copyTextToSystemClipboard, copyTextToSystemClipboard,
copyToClipboard, copyToClipboard,
} from "@excalidraw/excalidraw/clipboard"; } from "@excalidraw/excalidraw/clipboard";
import { MIME_TYPES } from "@excalidraw/common";
import { encodePngMetadata } from "@excalidraw/excalidraw/data/image"; import { encodePngMetadata } from "@excalidraw/excalidraw/data/image";
import { serializeAsJSON } from "@excalidraw/excalidraw/data/json"; import { serializeAsJSON } from "@excalidraw/excalidraw/data/json";
import { restore } from "@excalidraw/excalidraw/data/restore"; import { restore } from "@excalidraw/excalidraw/data/restore";