Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(roam): fix RoamControllerHost importing path #20313

Merged
merged 2 commits into from
Sep 2, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion src/chart/treemap/TreemapView.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ import {
import DataDiffer from '../../data/DataDiffer';
import * as helper from '../helper/treeHelper';
import Breadcrumb from './Breadcrumb';
import RoamController, { RoamEventParams, RoamControllerHost } from '../../component/helper/RoamController';
import type { RoamControllerHost } from '../../component/helper/roamHelper';
// eslint-disable-next-line no-duplicate-imports
import type { RoamEventParams } from '../../component/helper/RoamController';
// eslint-disable-next-line no-duplicate-imports
import RoamController from '../../component/helper/RoamController';
import BoundingRect, { RectLike } from 'zrender/src/core/BoundingRect';
import * as matrix from 'zrender/src/core/matrix';
import * as animationUtil from '../../util/animation';
Expand Down