@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.
- package/dist/chunks/{PdfViewer-OZDJ7gwT.cjs → PdfViewer-B3KmcDup.cjs} +1 -1
- package/dist/chunks/{PdfViewer-D3zo7tPo.es.js → PdfViewer-BpwMPbUj.es.js} +1 -1
- package/dist/chunks/{index-CfYf4T_z.cjs → index-BOf6E2I4.cjs} +5 -4
- package/dist/chunks/{index-MzW5BVNd.es.js → index-Cw4YywoD.es.js} +5 -4
- package/dist/chunks/{super-editor.es-U-GVCd_F.cjs → super-editor.es-DHDx2fsy.cjs} +1181 -766
- package/dist/chunks/{super-editor.es-Bntob7Wd.es.js → super-editor.es-vfoWxyZL.es.js} +1181 -766
- 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/ai-writer.es.js +2 -2
- package/dist/super-editor/chunks/{converter-3xnF_NHq.js → converter-BcqEfCTg.js} +775 -645
- package/dist/super-editor/chunks/{docx-zipper-CZdELYi-.js → docx-zipper-DZ9ph0iQ.js} +1 -1
- package/dist/super-editor/chunks/{editor-BqYH4kDD.js → editor-BC2sSIVa.js} +19 -3
- package/dist/super-editor/chunks/{toolbar-TkaE2kKM.js → toolbar-DNTo5DDf.js} +2 -2
- package/dist/super-editor/converter.es.js +1 -1
- package/dist/super-editor/docx-zipper.es.js +2 -2
- package/dist/super-editor/editor.es.js +3 -3
- package/dist/super-editor/file-zipper.es.js +1 -1
- package/dist/super-editor/src/components/slash-menu/contextmenu-helpers.d.ts +1 -0
- 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/src/core/commands/__tests__/schemaWithLists.d.ts +2 -0
- package/dist/super-editor/src/core/commands/__tests__/testHelpers.d.ts +4 -0
- package/dist/super-editor/src/core/commands/__tests__/testSchema.d.ts +2 -0
- package/dist/super-editor/src/core/commands/tests/commandTestUtils.d.ts +7 -0
- package/dist/super-editor/src/core/commands/tests/test-schema.d.ts +2 -0
- package/dist/super-editor/src/core/super-converter/v3/handlers/mc/altermateContent/alternate-content-translator.d.ts +6 -0
- package/dist/super-editor/src/core/super-converter/v3/handlers/mc/altermateContent/index.d.ts +1 -0
- package/dist/super-editor/src/extensions/custom-selection/custom-selection.d.ts +1 -0
- package/dist/super-editor/src/tests/helpers/helpers.d.ts +1 -0
- package/dist/super-editor/style.css +5 -0
- package/dist/super-editor/super-editor.es.js +461 -153
- package/dist/super-editor/toolbar.es.js +2 -2
- 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 +1184 -768
- package/dist/superdoc.umd.js.map +1 -1
- package/package.json +1 -1
- package/dist/super-editor/src/extensions/run-item/index.d.ts +0 -1
- 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;
|