@harbour-enterprises/superdoc 0.21.0-next.1 → 0.21.0-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.
Files changed (27) hide show
  1. package/dist/chunks/{PdfViewer-Bn3Lvd0m.cjs → PdfViewer-1mNuyy3m.cjs} +1 -1
  2. package/dist/chunks/{PdfViewer-0jdn-cVx.es.js → PdfViewer-BkXBRXPs.es.js} +1 -1
  3. package/dist/chunks/{index-C0XOj4vH.cjs → index-BB3Qn69u.cjs} +2 -2
  4. package/dist/chunks/{index-BiZcP3bK.es.js → index-C-44kxYe.es.js} +2 -2
  5. package/dist/chunks/{super-editor.es-DQx0kzCl.es.js → super-editor.es-CKw7iZcz.es.js} +151 -89
  6. package/dist/chunks/{super-editor.es-BWdUsCXq.cjs → super-editor.es-Dd0joLAR.cjs} +151 -89
  7. package/dist/core/SuperDoc.d.ts.map +1 -1
  8. package/dist/super-editor/ai-writer.es.js +2 -2
  9. package/dist/super-editor/chunks/{converter-DMpIH4c0.js → converter-FESR2WO7.js} +1 -1
  10. package/dist/super-editor/chunks/{docx-zipper-CDrFfcVc.js → docx-zipper-BWZ2o1H5.js} +1 -1
  11. package/dist/super-editor/chunks/{editor-DrzPfOIy.js → editor-XsrBXzy-.js} +149 -87
  12. package/dist/super-editor/chunks/{toolbar-NxB-WhNb.js → toolbar-tBWlOBPh.js} +2 -2
  13. package/dist/super-editor/converter.es.js +1 -1
  14. package/dist/super-editor/docx-zipper.es.js +2 -2
  15. package/dist/super-editor/editor.es.js +3 -3
  16. package/dist/super-editor/file-zipper.es.js +1 -1
  17. package/dist/super-editor/src/extensions/comment/comment-import-helpers.d.ts +15 -0
  18. package/dist/super-editor/src/extensions/search/prosemirror-search-patched.d.ts +110 -0
  19. package/dist/super-editor/super-editor.es.js +6 -6
  20. package/dist/super-editor/toolbar.es.js +2 -2
  21. package/dist/super-editor.cjs +1 -1
  22. package/dist/super-editor.es.js +1 -1
  23. package/dist/superdoc.cjs +2 -2
  24. package/dist/superdoc.es.js +2 -2
  25. package/dist/superdoc.umd.js +151 -89
  26. package/dist/superdoc.umd.js.map +1 -1
  27. package/package.json +1 -1
@@ -11401,7 +11401,7 @@ const isIOS = () => {
11401
11401
  navigator.platform
11402
11402
  );
11403
11403
  };
11404
- const isRegExp = (value) => {
11404
+ const isRegExp$1 = (value) => {
11405
11405
  return Object.prototype.toString.call(value) === "[object RegExp]";
11406
11406
  };
11407
11407
  function objectIncludes(obj1, obj2, options = { strict: true }) {
@@ -11409,7 +11409,7 @@ function objectIncludes(obj1, obj2, options = { strict: true }) {
11409
11409
  if (!keys2.length) return true;
11410
11410
  return keys2.every((key2) => {
11411
11411
  if (options.strict) return obj2[key2] === obj1[key2];
11412
- if (isRegExp(obj2[key2])) return obj2[key2].test(obj1[key2]);
11412
+ if (isRegExp$1(obj2[key2])) return obj2[key2].test(obj1[key2]);
11413
11413
  return obj2[key2] === obj1[key2];
11414
11414
  });
11415
11415
  }
@@ -27836,7 +27836,7 @@ const encode$d = (params2, encodedAttrs) => {
27836
27836
  if (filteredMarks.length !== existingMarks2.length) {
27837
27837
  if (filteredMarks.length) child = { ...child, marks: filteredMarks };
27838
27838
  else {
27839
- const { marks, ...rest } = child;
27839
+ const { marks: _removedMarks, ...rest } = child;
27840
27840
  child = rest;
27841
27841
  }
27842
27842
  }
@@ -29553,7 +29553,7 @@ class InputRule {
29553
29553
  }
29554
29554
  }
29555
29555
  const inputRuleMatcherHandler = (text, match) => {
29556
- if (isRegExp(match)) {
29556
+ if (isRegExp$1(match)) {
29557
29557
  return match.exec(text);
29558
29558
  }
29559
29559
  const inputRuleMatch = match(text);
@@ -47468,6 +47468,33 @@ const getTrackChangesDecorations = (state2, onlyOriginalShown, onlyModifiedShown
47468
47468
  return DecorationSet.create(state2.doc, decorations);
47469
47469
  };
47470
47470
  const CommentMarkName = "commentMark";
47471
+ const resolveCommentMeta = ({ converter, importedId }) => {
47472
+ const comments = converter?.comments || [];
47473
+ const matchingImportedComment = comments.find((c2) => c2.importedId == importedId);
47474
+ const resolvedCommentId = matchingImportedComment?.commentId ?? (importedId ? String(importedId) : v4());
47475
+ const internal = matchingImportedComment?.internal ?? matchingImportedComment?.isInternal ?? false;
47476
+ return {
47477
+ resolvedCommentId,
47478
+ importedId,
47479
+ internal,
47480
+ matchingImportedComment
47481
+ };
47482
+ };
47483
+ const ensureFallbackComment = ({ converter, matchingImportedComment, commentId, importedId }) => {
47484
+ if (matchingImportedComment || !converter) return;
47485
+ converter.comments = converter.comments || [];
47486
+ const alreadyExists = converter.comments.some((comment) => comment.commentId === commentId);
47487
+ if (alreadyExists) return;
47488
+ converter.comments.push({
47489
+ commentId,
47490
+ importedId,
47491
+ textJson: null,
47492
+ creatorName: null,
47493
+ creatorEmail: null,
47494
+ createdTime: null,
47495
+ isDone: false
47496
+ });
47497
+ };
47471
47498
  const removeCommentsById = ({ commentId, state: state2, tr, dispatch }) => {
47472
47499
  const positions = getCommentPositionsById(commentId, state2.doc);
47473
47500
  positions.forEach(({ from: from2, to }) => {
@@ -47561,24 +47588,31 @@ const prepareCommentsForImport = (doc2, tr, schema, converter) => {
47561
47588
  const { type: type2 } = node;
47562
47589
  const commentNodes = ["commentRangeStart", "commentRangeEnd", "commentReference"];
47563
47590
  if (!commentNodes.includes(type2.name)) return;
47564
- const matchingImportedComment = converter.comments?.find((c2) => c2.importedId == node.attrs["w:id"]) || {};
47565
- const { commentId } = matchingImportedComment;
47566
- if (!commentId) return;
47591
+ const { resolvedCommentId, importedId, internal, matchingImportedComment } = resolveCommentMeta({
47592
+ converter,
47593
+ importedId: node.attrs["w:id"]
47594
+ });
47567
47595
  if (type2.name === "commentRangeStart") {
47568
47596
  toMark.push({
47569
- "w:id": commentId,
47570
- importedId: node.attrs["w:id"],
47571
- internal: false,
47597
+ commentId: resolvedCommentId,
47598
+ importedId,
47599
+ internal,
47572
47600
  start: pos
47573
47601
  });
47602
+ ensureFallbackComment({
47603
+ converter,
47604
+ matchingImportedComment,
47605
+ commentId: resolvedCommentId,
47606
+ importedId
47607
+ });
47574
47608
  toDelete.push({ start: pos, end: pos + 1 });
47575
47609
  } else if (type2.name === "commentRangeEnd") {
47576
- const itemToMark = toMark.find((p) => p.importedId === node.attrs["w:id"]);
47610
+ const itemToMark = toMark.find((p) => p.importedId === importedId);
47577
47611
  if (!itemToMark) return;
47578
47612
  const { start: start2 } = itemToMark;
47579
47613
  const markAttrs = {
47580
- commentId,
47581
- importedId: node.attrs["w:id"],
47614
+ commentId: itemToMark.commentId,
47615
+ importedId,
47582
47616
  internal: itemToMark.internal
47583
47617
  };
47584
47618
  tr.addMark(start2, pos + 1, schema.marks[CommentMarkName].create(markAttrs));
@@ -68865,8 +68899,8 @@ function getScaleFactor(element) {
68865
68899
  }
68866
68900
  class SearchQuery {
68867
68901
  /**
68868
- Create a query object.
68869
- */
68902
+ Create a query object.
68903
+ */
68870
68904
  constructor(config2) {
68871
68905
  this.search = config2.search;
68872
68906
  this.caseSensitive = !!config2.caseSensitive;
@@ -68879,72 +68913,70 @@ class SearchQuery {
68879
68913
  this.impl = !this.valid ? nullQuery : this.regexp ? new RegExpQuery(this) : new StringQuery(this);
68880
68914
  }
68881
68915
  /**
68882
- Compare this query to another query.
68883
- */
68916
+ Compare this query to another query.
68917
+ */
68884
68918
  eq(other) {
68885
68919
  return this.search == other.search && this.replace == other.replace && this.caseSensitive == other.caseSensitive && this.regexp == other.regexp && this.wholeWord == other.wholeWord;
68886
68920
  }
68887
68921
  /**
68888
- Find the next occurrence of this query in the given range.
68889
- */
68922
+ Find the next occurrence of this query in the given range.
68923
+ */
68890
68924
  findNext(state2, from2 = 0, to = state2.doc.content.size) {
68891
68925
  for (; ; ) {
68892
- if (from2 >= to)
68893
- return null;
68926
+ if (from2 >= to) return null;
68894
68927
  let result = this.impl.findNext(state2, from2, to);
68895
- if (!result || this.checkResult(state2, result))
68896
- return result;
68928
+ if (!result || this.checkResult(state2, result)) return result;
68897
68929
  from2 = result.from + 1;
68898
68930
  }
68899
68931
  }
68900
68932
  /**
68901
- Find the previous occurrence of this query in the given range.
68902
- Note that, if `to` is given, it should be _less_ than `from`.
68903
- */
68933
+ Find the previous occurrence of this query in the given range.
68934
+ Note that, if `to` is given, it should be _less_ than `from`.
68935
+ */
68904
68936
  findPrev(state2, from2 = state2.doc.content.size, to = 0) {
68905
68937
  for (; ; ) {
68906
- if (from2 <= to)
68907
- return null;
68938
+ if (from2 <= to) return null;
68908
68939
  let result = this.impl.findPrev(state2, from2, to);
68909
- if (!result || this.checkResult(state2, result))
68910
- return result;
68940
+ if (!result || this.checkResult(state2, result)) return result;
68911
68941
  from2 = result.to - 1;
68912
68942
  }
68913
68943
  }
68914
68944
  /**
68915
- @internal
68916
- */
68945
+ @internal
68946
+ */
68917
68947
  checkResult(state2, result) {
68918
68948
  return (!this.wholeWord || checkWordBoundary(state2, result.from) && checkWordBoundary(state2, result.to)) && (!this.filter || this.filter(state2, result));
68919
68949
  }
68920
68950
  /**
68921
- @internal
68922
- */
68951
+ @internal
68952
+ */
68923
68953
  unquote(string) {
68924
68954
  return this.literal ? string : string.replace(/\\([nrt\\])/g, (_2, ch) => ch == "n" ? "\n" : ch == "r" ? "\r" : ch == "t" ? " " : "\\");
68925
68955
  }
68926
68956
  /**
68927
- Get the ranges that should be replaced for this result. This can
68928
- return multiple ranges when `this.replace` contains
68929
- `$1`/`$&`-style placeholders, in which case the preserved
68930
- content is skipped by the replacements.
68931
-
68932
- Ranges are sorted by position, and `from`/`to` positions all
68933
- refer to positions in `state.doc`. When applying these, you'll
68934
- want to either apply them from back to front, or map these
68935
- positions through your transaction's current mapping.
68936
- */
68957
+ Get the ranges that should be replaced for this result. This can
68958
+ return multiple ranges when `this.replace` contains
68959
+ `$1`/`$&`-style placeholders, in which case the preserved
68960
+ content is skipped by the replacements.
68961
+
68962
+ Ranges are sorted by position, and `from`/`to` positions all
68963
+ refer to positions in `state.doc`. When applying these, you'll
68964
+ want to either apply them from back to front, or map these
68965
+ positions through your transaction's current mapping.
68966
+ */
68937
68967
  getReplacements(state2, result) {
68938
68968
  let $from = state2.doc.resolve(result.from);
68939
68969
  let marks = $from.marksAcross(state2.doc.resolve(result.to));
68940
68970
  let ranges = [];
68941
68971
  let frag = Fragment.empty, pos = result.from, { match } = result;
68942
68972
  let groups = match ? getGroupIndices(match) : [[0, result.to - result.from]];
68943
- let replParts = parseReplacement(this.unquote(this.replace)), groupSpan;
68973
+ let replParts = parseReplacement(this.unquote(this.replace));
68944
68974
  for (let part of replParts) {
68945
68975
  if (typeof part == "string") {
68946
68976
  frag = frag.addToEnd(state2.schema.text(part, marks));
68947
- } else if (groupSpan = groups[part.group]) {
68977
+ } else {
68978
+ const groupSpan = groups[part.group];
68979
+ if (!groupSpan) continue;
68948
68980
  let from2 = result.matchStart + groupSpan[0], to = result.matchStart + groupSpan[1];
68949
68981
  if (part.copy) {
68950
68982
  frag = frag.append(state2.doc.slice(from2, to).content);
@@ -68974,8 +69006,7 @@ class StringQuery {
68974
69006
  constructor(query) {
68975
69007
  this.query = query;
68976
69008
  let string = query.unquote(query.search);
68977
- if (!query.caseSensitive)
68978
- string = string.toLowerCase();
69009
+ if (!query.caseSensitive) string = string.toLowerCase();
68979
69010
  this.string = string;
68980
69011
  }
68981
69012
  findNext(state2, from2, to) {
@@ -68983,17 +69014,26 @@ class StringQuery {
68983
69014
  let off2 = Math.max(from2, start2);
68984
69015
  let content = textContent(node).slice(off2 - start2, Math.min(node.content.size, to - start2));
68985
69016
  let index2 = (this.query.caseSensitive ? content : content.toLowerCase()).indexOf(this.string);
68986
- return index2 < 0 ? null : { from: off2 + index2, to: off2 + index2 + this.string.length, match: null, matchStart: start2 };
69017
+ if (index2 < 0) return null;
69018
+ const startOffset = off2 - start2;
69019
+ const absoluteIndex = startOffset + index2;
69020
+ const fromPos = mapIndexToDocPos(node, start2, absoluteIndex);
69021
+ const toPos = mapIndexToDocPos(node, start2, absoluteIndex + this.string.length);
69022
+ return { from: fromPos, to: toPos, match: null, matchStart: start2 };
68987
69023
  });
68988
69024
  }
68989
69025
  findPrev(state2, from2, to) {
68990
69026
  return scanTextblocks(state2.doc, from2, to, (node, start2) => {
68991
69027
  let off2 = Math.max(start2, to);
68992
69028
  let content = textContent(node).slice(off2 - start2, Math.min(node.content.size, from2 - start2));
68993
- if (!this.query.caseSensitive)
68994
- content = content.toLowerCase();
69029
+ if (!this.query.caseSensitive) content = content.toLowerCase();
68995
69030
  let index2 = content.lastIndexOf(this.string);
68996
- return index2 < 0 ? null : { from: off2 + index2, to: off2 + index2 + this.string.length, match: null, matchStart: start2 };
69031
+ if (index2 < 0) return null;
69032
+ const startOffset = off2 - start2;
69033
+ const absoluteIndex = startOffset + index2;
69034
+ const fromPos = mapIndexToDocPos(node, start2, absoluteIndex);
69035
+ const toPos = mapIndexToDocPos(node, start2, absoluteIndex + this.string.length);
69036
+ return { from: fromPos, to: toPos, match: null, matchStart: start2 };
68997
69037
  });
68998
69038
  }
68999
69039
  }
@@ -69008,7 +69048,11 @@ class RegExpQuery {
69008
69048
  let content = textContent(node).slice(0, Math.min(node.content.size, to - start2));
69009
69049
  this.regexp.lastIndex = from2 - start2;
69010
69050
  let match = this.regexp.exec(content);
69011
- return match ? { from: start2 + match.index, to: start2 + match.index + match[0].length, match, matchStart: start2 } : null;
69051
+ if (!match) return null;
69052
+ const absoluteIndex = match.index;
69053
+ const fromPos = mapIndexToDocPos(node, start2, absoluteIndex);
69054
+ const toPos = mapIndexToDocPos(node, start2, absoluteIndex + match[0].length);
69055
+ return { from: fromPos, to: toPos, match, matchStart: start2 };
69012
69056
  });
69013
69057
  }
69014
69058
  findPrev(state2, from2, to) {
@@ -69018,18 +69062,20 @@ class RegExpQuery {
69018
69062
  for (let off2 = 0; ; ) {
69019
69063
  this.regexp.lastIndex = off2;
69020
69064
  let next = this.regexp.exec(content);
69021
- if (!next)
69022
- break;
69065
+ if (!next) break;
69023
69066
  match = next;
69024
69067
  off2 = next.index + 1;
69025
69068
  }
69026
- return match ? { from: start2 + match.index, to: start2 + match.index + match[0].length, match, matchStart: start2 } : null;
69069
+ if (!match) return null;
69070
+ const absoluteIndex = match.index;
69071
+ const fromPos = mapIndexToDocPos(node, start2, absoluteIndex);
69072
+ const toPos = mapIndexToDocPos(node, start2, absoluteIndex + match[0].length);
69073
+ return { from: fromPos, to: toPos, match, matchStart: start2 };
69027
69074
  });
69028
69075
  }
69029
69076
  }
69030
69077
  function getGroupIndices(match) {
69031
- if (match.indices)
69032
- return match.indices;
69078
+ if (match.indices) return match.indices;
69033
69079
  let result = [[0, match[0].length]];
69034
69080
  for (let i = 1, pos = 0; i < match.length; i++) {
69035
69081
  let found2 = match[i] ? match[0].indexOf(match[i], pos) : -1;
@@ -69041,10 +69087,8 @@ function parseReplacement(text) {
69041
69087
  let result = [], highestSeen = -1;
69042
69088
  function add(text2) {
69043
69089
  let last = result.length - 1;
69044
- if (last > -1 && typeof result[last] == "string")
69045
- result[last] += text2;
69046
- else
69047
- result.push(text2);
69090
+ if (last > -1 && typeof result[last] == "string") result[last] += text2;
69091
+ else result.push(text2);
69048
69092
  }
69049
69093
  while (text.length) {
69050
69094
  let m2 = /\$([$&\d+])/.exec(text);
@@ -69052,8 +69096,7 @@ function parseReplacement(text) {
69052
69096
  add(text);
69053
69097
  return result;
69054
69098
  }
69055
- if (m2.index > 0)
69056
- add(text.slice(0, m2.index + (m2[1] == "$" ? 1 : 0)));
69099
+ if (m2.index > 0) add(text.slice(0, m2.index + (m2[1] == "$" ? 1 : 0)));
69057
69100
  if (m2[1] != "$") {
69058
69101
  let n = m2[1] == "&" ? 0 : +m2[1];
69059
69102
  if (highestSeen >= n) {
@@ -69071,30 +69114,50 @@ function validRegExp(source) {
69071
69114
  try {
69072
69115
  new RegExp(source, baseFlags);
69073
69116
  return true;
69074
- } catch (_a2) {
69117
+ } catch {
69075
69118
  return false;
69076
69119
  }
69077
69120
  }
69078
69121
  const TextContentCache = /* @__PURE__ */ new WeakMap();
69079
69122
  function textContent(node) {
69080
69123
  let cached = TextContentCache.get(node);
69081
- if (cached)
69082
- return cached;
69124
+ if (cached) return cached;
69083
69125
  let content = "";
69084
69126
  for (let i = 0; i < node.childCount; i++) {
69085
69127
  let child = node.child(i);
69086
- if (child.isText)
69087
- content += child.text;
69088
- else if (child.isLeaf)
69089
- content += "";
69090
- else
69091
- content += " " + textContent(child) + " ";
69128
+ if (child.isText) content += child.text;
69129
+ else if (child.isLeaf) content += "";
69130
+ else if (child.type && child.type.name === "run") content += textContent(child);
69131
+ else content += " " + textContent(child) + " ";
69092
69132
  }
69093
69133
  TextContentCache.set(node, content);
69094
69134
  return content;
69095
69135
  }
69136
+ function mapIndexToDocPos(node, start2, index2) {
69137
+ if (index2 <= 0) return start2;
69138
+ const fullText = textContent(node);
69139
+ if (index2 >= fullText.length) return start2 + node.content.size;
69140
+ let target = start2;
69141
+ let remaining = index2;
69142
+ let found2 = false;
69143
+ node.descendants((child, pos) => {
69144
+ if (found2) return false;
69145
+ if (!child.isText) return true;
69146
+ const len = child.text.length;
69147
+ if (remaining <= len) {
69148
+ target = start2 + pos + remaining;
69149
+ found2 = true;
69150
+ return false;
69151
+ }
69152
+ remaining -= len;
69153
+ return true;
69154
+ });
69155
+ return found2 ? target : start2 + node.content.size;
69156
+ }
69157
+ const transparentInlineNodes = /* @__PURE__ */ new Set(["run"]);
69096
69158
  function scanTextblocks(node, from2, to, f, nodeStart = 0) {
69097
- if (node.inlineContent) {
69159
+ const isTransparentInline = node.inlineContent && node.type && transparentInlineNodes.has(node.type.name);
69160
+ if (node.inlineContent && !isTransparentInline) {
69098
69161
  return f(node, nodeStart);
69099
69162
  } else if (!node.isLeaf) {
69100
69163
  if (from2 > to) {
@@ -69103,8 +69166,7 @@ function scanTextblocks(node, from2, to, f, nodeStart = 0) {
69103
69166
  pos -= child.nodeSize;
69104
69167
  if (pos < from2) {
69105
69168
  let result = scanTextblocks(child, from2, to, f, pos + 1);
69106
- if (result != null)
69107
- return result;
69169
+ if (result != null) return result;
69108
69170
  }
69109
69171
  }
69110
69172
  } else {
@@ -69113,8 +69175,7 @@ function scanTextblocks(node, from2, to, f, nodeStart = 0) {
69113
69175
  pos += child.nodeSize;
69114
69176
  if (pos > from2) {
69115
69177
  let result = scanTextblocks(child, from2, to, f, start2 + 1);
69116
- if (result != null)
69117
- return result;
69178
+ if (result != null) return result;
69118
69179
  }
69119
69180
  }
69120
69181
  }
@@ -69124,8 +69185,7 @@ function scanTextblocks(node, from2, to, f, nodeStart = 0) {
69124
69185
  function checkWordBoundary(state2, pos) {
69125
69186
  let $pos = state2.doc.resolve(pos);
69126
69187
  let before = $pos.nodeBefore, after = $pos.nodeAfter;
69127
- if (!before || !after || !before.isText || !after.isText)
69128
- return true;
69188
+ if (!before || !after || !before.isText || !after.isText) return true;
69129
69189
  return !/\p{L}$/u.test(before.text) || !/^\p{L}/u.test(after.text);
69130
69190
  }
69131
69191
  class SearchState {
@@ -69136,14 +69196,12 @@ class SearchState {
69136
69196
  }
69137
69197
  }
69138
69198
  function buildMatchDeco(state2, query, range2) {
69139
- if (!query.valid)
69140
- return DecorationSet.empty;
69199
+ if (!query.valid) return DecorationSet.empty;
69141
69200
  let deco = [];
69142
69201
  let sel = state2.selection;
69143
69202
  for (let pos = range2 ? range2.from : 0, end2 = range2 ? range2.to : state2.doc.content.size; ; ) {
69144
69203
  let next = query.findNext(state2, pos, end2);
69145
- if (!next)
69146
- break;
69204
+ if (!next) break;
69147
69205
  let cls = next.from == sel.from && next.to == sel.to ? "ProseMirror-active-search-match" : "ProseMirror-search-match";
69148
69206
  deco.push(Decoration.inline(next.from, next.to, { class: cls }));
69149
69207
  pos = next.to;
@@ -69162,8 +69220,7 @@ function search(options = {}) {
69162
69220
  },
69163
69221
  apply(tr, search2, _oldState, state2) {
69164
69222
  let set = tr.getMeta(searchKey);
69165
- if (set)
69166
- return new SearchState(set.query, set.range, buildMatchDeco(state2, set.query, set.range));
69223
+ if (set) return new SearchState(set.query, set.range, buildMatchDeco(state2, set.query, set.range));
69167
69224
  if (tr.docChanged || tr.selectionSet) {
69168
69225
  let range2 = search2.range;
69169
69226
  if (range2) {
@@ -69188,6 +69245,7 @@ function getMatchHighlights(state2) {
69188
69245
  function setSearchState(tr, query, range2 = null) {
69189
69246
  return tr.setMeta(searchKey, { query, range: range2 });
69190
69247
  }
69248
+ const isRegExp = (value) => Object.prototype.toString.call(value) === "[object RegExp]";
69191
69249
  const Search = Extension.create({
69192
69250
  addStorage() {
69193
69251
  return {
@@ -69257,10 +69315,14 @@ const Search = Extension.create({
69257
69315
  let caseSensitive = false;
69258
69316
  let regexp = false;
69259
69317
  const wholeWord = false;
69260
- if (patternInput instanceof RegExp) {
69318
+ if (isRegExp(patternInput)) {
69319
+ const regexPattern = (
69320
+ /** @type {RegExp} */
69321
+ patternInput
69322
+ );
69261
69323
  regexp = true;
69262
- pattern = patternInput.source;
69263
- caseSensitive = !patternInput.flags.includes("i");
69324
+ pattern = regexPattern.source;
69325
+ caseSensitive = !regexPattern.flags.includes("i");
69264
69326
  } else if (typeof patternInput === "string" && /^\/(.+)\/([gimsuy]*)$/.test(patternInput)) {
69265
69327
  const [, body, flags] = patternInput.match(/^\/(.+)\/([gimsuy]*)$/);
69266
69328
  regexp = true;
@@ -1 +1 @@
1
- {"version":3,"file":"SuperDoc.d.ts","sourceRoot":"","sources":["../../src/core/SuperDoc.js"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"SuperDoc.d.ts","sourceRoot":"","sources":["../../src/core/SuperDoc.js"],"names":[],"mappings":"AAgBA;;;;;GAKG;AAEH;;;;;;GAMG;AAEH;;;;;;;;;;GAUG;AAEH;;;;;;;;GAQG;AAEH,2EAA2E;AAE3E;;;;;GAKG;AAEH;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAkDG;AAEH;;;;;;GAMG;AACH;IACE,4BAA4B;IAC5B,qBADW,KAAK,CAAC,MAAM,CAAC,CACgB;IAwExC;;OAEG;IACH,oBAFW,MAAM,EAKhB;IA5ED,qBAAqB;IACrB,SADW,MAAM,CACT;IAER,qBAAqB;IACrB,OADW,IAAI,EAAE,CACX;IAEN,4CAA4C;IAC5C,MADW,OAAO,KAAK,EAAE,GAAG,GAAG,SAAS,CACnC;IAEL,4EAA4E;IAC5E,UADW,OAAO,sBAAsB,EAAE,kBAAkB,GAAG,SAAS,CAC/D;IAET,qBAAqB;IACrB,QADW,MAAM,CAwDf;IAiBA,4BAA6B;IAC7B,mBAAmB;IAMnB,gBAA+C;IAC/C,iBAAgC;IAehC,WAA4B;IAE5B,YAAkB;IAElB,eAAuC;IAEvC;;;;;;;;;;;;0BAksBqjud,aAAa;;;;;;;;;;;6BAA8vJ,aAAa;;;;;;;;;;;;;;;;mCAAu2U,aAAa;0BAAh8nB,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;iDAAst+B,UAAU;kDAAuV,UAAU,aAA+E,UAAU;oCAAgZ,UAAU;;;;;;;;;MAlsB1ykf;IACxB,gBAAkB;IAKlB,qBAAqB;IAErB,kBAA6C;IAC7C,eAA4C;IAM9C;;;OAGG;IACH,+BAFa,MAAM,CAIlB;IAED;;;MAKC;IA2EC,SAAc;IACd,WAAkB;IAKlB,mBAAkC;IAClC,mBAAkC;IAClC,2BAAkD;IAkClD,yBAA2B;IA4B7B;;;;OAIG;IACH,0BAFa,IAAI,CAKhB;IAED;;;;OAIG;IACH,iCAFa,IAAI,CAIhB;IAOC,qBAME;IAGJ;;;;;OAKG;IACH,kCAHG;QAAsB,KAAK,EAAnB,KAAK;QACU,MAAM,EAArB,MAAM;KAChB,QAKA;IAED;;;OAGG;IACH,6BAFa,IAAI,CAIhB;IAED;;;OAGG;IACH,kBAFa,IAAI,CAMhB;IAED;;;;OAIG;IACH,oCAHW,MAAM,GACJ,IAAI,CAIhB;IAED;;;;OAIG;IACH,8BAHW,MAAM,GACJ,IAAI,CAMhB;IAED;;;OAGG;IACH,0BAFa,IAAI,CAIhB;IAED;;;OAGG;IACH,iCAFW,OAAO,QAIjB;IAMD;;;;OAIG;IACH,wBAHW,MAAM,GACJ,IAAI,CAQhB;IAED;;;;OAIG;IACH,eAFa,IAAI,CAOhB;IAED;;;OAGG;IACH,oBAFa,IAAI,CAUhB;IAIC,oBAAmF;IACnF,sBAAmB;IA2BrB;;;;;OAKG;IACH,yBAHW,OAAO,GACL,IAAI,CAQhB;IAFC,4BAA0E;IAI5E;;;OAGG;IACH,sBAFa,IAAI,CAQhB;IAED;;;;;OAKG;IACH,qCAHG;QAAuB,IAAI;QACJ,QAAQ,EAAvB,MAAM;KAChB,QAOA;IAED;;;;OAIG;IACH,sBAHW,YAAY,GACV,IAAI,CAehB;IAsDD;;;;OAIG;IACH,aAHW,MAAM,GAAG,MAAM,GACb,KAAQ,CAIpB;IAED;;;;OAIG;IACH,8BAFa,IAAI,CAIhB;IAED;;;OAGG;IACH,iBAFW,OAAO,QAUjB;IAED;;;OAGG;IACH,uBAFa,KAAK,CAAC,MAAM,CAAC,CAYzB;IAED;;;;OAIG;IACH,0CAFW,IAAI,QAOd;IAED;;;;;;;;;;;OAWG;IACH,8IATG;QAA0B,UAAU,GAA5B,MAAM,EAAE;QACQ,YAAY,GAA5B,MAAM;QACU,YAAY,GAA5B,MAAM;QACS,eAAe;QACf,mBAAmB;QACjB,UAAU,GAA3B,OAAO;QACU,eAAe,GAAhC,OAAO;KACf,GAAU,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC,CA0ChC;IAED;;;;OAIG;IACH,yEAHW;QAAE,YAAY,CAAC,EAAE,MAAM,CAAC;QAAC,UAAU,CAAC,EAAE,OAAO,CAAA;KAAE,GAC7C,OAAO,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAkBhC;IAWK,kCAAkC;IAsBxC;;;OAGG;IACH,QAFa,OAAO,CAAC,IAAI,EAAE,CAAC,CAY3B;IAED;;;OAGG;IACH,WAFa,IAAI,CAiChB;IAED;;;OAGG;IACH,SAFa,IAAI,CAahB;IAED;;;;OAIG;IACH,oCAHW,OAAO,GACL,IAAI,CAMhB;;CACF;;;;;;;;UA95Ba,MAAM;;;;WACN,MAAM;;;;YACN,MAAM,GAAG,IAAI;;;;;;;;;cAKb,OAAO;;;;iBACP,MAAM;;;;eACN,MAAM;;;;sBACN,MAAM;;;;;;SAKN,MAAM;;;;UACN,MAAM;;;;WACN,IAAI,GAAG,IAAI,GAAG,IAAI;;;;WAClB,MAAM;;;;UACN,MAAM;;;;gBACN,OAAO;;;;WACP,OAAO,KAAK,EAAE,GAAG;;;;eACjB,OAAO,sBAAsB,EAAE,kBAAkB;;;;;;;;;;SAO5D;QAAuB,MAAM,GAAlB,MAAM;QACM,QAAQ,GAApB,MAAM;KACjB;;;;;;;;;;;;;;;;;;;;;;sBAg4Bsjud,aAAa;;;;;;;;;;;yBAA8vJ,aAAa;;;;;;;;;;;;;;;;+BAAu2U,aAAa;sBAAh8nB,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;6CAAst+B,UAAU;8CAAuV,UAAU,aAA+E,UAAU;gCAAgZ,UAAU;;;;;;;;;;2BAz3Bzzkf,MAAM;;;;;iBAQL,MAAM;;;;cACN,MAAM;;;;kBACN,YAAY;;;;WACZ,QAAQ,GAAG,QAAQ,GAAG,WAAW;;;;eACjC,MAAS,MAAM,GAAG,IAAI,GAAG,IAAI;;;;eAC7B,KAAK,CAAC,QAAQ,CAAC;;;;WACf,IAAI;;;;YACJ,KAAK,CAAC,IAAI,CAAC;;;;aACX,KAAK,CAAC,MAAM,CAAC;;;;cACb,OAAO;;;;iBACP,OAAO;;;;cACP,MAAM;;;;oBACN,KAAK,CAAC,MAAM,CAAC;;;;;;;;;;;;YAGb,OAAO;;;;gBACP,eAAe;;;;2BACf,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI;;;;qBACxB,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI;;;;oBACxB,CAAC,MAAM,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,GAAG,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI;;;;sBACxE,MAAM,IAAI;;;;qBACV,CAAC,MAAM,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,IAAI,CAAA;KAAE,KAAK,IAAI;;;;cACnF,CAAC,MAAM,EAAE;QAAE,QAAQ,EAAE,QAAQ,CAAA;KAAE,KAAK,IAAI;;;;uBACxC,CAAC,MAAM,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAC,KAAK,IAAI;;;;wBAC/C,CAAC,MAAM,EAAE;QAAE,OAAO,EAAE,QAAQ,CAAC;QAAC,MAAM,QAAO;KAAE,KAAK,IAAI;;;;eACtD,CAAC,MAAM,EAAE;QAAE,QAAQ,EAAE,OAAO,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE,KAAK,IAAI;;;;yBACvD,MAAM,IAAI;;;;sBACV,CAAC,QAAQ,EAAE,OAAO,KAAK,IAAI;;;;2BAC3B,CAAC,MAAM,EAAE;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI;;;;qBACpC,CAAC,MAAM,EAAE;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI;;;;kBACpC,CAAC,MAAM,EAAE;QAAE,KAAK,EAAE,KAAK,CAAA;KAAE,KAAK,IAAI;;;;2BAClC,CAAC,MAAM,EAAE;QAAE,UAAU,EAAE,OAAO,CAAA;KAAE,KAAK,IAAI;;;;8BACzC,CAAC,MAAM,EAAE,EAAE,KAAC,GAAA;;;;aACZ,MAAM;;;;uBACN,KAAQ;;;;iBACR,OAAO;;;;YACP,MAAM;;;;oBACN,KAAQ;;;;eACR,OAAO;;;;wBACP,CAAS,IAAI,EAAJ,IAAI,KAAG,OAAO,CAAC,MAAM,CAAC;;;;eAC/B,IAAI;;;;aACJ,OAAO;;;;gCACP,OAAO;;;;;;;;yBAEP,OAAO;;;;WACP,MAAM;;;;eACN,MAAM;;;;cACN,OAAO;;6BA7GQ,eAAe;0BASlB,0CAA0C;6BAJ5B,mCAAmC;8BAC7C,iEAAiE"}
@@ -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-DMpIH4c0.js";
3
- import { _ as _export_sfc } from "./chunks/editor-DrzPfOIy.js";
2
+ import { T as TextSelection } from "./chunks/converter-FESR2WO7.js";
3
+ import { _ as _export_sfc } from "./chunks/editor-XsrBXzy-.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 = {}) {
@@ -27826,7 +27826,7 @@ const encode$d = (params, encodedAttrs) => {
27826
27826
  if (filteredMarks.length !== existingMarks2.length) {
27827
27827
  if (filteredMarks.length) child = { ...child, marks: filteredMarks };
27828
27828
  else {
27829
- const { marks, ...rest } = child;
27829
+ const { marks: _removedMarks, ...rest } = child;
27830
27830
  child = rest;
27831
27831
  }
27832
27832
  }
@@ -1,4 +1,4 @@
1
- import { p as process$1, au as commonjsGlobal, B as Buffer, av as getDefaultExportFromCjs, aw as getContentTypesFromXml, ax as xmljs } from "./converter-DMpIH4c0.js";
1
+ import { p as process$1, au as commonjsGlobal, B as Buffer, av as getDefaultExportFromCjs, aw as getContentTypesFromXml, ax as xmljs } from "./converter-FESR2WO7.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
  }