@harbour-enterprises/superdoc 0.21.0-next.5 → 0.21.0-next.7

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 (35) hide show
  1. package/dist/chunks/{PdfViewer-p-D44U59.es.js → PdfViewer-B8R1j6LP.es.js} +1 -1
  2. package/dist/chunks/{PdfViewer-DYQ6TKSD.cjs → PdfViewer-DWWRw_re.cjs} +1 -1
  3. package/dist/chunks/{index-CtZxITmf.cjs → index-Bpp8Ruyf.cjs} +2 -2
  4. package/dist/chunks/{index-CDJb8aX-.es.js → index-CLGEbkfW.es.js} +2 -2
  5. package/dist/chunks/{super-editor.es-HiSJrA0J.es.js → super-editor.es-DWm41myg.es.js} +778 -643
  6. package/dist/chunks/{super-editor.es-Do6Vcsbv.cjs → super-editor.es-aBw27Tag.cjs} +778 -643
  7. package/dist/core/types/index.d.ts.map +1 -1
  8. package/dist/super-editor/ai-writer.es.js +2 -2
  9. package/dist/super-editor/chunks/{converter-3xnF_NHq.js → converter-DYAHhSrg.js} +773 -643
  10. package/dist/super-editor/chunks/{docx-zipper-CZdELYi-.js → docx-zipper-BDbCmfbE.js} +1 -1
  11. package/dist/super-editor/chunks/{editor-BqYH4kDD.js → editor-VW8eKYoK.js} +4 -2
  12. package/dist/super-editor/chunks/{toolbar-TkaE2kKM.js → toolbar-B1up5fYV.js} +2 -2
  13. package/dist/super-editor/converter.es.js +1 -1
  14. package/dist/super-editor/docx-zipper.es.js +2 -2
  15. package/dist/super-editor/editor.es.js +3 -3
  16. package/dist/super-editor/file-zipper.es.js +1 -1
  17. package/dist/super-editor/src/core/commands/__tests__/schemaWithLists.d.ts +2 -0
  18. package/dist/super-editor/src/core/commands/__tests__/testHelpers.d.ts +4 -0
  19. package/dist/super-editor/src/core/commands/__tests__/testSchema.d.ts +2 -0
  20. package/dist/super-editor/src/core/commands/tests/commandTestUtils.d.ts +7 -0
  21. package/dist/super-editor/src/core/commands/tests/test-schema.d.ts +2 -0
  22. package/dist/super-editor/src/core/super-converter/v3/handlers/mc/altermateContent/alternate-content-translator.d.ts +6 -0
  23. package/dist/super-editor/src/core/super-converter/v3/handlers/mc/altermateContent/index.d.ts +1 -0
  24. package/dist/super-editor/src/tests/helpers/helpers.d.ts +1 -0
  25. package/dist/super-editor/super-editor.es.js +75 -33
  26. package/dist/super-editor/toolbar.es.js +2 -2
  27. package/dist/super-editor.cjs +1 -1
  28. package/dist/super-editor.es.js +1 -1
  29. package/dist/superdoc.cjs +2 -2
  30. package/dist/superdoc.es.js +2 -2
  31. package/dist/superdoc.umd.js +778 -643
  32. package/dist/superdoc.umd.js.map +1 -1
  33. package/package.json +1 -1
  34. package/dist/super-editor/src/extensions/run-item/index.d.ts +0 -1
  35. package/dist/super-editor/src/extensions/run-item/run-item.d.ts +0 -26
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@harbour-enterprises/superdoc",
3
3
  "type": "module",
4
- "version": "0.21.0-next.5",
4
+ "version": "0.21.0-next.7",
5
5
  "license": "AGPL-3.0",
6
6
  "readme": "README.md",
7
7
  "files": [
@@ -1 +0,0 @@
1
- export * from "./run-item.js";
@@ -1,26 +0,0 @@
1
- /**
2
- * Configuration options for RunItem
3
- * @typedef {Object} RunItemOptions
4
- * @category Options
5
- */
6
- /**
7
- * Attributes for run nodes
8
- * @typedef {Object} RunItemAttributes
9
- * @category Attributes
10
- * @property {Object} [attributes] @internal - Internal attributes storage
11
- */
12
- /**
13
- * @module RunItem
14
- * @sidebarTitle Run Item
15
- * @snippetPath /snippets/extensions/run-item.mdx
16
- */
17
- export const RunItem: Node;
18
- /**
19
- * Configuration options for RunItem
20
- */
21
- export type RunItemOptions = any;
22
- /**
23
- * Attributes for run nodes
24
- */
25
- export type RunItemAttributes = any;
26
- import { Node } from '@core/index.js';