fix: export utils from excalidraw package in excalidraw library (#7731)

* fix: export utils from excalidraw package in excalidraw library

* don't export utils utilities

* fix import path

* fix export

* don't export export utilites

* fix export paths

* reexport utils from excalidraw package

* add exports from withinBounds

* fix path
This commit is contained in:
Aakansha Doshi 2024-02-28 11:14:57 +05:30 committed by GitHub
parent 36e56267c9
commit af1a3d5b76
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 15 additions and 31 deletions

View file

@ -23,10 +23,7 @@ import { getElementsWithinSelection, getSelectedElements } from "./scene";
import { getElementsInGroup, selectGroupsFromGivenElements } from "./groups";
import type { ExcalidrawElementsIncludingDeleted } from "./scene/Scene";
import { getElementLineSegments } from "./element/bounds";
import {
doLineSegmentsIntersect,
elementsOverlappingBBox,
} from "../utils/export";
import { doLineSegmentsIntersect, elementsOverlappingBBox } from "../utils/";
import { isFrameElement, isFrameLikeElement } from "./element/typeChecks";
import { ReadonlySetLike } from "./utility-types";