@harbour-enterprises/superdoc 0.14.18-next.2 → 0.14.18-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-D8f1-vw1.es.js → super-editor.es-DZjrCfQC.es.js} +12 -6
- package/dist/chunks/{super-editor.es-fxF9kT9G.cjs → super-editor.es-DufT6Vug.cjs} +12 -6
- package/dist/super-editor/ai-writer.es.js +2 -2
- package/dist/super-editor/chunks/{converter-4FfEy1mu.js → converter-CuExrLjt.js} +2 -2
- package/dist/super-editor/chunks/{docx-zipper-DeG5eXYx.js → docx-zipper-CjyfmqIg.js} +1 -1
- package/dist/super-editor/chunks/{editor-DYFr_Llj.js → editor-Bq3v-M2b.js} +6 -5
- package/dist/super-editor/chunks/{toolbar-CQJxTeGD.js → toolbar-BEk-zKuT.js} +2 -2
- package/dist/super-editor/components/toolbar/super-toolbar.d.ts.map +1 -1
- package/dist/super-editor/converter.es.js +1 -1
- package/dist/super-editor/core/Editor.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 +14 -8
- 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 -7
- package/dist/superdoc.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -28341,7 +28341,7 @@ const _SuperConverter = class _SuperConverter2 {
|
|
|
28341
28341
|
return;
|
|
28342
28342
|
}
|
|
28343
28343
|
}
|
|
28344
|
-
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.18-next.
|
|
28344
|
+
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.18-next.3") {
|
|
28345
28345
|
const customLocation = "docProps/custom.xml";
|
|
28346
28346
|
if (!docx[customLocation]) {
|
|
28347
28347
|
docx[customLocation] = generateCustomXml();
|
|
@@ -28819,7 +28819,7 @@ function storeSuperdocVersion(docx) {
|
|
|
28819
28819
|
function generateCustomXml() {
|
|
28820
28820
|
return DEFAULT_CUSTOM_XML;
|
|
28821
28821
|
}
|
|
28822
|
-
function generateSuperdocVersion(pid = 2, version2 = "0.14.18-next.
|
|
28822
|
+
function generateSuperdocVersion(pid = 2, version2 = "0.14.18-next.3") {
|
|
28823
28823
|
return {
|
|
28824
28824
|
type: "element",
|
|
28825
28825
|
name: "property",
|
|
@@ -44932,7 +44932,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
|
|
|
44932
44932
|
* @returns {Object | void} Migration results
|
|
44933
44933
|
*/
|
|
44934
44934
|
processCollaborationMigrations() {
|
|
44935
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.14.18-next.
|
|
44935
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.14.18-next.3");
|
|
44936
44936
|
if (!this.options.ydoc) return;
|
|
44937
44937
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
44938
44938
|
let docVersion = metaMap.get("version");
|
|
@@ -45210,7 +45210,7 @@ insertNewFileData_fn = function() {
|
|
|
45210
45210
|
if (!this.options.isNewFile) return;
|
|
45211
45211
|
this.options.isNewFile = false;
|
|
45212
45212
|
const doc2 = __privateMethod$1(this, _Editor_instances, generatePmData_fn).call(this);
|
|
45213
|
-
const tr = this.state.tr.replaceWith(0, this.state.doc.content.size, doc2);
|
|
45213
|
+
const tr = this.state.tr.replaceWith(0, this.state.doc.content.size, doc2).setMeta("addToHistory", false);
|
|
45214
45214
|
this.view.dispatch(tr);
|
|
45215
45215
|
setTimeout(() => {
|
|
45216
45216
|
this.initPagination();
|
|
@@ -73345,8 +73345,14 @@ deactivateAll_fn = function() {
|
|
|
73345
73345
|
};
|
|
73346
73346
|
updateToolbarHistory_fn = function() {
|
|
73347
73347
|
if (!this.activeEditor) return;
|
|
73348
|
-
|
|
73349
|
-
|
|
73348
|
+
if (this.activeEditor.options.ydoc) {
|
|
73349
|
+
const undoManager = yUndoPluginKey.getState(this.activeEditor.state)?.undoManager;
|
|
73350
|
+
this.undoDepth = undoManager?.undoStack.length || 0;
|
|
73351
|
+
this.redoDepth = undoManager?.redoStack.length || 0;
|
|
73352
|
+
} else {
|
|
73353
|
+
this.undoDepth = undoDepth(this.activeEditor.state);
|
|
73354
|
+
this.redoDepth = redoDepth(this.activeEditor.state);
|
|
73355
|
+
}
|
|
73350
73356
|
};
|
|
73351
73357
|
runCommandWithArgumentOnly_fn = function({ item, argument, noArgumentCallback = false }, callback) {
|
|
73352
73358
|
if (!argument || !this.activeEditor) return;
|
|
@@ -28358,7 +28358,7 @@ const _SuperConverter = class _SuperConverter2 {
|
|
|
28358
28358
|
return;
|
|
28359
28359
|
}
|
|
28360
28360
|
}
|
|
28361
|
-
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.18-next.
|
|
28361
|
+
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.18-next.3") {
|
|
28362
28362
|
const customLocation = "docProps/custom.xml";
|
|
28363
28363
|
if (!docx[customLocation]) {
|
|
28364
28364
|
docx[customLocation] = generateCustomXml();
|
|
@@ -28836,7 +28836,7 @@ function storeSuperdocVersion(docx) {
|
|
|
28836
28836
|
function generateCustomXml() {
|
|
28837
28837
|
return DEFAULT_CUSTOM_XML;
|
|
28838
28838
|
}
|
|
28839
|
-
function generateSuperdocVersion(pid = 2, version2 = "0.14.18-next.
|
|
28839
|
+
function generateSuperdocVersion(pid = 2, version2 = "0.14.18-next.3") {
|
|
28840
28840
|
return {
|
|
28841
28841
|
type: "element",
|
|
28842
28842
|
name: "property",
|
|
@@ -44949,7 +44949,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
|
|
|
44949
44949
|
* @returns {Object | void} Migration results
|
|
44950
44950
|
*/
|
|
44951
44951
|
processCollaborationMigrations() {
|
|
44952
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.14.18-next.
|
|
44952
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.14.18-next.3");
|
|
44953
44953
|
if (!this.options.ydoc) return;
|
|
44954
44954
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
44955
44955
|
let docVersion = metaMap.get("version");
|
|
@@ -45227,7 +45227,7 @@ insertNewFileData_fn = function() {
|
|
|
45227
45227
|
if (!this.options.isNewFile) return;
|
|
45228
45228
|
this.options.isNewFile = false;
|
|
45229
45229
|
const doc2 = __privateMethod$1(this, _Editor_instances, generatePmData_fn).call(this);
|
|
45230
|
-
const tr = this.state.tr.replaceWith(0, this.state.doc.content.size, doc2);
|
|
45230
|
+
const tr = this.state.tr.replaceWith(0, this.state.doc.content.size, doc2).setMeta("addToHistory", false);
|
|
45231
45231
|
this.view.dispatch(tr);
|
|
45232
45232
|
setTimeout(() => {
|
|
45233
45233
|
this.initPagination();
|
|
@@ -73362,8 +73362,14 @@ deactivateAll_fn = function() {
|
|
|
73362
73362
|
};
|
|
73363
73363
|
updateToolbarHistory_fn = function() {
|
|
73364
73364
|
if (!this.activeEditor) return;
|
|
73365
|
-
|
|
73366
|
-
|
|
73365
|
+
if (this.activeEditor.options.ydoc) {
|
|
73366
|
+
const undoManager = yUndoPluginKey.getState(this.activeEditor.state)?.undoManager;
|
|
73367
|
+
this.undoDepth = undoManager?.undoStack.length || 0;
|
|
73368
|
+
this.redoDepth = undoManager?.redoStack.length || 0;
|
|
73369
|
+
} else {
|
|
73370
|
+
this.undoDepth = undoDepth(this.activeEditor.state);
|
|
73371
|
+
this.redoDepth = redoDepth(this.activeEditor.state);
|
|
73372
|
+
}
|
|
73367
73373
|
};
|
|
73368
73374
|
runCommandWithArgumentOnly_fn = function({ item, argument, noArgumentCallback = false }, callback) {
|
|
73369
73375
|
if (!argument || !this.activeEditor) return;
|
|
@@ -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-CuExrLjt.js";
|
|
3
|
+
import { _ as _export_sfc } from "./chunks/editor-Bq3v-M2b.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 = {}) {
|
|
@@ -28339,7 +28339,7 @@ const _SuperConverter = class _SuperConverter {
|
|
|
28339
28339
|
return;
|
|
28340
28340
|
}
|
|
28341
28341
|
}
|
|
28342
|
-
static updateDocumentVersion(docx = this.convertedXml, version = "0.14.18-next.
|
|
28342
|
+
static updateDocumentVersion(docx = this.convertedXml, version = "0.14.18-next.3") {
|
|
28343
28343
|
const customLocation = "docProps/custom.xml";
|
|
28344
28344
|
if (!docx[customLocation]) {
|
|
28345
28345
|
docx[customLocation] = generateCustomXml();
|
|
@@ -28820,7 +28820,7 @@ function storeSuperdocVersion(docx) {
|
|
|
28820
28820
|
function generateCustomXml() {
|
|
28821
28821
|
return DEFAULT_CUSTOM_XML;
|
|
28822
28822
|
}
|
|
28823
|
-
function generateSuperdocVersion(pid = 2, version = "0.14.18-next.
|
|
28823
|
+
function generateSuperdocVersion(pid = 2, version = "0.14.18-next.3") {
|
|
28824
28824
|
return {
|
|
28825
28825
|
type: "element",
|
|
28826
28826
|
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-CuExrLjt.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-CuExrLjt.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-CjyfmqIg.js";
|
|
18
18
|
var GOOD_LEAF_SIZE = 200;
|
|
19
19
|
var RopeSequence = function RopeSequence2() {
|
|
20
20
|
};
|
|
@@ -13615,7 +13615,7 @@ const _Editor = class _Editor extends EventEmitter {
|
|
|
13615
13615
|
* @returns {Object | void} Migration results
|
|
13616
13616
|
*/
|
|
13617
13617
|
processCollaborationMigrations() {
|
|
13618
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.14.18-next.
|
|
13618
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.14.18-next.3");
|
|
13619
13619
|
if (!this.options.ydoc) return;
|
|
13620
13620
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
13621
13621
|
let docVersion = metaMap.get("version");
|
|
@@ -13934,7 +13934,7 @@ insertNewFileData_fn = function() {
|
|
|
13934
13934
|
if (!this.options.isNewFile) return;
|
|
13935
13935
|
this.options.isNewFile = false;
|
|
13936
13936
|
const doc2 = __privateMethod(this, _Editor_instances, generatePmData_fn).call(this);
|
|
13937
|
-
const tr = this.state.tr.replaceWith(0, this.state.doc.content.size, doc2);
|
|
13937
|
+
const tr = this.state.tr.replaceWith(0, this.state.doc.content.size, doc2).setMeta("addToHistory", false);
|
|
13938
13938
|
this.view.dispatch(tr);
|
|
13939
13939
|
setTimeout(() => {
|
|
13940
13940
|
this.initPagination();
|
|
@@ -28492,5 +28492,6 @@ export {
|
|
|
28492
28492
|
getAllowedImageDimensions as l,
|
|
28493
28493
|
redoDepth as r,
|
|
28494
28494
|
startImageUpload as s,
|
|
28495
|
-
useHighContrastMode as u
|
|
28495
|
+
useHighContrastMode as u,
|
|
28496
|
+
yUndoPluginKey as y
|
|
28496
28497
|
};
|
|
@@ -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-CuExrLjt.js";
|
|
3
|
+
import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-Bq3v-M2b.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":"super-toolbar.d.ts","sourceRoot":"","sources":["../../../src/components/toolbar/super-toolbar.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"super-toolbar.d.ts","sourceRoot":"","sources":["../../../src/components/toolbar/super-toolbar.js"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Editor.d.ts","sourceRoot":"","sources":["../../src/core/Editor.js"],"names":[],"mappings":"AAuCA;;;;GAIG;AAEH;;;;;GAKG;AACH;;;;;GAKG;AAEH;;GAEG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA4DG;AAEH;;;;GAIG;AACH;
|
|
1
|
+
{"version":3,"file":"Editor.d.ts","sourceRoot":"","sources":["../../src/core/Editor.js"],"names":[],"mappings":"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"}
|
|
@@ -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-Bq3v-M2b.js";
|
|
2
|
+
import "./chunks/converter-CuExrLjt.js";
|
|
3
|
+
import "./chunks/docx-zipper-CjyfmqIg.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-CuExrLjt.js";
|
|
13
|
+
import { a5, d, a2 } from "./chunks/converter-CuExrLjt.js";
|
|
14
|
+
import { _ as _export_sfc, u as useHighContrastMode, a as getQuickFormatList, b as generateLinkedStyleString, c as getFileOpener, s as startImageUpload, y as yUndoPluginKey, d as undoDepth, r as redoDepth, S as SlashMenuPluginKey, E as Editor, e as getStarterExtensions, P as Placeholder, f as getRichTextExtensions, M as Mark, h as Extension, A as Attribute, N as Node } from "./chunks/editor-Bq3v-M2b.js";
|
|
15
|
+
import { k, C, T, i, l, j } from "./chunks/editor-Bq3v-M2b.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, onDeactivated, 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, d as plusIconSvg, e as trashIconSvg, f as borderNoneIconSvg, g as arrowsToDotIconSvg, h as arrowsLeftRightIconSvg, w as wrenchIconSvg, 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, d as plusIconSvg, e as trashIconSvg, f as borderNoneIconSvg, g as arrowsToDotIconSvg, h as arrowsLeftRightIconSvg, w as wrenchIconSvg, N as NSkeleton } from "./chunks/toolbar-BEk-zKuT.js";
|
|
18
18
|
import AIWriter from "./ai-writer.es.js";
|
|
19
|
-
import { D } from "./chunks/docx-zipper-
|
|
19
|
+
import { D } from "./chunks/docx-zipper-CjyfmqIg.js";
|
|
20
20
|
import { createZip } from "./file-zipper.es.js";
|
|
21
21
|
var eventemitter3 = { exports: {} };
|
|
22
22
|
var hasRequiredEventemitter3;
|
|
@@ -3095,8 +3095,14 @@ deactivateAll_fn = function() {
|
|
|
3095
3095
|
*/
|
|
3096
3096
|
updateToolbarHistory_fn = function() {
|
|
3097
3097
|
if (!this.activeEditor) return;
|
|
3098
|
-
|
|
3099
|
-
|
|
3098
|
+
if (this.activeEditor.options.ydoc) {
|
|
3099
|
+
const undoManager = yUndoPluginKey.getState(this.activeEditor.state)?.undoManager;
|
|
3100
|
+
this.undoDepth = undoManager?.undoStack.length || 0;
|
|
3101
|
+
this.redoDepth = undoManager?.redoStack.length || 0;
|
|
3102
|
+
} else {
|
|
3103
|
+
this.undoDepth = undoDepth(this.activeEditor.state);
|
|
3104
|
+
this.redoDepth = redoDepth(this.activeEditor.state);
|
|
3105
|
+
}
|
|
3100
3106
|
};
|
|
3101
3107
|
/**
|
|
3102
3108
|
* Run a command that requires an argument
|
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-DufT6Vug.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-DZjrCfQC.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-DufT6Vug.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.18-next.
|
|
47821
|
+
this.version = "0.14.18-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-DZjrCfQC.es.js";
|
|
2
|
+
import { a, S, i, o } from "./chunks/super-editor.es-DZjrCfQC.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.18-next.
|
|
47804
|
+
this.version = "0.14.18-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
|
@@ -35736,7 +35736,7 @@
|
|
|
35736
35736
|
return;
|
|
35737
35737
|
}
|
|
35738
35738
|
}
|
|
35739
|
-
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.18-next.
|
|
35739
|
+
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.14.18-next.3") {
|
|
35740
35740
|
const customLocation = "docProps/custom.xml";
|
|
35741
35741
|
if (!docx[customLocation]) {
|
|
35742
35742
|
docx[customLocation] = generateCustomXml();
|
|
@@ -36214,7 +36214,7 @@
|
|
|
36214
36214
|
function generateCustomXml() {
|
|
36215
36215
|
return DEFAULT_CUSTOM_XML;
|
|
36216
36216
|
}
|
|
36217
|
-
function generateSuperdocVersion(pid = 2, version2 = "0.14.18-next.
|
|
36217
|
+
function generateSuperdocVersion(pid = 2, version2 = "0.14.18-next.3") {
|
|
36218
36218
|
return {
|
|
36219
36219
|
type: "element",
|
|
36220
36220
|
name: "property",
|
|
@@ -52327,7 +52327,7 @@
|
|
|
52327
52327
|
* @returns {Object | void} Migration results
|
|
52328
52328
|
*/
|
|
52329
52329
|
processCollaborationMigrations() {
|
|
52330
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.14.18-next.
|
|
52330
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.14.18-next.3");
|
|
52331
52331
|
if (!this.options.ydoc) return;
|
|
52332
52332
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
52333
52333
|
let docVersion = metaMap.get("version");
|
|
@@ -52605,7 +52605,7 @@
|
|
|
52605
52605
|
if (!this.options.isNewFile) return;
|
|
52606
52606
|
this.options.isNewFile = false;
|
|
52607
52607
|
const doc2 = __privateMethod$1(this, _Editor_instances, generatePmData_fn).call(this);
|
|
52608
|
-
const tr = this.state.tr.replaceWith(0, this.state.doc.content.size, doc2);
|
|
52608
|
+
const tr = this.state.tr.replaceWith(0, this.state.doc.content.size, doc2).setMeta("addToHistory", false);
|
|
52609
52609
|
this.view.dispatch(tr);
|
|
52610
52610
|
setTimeout(() => {
|
|
52611
52611
|
this.initPagination();
|
|
@@ -80740,8 +80740,14 @@ ${style2}
|
|
|
80740
80740
|
};
|
|
80741
80741
|
updateToolbarHistory_fn = function() {
|
|
80742
80742
|
if (!this.activeEditor) return;
|
|
80743
|
-
|
|
80744
|
-
|
|
80743
|
+
if (this.activeEditor.options.ydoc) {
|
|
80744
|
+
const undoManager = yUndoPluginKey.getState(this.activeEditor.state)?.undoManager;
|
|
80745
|
+
this.undoDepth = undoManager?.undoStack.length || 0;
|
|
80746
|
+
this.redoDepth = undoManager?.redoStack.length || 0;
|
|
80747
|
+
} else {
|
|
80748
|
+
this.undoDepth = undoDepth(this.activeEditor.state);
|
|
80749
|
+
this.redoDepth = redoDepth(this.activeEditor.state);
|
|
80750
|
+
}
|
|
80745
80751
|
};
|
|
80746
80752
|
runCommandWithArgumentOnly_fn = function({ item, argument, noArgumentCallback = false }, callback) {
|
|
80747
80753
|
if (!argument || !this.activeEditor) return;
|
|
@@ -98409,7 +98415,7 @@ ${style2}
|
|
|
98409
98415
|
this.config.colors = shuffleArray(this.config.colors);
|
|
98410
98416
|
this.userColorMap = /* @__PURE__ */ new Map();
|
|
98411
98417
|
this.colorIndex = 0;
|
|
98412
|
-
this.version = "0.14.18-next.
|
|
98418
|
+
this.version = "0.14.18-next.3";
|
|
98413
98419
|
console.debug("🦋 [superdoc] Using SuperDoc version:", this.version);
|
|
98414
98420
|
this.superdocId = config.superdocId || v4();
|
|
98415
98421
|
this.colors = this.config.colors;
|