@harbour-enterprises/superdoc 0.14.12-next.2 → 0.14.12-next.3
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-CB7_7bHe.es.js → super-editor.es-BIz0avfN.es.js} +38 -11
- package/dist/chunks/{super-editor.es-D6L6hqA1.cjs → super-editor.es-SXCx1shq.cjs} +38 -11
- package/dist/super-editor/ai-writer.es.js +2 -2
- package/dist/super-editor/chunks/{converter-BZ8Bq3jo.js → converter-BRA4Za3i.js} +2 -2
- package/dist/super-editor/chunks/{docx-zipper-CTbkVMO7.js → docx-zipper-BNWfZG4C.js} +1 -1
- package/dist/super-editor/chunks/{editor-DFqUiH9S.js → editor-BjegQgxe.js} +38 -11
- package/dist/super-editor/chunks/{toolbar-DkPkZDp-.js → toolbar-Bb4JZVYP.js} +2 -2
- package/dist/super-editor/converter.es.js +1 -1
- package/dist/super-editor/core/helpers/findWordBounds.d.ts.map +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 +39 -12
- package/dist/superdoc.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -28331,7 +28331,7 @@ const _SuperConverter = class _SuperConverter2 {
|
|
|
28331
28331
|
return;
|
|
28332
28332
|
}
|
|
28333
28333
|
}
|
|
28334
|
-
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.12-next.
|
|
28334
|
+
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.12-next.3") {
|
|
28335
28335
|
const customLocation = "docProps/custom.xml";
|
|
28336
28336
|
if (!docx[customLocation]) {
|
|
28337
28337
|
docx[customLocation] = generateCustomXml();
|
|
@@ -28809,7 +28809,7 @@ function storeSuperdocVersion(docx) {
|
|
|
28809
28809
|
function generateCustomXml() {
|
|
28810
28810
|
return DEFAULT_CUSTOM_XML;
|
|
28811
28811
|
}
|
|
28812
|
-
function generateSuperdocVersion(pid = 2, version2 = "0.14.12-next.
|
|
28812
|
+
function generateSuperdocVersion(pid = 2, version2 = "0.14.12-next.3") {
|
|
28813
28813
|
return {
|
|
28814
28814
|
type: "element",
|
|
28815
28815
|
name: "property",
|
|
@@ -43708,14 +43708,41 @@ function useHighContrastMode() {
|
|
|
43708
43708
|
const findWordBounds = (doc2, pos) => {
|
|
43709
43709
|
const $pos = doc2.resolve(pos);
|
|
43710
43710
|
const parent = $pos.parent;
|
|
43711
|
-
const
|
|
43712
|
-
|
|
43713
|
-
|
|
43714
|
-
let
|
|
43715
|
-
|
|
43716
|
-
|
|
43717
|
-
|
|
43718
|
-
|
|
43711
|
+
const offsetInParent = $pos.parentOffset;
|
|
43712
|
+
let offset2 = 0;
|
|
43713
|
+
let targetNode = null;
|
|
43714
|
+
let nodeStart = 0;
|
|
43715
|
+
parent.forEach((child, childOffset) => {
|
|
43716
|
+
if (child.isText) {
|
|
43717
|
+
const start2 = offset2;
|
|
43718
|
+
const end2 = offset2 + child.nodeSize;
|
|
43719
|
+
if (start2 <= offsetInParent && offsetInParent <= end2) {
|
|
43720
|
+
targetNode = child;
|
|
43721
|
+
nodeStart = childOffset;
|
|
43722
|
+
}
|
|
43723
|
+
offset2 = end2;
|
|
43724
|
+
} else {
|
|
43725
|
+
offset2 += child.nodeSize;
|
|
43726
|
+
}
|
|
43727
|
+
});
|
|
43728
|
+
if (!targetNode) return;
|
|
43729
|
+
const text = targetNode.text;
|
|
43730
|
+
const cursorOffset = offsetInParent - nodeStart;
|
|
43731
|
+
const isWordChar = (ch) => /\w/.test(ch);
|
|
43732
|
+
const isPunctOrSpace = (ch) => /[.,;:!-?=()[\]{}"'\s]/.test(ch);
|
|
43733
|
+
let from2, to;
|
|
43734
|
+
if (isPunctOrSpace(text[cursorOffset])) {
|
|
43735
|
+
from2 = $pos.start() + nodeStart + cursorOffset;
|
|
43736
|
+
to = from2 + 1;
|
|
43737
|
+
} else {
|
|
43738
|
+
let start2 = cursorOffset;
|
|
43739
|
+
while (start2 > 0 && isWordChar(text[start2 - 1])) start2--;
|
|
43740
|
+
let end2 = cursorOffset;
|
|
43741
|
+
while (end2 < text.length && isWordChar(text[end2])) end2++;
|
|
43742
|
+
if (start2 === end2) return;
|
|
43743
|
+
from2 = $pos.start() + nodeStart + start2;
|
|
43744
|
+
to = $pos.start() + nodeStart + end2;
|
|
43745
|
+
}
|
|
43719
43746
|
return { from: from2, to };
|
|
43720
43747
|
};
|
|
43721
43748
|
const setWordSelection = (view, pos) => {
|
|
@@ -44880,7 +44907,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
|
|
|
44880
44907
|
* @returns {Object | void} Migration results
|
|
44881
44908
|
*/
|
|
44882
44909
|
processCollaborationMigrations() {
|
|
44883
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.14.12-next.
|
|
44910
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.14.12-next.3");
|
|
44884
44911
|
if (!this.options.ydoc) return;
|
|
44885
44912
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
44886
44913
|
let docVersion = metaMap.get("version");
|
|
@@ -28348,7 +28348,7 @@ const _SuperConverter = class _SuperConverter2 {
|
|
|
28348
28348
|
return;
|
|
28349
28349
|
}
|
|
28350
28350
|
}
|
|
28351
|
-
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.12-next.
|
|
28351
|
+
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.12-next.3") {
|
|
28352
28352
|
const customLocation = "docProps/custom.xml";
|
|
28353
28353
|
if (!docx[customLocation]) {
|
|
28354
28354
|
docx[customLocation] = generateCustomXml();
|
|
@@ -28826,7 +28826,7 @@ function storeSuperdocVersion(docx) {
|
|
|
28826
28826
|
function generateCustomXml() {
|
|
28827
28827
|
return DEFAULT_CUSTOM_XML;
|
|
28828
28828
|
}
|
|
28829
|
-
function generateSuperdocVersion(pid = 2, version2 = "0.14.12-next.
|
|
28829
|
+
function generateSuperdocVersion(pid = 2, version2 = "0.14.12-next.3") {
|
|
28830
28830
|
return {
|
|
28831
28831
|
type: "element",
|
|
28832
28832
|
name: "property",
|
|
@@ -43725,14 +43725,41 @@ function useHighContrastMode() {
|
|
|
43725
43725
|
const findWordBounds = (doc2, pos) => {
|
|
43726
43726
|
const $pos = doc2.resolve(pos);
|
|
43727
43727
|
const parent = $pos.parent;
|
|
43728
|
-
const
|
|
43729
|
-
|
|
43730
|
-
|
|
43731
|
-
let
|
|
43732
|
-
|
|
43733
|
-
|
|
43734
|
-
|
|
43735
|
-
|
|
43728
|
+
const offsetInParent = $pos.parentOffset;
|
|
43729
|
+
let offset2 = 0;
|
|
43730
|
+
let targetNode = null;
|
|
43731
|
+
let nodeStart = 0;
|
|
43732
|
+
parent.forEach((child, childOffset) => {
|
|
43733
|
+
if (child.isText) {
|
|
43734
|
+
const start2 = offset2;
|
|
43735
|
+
const end2 = offset2 + child.nodeSize;
|
|
43736
|
+
if (start2 <= offsetInParent && offsetInParent <= end2) {
|
|
43737
|
+
targetNode = child;
|
|
43738
|
+
nodeStart = childOffset;
|
|
43739
|
+
}
|
|
43740
|
+
offset2 = end2;
|
|
43741
|
+
} else {
|
|
43742
|
+
offset2 += child.nodeSize;
|
|
43743
|
+
}
|
|
43744
|
+
});
|
|
43745
|
+
if (!targetNode) return;
|
|
43746
|
+
const text = targetNode.text;
|
|
43747
|
+
const cursorOffset = offsetInParent - nodeStart;
|
|
43748
|
+
const isWordChar = (ch) => /\w/.test(ch);
|
|
43749
|
+
const isPunctOrSpace = (ch) => /[.,;:!-?=()[\]{}"'\s]/.test(ch);
|
|
43750
|
+
let from2, to;
|
|
43751
|
+
if (isPunctOrSpace(text[cursorOffset])) {
|
|
43752
|
+
from2 = $pos.start() + nodeStart + cursorOffset;
|
|
43753
|
+
to = from2 + 1;
|
|
43754
|
+
} else {
|
|
43755
|
+
let start2 = cursorOffset;
|
|
43756
|
+
while (start2 > 0 && isWordChar(text[start2 - 1])) start2--;
|
|
43757
|
+
let end2 = cursorOffset;
|
|
43758
|
+
while (end2 < text.length && isWordChar(text[end2])) end2++;
|
|
43759
|
+
if (start2 === end2) return;
|
|
43760
|
+
from2 = $pos.start() + nodeStart + start2;
|
|
43761
|
+
to = $pos.start() + nodeStart + end2;
|
|
43762
|
+
}
|
|
43736
43763
|
return { from: from2, to };
|
|
43737
43764
|
};
|
|
43738
43765
|
const setWordSelection = (view, pos) => {
|
|
@@ -44897,7 +44924,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
|
|
|
44897
44924
|
* @returns {Object | void} Migration results
|
|
44898
44925
|
*/
|
|
44899
44926
|
processCollaborationMigrations() {
|
|
44900
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.14.12-next.
|
|
44927
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.14.12-next.3");
|
|
44901
44928
|
if (!this.options.ydoc) return;
|
|
44902
44929
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
44903
44930
|
let docVersion = metaMap.get("version");
|
|
@@ -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-BRA4Za3i.js";
|
|
3
|
+
import { _ as _export_sfc } from "./chunks/editor-BjegQgxe.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 = {}) {
|
|
@@ -28329,7 +28329,7 @@ const _SuperConverter = class _SuperConverter {
|
|
|
28329
28329
|
return;
|
|
28330
28330
|
}
|
|
28331
28331
|
}
|
|
28332
|
-
static updateDocumentVersion(docx = this.convertedXml, version = "0.14.12-next.
|
|
28332
|
+
static updateDocumentVersion(docx = this.convertedXml, version = "0.14.12-next.3") {
|
|
28333
28333
|
const customLocation = "docProps/custom.xml";
|
|
28334
28334
|
if (!docx[customLocation]) {
|
|
28335
28335
|
docx[customLocation] = generateCustomXml();
|
|
@@ -28810,7 +28810,7 @@ function storeSuperdocVersion(docx) {
|
|
|
28810
28810
|
function generateCustomXml() {
|
|
28811
28811
|
return DEFAULT_CUSTOM_XML;
|
|
28812
28812
|
}
|
|
28813
|
-
function generateSuperdocVersion(pid = 2, version = "0.14.12-next.
|
|
28813
|
+
function generateSuperdocVersion(pid = 2, version = "0.14.12-next.3") {
|
|
28814
28814
|
return {
|
|
28815
28815
|
type: "element",
|
|
28816
28816
|
name: "property",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { H as process$1, ar as commonjsGlobal, I as Buffer, as as getDefaultExportFromCjs, at as getContentTypesFromXml, au as xmljs } from "./converter-
|
|
1
|
+
import { H as process$1, ar as commonjsGlobal, I as Buffer, as as getDefaultExportFromCjs, at as getContentTypesFromXml, au as xmljs } from "./converter-BRA4Za3i.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, g as getExtensionConfigField, b as getMarkType, d as getMarksFromSelection, e as getNodeType, f as getSchemaTypeNameByName, S as Schema$1, h as cleanSchemaItem, T as TextSelection, i as canSplit, l as liftTarget, A as AllSelection, j as canJoin, k as joinPoint, N as NodeSelection, m as Selection, r as replaceStep$1, F as Fragment, R as ReplaceAroundStep$1, n as Slice, o as defaultBlockAt$1, p as isTextSelection, q as getMarkRange, s as isMarkActive, t as isNodeActive, u as deleteProps, D as DOMParser$1, v as ReplaceStep, w as NodeRange, x as findWrapping, y as findParentNode, L as ListHelpers, z as isMacOS, B as isIOS, C as DOMSerializer, E as Mark$1, G as dropPoint, H as process$1, I as Buffer2, J as getSchemaTypeByName, K as inputRulesPlugin, O as TrackDeleteMarkName, Q as TrackInsertMarkName, U as v4, V as TrackFormatMarkName, W as comments_module_events, X as findMark, Y as objectIncludes, Z as AddMarkStep, _ as RemoveMarkStep, $ as twipsToLines, a0 as pixelsToTwips, a1 as findParentNodeClosestToPos, a2 as helpers, a3 as posToDOMRect, a4 as CommandService, a5 as SuperConverter, a6 as createDocument, a7 as EditorState, a8 as hasSomeParentWithClass, a9 as isActive, aa as unflattenListsInHtml, ab as parseSizeUnit, ac as minMax, ad as getLineHeightValueString, ae as InputRule, af as kebabCase, ag as generateOrderedListIndex, ah as getListItemStyleDefinitions, ai as docxNumberigHelpers, aj as parseIndentElement, ak as combineIndents, al as getColStyleDeclaration, am as SelectionRange, an as Transform, ao as isInTable$1, ap as createColGroup, aq as generateDocxRandomId } from "./converter-
|
|
15
|
+
import { P as PluginKey, a as Plugin, M as Mapping, c as callOrGet, g as getExtensionConfigField, b as getMarkType, d as getMarksFromSelection, e as getNodeType, f as getSchemaTypeNameByName, S as Schema$1, h as cleanSchemaItem, T as TextSelection, i as canSplit, l as liftTarget, A as AllSelection, j as canJoin, k as joinPoint, N as NodeSelection, m as Selection, r as replaceStep$1, F as Fragment, R as ReplaceAroundStep$1, n as Slice, o as defaultBlockAt$1, p as isTextSelection, q as getMarkRange, s as isMarkActive, t as isNodeActive, u as deleteProps, D as DOMParser$1, v as ReplaceStep, w as NodeRange, x as findWrapping, y as findParentNode, L as ListHelpers, z as isMacOS, B as isIOS, C as DOMSerializer, E as Mark$1, G as dropPoint, H as process$1, I as Buffer2, J as getSchemaTypeByName, K as inputRulesPlugin, O as TrackDeleteMarkName, Q as TrackInsertMarkName, U as v4, V as TrackFormatMarkName, W as comments_module_events, X as findMark, Y as objectIncludes, Z as AddMarkStep, _ as RemoveMarkStep, $ as twipsToLines, a0 as pixelsToTwips, a1 as findParentNodeClosestToPos, a2 as helpers, a3 as posToDOMRect, a4 as CommandService, a5 as SuperConverter, a6 as createDocument, a7 as EditorState, a8 as hasSomeParentWithClass, a9 as isActive, aa as unflattenListsInHtml, ab as parseSizeUnit, ac as minMax, ad as getLineHeightValueString, ae as InputRule, af as kebabCase, ag as generateOrderedListIndex, ah as getListItemStyleDefinitions, ai as docxNumberigHelpers, aj as parseIndentElement, ak as combineIndents, al as getColStyleDeclaration, am as SelectionRange, an as Transform, ao as isInTable$1, ap as createColGroup, aq as generateDocxRandomId } from "./converter-BRA4Za3i.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-BNWfZG4C.js";
|
|
18
18
|
var GOOD_LEAF_SIZE = 200;
|
|
19
19
|
var RopeSequence = function RopeSequence2() {
|
|
20
20
|
};
|
|
@@ -12373,14 +12373,41 @@ function useHighContrastMode() {
|
|
|
12373
12373
|
const findWordBounds = (doc2, pos) => {
|
|
12374
12374
|
const $pos = doc2.resolve(pos);
|
|
12375
12375
|
const parent = $pos.parent;
|
|
12376
|
-
const
|
|
12377
|
-
|
|
12378
|
-
|
|
12379
|
-
let
|
|
12380
|
-
|
|
12381
|
-
|
|
12382
|
-
|
|
12383
|
-
|
|
12376
|
+
const offsetInParent = $pos.parentOffset;
|
|
12377
|
+
let offset2 = 0;
|
|
12378
|
+
let targetNode = null;
|
|
12379
|
+
let nodeStart = 0;
|
|
12380
|
+
parent.forEach((child, childOffset) => {
|
|
12381
|
+
if (child.isText) {
|
|
12382
|
+
const start2 = offset2;
|
|
12383
|
+
const end2 = offset2 + child.nodeSize;
|
|
12384
|
+
if (start2 <= offsetInParent && offsetInParent <= end2) {
|
|
12385
|
+
targetNode = child;
|
|
12386
|
+
nodeStart = childOffset;
|
|
12387
|
+
}
|
|
12388
|
+
offset2 = end2;
|
|
12389
|
+
} else {
|
|
12390
|
+
offset2 += child.nodeSize;
|
|
12391
|
+
}
|
|
12392
|
+
});
|
|
12393
|
+
if (!targetNode) return;
|
|
12394
|
+
const text = targetNode.text;
|
|
12395
|
+
const cursorOffset = offsetInParent - nodeStart;
|
|
12396
|
+
const isWordChar = (ch) => /\w/.test(ch);
|
|
12397
|
+
const isPunctOrSpace = (ch) => /[.,;:!-?=()[\]{}"'\s]/.test(ch);
|
|
12398
|
+
let from2, to;
|
|
12399
|
+
if (isPunctOrSpace(text[cursorOffset])) {
|
|
12400
|
+
from2 = $pos.start() + nodeStart + cursorOffset;
|
|
12401
|
+
to = from2 + 1;
|
|
12402
|
+
} else {
|
|
12403
|
+
let start2 = cursorOffset;
|
|
12404
|
+
while (start2 > 0 && isWordChar(text[start2 - 1])) start2--;
|
|
12405
|
+
let end2 = cursorOffset;
|
|
12406
|
+
while (end2 < text.length && isWordChar(text[end2])) end2++;
|
|
12407
|
+
if (start2 === end2) return;
|
|
12408
|
+
from2 = $pos.start() + nodeStart + start2;
|
|
12409
|
+
to = $pos.start() + nodeStart + end2;
|
|
12410
|
+
}
|
|
12384
12411
|
return { from: from2, to };
|
|
12385
12412
|
};
|
|
12386
12413
|
const setWordSelection = (view, pos) => {
|
|
@@ -13573,7 +13600,7 @@ const _Editor = class _Editor extends EventEmitter {
|
|
|
13573
13600
|
* @returns {Object | void} Migration results
|
|
13574
13601
|
*/
|
|
13575
13602
|
processCollaborationMigrations() {
|
|
13576
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.14.12-next.
|
|
13603
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.14.12-next.3");
|
|
13577
13604
|
if (!this.options.ydoc) return;
|
|
13578
13605
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
13579
13606
|
let docVersion = metaMap.get("version");
|
|
@@ -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 { H as process$1 } from "./converter-
|
|
3
|
-
import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-
|
|
2
|
+
import { H as process$1 } from "./converter-BRA4Za3i.js";
|
|
3
|
+
import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-BjegQgxe.js";
|
|
4
4
|
const sanitizeNumber = (value, defaultNumber) => {
|
|
5
5
|
let sanitized = value.replace(/[^0-9.]/g, "");
|
|
6
6
|
sanitized = parseFloat(sanitized);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"findWordBounds.d.ts","sourceRoot":"","sources":["../../../src/core/helpers/findWordBounds.js"],"names":[],"mappings":"AAMO;;;
|
|
1
|
+
{"version":3,"file":"findWordBounds.d.ts","sourceRoot":"","sources":["../../../src/core/helpers/findWordBounds.js"],"names":[],"mappings":"AAMO;;;EAmDN"}
|
|
@@ -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-BjegQgxe.js";
|
|
2
|
+
import "./chunks/converter-BRA4Za3i.js";
|
|
3
|
+
import "./chunks/docx-zipper-BNWfZG4C.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 { as as getDefaultExportFromCjs, U as v4, T as TextSelection$1, q as getMarkRange, av as vClickOutside, y as findParentNode, aw as getActiveFormatting, ao as isInTable, ax as readFromClipboard, ay as handleClipboardPaste, a as Plugin } from "./chunks/converter-
|
|
13
|
-
import { a5, d, a2 } from "./chunks/converter-
|
|
14
|
-
import { _ as _export_sfc, u as useHighContrastMode, a as getQuickFormatList, b as generateLinkedStyleString, c as getFileOpener, s as startImageUpload, 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, T, i, l, j } from "./chunks/editor-
|
|
12
|
+
import { as as getDefaultExportFromCjs, U as v4, T as TextSelection$1, q as getMarkRange, av as vClickOutside, y as findParentNode, aw as getActiveFormatting, ao as isInTable, ax as readFromClipboard, ay as handleClipboardPaste, a as Plugin } from "./chunks/converter-BRA4Za3i.js";
|
|
13
|
+
import { a5, d, a2 } from "./chunks/converter-BRA4Za3i.js";
|
|
14
|
+
import { _ as _export_sfc, u as useHighContrastMode, a as getQuickFormatList, b as generateLinkedStyleString, c as getFileOpener, s as startImageUpload, 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-BjegQgxe.js";
|
|
15
|
+
import { k, C, T, i, l, j } from "./chunks/editor-BjegQgxe.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, 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-Bb4JZVYP.js";
|
|
18
18
|
import AIWriter from "./ai-writer.es.js";
|
|
19
|
-
import { D } from "./chunks/docx-zipper-
|
|
19
|
+
import { D } from "./chunks/docx-zipper-BNWfZG4C.js";
|
|
20
20
|
import { createZip } from "./file-zipper.es.js";
|
|
21
21
|
var eventemitter3 = { exports: {} };
|
|
22
22
|
var hasRequiredEventemitter3;
|
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-SXCx1shq.cjs");
|
|
4
4
|
require("./chunks/vue-CfKg12kH.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-BIz0avfN.es.js";
|
|
2
2
|
import "./chunks/vue-B_OPNNfX.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-SXCx1shq.cjs");
|
|
4
4
|
const vue = require("./chunks/vue-CfKg12kH.cjs");
|
|
5
5
|
const jszip = require("./chunks/jszip-DWfnW2xV.cjs");
|
|
6
6
|
const blankDocx = require("./chunks/blank-docx-CPqX9RF5.cjs");
|
|
@@ -47818,7 +47818,7 @@ class SuperDoc extends eventemitter3.EventEmitter {
|
|
|
47818
47818
|
this.config.colors = shuffleArray(this.config.colors);
|
|
47819
47819
|
this.userColorMap = /* @__PURE__ */ new Map();
|
|
47820
47820
|
this.colorIndex = 0;
|
|
47821
|
-
this.version = "0.14.12-next.
|
|
47821
|
+
this.version = "0.14.12-next.3";
|
|
47822
47822
|
console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
|
|
47823
47823
|
this.superdocId = config.superdocId || uuid.v4();
|
|
47824
47824
|
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-BIz0avfN.es.js";
|
|
2
|
+
import { a, S, i, o } from "./chunks/super-editor.es-BIz0avfN.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-B_OPNNfX.es.js";
|
|
4
4
|
import { B as Buffer$2 } from "./chunks/jszip-BwJb6_S5.es.js";
|
|
5
5
|
import { B as BlankDOCX } from "./chunks/blank-docx-iwdyG9RH.es.js";
|
|
@@ -47801,7 +47801,7 @@ class SuperDoc extends EventEmitter {
|
|
|
47801
47801
|
this.config.colors = shuffleArray(this.config.colors);
|
|
47802
47802
|
this.userColorMap = /* @__PURE__ */ new Map();
|
|
47803
47803
|
this.colorIndex = 0;
|
|
47804
|
-
this.version = "0.14.12-next.
|
|
47804
|
+
this.version = "0.14.12-next.3";
|
|
47805
47805
|
console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
|
|
47806
47806
|
this.superdocId = config.superdocId || v4();
|
|
47807
47807
|
this.colors = this.config.colors;
|
package/dist/superdoc.umd.js
CHANGED
|
@@ -35726,7 +35726,7 @@
|
|
|
35726
35726
|
return;
|
|
35727
35727
|
}
|
|
35728
35728
|
}
|
|
35729
|
-
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.12-next.
|
|
35729
|
+
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.12-next.3") {
|
|
35730
35730
|
const customLocation = "docProps/custom.xml";
|
|
35731
35731
|
if (!docx[customLocation]) {
|
|
35732
35732
|
docx[customLocation] = generateCustomXml();
|
|
@@ -36204,7 +36204,7 @@
|
|
|
36204
36204
|
function generateCustomXml() {
|
|
36205
36205
|
return DEFAULT_CUSTOM_XML;
|
|
36206
36206
|
}
|
|
36207
|
-
function generateSuperdocVersion(pid = 2, version2 = "0.14.12-next.
|
|
36207
|
+
function generateSuperdocVersion(pid = 2, version2 = "0.14.12-next.3") {
|
|
36208
36208
|
return {
|
|
36209
36209
|
type: "element",
|
|
36210
36210
|
name: "property",
|
|
@@ -51103,14 +51103,41 @@
|
|
|
51103
51103
|
const findWordBounds = (doc2, pos) => {
|
|
51104
51104
|
const $pos = doc2.resolve(pos);
|
|
51105
51105
|
const parent = $pos.parent;
|
|
51106
|
-
const
|
|
51107
|
-
|
|
51108
|
-
|
|
51109
|
-
let
|
|
51110
|
-
|
|
51111
|
-
|
|
51112
|
-
|
|
51113
|
-
|
|
51106
|
+
const offsetInParent = $pos.parentOffset;
|
|
51107
|
+
let offset2 = 0;
|
|
51108
|
+
let targetNode = null;
|
|
51109
|
+
let nodeStart = 0;
|
|
51110
|
+
parent.forEach((child, childOffset) => {
|
|
51111
|
+
if (child.isText) {
|
|
51112
|
+
const start2 = offset2;
|
|
51113
|
+
const end2 = offset2 + child.nodeSize;
|
|
51114
|
+
if (start2 <= offsetInParent && offsetInParent <= end2) {
|
|
51115
|
+
targetNode = child;
|
|
51116
|
+
nodeStart = childOffset;
|
|
51117
|
+
}
|
|
51118
|
+
offset2 = end2;
|
|
51119
|
+
} else {
|
|
51120
|
+
offset2 += child.nodeSize;
|
|
51121
|
+
}
|
|
51122
|
+
});
|
|
51123
|
+
if (!targetNode) return;
|
|
51124
|
+
const text = targetNode.text;
|
|
51125
|
+
const cursorOffset = offsetInParent - nodeStart;
|
|
51126
|
+
const isWordChar = (ch) => /\w/.test(ch);
|
|
51127
|
+
const isPunctOrSpace = (ch) => /[.,;:!-?=()[\]{}"'\s]/.test(ch);
|
|
51128
|
+
let from2, to;
|
|
51129
|
+
if (isPunctOrSpace(text[cursorOffset])) {
|
|
51130
|
+
from2 = $pos.start() + nodeStart + cursorOffset;
|
|
51131
|
+
to = from2 + 1;
|
|
51132
|
+
} else {
|
|
51133
|
+
let start2 = cursorOffset;
|
|
51134
|
+
while (start2 > 0 && isWordChar(text[start2 - 1])) start2--;
|
|
51135
|
+
let end2 = cursorOffset;
|
|
51136
|
+
while (end2 < text.length && isWordChar(text[end2])) end2++;
|
|
51137
|
+
if (start2 === end2) return;
|
|
51138
|
+
from2 = $pos.start() + nodeStart + start2;
|
|
51139
|
+
to = $pos.start() + nodeStart + end2;
|
|
51140
|
+
}
|
|
51114
51141
|
return { from: from2, to };
|
|
51115
51142
|
};
|
|
51116
51143
|
const setWordSelection = (view, pos) => {
|
|
@@ -52275,7 +52302,7 @@
|
|
|
52275
52302
|
* @returns {Object | void} Migration results
|
|
52276
52303
|
*/
|
|
52277
52304
|
processCollaborationMigrations() {
|
|
52278
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.14.12-next.
|
|
52305
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.14.12-next.3");
|
|
52279
52306
|
if (!this.options.ydoc) return;
|
|
52280
52307
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
52281
52308
|
let docVersion = metaMap.get("version");
|
|
@@ -98131,7 +98158,7 @@ ${style2}
|
|
|
98131
98158
|
this.config.colors = shuffleArray(this.config.colors);
|
|
98132
98159
|
this.userColorMap = /* @__PURE__ */ new Map();
|
|
98133
98160
|
this.colorIndex = 0;
|
|
98134
|
-
this.version = "0.14.12-next.
|
|
98161
|
+
this.version = "0.14.12-next.3";
|
|
98135
98162
|
console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
|
|
98136
98163
|
this.superdocId = config.superdocId || v4();
|
|
98137
98164
|
this.colors = this.config.colors;
|