Skip to content

Commit

Permalink
refactor: 修复部分 circular deps (#2777)
Browse files Browse the repository at this point in the history
  • Loading branch information
wjgogogo authored Jun 17, 2024
1 parent d142efa commit f8e00e5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
3 changes: 2 additions & 1 deletion packages/s2-core/src/cell/col-cell.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,8 @@ import { CellBorderPosition, CellClipBox } from '../common/interface';
import type { AreaRange } from '../common/interface/scroll';
import { CustomRect, type SimpleBBox } from '../engine';
import type { FrozenFacet } from '../facet';
import { Frame, type ColHeaderConfig } from '../facet/header';
import { Frame } from '../facet/header/frame';
import { type ColHeaderConfig } from '../facet/header/interface';
import {
getHorizontalTextIconPosition,
getVerticalIconPosition,
Expand Down
5 changes: 3 additions & 2 deletions packages/s2-core/src/common/interface/export.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import type { CellMeta, DataItem } from '..';
import { EXTRA_FIELD } from '..';
import type { SpreadSheet } from '../../sheet-type';
import { EXTRA_FIELD } from '../constant';
import type { CellMeta } from '../interface/interaction';
import type { DataItem } from '../interface/s2DataConfig';

export type MatrixPlainTransformer = (
data: DataItem[][],
Expand Down

0 comments on commit f8e00e5

Please sign in to comment.