@harbour-enterprises/superdoc 0.20.0-next.3 → 0.20.0-next.4
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-DbuZR81Q.es.js → PdfViewer-BjZBgs8x.es.js} +1 -1
- package/dist/chunks/{PdfViewer-B9b7_8E2.cjs → PdfViewer-Ne_-LxpG.cjs} +1 -1
- package/dist/chunks/{index-CEAEymUl.es.js → index-BVjAJUtV.es.js} +2 -2
- package/dist/chunks/{index-CLepjsej.cjs → index-OFvCtpf7.cjs} +2 -2
- package/dist/chunks/{super-editor.es-TdXXCNpJ.cjs → super-editor.es-CCU9etUT.cjs} +1099 -713
- package/dist/chunks/{super-editor.es-C7rC3O3K.es.js → super-editor.es-DgTNVbvS.es.js} +1099 -713
- package/dist/core/SuperDoc.d.ts.map +1 -1
- package/dist/style.css +38 -0
- package/dist/super-editor/ai-writer.es.js +2 -2
- package/dist/super-editor/chunks/{converter-BZ638uQi.js → converter-BPTfSIJf.js} +919 -813
- package/dist/super-editor/chunks/{docx-zipper-B-DSvrA8.js → docx-zipper-ikgI-2vM.js} +1 -1
- package/dist/super-editor/chunks/{editor-JXnNPHDg.js → editor-C1C_smD4.js} +294 -10
- package/dist/super-editor/chunks/{toolbar-CGu2Zc7R.js → toolbar-pP4CmNcz.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/core/helpers/index.d.ts +1 -0
- package/dist/super-editor/src/core/helpers/updateDOMAttributes.d.ts +1 -0
- package/dist/super-editor/src/core/super-converter/exporter.d.ts +7 -1
- package/dist/super-editor/src/core/super-converter/v2/importer/imageImporter.d.ts +0 -1
- package/dist/super-editor/src/core/super-converter/v3/handlers/index.d.ts +2 -0
- package/dist/super-editor/src/core/super-converter/v3/handlers/w/drawing/drawing-translator.d.ts +6 -0
- package/dist/super-editor/src/core/super-converter/v3/handlers/w/drawing/index.d.ts +1 -0
- package/dist/super-editor/src/core/super-converter/v3/handlers/wp/anchor/anchor-translator.d.ts +6 -0
- package/dist/super-editor/src/core/super-converter/v3/handlers/wp/anchor/helpers/handle-anchor-node.d.ts +6 -0
- package/dist/super-editor/src/core/super-converter/v3/handlers/wp/anchor/helpers/translate-anchor-node.d.ts +6 -0
- package/dist/super-editor/src/core/super-converter/v3/handlers/wp/anchor/index.d.ts +1 -0
- package/dist/super-editor/src/core/super-converter/v3/handlers/wp/helpers/decode-image-node-helpers.d.ts +18 -0
- package/dist/super-editor/src/core/super-converter/v3/handlers/wp/helpers/encode-image-node-helpers.d.ts +6 -0
- package/dist/super-editor/src/core/super-converter/v3/handlers/wp/inline/helpers/handle-inline-node.d.ts +6 -0
- package/dist/super-editor/src/core/super-converter/v3/handlers/wp/inline/helpers/translate-inline-node.d.ts +6 -0
- package/dist/super-editor/src/core/super-converter/v3/handlers/wp/inline/index.d.ts +1 -0
- package/dist/super-editor/src/core/super-converter/v3/handlers/wp/inline/inline-translator.d.ts +6 -0
- package/dist/super-editor/src/extensions/structured-content/StructuredContentBlockView.d.ts +10 -0
- package/dist/super-editor/src/extensions/structured-content/StructuredContentInlineView.d.ts +10 -0
- package/dist/super-editor/src/extensions/structured-content/StructuredContentViewBase.d.ts +24 -0
- package/dist/super-editor/src/extensions/structured-content/structured-content-block.d.ts +3 -1
- package/dist/super-editor/src/extensions/structured-content/structured-content.d.ts +3 -1
- package/dist/super-editor/style.css +38 -0
- package/dist/super-editor/super-editor.es.js +8 -13
- 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 +1099 -713
- package/dist/superdoc.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -1117,6 +1117,44 @@ on the right if it is inside shape textbox.
|
|
|
1117
1117
|
white-space: nowrap;
|
|
1118
1118
|
text-overflow: ellipsis;
|
|
1119
1119
|
}
|
|
1120
|
+
.sd-structured-content,
|
|
1121
|
+
.sd-structured-content-block {
|
|
1122
|
+
padding: 1px;
|
|
1123
|
+
box-sizing: border-box;
|
|
1124
|
+
border-radius: 4px;
|
|
1125
|
+
border: 1px solid #629be7;
|
|
1126
|
+
position: relative;
|
|
1127
|
+
}
|
|
1128
|
+
.sd-structured-content-draggable {
|
|
1129
|
+
font-size: 10px;
|
|
1130
|
+
align-items: center;
|
|
1131
|
+
justify-content: center;
|
|
1132
|
+
position: absolute;
|
|
1133
|
+
left: 2px;
|
|
1134
|
+
bottom: 100%;
|
|
1135
|
+
width: calc(100% - 4px);
|
|
1136
|
+
max-width: 110px;
|
|
1137
|
+
min-width: 0;
|
|
1138
|
+
height: 18px;
|
|
1139
|
+
padding: 0 4px;
|
|
1140
|
+
border: 1px solid #629be7;
|
|
1141
|
+
border-bottom: none;
|
|
1142
|
+
border-radius: 6px 6px 0 0;
|
|
1143
|
+
background-color: #629be733;
|
|
1144
|
+
z-index: 10;
|
|
1145
|
+
cursor: grab;
|
|
1146
|
+
display: none;
|
|
1147
|
+
}
|
|
1148
|
+
.sd-structured-content-draggable span {
|
|
1149
|
+
max-width: 100%;
|
|
1150
|
+
overflow: hidden;
|
|
1151
|
+
white-space: nowrap;
|
|
1152
|
+
text-overflow: ellipsis;
|
|
1153
|
+
}
|
|
1154
|
+
.sd-structured-content:hover .sd-structured-content-draggable,
|
|
1155
|
+
.sd-structured-content-block:hover .sd-structured-content-draggable {
|
|
1156
|
+
display: inline-flex;
|
|
1157
|
+
}
|
|
1120
1158
|
|
|
1121
1159
|
.alignment-buttons[data-v-d84f57b6] {
|
|
1122
1160
|
display: flex;
|
|
@@ -9,14 +9,14 @@ var __privateGet = (obj, member, getter) => (__accessCheck(obj, member, "read fr
|
|
|
9
9
|
var __privateAdd = (obj, member, value) => member.has(obj) ? __typeError("Cannot add the same private member more than once") : member instanceof WeakSet ? member.add(obj) : member.set(obj, value);
|
|
10
10
|
var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "access private method"), method);
|
|
11
11
|
var _SuperToolbar_instances, initToolbarGroups_fn, _interceptedCommands, makeToolbarItems_fn, initDefaultFonts_fn, updateHighlightColors_fn, deactivateAll_fn, updateToolbarHistory_fn, runCommandWithArgumentOnly_fn;
|
|
12
|
-
import {
|
|
13
|
-
import {
|
|
14
|
-
import { _ as _export_sfc, u as useHighContrastMode, a as getQuickFormatList, b as generateLinkedStyleString, c as getFileOpener, s as startImageUpload, y as yUndoPluginKey, d as undoDepth, r as redoDepth, S as SlashMenuPluginKey, E as Editor, e as getStarterExtensions, P as Placeholder, f as getRichTextExtensions, M as Mark, h as Extension, A as Attribute, N as Node } from "./chunks/editor-
|
|
15
|
-
import { k, C, l, T, i as i2, m, j } from "./chunks/editor-
|
|
12
|
+
import { ay as getDefaultExportFromCjs, V as v4, T as TextSelection$1, v as getMarkRange, aB as vClickOutside, H as findParentNode, aC as getActiveFormatting, ar as isInTable, aD as readFromClipboard, aE as handleClipboardPaste, aF as getFileObject, a as Plugin } from "./chunks/converter-BPTfSIJf.js";
|
|
13
|
+
import { aG, a5, i, a2, aH } from "./chunks/converter-BPTfSIJf.js";
|
|
14
|
+
import { _ as _export_sfc, u as useHighContrastMode, a as getQuickFormatList, b as generateLinkedStyleString, c as getFileOpener, s as startImageUpload, y as yUndoPluginKey, d as undoDepth, r as redoDepth, S as SlashMenuPluginKey, E as Editor, e as getStarterExtensions, P as Placeholder, f as getRichTextExtensions, M as Mark, h as Extension, A as Attribute, N as Node } from "./chunks/editor-C1C_smD4.js";
|
|
15
|
+
import { k, C, l, T, i as i2, m, j } from "./chunks/editor-C1C_smD4.js";
|
|
16
16
|
import { ref, onMounted, createElementBlock, openBlock, normalizeClass, unref, Fragment, renderList, createElementVNode, withModifiers, toDisplayString, createCommentVNode, normalizeStyle, computed, watch, withDirectives, withKeys, vModelText, createTextVNode, createVNode, h, createApp, markRaw, nextTick, onBeforeUnmount, reactive, onUnmounted, renderSlot, shallowRef, createBlock, withCtx, resolveDynamicComponent, normalizeProps, guardReactiveProps } from "vue";
|
|
17
|
-
import { t as toolbarIcons, s as sanitizeNumber, T as Toolbar, m as magicWandIcon, p as plusIconSvg, a as trashIconSvg, l as linkIconSvg, b as tableIconSvg, c as scissorsIconSvg, d as copyIconSvg, e as pasteIconSvg, f as borderNoneIconSvg, g as arrowsToDotIconSvg, h as arrowsLeftRightIconSvg, w as wrenchIconSvg, u as useMessage, N as NSkeleton } from "./chunks/toolbar-
|
|
17
|
+
import { t as toolbarIcons, s as sanitizeNumber, T as Toolbar, m as magicWandIcon, p as plusIconSvg, a as trashIconSvg, l as linkIconSvg, b as tableIconSvg, c as scissorsIconSvg, d as copyIconSvg, e as pasteIconSvg, f as borderNoneIconSvg, g as arrowsToDotIconSvg, h as arrowsLeftRightIconSvg, w as wrenchIconSvg, u as useMessage, N as NSkeleton } from "./chunks/toolbar-pP4CmNcz.js";
|
|
18
18
|
import AIWriter from "./ai-writer.es.js";
|
|
19
|
-
import { D } from "./chunks/docx-zipper-
|
|
19
|
+
import { D } from "./chunks/docx-zipper-ikgI-2vM.js";
|
|
20
20
|
import { createZip } from "./file-zipper.es.js";
|
|
21
21
|
var eventemitter3 = { exports: {} };
|
|
22
22
|
var hasRequiredEventemitter3;
|
|
@@ -4602,11 +4602,6 @@ const _sfc_main = {
|
|
|
4602
4602
|
}
|
|
4603
4603
|
};
|
|
4604
4604
|
const SuperInput = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-4d5cff52"]]);
|
|
4605
|
-
const registeredHandlers = Object.freeze({
|
|
4606
|
-
"w:br": translator$2,
|
|
4607
|
-
"w:tab": translator$1,
|
|
4608
|
-
"w:p": translator
|
|
4609
|
-
});
|
|
4610
4605
|
const Extensions = {
|
|
4611
4606
|
Node,
|
|
4612
4607
|
Attribute,
|
|
@@ -4617,7 +4612,7 @@ const Extensions = {
|
|
|
4617
4612
|
export {
|
|
4618
4613
|
AIWriter,
|
|
4619
4614
|
k as AnnotatorHelpers,
|
|
4620
|
-
|
|
4615
|
+
aG as BasicUpload,
|
|
4621
4616
|
C as CommentsPluginKey,
|
|
4622
4617
|
D as DocxZipper,
|
|
4623
4618
|
Editor,
|
|
@@ -4638,6 +4633,6 @@ export {
|
|
|
4638
4633
|
getRichTextExtensions,
|
|
4639
4634
|
getStarterExtensions,
|
|
4640
4635
|
a2 as helpers,
|
|
4641
|
-
registeredHandlers,
|
|
4636
|
+
aH as registeredHandlers,
|
|
4642
4637
|
j as trackChangesHelpers
|
|
4643
4638
|
};
|
package/dist/super-editor.cjs
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const superEditor_es = require("./chunks/super-editor.es-
|
|
3
|
+
const superEditor_es = require("./chunks/super-editor.es-CCU9etUT.cjs");
|
|
4
4
|
require("./chunks/vue-DWle4Cai.cjs");
|
|
5
5
|
exports.AIWriter = superEditor_es.AIWriter;
|
|
6
6
|
exports.AnnotatorHelpers = superEditor_es.AnnotatorHelpers;
|
package/dist/super-editor.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A, a, _, C, D, E, b, S, c, d, e, f, g, T, h, i, j, k, l, m, n, o, p, r, q } from "./chunks/super-editor.es-
|
|
1
|
+
import { A, a, _, C, D, E, b, S, c, d, e, f, g, T, h, i, j, k, l, m, n, o, p, r, q } from "./chunks/super-editor.es-DgTNVbvS.es.js";
|
|
2
2
|
import "./chunks/vue-CXxsqYcP.es.js";
|
|
3
3
|
export {
|
|
4
4
|
A as AIWriter,
|
package/dist/superdoc.cjs
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
|
-
const superEditor_es = require("./chunks/super-editor.es-
|
|
4
|
-
const superdoc = require("./chunks/index-
|
|
3
|
+
const superEditor_es = require("./chunks/super-editor.es-CCU9etUT.cjs");
|
|
4
|
+
const superdoc = require("./chunks/index-OFvCtpf7.cjs");
|
|
5
5
|
require("./chunks/vue-DWle4Cai.cjs");
|
|
6
6
|
require("./chunks/jszip-b7l8QkfH.cjs");
|
|
7
7
|
const blankDocx = require("./chunks/blank-docx-CPqX9RF5.cjs");
|
package/dist/superdoc.es.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { a, E, b, S, d, i, j, n, r, p, q } from "./chunks/super-editor.es-
|
|
2
|
-
import { D, H, P, S as S2, m, l } from "./chunks/index-
|
|
1
|
+
import { a, E, b, S, d, i, j, n, r, p, q } from "./chunks/super-editor.es-DgTNVbvS.es.js";
|
|
2
|
+
import { D, H, P, S as S2, m, l } from "./chunks/index-BVjAJUtV.es.js";
|
|
3
3
|
import "./chunks/vue-CXxsqYcP.es.js";
|
|
4
4
|
import "./chunks/jszip-B8KIZSNe.es.js";
|
|
5
5
|
import { B } from "./chunks/blank-docx-iwdyG9RH.es.js";
|