@superdoc-dev/mcp 0.12.0 → 0.12.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/index.js +32 -58
- package/package.json +4 -4
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-
|
|
52175
|
+
// ../../packages/superdoc/dist/chunks/SuperConverter-B-c9oe1O.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")
|
|
@@ -87394,7 +87394,7 @@ function compareLogicalFamily(a, b) {
|
|
|
87394
87394
|
return a.logicalFamily.localeCompare(b.logicalFamily, "en", { sensitivity: "base" });
|
|
87395
87395
|
}
|
|
87396
87396
|
function getBuiltInToolbarFontOfferings() {
|
|
87397
|
-
return FONT_OFFERINGS.filter((o) => o.
|
|
87397
|
+
return FONT_OFFERINGS.filter((o) => o.bundled && BUILT_IN_TOOLBAR_BASELINE_FAMILIES.has(o.logicalFamily)).sort(compareLogicalFamily);
|
|
87398
87398
|
}
|
|
87399
87399
|
function fontOfferingStack(offering) {
|
|
87400
87400
|
return `${offering.logicalFamily}, ${offering.generic}`;
|
|
@@ -114900,7 +114900,7 @@ var isRegExp = (value) => {
|
|
|
114900
114900
|
const detail = sources && sources.length ? ` from ${sources.join(", ")}` : "";
|
|
114901
114901
|
console.warn(`[superdoc] font asset failed to load for "${family$1}"${detail}. Check fonts.assetBaseUrl / fonts.resolveAssetUrl so the bundled .woff2 are served.`);
|
|
114902
114902
|
}
|
|
114903
|
-
}, registriesByFontSet, domlessRegistry = null, BUNDLED_FAMILIES, SUPPORTED_ALIAS_FAMILIES,
|
|
114903
|
+
}, registriesByFontSet, domlessRegistry = null, BUNDLED_FAMILIES, SUPPORTED_ALIAS_FAMILIES, BUILT_IN_TOOLBAR_BASELINE_FAMILIES, FONT_OFFERINGS, prepareCommentParaIds = (comment) => {
|
|
114904
114904
|
return {
|
|
114905
114905
|
...comment,
|
|
114906
114906
|
commentParaId: generateDocxRandomId()
|
|
@@ -119021,7 +119021,7 @@ var isRegExp = (value) => {
|
|
|
119021
119021
|
sourceId: stringOf(primary.sourceId),
|
|
119022
119022
|
revisionGroupId: stringOf(primary.revisionGroupId) || representativeRevisionId
|
|
119023
119023
|
});
|
|
119024
|
-
}, stringOf = (value) => typeof value === "string" ? value : value == null ? "" : String(value), groupedCache, SDT_NODE_NAMES, SDT_BLOCK_NAME = "structuredContentBlock", SDT_INLINE_NAME = "structuredContent", SDT_NODE_TYPES, VALID_CONTROL_TYPES, VALID_LOCK_MODES, VALID_APPEARANCES, FIELD_LIKE_SDT_TYPES, liveDocumentCountsCache, BIBLIOGRAPHY_NAMESPACE_URI = "http://schemas.openxmlformats.org/officeDocument/2006/bibliography", CUSTOM_XML_RELATIONSHIP_TYPE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml", CUSTOM_XML_PROPS_RELATIONSHIP_TYPE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps", DEFAULT_SELECTED_STYLE = "/APA.XSL", DEFAULT_STYLE_NAME = "APA", DEFAULT_VERSION = "6", API_TO_OOXML_SOURCE_TYPE, OOXML_TO_API_SOURCE_TYPE, SIMPLE_FIELD_TO_XML_TAG, XML_TAG_TO_SIMPLE_FIELD, import_lib2, FONT_FAMILY_FALLBACKS, DEFAULT_GENERIC_FALLBACK = "sans-serif", DEFAULT_FONT_SIZE_PT = 10, CURRENT_APP_VERSION = "1.
|
|
119024
|
+
}, stringOf = (value) => typeof value === "string" ? value : value == null ? "" : String(value), groupedCache, SDT_NODE_NAMES, SDT_BLOCK_NAME = "structuredContentBlock", SDT_INLINE_NAME = "structuredContent", SDT_NODE_TYPES, VALID_CONTROL_TYPES, VALID_LOCK_MODES, VALID_APPEARANCES, FIELD_LIKE_SDT_TYPES, liveDocumentCountsCache, BIBLIOGRAPHY_NAMESPACE_URI = "http://schemas.openxmlformats.org/officeDocument/2006/bibliography", CUSTOM_XML_RELATIONSHIP_TYPE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml", CUSTOM_XML_PROPS_RELATIONSHIP_TYPE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps", DEFAULT_SELECTED_STYLE = "/APA.XSL", DEFAULT_STYLE_NAME = "APA", DEFAULT_VERSION = "6", API_TO_OOXML_SOURCE_TYPE, OOXML_TO_API_SOURCE_TYPE, SIMPLE_FIELD_TO_XML_TAG, XML_TAG_TO_SIMPLE_FIELD, import_lib2, FONT_FAMILY_FALLBACKS, DEFAULT_GENERIC_FALLBACK = "sans-serif", DEFAULT_FONT_SIZE_PT = 10, CURRENT_APP_VERSION = "1.40.0", SUPERDOC_DOCUMENT_ORIGIN_PROPERTY = "SuperdocDocumentOrigin", STORED_DOCUMENT_ORIGINS, collectRunDefaultProperties = (runProps, { allowOverrideTypeface = true, allowOverrideSize = true, themeResolver, state }) => {
|
|
119025
119025
|
if (!runProps?.elements?.length || !state)
|
|
119026
119026
|
return;
|
|
119027
119027
|
const fontsNode = runProps.elements.find((el) => el.name === "w:rFonts");
|
|
@@ -119055,7 +119055,7 @@ var isRegExp = (value) => {
|
|
|
119055
119055
|
state.kern = kernNode.attributes["w:val"];
|
|
119056
119056
|
}
|
|
119057
119057
|
}, SuperConverter;
|
|
119058
|
-
var
|
|
119058
|
+
var init_SuperConverter_B_c9oe1O_es = __esm(() => {
|
|
119059
119059
|
init_rolldown_runtime_Bg48TavK_es();
|
|
119060
119060
|
init_jszip_C49i9kUs_es();
|
|
119061
119061
|
init_xml_js_CqGKpaft_es();
|
|
@@ -157985,24 +157985,11 @@ var init_SuperConverter_DAuqlmYY_es = __esm(() => {
|
|
|
157985
157985
|
"Courier",
|
|
157986
157986
|
"Times"
|
|
157987
157987
|
]);
|
|
157988
|
-
|
|
157989
|
-
"Arial
|
|
157990
|
-
"
|
|
157991
|
-
"Baskerville Old Face",
|
|
157992
|
-
"Bookman Old Style",
|
|
157993
|
-
"Brush Script MT",
|
|
157994
|
-
"Century",
|
|
157995
|
-
"Century Gothic",
|
|
157996
|
-
"Cooper Black",
|
|
157997
|
-
"Comic Sans MS",
|
|
157998
|
-
"Garamond",
|
|
157988
|
+
BUILT_IN_TOOLBAR_BASELINE_FAMILIES = new Set([
|
|
157989
|
+
"Arial",
|
|
157990
|
+
"Courier New",
|
|
157999
157991
|
"Georgia",
|
|
158000
|
-
"
|
|
158001
|
-
"Lucida Console",
|
|
158002
|
-
"Segoe UI",
|
|
158003
|
-
"Tahoma",
|
|
158004
|
-
"Trebuchet MS",
|
|
158005
|
-
"Verdana"
|
|
157992
|
+
"Times New Roman"
|
|
158006
157993
|
]);
|
|
158007
157994
|
FONT_OFFERINGS = deriveOfferings();
|
|
158008
157995
|
ALL_COMMENT_TARGETS = COMMENT_FILE_BASENAMES;
|
|
@@ -159799,7 +159786,7 @@ var init_SuperConverter_DAuqlmYY_es = __esm(() => {
|
|
|
159799
159786
|
};
|
|
159800
159787
|
});
|
|
159801
159788
|
|
|
159802
|
-
// ../../packages/superdoc/dist/chunks/create-headless-toolbar-
|
|
159789
|
+
// ../../packages/superdoc/dist/chunks/create-headless-toolbar-D5MP8sn4.es.js
|
|
159803
159790
|
function parseSizeUnit(val = "0") {
|
|
159804
159791
|
const length = val.toString() || "0";
|
|
159805
159792
|
const value = Number.parseFloat(length);
|
|
@@ -170448,8 +170435,8 @@ var CSS_DIMENSION_REGEX, DOM_SIZE_UNITS, normalizeActorId = (value) => {
|
|
|
170448
170435
|
}
|
|
170449
170436
|
};
|
|
170450
170437
|
};
|
|
170451
|
-
var
|
|
170452
|
-
|
|
170438
|
+
var init_create_headless_toolbar_D5MP8sn4_es = __esm(() => {
|
|
170439
|
+
init_SuperConverter_B_c9oe1O_es();
|
|
170453
170440
|
init_uuid_B2wVPhPi_es();
|
|
170454
170441
|
init_constants_D9qj59G2_es();
|
|
170455
170442
|
init_dist_B8HfvhaK_es();
|
|
@@ -225140,7 +225127,7 @@ var init_remark_gfm_eZN6yzWQ_es = __esm(() => {
|
|
|
225140
225127
|
init_remark_gfm_BhnWr3yf_es();
|
|
225141
225128
|
});
|
|
225142
225129
|
|
|
225143
|
-
// ../../packages/superdoc/dist/chunks/src-
|
|
225130
|
+
// ../../packages/superdoc/dist/chunks/src-6DTL8c0l.es.js
|
|
225144
225131
|
function deleteProps(obj, propOrProps) {
|
|
225145
225132
|
const props = typeof propOrProps === "string" ? [propOrProps] : propOrProps;
|
|
225146
225133
|
const removeNested = (target, pathParts, index2 = 0) => {
|
|
@@ -225214,7 +225201,7 @@ function prosemirrorToYXmlFragment(doc$12, xmlFragment) {
|
|
|
225214
225201
|
}
|
|
225215
225202
|
function getSuperdocVersion() {
|
|
225216
225203
|
try {
|
|
225217
|
-
return "1.
|
|
225204
|
+
return "1.40.0";
|
|
225218
225205
|
} catch {
|
|
225219
225206
|
return "unknown";
|
|
225220
225207
|
}
|
|
@@ -302658,7 +302645,7 @@ var Node$13 = class Node$14 {
|
|
|
302658
302645
|
domAvailabilityCache = false;
|
|
302659
302646
|
return false;
|
|
302660
302647
|
}
|
|
302661
|
-
}, summaryVersion = "1.
|
|
302648
|
+
}, summaryVersion = "1.40.0", nodeKeys, markKeys, transformListsInCopiedContent = (html3) => {
|
|
302662
302649
|
const container = document.createElement("div");
|
|
302663
302650
|
container.innerHTML = html3;
|
|
302664
302651
|
const result = [];
|
|
@@ -303844,7 +303831,7 @@ var Node$13 = class Node$14 {
|
|
|
303844
303831
|
return () => {};
|
|
303845
303832
|
const handle3 = setInterval(callback, intervalMs);
|
|
303846
303833
|
return () => clearInterval(handle3);
|
|
303847
|
-
}, HISTORY_UNSAFE_OPS, CANONICAL_COMMENT_IGNORED_KEYS, INITIAL_HASH, ROUND_CONSTANTS, V1_COVERAGE, V2_COVERAGE, SNAPSHOT_VERSION_V2 = "sd-diff-snapshot/v2", PAYLOAD_VERSION_V1 = "sd-diff-payload/v1", PAYLOAD_VERSION_V2 = "sd-diff-payload/v2", ENGINE_ID = "super-editor", STAGED_CONVERTER_KEYS, DiffServiceError, TC_LEVEL_MIN = 1, TC_LEVEL_MAX = 9, ALLOWED_WRAP_ATTRS, WRAP_TYPES_SUPPORTING_SIDE, WRAP_TYPES_SUPPORTING_DISTANCES, RELATIVE_HEIGHT_MIN = 0, RELATIVE_HEIGHT_MAX = 4294967295, FORBIDDEN_RAW_PATCH_NAMES, CONTROL_TYPE_SDT_PR_ELEMENTS, DEFAULT_CHECKBOX_SYMBOL_FONT2 = "MS Gothic", DEFAULT_CHECKBOX_CHECKED_HEX2 = "2612", DEFAULT_CHECKBOX_UNCHECKED_HEX2 = "2610", VARIANT_ORDER, KIND_ORDER, HEADER_RELATIONSHIP_TYPE3 = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/header", FOOTER_RELATIONSHIP_TYPE3 = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer", DOCUMENT_RELS_PATH2 = "word/_rels/document.xml.rels", HEADER_FILE_PATTERN2, FOOTER_FILE_PATTERN2, SPECIAL_NOTE_TYPES, BOOKMARK_SCAN_REVISION_PREFIX = "bookmark-scan:", import_lib4, CUSTOM_XML_DATA_RELATIONSHIP_TYPE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml", CUSTOM_XML_PROPS_RELATIONSHIP_TYPE2 = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps", CUSTOM_XML_DATASTORE_NAMESPACE = "http://schemas.openxmlformats.org/officeDocument/2006/customXml", SETTINGS_PART, RESTART_POLICY_TO_OOXML, VALID_DISPLAYS, REFERENCE_BLOCK_PREFIX, CAPTION_STYLE_NAMES, CAPTION_PARAGRAPH_STYLE_ID = "Caption", CAPTION_FORMAT_TO_OOXML, DOCUMENT_STAT_FIELD_TYPES, TOA_LEADER_REVERSE_MAP, EDGE_NODE_TYPES, CONTENT_TYPES_PART_ID = "[Content_Types].xml", CONTENT_TYPES_NS = "http://schemas.openxmlformats.org/package/2006/content-types", contentTypesPartDescriptor, empty_exports, init_empty, CURRENT_APP_VERSION2 = "1.
|
|
303834
|
+
}, HISTORY_UNSAFE_OPS, CANONICAL_COMMENT_IGNORED_KEYS, INITIAL_HASH, ROUND_CONSTANTS, V1_COVERAGE, V2_COVERAGE, SNAPSHOT_VERSION_V2 = "sd-diff-snapshot/v2", PAYLOAD_VERSION_V1 = "sd-diff-payload/v1", PAYLOAD_VERSION_V2 = "sd-diff-payload/v2", ENGINE_ID = "super-editor", STAGED_CONVERTER_KEYS, DiffServiceError, TC_LEVEL_MIN = 1, TC_LEVEL_MAX = 9, ALLOWED_WRAP_ATTRS, WRAP_TYPES_SUPPORTING_SIDE, WRAP_TYPES_SUPPORTING_DISTANCES, RELATIVE_HEIGHT_MIN = 0, RELATIVE_HEIGHT_MAX = 4294967295, FORBIDDEN_RAW_PATCH_NAMES, CONTROL_TYPE_SDT_PR_ELEMENTS, DEFAULT_CHECKBOX_SYMBOL_FONT2 = "MS Gothic", DEFAULT_CHECKBOX_CHECKED_HEX2 = "2612", DEFAULT_CHECKBOX_UNCHECKED_HEX2 = "2610", VARIANT_ORDER, KIND_ORDER, HEADER_RELATIONSHIP_TYPE3 = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/header", FOOTER_RELATIONSHIP_TYPE3 = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer", DOCUMENT_RELS_PATH2 = "word/_rels/document.xml.rels", HEADER_FILE_PATTERN2, FOOTER_FILE_PATTERN2, SPECIAL_NOTE_TYPES, BOOKMARK_SCAN_REVISION_PREFIX = "bookmark-scan:", import_lib4, CUSTOM_XML_DATA_RELATIONSHIP_TYPE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXml", CUSTOM_XML_PROPS_RELATIONSHIP_TYPE2 = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/customXmlProps", CUSTOM_XML_DATASTORE_NAMESPACE = "http://schemas.openxmlformats.org/officeDocument/2006/customXml", SETTINGS_PART, RESTART_POLICY_TO_OOXML, VALID_DISPLAYS, REFERENCE_BLOCK_PREFIX, CAPTION_STYLE_NAMES, CAPTION_PARAGRAPH_STYLE_ID = "Caption", CAPTION_FORMAT_TO_OOXML, DOCUMENT_STAT_FIELD_TYPES, TOA_LEADER_REVERSE_MAP, EDGE_NODE_TYPES, CONTENT_TYPES_PART_ID = "[Content_Types].xml", CONTENT_TYPES_NS = "http://schemas.openxmlformats.org/package/2006/content-types", contentTypesPartDescriptor, empty_exports, init_empty, CURRENT_APP_VERSION2 = "1.40.0", PIXELS_PER_INCH2 = 96, MAX_HEIGHT_BUFFER_PX = 50, MAX_WIDTH_BUFFER_PX = 20, TRACKED_REVIEW_MARK_NAMES2, isTrackedReviewMark = (mark2) => Boolean(mark2?.type?.name && TRACKED_REVIEW_MARK_NAMES2.has(mark2.type.name)), trackedReviewMarkKey = (mark2) => {
|
|
303848
303835
|
if (!isTrackedReviewMark(mark2))
|
|
303849
303836
|
return null;
|
|
303850
303837
|
const id2 = typeof mark2.attrs?.id === "string" ? mark2.attrs.id : "";
|
|
@@ -323384,13 +323371,13 @@ menclose::after {
|
|
|
323384
323371
|
return;
|
|
323385
323372
|
console.log(...args$1);
|
|
323386
323373
|
}, 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;
|
|
323387
|
-
var
|
|
323374
|
+
var init_src_6DTL8c0l_es = __esm(() => {
|
|
323388
323375
|
init_rolldown_runtime_Bg48TavK_es();
|
|
323389
|
-
|
|
323376
|
+
init_SuperConverter_B_c9oe1O_es();
|
|
323390
323377
|
init_jszip_C49i9kUs_es();
|
|
323391
323378
|
init_xml_js_CqGKpaft_es();
|
|
323392
323379
|
init_uuid_B2wVPhPi_es();
|
|
323393
|
-
|
|
323380
|
+
init_create_headless_toolbar_D5MP8sn4_es();
|
|
323394
323381
|
init_constants_D9qj59G2_es();
|
|
323395
323382
|
init_dist_B8HfvhaK_es();
|
|
323396
323383
|
init_unified_Dsuw2be5_es();
|
|
@@ -359177,11 +359164,11 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
359177
359164
|
]);
|
|
359178
359165
|
});
|
|
359179
359166
|
|
|
359180
|
-
// ../../packages/superdoc/dist/chunks/create-super-doc-ui-
|
|
359167
|
+
// ../../packages/superdoc/dist/chunks/create-super-doc-ui-BoJ3k-UK.es.js
|
|
359181
359168
|
var DEFAULT_TEXT_ALIGN_OPTIONS, DEFAULT_LINE_HEIGHT_OPTIONS, DEFAULT_ZOOM_OPTIONS, DEFAULT_DOCUMENT_MODE_OPTIONS, DEFAULT_FONT_SIZE_OPTIONS, 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, FONT_SIZE_OPTIONS;
|
|
359182
|
-
var
|
|
359183
|
-
|
|
359184
|
-
|
|
359169
|
+
var init_create_super_doc_ui_BoJ3k_UK_es = __esm(() => {
|
|
359170
|
+
init_SuperConverter_B_c9oe1O_es();
|
|
359171
|
+
init_create_headless_toolbar_D5MP8sn4_es();
|
|
359185
359172
|
DEFAULT_TEXT_ALIGN_OPTIONS = [
|
|
359186
359173
|
{
|
|
359187
359174
|
label: "Left",
|
|
@@ -359472,16 +359459,16 @@ var init_zipper_yaJVJ4z9_es = __esm(() => {
|
|
|
359472
359459
|
|
|
359473
359460
|
// ../../packages/superdoc/dist/super-editor.es.js
|
|
359474
359461
|
var init_super_editor_es = __esm(() => {
|
|
359475
|
-
|
|
359476
|
-
|
|
359462
|
+
init_src_6DTL8c0l_es();
|
|
359463
|
+
init_SuperConverter_B_c9oe1O_es();
|
|
359477
359464
|
init_jszip_C49i9kUs_es();
|
|
359478
359465
|
init_xml_js_CqGKpaft_es();
|
|
359479
|
-
|
|
359466
|
+
init_create_headless_toolbar_D5MP8sn4_es();
|
|
359480
359467
|
init_constants_D9qj59G2_es();
|
|
359481
359468
|
init_dist_B8HfvhaK_es();
|
|
359482
359469
|
init_unified_Dsuw2be5_es();
|
|
359483
359470
|
init_DocxZipper_FUsfThjV_es();
|
|
359484
|
-
|
|
359471
|
+
init_create_super_doc_ui_BoJ3k_UK_es();
|
|
359485
359472
|
init_ui_C5PAS9hY_es();
|
|
359486
359473
|
init_eventemitter3_BnGqBE_Q_es();
|
|
359487
359474
|
init_errors_CNaD6vcg_es();
|
|
@@ -463860,30 +463847,17 @@ function deriveOfferings2() {
|
|
|
463860
463847
|
});
|
|
463861
463848
|
return Object.freeze(offerings);
|
|
463862
463849
|
}
|
|
463863
|
-
var BUNDLED_FAMILIES2, SUPPORTED_ALIAS_FAMILIES2,
|
|
463850
|
+
var BUNDLED_FAMILIES2, SUPPORTED_ALIAS_FAMILIES2, BUILT_IN_TOOLBAR_BASELINE_FAMILIES2, FONT_OFFERINGS2;
|
|
463864
463851
|
var init_font_offerings = __esm(() => {
|
|
463865
463852
|
init_bundled_manifest();
|
|
463866
463853
|
init_substitution_evidence();
|
|
463867
463854
|
BUNDLED_FAMILIES2 = new Set(BUNDLED_MANIFEST2.map((f2) => f2.family));
|
|
463868
463855
|
SUPPORTED_ALIAS_FAMILIES2 = new Set(["Arial MT", "Courier", "Times"]);
|
|
463869
|
-
|
|
463870
|
-
"Arial
|
|
463871
|
-
"
|
|
463872
|
-
"Baskerville Old Face",
|
|
463873
|
-
"Bookman Old Style",
|
|
463874
|
-
"Brush Script MT",
|
|
463875
|
-
"Century",
|
|
463876
|
-
"Century Gothic",
|
|
463877
|
-
"Cooper Black",
|
|
463878
|
-
"Comic Sans MS",
|
|
463879
|
-
"Garamond",
|
|
463856
|
+
BUILT_IN_TOOLBAR_BASELINE_FAMILIES2 = new Set([
|
|
463857
|
+
"Arial",
|
|
463858
|
+
"Courier New",
|
|
463880
463859
|
"Georgia",
|
|
463881
|
-
"
|
|
463882
|
-
"Lucida Console",
|
|
463883
|
-
"Segoe UI",
|
|
463884
|
-
"Tahoma",
|
|
463885
|
-
"Trebuchet MS",
|
|
463886
|
-
"Verdana"
|
|
463860
|
+
"Times New Roman"
|
|
463887
463861
|
]);
|
|
463888
463862
|
FONT_OFFERINGS2 = deriveOfferings2();
|
|
463889
463863
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superdoc-dev/mcp",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=20"
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"@types/bun": "^1.3.8",
|
|
20
20
|
"@types/node": "22.19.2",
|
|
21
21
|
"typescript": "^5.9.2",
|
|
22
|
-
"@superdoc/
|
|
23
|
-
"superdoc": "1.
|
|
24
|
-
"@superdoc/
|
|
22
|
+
"@superdoc/document-api": "0.0.1",
|
|
23
|
+
"superdoc": "1.40.0",
|
|
24
|
+
"@superdoc/super-editor": "0.0.1"
|
|
25
25
|
},
|
|
26
26
|
"publishConfig": {
|
|
27
27
|
"access": "public"
|