@ixo/editor 6.30.3 → 6.31.1
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/action-manifest.json +16745 -3218
- package/dist/{chunk-OAAEXL7Q.js → chunk-4475SO6R.js} +2 -2
- package/dist/{chunk-XYAKFAZ3.js → chunk-FQAKOGKS.js} +2626 -942
- package/dist/chunk-FQAKOGKS.js.map +1 -0
- package/dist/{chunk-LY32OATI.js → chunk-TBCPHCFA.js} +2704 -466
- package/dist/chunk-TBCPHCFA.js.map +1 -0
- package/dist/{store-whqrkEVn.d.ts → connections-B24zj0RI.d.ts} +340 -323
- package/dist/core/index.d.ts +314 -251
- package/dist/core/index.js +455 -2
- package/dist/core/index.js.map +1 -1
- package/dist/{graphql-client-BV2YEKAc.d.ts → graphql-client-BICFLCX8.d.ts} +6 -3
- package/dist/index.d.ts +3 -3
- package/dist/index.js +3 -3
- package/dist/mantine/index.d.ts +5 -5
- package/dist/mantine/index.js +2 -2
- package/dist/mantine/index.js.map +1 -1
- package/dist/{nodeContext-C-BsYuYi.d.ts → nodeContext-CV9D4s3X.d.ts} +1 -1
- package/dist/{index-CEIunGZv.d.ts → runtime-DFPayq89.d.ts} +9366 -8691
- package/package.json +7 -5
- package/style.css.d.ts +5 -5
- package/dist/chunk-LY32OATI.js.map +0 -1
- package/dist/chunk-XYAKFAZ3.js.map +0 -1
- /package/dist/{chunk-OAAEXL7Q.js.map → chunk-4475SO6R.js.map} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ixo/editor",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.31.1",
|
|
4
4
|
"description": "A custom BlockNote editor wrapper for IXO team",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -51,7 +51,7 @@
|
|
|
51
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
|
-
"prepare": "
|
|
54
|
+
"prepare": "pnpm run clean && pnpm run build",
|
|
55
55
|
"example:action-gallery": "pnpm --dir examples/action-type-gallery dev",
|
|
56
56
|
"example:action-gallery:build": "pnpm --dir examples/action-type-gallery build",
|
|
57
57
|
"type-check": "tsc --noEmit",
|
|
@@ -138,17 +138,19 @@
|
|
|
138
138
|
"react-dom": "^18.2.0",
|
|
139
139
|
"rimraf": "^5.0.0",
|
|
140
140
|
"semantic-release": "^25.0.3",
|
|
141
|
+
"semantic-release-monorepo": "^8.0.2",
|
|
141
142
|
"tsup": "^8.5.0",
|
|
142
143
|
"typescript": "^5.0.0",
|
|
143
144
|
"vitest": "^4.0.18"
|
|
144
145
|
},
|
|
145
146
|
"repository": {
|
|
146
147
|
"type": "git",
|
|
147
|
-
"url": "https://github.com/ixoworld/
|
|
148
|
+
"url": "https://github.com/ixoworld/ixo-portal.git",
|
|
149
|
+
"directory": "packages/editor"
|
|
148
150
|
},
|
|
149
|
-
"homepage": "https://github.com/ixoworld/
|
|
151
|
+
"homepage": "https://github.com/ixoworld/ixo-portal/tree/develop/packages/editor#readme",
|
|
150
152
|
"bugs": {
|
|
151
|
-
"url": "https://github.com/ixoworld/
|
|
153
|
+
"url": "https://github.com/ixoworld/ixo-portal/issues"
|
|
152
154
|
},
|
|
153
155
|
"lint-staged": {
|
|
154
156
|
"*.{ts,tsx,js,jsx}": [
|
package/style.css.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
// CSS module declaration
|
|
2
|
-
declare module '@ixo/editor/style.css' {
|
|
3
|
-
const content: string;
|
|
4
|
-
export default content;
|
|
5
|
-
}
|
|
1
|
+
// CSS module declaration
|
|
2
|
+
declare module '@ixo/editor/style.css' {
|
|
3
|
+
const content: string;
|
|
4
|
+
export default content;
|
|
5
|
+
}
|