@superdoc-dev/mcp 0.3.0-next.97 → 0.3.0-next.98
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 +181 -103
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -51891,7 +51891,7 @@ var init_remark_gfm_BhnWr3yf_es = __esm(() => {
|
|
|
51891
51891
|
emptyOptions2 = {};
|
|
51892
51892
|
});
|
|
51893
51893
|
|
|
51894
|
-
// ../../packages/superdoc/dist/chunks/SuperConverter-
|
|
51894
|
+
// ../../packages/superdoc/dist/chunks/SuperConverter-8A1MBmqJ.es.js
|
|
51895
51895
|
function getExtensionConfigField(extension$1, field, context = { name: "" }) {
|
|
51896
51896
|
const fieldValue = extension$1.config[field];
|
|
51897
51897
|
if (typeof fieldValue === "function")
|
|
@@ -62271,44 +62271,74 @@ function generateParagraphProperties(params) {
|
|
|
62271
62271
|
}
|
|
62272
62272
|
return pPr;
|
|
62273
62273
|
}
|
|
62274
|
+
function foldLeadingCommentStartsIntoTrackedChanges(elements) {
|
|
62275
|
+
const result = [];
|
|
62276
|
+
let i$1 = 0;
|
|
62277
|
+
while (i$1 < elements.length) {
|
|
62278
|
+
if (elements[i$1]?.name !== "w:commentRangeStart") {
|
|
62279
|
+
result.push(elements[i$1]);
|
|
62280
|
+
i$1++;
|
|
62281
|
+
continue;
|
|
62282
|
+
}
|
|
62283
|
+
const leadingStarts = [];
|
|
62284
|
+
while (i$1 < elements.length && elements[i$1]?.name === "w:commentRangeStart") {
|
|
62285
|
+
leadingStarts.push(elements[i$1]);
|
|
62286
|
+
i$1++;
|
|
62287
|
+
}
|
|
62288
|
+
const next = elements[i$1];
|
|
62289
|
+
if (isTrackedChangeWrapper(next)) {
|
|
62290
|
+
result.push({
|
|
62291
|
+
...next,
|
|
62292
|
+
elements: [...leadingStarts, ...next.elements || []]
|
|
62293
|
+
});
|
|
62294
|
+
i$1++;
|
|
62295
|
+
} else
|
|
62296
|
+
result.push(...leadingStarts);
|
|
62297
|
+
}
|
|
62298
|
+
return result;
|
|
62299
|
+
}
|
|
62274
62300
|
function mergeConsecutiveTrackedChanges(elements) {
|
|
62275
62301
|
if (!Array.isArray(elements) || elements.length === 0)
|
|
62276
62302
|
return elements;
|
|
62303
|
+
elements = foldLeadingCommentStartsIntoTrackedChanges(elements);
|
|
62277
62304
|
const result = [];
|
|
62278
62305
|
let i$1 = 0;
|
|
62279
62306
|
while (i$1 < elements.length) {
|
|
62280
62307
|
const current = elements[i$1];
|
|
62281
|
-
if (current
|
|
62308
|
+
if (isTrackedChangeWrapper(current)) {
|
|
62282
62309
|
const tcId = current.attributes?.["w:id"];
|
|
62283
62310
|
const tcName = current.name;
|
|
62284
62311
|
const mergedElements = [...current.elements || []];
|
|
62312
|
+
const pendingComments = [];
|
|
62313
|
+
let didMerge = false;
|
|
62285
62314
|
let j = i$1 + 1;
|
|
62286
62315
|
while (j < elements.length) {
|
|
62287
62316
|
const next = elements[j];
|
|
62288
|
-
if (next
|
|
62289
|
-
|
|
62317
|
+
if (isCommentMarker(next)) {
|
|
62318
|
+
pendingComments.push(next);
|
|
62290
62319
|
j++;
|
|
62291
62320
|
continue;
|
|
62292
62321
|
}
|
|
62293
|
-
if (next?.name === "w:r") {
|
|
62294
|
-
if (next.elements?.length === 1 && next.elements[0]?.name === "w:commentReference") {
|
|
62295
|
-
mergedElements.push(next);
|
|
62296
|
-
j++;
|
|
62297
|
-
continue;
|
|
62298
|
-
}
|
|
62299
|
-
}
|
|
62300
62322
|
if (next?.name === tcName && next.attributes?.["w:id"] === tcId) {
|
|
62301
|
-
mergedElements.push(...next.elements || []);
|
|
62323
|
+
mergedElements.push(...pendingComments, ...next.elements || []);
|
|
62324
|
+
pendingComments.length = 0;
|
|
62325
|
+
didMerge = true;
|
|
62302
62326
|
j++;
|
|
62303
62327
|
continue;
|
|
62304
62328
|
}
|
|
62305
62329
|
break;
|
|
62306
62330
|
}
|
|
62307
|
-
|
|
62308
|
-
|
|
62309
|
-
|
|
62310
|
-
|
|
62311
|
-
|
|
62331
|
+
if (didMerge) {
|
|
62332
|
+
result.push({
|
|
62333
|
+
name: tcName,
|
|
62334
|
+
attributes: { ...current.attributes },
|
|
62335
|
+
elements: mergedElements
|
|
62336
|
+
});
|
|
62337
|
+
result.push(...pendingComments);
|
|
62338
|
+
} else {
|
|
62339
|
+
result.push(current);
|
|
62340
|
+
result.push(...pendingComments);
|
|
62341
|
+
}
|
|
62312
62342
|
i$1 = j;
|
|
62313
62343
|
} else {
|
|
62314
62344
|
result.push(current);
|
|
@@ -91201,6 +91231,14 @@ var isRegExp = (value) => {
|
|
|
91201
91231
|
if (normalizedNodes.length === 1 && normalizedNodes[0]?.type === "paragraph")
|
|
91202
91232
|
return normalizedNodes[0];
|
|
91203
91233
|
return normalizedNodes;
|
|
91234
|
+
}, isTrackedChangeWrapper = (el) => el?.name === "w:ins" || el?.name === "w:del", isCommentMarker = (el) => {
|
|
91235
|
+
if (!el)
|
|
91236
|
+
return false;
|
|
91237
|
+
if (el.name === "w:commentRangeStart" || el.name === "w:commentRangeEnd")
|
|
91238
|
+
return true;
|
|
91239
|
+
if (el.name === "w:r" && el.elements?.length === 1 && el.elements[0]?.name === "w:commentReference")
|
|
91240
|
+
return true;
|
|
91241
|
+
return false;
|
|
91204
91242
|
}, encode$59 = (attributes) => {
|
|
91205
91243
|
return attributes["w:rsidDel"];
|
|
91206
91244
|
}, decode$61 = (attrs) => {
|
|
@@ -104417,8 +104455,8 @@ var isRegExp = (value) => {
|
|
|
104417
104455
|
patchNumberingDefinitions(docx);
|
|
104418
104456
|
const numbering = getNumberingDefinitions(docx);
|
|
104419
104457
|
const trackedChangeIdMapOptions = { replacements: converter.trackedChangesOptions?.replacements ?? "paired" };
|
|
104420
|
-
converter.trackedChangeIdMap = buildTrackedChangeIdMap(docx, trackedChangeIdMapOptions);
|
|
104421
104458
|
converter.trackedChangeIdMapsByPart = buildTrackedChangeIdMapsByPart(docx, trackedChangeIdMapOptions);
|
|
104459
|
+
converter.trackedChangeIdMap = converter.trackedChangeIdMapsByPart.get("word/document.xml") ?? buildTrackedChangeIdMap(docx, trackedChangeIdMapOptions);
|
|
104422
104460
|
const comments = importCommentData({
|
|
104423
104461
|
docx,
|
|
104424
104462
|
nodeListHandler,
|
|
@@ -105628,7 +105666,7 @@ var isRegExp = (value) => {
|
|
|
105628
105666
|
state.kern = kernNode.attributes["w:val"];
|
|
105629
105667
|
}
|
|
105630
105668
|
}, SuperConverter;
|
|
105631
|
-
var
|
|
105669
|
+
var init_SuperConverter_8A1MBmqJ_es = __esm(() => {
|
|
105632
105670
|
init_rolldown_runtime_Bg48TavK_es();
|
|
105633
105671
|
init_jszip_C49i9kUs_es();
|
|
105634
105672
|
init_xml_js_CqGKpaft_es();
|
|
@@ -143618,7 +143656,7 @@ var init_SuperConverter_Db6xeFxo_es = __esm(() => {
|
|
|
143618
143656
|
};
|
|
143619
143657
|
});
|
|
143620
143658
|
|
|
143621
|
-
// ../../packages/superdoc/dist/chunks/create-headless-toolbar-
|
|
143659
|
+
// ../../packages/superdoc/dist/chunks/create-headless-toolbar-1RfXz7Wm.es.js
|
|
143622
143660
|
function parseSizeUnit(val = "0") {
|
|
143623
143661
|
const length = val.toString() || "0";
|
|
143624
143662
|
const value = Number.parseFloat(length);
|
|
@@ -146340,8 +146378,8 @@ var CSS_DIMENSION_REGEX, DOM_SIZE_UNITS, Extension = class Extension2 {
|
|
|
146340
146378
|
}
|
|
146341
146379
|
};
|
|
146342
146380
|
};
|
|
146343
|
-
var
|
|
146344
|
-
|
|
146381
|
+
var init_create_headless_toolbar_1RfXz7Wm_es = __esm(() => {
|
|
146382
|
+
init_SuperConverter_8A1MBmqJ_es();
|
|
146345
146383
|
init_constants_DrU4EASo_es();
|
|
146346
146384
|
init_dist_B8HfvhaK_es();
|
|
146347
146385
|
CSS_DIMENSION_REGEX = /[\d-.]+(\w+)$/;
|
|
@@ -200573,7 +200611,7 @@ var init_remark_gfm_eZN6yzWQ_es = __esm(() => {
|
|
|
200573
200611
|
init_remark_gfm_BhnWr3yf_es();
|
|
200574
200612
|
});
|
|
200575
200613
|
|
|
200576
|
-
// ../../packages/superdoc/dist/chunks/src-
|
|
200614
|
+
// ../../packages/superdoc/dist/chunks/src-Bnec7ggt.es.js
|
|
200577
200615
|
function deleteProps(obj, propOrProps) {
|
|
200578
200616
|
const props = typeof propOrProps === "string" ? [propOrProps] : propOrProps;
|
|
200579
200617
|
const removeNested = (target, pathParts, index2 = 0) => {
|
|
@@ -267113,7 +267151,7 @@ var Node$13 = class Node$14 {
|
|
|
267113
267151
|
}
|
|
267114
267152
|
});
|
|
267115
267153
|
return { decorations };
|
|
267116
|
-
}, ContextMenuPluginKey, MENU_OFFSET_X = 0, MENU_OFFSET_Y = 28, CONTEXT_MENU_OFFSET_X = 10, CONTEXT_MENU_OFFSET_Y = 10,
|
|
267154
|
+
}, ContextMenuPluginKey, MENU_OFFSET_X = 0, MENU_OFFSET_Y = 28, CONTEXT_MENU_OFFSET_X = 10, CONTEXT_MENU_OFFSET_Y = 10, ContextMenu, StructuredContentViewBase = class {
|
|
267117
267155
|
node;
|
|
267118
267156
|
view;
|
|
267119
267157
|
getPos;
|
|
@@ -274574,7 +274612,7 @@ var Node$13 = class Node$14 {
|
|
|
274574
274612
|
if (!target || !target.classList)
|
|
274575
274613
|
return;
|
|
274576
274614
|
target.classList.add(STYLE_ISOLATION_CLASS);
|
|
274577
|
-
}, _hoisted_1$22, _hoisted_2$17, _hoisted_3$13, _hoisted_4$9, _hoisted_5$
|
|
274615
|
+
}, _hoisted_1$22, _hoisted_2$17, _hoisted_3$13, _hoisted_4$9, _hoisted_5$7, Mentions_default, popoverPluginKey, PopoverPlugin, Popover = class {
|
|
274578
274616
|
constructor(view, editor) {
|
|
274579
274617
|
this.editor = editor;
|
|
274580
274618
|
this.view = view;
|
|
@@ -276141,7 +276179,7 @@ var Node$13 = class Node$14 {
|
|
|
276141
276179
|
</linearGradient>
|
|
276142
276180
|
</defs>
|
|
276143
276181
|
<path fill="url(#gradient)" d="M440 6.5L24 246.4c-34.4 19.9-31.1 70.8 5.7 85.9L144 379.6V464c0 46.4 59.2 65.5 86.6 28.6l43.8-59.1 111.9 46.2c5.9 2.4 12.1 3.6 18.3 3.6 8.2 0 16.3-2.1 23.6-6.2 12.8-7.2 21.6-20 23.9-34.5l59.4-387.2c6.1-40.1-36.9-68.8-71.5-48.9zM192 464v-64.6l36.6 15.1L192 464zm212.6-28.7l-153.8-63.5L391 169.5c10.7-15.5-9.5-33.5-23.7-21.2L155.8 332.6 48 288 464 48l-59.4 387.3z"/>
|
|
276144
|
-
</svg>`, _hoisted_1$21, _hoisted_2$16, _hoisted_3$12, _hoisted_4$8, _hoisted_5$
|
|
276182
|
+
</svg>`, _hoisted_1$21, _hoisted_2$16, _hoisted_3$12, _hoisted_4$8, _hoisted_5$6, AIWriter_default, isHighContrastMode, bold_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M0 64C0 46.3 14.3 32 32 32l48 0 16 0 128 0c70.7 0 128 57.3 128 128c0 31.3-11.3 60.1-30 82.3c37.1 22.4 62 63.1 62 109.7c0 70.7-57.3 128-128 128L96 480l-16 0-48 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l16 0 0-160L48 96 32 96C14.3 96 0 81.7 0 64zM224 224c35.3 0 64-28.7 64-64s-28.7-64-64-64L112 96l0 128 112 0zM112 288l0 128 144 0c35.3 0 64-28.7 64-64s-28.7-64-64-64l-32 0-112 0z"/></svg>', italic_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M128 64c0-17.7 14.3-32 32-32l192 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-58.7 0L160 416l64 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 480c-17.7 0-32-14.3-32-32s14.3-32 32-32l58.7 0L224 96l-64 0c-17.7 0-32-14.3-32-32z"/></svg>', underline_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M16 64c0-17.7 14.3-32 32-32l96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-16 0 0 128c0 53 43 96 96 96s96-43 96-96l0-128-16 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-16 0 0 128c0 88.4-71.6 160-160 160s-160-71.6-160-160L64 96 48 96C30.3 96 16 81.7 16 64zM0 448c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 480c-17.7 0-32-14.3-32-32z"/></svg>', list_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M40 48C26.7 48 16 58.7 16 72l0 48c0 13.3 10.7 24 24 24l48 0c13.3 0 24-10.7 24-24l0-48c0-13.3-10.7-24-24-24L40 48zM192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32l288 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L192 64zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32l288 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-288 0zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32l288 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-288 0zM16 232l0 48c0 13.3 10.7 24 24 24l48 0c13.3 0 24-10.7 24-24l0-48c0-13.3-10.7-24-24-24l-48 0c-13.3 0-24 10.7-24 24zM40 368c-13.3 0-24 10.7-24 24l0 48c0 13.3 10.7 24 24 24l48 0c13.3 0 24-10.7 24-24l0-48c0-13.3-10.7-24-24-24l-48 0z"/></svg>', list_circle_solid_default = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc. (bullet shapes modified)--><path fill-rule="evenodd" d="M192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32l288 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L192 64zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32l288 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-288 0zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32l288 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-288 0zM64 48 A48 48 0 1 0 64 144 A48 48 0 1 0 64 48 Z M64 68 A28 28 0 1 1 64 124 A28 28 0 1 1 64 68 Z M64 208 A48 48 0 1 0 64 304 A48 48 0 1 0 64 208 Z M64 228 A28 28 0 1 1 64 284 A28 28 0 1 1 64 228 Z M64 368 A48 48 0 1 0 64 464 A48 48 0 1 0 64 368 Z M64 388 A28 28 0 1 1 64 444 A28 28 0 1 1 64 388 Z"/></svg>
|
|
276145
276183
|
`, list_square_solid_default = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc. (bullet shapes modified)--><path d="M192 64c-17.7 0-32 14.3-32 32s14.3 32 32 32l288 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L192 64zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32l288 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-288 0zm0 160c-17.7 0-32 14.3-32 32s14.3 32 32 32l288 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-288 0zM16 48 L112 48 L112 144 L16 144 Z M16 208 L112 208 L112 304 L16 304 Z M16 368 L112 368 L112 464 L16 464 Z"/></svg>
|
|
276146
276184
|
`, list_ol_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M24 56c0-13.3 10.7-24 24-24l32 0c13.3 0 24 10.7 24 24l0 120 16 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-80 0c-13.3 0-24-10.7-24-24s10.7-24 24-24l16 0 0-96-8 0C34.7 80 24 69.3 24 56zM86.7 341.2c-6.5-7.4-18.3-6.9-24 1.2L51.5 357.9c-7.7 10.8-22.7 13.3-33.5 5.6s-13.3-22.7-5.6-33.5l11.1-15.6c23.7-33.2 72.3-35.6 99.2-4.9c21.3 24.4 20.8 60.9-1.1 84.7L86.8 432l33.2 0c13.3 0 24 10.7 24 24s-10.7 24-24 24l-88 0c-9.5 0-18.2-5.6-22-14.4s-2.1-18.9 4.3-25.9l72-78c5.3-5.8 5.4-14.6 .3-20.5zM224 64l256 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-256 0c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160l256 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-256 0c-17.7 0-32-14.3-32-32s14.3-32 32-32zm0 160l256 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-256 0c-17.7 0-32-14.3-32-32s14.3-32 32-32z"/></svg>', list_decimal_solid_default = `<svg width="512" height="512" viewBox="0 0 512 512" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
276147
276185
|
<g clip-path="url(#clip0_0_1)">
|
|
@@ -276208,7 +276246,7 @@ var Node$13 = class Node$14 {
|
|
|
276208
276246
|
`, image_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M0 96C0 60.7 28.7 32 64 32l384 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zM323.8 202.5c-4.5-6.6-11.9-10.5-19.8-10.5s-15.4 3.9-19.8 10.5l-87 127.6L170.7 297c-4.6-5.7-11.5-9-18.7-9s-14.2 3.3-18.7 9l-64 80c-5.8 7.2-6.9 17.1-2.9 25.4s12.4 13.6 21.6 13.6l96 0 32 0 208 0c8.9 0 17.1-4.9 21.2-12.8s3.6-17.4-1.4-24.7l-120-176zM112 192a48 48 0 1 0 0-96 48 48 0 1 0 0 96z"/></svg>', link_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M579.8 267.7c56.5-56.5 56.5-148 0-204.5c-50-50-128.8-56.5-186.3-15.4l-1.6 1.1c-14.4 10.3-17.7 30.3-7.4 44.6s30.3 17.7 44.6 7.4l1.6-1.1c32.1-22.9 76-19.3 103.8 8.6c31.5 31.5 31.5 82.5 0 114L422.3 334.8c-31.5 31.5-82.5 31.5-114 0c-27.9-27.9-31.5-71.8-8.6-103.8l1.1-1.6c10.3-14.4 6.9-34.4-7.4-44.6s-34.4-6.9-44.6 7.4l-1.1 1.6C206.5 251.2 213 330 263 380c56.5 56.5 148 56.5 204.5 0L579.8 267.7zM60.2 244.3c-56.5 56.5-56.5 148 0 204.5c50 50 128.8 56.5 186.3 15.4l1.6-1.1c14.4-10.3 17.7-30.3 7.4-44.6s-30.3-17.7-44.6-7.4l-1.6 1.1c-32.1 22.9-76 19.3-103.8-8.6C74 372 74 321 105.5 289.5L217.7 177.2c31.5-31.5 82.5-31.5 114 0c27.9 27.9 31.5 71.8 8.6 103.9l-1.1 1.6c-10.3 14.4-6.9 34.4 7.4 44.6s34.4 6.9 44.6-7.4l1.1-1.6C433.5 260.8 427 182 377 132c-56.5-56.5-148-56.5-204.5 0L60.2 244.3z"/></svg>', align_left_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M288 64c0 17.7-14.3 32-32 32L32 96C14.3 96 0 81.7 0 64S14.3 32 32 32l224 0c17.7 0 32 14.3 32 32zm0 256c0 17.7-14.3 32-32 32L32 352c-17.7 0-32-14.3-32-32s14.3-32 32-32l224 0c17.7 0 32 14.3 32 32zM0 192c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 224c-17.7 0-32-14.3-32-32zM448 448c0 17.7-14.3 32-32 32L32 480c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z"/></svg>', align_center_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M352 64c0-17.7-14.3-32-32-32L128 32c-17.7 0-32 14.3-32 32s14.3 32 32 32l192 0c17.7 0 32-14.3 32-32zm96 128c0-17.7-14.3-32-32-32L32 160c-17.7 0-32 14.3-32 32s14.3 32 32 32l384 0c17.7 0 32-14.3 32-32zM0 448c0 17.7 14.3 32 32 32l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 416c-17.7 0-32 14.3-32 32zM352 320c0-17.7-14.3-32-32-32l-192 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l192 0c17.7 0 32-14.3 32-32z"/></svg>', align_right_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M448 64c0 17.7-14.3 32-32 32L192 96c-17.7 0-32-14.3-32-32s14.3-32 32-32l224 0c17.7 0 32 14.3 32 32zm0 256c0 17.7-14.3 32-32 32l-224 0c-17.7 0-32-14.3-32-32s14.3-32 32-32l224 0c17.7 0 32 14.3 32 32zM0 192c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 224c-17.7 0-32-14.3-32-32zM448 448c0 17.7-14.3 32-32 32L32 480c-17.7 0-32-14.3-32-32s14.3-32 32-32l384 0c17.7 0 32 14.3 32 32z"/></svg>', align_justify_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M448 64c0-17.7-14.3-32-32-32L32 32C14.3 32 0 46.3 0 64S14.3 96 32 96l384 0c17.7 0 32-14.3 32-32zm0 256c0-17.7-14.3-32-32-32L32 288c-17.7 0-32 14.3-32 32s14.3 32 32 32l384 0c17.7 0 32-14.3 32-32zM0 192c0 17.7 14.3 32 32 32l384 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L32 160c-17.7 0-32 14.3-32 32zM448 448c0-17.7-14.3-32-32-32L32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32l384 0c17.7 0 32-14.3 32-32z"/></svg>', indent_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M0 64C0 46.3 14.3 32 32 32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 96C14.3 96 0 81.7 0 64zM192 192c0-17.7 14.3-32 32-32l192 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32zm32 96l192 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32s14.3-32 32-32zM0 448c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 480c-17.7 0-32-14.3-32-32zM127.8 268.6L25.8 347.9C15.3 356.1 0 348.6 0 335.3L0 176.7c0-13.3 15.3-20.8 25.8-12.6l101.9 79.3c8.2 6.4 8.2 18.9 0 25.3z"/></svg>', outdent_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M0 64C0 46.3 14.3 32 32 32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 96C14.3 96 0 81.7 0 64zM192 192c0-17.7 14.3-32 32-32l192 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32zm32 96l192 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-192 0c-17.7 0-32-14.3-32-32s14.3-32 32-32zM0 448c0-17.7 14.3-32 32-32l384 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 480c-17.7 0-32-14.3-32-32zM.2 268.6c-8.2-6.4-8.2-18.9 0-25.3l101.9-79.3c10.5-8.2 25.8-.7 25.8 12.6l0 158.6c0 13.3-15.3 20.8-25.8 12.6L.2 268.6z"/></svg>', paint_roller_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0L352 0c35.3 0 64 28.7 64 64l0 64c0 35.3-28.7 64-64 64L64 192c-35.3 0-64-28.7-64-64L0 64zM160 352c0-17.7 14.3-32 32-32l0-16c0-44.2 35.8-80 80-80l144 0c17.7 0 32-14.3 32-32l0-32 0-90.5c37.3 13.2 64 48.7 64 90.5l0 32c0 53-43 96-96 96l-144 0c-8.8 0-16 7.2-16 16l0 16c17.7 0 32 14.3 32 32l0 128c0 17.7-14.3 32-32 32l-64 0c-17.7 0-32-14.3-32-32l0-128z"/></svg>', text_slash_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L355.7 253.5 400.2 96 503 96 497 120.2c-4.3 17.1 6.1 34.5 23.3 38.8s34.5-6.1 38.8-23.3l11-44.1C577.6 61.3 554.7 32 523.5 32L376.1 32l-.3 0L204.5 32c-22 0-41.2 15-46.6 36.4l-6.3 25.2L38.8 5.1zm168 131.7c.1-.3 .2-.7 .3-1L217 96l116.7 0L301.3 210.8l-94.5-74.1zM243.3 416L192 416c-17.7 0-32 14.3-32 32s14.3 32 32 32l160 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-42.2 0 17.6-62.1L272.9 311 243.3 416z"/></svg>', rotate_left_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M48.5 224L40 224c-13.3 0-24-10.7-24-24L16 72c0-9.7 5.8-18.5 14.8-22.2s19.3-1.7 26.2 5.2L98.6 96.6c87.6-86.5 228.7-86.2 315.8 1c87.5 87.5 87.5 229.3 0 316.8s-229.3 87.5-316.8 0c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0c62.5 62.5 163.8 62.5 226.3 0s62.5-163.8 0-226.3c-62.2-62.2-162.7-62.5-225.3-1L185 183c6.9 6.9 8.9 17.2 5.2 26.2s-12.5 14.8-22.2 14.8L48.5 224z"/></svg>', rotate_right_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M463.5 224l8.5 0c13.3 0 24-10.7 24-24l0-128c0-9.7-5.8-18.5-14.8-22.2s-19.3-1.7-26.2 5.2L413.4 96.6c-87.6-86.5-228.7-86.2-315.8 1c-87.5 87.5-87.5 229.3 0 316.8s229.3 87.5 316.8 0c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0c-62.5 62.5-163.8 62.5-226.3 0s-62.5-163.8 0-226.3c62.2-62.2 162.7-62.5 225.3-1L327 183c-6.9 6.9-8.9 17.2-5.2 26.2s12.5 14.8 22.2 14.8l119.5 0z"/></svg>', calendar_check_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M128 0c17.7 0 32 14.3 32 32l0 32 128 0 0-32c0-17.7 14.3-32 32-32s32 14.3 32 32l0 32 48 0c26.5 0 48 21.5 48 48l0 48L0 160l0-48C0 85.5 21.5 64 48 64l48 0 0-32c0-17.7 14.3-32 32-32zM0 192l448 0 0 272c0 26.5-21.5 48-48 48L48 512c-26.5 0-48-21.5-48-48L0 192zM329 305c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-95 95-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l64 64c9.4 9.4 24.6 9.4 33.9 0L329 305z"/></svg>', calendar_xmark_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M128 0c17.7 0 32 14.3 32 32l0 32 128 0 0-32c0-17.7 14.3-32 32-32s32 14.3 32 32l0 32 48 0c26.5 0 48 21.5 48 48l0 48L0 160l0-48C0 85.5 21.5 64 48 64l48 0 0-32c0-17.7 14.3-32 32-32zM0 192l448 0 0 272c0 26.5-21.5 48-48 48L48 512c-26.5 0-48-21.5-48-48L0 192zM305 305c9.4-9.4 9.4-24.6 0-33.9s-24.6-9.4-33.9 0l-47 47-47-47c-9.4-9.4-24.6-9.4-33.9 0s-9.4 24.6 0 33.9l47 47-47 47c-9.4 9.4-9.4 24.6 0 33.9s24.6 9.4 33.9 0l47-47 47 47c9.4 9.4 24.6 9.4 33.9 0s9.4-24.6 0-33.9l-47-47 47-47z"/></svg>', list_check_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M152.1 38.2c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 113C-2.3 103.6-2.3 88.4 7 79s24.6-9.4 33.9 0l22.1 22.1 55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zm0 160c9.9 8.9 10.7 24 1.8 33.9l-72 80c-4.4 4.9-10.6 7.8-17.2 7.9s-12.9-2.4-17.6-7L7 273c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l22.1 22.1 55.1-61.2c8.9-9.9 24-10.7 33.9-1.8zM224 96c0-17.7 14.3-32 32-32l224 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-224 0c-17.7 0-32-14.3-32-32zm0 160c0-17.7 14.3-32 32-32l224 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-224 0c-17.7 0-32-14.3-32-32zM160 416c0-17.7 14.3-32 32-32l288 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-288 0c-17.7 0-32-14.3-32-32zM48 368a48 48 0 1 1 0 96 48 48 0 1 1 0-96z"/></svg>', user_edit_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M224 256A128 128 0 1 0 224 0a128 128 0 1 0 0 256zm-45.7 48C79.8 304 0 383.8 0 482.3C0 498.7 13.3 512 29.7 512l293.1 0c-3.1-8.8-3.7-18.4-1.4-27.8l15-60.1c2.8-11.3 8.6-21.5 16.8-29.7l40.3-40.3c-32.1-31-75.7-50.1-123.9-50.1l-91.4 0zm435.5-68.3c-15.6-15.6-40.9-15.6-56.6 0l-29.4 29.4 71 71 29.4-29.4c15.6-15.6 15.6-40.9 0-56.6l-14.4-14.4zM375.9 417c-4.1 4.1-7 9.2-8.4 14.9l-15 60.1c-1.4 5.5 .2 11.2 4.2 15.2s9.7 5.6 15.2 4.2l60.1-15c5.6-1.4 10.8-4.3 14.9-8.4L576.1 358.7l-71-71L375.9 417z"/></svg>', eye_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M288 32c-80.8 0-145.5 36.8-192.6 80.6C48.6 156 17.3 208 2.5 243.7c-3.3 7.9-3.3 16.7 0 24.6C17.3 304 48.6 356 95.4 399.4C142.5 443.2 207.2 480 288 480s145.5-36.8 192.6-80.6c46.8-43.5 78.1-95.4 93-131.1c3.3-7.9 3.3-16.7 0-24.6c-14.9-35.7-46.2-87.7-93-131.1C433.5 68.8 368.8 32 288 32zM144 256a144 144 0 1 1 288 0 144 144 0 1 1 -288 0zm144-64c0 35.3-28.7 64-64 64c-7.1 0-13.9-1.2-20.3-3.3c-5.5-1.8-11.9 1.6-11.7 7.4c.3 6.9 1.3 13.8 3.2 20.7c13.7 51.2 66.4 81.6 117.6 67.9s81.6-66.4 67.9-117.6c-11.1-41.5-47.8-69.4-88.6-71.1c-5.8-.2-9.2 6.1-7.4 11.7c2.1 6.4 3.3 13.2 3.3 20.3z"/></svg>', file_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M0 64C0 28.7 28.7 0 64 0L224 0l0 128c0 17.7 14.3 32 32 32l128 0 0 288c0 35.3-28.7 64-64 64L64 512c-35.3 0-64-28.7-64-64L0 64zm384 64l-128 0L256 0 384 128z"/></svg>', font_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M254 52.8C249.3 40.3 237.3 32 224 32s-25.3 8.3-30 20.8L57.8 416 32 416c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-1.8 0 18-48 159.6 0 18 48-1.8 0c-17.7 0-32 14.3-32 32s14.3 32 32 32l96 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-25.8 0L254 52.8zM279.8 304l-111.6 0L224 155.1 279.8 304z"/></svg>', file_half_dashed_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M64 0C28.7 0 0 28.7 0 64L0 320l384 0 0-160-128 0c-17.7 0-32-14.3-32-32L224 0 64 0zM256 0l0 128 128 0L256 0zM0 416l64 0 0-64L0 352l0 64zm288 32l-80 0 0 64 80 0 0-64zm-112 0l-80 0 0 64 80 0 0-64zM64 448L0 448c0 35.3 28.7 64 64 64l0-64zm256 0l0 64c35.3 0 64-28.7 64-64l-64 0zm64-32l0-64-64 0 0 64 64 0z"/></svg>', comment_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M512 240c0 114.9-114.6 208-256 208c-37.1 0-72.3-6.4-104.1-17.9c-11.9 8.7-31.3 20.6-54.3 30.6C73.6 471.1 44.7 480 16 480c-6.5 0-12.3-3.9-14.8-9.9c-2.5-6-1.1-12.8 3.4-17.4c0 0 0 0 0 0s0 0 0 0s0 0 0 0c0 0 0 0 0 0l.3-.3c.3-.3 .7-.7 1.3-1.4c1.1-1.2 2.8-3.1 4.9-5.7c4.1-5 9.6-12.4 15.2-21.6c10-16.6 19.5-38.4 21.4-62.9C17.7 326.8 0 285.1 0 240C0 125.1 114.6 32 256 32s256 93.1 256 208z"/></svg>', circle_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M256 512A256 256 0 1 0 256 0a256 256 0 1 0 0 512z"/></svg>', check_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"/></svg>', xmark_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M342.6 150.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0L192 210.7 86.6 105.4c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L146.7 256 41.4 361.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L192 301.3 297.4 406.6c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L237.3 256 342.6 150.6z"/></svg>', up_right_from_square_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M352 0c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9L370.7 96 201.4 265.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0L416 141.3l41.4 41.4c9.2 9.2 22.9 11.9 34.9 6.9s19.8-16.6 19.8-29.6l0-128c0-17.7-14.3-32-32-32L352 0zM80 32C35.8 32 0 67.8 0 112L0 432c0 44.2 35.8 80 80 80l320 0c44.2 0 80-35.8 80-80l0-112c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 112c0 8.8-7.2 16-16 16L80 448c-8.8 0-16-7.2-16-16l0-320c0-8.8 7.2-16 16-16l112 0c17.7 0 32-14.3 32-32s-14.3-32-32-32L80 32z"/></svg>', ellipsis_vertical_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 128 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M64 360a56 56 0 1 0 0 112 56 56 0 1 0 0-112zm0-160a56 56 0 1 0 0 112 56 56 0 1 0 0-112zM120 96A56 56 0 1 0 8 96a56 56 0 1 0 112 0z"/></svg>', caret_up_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M182.6 137.4c-12.5-12.5-32.8-12.5-45.3 0l-128 128c-9.2 9.2-11.9 22.9-6.9 34.9s16.6 19.8 29.6 19.8l256 0c12.9 0 24.6-7.8 29.6-19.8s2.2-25.7-6.9-34.9l-128-128z"/></svg>', caret_down_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 320 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M137.4 374.6c12.5 12.5 32.8 12.5 45.3 0l128-128c9.2-9.2 11.9-22.9 6.9-34.9s-16.6-19.8-29.6-19.8L32 192c-12.9 0-24.6 7.8-29.6 19.8s-2.2 25.7 6.9 34.9l128 128z"/></svg>', ruler_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M177.9 494.1c-18.7 18.7-49.1 18.7-67.9 0L17.9 401.9c-18.7-18.7-18.7-49.1 0-67.9l50.7-50.7 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 41.4-41.4 48 48c6.2 6.2 16.4 6.2 22.6 0s6.2-16.4 0-22.6l-48-48 50.7-50.7c18.7-18.7 49.1-18.7 67.9 0l92.1 92.1c18.7 18.7 18.7 49.1 0 67.9L177.9 494.1z"/></svg>', paintbrush_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M339.3 367.1c27.3-3.9 51.9-19.4 67.2-42.9L568.2 74.1c12.6-19.5 9.4-45.3-7.6-61.2S517.7-4.4 499.1 9.6L262.4 187.2c-24 18-38.2 46.1-38.4 76.1L339.3 367.1zm-19.6 25.4l-116-104.4C143.9 290.3 96 339.6 96 400c0 3.9 .2 7.8 .6 11.6C98.4 429.1 86.4 448 68.8 448L64 448c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0c61.9 0 112-50.1 112-112c0-2.5-.1-5-.2-7.5z"/></svg>', highlighter_icon_default = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 576 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M315 315l158.4-215L444.1 70.6 229 229 315 315zm-187 5s0 0 0 0l0-71.7c0-15.3 7.2-29.6 19.5-38.6L420.6 8.4C428 2.9 437 0 446.2 0c11.4 0 22.4 4.5 30.5 12.6l54.8 54.8c8.1 8.1 12.6 19 12.6 30.5c0 9.2-2.9 18.2-8.4 25.6L334.4 396.5c-9 12.3-23.4 19.5-38.6 19.5L224 416l-25.4 25.4c-12.5 12.5-32.8 12.5-45.3 0l-50.7-50.7c-12.5-12.5-12.5-32.8 0-45.3L128 320zM7 466.3l63-63 70.6 70.6-31 31c-4.5 4.5-10.6 7-17 7L24 512c-13.3 0-24-10.7-24-24l0-4.7c0-6.4 2.5-12.5 7-17z"/></svg>
|
|
276209
276247
|
`, magic_wand_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M224 96l16-32 32-16-32-16-16-32-16 32-32 16 32 16 16 32zM80 160l26.7-53.3L160 80l-53.3-26.7L80 0 53.3 53.3 0 80l53.3 26.7L80 160zm352 128l-26.7 53.3L352 368l53.3 26.7L432 448l26.7-53.3L512 368l-53.3-26.7L432 288zm70.6-193.8L417.8 9.4C411.5 3.1 403.3 0 395.2 0c-8.2 0-16.4 3.1-22.6 9.4L9.4 372.5c-12.5 12.5-12.5 32.8 0 45.3l84.9 84.9c6.3 6.3 14.4 9.4 22.6 9.4 8.2 0 16.4-3.1 22.6-9.4l363.1-363.2c12.5-12.5 12.5-32.8 0-45.2zM359.5 203.5l-50.9-50.9 86.6-86.6 50.9 50.9-86.6 86.6z"/></svg>', table_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M64 256l0-96 160 0 0 96L64 256zm0 64l160 0 0 96L64 416l0-96zm224 96l0-96 160 0 0 96-160 0zM448 256l-160 0 0-96 160 0 0 96zM64 32C28.7 32 0 60.7 0 96L0 416c0 35.3 28.7 64 64 64l384 0c35.3 0 64-28.7 64-64l0-320c0-35.3-28.7-64-64-64L64 32z"/></svg>', table_columns_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M0 96C0 60.7 28.7 32 64 32l384 0c35.3 0 64 28.7 64 64l0 320c0 35.3-28.7 64-64 64L64 480c-35.3 0-64-28.7-64-64L0 96zm64 64l0 256 160 0 0-256L64 160zm384 0l-160 0 0 256 160 0 0-256z"/></svg>', arrows_left_right_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M406.6 374.6l96-96c12.5-12.5 12.5-32.8 0-45.3l-96-96c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L402.7 224l-293.5 0 41.4-41.4c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-96 96c-12.5 12.5-12.5 32.8 0 45.3l96 96c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 288l293.5 0-41.4 41.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0z"/></svg>', arrows_to_dot_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M256 0c17.7 0 32 14.3 32 32l0 32 32 0c12.9 0 24.6 7.8 29.6 19.8s2.2 25.7-6.9 34.9l-64 64c-12.5 12.5-32.8 12.5-45.3 0l-64-64c-9.2-9.2-11.9-22.9-6.9-34.9s16.6-19.8 29.6-19.8l32 0 0-32c0-17.7 14.3-32 32-32zM169.4 393.4l64-64c12.5-12.5 32.8-12.5 45.3 0l64 64c9.2 9.2 11.9 22.9 6.9 34.9s-16.6 19.8-29.6 19.8l-32 0 0 32c0 17.7-14.3 32-32 32s-32-14.3-32-32l0-32-32 0c-12.9 0-24.6-7.8-29.6-19.8s-2.2-25.7 6.9-34.9zM32 224l32 0 0-32c0-12.9 7.8-24.6 19.8-29.6s25.7-2.2 34.9 6.9l64 64c12.5 12.5 12.5 32.8 0 45.3l-64 64c-9.2 9.2-22.9 11.9-34.9 6.9s-19.8-16.6-19.8-29.6l0-32-32 0c-17.7 0-32-14.3-32-32s14.3-32 32-32zm297.4 54.6c-12.5-12.5-12.5-32.8 0-45.3l64-64c9.2-9.2 22.9-11.9 34.9-6.9s19.8 16.6 19.8 29.6l0 32 32 0c17.7 0 32 14.3 32 32s-14.3 32-32 32l-32 0 0 32c0 12.9-7.8 24.6-19.8 29.6s-25.7 2.2-34.9-6.9l-64-64zM256 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64z"/></svg>', plus_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M256 80c0-17.7-14.3-32-32-32s-32 14.3-32 32l0 144L48 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l144 0 0 144c0 17.7 14.3 32 32 32s32-14.3 32-32l0-144 144 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-144 0 0-144z"/></svg>', trash_can_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M135.2 17.7C140.6 6.8 151.7 0 163.8 0L284.2 0c12.1 0 23.2 6.8 28.6 17.7L320 32l96 0c17.7 0 32 14.3 32 32s-14.3 32-32 32L32 96C14.3 96 0 81.7 0 64S14.3 32 32 32l96 0 7.2-14.3zM32 128l384 0 0 320c0 35.3-28.7 64-64 64L96 512c-35.3 0-64-28.7-64-64l0-320zm96 64c-8.8 0-16 7.2-16 16l0 224c0 8.8 7.2 16 16 16s16-7.2 16-16l0-224c0-8.8-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16l0 224c0 8.8 7.2 16 16 16s16-7.2 16-16l0-224c0-8.8-7.2-16-16-16zm96 0c-8.8 0-16 7.2-16 16l0 224c0 8.8 7.2 16 16 16s16-7.2 16-16l0-224c0-8.8-7.2-16-16-16z"/></svg>', wrench_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M352 320c88.4 0 160-71.6 160-160c0-15.3-2.2-30.1-6.2-44.2c-3.1-10.8-16.4-13.2-24.3-5.3l-76.8 76.8c-3 3-7.1 4.7-11.3 4.7L336 192c-8.8 0-16-7.2-16-16l0-57.4c0-4.2 1.7-8.3 4.7-11.3l76.8-76.8c7.9-7.9 5.4-21.2-5.3-24.3C382.1 2.2 367.3 0 352 0C263.6 0 192 71.6 192 160c0 19.1 3.4 37.5 9.5 54.5L19.9 396.1C7.2 408.8 0 426.1 0 444.1C0 481.6 30.4 512 67.9 512c18 0 35.3-7.2 48-19.9L297.5 310.5c17 6.2 35.4 9.5 54.5 9.5zM80 408a24 24 0 1 1 0 48 24 24 0 1 1 0-48z"/></svg>', border_none_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M32 480a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm96-64a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm0-384a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm0 256a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM320 416a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm0-320a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm0 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM224 480a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm0-448a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm0 256a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM416 416a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm0-384a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM32 96a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM416 224a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM32 288a32 32 0 1 1 0-64 32 32 0 1 1 0 64zm192 32a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm192 64a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM32 320a32 32 0 1 1 0 64 32 32 0 1 1 0-64zM416 192a32 32 0 1 1 0-64 32 32 0 1 1 0 64zM32 128a32 32 0 1 1 0 64 32 32 0 1 1 0-64zm192 64a32 32 0 1 1 0-64 32 32 0 1 1 0 64z"/></svg>', up_down_default = `<svg xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg" viewBox="3 4 18 16"><path stroke="#000000" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 10V5m0 0L4 7m2-2 2 2m-2 7v5m0 0 2-2m-2 2-2-2m8-10h8m0 5h-8m0 5h8"></path></svg>
|
|
276210
276248
|
`, magnifying_glass_default = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M416 208c0 45.9-14.9 88.3-40 122.7L502.6 457.4c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L330.7 376c-34.4 25.2-76.8 40-122.7 40C93.1 416 0 322.9 0 208S93.1 0 208 0S416 93.1 416 208zM208 352a144 144 0 1 0 0-288 144 144 0 1 0 0 288z"/></svg>
|
|
276211
|
-
`, scissors_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M278.1 256L444.5 89.6c4.7-4.7 4.7-12.3 0-17-32.8-32.8-86-32.8-118.8 0L210.2 188.1l-24.9-24.9c4.3-10.9 6.7-22.8 6.7-35.3 0-53-43-96-96-96S0 75 0 128s43 96 96 96c4.5 0 9-.3 13.4-.9L142.3 256l-32.9 32.9c-4.4-.6-8.8-.9-13.4-.9-53 0-96 43-96 96s43 96 96 96 96-43 96-96c0-12.5-2.4-24.3-6.7-35.3l24.9-24.9L325.7 439.4c32.8 32.8 86 32.8 118.8 0 4.7-4.7 4.7-12.3 0-17L278.1 256zM96 160c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm0 256c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z"/></svg>', copy_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M320 448v40c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V120c0-13.3 10.7-24 24-24h72v296c0 30.9 25.1 56 56 56h168zm0-344V0H152c-13.3 0-24 10.7-24 24v368c0 13.3 10.7 24 24 24h272c13.3 0 24-10.7 24-24V128H344c-13.2 0-24-10.8-24-24zm121-31L375 7A24 24 0 0 0 358.1 0H352v96h96v-6.1a24 24 0 0 0 -7-17z"/></svg>', paste_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M128 184c0-30.9 25.1-56 56-56h136V56c0-13.3-10.7-24-24-24h-80.6C204.3 12.9 183.6 0 160 0s-44.3 12.9-55.4 32H24C10.7 32 0 42.7 0 56v336c0 13.3 10.7 24 24 24h104V184zm32-144c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm184 248h104v200c0 13.3-10.7 24-24 24H184c-13.3 0-24-10.7-24-24V184c0-13.3 10.7-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.1V256h-96v-96h6.1a24 24 0 0 1 17 7l65.9 65.9a24 24 0 0 1 7 17z"/></svg>', toolbarIcons, _hoisted_1$20, AlignmentButtons_default, _hoisted_1$19, StyleButtonsList_default, bulletStyleButtons, numberedStyleButtons, _hoisted_1$18, _hoisted_2$15, _hoisted_3$11, _hoisted_4$7, _hoisted_5$
|
|
276249
|
+
`, scissors_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M278.1 256L444.5 89.6c4.7-4.7 4.7-12.3 0-17-32.8-32.8-86-32.8-118.8 0L210.2 188.1l-24.9-24.9c4.3-10.9 6.7-22.8 6.7-35.3 0-53-43-96-96-96S0 75 0 128s43 96 96 96c4.5 0 9-.3 13.4-.9L142.3 256l-32.9 32.9c-4.4-.6-8.8-.9-13.4-.9-53 0-96 43-96 96s43 96 96 96 96-43 96-96c0-12.5-2.4-24.3-6.7-35.3l24.9-24.9L325.7 439.4c32.8 32.8 86 32.8 118.8 0 4.7-4.7 4.7-12.3 0-17L278.1 256zM96 160c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32zm0 256c-17.6 0-32-14.4-32-32s14.4-32 32-32 32 14.4 32 32-14.4 32-32 32z"/></svg>', copy_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M320 448v40c0 13.3-10.7 24-24 24H24c-13.3 0-24-10.7-24-24V120c0-13.3 10.7-24 24-24h72v296c0 30.9 25.1 56 56 56h168zm0-344V0H152c-13.3 0-24 10.7-24 24v368c0 13.3 10.7 24 24 24h272c13.3 0 24-10.7 24-24V128H344c-13.2 0-24-10.8-24-24zm121-31L375 7A24 24 0 0 0 358.1 0H352v96h96v-6.1a24 24 0 0 0 -7-17z"/></svg>', paste_solid_default = '<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M128 184c0-30.9 25.1-56 56-56h136V56c0-13.3-10.7-24-24-24h-80.6C204.3 12.9 183.6 0 160 0s-44.3 12.9-55.4 32H24C10.7 32 0 42.7 0 56v336c0 13.3 10.7 24 24 24h104V184zm32-144c13.3 0 24 10.7 24 24s-10.7 24-24 24-24-10.7-24-24 10.7-24 24-24zm184 248h104v200c0 13.3-10.7 24-24 24H184c-13.3 0-24-10.7-24-24V184c0-13.3 10.7-24 24-24h136v104c0 13.2 10.8 24 24 24zm104-38.1V256h-96v-96h6.1a24 24 0 0 1 17 7l65.9 65.9a24 24 0 0 1 7 17z"/></svg>', toolbarIcons, _hoisted_1$20, AlignmentButtons_default, _hoisted_1$19, StyleButtonsList_default, bulletStyleButtons, numberedStyleButtons, _hoisted_1$18, _hoisted_2$15, _hoisted_3$11, _hoisted_4$7, _hoisted_5$5, _hoisted_6$3, DocumentMode_default, _hoisted_1$17, _hoisted_2$14, LinkedStyle_default, _hoisted_1$16, _hoisted_2$13, _hoisted_3$10, _hoisted_4$6, _hoisted_5$4, _hoisted_6$2, _hoisted_7$2, _hoisted_8$1, _hoisted_9$1, _hoisted_10$1, _hoisted_11$1, _hoisted_12$1, _hoisted_13, _hoisted_14, LinkInput_default, _hoisted_1$15, _hoisted_2$12, _hoisted_3$9, ROW_SIZE$1 = 7, IconGridRow_default, droplet_slash_default = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 640 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M320 512c53.2 0 101.4-21.6 136.1-56.6l-298.3-235C140 257.1 128 292.3 128 320c0 106 86 192 192 192zM505.2 370.7c4.4-16.2 6.8-33.1 6.8-50.7c0-91.2-130.2-262.3-166.6-308.3C339.4 4.2 330.5 0 320.9 0l-1.8 0c-9.6 0-18.5 4.2-24.5 11.7C277.8 33 240.7 81.3 205.8 136L38.8 5.1C28.4-3.1 13.3-1.2 5.1 9.2S-1.2 34.7 9.2 42.9l592 464c10.4 8.2 25.5 6.3 33.7-4.1s6.3-25.5-4.1-33.7L505.2 370.7zM224 336c0 44.2 35.8 80 80 80c8.8 0 16 7.2 16 16s-7.2 16-16 16c-61.9 0-112-50.1-112-112c0-8.8 7.2-16 16-16s16 7.2 16 16z"/></svg>
|
|
276212
276250
|
`, _hoisted_1$14, _hoisted_2$11, _hoisted_3$8, IconGrid_default, closeDropdown$1 = (dropdown) => {
|
|
276213
276251
|
dropdown.expand.value = false;
|
|
276214
276252
|
}, makeColorOption = (color2, label = null) => {
|
|
@@ -276240,7 +276278,7 @@ var Node$13 = class Node$14 {
|
|
|
276240
276278
|
})]);
|
|
276241
276279
|
}, icons, getAvailableColorOptions = () => {
|
|
276242
276280
|
return icons.flat().map((item) => item.value);
|
|
276243
|
-
}, _hoisted_1$13, _hoisted_2$10, ROW_SIZE = 5, TableGrid_default, _hoisted_1$12, _hoisted_2$9, _hoisted_3$7, _hoisted_4$5, _hoisted_5$
|
|
276281
|
+
}, _hoisted_1$13, _hoisted_2$10, ROW_SIZE = 5, TableGrid_default, _hoisted_1$12, _hoisted_2$9, _hoisted_3$7, _hoisted_4$5, _hoisted_5$3, TableActions_default, check_default = `<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><!--!Font Awesome Free 6.7.2 by @fontawesome - https://fontawesome.com License - https://fontawesome.com/license/free Copyright 2025 Fonticons, Inc.--><path d="M438.6 105.4c12.5 12.5 12.5 32.8 0 45.3l-256 256c-12.5 12.5-32.8 12.5-45.3 0l-128-128c-12.5-12.5-12.5-32.8 0-45.3s32.8-12.5 45.3 0L160 338.7 393.4 105.4c12.5-12.5 32.8-12.5 45.3 0z"/></svg>
|
|
276244
276282
|
`, _hoisted_1$11, _hoisted_2$8, _hoisted_3$6, SearchInput_default, TOOLBAR_FONTS, TOOLBAR_FONT_SIZES, RESPONSIVE_BREAKPOINTS, HEADLESS_ITEM_MAP, TABLE_ACTION_COMMAND_MAP, TABLE_ACTION_COMMAND_IDS, HEADLESS_TOOLBAR_COMMANDS, NON_HEADLESS_EXECUTE_ITEM_NAMES, HEADLESS_EXECUTE_ITEMS, closeDropdown = (dropdown) => {
|
|
276245
276283
|
dropdown.expand.value = false;
|
|
276246
276284
|
}, makeDefaultItems = ({ superToolbar, toolbarIcons: toolbarIcons$1, toolbarTexts: toolbarTexts$1, toolbarFonts, hideButtons, availableWidth, role, isDev = false } = {}) => {
|
|
@@ -277293,7 +277331,7 @@ var Node$13 = class Node$14 {
|
|
|
277293
277331
|
defaultItems: visibleItems,
|
|
277294
277332
|
overflowItems: overflowItems.filter((item) => item.type !== "separator")
|
|
277295
277333
|
};
|
|
277296
|
-
}, _hoisted_1$10, _hoisted_2$7, ToolbarButtonIcon_default, _hoisted_1$9, _hoisted_2$6, _hoisted_3$5, _hoisted_4$4, _hoisted_5$
|
|
277334
|
+
}, _hoisted_1$10, _hoisted_2$7, ToolbarButtonIcon_default, _hoisted_1$9, _hoisted_2$6, _hoisted_3$5, _hoisted_4$4, _hoisted_5$2, _hoisted_6$1, _hoisted_7$1, _hoisted_8, _hoisted_9, _hoisted_10, _hoisted_11, _hoisted_12, ToolbarButton_default, _hoisted_1$8, ToolbarSeparator_default, _hoisted_1$7, _hoisted_2$5, _hoisted_3$4, OverflowMenu_default, _hoisted_1$6, _hoisted_2$4, _hoisted_3$3, _hoisted_4$3, ToolbarDropdown_default, SdTooltip_default, _hoisted_1$5, _hoisted_2$3, _hoisted_3$2, _hoisted_4$2, ButtonGroup_default, DEFAULT_UI_FONT_FAMILY = "Arial, Helvetica, sans-serif", Toolbar_default, toolbarTexts, getParagraphFontFamilyFromProperties = (paragraphProps, convertedXml = {}) => {
|
|
277297
277335
|
const fontFamilyProps = paragraphProps?.runProperties?.fontFamily;
|
|
277298
277336
|
if (!fontFamilyProps)
|
|
277299
277337
|
return null;
|
|
@@ -279353,21 +279391,31 @@ var Node$13 = class Node$14 {
|
|
|
279353
279391
|
continue;
|
|
279354
279392
|
const internalIds = new Set(parseCommaSeparated(el.dataset.commentInternalIds));
|
|
279355
279393
|
const primaryIsInternal = internalIds.has(ids[0]);
|
|
279394
|
+
const isTrackedChangeAnchored = el.classList.contains("highlighted") && (el.classList.contains("track-insert-dec") || el.classList.contains("track-delete-dec"));
|
|
279356
279395
|
if (activeId == null) {
|
|
279357
|
-
|
|
279396
|
+
if (!isTrackedChangeAnchored)
|
|
279397
|
+
applyBgColor(el, primaryIsInternal ? H.INT : H.EXT);
|
|
279398
|
+
else
|
|
279399
|
+
el.style.backgroundColor = "";
|
|
279358
279400
|
el.style.boxShadow = "";
|
|
279359
279401
|
continue;
|
|
279360
279402
|
}
|
|
279361
279403
|
const matchedId = this.#resolveMatch(activeId, ids, el.dataset.commentImportedIds);
|
|
279362
279404
|
if (matchedId != null) {
|
|
279363
279405
|
const matchIsInternal = internalIds.has(matchedId);
|
|
279364
|
-
|
|
279406
|
+
if (!isTrackedChangeAnchored)
|
|
279407
|
+
applyBgColor(el, matchIsInternal ? H.INT_ACTIVE : H.EXT_ACTIVE);
|
|
279408
|
+
else
|
|
279409
|
+
el.style.backgroundColor = "";
|
|
279365
279410
|
if (ids.length > 1)
|
|
279366
279411
|
applyBoxShadow(el, matchIsInternal ? H.INT_NESTED_BDR : H.EXT_NESTED_BDR);
|
|
279367
279412
|
else
|
|
279368
279413
|
el.style.boxShadow = "";
|
|
279369
279414
|
} else {
|
|
279370
|
-
|
|
279415
|
+
if (!isTrackedChangeAnchored)
|
|
279416
|
+
applyBgColor(el, primaryIsInternal ? H.INT_FADED : H.EXT_FADED);
|
|
279417
|
+
else
|
|
279418
|
+
el.style.backgroundColor = "";
|
|
279371
279419
|
el.style.boxShadow = "";
|
|
279372
279420
|
}
|
|
279373
279421
|
}
|
|
@@ -295031,13 +295079,13 @@ menclose::after {
|
|
|
295031
295079
|
return;
|
|
295032
295080
|
console.log(...args$1);
|
|
295033
295081
|
}, 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;
|
|
295034
|
-
var
|
|
295082
|
+
var init_src_Bnec7ggt_es = __esm(() => {
|
|
295035
295083
|
init_rolldown_runtime_Bg48TavK_es();
|
|
295036
|
-
|
|
295084
|
+
init_SuperConverter_8A1MBmqJ_es();
|
|
295037
295085
|
init_jszip_C49i9kUs_es();
|
|
295038
295086
|
init_xml_js_CqGKpaft_es();
|
|
295039
295087
|
init_uuid_qzgm05fK_es();
|
|
295040
|
-
|
|
295088
|
+
init_create_headless_toolbar_1RfXz7Wm_es();
|
|
295041
295089
|
init_constants_DrU4EASo_es();
|
|
295042
295090
|
init_dist_B8HfvhaK_es();
|
|
295043
295091
|
init_unified_Dsuw2be5_es();
|
|
@@ -296571,8 +296619,6 @@ ${err.toString()}`);
|
|
|
296571
296619
|
const editor = this.editor;
|
|
296572
296620
|
if (editor.options?.isHeadless)
|
|
296573
296621
|
return [];
|
|
296574
|
-
let slashCooldown = false;
|
|
296575
|
-
let slashCooldownTimeout = null;
|
|
296576
296622
|
const isMenuDisabled = () => Boolean(editor.options?.disableContextMenu);
|
|
296577
296623
|
const ensureStateShape = (value = {}) => ({
|
|
296578
296624
|
open: false,
|
|
@@ -296580,6 +296626,7 @@ ${err.toString()}`);
|
|
|
296580
296626
|
anchorPos: null,
|
|
296581
296627
|
menuPosition: null,
|
|
296582
296628
|
disabled: isMenuDisabled(),
|
|
296629
|
+
trigger: null,
|
|
296583
296630
|
...value
|
|
296584
296631
|
});
|
|
296585
296632
|
return [new Plugin({
|
|
@@ -296658,7 +296705,8 @@ ${err.toString()}`);
|
|
|
296658
296705
|
...value,
|
|
296659
296706
|
open: true,
|
|
296660
296707
|
anchorPos: meta4.pos,
|
|
296661
|
-
menuPosition
|
|
296708
|
+
menuPosition,
|
|
296709
|
+
trigger: isRightClick ? "rightClick" : "slash"
|
|
296662
296710
|
};
|
|
296663
296711
|
editor.emit("contextMenu:open", { menuPosition });
|
|
296664
296712
|
return ensureStateShape(newState);
|
|
@@ -296673,7 +296721,8 @@ ${err.toString()}`);
|
|
|
296673
296721
|
return ensureStateShape({
|
|
296674
296722
|
...value,
|
|
296675
296723
|
open: false,
|
|
296676
|
-
anchorPos: null
|
|
296724
|
+
anchorPos: null,
|
|
296725
|
+
trigger: null
|
|
296677
296726
|
});
|
|
296678
296727
|
default:
|
|
296679
296728
|
return ensureStateShape({
|
|
@@ -296695,18 +296744,12 @@ ${err.toString()}`);
|
|
|
296695
296744
|
return { destroy() {
|
|
296696
296745
|
window.removeEventListener("scroll", updatePosition$1, true);
|
|
296697
296746
|
window.removeEventListener("resize", updatePosition$1);
|
|
296698
|
-
if (slashCooldownTimeout) {
|
|
296699
|
-
clearTimeout(slashCooldownTimeout);
|
|
296700
|
-
slashCooldownTimeout = null;
|
|
296701
|
-
}
|
|
296702
296747
|
} };
|
|
296703
296748
|
},
|
|
296704
296749
|
props: { handleKeyDown(view, event) {
|
|
296705
296750
|
if (isMenuDisabled())
|
|
296706
296751
|
return false;
|
|
296707
296752
|
const pluginState = this.getState(view.state);
|
|
296708
|
-
if (event.key === "/" && slashCooldown)
|
|
296709
|
-
return false;
|
|
296710
296753
|
if (event.key === "/" && !pluginState.open) {
|
|
296711
296754
|
const { $cursor } = view.state.selection;
|
|
296712
296755
|
if (!$cursor)
|
|
@@ -296717,25 +296760,28 @@ ${err.toString()}`);
|
|
|
296717
296760
|
if (!(!textBefore || textBefore.endsWith(" ")))
|
|
296718
296761
|
return false;
|
|
296719
296762
|
event.preventDefault();
|
|
296720
|
-
slashCooldown = true;
|
|
296721
|
-
if (slashCooldownTimeout)
|
|
296722
|
-
clearTimeout(slashCooldownTimeout);
|
|
296723
|
-
slashCooldownTimeout = setTimeout(() => {
|
|
296724
|
-
slashCooldown = false;
|
|
296725
|
-
slashCooldownTimeout = null;
|
|
296726
|
-
}, SLASH_COOLDOWN_MS);
|
|
296727
296763
|
view.dispatch(view.state.tr.setMeta(ContextMenuPluginKey, {
|
|
296728
296764
|
type: "open",
|
|
296729
296765
|
pos: $cursor.pos
|
|
296730
296766
|
}));
|
|
296731
296767
|
return true;
|
|
296732
296768
|
}
|
|
296733
|
-
if (pluginState.open
|
|
296734
|
-
|
|
296769
|
+
if (!pluginState.open)
|
|
296770
|
+
return false;
|
|
296771
|
+
if (event.key === "Backspace" || event.key === "Delete") {
|
|
296772
|
+
event.preventDefault();
|
|
296735
296773
|
view.dispatch(view.state.tr.setMeta(ContextMenuPluginKey, { type: "close" }));
|
|
296736
|
-
|
|
296737
|
-
|
|
296738
|
-
|
|
296774
|
+
return true;
|
|
296775
|
+
}
|
|
296776
|
+
if (event.key === "Escape" || event.key === "ArrowLeft") {
|
|
296777
|
+
const { anchorPos, trigger } = pluginState;
|
|
296778
|
+
event.preventDefault();
|
|
296779
|
+
view.dispatch(view.state.tr.setMeta(ContextMenuPluginKey, { type: "close" }));
|
|
296780
|
+
if (trigger === "slash" && anchorPos !== null) {
|
|
296781
|
+
const insertTr = view.state.tr.insertText("/", anchorPos);
|
|
296782
|
+
const insertedAt = anchorPos + 1;
|
|
296783
|
+
insertTr.setSelection(view.state.selection.constructor.near(insertTr.doc.resolve(insertedAt)));
|
|
296784
|
+
view.dispatch(insertTr);
|
|
296739
296785
|
view.focus();
|
|
296740
296786
|
}
|
|
296741
296787
|
return true;
|
|
@@ -312487,7 +312533,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
312487
312533
|
_hoisted_2$17 = { key: 0 };
|
|
312488
312534
|
_hoisted_3$13 = { key: 0 };
|
|
312489
312535
|
_hoisted_4$9 = { key: 1 };
|
|
312490
|
-
_hoisted_5$
|
|
312536
|
+
_hoisted_5$7 = { key: 1 };
|
|
312491
312537
|
Mentions_default = /* @__PURE__ */ __plugin_vue_export_helper_default({
|
|
312492
312538
|
__name: "Mentions",
|
|
312493
312539
|
props: {
|
|
@@ -312553,7 +312599,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
312553
312599
|
onMouseleave: _cache[0] || (_cache[0] = ($event) => activeUserIndex.value = null),
|
|
312554
312600
|
key: user.email,
|
|
312555
312601
|
class: exports_vue.normalizeClass(["user-row", { selected: activeUserIndex.value === index2 }])
|
|
312556
|
-
}, [user.name ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_2$17, [user.name ? (exports_vue.openBlock(), exports_vue.createElementBlock("span", _hoisted_3$13, exports_vue.toDisplayString(user.name), 1)) : exports_vue.createCommentVNode("", true), user.name && user.email ? (exports_vue.openBlock(), exports_vue.createElementBlock("span", _hoisted_4$9, " (" + exports_vue.toDisplayString(user.email) + ")", 1)) : exports_vue.createCommentVNode("", true)])) : (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_5$
|
|
312602
|
+
}, [user.name ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_2$17, [user.name ? (exports_vue.openBlock(), exports_vue.createElementBlock("span", _hoisted_3$13, exports_vue.toDisplayString(user.name), 1)) : exports_vue.createCommentVNode("", true), user.name && user.email ? (exports_vue.openBlock(), exports_vue.createElementBlock("span", _hoisted_4$9, " (" + exports_vue.toDisplayString(user.email) + ")", 1)) : exports_vue.createCommentVNode("", true)])) : (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_5$7, [exports_vue.createElementVNode("span", null, exports_vue.toDisplayString(user.email), 1)]))], 42, _hoisted_1$22);
|
|
312557
312603
|
}), 128))], 544);
|
|
312558
312604
|
};
|
|
312559
312605
|
}
|
|
@@ -313741,7 +313787,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
313741
313787
|
_hoisted_2$16 = ["innerHTML"];
|
|
313742
313788
|
_hoisted_3$12 = ["placeholder"];
|
|
313743
313789
|
_hoisted_4$8 = { class: "ai-loader" };
|
|
313744
|
-
_hoisted_5$
|
|
313790
|
+
_hoisted_5$6 = ["innerHTML"];
|
|
313745
313791
|
AIWriter_default = /* @__PURE__ */ __plugin_vue_export_helper_default({
|
|
313746
313792
|
__name: "AIWriter",
|
|
313747
313793
|
props: {
|
|
@@ -313985,7 +314031,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
313985
314031
|
class: "ai-textarea-icon ai-submit-button",
|
|
313986
314032
|
onClick: exports_vue.withModifiers(handleSubmit, ["stop"]),
|
|
313987
314033
|
innerHTML: exports_vue.unref(paper_plane_regular_default)
|
|
313988
|
-
}, null, 8, _hoisted_5$
|
|
314034
|
+
}, null, 8, _hoisted_5$6)) : exports_vue.createCommentVNode("", true)])], 544);
|
|
313989
314035
|
};
|
|
313990
314036
|
}
|
|
313991
314037
|
}, [["__scopeId", "data-v-79953d57"]]);
|
|
@@ -314322,8 +314368,8 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
314322
314368
|
_hoisted_2$15 = { class: "document-mode-column icon-column" };
|
|
314323
314369
|
_hoisted_3$11 = ["innerHTML"];
|
|
314324
314370
|
_hoisted_4$7 = { class: "document-mode-column text-column" };
|
|
314325
|
-
_hoisted_5$
|
|
314326
|
-
_hoisted_6$
|
|
314371
|
+
_hoisted_5$5 = { class: "document-mode-type" };
|
|
314372
|
+
_hoisted_6$3 = { class: "document-mode-description" };
|
|
314327
314373
|
DocumentMode_default = /* @__PURE__ */ __plugin_vue_export_helper_default({
|
|
314328
314374
|
__name: "DocumentMode",
|
|
314329
314375
|
props: { options: { type: Array } },
|
|
@@ -314387,7 +314433,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
314387
314433
|
}, [exports_vue.createElementVNode("div", _hoisted_2$15, [exports_vue.createElementVNode("div", {
|
|
314388
314434
|
class: "icon-column__icon",
|
|
314389
314435
|
innerHTML: option.icon
|
|
314390
|
-
}, null, 8, _hoisted_3$11)]), exports_vue.createElementVNode("div", _hoisted_4$7, [exports_vue.createElementVNode("div", _hoisted_5$
|
|
314436
|
+
}, null, 8, _hoisted_3$11)]), exports_vue.createElementVNode("div", _hoisted_4$7, [exports_vue.createElementVNode("div", _hoisted_5$5, exports_vue.toDisplayString(option.label), 1), exports_vue.createElementVNode("div", _hoisted_6$3, exports_vue.toDisplayString(option.description), 1)])], 42, _hoisted_1$18);
|
|
314391
314437
|
}), 256))], 2);
|
|
314392
314438
|
};
|
|
314393
314439
|
}
|
|
@@ -314488,12 +314534,12 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
314488
314534
|
key: 3,
|
|
314489
314535
|
class: "link-title"
|
|
314490
314536
|
};
|
|
314491
|
-
_hoisted_5$
|
|
314537
|
+
_hoisted_5$4 = {
|
|
314492
314538
|
key: 4,
|
|
314493
314539
|
class: "link-input-wrapper"
|
|
314494
314540
|
};
|
|
314495
|
-
_hoisted_6$
|
|
314496
|
-
_hoisted_7$
|
|
314541
|
+
_hoisted_6$2 = { class: "input-row text-input-row" };
|
|
314542
|
+
_hoisted_7$2 = ["readonly"];
|
|
314497
314543
|
_hoisted_8$1 = { class: "input-row url-input-row" };
|
|
314498
314544
|
_hoisted_9$1 = ["innerHTML"];
|
|
314499
314545
|
_hoisted_10$1 = ["readonly", "onKeydown"];
|
|
@@ -314675,15 +314721,15 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
314675
314721
|
props.goToAnchor(url$1);
|
|
314676
314722
|
};
|
|
314677
314723
|
return (_ctx, _cache) => {
|
|
314678
|
-
return exports_vue.openBlock(), exports_vue.createElementBlock("div", { class: exports_vue.normalizeClass(["link-input-ctn", { "high-contrast": exports_vue.unref(isHighContrastMode$1) }]) }, [isAnchor.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_1$16, "Page anchor")) : isViewingMode.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_2$13, "Link details")) : isEditing.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_3$10, "Edit link")) : (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_4$6, "Add link")), __props.showInput && !isAnchor.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_5$
|
|
314679
|
-
exports_vue.createElementVNode("div", _hoisted_6$
|
|
314724
|
+
return exports_vue.openBlock(), exports_vue.createElementBlock("div", { class: exports_vue.normalizeClass(["link-input-ctn", { "high-contrast": exports_vue.unref(isHighContrastMode$1) }]) }, [isAnchor.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_1$16, "Page anchor")) : isViewingMode.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_2$13, "Link details")) : isEditing.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_3$10, "Edit link")) : (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_4$6, "Add link")), __props.showInput && !isAnchor.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_5$4, [
|
|
314725
|
+
exports_vue.createElementVNode("div", _hoisted_6$2, [_cache[5] || (_cache[5] = exports_vue.createElementVNode("div", { class: "input-icon text-input-icon" }, "T", -1)), exports_vue.withDirectives(exports_vue.createElementVNode("input", {
|
|
314680
314726
|
type: "text",
|
|
314681
314727
|
name: "text",
|
|
314682
314728
|
placeholder: "Text",
|
|
314683
314729
|
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => text5.value = $event),
|
|
314684
314730
|
readonly: isViewingMode.value,
|
|
314685
314731
|
onKeydown: _cache[1] || (_cache[1] = exports_vue.withKeys(exports_vue.withModifiers(($event) => !isViewingMode.value && handleSubmit, ["stop", "prevent"]), ["enter"]))
|
|
314686
|
-
}, null, 40, _hoisted_7$
|
|
314732
|
+
}, null, 40, _hoisted_7$2), [[exports_vue.vModelText, text5.value]])]),
|
|
314687
314733
|
exports_vue.createElementVNode("div", _hoisted_8$1, [
|
|
314688
314734
|
exports_vue.createElementVNode("div", {
|
|
314689
314735
|
class: "input-icon",
|
|
@@ -315119,7 +315165,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
315119
315165
|
];
|
|
315120
315166
|
_hoisted_3$7 = { class: "toolbar-table-actions__icon" };
|
|
315121
315167
|
_hoisted_4$5 = ["innerHTML"];
|
|
315122
|
-
_hoisted_5$
|
|
315168
|
+
_hoisted_5$3 = { class: "toolbar-table-actions__label" };
|
|
315123
315169
|
TableActions_default = /* @__PURE__ */ __plugin_vue_export_helper_default({
|
|
315124
315170
|
__name: "TableActions",
|
|
315125
315171
|
props: { options: { type: Array } },
|
|
@@ -315140,7 +315186,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
315140
315186
|
}, [exports_vue.createElementVNode("div", _hoisted_3$7, [exports_vue.createElementVNode("div", {
|
|
315141
315187
|
class: "toolbar-table-actions__icon-wrapper",
|
|
315142
315188
|
innerHTML: option.icon
|
|
315143
|
-
}, null, 8, _hoisted_4$5)]), exports_vue.createElementVNode("div", _hoisted_5$
|
|
315189
|
+
}, null, 8, _hoisted_4$5)]), exports_vue.createElementVNode("div", _hoisted_5$3, exports_vue.toDisplayString(option.label), 1)], 10, _hoisted_2$9);
|
|
315144
315190
|
}), 256))]);
|
|
315145
315191
|
};
|
|
315146
315192
|
}
|
|
@@ -315387,9 +315433,9 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
315387
315433
|
key: 1,
|
|
315388
315434
|
class: "button-label"
|
|
315389
315435
|
};
|
|
315390
|
-
_hoisted_5$
|
|
315391
|
-
_hoisted_6 = ["innerHTML"];
|
|
315392
|
-
_hoisted_7 = {
|
|
315436
|
+
_hoisted_5$2 = ["data-item", "aria-label"];
|
|
315437
|
+
_hoisted_6$1 = ["innerHTML"];
|
|
315438
|
+
_hoisted_7$1 = {
|
|
315393
315439
|
key: 1,
|
|
315394
315440
|
class: "button-label"
|
|
315395
315441
|
};
|
|
@@ -315537,7 +315583,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
315537
315583
|
class: "dropdown-caret",
|
|
315538
315584
|
innerHTML: caretIcon.value,
|
|
315539
315585
|
style: exports_vue.normalizeStyle({ opacity: exports_vue.unref(disabled) ? 0.6 : 1 })
|
|
315540
|
-
}, null, 12, _hoisted_6)], 8, _hoisted_5$
|
|
315586
|
+
}, null, 12, _hoisted_6$1)], 8, _hoisted_5$2)) : (exports_vue.openBlock(), exports_vue.createElementBlock(exports_vue.Fragment, { key: 2 }, [
|
|
315541
315587
|
exports_vue.unref(icon) ? (exports_vue.openBlock(), exports_vue.createBlock(ToolbarButtonIcon_default, {
|
|
315542
315588
|
key: 0,
|
|
315543
315589
|
color: exports_vue.unref(iconColor),
|
|
@@ -315549,7 +315595,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
315549
315595
|
"icon",
|
|
315550
315596
|
"name"
|
|
315551
315597
|
])) : exports_vue.createCommentVNode("", true),
|
|
315552
|
-
exports_vue.unref(label) && !exports_vue.unref(hideLabel) && !exports_vue.unref(inlineTextInputVisible) ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_7, exports_vue.toDisplayString(exports_vue.unref(label)), 1)) : exports_vue.createCommentVNode("", true),
|
|
315598
|
+
exports_vue.unref(label) && !exports_vue.unref(hideLabel) && !exports_vue.unref(inlineTextInputVisible) ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_7$1, exports_vue.toDisplayString(exports_vue.unref(label)), 1)) : exports_vue.createCommentVNode("", true),
|
|
315553
315599
|
exports_vue.unref(inlineTextInputVisible) ? (exports_vue.openBlock(), exports_vue.createElementBlock("span", _hoisted_8, [exports_vue.unref(name) === "fontSize" ? exports_vue.withDirectives((exports_vue.openBlock(), exports_vue.createElementBlock("input", {
|
|
315554
315600
|
key: 0,
|
|
315555
315601
|
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => inlineTextInput.value = $event),
|
|
@@ -333104,11 +333150,11 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
333104
333150
|
];
|
|
333105
333151
|
});
|
|
333106
333152
|
|
|
333107
|
-
// ../../packages/superdoc/dist/chunks/create-super-doc-ui-
|
|
333153
|
+
// ../../packages/superdoc/dist/chunks/create-super-doc-ui-BLwvPPRc.es.js
|
|
333108
333154
|
var 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;
|
|
333109
|
-
var
|
|
333110
|
-
|
|
333111
|
-
|
|
333155
|
+
var init_create_super_doc_ui_BLwvPPRc_es = __esm(() => {
|
|
333156
|
+
init_SuperConverter_8A1MBmqJ_es();
|
|
333157
|
+
init_create_headless_toolbar_1RfXz7Wm_es();
|
|
333112
333158
|
MOD_ALIASES = new Set([
|
|
333113
333159
|
"Mod",
|
|
333114
333160
|
"Meta",
|
|
@@ -333150,16 +333196,16 @@ var init_zipper_BxRAi0_5_es = __esm(() => {
|
|
|
333150
333196
|
|
|
333151
333197
|
// ../../packages/superdoc/dist/super-editor.es.js
|
|
333152
333198
|
var init_super_editor_es = __esm(() => {
|
|
333153
|
-
|
|
333154
|
-
|
|
333199
|
+
init_src_Bnec7ggt_es();
|
|
333200
|
+
init_SuperConverter_8A1MBmqJ_es();
|
|
333155
333201
|
init_jszip_C49i9kUs_es();
|
|
333156
333202
|
init_xml_js_CqGKpaft_es();
|
|
333157
|
-
|
|
333203
|
+
init_create_headless_toolbar_1RfXz7Wm_es();
|
|
333158
333204
|
init_constants_DrU4EASo_es();
|
|
333159
333205
|
init_dist_B8HfvhaK_es();
|
|
333160
333206
|
init_unified_Dsuw2be5_es();
|
|
333161
333207
|
init_DocxZipper_Bphhij1P_es();
|
|
333162
|
-
|
|
333208
|
+
init_create_super_doc_ui_BLwvPPRc_es();
|
|
333163
333209
|
init_ui_CGB3qmy3_es();
|
|
333164
333210
|
init_eventemitter3_UwU_CLPU_es();
|
|
333165
333211
|
init_errors_C_DoKMoN_es();
|
|
@@ -395391,45 +395437,68 @@ var init_generate_paragraph_properties = __esm(() => {
|
|
|
395391
395437
|
});
|
|
395392
395438
|
|
|
395393
395439
|
// ../../packages/super-editor/src/editors/v1/core/super-converter/v3/handlers/w/p/helpers/translate-paragraph-node.js
|
|
395440
|
+
function foldLeadingCommentStartsIntoTrackedChanges2(elements) {
|
|
395441
|
+
const result = [];
|
|
395442
|
+
let i5 = 0;
|
|
395443
|
+
while (i5 < elements.length) {
|
|
395444
|
+
if (elements[i5]?.name !== "w:commentRangeStart") {
|
|
395445
|
+
result.push(elements[i5]);
|
|
395446
|
+
i5++;
|
|
395447
|
+
continue;
|
|
395448
|
+
}
|
|
395449
|
+
const leadingStarts = [];
|
|
395450
|
+
while (i5 < elements.length && elements[i5]?.name === "w:commentRangeStart") {
|
|
395451
|
+
leadingStarts.push(elements[i5]);
|
|
395452
|
+
i5++;
|
|
395453
|
+
}
|
|
395454
|
+
const next2 = elements[i5];
|
|
395455
|
+
if (isTrackedChangeWrapper2(next2)) {
|
|
395456
|
+
result.push({ ...next2, elements: [...leadingStarts, ...next2.elements || []] });
|
|
395457
|
+
i5++;
|
|
395458
|
+
} else {
|
|
395459
|
+
result.push(...leadingStarts);
|
|
395460
|
+
}
|
|
395461
|
+
}
|
|
395462
|
+
return result;
|
|
395463
|
+
}
|
|
395394
395464
|
function mergeConsecutiveTrackedChanges2(elements) {
|
|
395395
395465
|
if (!Array.isArray(elements) || elements.length === 0)
|
|
395396
395466
|
return elements;
|
|
395467
|
+
elements = foldLeadingCommentStartsIntoTrackedChanges2(elements);
|
|
395397
395468
|
const result = [];
|
|
395398
395469
|
let i5 = 0;
|
|
395399
395470
|
while (i5 < elements.length) {
|
|
395400
395471
|
const current = elements[i5];
|
|
395401
|
-
if (current
|
|
395472
|
+
if (isTrackedChangeWrapper2(current)) {
|
|
395402
395473
|
const tcId = current.attributes?.["w:id"];
|
|
395403
395474
|
const tcName = current.name;
|
|
395404
395475
|
const mergedElements = [...current.elements || []];
|
|
395476
|
+
const pendingComments = [];
|
|
395477
|
+
let didMerge = false;
|
|
395405
395478
|
let j = i5 + 1;
|
|
395406
395479
|
while (j < elements.length) {
|
|
395407
395480
|
const next2 = elements[j];
|
|
395408
|
-
if (next2
|
|
395409
|
-
|
|
395481
|
+
if (isCommentMarker2(next2)) {
|
|
395482
|
+
pendingComments.push(next2);
|
|
395410
395483
|
j++;
|
|
395411
395484
|
continue;
|
|
395412
395485
|
}
|
|
395413
|
-
if (next2?.name === "w:r") {
|
|
395414
|
-
const hasOnlyCommentRef = next2.elements?.length === 1 && next2.elements[0]?.name === "w:commentReference";
|
|
395415
|
-
if (hasOnlyCommentRef) {
|
|
395416
|
-
mergedElements.push(next2);
|
|
395417
|
-
j++;
|
|
395418
|
-
continue;
|
|
395419
|
-
}
|
|
395420
|
-
}
|
|
395421
395486
|
if (next2?.name === tcName && next2.attributes?.["w:id"] === tcId) {
|
|
395422
|
-
mergedElements.push(...next2.elements || []);
|
|
395487
|
+
mergedElements.push(...pendingComments, ...next2.elements || []);
|
|
395488
|
+
pendingComments.length = 0;
|
|
395489
|
+
didMerge = true;
|
|
395423
395490
|
j++;
|
|
395424
395491
|
continue;
|
|
395425
395492
|
}
|
|
395426
395493
|
break;
|
|
395427
395494
|
}
|
|
395428
|
-
|
|
395429
|
-
name: tcName,
|
|
395430
|
-
|
|
395431
|
-
|
|
395432
|
-
|
|
395495
|
+
if (didMerge) {
|
|
395496
|
+
result.push({ name: tcName, attributes: { ...current.attributes }, elements: mergedElements });
|
|
395497
|
+
result.push(...pendingComments);
|
|
395498
|
+
} else {
|
|
395499
|
+
result.push(current);
|
|
395500
|
+
result.push(...pendingComments);
|
|
395501
|
+
}
|
|
395433
395502
|
i5 = j;
|
|
395434
395503
|
} else {
|
|
395435
395504
|
result.push(current);
|
|
@@ -395466,6 +395535,15 @@ function translateParagraphNode2(params3) {
|
|
|
395466
395535
|
};
|
|
395467
395536
|
return result;
|
|
395468
395537
|
}
|
|
395538
|
+
var isTrackedChangeWrapper2 = (el) => el?.name === "w:ins" || el?.name === "w:del", isCommentMarker2 = (el) => {
|
|
395539
|
+
if (!el)
|
|
395540
|
+
return false;
|
|
395541
|
+
if (el.name === "w:commentRangeStart" || el.name === "w:commentRangeEnd")
|
|
395542
|
+
return true;
|
|
395543
|
+
if (el.name === "w:r" && el.elements?.length === 1 && el.elements[0]?.name === "w:commentReference")
|
|
395544
|
+
return true;
|
|
395545
|
+
return false;
|
|
395546
|
+
};
|
|
395469
395547
|
var init_translate_paragraph_node = __esm(() => {
|
|
395470
395548
|
init_helpers2();
|
|
395471
395549
|
init_generate_paragraph_properties();
|
|
@@ -424223,8 +424301,8 @@ var detectDocumentOrigin2 = (docx) => {
|
|
|
424223
424301
|
const trackedChangeIdMapOptions = {
|
|
424224
424302
|
replacements: converter.trackedChangesOptions?.replacements ?? "paired"
|
|
424225
424303
|
};
|
|
424226
|
-
converter.trackedChangeIdMap = buildTrackedChangeIdMap2(docx, trackedChangeIdMapOptions);
|
|
424227
424304
|
converter.trackedChangeIdMapsByPart = buildTrackedChangeIdMapsByPart2(docx, trackedChangeIdMapOptions);
|
|
424305
|
+
converter.trackedChangeIdMap = converter.trackedChangeIdMapsByPart.get("word/document.xml") ?? buildTrackedChangeIdMap2(docx, trackedChangeIdMapOptions);
|
|
424228
424306
|
const comments = importCommentData2({ docx, nodeListHandler, converter, editor });
|
|
424229
424307
|
const footnotes = importFootnoteData2({ docx, nodeListHandler, converter, editor, numbering });
|
|
424230
424308
|
const endnotes = importEndnoteData2({ docx, nodeListHandler, converter, editor, numbering });
|