@harbour-enterprises/superdoc 0.21.0 → 0.22.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 (43) hide show
  1. package/dist/chunks/{PdfViewer-OZDJ7gwT.cjs → PdfViewer-B3KmcDup.cjs} +1 -1
  2. package/dist/chunks/{PdfViewer-D3zo7tPo.es.js → PdfViewer-BpwMPbUj.es.js} +1 -1
  3. package/dist/chunks/{index-CfYf4T_z.cjs → index-BOf6E2I4.cjs} +5 -4
  4. package/dist/chunks/{index-MzW5BVNd.es.js → index-Cw4YywoD.es.js} +5 -4
  5. package/dist/chunks/{super-editor.es-U-GVCd_F.cjs → super-editor.es-DHDx2fsy.cjs} +1181 -766
  6. package/dist/chunks/{super-editor.es-Bntob7Wd.es.js → super-editor.es-vfoWxyZL.es.js} +1181 -766
  7. package/dist/core/types/index.d.ts +8 -0
  8. package/dist/core/types/index.d.ts.map +1 -1
  9. package/dist/style.css +32 -27
  10. package/dist/super-editor/ai-writer.es.js +2 -2
  11. package/dist/super-editor/chunks/{converter-3xnF_NHq.js → converter-BcqEfCTg.js} +775 -645
  12. package/dist/super-editor/chunks/{docx-zipper-CZdELYi-.js → docx-zipper-DZ9ph0iQ.js} +1 -1
  13. package/dist/super-editor/chunks/{editor-BqYH4kDD.js → editor-BC2sSIVa.js} +19 -3
  14. package/dist/super-editor/chunks/{toolbar-TkaE2kKM.js → toolbar-DNTo5DDf.js} +2 -2
  15. package/dist/super-editor/converter.es.js +1 -1
  16. package/dist/super-editor/docx-zipper.es.js +2 -2
  17. package/dist/super-editor/editor.es.js +3 -3
  18. package/dist/super-editor/file-zipper.es.js +1 -1
  19. package/dist/super-editor/src/components/slash-menu/contextmenu-helpers.d.ts +1 -0
  20. package/dist/super-editor/src/components/slash-menu/menuItems.d.ts +5 -1
  21. package/dist/super-editor/src/components/slash-menu/tests/testHelpers.d.ts +466 -0
  22. package/dist/super-editor/src/components/slash-menu/utils.d.ts +9 -2
  23. package/dist/super-editor/src/core/commands/__tests__/schemaWithLists.d.ts +2 -0
  24. package/dist/super-editor/src/core/commands/__tests__/testHelpers.d.ts +4 -0
  25. package/dist/super-editor/src/core/commands/__tests__/testSchema.d.ts +2 -0
  26. package/dist/super-editor/src/core/commands/tests/commandTestUtils.d.ts +7 -0
  27. package/dist/super-editor/src/core/commands/tests/test-schema.d.ts +2 -0
  28. package/dist/super-editor/src/core/super-converter/v3/handlers/mc/altermateContent/alternate-content-translator.d.ts +6 -0
  29. package/dist/super-editor/src/core/super-converter/v3/handlers/mc/altermateContent/index.d.ts +1 -0
  30. package/dist/super-editor/src/extensions/custom-selection/custom-selection.d.ts +1 -0
  31. package/dist/super-editor/src/tests/helpers/helpers.d.ts +1 -0
  32. package/dist/super-editor/style.css +5 -0
  33. package/dist/super-editor/super-editor.es.js +461 -153
  34. package/dist/super-editor/toolbar.es.js +2 -2
  35. package/dist/super-editor.cjs +1 -1
  36. package/dist/super-editor.es.js +1 -1
  37. package/dist/superdoc.cjs +2 -2
  38. package/dist/superdoc.es.js +2 -2
  39. package/dist/superdoc.umd.js +1184 -768
  40. package/dist/superdoc.umd.js.map +1 -1
  41. package/package.json +1 -1
  42. package/dist/super-editor/src/extensions/run-item/index.d.ts +0 -1
  43. package/dist/super-editor/src/extensions/run-item/run-item.d.ts +0 -26
@@ -1,4 +1,5 @@
1
1
  export function getTestDataByFileName(name: string): Promise<any>;
2
+ export function getExtractedDocxData(folderName: any): Promise<{}>;
2
3
  export function getTestDataAsFileBuffer(name: any): Promise<Buffer<ArrayBufferLike>>;
3
4
  export function loadTestDataForEditorTests(filename: string): Promise<[any, any, any, any]>;
4
5
  export function initTestEditor(options?: any): Editor;
@@ -1748,6 +1748,11 @@ on the right if it is inside shape textbox.
1748
1748
  height: 12px;
1749
1749
  width: 12px;
1750
1750
  }
1751
+ .slash-menu-custom-item {
1752
+ display: flex;
1753
+ align-items: center;
1754
+ width: 100%;
1755
+ }
1751
1756
  .popover {
1752
1757
  background: white;
1753
1758
  border-radius: 6px;