@harbour-enterprises/superdoc 0.21.0-RC2 → 0.21.0-next.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.
Files changed (30) hide show
  1. package/README.md +4 -4
  2. package/dist/chunks/{PdfViewer-CbGuPQY8.es.js → PdfViewer-0jdn-cVx.es.js} +1 -1
  3. package/dist/chunks/{PdfViewer-DGbJ8_qc.cjs → PdfViewer-Bn3Lvd0m.cjs} +1 -1
  4. package/dist/chunks/{index-qjntJEk0.es.js → index-BiZcP3bK.es.js} +57 -15
  5. package/dist/chunks/{index-ecl0ZFNw.cjs → index-C0XOj4vH.cjs} +57 -15
  6. package/dist/chunks/{super-editor.es-CS5l-cVZ.cjs → super-editor.es-BWdUsCXq.cjs} +66 -39
  7. package/dist/chunks/{super-editor.es-BF_Xaucb.es.js → super-editor.es-DQx0kzCl.es.js} +66 -39
  8. package/dist/core/SuperDoc.d.ts.map +1 -1
  9. package/dist/stores/comments-store.d.ts.map +1 -1
  10. package/dist/style.css +1 -1
  11. package/dist/super-editor/ai-writer.es.js +2 -2
  12. package/dist/super-editor/chunks/{converter-DUqGq6qj.js → converter-DMpIH4c0.js} +40 -24
  13. package/dist/super-editor/chunks/{docx-zipper-CQsQR8Zs.js → docx-zipper-CDrFfcVc.js} +1 -1
  14. package/dist/super-editor/chunks/{editor-gMF6aWiz.js → editor-DrzPfOIy.js} +9 -8
  15. package/dist/super-editor/chunks/{toolbar-BxsT1ZgG.js → toolbar-NxB-WhNb.js} +21 -11
  16. package/dist/super-editor/converter.es.js +1 -1
  17. package/dist/super-editor/docx-zipper.es.js +2 -2
  18. package/dist/super-editor/editor.es.js +3 -3
  19. package/dist/super-editor/file-zipper.es.js +1 -1
  20. package/dist/super-editor/style.css +1 -1
  21. package/dist/super-editor/super-editor.es.js +6 -6
  22. package/dist/super-editor/toolbar.es.js +2 -2
  23. package/dist/super-editor.cjs +1 -1
  24. package/dist/super-editor.es.js +1 -1
  25. package/dist/superdoc.cjs +2 -2
  26. package/dist/superdoc.es.js +2 -2
  27. package/dist/superdoc.umd.js +121 -52
  28. package/dist/superdoc.umd.js.map +1 -1
  29. package/npm-deprecation-notice.cjs +10 -0
  30. package/package.json +11 -6
@@ -0,0 +1,10 @@
1
+ #!/usr/bin/env node
2
+ console.warn('
3
+ ////////////////////////////////////////////////////////////////////////////////
4
+ The package "@harbour-enterprises/superdoc" is now mirrored from "superdoc".
5
+ Please update your dependencies to use the unscoped package name:
6
+ npm uninstall @harbour-enterprises/superdoc
7
+ npm install superdoc
8
+ This scoped package will eventually stop receiving new features.
9
+ ////////////////////////////////////////////////////////////////////////////////
10
+ ');
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@harbour-enterprises/superdoc",
3
3
  "type": "module",
4
- "version": "0.21.0-RC2",
4
+ "version": "0.21.0-next.1",
5
5
  "license": "AGPL-3.0",
6
- "readme": "../../README.md",
6
+ "readme": "README.md",
7
7
  "files": [
8
- "dist"
8
+ "dist",
9
+ "npm-deprecation-notice.cjs"
9
10
  ],
10
11
  "exports": {
11
12
  ".": {
@@ -47,9 +48,10 @@
47
48
  "release": "release-it --ci --increment=patch",
48
49
  "release:next": "release-it --config .release-it.next.json",
49
50
  "clean": "rm -rf dist",
50
- "pack:local": "npm run build:es && npm pack && mv $(ls harbour-enterprises-superdoc-*.tgz) ./superdoc.tgz",
51
- "pack": "npm run build:es && npm pack && mv $(ls harbour-enterprises-superdoc-*.tgz) ./superdoc.tgz",
52
- "test": "vitest"
51
+ "pack:local": "npm run build:es && npm pack && mv $(ls superdoc-*.tgz) ./superdoc.tgz",
52
+ "pack": "npm run build:es && npm pack && mv $(ls superdoc-*.tgz) ./superdoc.tgz",
53
+ "test": "vitest",
54
+ "postinstall": "node ./npm-deprecation-notice.cjs"
53
55
  },
54
56
  "dependencies": {
55
57
  "buffer-crc32": "^1.0.0",
@@ -82,5 +84,8 @@
82
84
  "vite": "^6.3.5",
83
85
  "vitest": "^3.2.4",
84
86
  "vue-draggable-next": "^2.2.1"
87
+ },
88
+ "publishConfig": {
89
+ "access": "public"
85
90
  }
86
91
  }