superdoc 1.9.0 → 1.9.1-next.1
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/{PdfViewer-WdyXSIvk.cjs → PdfViewer-BO--zeoy.cjs} +2 -2
- package/dist/chunks/{PdfViewer-D1Am0D4N.es.js → PdfViewer-DhDoHZIF.es.js} +2 -2
- package/dist/chunks/{SuperConverter-VeJEcjsk.cjs → SuperConverter--rKkH2Uf.cjs} +17 -2
- package/dist/chunks/{SuperConverter-CQG__OC1.es.js → SuperConverter-BEy6K0ME.es.js} +17 -2
- package/dist/chunks/{index-s4_zQhVC.cjs → index-CYSWpRfU.cjs} +9 -9
- package/dist/chunks/{index-CWI4NbKU.es.js → index-QekFDC0-.es.js} +42 -5
- package/dist/chunks/{index-DCmsKDv1.cjs → index-czpxV6Ny.cjs} +42 -5
- package/dist/chunks/{index-VYosokDK.es.js → index-nXvvUWEk.es.js} +9 -9
- package/dist/style.css +17 -17
- package/dist/super-editor/converter.cjs +1 -1
- package/dist/super-editor/converter.es.js +1 -1
- package/dist/super-editor/core/presentation-editor/PresentationEditor.d.ts.map +1 -1
- package/dist/super-editor/core/presentation-editor/pointer-events/EditorInputManager.d.ts.map +1 -1
- package/dist/super-editor/core/super-converter/v2/importer/documentCommentsImporter.d.ts.map +1 -1
- package/dist/super-editor.cjs +2 -2
- package/dist/super-editor.es.js +3 -3
- package/dist/superdoc/src/stores/comments-store.d.ts +1 -1
- package/dist/superdoc/src/stores/superdoc-store.d.ts +3 -3
- package/dist/superdoc.cjs +3 -3
- package/dist/superdoc.es.js +3 -3
- package/dist/superdoc.umd.js +64 -12
- package/dist/superdoc.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
const vue = require("./vue-De9wkgLl.cjs");
|
|
4
|
-
const superdoc = require("./index-
|
|
5
|
-
const index = require("./index-
|
|
4
|
+
const superdoc = require("./index-CYSWpRfU.cjs");
|
|
5
|
+
const index = require("./index-czpxV6Ny.cjs");
|
|
6
6
|
function self(vars) {
|
|
7
7
|
const {
|
|
8
8
|
opacityDisabled,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { d as defineComponent, h, T as Transition, p as process$1, w as watchEffect, b as computed, r as ref, e as onMounted, f as onUnmounted, c as createElementBlock, o as openBlock, a as createBaseVNode, g as createCommentVNode, i as createVNode, u as unref } from "./vue-DI6_Tcq0.es.js";
|
|
2
|
-
import { N as NBaseLoading, u as useSuperdocStore, s as storeToRefs, a as useSelection } from "./index-
|
|
3
|
-
import { o as derived, p as c, q as cB, r as fadeInTransition, s as cM, w as warnOnce, u as useConfig, t as useTheme, v as pxfy, x as createKey, y as useThemeClass, z as useCompitable, B as _export_sfc } from "./index-
|
|
2
|
+
import { N as NBaseLoading, u as useSuperdocStore, s as storeToRefs, a as useSelection } from "./index-nXvvUWEk.es.js";
|
|
3
|
+
import { o as derived, p as c, q as cB, r as fadeInTransition, s as cM, w as warnOnce, u as useConfig, t as useTheme, v as pxfy, x as createKey, y as useThemeClass, z as useCompitable, B as _export_sfc } from "./index-QekFDC0-.es.js";
|
|
4
4
|
function self(vars) {
|
|
5
5
|
const {
|
|
6
6
|
opacityDisabled,
|
|
@@ -29960,8 +29960,9 @@ function importCommentData({ docx, editor, converter }) {
|
|
|
29960
29960
|
const lastElement = parsedElements[parsedElements.length - 1];
|
|
29961
29961
|
const paraId = lastElement?.attrs?.["w14:paraId"];
|
|
29962
29962
|
const threadingMethod = commentThreadingProfile.defaultStyle;
|
|
29963
|
+
const commentId = getCommentId(internalId, importedId, unixTimestampMs);
|
|
29963
29964
|
return {
|
|
29964
|
-
commentId
|
|
29965
|
+
commentId,
|
|
29965
29966
|
importedId,
|
|
29966
29967
|
creatorName: authorName,
|
|
29967
29968
|
creatorEmail: authorEmail,
|
|
@@ -30340,6 +30341,20 @@ const applyParentRelationships = (comments, parentMap, trackedChangeParentMap =
|
|
|
30340
30341
|
return updatedComment;
|
|
30341
30342
|
});
|
|
30342
30343
|
};
|
|
30344
|
+
const simpleHash = (input) => {
|
|
30345
|
+
let hash = 2166136261;
|
|
30346
|
+
for (let i = 0; i < input.length; i++) {
|
|
30347
|
+
hash ^= input.charCodeAt(i);
|
|
30348
|
+
hash += (hash << 1) + (hash << 4) + (hash << 7) + (hash << 8) + (hash << 24);
|
|
30349
|
+
}
|
|
30350
|
+
return (hash >>> 0).toString(16).padStart(8, "0");
|
|
30351
|
+
};
|
|
30352
|
+
const getCommentId = (internalId, importedId, createdTime) => {
|
|
30353
|
+
if (internalId != null) return internalId;
|
|
30354
|
+
if (importedId == null || !Number.isFinite(createdTime)) return uuid.v4();
|
|
30355
|
+
const hash = simpleHash(`${importedId}-${createdTime}`);
|
|
30356
|
+
return `imported-${hash}`;
|
|
30357
|
+
};
|
|
30343
30358
|
const stripFootnoteMarkerNodes = (nodes) => {
|
|
30344
30359
|
if (!Array.isArray(nodes) || nodes.length === 0) return nodes;
|
|
30345
30360
|
const walk = (list) => {
|
|
@@ -33705,7 +33720,7 @@ class SuperConverter {
|
|
|
33705
33720
|
static getStoredSuperdocVersion(docx) {
|
|
33706
33721
|
return SuperConverter.getStoredCustomProperty(docx, "SuperdocVersion");
|
|
33707
33722
|
}
|
|
33708
|
-
static setStoredSuperdocVersion(docx = this.convertedXml, version = "1.9.
|
|
33723
|
+
static setStoredSuperdocVersion(docx = this.convertedXml, version = "1.9.1-next.1") {
|
|
33709
33724
|
return SuperConverter.setStoredCustomProperty(docx, "SuperdocVersion", version, false);
|
|
33710
33725
|
}
|
|
33711
33726
|
/**
|
|
@@ -29959,8 +29959,9 @@ function importCommentData({ docx, editor, converter }) {
|
|
|
29959
29959
|
const lastElement = parsedElements[parsedElements.length - 1];
|
|
29960
29960
|
const paraId = lastElement?.attrs?.["w14:paraId"];
|
|
29961
29961
|
const threadingMethod = commentThreadingProfile.defaultStyle;
|
|
29962
|
+
const commentId = getCommentId(internalId, importedId, unixTimestampMs);
|
|
29962
29963
|
return {
|
|
29963
|
-
commentId
|
|
29964
|
+
commentId,
|
|
29964
29965
|
importedId,
|
|
29965
29966
|
creatorName: authorName,
|
|
29966
29967
|
creatorEmail: authorEmail,
|
|
@@ -30339,6 +30340,20 @@ const applyParentRelationships = (comments, parentMap, trackedChangeParentMap =
|
|
|
30339
30340
|
return updatedComment;
|
|
30340
30341
|
});
|
|
30341
30342
|
};
|
|
30343
|
+
const simpleHash = (input) => {
|
|
30344
|
+
let hash = 2166136261;
|
|
30345
|
+
for (let i = 0; i < input.length; i++) {
|
|
30346
|
+
hash ^= input.charCodeAt(i);
|
|
30347
|
+
hash += (hash << 1) + (hash << 4) + (hash << 7) + (hash << 8) + (hash << 24);
|
|
30348
|
+
}
|
|
30349
|
+
return (hash >>> 0).toString(16).padStart(8, "0");
|
|
30350
|
+
};
|
|
30351
|
+
const getCommentId = (internalId, importedId, createdTime) => {
|
|
30352
|
+
if (internalId != null) return internalId;
|
|
30353
|
+
if (importedId == null || !Number.isFinite(createdTime)) return v4();
|
|
30354
|
+
const hash = simpleHash(`${importedId}-${createdTime}`);
|
|
30355
|
+
return `imported-${hash}`;
|
|
30356
|
+
};
|
|
30342
30357
|
const stripFootnoteMarkerNodes = (nodes) => {
|
|
30343
30358
|
if (!Array.isArray(nodes) || nodes.length === 0) return nodes;
|
|
30344
30359
|
const walk = (list) => {
|
|
@@ -33704,7 +33719,7 @@ class SuperConverter {
|
|
|
33704
33719
|
static getStoredSuperdocVersion(docx) {
|
|
33705
33720
|
return SuperConverter.getStoredCustomProperty(docx, "SuperdocVersion");
|
|
33706
33721
|
}
|
|
33707
|
-
static setStoredSuperdocVersion(docx = this.convertedXml, version = "1.9.
|
|
33722
|
+
static setStoredSuperdocVersion(docx = this.convertedXml, version = "1.9.1-next.1") {
|
|
33708
33723
|
return SuperConverter.setStoredCustomProperty(docx, "SuperdocVersion", version, false);
|
|
33709
33724
|
}
|
|
33710
33725
|
/**
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
const index = require("./index-
|
|
2
|
+
const index = require("./index-czpxV6Ny.cjs");
|
|
3
3
|
const blankDocx = require("./blank-docx-DfW3Eeh2.cjs");
|
|
4
4
|
require("./jszip-C8_CqJxM.cjs");
|
|
5
5
|
require("./helpers-C7_u3NNJ.cjs");
|
|
6
|
-
require("./SuperConverter
|
|
6
|
+
require("./SuperConverter--rKkH2Uf.cjs");
|
|
7
7
|
const eventemitter3 = require("./eventemitter3-BQuRcMPI.cjs");
|
|
8
8
|
const vue = require("./vue-De9wkgLl.cjs");
|
|
9
9
|
require("./jszip.min-BPh2MMAa.cjs");
|
|
@@ -6635,15 +6635,15 @@ const _sfc_main$c = {
|
|
|
6635
6635
|
vue.createBaseVNode("div", _hoisted_3$4, [
|
|
6636
6636
|
vue.createBaseVNode("div", _hoisted_4$2, [
|
|
6637
6637
|
comment.trackedChangeType === "trackFormat" ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_5$1, [
|
|
6638
|
-
_cache[
|
|
6638
|
+
_cache[1] || (_cache[1] = vue.createBaseVNode("span", { class: "change-type" }, "Format: ", -1)),
|
|
6639
6639
|
vue.createBaseVNode("span", _hoisted_6, vue.toDisplayString(comment.trackedChangeText), 1)
|
|
6640
6640
|
])) : vue.createCommentVNode("", true),
|
|
6641
6641
|
comment.trackedChangeText && comment.trackedChangeType !== "trackFormat" ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_7, [
|
|
6642
|
-
_cache[
|
|
6642
|
+
_cache[2] || (_cache[2] = vue.createBaseVNode("span", { class: "change-type" }, "Added: ", -1)),
|
|
6643
6643
|
vue.createBaseVNode("span", _hoisted_8, vue.toDisplayString(comment.trackedChangeText), 1)
|
|
6644
6644
|
])) : vue.createCommentVNode("", true),
|
|
6645
6645
|
comment.deletedText && comment.trackedChangeType !== "trackFormat" ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_9, [
|
|
6646
|
-
_cache[
|
|
6646
|
+
_cache[3] || (_cache[3] = vue.createBaseVNode("span", { class: "change-type" }, "Deleted: ", -1)),
|
|
6647
6647
|
vue.createBaseVNode("span", _hoisted_10, vue.toDisplayString(comment.deletedText), 1)
|
|
6648
6648
|
])) : vue.createCommentVNode("", true)
|
|
6649
6649
|
])
|
|
@@ -6687,7 +6687,7 @@ const _sfc_main$c = {
|
|
|
6687
6687
|
showButtons.value && !vue.unref(getConfig).readOnly ? (vue.openBlock(), vue.createElementBlock("div", _hoisted_20, [
|
|
6688
6688
|
vue.createBaseVNode("button", {
|
|
6689
6689
|
class: "sd-button",
|
|
6690
|
-
onClick:
|
|
6690
|
+
onClick: vue.withModifiers(handleCancel, ["stop", "prevent"])
|
|
6691
6691
|
}, "Cancel"),
|
|
6692
6692
|
vue.createBaseVNode("button", {
|
|
6693
6693
|
class: vue.normalizeClass(["sd-button primary", { disabled: !hasTextContent.value }]),
|
|
@@ -6702,7 +6702,7 @@ const _sfc_main$c = {
|
|
|
6702
6702
|
};
|
|
6703
6703
|
}
|
|
6704
6704
|
};
|
|
6705
|
-
const CommentDialog = /* @__PURE__ */ index._export_sfc(_sfc_main$c, [["__scopeId", "data-v-
|
|
6705
|
+
const CommentDialog = /* @__PURE__ */ index._export_sfc(_sfc_main$c, [["__scopeId", "data-v-0bdd1e37"]]);
|
|
6706
6706
|
const _hoisted_1$a = { class: "comments-list" };
|
|
6707
6707
|
const _hoisted_2$5 = { key: 0 };
|
|
6708
6708
|
const _hoisted_3$3 = { class: "comment-item" };
|
|
@@ -7709,7 +7709,7 @@ const _sfc_main = {
|
|
|
7709
7709
|
__name: "SuperDoc",
|
|
7710
7710
|
emits: ["selection-update"],
|
|
7711
7711
|
setup(__props, { emit: __emit }) {
|
|
7712
|
-
const PdfViewer = vue.defineAsyncComponent(() => Promise.resolve().then(() => require("./PdfViewer-
|
|
7712
|
+
const PdfViewer = vue.defineAsyncComponent(() => Promise.resolve().then(() => require("./PdfViewer-BO--zeoy.cjs")));
|
|
7713
7713
|
const superdocStore = useSuperdocStore();
|
|
7714
7714
|
const commentsStore = useCommentsStore();
|
|
7715
7715
|
const {
|
|
@@ -8694,7 +8694,7 @@ class SuperDoc extends eventemitter3.EventEmitter {
|
|
|
8694
8694
|
this.config.colors = shuffleArray(this.config.colors);
|
|
8695
8695
|
this.userColorMap = /* @__PURE__ */ new Map();
|
|
8696
8696
|
this.colorIndex = 0;
|
|
8697
|
-
this.version = "1.9.
|
|
8697
|
+
this.version = "1.9.1-next.1";
|
|
8698
8698
|
this.#log("🦋 [superdoc] Using SuperDoc version:", this.version);
|
|
8699
8699
|
this.superdocId = config.superdocId || uuid.v4();
|
|
8700
8700
|
this.colors = this.config.colors;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { g as generateDocxRandomId, T as TextSelection$1, o as objectIncludes, w as wrapTextsInRuns, D as DOMParser$1, c as createDocFromMarkdown, a as createDocFromHTML, F as Fragment, b as chainableEditorState, d as convertMarkdownToHTML, f as findParentNode, e as findParentNodeClosestToPos, h as generateRandom32BitHex, i as generateRandomSigned32BitIntStrId, P as PluginKey, j as Plugin, M as Mapping, N as NodeSelection, k as Selection, l as Slice, m as DOMSerializer, n as Mark$1, p as dropPoint, A as AllSelection, q as Schema$1, s as canSplit, t as resolveRunProperties, u as encodeMarksFromRPr, v as liftTarget, x as canJoin, y as joinPoint, z as replaceStep$1, R as ReplaceAroundStep$1, B as htmlHandler, C as ReplaceStep, E as getResolvedParagraphProperties, G as changeListLevel, H as isList$1, I as updateNumberingProperties, L as ListHelpers, J as inputRulesPlugin, K as TrackDeleteMarkName, O as TrackInsertMarkName, Q as TrackFormatMarkName, U as AddMarkStep, V as RemoveMarkStep, W as CommandService, S as SuperConverter, X as EditorState, Y as unflattenListsInHtml, Z as SelectionRange, _ as Transform, $ as resolveParagraphProperties, a0 as resolveDocxFontFamily, a1 as _getReferencedTableStyles, a2 as decodeRPrFromMarks, a3 as carbonCopy, a4 as calculateResolvedParagraphProperties, a5 as encodeCSSFromPPr, a6 as encodeCSSFromRPr, a7 as generateOrderedListIndex, a8 as docxNumberingHelpers, a9 as InputRule, aa as insertNewRelationship, ab as kebabCase$1, ac as getUnderlineCssString } from "./SuperConverter-
|
|
1
|
+
import { g as generateDocxRandomId, T as TextSelection$1, o as objectIncludes, w as wrapTextsInRuns, D as DOMParser$1, c as createDocFromMarkdown, a as createDocFromHTML, F as Fragment, b as chainableEditorState, d as convertMarkdownToHTML, f as findParentNode, e as findParentNodeClosestToPos, h as generateRandom32BitHex, i as generateRandomSigned32BitIntStrId, P as PluginKey, j as Plugin, M as Mapping, N as NodeSelection, k as Selection, l as Slice, m as DOMSerializer, n as Mark$1, p as dropPoint, A as AllSelection, q as Schema$1, s as canSplit, t as resolveRunProperties, u as encodeMarksFromRPr, v as liftTarget, x as canJoin, y as joinPoint, z as replaceStep$1, R as ReplaceAroundStep$1, B as htmlHandler, C as ReplaceStep, E as getResolvedParagraphProperties, G as changeListLevel, H as isList$1, I as updateNumberingProperties, L as ListHelpers, J as inputRulesPlugin, K as TrackDeleteMarkName, O as TrackInsertMarkName, Q as TrackFormatMarkName, U as AddMarkStep, V as RemoveMarkStep, W as CommandService, S as SuperConverter, X as EditorState, Y as unflattenListsInHtml, Z as SelectionRange, _ as Transform, $ as resolveParagraphProperties, a0 as resolveDocxFontFamily, a1 as _getReferencedTableStyles, a2 as decodeRPrFromMarks, a3 as carbonCopy, a4 as calculateResolvedParagraphProperties, a5 as encodeCSSFromPPr, a6 as encodeCSSFromRPr, a7 as generateOrderedListIndex, a8 as docxNumberingHelpers, a9 as InputRule, aa as insertNewRelationship, ab as kebabCase$1, ac as getUnderlineCssString } from "./SuperConverter-BEy6K0ME.es.js";
|
|
2
2
|
import { B as Buffer$2 } from "./jszip-BjHgpFjf.es.js";
|
|
3
3
|
import { j as twipsToInches, m as inchesToTwips, p as ptToTwips, d as linesToTwips, f as twipsToLines, k as pixelsToTwips, z as resolveOpcTargetPath, C as getArrayBufferFromUrl, h as halfPointToPoints, c as twipsToPixels$2, D as convertSizeToCSS, E as inchesToPixels } from "./helpers-BsvIMOxu.es.js";
|
|
4
4
|
import { p as process$1, r as ref, J as global$1, b as computed, c as createElementBlock, F as Fragment$1, U as renderList, P as withModifiers, o as openBlock, Q as normalizeClass, g as createCommentVNode, L as toDisplayString, a as createBaseVNode, V as createApp, e as onMounted, f as onUnmounted, S as withDirectives, u as unref, Y as vModelText, E as nextTick, N as normalizeStyle, C as watch, Z as withKeys, _ as createTextVNode, i as createVNode, h as h$1, $ as readonly, B as getCurrentInstance, l as onBeforeUnmount, s as reactive, m as onBeforeMount, j as inject, a0 as onActivated, a1 as onDeactivated, a2 as Comment, d as defineComponent, k as provide, q as Teleport, t as toRef, a3 as renderSlot, a4 as isVNode, K as shallowRef, w as watchEffect, T as Transition, a5 as mergeProps, a6 as vShow, a7 as cloneVNode, a8 as Text$2, x as markRaw, O as createBlock, M as withCtx, a9 as useCssVars, W as resolveDynamicComponent, aa as normalizeProps, ab as guardReactiveProps } from "./vue-DI6_Tcq0.es.js";
|
|
@@ -15798,7 +15798,7 @@ const canUseDOM = () => {
|
|
|
15798
15798
|
return false;
|
|
15799
15799
|
}
|
|
15800
15800
|
};
|
|
15801
|
-
const summaryVersion = "1.9.
|
|
15801
|
+
const summaryVersion = "1.9.1-next.1";
|
|
15802
15802
|
const nodeKeys = ["group", "content", "marks", "inline", "atom", "defining", "code", "tableRole", "summary"];
|
|
15803
15803
|
const markKeys = ["group", "inclusive", "excludes", "spanning", "code"];
|
|
15804
15804
|
function mapAttributes(attrs) {
|
|
@@ -18546,7 +18546,7 @@ class Editor extends EventEmitter {
|
|
|
18546
18546
|
* Process collaboration migrations
|
|
18547
18547
|
*/
|
|
18548
18548
|
processCollaborationMigrations() {
|
|
18549
|
-
console.debug("[checkVersionMigrations] Current editor version", "1.9.
|
|
18549
|
+
console.debug("[checkVersionMigrations] Current editor version", "1.9.1-next.1");
|
|
18550
18550
|
if (!this.options.ydoc) return;
|
|
18551
18551
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
18552
18552
|
let docVersion = metaMap.get("version");
|
|
@@ -47120,6 +47120,8 @@ class EditorInputManager {
|
|
|
47120
47120
|
#boundHandleClick = null;
|
|
47121
47121
|
#boundHandleKeyDown = null;
|
|
47122
47122
|
#boundHandleFocusIn = null;
|
|
47123
|
+
#boundHandleEditorFocus = null;
|
|
47124
|
+
#boundHandleEditorBlur = null;
|
|
47123
47125
|
// ==========================================================================
|
|
47124
47126
|
// Constructor
|
|
47125
47127
|
// ==========================================================================
|
|
@@ -47156,6 +47158,8 @@ class EditorInputManager {
|
|
|
47156
47158
|
this.#boundHandleClick = this.#handleClick.bind(this);
|
|
47157
47159
|
this.#boundHandleKeyDown = this.#handleKeyDown.bind(this);
|
|
47158
47160
|
this.#boundHandleFocusIn = this.#handleFocusIn.bind(this);
|
|
47161
|
+
this.#boundHandleEditorFocus = this.#handleEditorFocus.bind(this);
|
|
47162
|
+
this.#boundHandleEditorBlur = this.#handleEditorBlur.bind(this);
|
|
47159
47163
|
viewportHost.addEventListener("pointerdown", this.#boundHandlePointerDown);
|
|
47160
47164
|
viewportHost.addEventListener("pointermove", this.#boundHandlePointerMove);
|
|
47161
47165
|
viewportHost.addEventListener("pointerup", this.#boundHandlePointerUp);
|
|
@@ -47167,6 +47171,9 @@ class EditorInputManager {
|
|
|
47167
47171
|
container.addEventListener("keydown", this.#boundHandleKeyDown);
|
|
47168
47172
|
}
|
|
47169
47173
|
visibleHost.addEventListener("focusin", this.#boundHandleFocusIn);
|
|
47174
|
+
const editor = this.#deps.getEditor();
|
|
47175
|
+
editor.on?.("focus", this.#boundHandleEditorFocus);
|
|
47176
|
+
editor.on?.("blur", this.#boundHandleEditorBlur);
|
|
47170
47177
|
}
|
|
47171
47178
|
/**
|
|
47172
47179
|
* Unbind event listeners.
|
|
@@ -47202,6 +47209,12 @@ class EditorInputManager {
|
|
|
47202
47209
|
if (this.#boundHandleFocusIn) {
|
|
47203
47210
|
visibleHost.removeEventListener("focusin", this.#boundHandleFocusIn);
|
|
47204
47211
|
}
|
|
47212
|
+
if (this.#boundHandleEditorFocus) {
|
|
47213
|
+
this.#deps.getEditor().off?.("focus", this.#boundHandleEditorFocus);
|
|
47214
|
+
}
|
|
47215
|
+
if (this.#boundHandleEditorBlur) {
|
|
47216
|
+
this.#deps.getEditor().off?.("blur", this.#boundHandleEditorBlur);
|
|
47217
|
+
}
|
|
47205
47218
|
this.#boundHandlePointerDown = null;
|
|
47206
47219
|
this.#boundHandlePointerMove = null;
|
|
47207
47220
|
this.#boundHandlePointerUp = null;
|
|
@@ -47210,6 +47223,8 @@ class EditorInputManager {
|
|
|
47210
47223
|
this.#boundHandleClick = null;
|
|
47211
47224
|
this.#boundHandleKeyDown = null;
|
|
47212
47225
|
this.#boundHandleFocusIn = null;
|
|
47226
|
+
this.#boundHandleEditorFocus = null;
|
|
47227
|
+
this.#boundHandleEditorBlur = null;
|
|
47213
47228
|
}
|
|
47214
47229
|
/**
|
|
47215
47230
|
* Destroy the manager and clean up.
|
|
@@ -47489,6 +47504,10 @@ class EditorInputManager {
|
|
|
47489
47504
|
handledByDepth = this.#callbacks.selectWordAt?.(selectionPos) ?? false;
|
|
47490
47505
|
}
|
|
47491
47506
|
}
|
|
47507
|
+
const hasFocus = editor.view?.hasFocus?.() ?? false;
|
|
47508
|
+
if (!hasFocus) {
|
|
47509
|
+
this.#focusEditor();
|
|
47510
|
+
}
|
|
47492
47511
|
if (!handledByDepth) {
|
|
47493
47512
|
try {
|
|
47494
47513
|
let nextSelection = TextSelection$1.create(doc2, hit.pos);
|
|
@@ -47504,7 +47523,6 @@ class EditorInputManager {
|
|
|
47504
47523
|
}
|
|
47505
47524
|
}
|
|
47506
47525
|
this.#callbacks.scheduleSelectionUpdate?.();
|
|
47507
|
-
this.#focusEditor();
|
|
47508
47526
|
}
|
|
47509
47527
|
#handlePointerMove(event) {
|
|
47510
47528
|
if (!this.#deps) return;
|
|
@@ -47636,6 +47654,15 @@ class EditorInputManager {
|
|
|
47636
47654
|
this.#deps.getActiveEditor().view?.focus();
|
|
47637
47655
|
} catch {
|
|
47638
47656
|
}
|
|
47657
|
+
this.#callbacks.scheduleSelectionUpdate?.();
|
|
47658
|
+
}
|
|
47659
|
+
#handleEditorFocus() {
|
|
47660
|
+
if (!this.#deps) return;
|
|
47661
|
+
this.#callbacks.scheduleSelectionUpdate?.();
|
|
47662
|
+
}
|
|
47663
|
+
#handleEditorBlur() {
|
|
47664
|
+
if (!this.#deps) return;
|
|
47665
|
+
this.#callbacks.scheduleSelectionUpdate?.();
|
|
47639
47666
|
}
|
|
47640
47667
|
// ==========================================================================
|
|
47641
47668
|
// Handler Helpers
|
|
@@ -56941,8 +56968,18 @@ class PresentationEditor extends EventEmitter {
|
|
|
56941
56968
|
}
|
|
56942
56969
|
return;
|
|
56943
56970
|
}
|
|
56971
|
+
const activeEditor = this.getActiveEditor();
|
|
56972
|
+
const hasFocus = activeEditor?.view?.hasFocus?.() ?? false;
|
|
56973
|
+
if (!hasFocus) {
|
|
56974
|
+
try {
|
|
56975
|
+
this.#clearSelectedFieldAnnotationClass();
|
|
56976
|
+
this.#localSelectionLayer.innerHTML = "";
|
|
56977
|
+
} catch {
|
|
56978
|
+
}
|
|
56979
|
+
return;
|
|
56980
|
+
}
|
|
56944
56981
|
const layout = this.#layoutState.layout;
|
|
56945
|
-
const editorState =
|
|
56982
|
+
const editorState = activeEditor.state;
|
|
56946
56983
|
const selection = editorState?.selection;
|
|
56947
56984
|
if (!selection) {
|
|
56948
56985
|
try {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
"use strict";
|
|
2
|
-
const superEditor_converter = require("./SuperConverter
|
|
2
|
+
const superEditor_converter = require("./SuperConverter--rKkH2Uf.cjs");
|
|
3
3
|
const jszip = require("./jszip-C8_CqJxM.cjs");
|
|
4
4
|
const helpers$1 = require("./helpers-C7_u3NNJ.cjs");
|
|
5
5
|
const vue = require("./vue-De9wkgLl.cjs");
|
|
@@ -15815,7 +15815,7 @@ const canUseDOM = () => {
|
|
|
15815
15815
|
return false;
|
|
15816
15816
|
}
|
|
15817
15817
|
};
|
|
15818
|
-
const summaryVersion = "1.9.
|
|
15818
|
+
const summaryVersion = "1.9.1-next.1";
|
|
15819
15819
|
const nodeKeys = ["group", "content", "marks", "inline", "atom", "defining", "code", "tableRole", "summary"];
|
|
15820
15820
|
const markKeys = ["group", "inclusive", "excludes", "spanning", "code"];
|
|
15821
15821
|
function mapAttributes(attrs) {
|
|
@@ -18563,7 +18563,7 @@ class Editor extends EventEmitter {
|
|
|
18563
18563
|
* Process collaboration migrations
|
|
18564
18564
|
*/
|
|
18565
18565
|
processCollaborationMigrations() {
|
|
18566
|
-
console.debug("[checkVersionMigrations] Current editor version", "1.9.
|
|
18566
|
+
console.debug("[checkVersionMigrations] Current editor version", "1.9.1-next.1");
|
|
18567
18567
|
if (!this.options.ydoc) return;
|
|
18568
18568
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
18569
18569
|
let docVersion = metaMap.get("version");
|
|
@@ -47137,6 +47137,8 @@ class EditorInputManager {
|
|
|
47137
47137
|
#boundHandleClick = null;
|
|
47138
47138
|
#boundHandleKeyDown = null;
|
|
47139
47139
|
#boundHandleFocusIn = null;
|
|
47140
|
+
#boundHandleEditorFocus = null;
|
|
47141
|
+
#boundHandleEditorBlur = null;
|
|
47140
47142
|
// ==========================================================================
|
|
47141
47143
|
// Constructor
|
|
47142
47144
|
// ==========================================================================
|
|
@@ -47173,6 +47175,8 @@ class EditorInputManager {
|
|
|
47173
47175
|
this.#boundHandleClick = this.#handleClick.bind(this);
|
|
47174
47176
|
this.#boundHandleKeyDown = this.#handleKeyDown.bind(this);
|
|
47175
47177
|
this.#boundHandleFocusIn = this.#handleFocusIn.bind(this);
|
|
47178
|
+
this.#boundHandleEditorFocus = this.#handleEditorFocus.bind(this);
|
|
47179
|
+
this.#boundHandleEditorBlur = this.#handleEditorBlur.bind(this);
|
|
47176
47180
|
viewportHost.addEventListener("pointerdown", this.#boundHandlePointerDown);
|
|
47177
47181
|
viewportHost.addEventListener("pointermove", this.#boundHandlePointerMove);
|
|
47178
47182
|
viewportHost.addEventListener("pointerup", this.#boundHandlePointerUp);
|
|
@@ -47184,6 +47188,9 @@ class EditorInputManager {
|
|
|
47184
47188
|
container.addEventListener("keydown", this.#boundHandleKeyDown);
|
|
47185
47189
|
}
|
|
47186
47190
|
visibleHost.addEventListener("focusin", this.#boundHandleFocusIn);
|
|
47191
|
+
const editor = this.#deps.getEditor();
|
|
47192
|
+
editor.on?.("focus", this.#boundHandleEditorFocus);
|
|
47193
|
+
editor.on?.("blur", this.#boundHandleEditorBlur);
|
|
47187
47194
|
}
|
|
47188
47195
|
/**
|
|
47189
47196
|
* Unbind event listeners.
|
|
@@ -47219,6 +47226,12 @@ class EditorInputManager {
|
|
|
47219
47226
|
if (this.#boundHandleFocusIn) {
|
|
47220
47227
|
visibleHost.removeEventListener("focusin", this.#boundHandleFocusIn);
|
|
47221
47228
|
}
|
|
47229
|
+
if (this.#boundHandleEditorFocus) {
|
|
47230
|
+
this.#deps.getEditor().off?.("focus", this.#boundHandleEditorFocus);
|
|
47231
|
+
}
|
|
47232
|
+
if (this.#boundHandleEditorBlur) {
|
|
47233
|
+
this.#deps.getEditor().off?.("blur", this.#boundHandleEditorBlur);
|
|
47234
|
+
}
|
|
47222
47235
|
this.#boundHandlePointerDown = null;
|
|
47223
47236
|
this.#boundHandlePointerMove = null;
|
|
47224
47237
|
this.#boundHandlePointerUp = null;
|
|
@@ -47227,6 +47240,8 @@ class EditorInputManager {
|
|
|
47227
47240
|
this.#boundHandleClick = null;
|
|
47228
47241
|
this.#boundHandleKeyDown = null;
|
|
47229
47242
|
this.#boundHandleFocusIn = null;
|
|
47243
|
+
this.#boundHandleEditorFocus = null;
|
|
47244
|
+
this.#boundHandleEditorBlur = null;
|
|
47230
47245
|
}
|
|
47231
47246
|
/**
|
|
47232
47247
|
* Destroy the manager and clean up.
|
|
@@ -47506,6 +47521,10 @@ class EditorInputManager {
|
|
|
47506
47521
|
handledByDepth = this.#callbacks.selectWordAt?.(selectionPos) ?? false;
|
|
47507
47522
|
}
|
|
47508
47523
|
}
|
|
47524
|
+
const hasFocus = editor.view?.hasFocus?.() ?? false;
|
|
47525
|
+
if (!hasFocus) {
|
|
47526
|
+
this.#focusEditor();
|
|
47527
|
+
}
|
|
47509
47528
|
if (!handledByDepth) {
|
|
47510
47529
|
try {
|
|
47511
47530
|
let nextSelection = superEditor_converter.TextSelection.create(doc2, hit.pos);
|
|
@@ -47521,7 +47540,6 @@ class EditorInputManager {
|
|
|
47521
47540
|
}
|
|
47522
47541
|
}
|
|
47523
47542
|
this.#callbacks.scheduleSelectionUpdate?.();
|
|
47524
|
-
this.#focusEditor();
|
|
47525
47543
|
}
|
|
47526
47544
|
#handlePointerMove(event) {
|
|
47527
47545
|
if (!this.#deps) return;
|
|
@@ -47653,6 +47671,15 @@ class EditorInputManager {
|
|
|
47653
47671
|
this.#deps.getActiveEditor().view?.focus();
|
|
47654
47672
|
} catch {
|
|
47655
47673
|
}
|
|
47674
|
+
this.#callbacks.scheduleSelectionUpdate?.();
|
|
47675
|
+
}
|
|
47676
|
+
#handleEditorFocus() {
|
|
47677
|
+
if (!this.#deps) return;
|
|
47678
|
+
this.#callbacks.scheduleSelectionUpdate?.();
|
|
47679
|
+
}
|
|
47680
|
+
#handleEditorBlur() {
|
|
47681
|
+
if (!this.#deps) return;
|
|
47682
|
+
this.#callbacks.scheduleSelectionUpdate?.();
|
|
47656
47683
|
}
|
|
47657
47684
|
// ==========================================================================
|
|
47658
47685
|
// Handler Helpers
|
|
@@ -56958,8 +56985,18 @@ class PresentationEditor extends EventEmitter {
|
|
|
56958
56985
|
}
|
|
56959
56986
|
return;
|
|
56960
56987
|
}
|
|
56988
|
+
const activeEditor = this.getActiveEditor();
|
|
56989
|
+
const hasFocus = activeEditor?.view?.hasFocus?.() ?? false;
|
|
56990
|
+
if (!hasFocus) {
|
|
56991
|
+
try {
|
|
56992
|
+
this.#clearSelectedFieldAnnotationClass();
|
|
56993
|
+
this.#localSelectionLayer.innerHTML = "";
|
|
56994
|
+
} catch {
|
|
56995
|
+
}
|
|
56996
|
+
return;
|
|
56997
|
+
}
|
|
56961
56998
|
const layout = this.#layoutState.layout;
|
|
56962
|
-
const editorState =
|
|
56999
|
+
const editorState = activeEditor.state;
|
|
56963
57000
|
const selection = editorState?.selection;
|
|
56964
57001
|
if (!selection) {
|
|
56965
57002
|
try {
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { D as BIT8, F as MAX_SAFE_INTEGER, G as create, H as BITS7, I as utf8TextDecoder, J as create$1, K as setIfUndefined, L as create$2, O as from, Q as floor$1, R as equalityDeep, U as writeVarUint, V as writeVarString, W as toUint8Array, X as createEncoder, Y as createInjectionKey, Z as toString, $ as throwError, a0 as useSsrAdapter, a1 as configProviderInjectionKey, a2 as cssrAnchorMetaName, a3 as globalStyle, q as cB, p as c, a4 as isMounted, a5 as commonVariables$2, s as cM, a6 as cNotM, a7 as cE, o as derived, a8 as changeColor, a9 as insideModal, aa as insidePopover, ab as resolveWrappedSlot, ac as on, w as warnOnce, u as useConfig, ad as useMergedState, ae as useMemo, t as useTheme, af as useRtl, x as createKey, y as useThemeClass, ag as createId, ah as call, ai as render, aj as messageProviderInjectionKey, ak as messageApiInjectionKey, j as getStarterExtensions, k as getRichTextExtensions, E as Editor, al as fromBase64, am as onChange, an as varStorage, ao as toBase64, ap as createUint8ArrayFromArrayBuffer, aq as offChange, ar as writeVarUint8Array, as as map, at as length, au as isNode, av as min, aw as pow, ax as comments_module_events, ay as getFileObject, az as getTrackChanges, C as CommentsPluginKey, n as TrackChangesBasePluginKey, aA as ellipsisVerticalSvg, aB as xmarkIconSvg, aC as checkIconSvg, aD as caretDownIconSvg, aE as commentIconSvg, B as _export_sfc, aF as NDropdown, b as SuperInput, aG as vClickOutside, P as PresentationEditor, a as SuperEditor, A as AIWriter, aH as NConfigProvider, S as SuperToolbar } from "./index-
|
|
1
|
+
import { D as BIT8, F as MAX_SAFE_INTEGER, G as create, H as BITS7, I as utf8TextDecoder, J as create$1, K as setIfUndefined, L as create$2, O as from, Q as floor$1, R as equalityDeep, U as writeVarUint, V as writeVarString, W as toUint8Array, X as createEncoder, Y as createInjectionKey, Z as toString, $ as throwError, a0 as useSsrAdapter, a1 as configProviderInjectionKey, a2 as cssrAnchorMetaName, a3 as globalStyle, q as cB, p as c, a4 as isMounted, a5 as commonVariables$2, s as cM, a6 as cNotM, a7 as cE, o as derived, a8 as changeColor, a9 as insideModal, aa as insidePopover, ab as resolveWrappedSlot, ac as on, w as warnOnce, u as useConfig, ad as useMergedState, ae as useMemo, t as useTheme, af as useRtl, x as createKey, y as useThemeClass, ag as createId, ah as call, ai as render, aj as messageProviderInjectionKey, ak as messageApiInjectionKey, j as getStarterExtensions, k as getRichTextExtensions, E as Editor, al as fromBase64, am as onChange, an as varStorage, ao as toBase64, ap as createUint8ArrayFromArrayBuffer, aq as offChange, ar as writeVarUint8Array, as as map, at as length, au as isNode, av as min, aw as pow, ax as comments_module_events, ay as getFileObject, az as getTrackChanges, C as CommentsPluginKey, n as TrackChangesBasePluginKey, aA as ellipsisVerticalSvg, aB as xmarkIconSvg, aC as checkIconSvg, aD as caretDownIconSvg, aE as commentIconSvg, B as _export_sfc, aF as NDropdown, b as SuperInput, aG as vClickOutside, P as PresentationEditor, a as SuperEditor, A as AIWriter, aH as NConfigProvider, S as SuperToolbar } from "./index-QekFDC0-.es.js";
|
|
2
2
|
import { B as BlankDOCX } from "./blank-docx-ABm6XYAA.es.js";
|
|
3
3
|
import "./jszip-BjHgpFjf.es.js";
|
|
4
4
|
import "./helpers-BsvIMOxu.es.js";
|
|
5
|
-
import "./SuperConverter-
|
|
5
|
+
import "./SuperConverter-BEy6K0ME.es.js";
|
|
6
6
|
import { E as EventEmitter } from "./eventemitter3-B9iqx_uA.es.js";
|
|
7
7
|
import { j as inject, k as provide, b as computed, l as onBeforeUnmount, p as process$1, m as onBeforeMount, d as defineComponent, h, t as toRef, T as Transition, n as TransitionGroup, w as watchEffect, r as ref, e as onMounted, q as Teleport, F as Fragment, s as reactive, v as effectScope, x as markRaw, y as toRaw, z as isRef, A as isReactive, B as getCurrentInstance, C as watch, u as unref, D as hasInjectionContext, E as nextTick, G as getCurrentScope, H as onScopeDispose, I as toRefs, J as global, K as shallowRef, c as createElementBlock, o as openBlock, L as toDisplayString, i as createVNode, M as withCtx, a as createBaseVNode, N as normalizeStyle, g as createCommentVNode, O as createBlock, P as withModifiers, Q as normalizeClass, R as resolveDirective, S as withDirectives, U as renderList, V as createApp, W as resolveDynamicComponent, X as defineAsyncComponent } from "./vue-DI6_Tcq0.es.js";
|
|
8
8
|
import "./jszip.min-BWx74pG_.es.js";
|
|
@@ -6618,15 +6618,15 @@ const _sfc_main$c = {
|
|
|
6618
6618
|
createBaseVNode("div", _hoisted_3$4, [
|
|
6619
6619
|
createBaseVNode("div", _hoisted_4$2, [
|
|
6620
6620
|
comment.trackedChangeType === "trackFormat" ? (openBlock(), createElementBlock("div", _hoisted_5$1, [
|
|
6621
|
-
_cache[
|
|
6621
|
+
_cache[1] || (_cache[1] = createBaseVNode("span", { class: "change-type" }, "Format: ", -1)),
|
|
6622
6622
|
createBaseVNode("span", _hoisted_6, toDisplayString(comment.trackedChangeText), 1)
|
|
6623
6623
|
])) : createCommentVNode("", true),
|
|
6624
6624
|
comment.trackedChangeText && comment.trackedChangeType !== "trackFormat" ? (openBlock(), createElementBlock("div", _hoisted_7, [
|
|
6625
|
-
_cache[
|
|
6625
|
+
_cache[2] || (_cache[2] = createBaseVNode("span", { class: "change-type" }, "Added: ", -1)),
|
|
6626
6626
|
createBaseVNode("span", _hoisted_8, toDisplayString(comment.trackedChangeText), 1)
|
|
6627
6627
|
])) : createCommentVNode("", true),
|
|
6628
6628
|
comment.deletedText && comment.trackedChangeType !== "trackFormat" ? (openBlock(), createElementBlock("div", _hoisted_9, [
|
|
6629
|
-
_cache[
|
|
6629
|
+
_cache[3] || (_cache[3] = createBaseVNode("span", { class: "change-type" }, "Deleted: ", -1)),
|
|
6630
6630
|
createBaseVNode("span", _hoisted_10, toDisplayString(comment.deletedText), 1)
|
|
6631
6631
|
])) : createCommentVNode("", true)
|
|
6632
6632
|
])
|
|
@@ -6670,7 +6670,7 @@ const _sfc_main$c = {
|
|
|
6670
6670
|
showButtons.value && !unref(getConfig).readOnly ? (openBlock(), createElementBlock("div", _hoisted_20, [
|
|
6671
6671
|
createBaseVNode("button", {
|
|
6672
6672
|
class: "sd-button",
|
|
6673
|
-
onClick:
|
|
6673
|
+
onClick: withModifiers(handleCancel, ["stop", "prevent"])
|
|
6674
6674
|
}, "Cancel"),
|
|
6675
6675
|
createBaseVNode("button", {
|
|
6676
6676
|
class: normalizeClass(["sd-button primary", { disabled: !hasTextContent.value }]),
|
|
@@ -6685,7 +6685,7 @@ const _sfc_main$c = {
|
|
|
6685
6685
|
};
|
|
6686
6686
|
}
|
|
6687
6687
|
};
|
|
6688
|
-
const CommentDialog = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__scopeId", "data-v-
|
|
6688
|
+
const CommentDialog = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__scopeId", "data-v-0bdd1e37"]]);
|
|
6689
6689
|
const _hoisted_1$a = { class: "comments-list" };
|
|
6690
6690
|
const _hoisted_2$5 = { key: 0 };
|
|
6691
6691
|
const _hoisted_3$3 = { class: "comment-item" };
|
|
@@ -7692,7 +7692,7 @@ const _sfc_main = {
|
|
|
7692
7692
|
__name: "SuperDoc",
|
|
7693
7693
|
emits: ["selection-update"],
|
|
7694
7694
|
setup(__props, { emit: __emit }) {
|
|
7695
|
-
const PdfViewer = defineAsyncComponent(() => import("./PdfViewer-
|
|
7695
|
+
const PdfViewer = defineAsyncComponent(() => import("./PdfViewer-DhDoHZIF.es.js"));
|
|
7696
7696
|
const superdocStore = useSuperdocStore();
|
|
7697
7697
|
const commentsStore = useCommentsStore();
|
|
7698
7698
|
const {
|
|
@@ -8677,7 +8677,7 @@ class SuperDoc extends EventEmitter {
|
|
|
8677
8677
|
this.config.colors = shuffleArray(this.config.colors);
|
|
8678
8678
|
this.userColorMap = /* @__PURE__ */ new Map();
|
|
8679
8679
|
this.colorIndex = 0;
|
|
8680
|
-
this.version = "1.9.
|
|
8680
|
+
this.version = "1.9.1-next.1";
|
|
8681
8681
|
this.#log("🦋 [superdoc] Using SuperDoc version:", this.version);
|
|
8682
8682
|
this.superdocId = config.superdocId || v4();
|
|
8683
8683
|
this.colors = this.config.colors;
|
package/dist/style.css
CHANGED
|
@@ -2346,32 +2346,32 @@ span[data-v-53e13009] {
|
|
|
2346
2346
|
display: inline-block;
|
|
2347
2347
|
}
|
|
2348
2348
|
|
|
2349
|
-
.change-type[data-v-
|
|
2349
|
+
.change-type[data-v-0bdd1e37] {
|
|
2350
2350
|
font-style: italic;
|
|
2351
2351
|
font-weight: 600;
|
|
2352
2352
|
font-size: 10px;
|
|
2353
2353
|
color: #555;
|
|
2354
2354
|
}
|
|
2355
|
-
.tracked-change[data-v-
|
|
2355
|
+
.tracked-change[data-v-0bdd1e37] {
|
|
2356
2356
|
font-size: 12px;
|
|
2357
2357
|
}
|
|
2358
|
-
.tracked-change-text[data-v-
|
|
2358
|
+
.tracked-change-text[data-v-0bdd1e37] {
|
|
2359
2359
|
color: #111;
|
|
2360
2360
|
}
|
|
2361
|
-
.comment-separator[data-v-
|
|
2361
|
+
.comment-separator[data-v-0bdd1e37] {
|
|
2362
2362
|
background-color: #dbdbdb;
|
|
2363
2363
|
height: 1px;
|
|
2364
2364
|
width: 100%;
|
|
2365
2365
|
margin: 10px 0;
|
|
2366
2366
|
font-weight: 400;
|
|
2367
2367
|
}
|
|
2368
|
-
.existing-internal-input[data-v-
|
|
2368
|
+
.existing-internal-input[data-v-0bdd1e37] {
|
|
2369
2369
|
margin-bottom: 10px;
|
|
2370
2370
|
}
|
|
2371
|
-
.initial-internal-dropdown[data-v-
|
|
2371
|
+
.initial-internal-dropdown[data-v-0bdd1e37] {
|
|
2372
2372
|
margin-top: 10px;
|
|
2373
2373
|
}
|
|
2374
|
-
.comments-dialog[data-v-
|
|
2374
|
+
.comments-dialog[data-v-0bdd1e37] {
|
|
2375
2375
|
display: flex;
|
|
2376
2376
|
flex-direction: column;
|
|
2377
2377
|
padding: 10px 15px;
|
|
@@ -2387,39 +2387,39 @@ span[data-v-53e13009] {
|
|
|
2387
2387
|
min-width: 200px;
|
|
2388
2388
|
width: 100%;
|
|
2389
2389
|
}
|
|
2390
|
-
.is-active[data-v-
|
|
2390
|
+
.is-active[data-v-0bdd1e37] {
|
|
2391
2391
|
z-index: 10;
|
|
2392
2392
|
}
|
|
2393
|
-
.input-section[data-v-
|
|
2393
|
+
.input-section[data-v-0bdd1e37] {
|
|
2394
2394
|
margin-top: 10px;
|
|
2395
2395
|
}
|
|
2396
|
-
.sd-button[data-v-
|
|
2396
|
+
.sd-button[data-v-0bdd1e37] {
|
|
2397
2397
|
font-size: 12px;
|
|
2398
2398
|
margin-left: 5px;
|
|
2399
2399
|
}
|
|
2400
|
-
.comment[data-v-
|
|
2400
|
+
.comment[data-v-0bdd1e37] {
|
|
2401
2401
|
font-size: 13px;
|
|
2402
2402
|
margin: 10px 0;
|
|
2403
2403
|
}
|
|
2404
|
-
.is-resolved[data-v-
|
|
2404
|
+
.is-resolved[data-v-0bdd1e37] {
|
|
2405
2405
|
background-color: #f0f0f0;
|
|
2406
2406
|
}
|
|
2407
|
-
.comment-footer[data-v-
|
|
2407
|
+
.comment-footer[data-v-0bdd1e37] {
|
|
2408
2408
|
margin: 5px 0 5px;
|
|
2409
2409
|
display: flex;
|
|
2410
2410
|
justify-content: flex-end;
|
|
2411
2411
|
width: 100%;
|
|
2412
2412
|
}
|
|
2413
|
-
.internal-dropdown[data-v-
|
|
2413
|
+
.internal-dropdown[data-v-0bdd1e37] {
|
|
2414
2414
|
display: inline-block;
|
|
2415
2415
|
}
|
|
2416
|
-
.comment-editing[data-v-
|
|
2416
|
+
.comment-editing[data-v-0bdd1e37] {
|
|
2417
2417
|
padding-bottom: 10px;
|
|
2418
2418
|
}
|
|
2419
|
-
.comment-editing button[data-v-
|
|
2419
|
+
.comment-editing button[data-v-0bdd1e37] {
|
|
2420
2420
|
margin-left: 5px;
|
|
2421
2421
|
}
|
|
2422
|
-
.tracked-change[data-v-
|
|
2422
|
+
.tracked-change[data-v-0bdd1e37] {
|
|
2423
2423
|
margin: 0;
|
|
2424
2424
|
}
|
|
2425
2425
|
|
|
@@ -2,6 +2,6 @@
|
|
|
2
2
|
Object.defineProperty(exports, Symbol.toStringTag, { value: "Module" });
|
|
3
3
|
require("../chunks/jszip-C8_CqJxM.cjs");
|
|
4
4
|
require("../chunks/helpers-C7_u3NNJ.cjs");
|
|
5
|
-
const superEditor_converter = require("../chunks/SuperConverter
|
|
5
|
+
const superEditor_converter = require("../chunks/SuperConverter--rKkH2Uf.cjs");
|
|
6
6
|
require("../chunks/uuid-R7L08bOx.cjs");
|
|
7
7
|
exports.SuperConverter = superEditor_converter.SuperConverter;
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import "../chunks/jszip-BjHgpFjf.es.js";
|
|
2
2
|
import "../chunks/helpers-BsvIMOxu.es.js";
|
|
3
|
-
import { S } from "../chunks/SuperConverter-
|
|
3
|
+
import { S } from "../chunks/SuperConverter-BEy6K0ME.es.js";
|
|
4
4
|
import "../chunks/uuid-CjlX8hrF.es.js";
|
|
5
5
|
export {
|
|
6
6
|
S as SuperConverter
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"PresentationEditor.d.ts","sourceRoot":"","sources":["../../../src/core/presentation-editor/PresentationEditor.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,WAAW,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAGlE,OAAO,EAAE,MAAM,EAAE,MAAM,cAAc,CAAC;AACtC,OAAO,EAAE,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAqElD,OAAO,KAAK,EAIV,WAAW,EAGZ,MAAM,yBAAyB,CAAC;AAEjC,OAAO,KAAK,EAAE,UAAU,EAAwC,MAAM,uBAAuB,CAAC;AAE9F,OAAO,KAAK,EAEV,SAAS,EACT,MAAM,EACN,OAAO,EACP,IAAI,EACJ,eAAe,EAGhB,MAAM,qBAAqB,CAAC;AAW7B,OAAO,KAAK,EAKV,iBAAiB,EAEjB,mBAAmB,EACnB,uBAAuB,EACvB,yBAAyB,EAQzB,WAAW,EAGX,aAAa,EACb,WAAW,EAEX,SAAS,EAQV,MAAM,YAAY,CAAC;AAGpB,YAAY,EACV,QAAQ,EACR,WAAW,EACX,qBAAqB,EACrB,cAAc,EACd,iBAAiB,EACjB,eAAe,EACf,mBAAmB,EACnB,uBAAuB,EACvB,yBAAyB,EACzB,0BAA0B,EAC1B,mBAAmB,EACnB,kBAAkB,EAClB,oBAAoB,EACpB,cAAc,GACf,MAAM,YAAY,CAAC;AAqCpB;;;GAGG;AACH,qBAAa,kBAAmB,SAAQ,YAAY;;IAIlD;;;;OAIG;IACH,MAAM,CAAC,QAAQ,CAAC,eAAe,WAS7B;IAEF;;;;OAIG;IACH,MAAM,CAAC,QAAQ,CAAC,aAAa;;;;;;;MAOlB;IAEX;;OAEG;IACH,MAAM,CAAC,WAAW,CAAC,UAAU,EAAE,MAAM,GAAG,kBAAkB,GAAG,SAAS;IAItE;;OAEG;IACH,MAAM,CAAC,aAAa,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;gBAoE5B,OAAO,EAAE,yBAAyB;IA0Y9C;;OAEG;IACH,IAAI,MAAM,IAAI,MAAM,CAEnB;IAED;;OAEG;IACH,IAAI,OAAO,IAAI,WAAW,CAEzB;IAED;;;;;;;;;;;;;;;;;OAiBG;IACH,IAAI,QAAQ,yCAGX;IAED;;;;;;;;;;;;;;;;;OAiBG;IACH,IAAI,KAAK,IAAI,WAAW,CAEvB;IAED;;;;;;;;;;;;;;;;;;;;OAoBG;IACH,IAAI,UAAU,IAAI,OAAO,CAExB;IAED;;;;;;;;;;;;;OAaG;IACH,IAAI,OAAO,wCAEV;IAED;;;;;;;;;;;;;;;;;;OAkBG;IACH,QAAQ,CAAC,EAAE,EAAE,WAAW,GAAG,IAAI;IAK/B;;;;;;;;;;;;;OAaG;IACH,KAAK,IAAI,IAAI;IAKb;;;;;;;;;;;;;OAaG;IACH,eAAe,IAAI,MAAM;IASzB;;OAEG;IACH,IAAI,IAAI,OAAO;IAQf;;OAEG;IACH,IAAI,IAAI,OAAO;IAQf;;;;;;;;;;;;;;OAcG;IACH,sBAAsB,CAAC,QAAQ,EAAE,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI;IAKzD;;;;;;;;;;;;;;OAcG;IACH,IAAI,WAAW,IAAI,WAAW,CAE7B;IAED;;;;;;;;;;;;;;;OAeG;IACH,IAAI,cAAc,IAAI,WAAW,GAAG,IAAI,CAEvC;IAED;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;OAsCG;IACH,IAAI,IAAI,IAAI,MAAM,CAEjB;IAED;;;;;;;;;;;;;;;;;;;;OAoBG;IACH,eAAe,CAAC,IAAI,EAAE,SAAS,GAAG,SAAS,GAAG,YAAY;IA6B1D;;;;;;OAMG;IACH,0BAA0B,CAAC,SAAS,CAAC,EAAE,uBAAuB;IAwB9D;;;;OAIG;IACH,wBAAwB,CACtB,OAAO,GAAE;QAAE,6BAA6B,CAAC,EAAE,OAAO,CAAC;QAAC,uBAAuB,CAAC,EAAE,OAAO,CAAA;KAAO;IA4B9F;;OAEG;IACH,sBAAsB,CAAC,QAAQ,EAAE,OAAO;IAIxC;;OAEG;IACH,eAAe,CAAC,OAAO,EAAE,CAAC,OAAO,EAAE,WAAW,GAAG;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,OAAO,CAAC,EAAE,aAAa,CAAA;KAAE,KAAK,IAAI;IAKrG;;OAEG;IACH,aAAa,CAAC,OAAO,EAAE,CAAC,KAAK,EAAE,WAAW,KAAK,IAAI;IAKnD;;OAEG;IACH,QAAQ;IAIR;;OAEG;IACH,cAAc,IAAI,WAAW,GAAG,IAAI;IAIpC;;;;;;;;;;;;;;;OAeG;IACH,eAAe,IAAI,OAAO;IAI1B;;;;OAIG;IACH,oBAAoB,IAAI,SAAS,GAAG,UAAU,GAAG,QAAQ;IAIzD;;OAEG;IACH,iBAAiB,CAAC,UAAU,CAAC,EAAE,WAAW,GAAG,SAAS,EAAE;IAMxD;;;;;;;;;OASG;IACH,aAAa,CAAC,IAAI,EAAE,MAAM,EAAE,EAAE,EAAE,MAAM,EAAE,UAAU,CAAC,EAAE,WAAW,GAAG,SAAS,EAAE;IAsH9E;;;;;;;;;;OAUG;IACH,kBAAkB,CAChB,IAAI,EAAE,MAAM,EACZ,EAAE,EAAE,MAAM,EACV,UAAU,CAAC,EAAE,WAAW,GACvB;QACD,MAAM,EAAE;YAAE,GAAG,EAAE,MAAM,CAAC;YAAC,IAAI,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAC;YAAC,KAAK,EAAE,MAAM,CAAC;YAAC,KAAK,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAA;SAAE,CAAC;QACpG,KAAK,EAAE,SAAS,EAAE,CAAC;QACnB,SAAS,EAAE,MAAM,CAAC;KACnB,GAAG,IAAI;IAaR;;;;;;;;;;;OAWG;IACH,gBAAgB,CACd,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE;QAAE,KAAK,CAAC,EAAE,MAAM,CAAC;QAAC,GAAG,CAAC,EAAE,MAAM,CAAC;QAAC,GAAG,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC,EACjG,UAAU,CAAC,EAAE,WAAW,GACvB,MAAM,CACP,MAAM,EACN;QACE,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,GAAG,CAAC,EAAE,MAAM,CAAC;QACb,GAAG,CAAC,EAAE,MAAM,CAAC;QACb,MAAM,CAAC,EAAE,OAAO,CAAC;QACjB,KAAK,CAAC,EAAE,OAAO,CAAC;QAChB,SAAS,CAAC,EAAE,MAAM,CAAC;QACnB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAC;KACxB,CACF;IAqED;;OAEG;IACH,iBAAiB,IAAI;QACnB,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;QACtB,MAAM,EAAE,SAAS,EAAE,CAAC;QACpB,QAAQ,EAAE,OAAO,EAAE,CAAC;QACpB,eAAe,EAAE,eAAe,EAAE,CAAC;KACpC;IASD;;OAEG;IACH,gBAAgB,IAAI,mBAAmB;IAIvC;;;;;;;;;;;;;;;;;;;;;OAqBG;IACH,2BAA2B,IAAI;QAC7B,QAAQ,EAAE;YAAE,KAAK,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAA;SAAE,CAAC;QAC5C,WAAW,EAAE;YAAE,IAAI,EAAE,MAAM,CAAC;YAAC,KAAK,EAAE,MAAM,CAAC;YAAC,GAAG,EAAE,MAAM,CAAC;YAAC,MAAM,EAAE,MAAM,CAAA;SAAE,CAAC;QAC1E,YAAY,EAAE,MAAM,CAAC;QACrB,WAAW,EAAE,UAAU,GAAG,WAAW,CAAC;KACvC;IAQD;;;;;;;;;;;;;;;;;OAiBG;IACH,gBAAgB,IAAI,iBAAiB,EAAE;IAIvC;;;;;;;;;;;;;;;;;OAiBG;IACH,aAAa,CAAC,IAAI,EAAE,UAAU;IAiB9B;;OAEG;IACH,OAAO,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG,WAAW,GAAG,IAAI;IAuO7D;;OAEG;IACH,oBAAoB,CAAC,OAAO,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,GAAG;QAAE,CAAC,EAAE,MAAM,CAAC;QAAC,CAAC,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI;IAIvF;;;;;;;;;;;;;;;;;;;OAmBG;IACH,WAAW,CACT,GAAG,EAAE,MAAM,GACV;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI;IA2DrG;;;;;;;;;;;OAWG;IACH,eAAe,CACb,GAAG,EAAE,MAAM,EACX,OAAO,GAAE;QAAE,YAAY,CAAC,EAAE,OAAO,CAAC;QAAC,gBAAgB,CAAC,EAAE,OAAO,CAAA;KAAO,GACnE,WAAW,GAAG,IAAI;IA4BrB;;;;;;;;;;;;OAYG;IACH,gBAAgB,CACd,GAAG,EAAE,MAAM,EACX,OAAO,GAAE;QAAE,KAAK,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,KAAK,GAAG,SAAS,CAAC;QAAC,QAAQ,CAAC,EAAE,cAAc,CAAA;KAAO,GAC1F,OAAO;IA4CV;;;;;;;;;;;;;;;;;;;OAmBG;IACH,WAAW,CAAC,MAAM,EAAE;QAClB,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,OAAO,CAAC,EAAE,MAAM,CAAC;QACjB,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,GAAG,CAAC,EAAE,MAAM,CAAC;KACd,GAAG;QAAE,GAAG,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAA;KAAE,GAAG,IAAI;IAkD1C;;;;;;;;;;;;OAYG;IACH,OAAO,CAAC,IAAI,EAAE,MAAM;IA+BpB;;;OAGG;IACH,OAAO;
|
|
1
|
+
{"version":3,"file":"PresentationEditor.d.ts","sourceRoot":"","sources":["../../../src/core/presentation-editor/PresentationEditor.ts"],"names":[],"mappings":"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"}
|