From e0009e257c4e530cf01b34aa9a70845aab8252f5 Mon Sep 17 00:00:00 2001 From: Maribeth Moffatt Date: Mon, 14 Apr 2025 12:16:40 -0700 Subject: [PATCH] fix: update dependencies so adv compilation works (#8890) --- core/comments/rendered_workspace_comment.ts | 2 +- core/contextmenu.ts | 2 +- core/contextmenu_registry.ts | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/comments/rendered_workspace_comment.ts b/core/comments/rendered_workspace_comment.ts index 9e48db0e4..8a592a78b 100644 --- a/core/comments/rendered_workspace_comment.ts +++ b/core/comments/rendered_workspace_comment.ts @@ -22,11 +22,11 @@ import {IRenderedElement} from '../interfaces/i_rendered_element.js'; import {ISelectable} from '../interfaces/i_selectable.js'; import * as layers from '../layers.js'; import * as commentSerialization from '../serialization/workspace_comments.js'; -import {svgMath} from '../utils.js'; import {Coordinate} from '../utils/coordinate.js'; import * as dom from '../utils/dom.js'; import {Rect} from '../utils/rect.js'; import {Size} from '../utils/size.js'; +import * as svgMath from '../utils/svg_math.js'; import {WorkspaceSvg} from '../workspace_svg.js'; import {CommentView} from './comment_view.js'; import {WorkspaceComment} from './workspace_comment.js'; diff --git a/core/contextmenu.ts b/core/contextmenu.ts index 4a83b9dcc..4ba09de82 100644 --- a/core/contextmenu.ts +++ b/core/contextmenu.ts @@ -21,8 +21,8 @@ import {Menu} from './menu.js'; import {MenuSeparator} from './menu_separator.js'; import {MenuItem} from './menuitem.js'; import * as serializationBlocks from './serialization/blocks.js'; -import {Coordinate} from './utils.js'; import * as aria from './utils/aria.js'; +import {Coordinate} from './utils/coordinate.js'; import * as dom from './utils/dom.js'; import {Rect} from './utils/rect.js'; import * as svgMath from './utils/svg_math.js'; diff --git a/core/contextmenu_registry.ts b/core/contextmenu_registry.ts index f48fdfc67..06b60801a 100644 --- a/core/contextmenu_registry.ts +++ b/core/contextmenu_registry.ts @@ -13,7 +13,7 @@ import type {BlockSvg} from './block_svg.js'; import {RenderedWorkspaceComment} from './comments/rendered_workspace_comment.js'; -import {Coordinate} from './utils.js'; +import {Coordinate} from './utils/coordinate.js'; import type {WorkspaceSvg} from './workspace_svg.js'; /**