Skip to content

Commit e7f3506

Browse files
committed
[FIX] style: remove circular dependency
closes #7372 Task: 0 Signed-off-by: Adrien Minne (adrm) <[email protected]>
1 parent e97442f commit e7f3506

File tree

1 file changed

+10
-2
lines changed
  • packages/o-spreadsheet-engine/src/plugins/core

1 file changed

+10
-2
lines changed

packages/o-spreadsheet-engine/src/plugins/core/style.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,18 @@
1-
import { ApplyRangeChange, Color, deepEquals, UID, UnboundedZone, Zone } from "../..";
1+
import { deepEquals } from "../../helpers";
22
import { PositionMap } from "../../helpers/cells/position_map";
33
import { getItemId } from "../../helpers/data_normalization";
44
import { recomputeZones } from "../../helpers/recompute_zones";
55
import { intersection, isInside, positionToZone, toZone, zoneToXc } from "../../helpers/zones";
66
import { AddColumnsRowsCommand, CoreCommand } from "../../types/commands";
7-
import { CellPosition, Style } from "../../types/misc";
7+
import {
8+
ApplyRangeChange,
9+
CellPosition,
10+
Color,
11+
Style,
12+
UID,
13+
UnboundedZone,
14+
Zone,
15+
} from "../../types/misc";
816
import { ExcelWorkbookData, WorkbookData } from "../../types/workbook_data";
917
import { CorePlugin } from "../core_plugin";
1018

0 commit comments

Comments
 (0)