@harbour-enterprises/superdoc 0.21.0-next.3 → 0.21.0-next.5
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/chunks/{PdfViewer-OZDJ7gwT.cjs → PdfViewer-DYQ6TKSD.cjs} +1 -1
- package/dist/chunks/{PdfViewer-D3zo7tPo.es.js → PdfViewer-p-D44U59.es.js} +1 -1
- package/dist/chunks/{index-MzW5BVNd.es.js → index-CDJb8aX-.es.js} +4 -3
- package/dist/chunks/{index-CfYf4T_z.cjs → index-CtZxITmf.cjs} +4 -3
- package/dist/chunks/{super-editor.es-U-GVCd_F.cjs → super-editor.es-Do6Vcsbv.cjs} +377 -118
- package/dist/chunks/{super-editor.es-Bntob7Wd.es.js → super-editor.es-HiSJrA0J.es.js} +377 -118
- package/dist/core/types/index.d.ts +8 -0
- package/dist/core/types/index.d.ts.map +1 -1
- package/dist/style.css +32 -27
- package/dist/super-editor/src/components/slash-menu/menuItems.d.ts +5 -1
- package/dist/super-editor/src/components/slash-menu/tests/testHelpers.d.ts +466 -0
- package/dist/super-editor/src/components/slash-menu/utils.d.ts +9 -2
- package/dist/super-editor/style.css +5 -0
- package/dist/super-editor/super-editor.es.js +377 -118
- package/dist/super-editor.cjs +1 -1
- package/dist/super-editor.es.js +1 -1
- package/dist/superdoc.cjs +2 -2
- package/dist/superdoc.es.js +2 -2
- package/dist/superdoc.umd.js +379 -119
- package/dist/superdoc.umd.js.map +1 -1
- package/package.json +3 -5
- package/npm-deprecation-notice.cjs +0 -2
package/package.json
CHANGED
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harbour-enterprises/superdoc",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.21.0-next.
|
|
4
|
+
"version": "0.21.0-next.5",
|
|
5
5
|
"license": "AGPL-3.0",
|
|
6
6
|
"readme": "README.md",
|
|
7
7
|
"files": [
|
|
8
|
-
"dist"
|
|
9
|
-
"npm-deprecation-notice.cjs"
|
|
8
|
+
"dist"
|
|
10
9
|
],
|
|
11
10
|
"exports": {
|
|
12
11
|
".": {
|
|
@@ -50,8 +49,7 @@
|
|
|
50
49
|
"clean": "rm -rf dist",
|
|
51
50
|
"pack:local": "npm run build:es && npm pack && mv $(ls superdoc-*.tgz) ./superdoc.tgz",
|
|
52
51
|
"pack": "npm run build:es && npm pack && mv $(ls superdoc-*.tgz) ./superdoc.tgz",
|
|
53
|
-
"test": "vitest"
|
|
54
|
-
"postinstall": "node ./npm-deprecation-notice.cjs"
|
|
52
|
+
"test": "vitest"
|
|
55
53
|
},
|
|
56
54
|
"dependencies": {
|
|
57
55
|
"buffer-crc32": "^1.0.0",
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
#!/usr/bin/env node
|
|
2
|
-
console.warn("\n////////////////////////////////////////////////////////////////////////////////\nThe package \"@harbour-enterprises/superdoc\" is now mirrored from \"superdoc\".\nPlease update your dependencies to use the unscoped package name:\n npm uninstall @harbour-enterprises/superdoc\n npm install superdoc\nThis scoped package will eventually stop receiving new features.\n////////////////////////////////////////////////////////////////////////////////\n");
|