@harbour-enterprises/superdoc 0.15.8-next.1 → 0.15.8-next.2
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-BjMQ74MZ.cjs → super-editor.es-BSgo4CVf.cjs} +8 -6
- package/dist/chunks/{super-editor.es-0MU5F-Dj.es.js → super-editor.es-sd3cj3jM.es.js} +8 -6
- package/dist/super-editor/ai-writer.es.js +2 -2
- package/dist/super-editor/chunks/{converter-Ci4nTfJE.js → converter-HX3VR15s.js} +7 -5
- package/dist/super-editor/chunks/{docx-zipper-BEaSWD3C.js → docx-zipper-quMgrnqn.js} +1 -1
- package/dist/super-editor/chunks/{editor-jQ1KT1kE.js → editor-ozk3EU05.js} +3 -3
- package/dist/super-editor/chunks/{toolbar-cIYwQW61.js → toolbar-Rn4dRKXD.js} +2 -2
- package/dist/super-editor/converter.es.js +1 -1
- package/dist/super-editor/core/super-converter/v2/importer/documentCommentsImporter.d.ts +1 -1
- package/dist/super-editor/core/super-converter/v2/importer/documentCommentsImporter.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/tests/export/export-helpers/export-helpers.d.ts.map +1 -1
- 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 -7
- package/dist/superdoc.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -28358,7 +28358,7 @@ const pictNodeHandlerEntity = {
|
|
|
28358
28358
|
handlerName: "handlePictNode",
|
|
28359
28359
|
handler: handlePictNode
|
|
28360
28360
|
};
|
|
28361
|
-
function importCommentData({ docx }) {
|
|
28361
|
+
function importCommentData({ docx, editor, converter }) {
|
|
28362
28362
|
const nodeListHandler2 = defaultNodeListHandler();
|
|
28363
28363
|
const comments = docx["word/comments.xml"];
|
|
28364
28364
|
if (!comments) return;
|
|
@@ -28385,7 +28385,9 @@ function importCommentData({ docx }) {
|
|
|
28385
28385
|
const parsedComment = nodeListHandler2.handler({
|
|
28386
28386
|
nodes: el.elements,
|
|
28387
28387
|
nodeListHandler: nodeListHandler2,
|
|
28388
|
-
docx
|
|
28388
|
+
docx,
|
|
28389
|
+
editor,
|
|
28390
|
+
converter
|
|
28389
28391
|
});
|
|
28390
28392
|
const { attrs } = parsedComment[0];
|
|
28391
28393
|
const paraId = attrs["w14:paraId"];
|
|
@@ -28464,7 +28466,7 @@ const createDocumentJson = (docx, converter, editor) => {
|
|
|
28464
28466
|
const node2 = bodyNode;
|
|
28465
28467
|
const ignoreNodes = ["w:sectPr"];
|
|
28466
28468
|
const content = node2.elements?.filter((n) => !ignoreNodes.includes(n.name)) ?? [];
|
|
28467
|
-
const comments = importCommentData({ docx });
|
|
28469
|
+
const comments = importCommentData({ docx, converter, editor });
|
|
28468
28470
|
const lists = {};
|
|
28469
28471
|
const parsedContent = nodeListHandler2.handler({
|
|
28470
28472
|
nodes: content,
|
|
@@ -29019,7 +29021,7 @@ const _SuperConverter = class _SuperConverter2 {
|
|
|
29019
29021
|
return;
|
|
29020
29022
|
}
|
|
29021
29023
|
}
|
|
29022
|
-
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.15.8-next.
|
|
29024
|
+
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.15.8-next.2") {
|
|
29023
29025
|
const customLocation = "docProps/custom.xml";
|
|
29024
29026
|
if (!docx[customLocation]) {
|
|
29025
29027
|
docx[customLocation] = generateCustomXml();
|
|
@@ -29498,7 +29500,7 @@ function storeSuperdocVersion(docx) {
|
|
|
29498
29500
|
function generateCustomXml() {
|
|
29499
29501
|
return DEFAULT_CUSTOM_XML;
|
|
29500
29502
|
}
|
|
29501
|
-
function generateSuperdocVersion(pid = 2, version2 = "0.15.8-next.
|
|
29503
|
+
function generateSuperdocVersion(pid = 2, version2 = "0.15.8-next.2") {
|
|
29502
29504
|
return {
|
|
29503
29505
|
type: "element",
|
|
29504
29506
|
name: "property",
|
|
@@ -45825,7 +45827,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
|
|
|
45825
45827
|
* @returns {Object | void} Migration results
|
|
45826
45828
|
*/
|
|
45827
45829
|
processCollaborationMigrations() {
|
|
45828
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.15.8-next.
|
|
45830
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.15.8-next.2");
|
|
45829
45831
|
if (!this.options.ydoc) return;
|
|
45830
45832
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
45831
45833
|
let docVersion = metaMap.get("version");
|
|
@@ -28341,7 +28341,7 @@ const pictNodeHandlerEntity = {
|
|
|
28341
28341
|
handlerName: "handlePictNode",
|
|
28342
28342
|
handler: handlePictNode
|
|
28343
28343
|
};
|
|
28344
|
-
function importCommentData({ docx }) {
|
|
28344
|
+
function importCommentData({ docx, editor, converter }) {
|
|
28345
28345
|
const nodeListHandler2 = defaultNodeListHandler();
|
|
28346
28346
|
const comments = docx["word/comments.xml"];
|
|
28347
28347
|
if (!comments) return;
|
|
@@ -28368,7 +28368,9 @@ function importCommentData({ docx }) {
|
|
|
28368
28368
|
const parsedComment = nodeListHandler2.handler({
|
|
28369
28369
|
nodes: el.elements,
|
|
28370
28370
|
nodeListHandler: nodeListHandler2,
|
|
28371
|
-
docx
|
|
28371
|
+
docx,
|
|
28372
|
+
editor,
|
|
28373
|
+
converter
|
|
28372
28374
|
});
|
|
28373
28375
|
const { attrs } = parsedComment[0];
|
|
28374
28376
|
const paraId = attrs["w14:paraId"];
|
|
@@ -28447,7 +28449,7 @@ const createDocumentJson = (docx, converter, editor) => {
|
|
|
28447
28449
|
const node2 = bodyNode;
|
|
28448
28450
|
const ignoreNodes = ["w:sectPr"];
|
|
28449
28451
|
const content = node2.elements?.filter((n) => !ignoreNodes.includes(n.name)) ?? [];
|
|
28450
|
-
const comments = importCommentData({ docx });
|
|
28452
|
+
const comments = importCommentData({ docx, converter, editor });
|
|
28451
28453
|
const lists = {};
|
|
28452
28454
|
const parsedContent = nodeListHandler2.handler({
|
|
28453
28455
|
nodes: content,
|
|
@@ -29002,7 +29004,7 @@ const _SuperConverter = class _SuperConverter2 {
|
|
|
29002
29004
|
return;
|
|
29003
29005
|
}
|
|
29004
29006
|
}
|
|
29005
|
-
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.15.8-next.
|
|
29007
|
+
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.15.8-next.2") {
|
|
29006
29008
|
const customLocation = "docProps/custom.xml";
|
|
29007
29009
|
if (!docx[customLocation]) {
|
|
29008
29010
|
docx[customLocation] = generateCustomXml();
|
|
@@ -29481,7 +29483,7 @@ function storeSuperdocVersion(docx) {
|
|
|
29481
29483
|
function generateCustomXml() {
|
|
29482
29484
|
return DEFAULT_CUSTOM_XML;
|
|
29483
29485
|
}
|
|
29484
|
-
function generateSuperdocVersion(pid = 2, version2 = "0.15.8-next.
|
|
29486
|
+
function generateSuperdocVersion(pid = 2, version2 = "0.15.8-next.2") {
|
|
29485
29487
|
return {
|
|
29486
29488
|
type: "element",
|
|
29487
29489
|
name: "property",
|
|
@@ -45808,7 +45810,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
|
|
|
45808
45810
|
* @returns {Object | void} Migration results
|
|
45809
45811
|
*/
|
|
45810
45812
|
processCollaborationMigrations() {
|
|
45811
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.15.8-next.
|
|
45813
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.15.8-next.2");
|
|
45812
45814
|
if (!this.options.ydoc) return;
|
|
45813
45815
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
45814
45816
|
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-HX3VR15s.js";
|
|
3
|
+
import { _ as _export_sfc } from "./chunks/editor-ozk3EU05.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 pictNodeHandlerEntity = {
|
|
|
28339
28339
|
handlerName: "handlePictNode",
|
|
28340
28340
|
handler: handlePictNode
|
|
28341
28341
|
};
|
|
28342
|
-
function importCommentData({ docx }) {
|
|
28342
|
+
function importCommentData({ docx, editor, converter }) {
|
|
28343
28343
|
const nodeListHandler2 = defaultNodeListHandler();
|
|
28344
28344
|
const comments = docx["word/comments.xml"];
|
|
28345
28345
|
if (!comments) return;
|
|
@@ -28366,7 +28366,9 @@ function importCommentData({ docx }) {
|
|
|
28366
28366
|
const parsedComment = nodeListHandler2.handler({
|
|
28367
28367
|
nodes: el.elements,
|
|
28368
28368
|
nodeListHandler: nodeListHandler2,
|
|
28369
|
-
docx
|
|
28369
|
+
docx,
|
|
28370
|
+
editor,
|
|
28371
|
+
converter
|
|
28370
28372
|
});
|
|
28371
28373
|
const { attrs } = parsedComment[0];
|
|
28372
28374
|
const paraId = attrs["w14:paraId"];
|
|
@@ -28445,7 +28447,7 @@ const createDocumentJson = (docx, converter, editor) => {
|
|
|
28445
28447
|
const node2 = bodyNode;
|
|
28446
28448
|
const ignoreNodes = ["w:sectPr"];
|
|
28447
28449
|
const content = node2.elements?.filter((n) => !ignoreNodes.includes(n.name)) ?? [];
|
|
28448
|
-
const comments = importCommentData({ docx });
|
|
28450
|
+
const comments = importCommentData({ docx, converter, editor });
|
|
28449
28451
|
const lists = {};
|
|
28450
28452
|
const parsedContent = nodeListHandler2.handler({
|
|
28451
28453
|
nodes: content,
|
|
@@ -29000,7 +29002,7 @@ const _SuperConverter = class _SuperConverter {
|
|
|
29000
29002
|
return;
|
|
29001
29003
|
}
|
|
29002
29004
|
}
|
|
29003
|
-
static updateDocumentVersion(docx = this.convertedXml, version = "0.15.8-next.
|
|
29005
|
+
static updateDocumentVersion(docx = this.convertedXml, version = "0.15.8-next.2") {
|
|
29004
29006
|
const customLocation = "docProps/custom.xml";
|
|
29005
29007
|
if (!docx[customLocation]) {
|
|
29006
29008
|
docx[customLocation] = generateCustomXml();
|
|
@@ -29482,7 +29484,7 @@ function storeSuperdocVersion(docx) {
|
|
|
29482
29484
|
function generateCustomXml() {
|
|
29483
29485
|
return DEFAULT_CUSTOM_XML;
|
|
29484
29486
|
}
|
|
29485
|
-
function generateSuperdocVersion(pid = 2, version = "0.15.8-next.
|
|
29487
|
+
function generateSuperdocVersion(pid = 2, version = "0.15.8-next.2") {
|
|
29486
29488
|
return {
|
|
29487
29489
|
type: "element",
|
|
29488
29490
|
name: "property",
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { H as process$1, at as commonjsGlobal, I as Buffer, au as getDefaultExportFromCjs, av as getContentTypesFromXml, aw as xmljs } from "./converter-
|
|
1
|
+
import { H as process$1, at as commonjsGlobal, I as Buffer, au as getDefaultExportFromCjs, av as getContentTypesFromXml, aw as xmljs } from "./converter-HX3VR15s.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, _editor, _stateValidators, _requiredNodeTypes, _requiredMarkTypes, _SuperValidator_instances, initializeValidators_fn, collectValidatorRequirements_fn, analyzeDocument_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, validateDocumentInit_fn, _ListItemNodeView_instances, init_fn2, _FieldAnnotationView_instances, createAnnotation_fn, _AutoPageNumberNodeView_instances, renderDom_fn, scheduleUpdateNodeStyle_fn, _DocumentSectionView_instances, init_fn3, addToolTip_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 helpers, a2 as posToDOMRect, a3 as CommandService, a4 as SuperConverter, a5 as createDocument, a6 as EditorState, a7 as hasSomeParentWithClass, a8 as isActive, a9 as unflattenListsInHtml, aa as parseSizeUnit, ab as minMax, ac as getLineHeightValueString, ad as InputRule, ae as kebabCase, af as generateOrderedListIndex, ag as getListItemStyleDefinitions, ah as docxNumberigHelpers, ai as parseIndentElement, aj as combineIndents, ak as getColStyleDeclaration, al as SelectionRange, am as Transform, an as findParentNodeClosestToPos, ao as isInTable$1, ap as createColGroup, aq as generateDocxRandomId, ar as SectionHelpers, as as htmlHandler } 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 helpers, a2 as posToDOMRect, a3 as CommandService, a4 as SuperConverter, a5 as createDocument, a6 as EditorState, a7 as hasSomeParentWithClass, a8 as isActive, a9 as unflattenListsInHtml, aa as parseSizeUnit, ab as minMax, ac as getLineHeightValueString, ad as InputRule, ae as kebabCase, af as generateOrderedListIndex, ag as getListItemStyleDefinitions, ah as docxNumberigHelpers, ai as parseIndentElement, aj as combineIndents, ak as getColStyleDeclaration, al as SelectionRange, am as Transform, an as findParentNodeClosestToPos, ao as isInTable$1, ap as createColGroup, aq as generateDocxRandomId, ar as SectionHelpers, as as htmlHandler } from "./converter-HX3VR15s.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-quMgrnqn.js";
|
|
18
18
|
var GOOD_LEAF_SIZE = 200;
|
|
19
19
|
var RopeSequence = function RopeSequence2() {
|
|
20
20
|
};
|
|
@@ -13845,7 +13845,7 @@ const _Editor = class _Editor extends EventEmitter {
|
|
|
13845
13845
|
* @returns {Object | void} Migration results
|
|
13846
13846
|
*/
|
|
13847
13847
|
processCollaborationMigrations() {
|
|
13848
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.15.8-next.
|
|
13848
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.15.8-next.2");
|
|
13849
13849
|
if (!this.options.ydoc) return;
|
|
13850
13850
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
13851
13851
|
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-HX3VR15s.js";
|
|
3
|
+
import { _ as _export_sfc, u as useHighContrastMode, g as global$1 } from "./editor-ozk3EU05.js";
|
|
4
4
|
const sanitizeNumber = (value, defaultNumber) => {
|
|
5
5
|
let sanitized = value.replace(/[^0-9.]/g, "");
|
|
6
6
|
sanitized = parseFloat(sanitized);
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
* @param {Editor} param0.editor The editor instance
|
|
10
10
|
* @returns {Array} The parsed comments
|
|
11
11
|
*/
|
|
12
|
-
export function importCommentData({ docx }: {
|
|
12
|
+
export function importCommentData({ docx, editor, converter }: {
|
|
13
13
|
docx: ParsedDocx;
|
|
14
14
|
nodeListHandler: NodeListHandler;
|
|
15
15
|
converter: SuperConverter;
|
package/dist/super-editor/core/super-converter/v2/importer/documentCommentsImporter.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"documentCommentsImporter.d.ts","sourceRoot":"","sources":["../../../../../src/core/super-converter/v2/importer/documentCommentsImporter.js"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AACH
|
|
1
|
+
{"version":3,"file":"documentCommentsImporter.d.ts","sourceRoot":"","sources":["../../../../../src/core/super-converter/v2/importer/documentCommentsImporter.js"],"names":[],"mappings":"AAGA;;;;;;;;;;GAUG;AACH,+DANG;IAA2B,IAAI,EAAvB,UAAU;IACc,eAAe,EAAvC,eAAe;IACQ,SAAS,EAAhC,cAAc;IACC,MAAM,EAArB,MAAM;CACd,SA8DF"}
|
|
@@ -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-ozk3EU05.js";
|
|
2
|
+
import "./chunks/converter-HX3VR15s.js";
|
|
3
|
+
import "./chunks/docx-zipper-quMgrnqn.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 { au as getDefaultExportFromCjs, U as v4, T as TextSelection$1, q as getMarkRange, ax as vClickOutside, y as findParentNode, ay as getActiveFormatting, ao as isInTable, az as readFromClipboard, aA as handleClipboardPaste, a as Plugin } from "./chunks/converter-
|
|
13
|
-
import { ar, a4, d, a1 } from "./chunks/converter-
|
|
14
|
-
import { _ as _export_sfc, u as useHighContrastMode, a as getQuickFormatList, b as generateLinkedStyleString, c as getFileOpener, s as startImageUpload, y as yUndoPluginKey, d as undoDepth, r as redoDepth, S as SlashMenuPluginKey, E as Editor, e as getStarterExtensions, P as Placeholder, f as getRichTextExtensions, M as Mark, h as Extension, A as Attribute, N as Node } from "./chunks/editor-
|
|
15
|
-
import { k, C, T, i, l, j } from "./chunks/editor-
|
|
12
|
+
import { au as getDefaultExportFromCjs, U as v4, T as TextSelection$1, q as getMarkRange, ax as vClickOutside, y as findParentNode, ay as getActiveFormatting, ao as isInTable, az as readFromClipboard, aA as handleClipboardPaste, a as Plugin } from "./chunks/converter-HX3VR15s.js";
|
|
13
|
+
import { ar, a4, d, a1 } from "./chunks/converter-HX3VR15s.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-ozk3EU05.js";
|
|
15
|
+
import { k, C, T, i, l, j } from "./chunks/editor-ozk3EU05.js";
|
|
16
16
|
import { ref, onMounted, createElementBlock, openBlock, normalizeClass, unref, Fragment, renderList, createElementVNode, withModifiers, toDisplayString, createCommentVNode, normalizeStyle, computed, watch, withDirectives, withKeys, vModelText, createTextVNode, createVNode, h, createApp, markRaw, nextTick, onBeforeUnmount, reactive, onUnmounted, renderSlot, shallowRef, createBlock, withCtx, resolveDynamicComponent, normalizeProps, guardReactiveProps } from "vue";
|
|
17
|
-
import { t as toolbarIcons, s as sanitizeNumber, T as Toolbar, m as magicWandIcon, p as plusIconSvg, a as trashIconSvg, l as linkIconSvg, b as tableIconSvg, c as scissorsIconSvg, d as copyIconSvg, e as pasteIconSvg, f as borderNoneIconSvg, g as arrowsToDotIconSvg, h as arrowsLeftRightIconSvg, w as wrenchIconSvg, N as NSkeleton } from "./chunks/toolbar-
|
|
17
|
+
import { t as toolbarIcons, s as sanitizeNumber, T as Toolbar, m as magicWandIcon, p as plusIconSvg, a as trashIconSvg, l as linkIconSvg, b as tableIconSvg, c as scissorsIconSvg, d as copyIconSvg, e as pasteIconSvg, f as borderNoneIconSvg, g as arrowsToDotIconSvg, h as arrowsLeftRightIconSvg, w as wrenchIconSvg, N as NSkeleton } from "./chunks/toolbar-Rn4dRKXD.js";
|
|
18
18
|
import AIWriter from "./ai-writer.es.js";
|
|
19
|
-
import { D } from "./chunks/docx-zipper-
|
|
19
|
+
import { D } from "./chunks/docx-zipper-quMgrnqn.js";
|
|
20
20
|
import { createZip } from "./file-zipper.es.js";
|
|
21
21
|
var eventemitter3 = { exports: {} };
|
|
22
22
|
var hasRequiredEventemitter3;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"export-helpers.d.ts","sourceRoot":"","sources":["../../../../src/tests/export/export-helpers/export-helpers.js"],"names":[],"mappings":"AAcO,4CAFM,MAAM,CAOlB;AAmCM,wCAHI,MAAM,qBACJ,OAAO,KAAQ,
|
|
1
|
+
{"version":3,"file":"export-helpers.d.ts","sourceRoot":"","sources":["../../../../src/tests/export/export-helpers/export-helpers.js"],"names":[],"mappings":"AAcO,4CAFM,MAAM,CAOlB;AAmCM,wCAHI,MAAM,qBACJ,OAAO,KAAQ,CA4C3B;AAEM;;;GA2BN"}
|
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-BSgo4CVf.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, S, c, d, e, f, g, T, h, i, j, k, l, m, n, o, p, q } from "./chunks/super-editor.es-
|
|
1
|
+
import { A, a, _, C, D, E, b, S, c, d, e, f, g, T, h, i, j, k, l, m, n, o, p, q } from "./chunks/super-editor.es-sd3cj3jM.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-BSgo4CVf.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");
|
|
@@ -47847,7 +47847,7 @@ class SuperDoc extends eventemitter3.EventEmitter {
|
|
|
47847
47847
|
this.config.colors = shuffleArray(this.config.colors);
|
|
47848
47848
|
this.userColorMap = /* @__PURE__ */ new Map();
|
|
47849
47849
|
this.colorIndex = 0;
|
|
47850
|
-
this.version = "0.15.8-next.
|
|
47850
|
+
this.version = "0.15.8-next.2";
|
|
47851
47851
|
this.#log("🦋 [superdoc] Using SuperDoc version:", this.version);
|
|
47852
47852
|
this.superdocId = config.superdocId || uuid.v4();
|
|
47853
47853
|
this.colors = this.config.colors;
|
package/dist/superdoc.es.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { q as index$1, C as CommentsPluginKey, h as TrackChangesBasePluginKey, E as Editor, n as getRichTextExtensions, f as SuperInput, e as SuperEditor, A as AIWriter, g as SuperToolbar, i as createZip } from "./chunks/super-editor.es-
|
|
2
|
-
import { a, S, d, j, p } from "./chunks/super-editor.es-
|
|
1
|
+
import { q as index$1, C as CommentsPluginKey, h as TrackChangesBasePluginKey, E as Editor, n as getRichTextExtensions, f as SuperInput, e as SuperEditor, A as AIWriter, g as SuperToolbar, i as createZip } from "./chunks/super-editor.es-sd3cj3jM.es.js";
|
|
2
|
+
import { a, S, d, j, p } from "./chunks/super-editor.es-sd3cj3jM.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";
|
|
@@ -47830,7 +47830,7 @@ class SuperDoc extends EventEmitter {
|
|
|
47830
47830
|
this.config.colors = shuffleArray(this.config.colors);
|
|
47831
47831
|
this.userColorMap = /* @__PURE__ */ new Map();
|
|
47832
47832
|
this.colorIndex = 0;
|
|
47833
|
-
this.version = "0.15.8-next.
|
|
47833
|
+
this.version = "0.15.8-next.2";
|
|
47834
47834
|
this.#log("🦋 [superdoc] Using SuperDoc version:", this.version);
|
|
47835
47835
|
this.superdocId = config.superdocId || v4();
|
|
47836
47836
|
this.colors = this.config.colors;
|
package/dist/superdoc.umd.js
CHANGED
|
@@ -35736,7 +35736,7 @@
|
|
|
35736
35736
|
handlerName: "handlePictNode",
|
|
35737
35737
|
handler: handlePictNode
|
|
35738
35738
|
};
|
|
35739
|
-
function importCommentData({ docx }) {
|
|
35739
|
+
function importCommentData({ docx, editor, converter }) {
|
|
35740
35740
|
const nodeListHandler2 = defaultNodeListHandler();
|
|
35741
35741
|
const comments = docx["word/comments.xml"];
|
|
35742
35742
|
if (!comments) return;
|
|
@@ -35763,7 +35763,9 @@
|
|
|
35763
35763
|
const parsedComment = nodeListHandler2.handler({
|
|
35764
35764
|
nodes: el.elements,
|
|
35765
35765
|
nodeListHandler: nodeListHandler2,
|
|
35766
|
-
docx
|
|
35766
|
+
docx,
|
|
35767
|
+
editor,
|
|
35768
|
+
converter
|
|
35767
35769
|
});
|
|
35768
35770
|
const { attrs } = parsedComment[0];
|
|
35769
35771
|
const paraId = attrs["w14:paraId"];
|
|
@@ -35842,7 +35844,7 @@
|
|
|
35842
35844
|
const node2 = bodyNode;
|
|
35843
35845
|
const ignoreNodes = ["w:sectPr"];
|
|
35844
35846
|
const content = node2.elements?.filter((n) => !ignoreNodes.includes(n.name)) ?? [];
|
|
35845
|
-
const comments = importCommentData({ docx });
|
|
35847
|
+
const comments = importCommentData({ docx, converter, editor });
|
|
35846
35848
|
const lists = {};
|
|
35847
35849
|
const parsedContent = nodeListHandler2.handler({
|
|
35848
35850
|
nodes: content,
|
|
@@ -36397,7 +36399,7 @@
|
|
|
36397
36399
|
return;
|
|
36398
36400
|
}
|
|
36399
36401
|
}
|
|
36400
|
-
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.15.8-next.
|
|
36402
|
+
static updateDocumentVersion(docx = this.convertedXml, version2 = "0.15.8-next.2") {
|
|
36401
36403
|
const customLocation = "docProps/custom.xml";
|
|
36402
36404
|
if (!docx[customLocation]) {
|
|
36403
36405
|
docx[customLocation] = generateCustomXml();
|
|
@@ -36876,7 +36878,7 @@
|
|
|
36876
36878
|
function generateCustomXml() {
|
|
36877
36879
|
return DEFAULT_CUSTOM_XML;
|
|
36878
36880
|
}
|
|
36879
|
-
function generateSuperdocVersion(pid = 2, version2 = "0.15.8-next.
|
|
36881
|
+
function generateSuperdocVersion(pid = 2, version2 = "0.15.8-next.2") {
|
|
36880
36882
|
return {
|
|
36881
36883
|
type: "element",
|
|
36882
36884
|
name: "property",
|
|
@@ -53203,7 +53205,7 @@
|
|
|
53203
53205
|
* @returns {Object | void} Migration results
|
|
53204
53206
|
*/
|
|
53205
53207
|
processCollaborationMigrations() {
|
|
53206
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.15.8-next.
|
|
53208
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.15.8-next.2");
|
|
53207
53209
|
if (!this.options.ydoc) return;
|
|
53208
53210
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
53209
53211
|
let docVersion = metaMap.get("version");
|
|
@@ -100025,7 +100027,7 @@ ${style2}
|
|
|
100025
100027
|
this.config.colors = shuffleArray(this.config.colors);
|
|
100026
100028
|
this.userColorMap = /* @__PURE__ */ new Map();
|
|
100027
100029
|
this.colorIndex = 0;
|
|
100028
|
-
this.version = "0.15.8-next.
|
|
100030
|
+
this.version = "0.15.8-next.2";
|
|
100029
100031
|
this.#log("🦋 [superdoc] Using SuperDoc version:", this.version);
|
|
100030
100032
|
this.superdocId = config.superdocId || v4();
|
|
100031
100033
|
this.colors = this.config.colors;
|