@components-kit/open-workbook 0.1.3 → 0.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +0 -4
- package/assets/backend/dist/runtime-service.js +1 -1
- package/assets/excel-addin/dist/assets/icon-80.png +0 -0
- package/assets/excel-addin/dist/excel-executor.js +1 -1
- package/assets/excel-addin/dist/taskpane.bundle.js +49 -0
- package/assets/excel-addin/dist/taskpane.css +572 -0
- package/assets/excel-addin/dist/taskpane.d.ts.map +1 -1
- package/assets/excel-addin/dist/taskpane.html +28 -0
- package/assets/excel-addin/dist/taskpane.js +86 -24
- package/assets/excel-addin/dist/taskpane.js.map +1 -1
- package/assets/excel-addin/manifest.xml +24 -22
- package/assets/excel-addin/public/assets/icon-80.png +0 -0
- package/assets/excel-addin/public/taskpane.css +551 -26
- package/assets/excel-addin/public/taskpane.html +10 -17
- package/assets/excel-addin/scripts/dev-server.mjs +4 -33
- package/assets/mcp-server/dist/index.js +1 -1
- package/dist/index.js +4 -18
- package/dist/index.js.map +1 -1
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -69,10 +69,6 @@ owb service manifest --target macos --service addin
|
|
|
69
69
|
- `OPEN_WORKBOOK_ADDIN_PATH`
|
|
70
70
|
- `OPEN_WORKBOOK_ADDIN_HOST`
|
|
71
71
|
- `OPEN_WORKBOOK_ADDIN_PORT`
|
|
72
|
-
- `OPEN_WORKBOOK_ADDIN_HTTPS=1`
|
|
73
|
-
- `OPEN_WORKBOOK_ADDIN_PROTOCOL=https`
|
|
74
|
-
- `OPEN_WORKBOOK_ADDIN_TLS_CERT`
|
|
75
|
-
- `OPEN_WORKBOOK_ADDIN_TLS_KEY`
|
|
76
72
|
- `OPEN_WORKBOOK_ADDIN_URL`
|
|
77
73
|
- `OPEN_WORKBOOK_BACKEND_URL`
|
|
78
74
|
- `OPEN_WORKBOOK_DAEMON_URL`
|
|
@@ -7,7 +7,7 @@ import { getToolCatalogSummary, PromptCatalog, ResourceCatalog, makeId, runtimeE
|
|
|
7
7
|
import { SessionRegistry } from "./session-registry.js";
|
|
8
8
|
import { NativeFileBridge } from "./native-file-bridge.js";
|
|
9
9
|
import { RuntimeStateStore } from "./state-store.js";
|
|
10
|
-
const runtimeVersion = process.env.OPEN_WORKBOOK_VERSION ?? "0.1.
|
|
10
|
+
const runtimeVersion = process.env.OPEN_WORKBOOK_VERSION ?? "0.1.4";
|
|
11
11
|
export class RuntimeService {
|
|
12
12
|
sessions = new SessionRegistry();
|
|
13
13
|
backups = new BackupManager();
|
|
Binary file
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { chunkMatrixRows, createRangeFingerprint, createWorkbookFingerprint, formatA1Cell, hashStable, parseA1Address } from "@components-kit/open-workbook-excel-core";
|
|
2
2
|
import { runtimeError } from "@components-kit/open-workbook-protocol";
|
|
3
3
|
const ENGINE_NAME = "office-js-addin";
|
|
4
|
-
const ENGINE_VERSION = "0.1.
|
|
4
|
+
const ENGINE_VERSION = "0.1.4";
|
|
5
5
|
const CHUNK_CELL_LIMIT = 50_000;
|
|
6
6
|
const OPEN_WORKBOOK_CUSTOM_XML_NAMESPACE = "https://open-workbook.dev/schema/local-config/1";
|
|
7
7
|
const EXCEL_API_VERSIONS = ["1.1", "1.2", "1.3", "1.4", "1.5", "1.6", "1.7", "1.8", "1.9", "1.10", "1.11", "1.12", "1.13", "1.14", "1.15", "1.16", "1.17"];
|