FIX: Make biome happy
This commit is contained in:
committed by
Nicolás Hatcher Andrés
parent
8ed88e1445
commit
7bc563ef29
@@ -2,12 +2,12 @@ import type { Model } from "@ironcalc/wasm";
|
|||||||
import { styled } from "@mui/material";
|
import { styled } from "@mui/material";
|
||||||
import { Fx } from "../../icons";
|
import { Fx } from "../../icons";
|
||||||
import { theme } from "../../theme";
|
import { theme } from "../../theme";
|
||||||
|
import Editor from "../Editor/Editor";
|
||||||
import {
|
import {
|
||||||
COLUMN_WIDTH_SCALE,
|
COLUMN_WIDTH_SCALE,
|
||||||
ROW_HEIGH_SCALE,
|
ROW_HEIGH_SCALE,
|
||||||
} from "../WorksheetCanvas/constants";
|
} from "../WorksheetCanvas/constants";
|
||||||
import { FORMULA_BAR_HEIGHT } from "../constants";
|
import { FORMULA_BAR_HEIGHT } from "../constants";
|
||||||
import Editor from "../Editor/Editor";
|
|
||||||
import type { WorkbookState } from "../workbookState";
|
import type { WorkbookState } from "../workbookState";
|
||||||
|
|
||||||
type FormulaBarProps = {
|
type FormulaBarProps = {
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
import { type Model, columnNameFromNumber } from "@ironcalc/wasm";
|
import { type Model, columnNameFromNumber } from "@ironcalc/wasm";
|
||||||
import { styled } from "@mui/material/styles";
|
import { styled } from "@mui/material/styles";
|
||||||
import { useEffect, useLayoutEffect, useRef, useState } from "react";
|
import { useEffect, useLayoutEffect, useRef, useState } from "react";
|
||||||
|
import Editor from "../Editor/Editor";
|
||||||
import {
|
import {
|
||||||
COLUMN_WIDTH_SCALE,
|
COLUMN_WIDTH_SCALE,
|
||||||
LAST_COLUMN,
|
LAST_COLUMN,
|
||||||
@@ -15,7 +16,6 @@ import {
|
|||||||
NAVIGATION_HEIGHT,
|
NAVIGATION_HEIGHT,
|
||||||
TOOLBAR_HEIGHT,
|
TOOLBAR_HEIGHT,
|
||||||
} from "../constants";
|
} from "../constants";
|
||||||
import Editor from "../Editor/Editor";
|
|
||||||
import type { Cell } from "../types";
|
import type { Cell } from "../types";
|
||||||
import { AreaType, type WorkbookState } from "../workbookState";
|
import { AreaType, type WorkbookState } from "../workbookState";
|
||||||
import CellContextMenu from "./CellContextMenu";
|
import CellContextMenu from "./CellContextMenu";
|
||||||
|
|||||||
@@ -1,11 +1,11 @@
|
|||||||
import type { Model } from "@ironcalc/wasm";
|
import type { Model } from "@ironcalc/wasm";
|
||||||
import { type PointerEvent, type RefObject, useCallback, useRef } from "react";
|
import { type PointerEvent, type RefObject, useCallback, useRef } from "react";
|
||||||
|
import { isInReferenceMode } from "../Editor/util";
|
||||||
import type WorksheetCanvas from "../WorksheetCanvas/worksheetCanvas";
|
import type WorksheetCanvas from "../WorksheetCanvas/worksheetCanvas";
|
||||||
import {
|
import {
|
||||||
headerColumnWidth,
|
headerColumnWidth,
|
||||||
headerRowHeight,
|
headerRowHeight,
|
||||||
} from "../WorksheetCanvas/worksheetCanvas";
|
} from "../WorksheetCanvas/worksheetCanvas";
|
||||||
import { isInReferenceMode } from "../Editor/util";
|
|
||||||
import type { Cell } from "../types";
|
import type { Cell } from "../types";
|
||||||
import { rangeToStr } from "../util";
|
import { rangeToStr } from "../util";
|
||||||
import type { WorkbookState } from "../workbookState";
|
import type { WorkbookState } from "../workbookState";
|
||||||
|
|||||||
Reference in New Issue
Block a user