refactor: auto ordered imports (#9163)

This commit is contained in:
Marcel Mraz
2025-03-12 15:23:31 +01:00
committed by GitHub
parent 82b9a6b464
commit 21ffaf4d76
421 changed files with 3532 additions and 2763 deletions
+11 -8
View File
@@ -1,4 +1,3 @@
import type { InclusiveRange } from "@excalidraw/math";
import {
pointFrom,
pointRotateRads,
@@ -7,26 +6,30 @@ import {
rangesOverlap,
type GlobalPoint,
} from "@excalidraw/math";
import type { InclusiveRange } from "@excalidraw/math";
import { TOOL_TYPE } from "./constants";
import type { Bounds } from "./element/bounds";
import {
getCommonBounds,
getDraggedElementsBounds,
getElementAbsoluteCoords,
} from "./element/bounds";
import type { MaybeTransformHandleType } from "./element/transformHandles";
import { isBoundToContainer, isFrameLikeElement } from "./element/typeChecks";
import type {
ElementsMap,
ExcalidrawElement,
NonDeletedExcalidrawElement,
} from "./element/types";
import { getMaximumGroups } from "./groups";
import { KEYS } from "./keys";
import {
getSelectedElements,
getVisibleAndNonSelectedElements,
} from "./scene/selection";
import type { Bounds } from "./element/bounds";
import type { MaybeTransformHandleType } from "./element/transformHandles";
import type {
ElementsMap,
ExcalidrawElement,
NonDeletedExcalidrawElement,
} from "./element/types";
import type {
AppClassProperties,
AppState,