@ixo/editor 6.32.0 → 6.32.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-v2.schema.json +214 -0
- package/dist/action-manifest.json +16657 -3125
- package/dist/{chunk-37OKRZEK.js → chunk-5JF23UP3.js} +1497 -739
- package/dist/chunk-5JF23UP3.js.map +1 -0
- package/dist/{chunk-S7CAGFE3.js → chunk-A4CWC4AG.js} +15 -14
- package/dist/chunk-A4CWC4AG.js.map +1 -0
- package/dist/{chunk-ZXNBOVAA.js → chunk-NEOPTPDF.js} +3024 -478
- package/dist/chunk-NEOPTPDF.js.map +1 -0
- package/dist/{store-CqvAkvIZ.d.ts → connections-1NtNQrsY.d.ts} +340 -323
- package/dist/core/index.cjs +23307 -0
- package/dist/core/index.cjs.map +1 -0
- package/dist/core/index.d.ts +608 -251
- package/dist/core/index.js +467 -2
- package/dist/core/index.js.map +1 -1
- package/dist/{graphql-client-ZY4Iw0jB.d.ts → graphql-client-Bn0tN049.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-Up8gA_E9.d.ts → runtime-BFwvCQDF.d.ts} +9393 -8728
- package/package.json +9 -5
- package/style.css.d.ts +5 -5
- package/dist/chunk-37OKRZEK.js.map +0 -1
- package/dist/chunk-S7CAGFE3.js.map +0 -1
- package/dist/chunk-ZXNBOVAA.js.map +0 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ixo/editor",
|
|
3
|
-
"version": "6.32.
|
|
3
|
+
"version": "6.32.1",
|
|
4
4
|
"description": "A custom BlockNote editor wrapper for IXO team",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -29,9 +29,11 @@
|
|
|
29
29
|
"./core": {
|
|
30
30
|
"types": "./dist/core/index.d.ts",
|
|
31
31
|
"import": "./dist/core/index.js",
|
|
32
|
+
"require": "./dist/core/index.cjs",
|
|
32
33
|
"default": "./dist/core/index.js"
|
|
33
34
|
},
|
|
34
35
|
"./action-manifest.json": "./dist/action-manifest.json",
|
|
36
|
+
"./action-manifest-v2.schema.json": "./dist/action-manifest-v2.schema.json",
|
|
35
37
|
"./style.css": "./style.css",
|
|
36
38
|
"./style-mantine.css": "./style-mantine.css",
|
|
37
39
|
"./style-core.css": "./style-core.css",
|
|
@@ -51,7 +53,7 @@
|
|
|
51
53
|
"build": "cross-env NODE_OPTIONS=--max-old-space-size=4096 tsup && node scripts/generate-action-manifest.mjs",
|
|
52
54
|
"dev": "nodemon --watch src --ext ts,tsx --exec \"tsup\"",
|
|
53
55
|
"clean": "rimraf dist style.css",
|
|
54
|
-
"prepare": "
|
|
56
|
+
"prepare": "pnpm run clean && pnpm run build",
|
|
55
57
|
"example:action-gallery": "pnpm --dir examples/action-type-gallery dev",
|
|
56
58
|
"example:action-gallery:build": "pnpm --dir examples/action-type-gallery build",
|
|
57
59
|
"type-check": "tsc --noEmit",
|
|
@@ -138,17 +140,19 @@
|
|
|
138
140
|
"react-dom": "^18.2.0",
|
|
139
141
|
"rimraf": "^5.0.0",
|
|
140
142
|
"semantic-release": "^25.0.3",
|
|
143
|
+
"semantic-release-monorepo": "^8.0.2",
|
|
141
144
|
"tsup": "^8.5.0",
|
|
142
145
|
"typescript": "^5.0.0",
|
|
143
146
|
"vitest": "^4.0.18"
|
|
144
147
|
},
|
|
145
148
|
"repository": {
|
|
146
149
|
"type": "git",
|
|
147
|
-
"url": "https://github.com/ixoworld/
|
|
150
|
+
"url": "https://github.com/ixoworld/ixo-portal.git",
|
|
151
|
+
"directory": "packages/editor"
|
|
148
152
|
},
|
|
149
|
-
"homepage": "https://github.com/ixoworld/
|
|
153
|
+
"homepage": "https://github.com/ixoworld/ixo-portal/tree/develop/packages/editor#readme",
|
|
150
154
|
"bugs": {
|
|
151
|
-
"url": "https://github.com/ixoworld/
|
|
155
|
+
"url": "https://github.com/ixoworld/ixo-portal/issues"
|
|
152
156
|
},
|
|
153
157
|
"lint-staged": {
|
|
154
158
|
"*.{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
|
+
}
|