@superdoc-dev/mcp 0.12.0-next.11 → 0.12.0-next.13

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 +275 -59
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -52172,7 +52172,7 @@ var init_remark_gfm_BhnWr3yf_es = __esm(() => {
52172
52172
  emptyOptions2 = {};
52173
52173
  });
52174
52174
 
52175
- // ../../packages/superdoc/dist/chunks/SuperConverter-DJyHekqW.es.js
52175
+ // ../../packages/superdoc/dist/chunks/SuperConverter-d9QeIy9-.es.js
52176
52176
  function getExtensionConfigField(extension$1, field, context = { name: "" }) {
52177
52177
  const fieldValue = extension$1.config[field];
52178
52178
  if (typeof fieldValue === "function")
@@ -67739,16 +67739,31 @@ function preProcessXeInstruction(nodesToCombine, instrText, options = {}) {
67739
67739
  }];
67740
67740
  }
67741
67741
  function preProcessTcInstruction(nodesToCombine, instrText, options = {}) {
67742
+ const before = [];
67743
+ const after = [];
67744
+ const entryElements = [];
67742
67745
  const instructionTokens = options.instructionTokens ?? null;
67743
- return [{
67744
- name: "sd:tableOfContentsEntry",
67745
- type: "element",
67746
- attributes: {
67747
- instruction: instrText,
67748
- ...instructionTokens ? { instructionTokens } : {}
67746
+ let seenContent = false;
67747
+ for (const node2 of nodesToCombine)
67748
+ if (node2?.name === "w:bookmarkStart" || node2?.name === "w:bookmarkEnd")
67749
+ (seenContent ? after : before).push(node2);
67750
+ else {
67751
+ seenContent = true;
67752
+ entryElements.push(node2);
67753
+ }
67754
+ return [
67755
+ ...before,
67756
+ {
67757
+ name: "sd:tableOfContentsEntry",
67758
+ type: "element",
67759
+ attributes: {
67760
+ instruction: instrText,
67761
+ ...instructionTokens ? { instructionTokens } : {}
67762
+ },
67763
+ elements: entryElements
67749
67764
  },
67750
- elements: nodesToCombine
67751
- }];
67765
+ ...after
67766
+ ];
67752
67767
  }
67753
67768
  function preProcessRefInstruction(nodesToCombine, instrText, options = {}) {
67754
67769
  return [{
@@ -118157,7 +118172,7 @@ var isRegExp = (value) => {
118157
118172
  state.kern = kernNode.attributes["w:val"];
118158
118173
  }
118159
118174
  }, SuperConverter;
118160
- var init_SuperConverter_DJyHekqW_es = __esm(() => {
118175
+ var init_SuperConverter_d9QeIy9_es = __esm(() => {
118161
118176
  init_rolldown_runtime_Bg48TavK_es();
118162
118177
  init_jszip_C49i9kUs_es();
118163
118178
  init_xml_js_CqGKpaft_es();
@@ -156086,29 +156101,45 @@ var init_SuperConverter_DJyHekqW_es = __esm(() => {
156086
156101
  evidenceId: "lucida-console",
156087
156102
  generic: "monospace",
156088
156103
  logicalFamily: "Lucida Console",
156089
- physicalFamily: "Cousine",
156090
- verdict: "cell_width_only",
156104
+ physicalFamily: "Noto Sans Mono",
156105
+ verdict: "visual_only",
156091
156106
  faces: {
156092
- regular: false,
156093
- bold: false,
156107
+ regular: true,
156108
+ bold: true,
156094
156109
  italic: false,
156095
156110
  boldItalic: false
156096
156111
  },
156112
+ faceSources: {
156113
+ italic: {
156114
+ kind: "synthetic",
156115
+ from: "regular"
156116
+ },
156117
+ boldItalic: {
156118
+ kind: "synthetic",
156119
+ from: "bold"
156120
+ }
156121
+ },
156097
156122
  gates: {
156098
- static: "not_run",
156099
- metric: "not_run",
156123
+ static: "pass",
156124
+ metric: "pass",
156100
156125
  layout: "not_run",
156101
- ship: "not_run"
156126
+ ship: "fail"
156102
156127
  },
156103
156128
  policyAction: "category_fallback",
156104
- measurementRefs: ["lucida-console__cousine#analytic_advance#2026-06-03"],
156129
+ measurementRefs: ["lucida-console__noto-sans-mono#monospace_cell#analytic_advance#2026-06-09", "lucida-console__noto-sans-mono#visual_review#2026-06-09"],
156105
156130
  exportRule: "preserve_original_name",
156106
156131
  advance: {
156107
156132
  basis: "monospace_cell",
156108
- meanDelta: 0.004050000000000001,
156109
- maxDelta: 0.004050000000000001
156133
+ meanDelta: 0.00254,
156134
+ maxDelta: 0.00303
156110
156135
  },
156111
- candidateLicense: "OFL-1.1"
156136
+ candidateLicense: "OFL-1.1",
156137
+ faceVerdicts: {
156138
+ regular: "cell_width_only",
156139
+ bold: "cell_width_only",
156140
+ italic: "visual_only",
156141
+ boldItalic: "visual_only"
156142
+ }
156112
156143
  },
156113
156144
  {
156114
156145
  evidenceId: "gill-sans-mt-condensed",
@@ -156261,6 +156292,20 @@ var init_SuperConverter_DJyHekqW_es = __esm(() => {
156261
156292
  italic: false,
156262
156293
  boldItalic: false
156263
156294
  },
156295
+ faceSources: {
156296
+ bold: {
156297
+ kind: "synthetic",
156298
+ from: "regular"
156299
+ },
156300
+ italic: {
156301
+ kind: "synthetic",
156302
+ from: "regular"
156303
+ },
156304
+ boldItalic: {
156305
+ kind: "synthetic",
156306
+ from: "regular"
156307
+ }
156308
+ },
156264
156309
  gates: {
156265
156310
  static: "pass",
156266
156311
  metric: "fail",
@@ -156268,7 +156313,7 @@ var init_SuperConverter_DJyHekqW_es = __esm(() => {
156268
156313
  ship: "not_run"
156269
156314
  },
156270
156315
  policyAction: "substitute",
156271
- measurementRefs: ["baskerville-old-face_regular__bacasime-antique#regular#w400#7dac1e5f#analytic_advance#2026-06-05"],
156316
+ measurementRefs: ["baskerville-old-face_regular__bacasime-antique#regular#w400#7dac1e5f#analytic_advance#2026-06-05", "baskerville-old-face__bacasime-antique#synthetic_faces#visual_review#2026-06-09"],
156272
156317
  exportRule: "preserve_original_name",
156273
156318
  advance: {
156274
156319
  basis: "latin_full",
@@ -156276,7 +156321,12 @@ var init_SuperConverter_DJyHekqW_es = __esm(() => {
156276
156321
  maxDelta: 0.4915590863952334
156277
156322
  },
156278
156323
  candidateLicense: "OFL-1.1",
156279
- faceVerdicts: { regular: "visual_only" },
156324
+ faceVerdicts: {
156325
+ regular: "visual_only",
156326
+ bold: "visual_only",
156327
+ italic: "visual_only",
156328
+ boldItalic: "visual_only"
156329
+ },
156280
156330
  glyphExceptions: [{
156281
156331
  slot: "regular",
156282
156332
  codepoint: 160,
@@ -156284,6 +156334,37 @@ var init_SuperConverter_DJyHekqW_es = __esm(() => {
156284
156334
  note: "Bacasime Antique Regular's no-break space (U+00A0) advance diverges ~49% from Baskerville Old Face; lines containing NBSP reflow. Every other Latin-core glyph is advance-identical, which is why this is visual_only with a single named exception, not near_metric."
156285
156335
  }]
156286
156336
  },
156337
+ {
156338
+ evidenceId: "brush-script-mt",
156339
+ generic: "serif",
156340
+ logicalFamily: "Brush Script MT",
156341
+ physicalFamily: "Oregano Italic",
156342
+ verdict: "visual_only",
156343
+ faces: {
156344
+ regular: true,
156345
+ bold: false,
156346
+ italic: false,
156347
+ boldItalic: false
156348
+ },
156349
+ faceSources: { bold: {
156350
+ kind: "synthetic",
156351
+ from: "regular"
156352
+ } },
156353
+ gates: {
156354
+ static: "pass",
156355
+ metric: "fail",
156356
+ layout: "not_run",
156357
+ ship: "fail"
156358
+ },
156359
+ policyAction: "category_fallback",
156360
+ measurementRefs: ["brush-script-mt__oregano-italic#visual_review#2026-06-09"],
156361
+ exportRule: "preserve_original_name",
156362
+ candidateLicense: "OFL-1.1",
156363
+ faceVerdicts: {
156364
+ regular: "visual_only",
156365
+ bold: "visual_only"
156366
+ }
156367
+ },
156287
156368
  {
156288
156369
  evidenceId: "cooper-black",
156289
156370
  generic: "serif",
@@ -156350,6 +156431,16 @@ var init_SuperConverter_DJyHekqW_es = __esm(() => {
156350
156431
  style: "normal",
156351
156432
  file: "Caprasimo-Regular.woff2"
156352
156433
  }]),
156434
+ familyWithFaces("Bacasime Antique", "OFL-1.1", [{
156435
+ weight: "normal",
156436
+ style: "normal",
156437
+ file: "BacasimeAntique-Regular.woff2"
156438
+ }]),
156439
+ familyWithFaces("Oregano Italic", "OFL-1.1", [{
156440
+ weight: "normal",
156441
+ style: "normal",
156442
+ file: "OreganoItalic-Regular.woff2"
156443
+ }]),
156353
156444
  family("Gelasio", "Gelasio", "OFL-1.1"),
156354
156445
  familyWithFaces("Cardo", "OFL-1.1", [
156355
156446
  {
@@ -156378,6 +156469,15 @@ var init_SuperConverter_DJyHekqW_es = __esm(() => {
156378
156469
  file: "ComicRelief-Bold.woff2"
156379
156470
  }]),
156380
156471
  family("Noto Sans", "NotoSans", "OFL-1.1"),
156472
+ familyWithFaces("Noto Sans Mono", "OFL-1.1", [{
156473
+ weight: "normal",
156474
+ style: "normal",
156475
+ file: "NotoSansMono-Regular.woff2"
156476
+ }, {
156477
+ weight: "bold",
156478
+ style: "normal",
156479
+ file: "NotoSansMono-Bold.woff2"
156480
+ }]),
156381
156481
  family("PT Sans", "PTSans", "OFL-1.1")
156382
156482
  ]);
156383
156483
  SUBSTITUTION_EVIDENCE = SUBSTITUTION_EVIDENCE$1;
@@ -156395,10 +156495,13 @@ var init_SuperConverter_DJyHekqW_es = __esm(() => {
156395
156495
  registriesByFontSet = /* @__PURE__ */ new WeakMap;
156396
156496
  BUNDLED_FAMILIES = new Set(BUNDLED_MANIFEST.map((f2) => f2.family));
156397
156497
  ADVERTISED_BUILT_IN_TOOLBAR_FAMILIES = new Set([
156498
+ "Baskerville Old Face",
156499
+ "Brush Script MT",
156398
156500
  "Cooper Black",
156399
156501
  "Comic Sans MS",
156400
156502
  "Garamond",
156401
156503
  "Georgia",
156504
+ "Lucida Console",
156402
156505
  "Tahoma",
156403
156506
  "Trebuchet MS"
156404
156507
  ]);
@@ -158189,7 +158292,7 @@ var init_SuperConverter_DJyHekqW_es = __esm(() => {
158189
158292
  };
158190
158293
  });
158191
158294
 
158192
- // ../../packages/superdoc/dist/chunks/create-headless-toolbar-Jmx2i-9i.es.js
158295
+ // ../../packages/superdoc/dist/chunks/create-headless-toolbar-l5QB6sQY.es.js
158193
158296
  function parseSizeUnit(val = "0") {
158194
158297
  const length = val.toString() || "0";
158195
158298
  const value = Number.parseFloat(length);
@@ -168547,8 +168650,8 @@ var CSS_DIMENSION_REGEX, DOM_SIZE_UNITS, normalizeActorId = (value) => {
168547
168650
  }
168548
168651
  };
168549
168652
  };
168550
- var init_create_headless_toolbar_Jmx2i_9i_es = __esm(() => {
168551
- init_SuperConverter_DJyHekqW_es();
168653
+ var init_create_headless_toolbar_l5QB6sQY_es = __esm(() => {
168654
+ init_SuperConverter_d9QeIy9_es();
168552
168655
  init_uuid_B2wVPhPi_es();
168553
168656
  init_constants_D9qj59G2_es();
168554
168657
  init_dist_B8HfvhaK_es();
@@ -223232,7 +223335,7 @@ var init_remark_gfm_eZN6yzWQ_es = __esm(() => {
223232
223335
  init_remark_gfm_BhnWr3yf_es();
223233
223336
  });
223234
223337
 
223235
- // ../../packages/superdoc/dist/chunks/src-BB_FFFud.es.js
223338
+ // ../../packages/superdoc/dist/chunks/src-LeQVnrcZ.es.js
223236
223339
  function deleteProps(obj, propOrProps) {
223237
223340
  const props = typeof propOrProps === "string" ? [propOrProps] : propOrProps;
223238
223341
  const removeNested = (target, pathParts, index2 = 0) => {
@@ -278059,6 +278162,9 @@ async function goToAnchor({ anchor, layout, blocks: blocks2, measures, bookmarks
278059
278162
  let nextFragmentPage = null;
278060
278163
  let nextFragmentStart = null;
278061
278164
  let nextFragmentY = null;
278165
+ let prevFragmentPage = null;
278166
+ let prevFragmentEnd = null;
278167
+ let prevFragmentY = null;
278062
278168
  for (const page of layout.pages) {
278063
278169
  for (const fragment of page.fragments) {
278064
278170
  if (fragment.kind !== "para")
@@ -278077,13 +278183,25 @@ async function goToAnchor({ anchor, layout, blocks: blocks2, measures, bookmarks
278077
278183
  nextFragmentStart = fragStart;
278078
278184
  nextFragmentY = fragment.y;
278079
278185
  }
278186
+ if (fragEnd <= pmPos && (prevFragmentEnd === null || fragEnd > prevFragmentEnd)) {
278187
+ prevFragmentPage = page.number - 1;
278188
+ prevFragmentEnd = fragEnd;
278189
+ prevFragmentY = fragment.y;
278190
+ }
278080
278191
  }
278081
278192
  if (pageIndex != null)
278082
278193
  break;
278083
278194
  }
278084
- if (pageIndex == null && nextFragmentPage != null) {
278085
- pageIndex = nextFragmentPage;
278086
- fragmentY = nextFragmentY;
278195
+ if (pageIndex == null) {
278196
+ const prevGap = prevFragmentEnd != null ? pmPos - prevFragmentEnd : Infinity;
278197
+ const nextGap = nextFragmentStart != null ? nextFragmentStart - pmPos : Infinity;
278198
+ if (prevFragmentPage != null && prevGap < nextGap) {
278199
+ pageIndex = prevFragmentPage;
278200
+ fragmentY = prevFragmentY;
278201
+ } else if (nextFragmentPage != null) {
278202
+ pageIndex = nextFragmentPage;
278203
+ fragmentY = nextFragmentY;
278204
+ }
278087
278205
  }
278088
278206
  }
278089
278207
  if (pageIndex == null)
@@ -320690,13 +320808,13 @@ menclose::after {
320690
320808
  return;
320691
320809
  console.log(...args$1);
320692
320810
  }, 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, TRACKED_MARK_NAMES;
320693
- var init_src_BB_FFFud_es = __esm(() => {
320811
+ var init_src_LeQVnrcZ_es = __esm(() => {
320694
320812
  init_rolldown_runtime_Bg48TavK_es();
320695
- init_SuperConverter_DJyHekqW_es();
320813
+ init_SuperConverter_d9QeIy9_es();
320696
320814
  init_jszip_C49i9kUs_es();
320697
320815
  init_xml_js_CqGKpaft_es();
320698
320816
  init_uuid_B2wVPhPi_es();
320699
- init_create_headless_toolbar_Jmx2i_9i_es();
320817
+ init_create_headless_toolbar_l5QB6sQY_es();
320700
320818
  init_constants_D9qj59G2_es();
320701
320819
  init_dist_B8HfvhaK_es();
320702
320820
  init_unified_Dsuw2be5_es();
@@ -355661,11 +355779,11 @@ function print() { __p += __j.call(arguments, '') }
355661
355779
  ]);
355662
355780
  });
355663
355781
 
355664
- // ../../packages/superdoc/dist/chunks/create-super-doc-ui-Cjo_Z85j.es.js
355782
+ // ../../packages/superdoc/dist/chunks/create-super-doc-ui-uuXftA9o.es.js
355665
355783
  var headlessToolbarConstants, MOD_ALIASES, ALT_ALIASES, CTRL_ALIASES, SHIFT_ALIASES, BUILTIN_CONTEXT_MENU_GROUPS, BUILTIN_GROUP_ORDER, RESERVED_PROXY_PROPERTY_NAMES, ALL_TOOLBAR_COMMAND_IDS, EMPTY_ACTIVE_IDS;
355666
- var init_create_super_doc_ui_Cjo_Z85j_es = __esm(() => {
355667
- init_SuperConverter_DJyHekqW_es();
355668
- init_create_headless_toolbar_Jmx2i_9i_es();
355784
+ var init_create_super_doc_ui_uuXftA9o_es = __esm(() => {
355785
+ init_SuperConverter_d9QeIy9_es();
355786
+ init_create_headless_toolbar_l5QB6sQY_es();
355669
355787
  headlessToolbarConstants = {
355670
355788
  DEFAULT_TEXT_ALIGN_OPTIONS: [
355671
355789
  {
@@ -355947,16 +356065,16 @@ var init_zipper_yaJVJ4z9_es = __esm(() => {
355947
356065
 
355948
356066
  // ../../packages/superdoc/dist/super-editor.es.js
355949
356067
  var init_super_editor_es = __esm(() => {
355950
- init_src_BB_FFFud_es();
355951
- init_SuperConverter_DJyHekqW_es();
356068
+ init_src_LeQVnrcZ_es();
356069
+ init_SuperConverter_d9QeIy9_es();
355952
356070
  init_jszip_C49i9kUs_es();
355953
356071
  init_xml_js_CqGKpaft_es();
355954
- init_create_headless_toolbar_Jmx2i_9i_es();
356072
+ init_create_headless_toolbar_l5QB6sQY_es();
355955
356073
  init_constants_D9qj59G2_es();
355956
356074
  init_dist_B8HfvhaK_es();
355957
356075
  init_unified_Dsuw2be5_es();
355958
356076
  init_DocxZipper_FUsfThjV_es();
355959
- init_create_super_doc_ui_Cjo_Z85j_es();
356077
+ init_create_super_doc_ui_uuXftA9o_es();
355960
356078
  init_ui_C5PAS9hY_es();
355961
356079
  init_eventemitter3_BnGqBE_Q_es();
355962
356080
  init_errors_CNaD6vcg_es();
@@ -443028,8 +443146,22 @@ function preProcessXeInstruction2(nodesToCombine, instrText, options = {}) {
443028
443146
 
443029
443147
  // ../../packages/super-editor/src/editors/v1/core/super-converter/field-references/fld-preprocessors/tc-preprocessor.js
443030
443148
  function preProcessTcInstruction2(nodesToCombine, instrText, options = {}) {
443149
+ const before = [];
443150
+ const after = [];
443151
+ const entryElements = [];
443031
443152
  const instructionTokens = options.instructionTokens ?? null;
443153
+ let seenContent = false;
443154
+ for (const node4 of nodesToCombine) {
443155
+ const isBookmarkMarker = node4?.name === "w:bookmarkStart" || node4?.name === "w:bookmarkEnd";
443156
+ if (isBookmarkMarker) {
443157
+ (seenContent ? after : before).push(node4);
443158
+ } else {
443159
+ seenContent = true;
443160
+ entryElements.push(node4);
443161
+ }
443162
+ }
443032
443163
  return [
443164
+ ...before,
443033
443165
  {
443034
443166
  name: "sd:tableOfContentsEntry",
443035
443167
  type: "element",
@@ -443037,8 +443169,9 @@ function preProcessTcInstruction2(nodesToCombine, instrText, options = {}) {
443037
443169
  instruction: instrText,
443038
443170
  ...instructionTokens ? { instructionTokens } : {}
443039
443171
  },
443040
- elements: nodesToCombine
443041
- }
443172
+ elements: entryElements
443173
+ },
443174
+ ...after
443042
443175
  ];
443043
443176
  }
443044
443177
 
@@ -457166,7 +457299,7 @@ var init_exporter = __esm(() => {
457166
457299
  // ../../shared/font-system/src/types.ts
457167
457300
  var init_types8 = () => {};
457168
457301
 
457169
- // ../../node_modules/.pnpm/@docfonts+fallbacks@0.12.0/node_modules/@docfonts/fallbacks/dist/data.js
457302
+ // ../../node_modules/.pnpm/@docfonts+fallbacks@0.13.0/node_modules/@docfonts/fallbacks/dist/data.js
457170
457303
  var SUBSTITUTION_EVIDENCE2;
457171
457304
  var init_data = __esm(() => {
457172
457305
  SUBSTITUTION_EVIDENCE2 = [
@@ -457833,31 +457966,48 @@ var init_data = __esm(() => {
457833
457966
  evidenceId: "lucida-console",
457834
457967
  generic: "monospace",
457835
457968
  logicalFamily: "Lucida Console",
457836
- physicalFamily: "Cousine",
457837
- verdict: "cell_width_only",
457969
+ physicalFamily: "Noto Sans Mono",
457970
+ verdict: "visual_only",
457838
457971
  faces: {
457839
- regular: false,
457840
- bold: false,
457972
+ regular: true,
457973
+ bold: true,
457841
457974
  italic: false,
457842
457975
  boldItalic: false
457843
457976
  },
457977
+ faceSources: {
457978
+ italic: {
457979
+ kind: "synthetic",
457980
+ from: "regular"
457981
+ },
457982
+ boldItalic: {
457983
+ kind: "synthetic",
457984
+ from: "bold"
457985
+ }
457986
+ },
457844
457987
  gates: {
457845
- static: "not_run",
457846
- metric: "not_run",
457988
+ static: "pass",
457989
+ metric: "pass",
457847
457990
  layout: "not_run",
457848
- ship: "not_run"
457991
+ ship: "fail"
457849
457992
  },
457850
457993
  policyAction: "category_fallback",
457851
457994
  measurementRefs: [
457852
- "lucida-console__cousine#analytic_advance#2026-06-03"
457995
+ "lucida-console__noto-sans-mono#monospace_cell#analytic_advance#2026-06-09",
457996
+ "lucida-console__noto-sans-mono#visual_review#2026-06-09"
457853
457997
  ],
457854
457998
  exportRule: "preserve_original_name",
457855
457999
  advance: {
457856
458000
  basis: "monospace_cell",
457857
- meanDelta: 0.004050000000000001,
457858
- maxDelta: 0.004050000000000001
458001
+ meanDelta: 0.00254,
458002
+ maxDelta: 0.00303
457859
458003
  },
457860
- candidateLicense: "OFL-1.1"
458004
+ candidateLicense: "OFL-1.1",
458005
+ faceVerdicts: {
458006
+ regular: "cell_width_only",
458007
+ bold: "cell_width_only",
458008
+ italic: "visual_only",
458009
+ boldItalic: "visual_only"
458010
+ }
457861
458011
  },
457862
458012
  {
457863
458013
  evidenceId: "gill-sans-mt-condensed",
@@ -458016,6 +458166,20 @@ var init_data = __esm(() => {
458016
458166
  italic: false,
458017
458167
  boldItalic: false
458018
458168
  },
458169
+ faceSources: {
458170
+ bold: {
458171
+ kind: "synthetic",
458172
+ from: "regular"
458173
+ },
458174
+ italic: {
458175
+ kind: "synthetic",
458176
+ from: "regular"
458177
+ },
458178
+ boldItalic: {
458179
+ kind: "synthetic",
458180
+ from: "regular"
458181
+ }
458182
+ },
458019
458183
  gates: {
458020
458184
  static: "pass",
458021
458185
  metric: "fail",
@@ -458024,7 +458188,8 @@ var init_data = __esm(() => {
458024
458188
  },
458025
458189
  policyAction: "substitute",
458026
458190
  measurementRefs: [
458027
- "baskerville-old-face_regular__bacasime-antique#regular#w400#7dac1e5f#analytic_advance#2026-06-05"
458191
+ "baskerville-old-face_regular__bacasime-antique#regular#w400#7dac1e5f#analytic_advance#2026-06-05",
458192
+ "baskerville-old-face__bacasime-antique#synthetic_faces#visual_review#2026-06-09"
458028
458193
  ],
458029
458194
  exportRule: "preserve_original_name",
458030
458195
  advance: {
@@ -458034,7 +458199,10 @@ var init_data = __esm(() => {
458034
458199
  },
458035
458200
  candidateLicense: "OFL-1.1",
458036
458201
  faceVerdicts: {
458037
- regular: "visual_only"
458202
+ regular: "visual_only",
458203
+ bold: "visual_only",
458204
+ italic: "visual_only",
458205
+ boldItalic: "visual_only"
458038
458206
  },
458039
458207
  glyphExceptions: [
458040
458208
  {
@@ -458045,6 +458213,41 @@ var init_data = __esm(() => {
458045
458213
  }
458046
458214
  ]
458047
458215
  },
458216
+ {
458217
+ evidenceId: "brush-script-mt",
458218
+ generic: "serif",
458219
+ logicalFamily: "Brush Script MT",
458220
+ physicalFamily: "Oregano Italic",
458221
+ verdict: "visual_only",
458222
+ faces: {
458223
+ regular: true,
458224
+ bold: false,
458225
+ italic: false,
458226
+ boldItalic: false
458227
+ },
458228
+ faceSources: {
458229
+ bold: {
458230
+ kind: "synthetic",
458231
+ from: "regular"
458232
+ }
458233
+ },
458234
+ gates: {
458235
+ static: "pass",
458236
+ metric: "fail",
458237
+ layout: "not_run",
458238
+ ship: "fail"
458239
+ },
458240
+ policyAction: "category_fallback",
458241
+ measurementRefs: [
458242
+ "brush-script-mt__oregano-italic#visual_review#2026-06-09"
458243
+ ],
458244
+ exportRule: "preserve_original_name",
458245
+ candidateLicense: "OFL-1.1",
458246
+ faceVerdicts: {
458247
+ regular: "visual_only",
458248
+ bold: "visual_only"
458249
+ }
458250
+ },
458048
458251
  {
458049
458252
  evidenceId: "cooper-black",
458050
458253
  generic: "serif",
@@ -458099,7 +458302,7 @@ var init_data = __esm(() => {
458099
458302
  ];
458100
458303
  });
458101
458304
 
458102
- // ../../node_modules/.pnpm/@docfonts+fallbacks@0.12.0/node_modules/@docfonts/fallbacks/dist/fallbacks.js
458305
+ // ../../node_modules/.pnpm/@docfonts+fallbacks@0.13.0/node_modules/@docfonts/fallbacks/dist/fallbacks.js
458103
458306
  function normalizeFamilyName2(name) {
458104
458307
  return name.trim().replace(/^['"]+|['"]+$/g, "").trim().toLowerCase();
458105
458308
  }
@@ -458193,7 +458396,7 @@ var init_fallbacks = __esm(() => {
458193
458396
  ]));
458194
458397
  });
458195
458398
 
458196
- // ../../node_modules/.pnpm/@docfonts+fallbacks@0.12.0/node_modules/@docfonts/fallbacks/dist/index.js
458399
+ // ../../node_modules/.pnpm/@docfonts+fallbacks@0.13.0/node_modules/@docfonts/fallbacks/dist/index.js
458197
458400
  var init_dist11 = __esm(() => {
458198
458401
  init_data();
458199
458402
  init_fallbacks();
@@ -458223,6 +458426,12 @@ var init_bundled_manifest = __esm(() => {
458223
458426
  family2("Liberation Serif", "LiberationSerif", "OFL-1.1"),
458224
458427
  family2("Liberation Mono", "LiberationMono", "OFL-1.1"),
458225
458428
  familyWithFaces2("Caprasimo", "OFL-1.1", [{ weight: "normal", style: "normal", file: "Caprasimo-Regular.woff2" }]),
458429
+ familyWithFaces2("Bacasime Antique", "OFL-1.1", [
458430
+ { weight: "normal", style: "normal", file: "BacasimeAntique-Regular.woff2" }
458431
+ ]),
458432
+ familyWithFaces2("Oregano Italic", "OFL-1.1", [
458433
+ { weight: "normal", style: "normal", file: "OreganoItalic-Regular.woff2" }
458434
+ ]),
458226
458435
  family2("Gelasio", "Gelasio", "OFL-1.1"),
458227
458436
  familyWithFaces2("Cardo", "OFL-1.1", [
458228
458437
  { weight: "normal", style: "normal", file: "Cardo-Regular.woff2" },
@@ -458234,6 +458443,10 @@ var init_bundled_manifest = __esm(() => {
458234
458443
  { weight: "bold", style: "normal", file: "ComicRelief-Bold.woff2" }
458235
458444
  ]),
458236
458445
  family2("Noto Sans", "NotoSans", "OFL-1.1"),
458446
+ familyWithFaces2("Noto Sans Mono", "OFL-1.1", [
458447
+ { weight: "normal", style: "normal", file: "NotoSansMono-Regular.woff2" },
458448
+ { weight: "bold", style: "normal", file: "NotoSansMono-Bold.woff2" }
458449
+ ]),
458237
458450
  family2("PT Sans", "PTSans", "OFL-1.1")
458238
458451
  ]);
458239
458452
  });
@@ -458927,10 +459140,13 @@ var init_font_offerings = __esm(() => {
458927
459140
  init_substitution_evidence();
458928
459141
  BUNDLED_FAMILIES2 = new Set(BUNDLED_MANIFEST2.map((f2) => f2.family));
458929
459142
  ADVERTISED_BUILT_IN_TOOLBAR_FAMILIES2 = new Set([
459143
+ "Baskerville Old Face",
459144
+ "Brush Script MT",
458930
459145
  "Cooper Black",
458931
459146
  "Comic Sans MS",
458932
459147
  "Garamond",
458933
459148
  "Georgia",
459149
+ "Lucida Console",
458934
459150
  "Tahoma",
458935
459151
  "Trebuchet MS"
458936
459152
  ]);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superdoc-dev/mcp",
3
- "version": "0.12.0-next.11",
3
+ "version": "0.12.0-next.13",
4
4
  "type": "module",
5
5
  "engines": {
6
6
  "node": ">=20"