@ixo/editor 6.29.0 → 6.30.0
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/dist/{chunk-LMZV7QFM.js → chunk-LY32OATI.js} +2 -5
- package/dist/chunk-LY32OATI.js.map +1 -0
- package/dist/{chunk-C44S6WAW.js → chunk-OAAEXL7Q.js} +2 -2
- package/dist/{chunk-GEJ2KLBL.js → chunk-W5CKNMDB.js} +621 -504
- package/dist/chunk-W5CKNMDB.js.map +1 -0
- package/dist/core/index.js +2 -2
- package/dist/index.js +3 -3
- package/dist/mantine/index.js +2 -2
- package/package.json +3 -2
- package/dist/chunk-GEJ2KLBL.js.map +0 -1
- package/dist/chunk-LMZV7QFM.js.map +0 -1
- /package/dist/{chunk-C44S6WAW.js.map → chunk-OAAEXL7Q.js.map} +0 -0
package/dist/core/index.js
CHANGED
|
@@ -14,7 +14,7 @@ import {
|
|
|
14
14
|
swapFlowBlocks,
|
|
15
15
|
updateNodeRuntime,
|
|
16
16
|
upsertFlowParticipant
|
|
17
|
-
} from "../chunk-
|
|
17
|
+
} from "../chunk-OAAEXL7Q.js";
|
|
18
18
|
import {
|
|
19
19
|
ExplicitRunRequiredError,
|
|
20
20
|
FLOW_CONNECTIONS_MAP_KEY,
|
|
@@ -262,7 +262,7 @@ import {
|
|
|
262
262
|
writeRunRecordAndReconcile,
|
|
263
263
|
xeroOracleActivityForBlock,
|
|
264
264
|
xeroOracleActivityForBlockForEditor
|
|
265
|
-
} from "../chunk-
|
|
265
|
+
} from "../chunk-LY32OATI.js";
|
|
266
266
|
import {
|
|
267
267
|
computeCID,
|
|
268
268
|
computeJsonCID
|
package/dist/index.js
CHANGED
|
@@ -30,7 +30,7 @@ import {
|
|
|
30
30
|
useCreateIxoEditor,
|
|
31
31
|
useTrackBlockFocus,
|
|
32
32
|
useTranslate
|
|
33
|
-
} from "./chunk-
|
|
33
|
+
} from "./chunk-W5CKNMDB.js";
|
|
34
34
|
import {
|
|
35
35
|
FLOW_PARTICIPANTS_MAP_KEY,
|
|
36
36
|
readFlowParticipants,
|
|
@@ -38,7 +38,7 @@ import {
|
|
|
38
38
|
setFlowParticipantPowerLevel,
|
|
39
39
|
setFlowParticipantRequirements,
|
|
40
40
|
upsertFlowParticipant
|
|
41
|
-
} from "./chunk-
|
|
41
|
+
} from "./chunk-OAAEXL7Q.js";
|
|
42
42
|
import {
|
|
43
43
|
FLOW_CONNECTIONS_MAP_KEY,
|
|
44
44
|
FLOW_CONNECTION_BINDINGS_MAP_KEY,
|
|
@@ -87,7 +87,7 @@ import {
|
|
|
87
87
|
upsertFlowConnectionBinding,
|
|
88
88
|
validateAgentCommand,
|
|
89
89
|
validateFlowAgentLease
|
|
90
|
-
} from "./chunk-
|
|
90
|
+
} from "./chunk-LY32OATI.js";
|
|
91
91
|
|
|
92
92
|
// src/index.ts
|
|
93
93
|
import { cloneDocument } from "@ixo/matrix-crdt";
|
package/dist/mantine/index.js
CHANGED
|
@@ -86,7 +86,7 @@ import {
|
|
|
86
86
|
useRunSessionId,
|
|
87
87
|
useRunSessionPreview,
|
|
88
88
|
useTrackBlockFocus
|
|
89
|
-
} from "../chunk-
|
|
89
|
+
} from "../chunk-W5CKNMDB.js";
|
|
90
90
|
import {
|
|
91
91
|
DM_NOTIFICATIONS_MAP_KEY,
|
|
92
92
|
RUNS_MAP_KEY,
|
|
@@ -98,7 +98,7 @@ import {
|
|
|
98
98
|
sendDirectMessage,
|
|
99
99
|
setDMNotificationRecord,
|
|
100
100
|
shouldNotify
|
|
101
|
-
} from "../chunk-
|
|
101
|
+
} from "../chunk-LY32OATI.js";
|
|
102
102
|
|
|
103
103
|
// src/mantine/components/DebugButton.tsx
|
|
104
104
|
import React, { useEffect, useRef, useState } from "react";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ixo/editor",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.30.0",
|
|
4
4
|
"description": "A custom BlockNote editor wrapper for IXO team",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
}
|
|
49
49
|
},
|
|
50
50
|
"scripts": {
|
|
51
|
-
"build": "tsup && node scripts/generate-action-manifest.mjs",
|
|
51
|
+
"build": "cross-env NODE_OPTIONS=--max-old-space-size=4096 tsup && node scripts/generate-action-manifest.mjs",
|
|
52
52
|
"dev": "nodemon --watch src --ext ts,tsx --exec \"tsup\"",
|
|
53
53
|
"clean": "rimraf dist style.css",
|
|
54
54
|
"prepare": "husky install && pnpm run clean && pnpm run build",
|
|
@@ -122,6 +122,7 @@
|
|
|
122
122
|
"@types/react-dom": "^18.2.0",
|
|
123
123
|
"@typescript-eslint/eslint-plugin": "^8.44.1",
|
|
124
124
|
"@typescript-eslint/parser": "^8.44.1",
|
|
125
|
+
"cross-env": "^7.0.3",
|
|
125
126
|
"eslint": "^9.36.0",
|
|
126
127
|
"eslint-config-prettier": "^10.1.8",
|
|
127
128
|
"eslint-plugin-jsx-a11y": "^6.10.2",
|