@harbour-enterprises/superdoc 0.14.0-next.24 → 0.14.0-next.26
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-9IbuG86f.es.js → super-editor.es-CZ_TuVkB.es.js} +8 -8
- package/dist/chunks/{super-editor.es-EAIE0Um0.cjs → super-editor.es-DH-8-PRD.cjs} +8 -8
- package/dist/style.css +10 -1
- package/dist/super-editor/ai-writer.es.js +2 -2
- package/dist/super-editor/chunks/{converter-qnzxwj1_.js → converter-BziP-vS2.js} +2 -2
- package/dist/super-editor/chunks/{docx-zipper-C6pjSBso.js → docx-zipper-Bpmr2xac.js} +1 -1
- package/dist/super-editor/chunks/{editor-CqJiRnKt.js → editor-D-07kSzr.js} +8 -8
- package/dist/super-editor/chunks/{toolbar-Bk6R_DwX.js → toolbar-DvySjxKD.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/extensions/collaboration/collaboration.d.ts.map +1 -1
- package/dist/super-editor/file-zipper.es.js +1 -1
- package/dist/super-editor/style.css +10 -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 +9 -9
- package/dist/superdoc.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -24300,7 +24300,7 @@ const _SuperConverter = class _SuperConverter2 {
|
|
|
24300
24300
|
return;
|
|
24301
24301
|
}
|
|
24302
24302
|
}
|
|
24303
|
-
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.0-next.
|
|
24303
|
+
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.0-next.26") {
|
|
24304
24304
|
const customLocation = "docProps/custom.xml";
|
|
24305
24305
|
if (!docx[customLocation]) {
|
|
24306
24306
|
docx[customLocation] = generateCustomXml();
|
|
@@ -24776,7 +24776,7 @@ function storeSuperdocVersion(docx) {
|
|
|
24776
24776
|
function generateCustomXml() {
|
|
24777
24777
|
return DEFAULT_CUSTOM_XML;
|
|
24778
24778
|
}
|
|
24779
|
-
function generateSuperdocVersion(pid = 2, version2 = "0.14.0-next.
|
|
24779
|
+
function generateSuperdocVersion(pid = 2, version2 = "0.14.0-next.26") {
|
|
24780
24780
|
return {
|
|
24781
24781
|
type: "element",
|
|
24782
24782
|
name: "property",
|
|
@@ -41283,6 +41283,10 @@ const initializeMetaMap = (ydoc, editor) => {
|
|
|
41283
41283
|
const metaMap = ydoc.getMap("meta");
|
|
41284
41284
|
metaMap.set("docx", editor.options.content);
|
|
41285
41285
|
metaMap.set("fonts", editor.options.fonts);
|
|
41286
|
+
const mediaMap = ydoc.getMap("media");
|
|
41287
|
+
Object.entries(editor.options.mediaFiles).forEach(([key, value]) => {
|
|
41288
|
+
mediaMap.set(key, value);
|
|
41289
|
+
});
|
|
41286
41290
|
};
|
|
41287
41291
|
const createUndoPlugin = () => {
|
|
41288
41292
|
const yUndoPluginInstance = yUndoPlugin();
|
|
@@ -42269,7 +42273,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
|
|
|
42269
42273
|
* @returns {Object | void} Migration results
|
|
42270
42274
|
*/
|
|
42271
42275
|
processCollaborationMigrations() {
|
|
42272
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.14.0-next.
|
|
42276
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.14.0-next.26");
|
|
42273
42277
|
if (!this.options.ydoc) return;
|
|
42274
42278
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
42275
42279
|
let docVersion = metaMap.get("version");
|
|
@@ -44556,7 +44560,7 @@ init_fn2 = function() {
|
|
|
44556
44560
|
this.contentDOM.className = "sd-editor-list-item-content-dom";
|
|
44557
44561
|
let contentLeft = visibleIndent.left;
|
|
44558
44562
|
if (visibleIndent.left === absoluteLeft) {
|
|
44559
|
-
contentLeft = 48;
|
|
44563
|
+
contentLeft = absoluteLeft + 48;
|
|
44560
44564
|
}
|
|
44561
44565
|
this.contentDOM.style.marginLeft = `${contentLeft}px`;
|
|
44562
44566
|
this.numberingDOM.style.left = `${absoluteLeft}px`;
|
|
@@ -55922,10 +55926,6 @@ function generateInternalPageBreaks(doc2, view, editor, sectionData) {
|
|
|
55922
55926
|
const table = findParentNodeClosestToPos($currentPos, (node22) => node22.type.name === "table");
|
|
55923
55927
|
const tableRow = findParentNodeClosestToPos($currentPos, (node22) => node22.type.name === "tableRow");
|
|
55924
55928
|
let isInTable2 = table || tableRow ? true : false;
|
|
55925
|
-
if (tableRow) {
|
|
55926
|
-
currentNode = tableRow.node;
|
|
55927
|
-
currentPos = tableRow.pos;
|
|
55928
|
-
}
|
|
55929
55929
|
const {
|
|
55930
55930
|
top: actualBreakTop,
|
|
55931
55931
|
bottom: actualBreakBottom,
|
|
@@ -24317,7 +24317,7 @@ const _SuperConverter = class _SuperConverter2 {
|
|
|
24317
24317
|
return;
|
|
24318
24318
|
}
|
|
24319
24319
|
}
|
|
24320
|
-
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.0-next.
|
|
24320
|
+
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.0-next.26") {
|
|
24321
24321
|
const customLocation = "docProps/custom.xml";
|
|
24322
24322
|
if (!docx[customLocation]) {
|
|
24323
24323
|
docx[customLocation] = generateCustomXml();
|
|
@@ -24793,7 +24793,7 @@ function storeSuperdocVersion(docx) {
|
|
|
24793
24793
|
function generateCustomXml() {
|
|
24794
24794
|
return DEFAULT_CUSTOM_XML;
|
|
24795
24795
|
}
|
|
24796
|
-
function generateSuperdocVersion(pid = 2, version2 = "0.14.0-next.
|
|
24796
|
+
function generateSuperdocVersion(pid = 2, version2 = "0.14.0-next.26") {
|
|
24797
24797
|
return {
|
|
24798
24798
|
type: "element",
|
|
24799
24799
|
name: "property",
|
|
@@ -41300,6 +41300,10 @@ const initializeMetaMap = (ydoc, editor) => {
|
|
|
41300
41300
|
const metaMap = ydoc.getMap("meta");
|
|
41301
41301
|
metaMap.set("docx", editor.options.content);
|
|
41302
41302
|
metaMap.set("fonts", editor.options.fonts);
|
|
41303
|
+
const mediaMap = ydoc.getMap("media");
|
|
41304
|
+
Object.entries(editor.options.mediaFiles).forEach(([key, value]) => {
|
|
41305
|
+
mediaMap.set(key, value);
|
|
41306
|
+
});
|
|
41303
41307
|
};
|
|
41304
41308
|
const createUndoPlugin = () => {
|
|
41305
41309
|
const yUndoPluginInstance = yUndoPlugin();
|
|
@@ -42286,7 +42290,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
|
|
|
42286
42290
|
* @returns {Object | void} Migration results
|
|
42287
42291
|
*/
|
|
42288
42292
|
processCollaborationMigrations() {
|
|
42289
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.14.0-next.
|
|
42293
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.14.0-next.26");
|
|
42290
42294
|
if (!this.options.ydoc) return;
|
|
42291
42295
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
42292
42296
|
let docVersion = metaMap.get("version");
|
|
@@ -44573,7 +44577,7 @@ init_fn2 = function() {
|
|
|
44573
44577
|
this.contentDOM.className = "sd-editor-list-item-content-dom";
|
|
44574
44578
|
let contentLeft = visibleIndent.left;
|
|
44575
44579
|
if (visibleIndent.left === absoluteLeft) {
|
|
44576
|
-
contentLeft = 48;
|
|
44580
|
+
contentLeft = absoluteLeft + 48;
|
|
44577
44581
|
}
|
|
44578
44582
|
this.contentDOM.style.marginLeft = `${contentLeft}px`;
|
|
44579
44583
|
this.numberingDOM.style.left = `${absoluteLeft}px`;
|
|
@@ -55939,10 +55943,6 @@ function generateInternalPageBreaks(doc2, view, editor, sectionData) {
|
|
|
55939
55943
|
const table = findParentNodeClosestToPos($currentPos, (node22) => node22.type.name === "table");
|
|
55940
55944
|
const tableRow = findParentNodeClosestToPos($currentPos, (node22) => node22.type.name === "tableRow");
|
|
55941
55945
|
let isInTable2 = table || tableRow ? true : false;
|
|
55942
|
-
if (tableRow) {
|
|
55943
|
-
currentNode = tableRow.node;
|
|
55944
|
-
currentPos = tableRow.pos;
|
|
55945
|
-
}
|
|
55946
55946
|
const {
|
|
55947
55947
|
top: actualBreakTop,
|
|
55948
55948
|
bottom: actualBreakBottom,
|
package/dist/style.css
CHANGED
|
@@ -1026,12 +1026,21 @@ on the right if it is inside shape textbox.
|
|
|
1026
1026
|
}
|
|
1027
1027
|
.sd-editor-list-item-node-view {
|
|
1028
1028
|
position: relative;
|
|
1029
|
+
width: 100%;
|
|
1029
1030
|
}
|
|
1030
1031
|
.sd-editor-list-item-numbering {
|
|
1031
1032
|
position: absolute;
|
|
1033
|
+
top: 0;
|
|
1034
|
+
white-space: nowrap;
|
|
1035
|
+
user-select: none;
|
|
1036
|
+
pointer-events: auto;
|
|
1037
|
+
text-align: right;
|
|
1038
|
+
z-index: 1;
|
|
1032
1039
|
}
|
|
1033
1040
|
.sd-editor-list-item-content-dom {
|
|
1034
|
-
|
|
1041
|
+
position: relative;
|
|
1042
|
+
min-height: inherit;
|
|
1043
|
+
word-wrap: break-word;
|
|
1035
1044
|
}
|
|
1036
1045
|
/* Resize handles container */
|
|
1037
1046
|
.sd-editor-resize-container {
|
|
@@ -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-BziP-vS2.js";
|
|
3
|
+
import { _ as _export_sfc } from "./chunks/editor-D-07kSzr.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 = {}) {
|
|
@@ -24319,7 +24319,7 @@ const _SuperConverter = class _SuperConverter {
|
|
|
24319
24319
|
return;
|
|
24320
24320
|
}
|
|
24321
24321
|
}
|
|
24322
|
-
static updateDocumentVersion(docx = this.convertedXml, version = "0.14.0-next.
|
|
24322
|
+
static updateDocumentVersion(docx = this.convertedXml, version = "0.14.0-next.26") {
|
|
24323
24323
|
const customLocation = "docProps/custom.xml";
|
|
24324
24324
|
if (!docx[customLocation]) {
|
|
24325
24325
|
docx[customLocation] = generateCustomXml();
|
|
@@ -24798,7 +24798,7 @@ function storeSuperdocVersion(docx) {
|
|
|
24798
24798
|
function generateCustomXml() {
|
|
24799
24799
|
return DEFAULT_CUSTOM_XML;
|
|
24800
24800
|
}
|
|
24801
|
-
function generateSuperdocVersion(pid = 2, version = "0.14.0-next.
|
|
24801
|
+
function generateSuperdocVersion(pid = 2, version = "0.14.0-next.26") {
|
|
24802
24802
|
return {
|
|
24803
24803
|
type: "element",
|
|
24804
24804
|
name: "property",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { C as process$1, aa as commonjsGlobal, E as Buffer, ab as getDefaultExportFromCjs, ac as getContentTypesFromXml, ad as xmljs } from "./converter-
|
|
1
|
+
import { C as process$1, aa as commonjsGlobal, E as Buffer, ab as getDefaultExportFromCjs, ac as getContentTypesFromXml, ad as xmljs } from "./converter-BziP-vS2.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, dispatchTransaction_fn, handleNodeSelection_fn, prepareDocumentForImport_fn, prepareDocumentForExport_fn, endCollaboration_fn, _ListItemNodeView_instances, init_fn2, _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, e as Selection, r as replaceStep$1, F as Fragment, R as ReplaceAroundStep$1, f as Slice, o as objectIncludes, g as deleteProps, D as DOMParser$1, h as ReplaceStep, k as NodeRange, m as findWrapping, n as generateDocxRandomId, p as minMax, q as chainableEditorState, s as generateRandom32BitHex, t as getStyleTagFromStyleId, u as getAbstractDefinition, v as getDefinitionForLevel, w as isMacOS, x as isIOS, y as DOMSerializer, z as Mark$1, B as dropPoint, C as process$1, E as Buffer2, G as inputRulesPlugin, H as TrackDeleteMarkName, I as TrackInsertMarkName, J as v4, K as TrackFormatMarkName, L as comments_module_events, O as AddMarkStep, Q as RemoveMarkStep, U as twipsToLines, V as pixelsToTwips, W as CommandService, X as SuperConverter, Y as EditorState, Z as hasSomeParentWithClass, _ as parseSizeUnit, $ as getLineHeightValueString, a0 as InputRule, a1 as toKebabCase, a2 as kebabCase, a3 as docxNumberigHelpers, a4 as parseIndentElement, a5 as combineIndents, a6 as getColStyleDeclaration, a7 as SelectionRange, a8 as Transform, a9 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, e as Selection, r as replaceStep$1, F as Fragment, R as ReplaceAroundStep$1, f as Slice, o as objectIncludes, g as deleteProps, D as DOMParser$1, h as ReplaceStep, k as NodeRange, m as findWrapping, n as generateDocxRandomId, p as minMax, q as chainableEditorState, s as generateRandom32BitHex, t as getStyleTagFromStyleId, u as getAbstractDefinition, v as getDefinitionForLevel, w as isMacOS, x as isIOS, y as DOMSerializer, z as Mark$1, B as dropPoint, C as process$1, E as Buffer2, G as inputRulesPlugin, H as TrackDeleteMarkName, I as TrackInsertMarkName, J as v4, K as TrackFormatMarkName, L as comments_module_events, O as AddMarkStep, Q as RemoveMarkStep, U as twipsToLines, V as pixelsToTwips, W as CommandService, X as SuperConverter, Y as EditorState, Z as hasSomeParentWithClass, _ as parseSizeUnit, $ as getLineHeightValueString, a0 as InputRule, a1 as toKebabCase, a2 as kebabCase, a3 as docxNumberigHelpers, a4 as parseIndentElement, a5 as combineIndents, a6 as getColStyleDeclaration, a7 as SelectionRange, a8 as Transform, a9 as createColGroup } from "./converter-BziP-vS2.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-Bpmr2xac.js";
|
|
18
18
|
function getMarksFromSelection(state) {
|
|
19
19
|
const { from: from2, to, empty: empty2 } = state.selection;
|
|
20
20
|
const marks = [];
|
|
@@ -13997,6 +13997,10 @@ const initializeMetaMap = (ydoc, editor) => {
|
|
|
13997
13997
|
const metaMap = ydoc.getMap("meta");
|
|
13998
13998
|
metaMap.set("docx", editor.options.content);
|
|
13999
13999
|
metaMap.set("fonts", editor.options.fonts);
|
|
14000
|
+
const mediaMap = ydoc.getMap("media");
|
|
14001
|
+
Object.entries(editor.options.mediaFiles).forEach(([key, value]) => {
|
|
14002
|
+
mediaMap.set(key, value);
|
|
14003
|
+
});
|
|
14000
14004
|
};
|
|
14001
14005
|
const createUndoPlugin = () => {
|
|
14002
14006
|
const yUndoPluginInstance = yUndoPlugin();
|
|
@@ -15011,7 +15015,7 @@ const _Editor = class _Editor extends EventEmitter {
|
|
|
15011
15015
|
* @returns {Object | void} Migration results
|
|
15012
15016
|
*/
|
|
15013
15017
|
processCollaborationMigrations() {
|
|
15014
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.14.0-next.
|
|
15018
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.14.0-next.26");
|
|
15015
15019
|
if (!this.options.ydoc) return;
|
|
15016
15020
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
15017
15021
|
let docVersion = metaMap.get("version");
|
|
@@ -17435,7 +17439,7 @@ init_fn2 = function() {
|
|
|
17435
17439
|
this.contentDOM.className = "sd-editor-list-item-content-dom";
|
|
17436
17440
|
let contentLeft = visibleIndent.left;
|
|
17437
17441
|
if (visibleIndent.left === absoluteLeft) {
|
|
17438
|
-
contentLeft = 48;
|
|
17442
|
+
contentLeft = absoluteLeft + 48;
|
|
17439
17443
|
}
|
|
17440
17444
|
this.contentDOM.style.marginLeft = `${contentLeft}px`;
|
|
17441
17445
|
this.numberingDOM.style.left = `${absoluteLeft}px`;
|
|
@@ -28801,10 +28805,6 @@ function generateInternalPageBreaks(doc2, view, editor, sectionData) {
|
|
|
28801
28805
|
const table = findParentNodeClosestToPos($currentPos, (node2) => node2.type.name === "table");
|
|
28802
28806
|
const tableRow = findParentNodeClosestToPos($currentPos, (node2) => node2.type.name === "tableRow");
|
|
28803
28807
|
let isInTable2 = table || tableRow ? true : false;
|
|
28804
|
-
if (tableRow) {
|
|
28805
|
-
currentNode = tableRow.node;
|
|
28806
|
-
currentPos = tableRow.pos;
|
|
28807
|
-
}
|
|
28808
28808
|
const {
|
|
28809
28809
|
top: actualBreakTop,
|
|
28810
28810
|
bottom: actualBreakBottom,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { computed, createElementBlock, openBlock, createElementVNode, createCommentVNode, normalizeClass, normalizeStyle, ref, withKeys, unref, withModifiers, createBlock, toDisplayString, withDirectives, vModelText, nextTick, getCurrentInstance, createVNode, readonly, watch, onMounted, onBeforeUnmount, reactive, onBeforeMount, inject, onActivated, onDeactivated, createTextVNode, Fragment, Comment, defineComponent, provide, h, Teleport, toRef, renderSlot, isVNode, shallowRef, watchEffect, mergeProps, Transition, vShow, cloneVNode, Text, renderList, withCtx } from "vue";
|
|
2
|
-
import { C as process$1 } from "./converter-
|
|
3
|
-
import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-
|
|
2
|
+
import { C as process$1 } from "./converter-BziP-vS2.js";
|
|
3
|
+
import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-D-07kSzr.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-D-07kSzr.js";
|
|
2
|
+
import "./chunks/converter-BziP-vS2.js";
|
|
3
|
+
import "./chunks/docx-zipper-Bpmr2xac.js";
|
|
4
4
|
export {
|
|
5
5
|
E as Editor
|
|
6
6
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"collaboration.d.ts","sourceRoot":"","sources":["../../../src/extensions/collaboration/collaboration.js"],"names":[],"mappings":"AAMA,oDAAqE;AAErE,gCA+EG;AAEI,gEAQN;AAEM,
|
|
1
|
+
{"version":3,"file":"collaboration.d.ts","sourceRoot":"","sources":["../../../src/extensions/collaboration/collaboration.js"],"names":[],"mappings":"AAMA,oDAAqE;AAErE,gCA+EG;AAEI,gEAQN;AAEM,gEASN;AAkFM,oFAIN;0BAjMyB,mBAAmB"}
|
|
@@ -946,12 +946,21 @@ on the right if it is inside shape textbox.
|
|
|
946
946
|
}
|
|
947
947
|
.sd-editor-list-item-node-view {
|
|
948
948
|
position: relative;
|
|
949
|
+
width: 100%;
|
|
949
950
|
}
|
|
950
951
|
.sd-editor-list-item-numbering {
|
|
951
952
|
position: absolute;
|
|
953
|
+
top: 0;
|
|
954
|
+
white-space: nowrap;
|
|
955
|
+
user-select: none;
|
|
956
|
+
pointer-events: auto;
|
|
957
|
+
text-align: right;
|
|
958
|
+
z-index: 1;
|
|
952
959
|
}
|
|
953
960
|
.sd-editor-list-item-content-dom {
|
|
954
|
-
|
|
961
|
+
position: relative;
|
|
962
|
+
min-height: inherit;
|
|
963
|
+
word-wrap: break-word;
|
|
955
964
|
}
|
|
956
965
|
/* Resize handles container */
|
|
957
966
|
.sd-editor-resize-container {
|
|
@@ -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 { ab as getDefaultExportFromCjs, J as v4, ae as vClickOutside, af as readFromClipboard, T as TextSelection, ag as serializeSelectionToClipboard, ah as writeToClipboard, a as Plugin } from "./chunks/converter-
|
|
13
|
-
import { X } 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, S as SlashMenuPluginKey, 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 { ab as getDefaultExportFromCjs, J as v4, ae as vClickOutside, af as readFromClipboard, T as TextSelection, ag as serializeSelectionToClipboard, ah as writeToClipboard, a as Plugin } from "./chunks/converter-BziP-vS2.js";
|
|
13
|
+
import { X } from "./chunks/converter-BziP-vS2.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, S as SlashMenuPluginKey, 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-D-07kSzr.js";
|
|
15
|
+
import { o, C, T, m, q, p, l, n } from "./chunks/editor-D-07kSzr.js";
|
|
16
16
|
import { ref, onMounted, createElementBlock, openBlock, normalizeClass, unref, Fragment, renderList, createElementVNode, withModifiers, toDisplayString, createCommentVNode, normalizeStyle, computed, createTextVNode, createVNode, h, withDirectives, withKeys, vModelText, createApp, markRaw, watch, 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, l as linkIconSvg, a as tableIconSvg, b as scissorsIconSvg, c as copyIconSvg, p as pasteIconSvg, N as NSkeleton } from "./chunks/toolbar-
|
|
17
|
+
import { t as toolbarIcons, s as sanitizeNumber, T as Toolbar, m as magicWandIcon, l as linkIconSvg, a as tableIconSvg, b as scissorsIconSvg, c as copyIconSvg, p as pasteIconSvg, N as NSkeleton } from "./chunks/toolbar-DvySjxKD.js";
|
|
18
18
|
import AIWriter from "./ai-writer.es.js";
|
|
19
|
-
import { D } from "./chunks/docx-zipper-
|
|
19
|
+
import { D } from "./chunks/docx-zipper-Bpmr2xac.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-DH-8-PRD.cjs");
|
|
4
4
|
require("./chunks/vue-tQYF719J.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, c, S, d, e, f, T, g, h, i, j, k, l, m, n, o, p } from "./chunks/super-editor.es-
|
|
1
|
+
import { A, a, _, C, D, E, b, c, S, d, e, f, T, g, h, i, j, k, l, m, n, o, p } from "./chunks/super-editor.es-CZ_TuVkB.es.js";
|
|
2
2
|
import "./chunks/vue-lU0o_RlU.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-DH-8-PRD.cjs");
|
|
4
4
|
const vue = require("./chunks/vue-tQYF719J.cjs");
|
|
5
5
|
const jszip = require("./chunks/jszip-D5XoMX4C.cjs");
|
|
6
6
|
const blankDocx = require("./chunks/blank-docx-CPqX9RF5.cjs");
|
|
@@ -47807,7 +47807,7 @@ class SuperDoc extends eventemitter3.EventEmitter {
|
|
|
47807
47807
|
this.config.colors = shuffleArray(this.config.colors);
|
|
47808
47808
|
this.userColorMap = /* @__PURE__ */ new Map();
|
|
47809
47809
|
this.colorIndex = 0;
|
|
47810
|
-
this.version = "0.14.0-next.
|
|
47810
|
+
this.version = "0.14.0-next.26";
|
|
47811
47811
|
console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
|
|
47812
47812
|
this.superdocId = config.superdocId || uuid.v4();
|
|
47813
47813
|
this.colors = this.config.colors;
|
package/dist/superdoc.es.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { p as index$1, C as CommentsPluginKey, g as TrackChangesBasePluginKey, E as Editor, m as getRichTextExtensions, e as SuperInput, d as SuperEditor, A as AIWriter, f as SuperToolbar, h as createZip } from "./chunks/super-editor.es-
|
|
2
|
-
import { a, S, i, o } from "./chunks/super-editor.es-
|
|
1
|
+
import { p as index$1, C as CommentsPluginKey, g as TrackChangesBasePluginKey, E as Editor, m as getRichTextExtensions, e as SuperInput, d as SuperEditor, A as AIWriter, f as SuperToolbar, h as createZip } from "./chunks/super-editor.es-CZ_TuVkB.es.js";
|
|
2
|
+
import { a, S, i, o } from "./chunks/super-editor.es-CZ_TuVkB.es.js";
|
|
3
3
|
import { a0 as effectScope, r as ref, $ as markRaw, p as process$1, a1 as toRaw, a as computed, a2 as isRef, a3 as isReactive, D as toRef, i as inject, q as getCurrentInstance, l as watch, y as unref, a4 as hasInjectionContext, N as reactive, u as nextTick, a5 as getCurrentScope, a6 as onScopeDispose, a7 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, a8 as resolveDirective, d as renderList, c as createApp, X as onUnmounted, Y as resolveDynamicComponent } from "./chunks/vue-lU0o_RlU.es.js";
|
|
4
4
|
import { B as Buffer$2 } from "./chunks/jszip-CYDYUNnI.es.js";
|
|
5
5
|
import { B as BlankDOCX } from "./chunks/blank-docx-iwdyG9RH.es.js";
|
|
@@ -47790,7 +47790,7 @@ class SuperDoc extends EventEmitter {
|
|
|
47790
47790
|
this.config.colors = shuffleArray(this.config.colors);
|
|
47791
47791
|
this.userColorMap = /* @__PURE__ */ new Map();
|
|
47792
47792
|
this.colorIndex = 0;
|
|
47793
|
-
this.version = "0.14.0-next.
|
|
47793
|
+
this.version = "0.14.0-next.26";
|
|
47794
47794
|
console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
|
|
47795
47795
|
this.superdocId = config.superdocId || v4();
|
|
47796
47796
|
this.colors = this.config.colors;
|
package/dist/superdoc.umd.js
CHANGED
|
@@ -31695,7 +31695,7 @@
|
|
|
31695
31695
|
return;
|
|
31696
31696
|
}
|
|
31697
31697
|
}
|
|
31698
|
-
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.0-next.
|
|
31698
|
+
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.0-next.26") {
|
|
31699
31699
|
const customLocation = "docProps/custom.xml";
|
|
31700
31700
|
if (!docx[customLocation]) {
|
|
31701
31701
|
docx[customLocation] = generateCustomXml();
|
|
@@ -32171,7 +32171,7 @@
|
|
|
32171
32171
|
function generateCustomXml() {
|
|
32172
32172
|
return DEFAULT_CUSTOM_XML;
|
|
32173
32173
|
}
|
|
32174
|
-
function generateSuperdocVersion(pid = 2, version2 = "0.14.0-next.
|
|
32174
|
+
function generateSuperdocVersion(pid = 2, version2 = "0.14.0-next.26") {
|
|
32175
32175
|
return {
|
|
32176
32176
|
type: "element",
|
|
32177
32177
|
name: "property",
|
|
@@ -48678,6 +48678,10 @@
|
|
|
48678
48678
|
const metaMap = ydoc.getMap("meta");
|
|
48679
48679
|
metaMap.set("docx", editor.options.content);
|
|
48680
48680
|
metaMap.set("fonts", editor.options.fonts);
|
|
48681
|
+
const mediaMap = ydoc.getMap("media");
|
|
48682
|
+
Object.entries(editor.options.mediaFiles).forEach(([key, value]) => {
|
|
48683
|
+
mediaMap.set(key, value);
|
|
48684
|
+
});
|
|
48681
48685
|
};
|
|
48682
48686
|
const createUndoPlugin = () => {
|
|
48683
48687
|
const yUndoPluginInstance = yUndoPlugin();
|
|
@@ -49664,7 +49668,7 @@
|
|
|
49664
49668
|
* @returns {Object | void} Migration results
|
|
49665
49669
|
*/
|
|
49666
49670
|
processCollaborationMigrations() {
|
|
49667
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.14.0-next.
|
|
49671
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.14.0-next.26");
|
|
49668
49672
|
if (!this.options.ydoc) return;
|
|
49669
49673
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
49670
49674
|
let docVersion = metaMap.get("version");
|
|
@@ -51951,7 +51955,7 @@
|
|
|
51951
51955
|
this.contentDOM.className = "sd-editor-list-item-content-dom";
|
|
51952
51956
|
let contentLeft = visibleIndent.left;
|
|
51953
51957
|
if (visibleIndent.left === absoluteLeft) {
|
|
51954
|
-
contentLeft = 48;
|
|
51958
|
+
contentLeft = absoluteLeft + 48;
|
|
51955
51959
|
}
|
|
51956
51960
|
this.contentDOM.style.marginLeft = `${contentLeft}px`;
|
|
51957
51961
|
this.numberingDOM.style.left = `${absoluteLeft}px`;
|
|
@@ -63317,10 +63321,6 @@
|
|
|
63317
63321
|
const table = findParentNodeClosestToPos($currentPos, (node22) => node22.type.name === "table");
|
|
63318
63322
|
const tableRow = findParentNodeClosestToPos($currentPos, (node22) => node22.type.name === "tableRow");
|
|
63319
63323
|
let isInTable2 = table || tableRow ? true : false;
|
|
63320
|
-
if (tableRow) {
|
|
63321
|
-
currentNode = tableRow.node;
|
|
63322
|
-
currentPos = tableRow.pos;
|
|
63323
|
-
}
|
|
63324
63324
|
const {
|
|
63325
63325
|
top: actualBreakTop,
|
|
63326
63326
|
bottom: actualBreakBottom,
|
|
@@ -95396,7 +95396,7 @@ ${style2}
|
|
|
95396
95396
|
this.config.colors = shuffleArray(this.config.colors);
|
|
95397
95397
|
this.userColorMap = /* @__PURE__ */ new Map();
|
|
95398
95398
|
this.colorIndex = 0;
|
|
95399
|
-
this.version = "0.14.0-next.
|
|
95399
|
+
this.version = "0.14.0-next.26";
|
|
95400
95400
|
console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
|
|
95401
95401
|
this.superdocId = config.superdocId || v4();
|
|
95402
95402
|
this.colors = this.config.colors;
|