@harbour-enterprises/superdoc 0.13.0-next.5 → 0.13.0-next.6
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/{super-editor.es-DiMCL_ka.cjs → super-editor.es-BSS_LTA0.cjs} +12 -5
- package/dist/chunks/{super-editor.es-BUhPIiSe.es.js → super-editor.es-CU8V5_XY.es.js} +12 -5
- package/dist/super-editor/ai-writer.es.js +2 -2
- package/dist/super-editor/chunks/{converter-DOyDZC9F.js → converter-Bns3BtmW.js} +2 -2
- package/dist/super-editor/chunks/{docx-zipper-DZ-zYy-E.js → docx-zipper-qf0kgh0l.js} +1 -1
- package/dist/super-editor/chunks/{editor-Dz35c20r.js → editor-hIfvfc-Y.js} +12 -5
- package/dist/super-editor/chunks/{toolbar-BXs-eLuz.js → toolbar-BC9mPZ43.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/super-editor.es.js +6 -6
- 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 +3 -3
- package/dist/superdoc.umd.js +13 -6
- package/dist/superdoc.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -23410,7 +23410,7 @@ const _SuperConverter = class _SuperConverter2 {
|
|
|
23410
23410
|
return;
|
|
23411
23411
|
}
|
|
23412
23412
|
}
|
|
23413
|
-
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.13.0-next.
|
|
23413
|
+
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.13.0-next.6") {
|
|
23414
23414
|
const customLocation = "docProps/custom.xml";
|
|
23415
23415
|
if (!docx[customLocation]) {
|
|
23416
23416
|
docx[customLocation] = generateCustomXml();
|
|
@@ -23877,7 +23877,7 @@ function storeSuperdocVersion(docx) {
|
|
|
23877
23877
|
function generateCustomXml() {
|
|
23878
23878
|
return DEFAULT_CUSTOM_XML;
|
|
23879
23879
|
}
|
|
23880
|
-
function generateSuperdocVersion(pid = 2, version2 = "0.13.0-next.
|
|
23880
|
+
function generateSuperdocVersion(pid = 2, version2 = "0.13.0-next.6") {
|
|
23881
23881
|
return {
|
|
23882
23882
|
type: "element",
|
|
23883
23883
|
name: "property",
|
|
@@ -41257,7 +41257,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
|
|
|
41257
41257
|
* @returns {Object | void} Migration results
|
|
41258
41258
|
*/
|
|
41259
41259
|
processCollaborationMigrations() {
|
|
41260
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.13.0-next.
|
|
41260
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.13.0-next.6");
|
|
41261
41261
|
if (!this.options.ydoc) return;
|
|
41262
41262
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
41263
41263
|
let docVersion = metaMap.get("version");
|
|
@@ -48734,7 +48734,7 @@ const getImagePositionDecorations = (state2, view) => {
|
|
|
48734
48734
|
let style2 = "";
|
|
48735
48735
|
let className = "";
|
|
48736
48736
|
const { vRelativeFrom, alignH } = node2.attrs.anchorData;
|
|
48737
|
-
const { size: size2, padding } = node2.attrs;
|
|
48737
|
+
const { size: size2, padding, marginOffset } = node2.attrs;
|
|
48738
48738
|
const pageBreak = findPreviousDomNodeWithClass(view, pos, "pagination-break-wrapper");
|
|
48739
48739
|
if (pageBreak) {
|
|
48740
48740
|
switch (alignH) {
|
|
@@ -48748,9 +48748,16 @@ const getImagePositionDecorations = (state2, view) => {
|
|
|
48748
48748
|
style2 += "display: block; margin-left: auto; margin-right: auto; ";
|
|
48749
48749
|
break;
|
|
48750
48750
|
}
|
|
48751
|
-
|
|
48751
|
+
const topPos = marginOffset.top !== void 0 ? marginOffset.top : pageBreak?.offsetTop + pageBreak?.offsetHeight;
|
|
48752
|
+
style2 += vRelativeFrom === "margin" ? `position: absolute; top: ${topPos}px; ` : "";
|
|
48752
48753
|
if (vRelativeFrom === "margin") {
|
|
48753
48754
|
const nextPos = view.posAtDOM(pageBreak, 1);
|
|
48755
|
+
if (nextPos < 0) {
|
|
48756
|
+
const $pos = view.state.doc.resolve(pos);
|
|
48757
|
+
decorations.push(
|
|
48758
|
+
Decoration.node(pos - 1, pos + $pos.parent.nodeSize - 1, { style: `height: ${size2.height + parseInt(padding.top) + parseInt(padding.bottom)}px` })
|
|
48759
|
+
);
|
|
48760
|
+
}
|
|
48754
48761
|
const imageBlock = document.createElement("div");
|
|
48755
48762
|
imageBlock.className = "anchor-image-placeholder";
|
|
48756
48763
|
imageBlock.style.float = alignH;
|
|
@@ -23393,7 +23393,7 @@ const _SuperConverter = class _SuperConverter2 {
|
|
|
23393
23393
|
return;
|
|
23394
23394
|
}
|
|
23395
23395
|
}
|
|
23396
|
-
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.13.0-next.
|
|
23396
|
+
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.13.0-next.6") {
|
|
23397
23397
|
const customLocation = "docProps/custom.xml";
|
|
23398
23398
|
if (!docx[customLocation]) {
|
|
23399
23399
|
docx[customLocation] = generateCustomXml();
|
|
@@ -23860,7 +23860,7 @@ function storeSuperdocVersion(docx) {
|
|
|
23860
23860
|
function generateCustomXml() {
|
|
23861
23861
|
return DEFAULT_CUSTOM_XML;
|
|
23862
23862
|
}
|
|
23863
|
-
function generateSuperdocVersion(pid = 2, version2 = "0.13.0-next.
|
|
23863
|
+
function generateSuperdocVersion(pid = 2, version2 = "0.13.0-next.6") {
|
|
23864
23864
|
return {
|
|
23865
23865
|
type: "element",
|
|
23866
23866
|
name: "property",
|
|
@@ -41240,7 +41240,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
|
|
|
41240
41240
|
* @returns {Object | void} Migration results
|
|
41241
41241
|
*/
|
|
41242
41242
|
processCollaborationMigrations() {
|
|
41243
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.13.0-next.
|
|
41243
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.13.0-next.6");
|
|
41244
41244
|
if (!this.options.ydoc) return;
|
|
41245
41245
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
41246
41246
|
let docVersion = metaMap.get("version");
|
|
@@ -48717,7 +48717,7 @@ const getImagePositionDecorations = (state2, view) => {
|
|
|
48717
48717
|
let style2 = "";
|
|
48718
48718
|
let className = "";
|
|
48719
48719
|
const { vRelativeFrom, alignH } = node2.attrs.anchorData;
|
|
48720
|
-
const { size: size2, padding } = node2.attrs;
|
|
48720
|
+
const { size: size2, padding, marginOffset } = node2.attrs;
|
|
48721
48721
|
const pageBreak = findPreviousDomNodeWithClass(view, pos, "pagination-break-wrapper");
|
|
48722
48722
|
if (pageBreak) {
|
|
48723
48723
|
switch (alignH) {
|
|
@@ -48731,9 +48731,16 @@ const getImagePositionDecorations = (state2, view) => {
|
|
|
48731
48731
|
style2 += "display: block; margin-left: auto; margin-right: auto; ";
|
|
48732
48732
|
break;
|
|
48733
48733
|
}
|
|
48734
|
-
|
|
48734
|
+
const topPos = marginOffset.top !== void 0 ? marginOffset.top : pageBreak?.offsetTop + pageBreak?.offsetHeight;
|
|
48735
|
+
style2 += vRelativeFrom === "margin" ? `position: absolute; top: ${topPos}px; ` : "";
|
|
48735
48736
|
if (vRelativeFrom === "margin") {
|
|
48736
48737
|
const nextPos = view.posAtDOM(pageBreak, 1);
|
|
48738
|
+
if (nextPos < 0) {
|
|
48739
|
+
const $pos = view.state.doc.resolve(pos);
|
|
48740
|
+
decorations.push(
|
|
48741
|
+
Decoration.node(pos - 1, pos + $pos.parent.nodeSize - 1, { style: `height: ${size2.height + parseInt(padding.top) + parseInt(padding.bottom)}px` })
|
|
48742
|
+
);
|
|
48743
|
+
}
|
|
48737
48744
|
const imageBlock = document.createElement("div");
|
|
48738
48745
|
imageBlock.className = "anchor-image-placeholder";
|
|
48739
48746
|
imageBlock.style.float = alignH;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { ref, onMounted, onUnmounted, computed, createElementBlock, openBlock, withModifiers, createElementVNode, withDirectives, unref, vModelText, createCommentVNode, nextTick } from "vue";
|
|
2
|
-
import { T as TextSelection } from "./chunks/converter-
|
|
3
|
-
import { _ as _export_sfc } from "./chunks/editor-
|
|
2
|
+
import { T as TextSelection } from "./chunks/converter-Bns3BtmW.js";
|
|
3
|
+
import { _ as _export_sfc } from "./chunks/editor-hIfvfc-Y.js";
|
|
4
4
|
const DEFAULT_API_ENDPOINT = "https://sd-dev-express-gateway-i6xtm.ondigitalocean.app/insights";
|
|
5
5
|
const SYSTEM_PROMPT = "You are an expert copywriter and you are immersed in a document editor. You are to provide document related text responses based on the user prompts. Only write what is asked for. Do not provide explanations. Try to keep placeholders as short as possible. Do not output your prompt. Your instructions are: ";
|
|
6
6
|
async function baseInsightsFetch(payload, options = {}) {
|
|
@@ -23412,7 +23412,7 @@ const _SuperConverter = class _SuperConverter {
|
|
|
23412
23412
|
return;
|
|
23413
23413
|
}
|
|
23414
23414
|
}
|
|
23415
|
-
static updateDocumentVersion(docx = this.convertedXml, version = "0.13.0-next.
|
|
23415
|
+
static updateDocumentVersion(docx = this.convertedXml, version = "0.13.0-next.6") {
|
|
23416
23416
|
const customLocation = "docProps/custom.xml";
|
|
23417
23417
|
if (!docx[customLocation]) {
|
|
23418
23418
|
docx[customLocation] = generateCustomXml();
|
|
@@ -23882,7 +23882,7 @@ function storeSuperdocVersion(docx) {
|
|
|
23882
23882
|
function generateCustomXml() {
|
|
23883
23883
|
return DEFAULT_CUSTOM_XML;
|
|
23884
23884
|
}
|
|
23885
|
-
function generateSuperdocVersion(pid = 2, version = "0.13.0-next.
|
|
23885
|
+
function generateSuperdocVersion(pid = 2, version = "0.13.0-next.6") {
|
|
23886
23886
|
return {
|
|
23887
23887
|
type: "element",
|
|
23888
23888
|
name: "property",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { x as process$1, a1 as commonjsGlobal, B as Buffer, a2 as getDefaultExportFromCjs, a3 as getContentTypesFromXml, a4 as xmljs } from "./converter-
|
|
1
|
+
import { x as process$1, a1 as commonjsGlobal, B as Buffer, a2 as getDefaultExportFromCjs, a3 as getContentTypesFromXml, a4 as xmljs } from "./converter-Bns3BtmW.js";
|
|
2
2
|
function commonjsRequire(path) {
|
|
3
3
|
throw new Error('Could not dynamically require "' + path + '". Please configure the dynamicRequireTargets or/and ignoreDynamicRequires option of @rollup/plugin-commonjs appropriately for this require call to work.');
|
|
4
4
|
}
|
|
@@ -12,9 +12,9 @@ var __privateMethod = (obj, member, method) => (__accessCheck(obj, member, "acce
|
|
|
12
12
|
var _Attribute_static, getGlobalAttributes_fn, getNodeAndMarksAttributes_fn, _Schema_static, createNodesSchema_fn, createMarksSchema_fn, _events, _ExtensionService_instances, setupExtensions_fn, attachEditorEvents_fn, _commandService, _css, _Editor_instances, initContainerElement_fn, init_fn, initRichText_fn, onFocus_fn, checkHeadless_fn, insertNewFileData_fn, registerPluginByNameIfNotExists_fn, createExtensionService_fn, createCommandService_fn, createConverter_fn, initMedia_fn, initFonts_fn, createSchema_fn, generatePmData_fn, createDocFromHTML_fn, createView_fn, onCollaborationReady_fn, initComments_fn, initPagination_fn, dispatchTransaction_fn, prepareDocumentForImport_fn, prepareDocumentForExport_fn, endCollaboration_fn, _FieldAnnotationView_instances, createAnnotation_fn, _AutoPageNumberNodeView_instances, renderDom_fn, scheduleUpdateNodeStyle_fn;
|
|
13
13
|
import * as Y from "yjs";
|
|
14
14
|
import { UndoManager, Item as Item$1, ContentType, Text as Text$1, XmlElement, encodeStateAsUpdate } from "yjs";
|
|
15
|
-
import { P as PluginKey, a as Plugin, M as Mapping, c as callOrGet, i as isEmptyObject, S as Schema$1, T as TextSelection, b as canSplit, l as liftTarget, A as AllSelection, d as canJoin, j as joinPoint, N as NodeSelection, r as replaceStep$1, e as Selection, F as Fragment, R as ReplaceAroundStep, f as Slice, o as objectIncludes, g as deleteProps, D as DOMParser$1, h as ReplaceStep, k as NodeRange, m as findWrapping, n as isMacOS, p as isIOS, q as generateDocxRandomId, s as minMax, t as generateRandom32BitHex, u as DOMSerializer, v as Mark$1, w as dropPoint, x as process$1, B as Buffer2, y as isRegExp, z as TrackDeleteMarkName, C as TrackInsertMarkName, E as v4, G as TrackFormatMarkName, H as comments_module_events, I as AddMarkStep, J as RemoveMarkStep, K as twipsToLines, L as pixelsToTwips, O as SuperConverter, Q as EditorState, U as hasSomeParentWithClass, V as parseSizeUnit, W as getLineHeightValueString, X as toKebabCase, Y as kebabCase, Z as getColStyleDeclaration, _ as SelectionRange, $ as Transform, a0 as createColGroup } from "./converter-
|
|
15
|
+
import { P as PluginKey, a as Plugin, M as Mapping, c as callOrGet, i as isEmptyObject, S as Schema$1, T as TextSelection, b as canSplit, l as liftTarget, A as AllSelection, d as canJoin, j as joinPoint, N as NodeSelection, r as replaceStep$1, e as Selection, F as Fragment, R as ReplaceAroundStep, f as Slice, o as objectIncludes, g as deleteProps, D as DOMParser$1, h as ReplaceStep, k as NodeRange, m as findWrapping, n as isMacOS, p as isIOS, q as generateDocxRandomId, s as minMax, t as generateRandom32BitHex, u as DOMSerializer, v as Mark$1, w as dropPoint, x as process$1, B as Buffer2, y as isRegExp, z as TrackDeleteMarkName, C as TrackInsertMarkName, E as v4, G as TrackFormatMarkName, H as comments_module_events, I as AddMarkStep, J as RemoveMarkStep, K as twipsToLines, L as pixelsToTwips, O as SuperConverter, Q as EditorState, U as hasSomeParentWithClass, V as parseSizeUnit, W as getLineHeightValueString, X as toKebabCase, Y as kebabCase, Z as getColStyleDeclaration, _ as SelectionRange, $ as Transform, a0 as createColGroup } from "./converter-Bns3BtmW.js";
|
|
16
16
|
import { ref, computed, createElementBlock, openBlock, withModifiers, Fragment as Fragment$1, renderList, normalizeClass, createCommentVNode, toDisplayString, createElementVNode, createApp } from "vue";
|
|
17
|
-
import { D as DocxZipper } from "./docx-zipper-
|
|
17
|
+
import { D as DocxZipper } from "./docx-zipper-qf0kgh0l.js";
|
|
18
18
|
function getMarksFromSelection(state) {
|
|
19
19
|
const { from: from2, to, empty: empty2 } = state.selection;
|
|
20
20
|
const marks = [];
|
|
@@ -14898,7 +14898,7 @@ const _Editor = class _Editor extends EventEmitter {
|
|
|
14898
14898
|
* @returns {Object | void} Migration results
|
|
14899
14899
|
*/
|
|
14900
14900
|
processCollaborationMigrations() {
|
|
14901
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.13.0-next.
|
|
14901
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.13.0-next.6");
|
|
14902
14902
|
if (!this.options.ydoc) return;
|
|
14903
14903
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
14904
14904
|
let docVersion = metaMap.get("version");
|
|
@@ -22509,7 +22509,7 @@ const getImagePositionDecorations = (state, view) => {
|
|
|
22509
22509
|
let style = "";
|
|
22510
22510
|
let className = "";
|
|
22511
22511
|
const { vRelativeFrom, alignH } = node.attrs.anchorData;
|
|
22512
|
-
const { size, padding } = node.attrs;
|
|
22512
|
+
const { size, padding, marginOffset } = node.attrs;
|
|
22513
22513
|
const pageBreak = findPreviousDomNodeWithClass(view, pos, "pagination-break-wrapper");
|
|
22514
22514
|
if (pageBreak) {
|
|
22515
22515
|
switch (alignH) {
|
|
@@ -22523,9 +22523,16 @@ const getImagePositionDecorations = (state, view) => {
|
|
|
22523
22523
|
style += "display: block; margin-left: auto; margin-right: auto; ";
|
|
22524
22524
|
break;
|
|
22525
22525
|
}
|
|
22526
|
-
|
|
22526
|
+
const topPos = marginOffset.top !== void 0 ? marginOffset.top : pageBreak?.offsetTop + pageBreak?.offsetHeight;
|
|
22527
|
+
style += vRelativeFrom === "margin" ? `position: absolute; top: ${topPos}px; ` : "";
|
|
22527
22528
|
if (vRelativeFrom === "margin") {
|
|
22528
22529
|
const nextPos = view.posAtDOM(pageBreak, 1);
|
|
22530
|
+
if (nextPos < 0) {
|
|
22531
|
+
const $pos = view.state.doc.resolve(pos);
|
|
22532
|
+
decorations.push(
|
|
22533
|
+
Decoration.node(pos - 1, pos + $pos.parent.nodeSize - 1, { style: `height: ${size.height + parseInt(padding.top) + parseInt(padding.bottom)}px` })
|
|
22534
|
+
);
|
|
22535
|
+
}
|
|
22529
22536
|
const imageBlock = document.createElement("div");
|
|
22530
22537
|
imageBlock.className = "anchor-image-placeholder";
|
|
22531
22538
|
imageBlock.style.float = alignH;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { computed, createElementBlock, openBlock, createElementVNode, createCommentVNode, normalizeClass, normalizeStyle, ref, withKeys, unref, withModifiers, createBlock, toDisplayString, withDirectives, vModelText, getCurrentInstance, createVNode, readonly, watch, onMounted, onBeforeUnmount, reactive, onBeforeMount, inject, onActivated, onDeactivated, createTextVNode, Fragment, Comment, defineComponent, provide, h, Teleport, toRef, nextTick, renderSlot, isVNode, shallowRef, watchEffect, mergeProps, Transition, vShow, cloneVNode, Text, renderList, withCtx } from "vue";
|
|
2
|
-
import { x as process$1 } from "./converter-
|
|
3
|
-
import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-
|
|
2
|
+
import { x as process$1 } from "./converter-Bns3BtmW.js";
|
|
3
|
+
import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-hIfvfc-Y.js";
|
|
4
4
|
const sanitizeNumber = (value, defaultNumber) => {
|
|
5
5
|
let sanitized = value.replace(/[^0-9.]/g, "");
|
|
6
6
|
sanitized = parseFloat(sanitized);
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { E } from "./chunks/editor-
|
|
2
|
-
import "./chunks/converter-
|
|
3
|
-
import "./chunks/docx-zipper-
|
|
1
|
+
import { E } from "./chunks/editor-hIfvfc-Y.js";
|
|
2
|
+
import "./chunks/converter-Bns3BtmW.js";
|
|
3
|
+
import "./chunks/docx-zipper-qf0kgh0l.js";
|
|
4
4
|
export {
|
|
5
5
|
E as Editor
|
|
6
6
|
};
|
|
@@ -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 { a2 as getDefaultExportFromCjs, E as v4, a5 as vClickOutside, T as TextSelection, a as Plugin } from "./chunks/converter-
|
|
13
|
-
import { O } from "./chunks/converter-
|
|
14
|
-
import { _ as _export_sfc, u as useHighContrastMode, a as getQuickFormatList, b as generateLinkedStyleString, f as findParentNode, c as getFileOpener, s as startImageUpload, d as getActiveFormatting, i as isInTable, e as undoDepth, r as redoDepth, E as Editor, h as getStarterExtensions, P as Placeholder, j as getRichTextExtensions, M as Mark, k as Extension, A as Attribute, N as Node } from "./chunks/editor-
|
|
15
|
-
import { o, C, T, m, q, p, l, n } from "./chunks/editor-
|
|
12
|
+
import { a2 as getDefaultExportFromCjs, E as v4, a5 as vClickOutside, T as TextSelection, a as Plugin } from "./chunks/converter-Bns3BtmW.js";
|
|
13
|
+
import { O } from "./chunks/converter-Bns3BtmW.js";
|
|
14
|
+
import { _ as _export_sfc, u as useHighContrastMode, a as getQuickFormatList, b as generateLinkedStyleString, f as findParentNode, c as getFileOpener, s as startImageUpload, d as getActiveFormatting, i as isInTable, e as undoDepth, r as redoDepth, E as Editor, h as getStarterExtensions, P as Placeholder, j as getRichTextExtensions, M as Mark, k as Extension, A as Attribute, N as Node } from "./chunks/editor-hIfvfc-Y.js";
|
|
15
|
+
import { o, C, T, m, q, p, l, n } from "./chunks/editor-hIfvfc-Y.js";
|
|
16
16
|
import { ref, onMounted, createElementBlock, openBlock, normalizeClass, unref, Fragment, renderList, createElementVNode, withModifiers, getCurrentInstance, computed, watch, createCommentVNode, withDirectives, withKeys, vModelText, createTextVNode, toDisplayString, normalizeStyle, createVNode, h, createApp, reactive, onUnmounted, shallowRef, onBeforeUnmount, createBlock } from "vue";
|
|
17
|
-
import { t as toolbarIcons, s as sanitizeNumber, T as Toolbar, N as NSkeleton } from "./chunks/toolbar-
|
|
17
|
+
import { t as toolbarIcons, s as sanitizeNumber, T as Toolbar, N as NSkeleton } from "./chunks/toolbar-BC9mPZ43.js";
|
|
18
18
|
import AIWriter from "./ai-writer.es.js";
|
|
19
|
-
import { D } from "./chunks/docx-zipper-
|
|
19
|
+
import { D } from "./chunks/docx-zipper-qf0kgh0l.js";
|
|
20
20
|
import { createZip } from "./file-zipper.es.js";
|
|
21
21
|
var eventemitter3 = { exports: {} };
|
|
22
22
|
(function(module) {
|
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-BSS_LTA0.cjs");
|
|
4
4
|
require("./chunks/vue-HIY1g7dm.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, T, f, g, i, h, j, k, l, m, n, o } from "./chunks/super-editor.es-
|
|
1
|
+
import { A, a, _, C, D, E, b, S, c, d, e, T, f, g, i, h, j, k, l, m, n, o } from "./chunks/super-editor.es-CU8V5_XY.es.js";
|
|
2
2
|
import "./chunks/vue-Bi1uWinj.es.js";
|
|
3
3
|
export {
|
|
4
4
|
A as AIWriter,
|
package/dist/superdoc.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-BSS_LTA0.cjs");
|
|
4
4
|
const vue = require("./chunks/vue-HIY1g7dm.cjs");
|
|
5
5
|
const jszip = require("./chunks/jszip-BTAcmbVg.cjs");
|
|
6
6
|
const blankDocx = require("./chunks/blank-docx-CPqX9RF5.cjs");
|
|
@@ -47806,7 +47806,7 @@ class SuperDoc extends eventemitter3.EventEmitter {
|
|
|
47806
47806
|
this.config.colors = shuffleArray(this.config.colors);
|
|
47807
47807
|
this.userColorMap = /* @__PURE__ */ new Map();
|
|
47808
47808
|
this.colorIndex = 0;
|
|
47809
|
-
this.version = "0.13.0-next.
|
|
47809
|
+
this.version = "0.13.0-next.6";
|
|
47810
47810
|
console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
|
|
47811
47811
|
this.superdocId = config.superdocId || uuid.v4();
|
|
47812
47812
|
this.colors = this.config.colors;
|
package/dist/superdoc.es.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { o as index$1, C as CommentsPluginKey, f as TrackChangesBasePluginKey, E as Editor, l as getRichTextExtensions, d as SuperInput, A as AIWriter, c as SuperEditor, e as SuperToolbar, g as createZip } from "./chunks/super-editor.es-
|
|
2
|
-
import { a, S, i, n } from "./chunks/super-editor.es-
|
|
1
|
+
import { o as index$1, C as CommentsPluginKey, f as TrackChangesBasePluginKey, E as Editor, l as getRichTextExtensions, d as SuperInput, A as AIWriter, c as SuperEditor, e as SuperToolbar, g as createZip } from "./chunks/super-editor.es-CU8V5_XY.es.js";
|
|
2
|
+
import { a, S, i, n } from "./chunks/super-editor.es-CU8V5_XY.es.js";
|
|
3
3
|
import { Y as effectScope, r as ref, Z as markRaw, p as process$1, _ as toRaw, a as computed, $ as isRef, a0 as isReactive, D as toRef, i as inject, q as getCurrentInstance, l as watch, y as unref, a1 as hasInjectionContext, N as reactive, u as nextTick, a2 as getCurrentScope, a3 as onScopeDispose, a4 as toRefs, g as global$1, K as shallowRef, O as readonly, j as onMounted, k as onBeforeUnmount, h as onBeforeMount, U as onActivated, s as onDeactivated, A as createTextVNode, F as Fragment, R as Comment, m as defineComponent, E as provide, I as withDirectives, C as h, V as Teleport, S as renderSlot, W as isVNode, J as watchEffect, P as Transition, G as mergeProps, Q as vShow, H as cloneVNode, T as Text, b as createElementBlock, o as openBlock, t as toDisplayString, x as createVNode, z as withCtx, f as createBaseVNode, B as normalizeStyle, e as createCommentVNode, v as createBlock, w as withModifiers, n as normalizeClass, a5 as resolveDirective, d as renderList, c as createApp, X as onUnmounted, a6 as resolveDynamicComponent } from "./chunks/vue-Bi1uWinj.es.js";
|
|
4
4
|
import { B as Buffer$2 } from "./chunks/jszip-DckFs3A7.es.js";
|
|
5
5
|
import { B as BlankDOCX } from "./chunks/blank-docx-iwdyG9RH.es.js";
|
|
@@ -47789,7 +47789,7 @@ class SuperDoc extends EventEmitter {
|
|
|
47789
47789
|
this.config.colors = shuffleArray(this.config.colors);
|
|
47790
47790
|
this.userColorMap = /* @__PURE__ */ new Map();
|
|
47791
47791
|
this.colorIndex = 0;
|
|
47792
|
-
this.version = "0.13.0-next.
|
|
47792
|
+
this.version = "0.13.0-next.6";
|
|
47793
47793
|
console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
|
|
47794
47794
|
this.superdocId = config.superdocId || v4();
|
|
47795
47795
|
this.colors = this.config.colors;
|
package/dist/superdoc.umd.js
CHANGED
|
@@ -30770,7 +30770,7 @@
|
|
|
30770
30770
|
return;
|
|
30771
30771
|
}
|
|
30772
30772
|
}
|
|
30773
|
-
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.13.0-next.
|
|
30773
|
+
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.13.0-next.6") {
|
|
30774
30774
|
const customLocation = "docProps/custom.xml";
|
|
30775
30775
|
if (!docx[customLocation]) {
|
|
30776
30776
|
docx[customLocation] = generateCustomXml();
|
|
@@ -31237,7 +31237,7 @@
|
|
|
31237
31237
|
function generateCustomXml() {
|
|
31238
31238
|
return DEFAULT_CUSTOM_XML;
|
|
31239
31239
|
}
|
|
31240
|
-
function generateSuperdocVersion(pid = 2, version2 = "0.13.0-next.
|
|
31240
|
+
function generateSuperdocVersion(pid = 2, version2 = "0.13.0-next.6") {
|
|
31241
31241
|
return {
|
|
31242
31242
|
type: "element",
|
|
31243
31243
|
name: "property",
|
|
@@ -48617,7 +48617,7 @@
|
|
|
48617
48617
|
* @returns {Object | void} Migration results
|
|
48618
48618
|
*/
|
|
48619
48619
|
processCollaborationMigrations() {
|
|
48620
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.13.0-next.
|
|
48620
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.13.0-next.6");
|
|
48621
48621
|
if (!this.options.ydoc) return;
|
|
48622
48622
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
48623
48623
|
let docVersion = metaMap.get("version");
|
|
@@ -56094,7 +56094,7 @@
|
|
|
56094
56094
|
let style2 = "";
|
|
56095
56095
|
let className = "";
|
|
56096
56096
|
const { vRelativeFrom, alignH } = node2.attrs.anchorData;
|
|
56097
|
-
const { size: size2, padding } = node2.attrs;
|
|
56097
|
+
const { size: size2, padding, marginOffset } = node2.attrs;
|
|
56098
56098
|
const pageBreak = findPreviousDomNodeWithClass(view, pos, "pagination-break-wrapper");
|
|
56099
56099
|
if (pageBreak) {
|
|
56100
56100
|
switch (alignH) {
|
|
@@ -56108,9 +56108,16 @@
|
|
|
56108
56108
|
style2 += "display: block; margin-left: auto; margin-right: auto; ";
|
|
56109
56109
|
break;
|
|
56110
56110
|
}
|
|
56111
|
-
|
|
56111
|
+
const topPos = marginOffset.top !== void 0 ? marginOffset.top : pageBreak?.offsetTop + pageBreak?.offsetHeight;
|
|
56112
|
+
style2 += vRelativeFrom === "margin" ? `position: absolute; top: ${topPos}px; ` : "";
|
|
56112
56113
|
if (vRelativeFrom === "margin") {
|
|
56113
56114
|
const nextPos = view.posAtDOM(pageBreak, 1);
|
|
56115
|
+
if (nextPos < 0) {
|
|
56116
|
+
const $pos = view.state.doc.resolve(pos);
|
|
56117
|
+
decorations.push(
|
|
56118
|
+
Decoration.node(pos - 1, pos + $pos.parent.nodeSize - 1, { style: `height: ${size2.height + parseInt(padding.top) + parseInt(padding.bottom)}px` })
|
|
56119
|
+
);
|
|
56120
|
+
}
|
|
56114
56121
|
const imageBlock = document.createElement("div");
|
|
56115
56122
|
imageBlock.className = "anchor-image-placeholder";
|
|
56116
56123
|
imageBlock.style.float = alignH;
|
|
@@ -93309,7 +93316,7 @@ ${style2}
|
|
|
93309
93316
|
this.config.colors = shuffleArray(this.config.colors);
|
|
93310
93317
|
this.userColorMap = /* @__PURE__ */ new Map();
|
|
93311
93318
|
this.colorIndex = 0;
|
|
93312
|
-
this.version = "0.13.0-next.
|
|
93319
|
+
this.version = "0.13.0-next.6";
|
|
93313
93320
|
console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
|
|
93314
93321
|
this.superdocId = config.superdocId || v4();
|
|
93315
93322
|
this.colors = this.config.colors;
|