FIX: Fixes from "the big split"

This commit is contained in:
Nicolás Hatcher
2025-01-18 00:54:29 +01:00
committed by Nicolás Hatcher Andrés
parent fa0b386abc
commit c88304ba96
10 changed files with 311 additions and 22 deletions

View File

@@ -17,7 +17,7 @@ import {
} from "./components/storage";
// From IronCalc
import { IronCalc, IronCalcIcon, Model, init } from "@ironcalc/ironcalc";
import { IronCalc, IronCalcIcon, Model, init } from "@ironcalc/workbook";
function App() {
const [model, setModel] = useState<Model | null>(null);

View File

@@ -1,6 +1,6 @@
import styled from "@emotion/styled";
import type { Model } from "@ironcalc/ironcalc";
import { IronCalcIcon, IronCalcLogo } from "@ironcalc/ironcalc";
import type { Model } from "@ironcalc/workbook";
import { IronCalcIcon, IronCalcLogo } from "@ironcalc/workbook";
import { CircleCheck } from "lucide-react";
import { useRef, useState } from "react";
// import { IronCalcIcon, IronCalcLogo } from "./../icons";

View File

@@ -1,4 +1,4 @@
import { Model } from "@ironcalc/ironcalc";
import { Model } from "@ironcalc/workbook";
import { base64ToBytes, bytesToBase64 } from "./util";
const MAX_WORKBOOKS = 50;