@superdoc-dev/cli 0.8.0-next.92 → 0.8.0-next.94

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 (2) hide show
  1. package/dist/index.js +123 -86
  2. package/package.json +7 -7
package/dist/index.js CHANGED
@@ -208524,7 +208524,7 @@ var init_remark_gfm_eZN6yzWQ_es = __esm(() => {
208524
208524
  init_remark_gfm_BhnWr3yf_es();
208525
208525
  });
208526
208526
 
208527
- // ../../packages/superdoc/dist/chunks/src-CMq87UyB.es.js
208527
+ // ../../packages/superdoc/dist/chunks/src-DLNvZ7Yw.es.js
208528
208528
  function deleteProps(obj, propOrProps) {
208529
208529
  const props = typeof propOrProps === "string" ? [propOrProps] : propOrProps;
208530
208530
  const removeNested = (target, pathParts, index2 = 0) => {
@@ -263352,7 +263352,7 @@ function extractCellPadding(cellAttrs) {
263352
263352
  return;
263353
263353
  return normalizeCellPaddingTopBottom(padding);
263354
263354
  }
263355
- function textNodeToRun({ node: node3, positions, storyKey, defaultFont, defaultSize, inheritedMarks = [], sdtMetadata, hyperlinkConfig = DEFAULT_HYPERLINK_CONFIG, themeColors, enableComments, runProperties, converterContext }) {
263355
+ function textNodeToRun({ node: node3, positions, storyKey, defaultFont, defaultSize, inheritedMarks = [], sdtMetadata, hyperlinkConfig = DEFAULT_HYPERLINK_CONFIG, themeColors, enableComments, runProperties, inlineRunProperties, converterContext }) {
263356
263356
  let run2 = {
263357
263357
  text: node3.text || "",
263358
263358
  fontFamily: defaultFont,
@@ -263366,7 +263366,7 @@ function textNodeToRun({ node: node3, positions, storyKey, defaultFont, defaultS
263366
263366
  applyMarksToRun(run2, [...node3.marks ?? [], ...inheritedMarks ?? []], hyperlinkConfig, themeColors, converterContext?.backgroundColor, enableComments, storyKey);
263367
263367
  if (sdtMetadata)
263368
263368
  run2.sdt = sdtMetadata;
263369
- run2 = applyInlineRunProperties(run2, runProperties, converterContext);
263369
+ run2 = applyInlineRunProperties(run2, runProperties, converterContext, inlineRunProperties);
263370
263370
  return run2;
263371
263371
  }
263372
263372
  function buildReferenceMarkerRun(displayText, params$1) {
@@ -263399,7 +263399,7 @@ function runNodeChildrenToRuns({ node: node3, inheritedMarks, sdtMetadata, conve
263399
263399
  if (runProperties.vanish)
263400
263400
  throw new HiddenByVanishError;
263401
263401
  const resolvedRunProperties = resolveRunProperties(converterContext, runProperties, paragraphProperties, converterContext.tableInfo, false, false);
263402
- node3.content?.forEach((child) => visitNode(child, mergedMarks, sdtMetadata, resolvedRunProperties, false));
263402
+ node3.content?.forEach((child) => visitNode(child, mergedMarks, sdtMetadata, resolvedRunProperties, false, runProperties));
263403
263403
  }
263404
263404
  function resolveSdtMetadata(input2) {
263405
263405
  if (!input2)
@@ -264172,12 +264172,12 @@ function handleTableOfAuthoritiesNode(node3, context) {
264172
264172
  sectionState.currentParagraphIndex++;
264173
264173
  });
264174
264174
  }
264175
- function structuredContentNodeToBlocks({ node: node3, inheritedMarks, sdtMetadata, visitNode, runProperties }) {
264175
+ function structuredContentNodeToBlocks({ node: node3, inheritedMarks, sdtMetadata, visitNode, runProperties, inlineRunProperties }) {
264176
264176
  const nextSdt = resolveNodeSdtMetadata(node3, "structuredContent") ?? sdtMetadata;
264177
- node3.content?.forEach((child) => visitNode(child, inheritedMarks, nextSdt, runProperties, false));
264177
+ node3.content?.forEach((child) => visitNode(child, inheritedMarks, nextSdt, runProperties, false, inlineRunProperties));
264178
264178
  }
264179
264179
  function pageReferenceNodeToBlock(params$1) {
264180
- const { node: node3, inheritedMarks, visitNode, sdtMetadata, positions, converterContext, paragraphProperties } = params$1;
264180
+ const { node: node3, inheritedMarks, visitNode, sdtMetadata, positions, converterContext, paragraphProperties, inlineRunProperties: parentInlineRunProperties } = params$1;
264181
264181
  const instruction = getNodeInstruction(node3) || "";
264182
264182
  const nodeAttrs = typeof node3.attrs === "object" && node3.attrs !== null ? node3.attrs : {};
264183
264183
  const mergedMarks = [...Array.isArray(nodeAttrs.marksAsAttrs) ? nodeAttrs.marksAsAttrs : [], ...inheritedMarks ?? []];
@@ -264207,7 +264207,8 @@ function pageReferenceNodeToBlock(params$1) {
264207
264207
  text: fallbackText
264208
264208
  },
264209
264209
  inheritedMarks: mergedMarks,
264210
- runProperties: resolvedRunProperties
264210
+ runProperties: resolvedRunProperties,
264211
+ inlineRunProperties: runProperties
264211
264212
  });
264212
264213
  if (pageRefPos) {
264213
264214
  tokenRun.pmStart = pageRefPos.start;
@@ -264231,7 +264232,7 @@ function pageReferenceNodeToBlock(params$1) {
264231
264232
  tokenRun.sdt = sdtMetadata;
264232
264233
  return tokenRun;
264233
264234
  } else if (Array.isArray(node3.content))
264234
- node3.content.forEach((child) => visitNode(child, mergedMarks, sdtMetadata, runProperties));
264235
+ node3.content.forEach((child) => visitNode(child, mergedMarks, sdtMetadata, runProperties, false, parentInlineRunProperties));
264235
264236
  }
264236
264237
  function fieldAnnotationNodeToRun({ node: node3, positions }) {
264237
264238
  const fieldMetadata = resolveNodeSdtMetadata(node3, "fieldAnnotation");
@@ -264334,7 +264335,7 @@ function fieldAnnotationNodeToRun({ node: node3, positions }) {
264334
264335
  return run2;
264335
264336
  }
264336
264337
  function bookmarkStartNodeToBlocks(params$1) {
264337
- const { node: node3, positions, bookmarks, visitNode, inheritedMarks, sdtMetadata, runProperties, converterContext } = params$1;
264338
+ const { node: node3, positions, bookmarks, visitNode, inheritedMarks, sdtMetadata, runProperties, inlineRunProperties, converterContext } = params$1;
264338
264339
  const nodeAttrs = typeof node3.attrs === "object" && node3.attrs !== null ? node3.attrs : {};
264339
264340
  const bookmarkName = typeof nodeAttrs.name === "string" ? nodeAttrs.name : undefined;
264340
264341
  if (bookmarkName && bookmarks) {
@@ -264364,7 +264365,7 @@ function bookmarkStartNodeToBlocks(params$1) {
264364
264365
  converterContext.renderedBookmarkIds.add(bookmarkId);
264365
264366
  }
264366
264367
  if (Array.isArray(node3.content))
264367
- node3.content.forEach((child) => visitNode(child, inheritedMarks, sdtMetadata, runProperties));
264368
+ node3.content.forEach((child) => visitNode(child, inheritedMarks, sdtMetadata, runProperties, false, inlineRunProperties));
264368
264369
  return run2;
264369
264370
  }
264370
264371
  function bookmarkEndNodeToRun(params$1) {
@@ -264414,7 +264415,7 @@ function tabNodeToRun({ node: node3, positions, storyKey, tabOrdinal, paragraphA
264414
264415
  applyMarksToRun(run2, marks, undefined, undefined, undefined, true, storyKey);
264415
264416
  return run2;
264416
264417
  }
264417
- function noBreakHyphenNodeToRun({ node: node3, positions, storyKey, defaultFont, defaultSize, inheritedMarks = [], sdtMetadata, hyperlinkConfig = DEFAULT_HYPERLINK_CONFIG, themeColors, enableComments, runProperties, converterContext }) {
264418
+ function noBreakHyphenNodeToRun({ node: node3, positions, storyKey, defaultFont, defaultSize, inheritedMarks = [], sdtMetadata, hyperlinkConfig = DEFAULT_HYPERLINK_CONFIG, themeColors, enableComments, runProperties, inlineRunProperties, converterContext }) {
264418
264419
  let run2 = {
264419
264420
  text: NON_BREAKING_HYPHEN,
264420
264421
  fontFamily: defaultFont,
@@ -264428,14 +264429,14 @@ function noBreakHyphenNodeToRun({ node: node3, positions, storyKey, defaultFont,
264428
264429
  applyMarksToRun(run2, [...node3.marks ?? [], ...inheritedMarks ?? []], hyperlinkConfig, themeColors, converterContext?.backgroundColor, enableComments, storyKey);
264429
264430
  if (sdtMetadata)
264430
264431
  run2.sdt = sdtMetadata;
264431
- run2 = applyInlineRunProperties(run2, runProperties, converterContext);
264432
+ run2 = applyInlineRunProperties(run2, runProperties, converterContext, inlineRunProperties);
264432
264433
  return run2;
264433
264434
  }
264434
- function tokenNodeToRun({ node: node3, positions, storyKey, defaultFont, defaultSize, inheritedMarks, hyperlinkConfig, themeColors, sdtMetadata, runProperties, converterContext }) {
264435
+ function tokenNodeToRun({ node: node3, positions, storyKey, defaultFont, defaultSize, inheritedMarks, hyperlinkConfig, themeColors, sdtMetadata, runProperties, inlineRunProperties, converterContext }) {
264435
264436
  const token$1 = TOKEN_INLINE_TYPES.get(node3.type);
264436
264437
  if (!token$1)
264437
264438
  return null;
264438
- const run2 = {
264439
+ let run2 = {
264439
264440
  text: "0",
264440
264441
  token: token$1,
264441
264442
  fontFamily: defaultFont,
@@ -264448,8 +264449,9 @@ function tokenNodeToRun({ node: node3, positions, storyKey, defaultFont, default
264448
264449
  }
264449
264450
  const nodeMarks = node3.marks ?? [];
264450
264451
  const marksAsAttrs = Array.isArray(node3.attrs?.marksAsAttrs) ? node3.attrs.marksAsAttrs : [];
264451
- applyMarksToRun(run2, [...nodeMarks.length > 0 ? nodeMarks : marksAsAttrs, ...inheritedMarks ?? []], hyperlinkConfig, themeColors, undefined, true, storyKey);
264452
- applyInlineRunProperties(run2, runProperties, converterContext);
264452
+ const marks = [...nodeMarks.length > 0 ? nodeMarks : marksAsAttrs, ...inheritedMarks ?? []];
264453
+ applyMarksToRun(run2, marks, hyperlinkConfig, themeColors, undefined, true, storyKey);
264454
+ run2 = applyInlineRunProperties(run2, runProperties, converterContext, inlineRunProperties);
264453
264455
  if (marksAsAttrs.length > 0)
264454
264456
  run2._explicitFont = true;
264455
264457
  if (sdtMetadata)
@@ -265440,7 +265442,7 @@ function paragraphToFlowBlocks({ para, nextBlockId, positions, storyKey, tracked
265440
265442
  });
265441
265443
  partIndex += 1;
265442
265444
  };
265443
- const visitNode = (node3, inheritedMarks = [], activeSdt, activeRunProperties, activeHidden = false) => {
265445
+ const visitNode = (node3, inheritedMarks = [], activeSdt, activeRunProperties, activeHidden = false, activeInlineRunProperties) => {
265444
265446
  if (activeHidden && node3.type !== "run") {
265445
265447
  suppressedByVanish = true;
265446
265448
  return;
@@ -265459,6 +265461,7 @@ function paragraphToFlowBlocks({ para, nextBlockId, positions, storyKey, tracked
265459
265461
  themeColors,
265460
265462
  enableComments,
265461
265463
  runProperties: activeRunProperties,
265464
+ inlineRunProperties: activeInlineRunProperties,
265462
265465
  paragraphProperties: resolvedParagraphProperties,
265463
265466
  converterContext,
265464
265467
  visitNode,
@@ -265758,7 +265761,9 @@ function toFlowBlocks(pmDoc, options) {
265758
265761
  };
265759
265762
  const bodySectionProps = doc$12.attrs?.bodySectPr ?? doc$12.attrs?.sectPr;
265760
265763
  const sectionRanges = options?.emitSectionBreaks ? analyzeSectionRanges(doc$12, bodySectionProps) : [];
265761
- converterContext.sectionDirection = converterContext.sectionDirection ?? resolveSectionDirectionFromSectPr(sectionRanges[0]?.sectPr ?? bodySectionProps);
265764
+ const firstSectPr = sectionRanges[0]?.sectPr ?? bodySectionProps;
265765
+ converterContext.sectionDirection = converterContext.sectionDirection ?? resolveSectionDirectionFromSectPr(firstSectPr);
265766
+ converterContext.sectionDirectionContext = resolveSectionDirection(firstSectPr);
265762
265767
  publishSectionMetadata(sectionRanges, options);
265763
265768
  if (sectionRanges.length > 0 && sectionRanges[0]) {
265764
265769
  const sectionBreak = createSectionBreakBlock(sectionRanges[0], nextBlockId, { isFirstSection: true });
@@ -294551,7 +294556,69 @@ menclose::after {
294551
294556
  this.#onRebuild();
294552
294557
  });
294553
294558
  }
294554
- }, Y_SORT_THRESHOLD_PX = 2, Y_SAME_LINE_THRESHOLD_PX = 3, HORIZONTAL_OVERLAP_THRESHOLD = 0.8, log2 = (...args$1) => {}, CLASS, TWIPS_PER_INCH2 = 1440, PX_PER_PT2, VALID_TRACKED_MODES, DEFAULT_HYPERLINK_CONFIG, ATOMIC_INLINE_TYPES, TOKEN_INLINE_TYPES, isValidTrackedMode = (value) => {
294559
+ }, Y_SORT_THRESHOLD_PX = 2, Y_SAME_LINE_THRESHOLD_PX = 3, HORIZONTAL_OVERLAP_THRESHOLD = 0.8, log2 = (...args$1) => {}, CLASS, DEFAULT_PAGE_DIRECTION = "ltr", DEFAULT_WRITING_MODE = "horizontal-tb", isToggleOn = (val) => {
294560
+ if (val === undefined || val === null)
294561
+ return true;
294562
+ if (val === "0" || val === 0 || val === false)
294563
+ return false;
294564
+ if (val === "false" || val === "off")
294565
+ return false;
294566
+ return true;
294567
+ }, writingModeFromTextDirection$1 = (val) => {
294568
+ if (typeof val !== "string")
294569
+ return;
294570
+ switch (val) {
294571
+ case "lrTb":
294572
+ case "lrTbV":
294573
+ case "tb":
294574
+ case "tbV":
294575
+ return "horizontal-tb";
294576
+ case "tbRl":
294577
+ case "tbRlV":
294578
+ case "rl":
294579
+ case "rlV":
294580
+ return "vertical-rl";
294581
+ case "btLr":
294582
+ case "lr":
294583
+ case "lrV":
294584
+ case "tbLrV":
294585
+ return "vertical-lr";
294586
+ default:
294587
+ return;
294588
+ }
294589
+ }, resolveSectionDirection = (sectPr) => {
294590
+ let pageDirection = DEFAULT_PAGE_DIRECTION;
294591
+ let writingMode = DEFAULT_WRITING_MODE;
294592
+ let rtlGutter = false;
294593
+ if (sectPr && typeof sectPr === "object") {
294594
+ const elements = sectPr.elements;
294595
+ if (Array.isArray(elements))
294596
+ for (const el of elements) {
294597
+ if (!el?.name)
294598
+ continue;
294599
+ const val = el.attributes?.["w:val"] ?? el.attributes?.val;
294600
+ if (el.name === "w:bidi" && isToggleOn(val)) {
294601
+ pageDirection = "rtl";
294602
+ continue;
294603
+ }
294604
+ if (el.name === "w:textDirection") {
294605
+ const mode = writingModeFromTextDirection$1(val);
294606
+ if (mode)
294607
+ writingMode = mode;
294608
+ continue;
294609
+ }
294610
+ if (el.name === "w:rtlGutter" && isToggleOn(val)) {
294611
+ rtlGutter = true;
294612
+ continue;
294613
+ }
294614
+ }
294615
+ }
294616
+ return {
294617
+ pageDirection,
294618
+ writingMode,
294619
+ rtlGutter
294620
+ };
294621
+ }, TWIPS_PER_INCH2 = 1440, PX_PER_PT2, VALID_TRACKED_MODES, DEFAULT_HYPERLINK_CONFIG, ATOMIC_INLINE_TYPES, TOKEN_INLINE_TYPES, isValidTrackedMode = (value) => {
294555
294622
  return typeof value === "string" && VALID_TRACKED_MODES.includes(value);
294556
294623
  }, isTextRun$4 = (run2) => {
294557
294624
  return "text" in run2 && run2.kind !== "tab";
@@ -295156,68 +295223,6 @@ menclose::after {
295156
295223
  mutated = true;
295157
295224
  }
295158
295225
  return mutated ? mirrored : indent2;
295159
- }, DEFAULT_PAGE_DIRECTION = "ltr", DEFAULT_WRITING_MODE = "horizontal-tb", isToggleOn = (val) => {
295160
- if (val === undefined || val === null)
295161
- return true;
295162
- if (val === "0" || val === 0 || val === false)
295163
- return false;
295164
- if (val === "false" || val === "off")
295165
- return false;
295166
- return true;
295167
- }, writingModeFromTextDirection$1 = (val) => {
295168
- if (typeof val !== "string")
295169
- return;
295170
- switch (val) {
295171
- case "lrTb":
295172
- case "lrTbV":
295173
- case "tb":
295174
- case "tbV":
295175
- return "horizontal-tb";
295176
- case "tbRl":
295177
- case "tbRlV":
295178
- case "rl":
295179
- case "rlV":
295180
- return "vertical-rl";
295181
- case "btLr":
295182
- case "lr":
295183
- case "lrV":
295184
- case "tbLrV":
295185
- return "vertical-lr";
295186
- default:
295187
- return;
295188
- }
295189
- }, resolveSectionDirection = (sectPr) => {
295190
- let pageDirection = DEFAULT_PAGE_DIRECTION;
295191
- let writingMode = DEFAULT_WRITING_MODE;
295192
- let rtlGutter = false;
295193
- if (sectPr && typeof sectPr === "object") {
295194
- const elements = sectPr.elements;
295195
- if (Array.isArray(elements))
295196
- for (const el of elements) {
295197
- if (!el?.name)
295198
- continue;
295199
- const val = el.attributes?.["w:val"] ?? el.attributes?.val;
295200
- if (el.name === "w:bidi" && isToggleOn(val)) {
295201
- pageDirection = "rtl";
295202
- continue;
295203
- }
295204
- if (el.name === "w:textDirection") {
295205
- const mode = writingModeFromTextDirection$1(val);
295206
- if (mode)
295207
- writingMode = mode;
295208
- continue;
295209
- }
295210
- if (el.name === "w:rtlGutter" && isToggleOn(val)) {
295211
- rtlGutter = true;
295212
- continue;
295213
- }
295214
- }
295215
- }
295216
- return {
295217
- pageDirection,
295218
- writingMode,
295219
- rtlGutter
295220
- };
295221
295226
  }, writingModeFromTextDirection = (val) => {
295222
295227
  switch (val) {
295223
295228
  case "lrTb":
@@ -295388,7 +295393,7 @@ menclose::after {
295388
295393
  resolvedParagraphProperties = paragraphProperties;
295389
295394
  else
295390
295395
  resolvedParagraphProperties = resolveParagraphProperties(converterContext, paragraphProperties, converterContext.tableInfo);
295391
- const sectionContext = resolveSectionDirection(undefined);
295396
+ const sectionContext = converterContext?.sectionDirectionContext ?? resolveSectionDirection(undefined);
295392
295397
  const directionContext = resolveParagraphDirection(resolvedParagraphProperties, sectionContext);
295393
295398
  const normalizedDirection = directionContext.inlineDirection;
295394
295399
  const isRtl = normalizedDirection === "rtl";
@@ -296057,7 +296062,31 @@ menclose::after {
296057
296062
  if (!normalizedExisting || isAutoColorValue || isDefaultBlack)
296058
296063
  run2.color = resolveAutoColor(backgroundColor);
296059
296064
  }
296060
- }, HiddenByVanishError, NotInlineNodeError, applyInlineRunProperties = (run2, runProperties, converterContext) => {
296065
+ }, HiddenByVanishError, NotInlineNodeError, buildBidiContext = (runProperties) => {
296066
+ if (runProperties.rtl == null)
296067
+ return;
296068
+ return { rtl: runProperties.rtl === true };
296069
+ }, buildScriptContext = (runProperties) => {
296070
+ const cs = runProperties.cs;
296071
+ const lang = runProperties.lang;
296072
+ const hasLang = lang != null && (lang.val != null || lang.bidi != null || lang.eastAsia != null);
296073
+ if (cs == null && !hasLang)
296074
+ return;
296075
+ const ctx$1 = {};
296076
+ if (cs != null)
296077
+ ctx$1.complexScript = cs === true;
296078
+ if (hasLang) {
296079
+ const language = {};
296080
+ if (lang.val != null)
296081
+ language.default = lang.val;
296082
+ if (lang.bidi != null)
296083
+ language.complexScript = lang.bidi;
296084
+ if (lang.eastAsia != null)
296085
+ language.eastAsian = lang.eastAsia;
296086
+ ctx$1.language = language;
296087
+ }
296088
+ return ctx$1;
296089
+ }, applyInlineRunProperties = (run2, runProperties, converterContext, inlineRunProperties) => {
296061
296090
  if (!runProperties)
296062
296091
  return run2;
296063
296092
  const runAttrs = computeRunAttrs(runProperties, converterContext);
@@ -296065,6 +296094,14 @@ menclose::after {
296065
296094
  for (const key2 of Object.keys(runAttrs))
296066
296095
  if (runAttrs[key2] !== undefined)
296067
296096
  merged[key2] = runAttrs[key2];
296097
+ if (inlineRunProperties) {
296098
+ const bidi = buildBidiContext(inlineRunProperties);
296099
+ if (bidi)
296100
+ merged.bidi = bidi;
296101
+ const script = buildScriptContext(inlineRunProperties);
296102
+ if (script)
296103
+ merged.script = script;
296104
+ }
296068
296105
  return merged;
296069
296106
  }, buildSyntheticTextNode = (displayText, marks) => ({
296070
296107
  type: "text",
@@ -302079,7 +302116,7 @@ menclose::after {
302079
302116
  return;
302080
302117
  console.log(...args$1);
302081
302118
  }, HEADER_FOOTER_INIT_BUDGET_MS = 200, MAX_ZOOM_WARNING_THRESHOLD = 10, MAX_SELECTION_RECTS_PER_USER = 100, SEMANTIC_RESIZE_DEBOUNCE_MS = 120, MIN_SEMANTIC_CONTENT_WIDTH_PX = 1, GLOBAL_PERFORMANCE, PresentationEditor, ICONS, TEXTS, tableActionsOptions;
302082
- var init_src_CMq87UyB_es = __esm(() => {
302119
+ var init_src_DLNvZ7Yw_es = __esm(() => {
302083
302120
  init_rolldown_runtime_Bg48TavK_es();
302084
302121
  init_SuperConverter_BInxZk0I_es();
302085
302122
  init_jszip_C49i9kUs_es();
@@ -340140,7 +340177,7 @@ var init_zipper_BxRAi0_5_es = __esm(() => {
340140
340177
 
340141
340178
  // ../../packages/superdoc/dist/super-editor.es.js
340142
340179
  var init_super_editor_es = __esm(() => {
340143
- init_src_CMq87UyB_es();
340180
+ init_src_DLNvZ7Yw_es();
340144
340181
  init_SuperConverter_BInxZk0I_es();
340145
340182
  init_jszip_C49i9kUs_es();
340146
340183
  init_xml_js_CqGKpaft_es();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superdoc-dev/cli",
3
- "version": "0.8.0-next.92",
3
+ "version": "0.8.0-next.94",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "superdoc": "./dist/index.js"
@@ -24,8 +24,8 @@
24
24
  "@types/node": "22.19.2",
25
25
  "@types/ws": "^8.5.13",
26
26
  "typescript": "^5.9.2",
27
- "@superdoc/pm-adapter": "0.0.0",
28
27
  "@superdoc/document-api": "0.0.1",
28
+ "@superdoc/pm-adapter": "0.0.0",
29
29
  "@superdoc/super-editor": "0.0.1",
30
30
  "superdoc": "1.32.0"
31
31
  },
@@ -34,11 +34,11 @@
34
34
  "access": "public"
35
35
  },
36
36
  "optionalDependencies": {
37
- "@superdoc-dev/cli-darwin-arm64": "0.8.0-next.92",
38
- "@superdoc-dev/cli-darwin-x64": "0.8.0-next.92",
39
- "@superdoc-dev/cli-linux-x64": "0.8.0-next.92",
40
- "@superdoc-dev/cli-windows-x64": "0.8.0-next.92",
41
- "@superdoc-dev/cli-linux-arm64": "0.8.0-next.92"
37
+ "@superdoc-dev/cli-darwin-x64": "0.8.0-next.94",
38
+ "@superdoc-dev/cli-linux-x64": "0.8.0-next.94",
39
+ "@superdoc-dev/cli-darwin-arm64": "0.8.0-next.94",
40
+ "@superdoc-dev/cli-windows-x64": "0.8.0-next.94",
41
+ "@superdoc-dev/cli-linux-arm64": "0.8.0-next.94"
42
42
  },
43
43
  "scripts": {
44
44
  "predev": "node scripts/ensure-superdoc-build.js",