@superdoc-dev/mcp 0.3.0-next.12 → 0.3.0-next.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +507 -158
- package/package.json +2 -2
package/dist/index.js
CHANGED
|
@@ -51837,7 +51837,7 @@ var init_remark_gfm_BhnWr3yf_es = __esm(() => {
|
|
|
51837
51837
|
emptyOptions2 = {};
|
|
51838
51838
|
});
|
|
51839
51839
|
|
|
51840
|
-
// ../../packages/superdoc/dist/chunks/SuperConverter-
|
|
51840
|
+
// ../../packages/superdoc/dist/chunks/SuperConverter-BTy5lByv.es.js
|
|
51841
51841
|
function getExtensionConfigField(extension$1, field, context = { name: "" }) {
|
|
51842
51842
|
const fieldValue = extension$1.config[field];
|
|
51843
51843
|
if (typeof fieldValue === "function")
|
|
@@ -71429,9 +71429,24 @@ function buildNumDef(numId, abstractId) {
|
|
|
71429
71429
|
}]
|
|
71430
71430
|
};
|
|
71431
71431
|
}
|
|
71432
|
+
function generateAbstractIdentityHex() {
|
|
71433
|
+
let hex3 = "";
|
|
71434
|
+
for (let i$1 = 0;i$1 < 8; i$1 += 1)
|
|
71435
|
+
hex3 += Math.floor(Math.random() * 16).toString(16);
|
|
71436
|
+
return hex3.toUpperCase();
|
|
71437
|
+
}
|
|
71438
|
+
function refreshAbstractIdentity(abstractDef) {
|
|
71439
|
+
if (!abstractDef?.elements?.length)
|
|
71440
|
+
return;
|
|
71441
|
+
for (const el of abstractDef.elements)
|
|
71442
|
+
if (el?.name === "w:nsid" && el.attributes)
|
|
71443
|
+
el.attributes["w:val"] = generateAbstractIdentityHex();
|
|
71444
|
+
else if (el?.name === "w:tmpl" && el.attributes)
|
|
71445
|
+
el.attributes["w:val"] = generateAbstractIdentityHex();
|
|
71446
|
+
}
|
|
71432
71447
|
function generateNewListDefinition(numbering, options) {
|
|
71433
71448
|
let { listType } = options;
|
|
71434
|
-
const { numId, level, start, text: text$2, fmt, markerFontFamily } = options;
|
|
71449
|
+
const { numId, level, start, text: text$2, fmt, markerFontFamily, bulletStyle, bulletStyleLevel } = options;
|
|
71435
71450
|
if (typeof listType !== "string")
|
|
71436
71451
|
listType = listType.name;
|
|
71437
71452
|
const definition$1 = listType === "orderedList" ? baseOrderedListDef : baseBulletList;
|
|
@@ -71444,6 +71459,22 @@ function generateNewListDefinition(numbering, options) {
|
|
|
71444
71459
|
"w:abstractNumId": String(newAbstractId)
|
|
71445
71460
|
}
|
|
71446
71461
|
}));
|
|
71462
|
+
refreshAbstractIdentity(newAbstractDef);
|
|
71463
|
+
if (bulletStyle && listType !== "orderedList") {
|
|
71464
|
+
const char = BULLET_STYLE_CHARS[bulletStyle];
|
|
71465
|
+
const targetLevel = String(Math.max(0, Number.isFinite(bulletStyleLevel) ? bulletStyleLevel : 0));
|
|
71466
|
+
if (char) {
|
|
71467
|
+
const lvl = newAbstractDef.elements.find((el) => el.name === "w:lvl" && el.attributes["w:ilvl"] === targetLevel);
|
|
71468
|
+
if (lvl) {
|
|
71469
|
+
const lvlText = lvl.elements.find((el) => el.name === "w:lvlText");
|
|
71470
|
+
if (lvlText)
|
|
71471
|
+
lvlText.attributes["w:val"] = char;
|
|
71472
|
+
const rPr = lvl.elements.find((el) => el.name === "w:rPr");
|
|
71473
|
+
if (rPr)
|
|
71474
|
+
rPr.elements = rPr.elements.filter((el) => el.name !== "w:rFonts");
|
|
71475
|
+
}
|
|
71476
|
+
}
|
|
71477
|
+
}
|
|
71447
71478
|
if (level != null && start != null && text$2 != null && fmt != null) {
|
|
71448
71479
|
if (numbering.definitions[numId]) {
|
|
71449
71480
|
const abstractId = numbering.definitions[numId]?.elements[0]?.attributes["w:val"];
|
|
@@ -71526,13 +71557,14 @@ function changeNumIdSameAbstract(numbering, numId, level, listType) {
|
|
|
71526
71557
|
};
|
|
71527
71558
|
}
|
|
71528
71559
|
const newAbstractId = getNextId(numbering.abstracts);
|
|
71529
|
-
const newAbstractDef = {
|
|
71560
|
+
const newAbstractDef = JSON.parse(JSON.stringify({
|
|
71530
71561
|
...abstract,
|
|
71531
71562
|
attributes: {
|
|
71532
71563
|
...abstract.attributes || {},
|
|
71533
71564
|
"w:abstractNumId": String(newAbstractId)
|
|
71534
71565
|
}
|
|
71535
|
-
};
|
|
71566
|
+
}));
|
|
71567
|
+
refreshAbstractIdentity(newAbstractDef);
|
|
71536
71568
|
numbering.abstracts[newAbstractId] = newAbstractDef;
|
|
71537
71569
|
const newNumDef = buildNumDef(newId, newAbstractId);
|
|
71538
71570
|
numbering.definitions[newId] = newNumDef;
|
|
@@ -71751,6 +71783,13 @@ function mutateNumbering(editor, source, transform2, options) {
|
|
|
71751
71783
|
}
|
|
71752
71784
|
});
|
|
71753
71785
|
}
|
|
71786
|
+
function markerTextToBulletStyle(markerText) {
|
|
71787
|
+
return {
|
|
71788
|
+
"•": "disc",
|
|
71789
|
+
"◦": "circle",
|
|
71790
|
+
"▪": "square"
|
|
71791
|
+
}[markerText] ?? null;
|
|
71792
|
+
}
|
|
71754
71793
|
function normalizeCssValue(value) {
|
|
71755
71794
|
if (!value)
|
|
71756
71795
|
return value;
|
|
@@ -99019,7 +99058,7 @@ var isRegExp = (value) => {
|
|
|
99019
99058
|
updateNumberingProperties(numberingProperties, node2, pos, editor, tr);
|
|
99020
99059
|
});
|
|
99021
99060
|
return true;
|
|
99022
|
-
}, NUMBERING_PART_ID = "word/numbering.xml", NUMBERING_ROOT_ATTRS, numberingPartDescriptor, generateNewListDefinition$1 = ({ numId, listType, level, start, text: text$2, fmt, editor, markerFontFamily }) => {
|
|
99061
|
+
}, BULLET_STYLE_CHARS, NUMBERING_PART_ID = "word/numbering.xml", NUMBERING_ROOT_ATTRS, numberingPartDescriptor, generateNewListDefinition$1 = ({ numId, listType, level, start, text: text$2, fmt, editor, markerFontFamily, bulletStyle, bulletStyleLevel }) => {
|
|
99023
99062
|
let resultDefs;
|
|
99024
99063
|
mutateNumbering(editor, "list-numbering-helpers:generateNewListDefinition", (numbering) => {
|
|
99025
99064
|
const result = generateNewListDefinition(numbering, {
|
|
@@ -99029,7 +99068,9 @@ var isRegExp = (value) => {
|
|
|
99029
99068
|
start,
|
|
99030
99069
|
text: text$2,
|
|
99031
99070
|
fmt,
|
|
99032
|
-
markerFontFamily
|
|
99071
|
+
markerFontFamily,
|
|
99072
|
+
bulletStyle,
|
|
99073
|
+
bulletStyleLevel
|
|
99033
99074
|
});
|
|
99034
99075
|
resultDefs = {
|
|
99035
99076
|
abstractDef: result.abstractDef,
|
|
@@ -104159,7 +104200,7 @@ var isRegExp = (value) => {
|
|
|
104159
104200
|
if (id)
|
|
104160
104201
|
return trackedChanges.filter(({ mark }) => mark.attrs.id === id);
|
|
104161
104202
|
return trackedChanges;
|
|
104162
|
-
}, DERIVED_ID_LENGTH = 24, groupedCache, SDT_NODE_NAMES, SDT_BLOCK_NAME = "structuredContentBlock", 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.29.
|
|
104203
|
+
}, DERIVED_ID_LENGTH = 24, groupedCache, SDT_NODE_NAMES, SDT_BLOCK_NAME = "structuredContentBlock", 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.29.1", collectRunDefaultProperties = (runProps, { allowOverrideTypeface = true, allowOverrideSize = true, themeResolver, state }) => {
|
|
104163
104204
|
if (!runProps?.elements?.length || !state)
|
|
104164
104205
|
return;
|
|
104165
104206
|
const fontsNode = runProps.elements.find((el) => el.name === "w:rFonts");
|
|
@@ -104193,7 +104234,7 @@ var isRegExp = (value) => {
|
|
|
104193
104234
|
state.kern = kernNode.attributes["w:val"];
|
|
104194
104235
|
}
|
|
104195
104236
|
}, SuperConverter;
|
|
104196
|
-
var
|
|
104237
|
+
var init_SuperConverter_BTy5lByv_es = __esm(() => {
|
|
104197
104238
|
init_rolldown_runtime_Bg48TavK_es();
|
|
104198
104239
|
init_jszip_C49i9kUs_es();
|
|
104199
104240
|
init_xml_js_CqGKpaft_es();
|
|
@@ -134561,6 +134602,11 @@ var init_SuperConverter_4akUYfWt_es = __esm(() => {
|
|
|
134561
134602
|
}
|
|
134562
134603
|
]
|
|
134563
134604
|
};
|
|
134605
|
+
BULLET_STYLE_CHARS = {
|
|
134606
|
+
disc: "•",
|
|
134607
|
+
circle: "◦",
|
|
134608
|
+
square: "▪"
|
|
134609
|
+
};
|
|
134564
134610
|
NUMBERING_ROOT_ATTRS = {
|
|
134565
134611
|
"xmlns:w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
|
|
134566
134612
|
"xmlns:w15": "http://schemas.microsoft.com/office/word/2012/wordml",
|
|
@@ -141783,7 +141829,7 @@ var init_SuperConverter_4akUYfWt_es = __esm(() => {
|
|
|
141783
141829
|
};
|
|
141784
141830
|
});
|
|
141785
141831
|
|
|
141786
|
-
// ../../packages/superdoc/dist/chunks/create-headless-toolbar-
|
|
141832
|
+
// ../../packages/superdoc/dist/chunks/create-headless-toolbar-k6nNYL53.es.js
|
|
141787
141833
|
function parseSizeUnit(val = "0") {
|
|
141788
141834
|
const length = val.toString() || "0";
|
|
141789
141835
|
const value = Number.parseFloat(length);
|
|
@@ -144059,8 +144105,15 @@ var CSS_DIMENSION_REGEX, DOM_SIZE_UNITS, Extension = class Extension2 {
|
|
|
144059
144105
|
const paragraphNode = getCurrentParagraphParent(context)?.node ?? null;
|
|
144060
144106
|
const paragraphProperties = getCurrentResolvedParagraphProperties(context);
|
|
144061
144107
|
const activeNumberingType = isList(paragraphNode) || Boolean(paragraphProperties?.numberingProperties && paragraphNode?.attrs?.listRendering) ? paragraphNode?.attrs?.listRendering?.numberingType : null;
|
|
144108
|
+
const isActive2 = numberingType === "bullet" ? activeNumberingType === "bullet" : activeNumberingType != null && activeNumberingType !== "bullet";
|
|
144109
|
+
if (numberingType === "bullet")
|
|
144110
|
+
return {
|
|
144111
|
+
active: isActive2,
|
|
144112
|
+
disabled: false,
|
|
144113
|
+
value: isActive2 ? paragraphNode?.attrs?.listRendering?.markerText ?? null : null
|
|
144114
|
+
};
|
|
144062
144115
|
return {
|
|
144063
|
-
active:
|
|
144116
|
+
active: isActive2,
|
|
144064
144117
|
disabled: false
|
|
144065
144118
|
};
|
|
144066
144119
|
}, createIndentIncreaseExecute = () => ({ context }) => {
|
|
@@ -144202,7 +144255,7 @@ var CSS_DIMENSION_REGEX, DOM_SIZE_UNITS, Extension = class Extension2 {
|
|
|
144202
144255
|
},
|
|
144203
144256
|
"bullet-list": {
|
|
144204
144257
|
id: "bullet-list",
|
|
144205
|
-
directCommandName: "
|
|
144258
|
+
directCommandName: "toggleBulletListStyle",
|
|
144206
144259
|
state: createListStateDeriver("bullet")
|
|
144207
144260
|
},
|
|
144208
144261
|
"numbered-list": {
|
|
@@ -144412,8 +144465,8 @@ var CSS_DIMENSION_REGEX, DOM_SIZE_UNITS, Extension = class Extension2 {
|
|
|
144412
144465
|
}
|
|
144413
144466
|
};
|
|
144414
144467
|
};
|
|
144415
|
-
var
|
|
144416
|
-
|
|
144468
|
+
var init_create_headless_toolbar_k6nNYL53_es = __esm(() => {
|
|
144469
|
+
init_SuperConverter_BTy5lByv_es();
|
|
144417
144470
|
init_constants_DrU4EASo_es();
|
|
144418
144471
|
init_dist_B8HfvhaK_es();
|
|
144419
144472
|
CSS_DIMENSION_REGEX = /[\d-.]+(\w+)$/;
|
|
@@ -145149,7 +145202,7 @@ var init_remark_stringify_6MMJfY0k_es = __esm(() => {
|
|
|
145149
145202
|
eol = /\r?\n|\r/g;
|
|
145150
145203
|
});
|
|
145151
145204
|
|
|
145152
|
-
// ../../packages/superdoc/dist/chunks/detect-container-
|
|
145205
|
+
// ../../packages/superdoc/dist/chunks/detect-container-C1zjKeIM.es.js
|
|
145153
145206
|
function matchesMagic(bytes, magic) {
|
|
145154
145207
|
if (bytes.length < magic.length)
|
|
145155
145208
|
return false;
|
|
@@ -145167,7 +145220,7 @@ function detectContainerType(data) {
|
|
|
145167
145220
|
return "unknown";
|
|
145168
145221
|
}
|
|
145169
145222
|
var ZIP_MAGIC, CFB_MAGIC;
|
|
145170
|
-
var
|
|
145223
|
+
var init_detect_container_C1zjKeIM_es = __esm(() => {
|
|
145171
145224
|
ZIP_MAGIC = [
|
|
145172
145225
|
80,
|
|
145173
145226
|
75,
|
|
@@ -145186,18 +145239,18 @@ var init_detect_container_D4DBxokY_es = __esm(() => {
|
|
|
145186
145239
|
];
|
|
145187
145240
|
});
|
|
145188
145241
|
|
|
145189
|
-
// ../../packages/superdoc/dist/chunks/detect-container-
|
|
145190
|
-
var
|
|
145191
|
-
__export(
|
|
145242
|
+
// ../../packages/superdoc/dist/chunks/detect-container-Dpg_mpnM.es.js
|
|
145243
|
+
var exports_detect_container_Dpg_mpnM_es = {};
|
|
145244
|
+
__export(exports_detect_container_Dpg_mpnM_es, {
|
|
145192
145245
|
detectContainerType: () => detectContainerType
|
|
145193
145246
|
});
|
|
145194
|
-
var
|
|
145195
|
-
|
|
145247
|
+
var init_detect_container_Dpg_mpnM_es = __esm(() => {
|
|
145248
|
+
init_detect_container_C1zjKeIM_es();
|
|
145196
145249
|
});
|
|
145197
145250
|
|
|
145198
|
-
// ../../packages/superdoc/dist/chunks/errors-
|
|
145251
|
+
// ../../packages/superdoc/dist/chunks/errors-C_DoKMoN.es.js
|
|
145199
145252
|
var EditorError, InvalidStateError, NoSourcePathError, FileSystemNotAvailableError, DocumentLoadError, DocxEncryptionErrorCode, DocxEncryptionError;
|
|
145200
|
-
var
|
|
145253
|
+
var init_errors_C_DoKMoN_es = __esm(() => {
|
|
145201
145254
|
EditorError = class extends Error {
|
|
145202
145255
|
constructor(message) {
|
|
145203
145256
|
super(message);
|
|
@@ -145245,9 +145298,9 @@ var init_errors_C4DO_BsD_es = __esm(() => {
|
|
|
145245
145298
|
};
|
|
145246
145299
|
});
|
|
145247
145300
|
|
|
145248
|
-
// ../../packages/superdoc/dist/chunks/decrypt-docx-
|
|
145249
|
-
var
|
|
145250
|
-
__export(
|
|
145301
|
+
// ../../packages/superdoc/dist/chunks/decrypt-docx-4kQ488M9.es.js
|
|
145302
|
+
var exports_decrypt_docx_4kQ488M9_es = {};
|
|
145303
|
+
__export(exports_decrypt_docx_4kQ488M9_es, {
|
|
145251
145304
|
decryptDocxIfNeeded: () => decryptDocxIfNeeded
|
|
145252
145305
|
});
|
|
145253
145306
|
function concatUint8Arrays(chunks) {
|
|
@@ -145788,10 +145841,10 @@ async function decryptDocxIfNeeded(data, options) {
|
|
|
145788
145841
|
};
|
|
145789
145842
|
}
|
|
145790
145843
|
var CFB_SIGNATURE, CFB_END_OF_CHAIN = 4294967294, CFB_OBJECT_TYPE, utf16LeDecoder, AGILE_VERSION = 4, AGILE_RESERVED = 4, STANDARD_VERSION_3 = 3, STANDARD_VERSION_4 = 4, STANDARD_RESERVED = 3, MIN_HEADER_SIZE = 8, BLOCK_KEY_VERIFIER_INPUT, BLOCK_KEY_VERIFIER_VALUE, BLOCK_KEY_ENCRYPTED_KEY, BLOCK_KEY_HMAC_KEY, BLOCK_KEY_HMAC_VALUE, SEGMENT_SIZE = 4096, PACKAGE_HEADER_SIZE = 8;
|
|
145791
|
-
var
|
|
145844
|
+
var init_decrypt_docx_4kQ488M9_es = __esm(() => {
|
|
145792
145845
|
init_dist_B8HfvhaK_es();
|
|
145793
|
-
|
|
145794
|
-
|
|
145846
|
+
init_errors_C_DoKMoN_es();
|
|
145847
|
+
init_detect_container_C1zjKeIM_es();
|
|
145795
145848
|
CFB_SIGNATURE = new Uint8Array([
|
|
145796
145849
|
208,
|
|
145797
145850
|
207,
|
|
@@ -145860,7 +145913,7 @@ var init_decrypt_docx_D8IVL1og_es = __esm(() => {
|
|
|
145860
145913
|
]);
|
|
145861
145914
|
});
|
|
145862
145915
|
|
|
145863
|
-
// ../../packages/superdoc/dist/chunks/DocxZipper-
|
|
145916
|
+
// ../../packages/superdoc/dist/chunks/DocxZipper-CUX64E5K.es.js
|
|
145864
145917
|
function sniffEncoding(u8) {
|
|
145865
145918
|
if (u8.length >= 2) {
|
|
145866
145919
|
const b0 = u8[0], b1 = u8[1];
|
|
@@ -146167,11 +146220,11 @@ var DOCX = "application/vnd.openxmlformats-officedocument.wordprocessingml.docum
|
|
|
146167
146220
|
return new Uint8Array(0);
|
|
146168
146221
|
}
|
|
146169
146222
|
async getDocxData(file2, isNode = false, options = {}) {
|
|
146170
|
-
const { detectContainerType: detectContainerType2 } = await Promise.resolve().then(() => (
|
|
146223
|
+
const { detectContainerType: detectContainerType2 } = await Promise.resolve().then(() => (init_detect_container_Dpg_mpnM_es(), exports_detect_container_Dpg_mpnM_es));
|
|
146171
146224
|
const containerType = detectContainerType2(await this.#peekBytes(file2, 8));
|
|
146172
146225
|
let fileData = file2;
|
|
146173
146226
|
if (containerType === "cfb") {
|
|
146174
|
-
const { decryptDocxIfNeeded: decryptDocxIfNeeded2 } = await Promise.resolve().then(() => (
|
|
146227
|
+
const { decryptDocxIfNeeded: decryptDocxIfNeeded2 } = await Promise.resolve().then(() => (init_decrypt_docx_4kQ488M9_es(), exports_decrypt_docx_4kQ488M9_es));
|
|
146175
146228
|
const result = await decryptDocxIfNeeded2(file2 instanceof Uint8Array ? file2 : file2 instanceof ArrayBuffer ? new Uint8Array(file2) : new Uint8Array(await file2.arrayBuffer()), { password: options.password });
|
|
146176
146229
|
fileData = result.data;
|
|
146177
146230
|
this.decryptedFileData = result.data;
|
|
@@ -146511,7 +146564,7 @@ var DOCX = "application/vnd.openxmlformats-officedocument.wordprocessingml.docum
|
|
|
146511
146564
|
return `image/${MIME_TYPE_FOR_EXT[detectedType] || detectedType}`;
|
|
146512
146565
|
}
|
|
146513
146566
|
}, DocxZipper_default;
|
|
146514
|
-
var
|
|
146567
|
+
var init_DocxZipper_CUX64E5K_es = __esm(() => {
|
|
146515
146568
|
init_rolldown_runtime_Bg48TavK_es();
|
|
146516
146569
|
init_jszip_C49i9kUs_es();
|
|
146517
146570
|
init_xml_js_CqGKpaft_es();
|
|
@@ -146583,9 +146636,9 @@ var __plugin_vue_export_helper_default = (sfc, props) => {
|
|
|
146583
146636
|
};
|
|
146584
146637
|
var init__plugin_vue_export_helper_HmhZBO0u_es = () => {};
|
|
146585
146638
|
|
|
146586
|
-
// ../../packages/superdoc/dist/chunks/eventemitter3-
|
|
146639
|
+
// ../../packages/superdoc/dist/chunks/eventemitter3-BJrNoN9D.es.js
|
|
146587
146640
|
var import_eventemitter3, eventemitter3_default;
|
|
146588
|
-
var
|
|
146641
|
+
var init_eventemitter3_BJrNoN9D_es = __esm(() => {
|
|
146589
146642
|
init_rolldown_runtime_Bg48TavK_es();
|
|
146590
146643
|
import_eventemitter3 = /* @__PURE__ */ __toESM2((/* @__PURE__ */ __commonJSMin((exports, module) => {
|
|
146591
146644
|
var has = Object.prototype.hasOwnProperty, prefix = "~";
|
|
@@ -146755,8 +146808,8 @@ var init_eventemitter3_FJgkFNGb_es = __esm(() => {
|
|
|
146755
146808
|
eventemitter3_default = import_eventemitter3.default;
|
|
146756
146809
|
});
|
|
146757
146810
|
|
|
146758
|
-
// ../../packages/superdoc/dist/chunks/blank-docx-
|
|
146759
|
-
var
|
|
146811
|
+
// ../../packages/superdoc/dist/chunks/blank-docx-CDDHd6CH.es.js
|
|
146812
|
+
var init_blank_docx_CDDHd6CH_es = () => {};
|
|
146760
146813
|
|
|
146761
146814
|
// ../../node_modules/.pnpm/lib0@0.2.117/node_modules/lib0/map.js
|
|
146762
146815
|
var create = () => new Map, copy2 = (m) => {
|
|
@@ -187910,9 +187963,9 @@ var init_unified_vFnLRfAM_es = __esm(() => {
|
|
|
187910
187963
|
init_unified_Dsuw2be5_es();
|
|
187911
187964
|
});
|
|
187912
187965
|
|
|
187913
|
-
// ../../packages/superdoc/dist/chunks/rehype-parse-
|
|
187914
|
-
var
|
|
187915
|
-
__export(
|
|
187966
|
+
// ../../packages/superdoc/dist/chunks/rehype-parse-DyKLXYD2.es.js
|
|
187967
|
+
var exports_rehype_parse_DyKLXYD2_es = {};
|
|
187968
|
+
__export(exports_rehype_parse_DyKLXYD2_es, {
|
|
187916
187969
|
default: () => rehypeParse
|
|
187917
187970
|
});
|
|
187918
187971
|
function merge2(definitions, space) {
|
|
@@ -193861,7 +193914,7 @@ var Schema2 = class {
|
|
|
193861
193914
|
}
|
|
193862
193915
|
}
|
|
193863
193916
|
}, TABLE_VOID_ELEMENTS, errors4, base2 = "https://html.spec.whatwg.org/multipage/parsing.html#parse-error-", dashToCamelRe, formatCRe, formatXRe, fatalities, emptyOptions3;
|
|
193864
|
-
var
|
|
193917
|
+
var init_rehype_parse_DyKLXYD2_es = __esm(() => {
|
|
193865
193918
|
init_rolldown_runtime_Bg48TavK_es();
|
|
193866
193919
|
init_default_BqgWzMfR_es();
|
|
193867
193920
|
init_lib_CYqLdG4z_es();
|
|
@@ -196606,9 +196659,9 @@ var init_rehype_parse_Daj0cUby_es = __esm(() => {
|
|
|
196606
196659
|
emptyOptions3 = {};
|
|
196607
196660
|
});
|
|
196608
196661
|
|
|
196609
|
-
// ../../packages/superdoc/dist/chunks/rehype-remark-
|
|
196610
|
-
var
|
|
196611
|
-
__export(
|
|
196662
|
+
// ../../packages/superdoc/dist/chunks/rehype-remark-DYihe9nj.es.js
|
|
196663
|
+
var exports_rehype_remark_DYihe9nj_es = {};
|
|
196664
|
+
__export(exports_rehype_remark_DYihe9nj_es, {
|
|
196612
196665
|
default: () => rehypeRemark
|
|
196613
196666
|
});
|
|
196614
196667
|
function anyFactory2(tests) {
|
|
@@ -198228,7 +198281,7 @@ var env, deserializer = ($2, _2) => {
|
|
|
198228
198281
|
if (is(parent.children[index2], index2, parent))
|
|
198229
198282
|
return parent.children[index2];
|
|
198230
198283
|
}, searchLineFeeds, searchTabOrSpaces, br$1, cell, p$1, row, notRendered, blockOrCaption, prefix = "language-", defaultChecked = "[x]", defaultUnchecked = "[ ]", own$12, list$1, basic, meta3, defaultQuotes, nodeHandlers, handlers2, own6, emptyOptions4, defaults;
|
|
198231
|
-
var
|
|
198284
|
+
var init_rehype_remark_DYihe9nj_es = __esm(() => {
|
|
198232
198285
|
init_lib_DEff_P2k_es();
|
|
198233
198286
|
env = typeof self === "object" ? self : globalThis;
|
|
198234
198287
|
({ toString: toString$1 } = {});
|
|
@@ -198604,12 +198657,12 @@ var init_rehype_remark_BHDNk9YW_es = __esm(() => {
|
|
|
198604
198657
|
defaults = { document: true };
|
|
198605
198658
|
});
|
|
198606
198659
|
|
|
198607
|
-
// ../../packages/superdoc/dist/chunks/remark-stringify-
|
|
198608
|
-
var
|
|
198609
|
-
__export(
|
|
198660
|
+
// ../../packages/superdoc/dist/chunks/remark-stringify-Cb9EtkyK.es.js
|
|
198661
|
+
var exports_remark_stringify_Cb9EtkyK_es = {};
|
|
198662
|
+
__export(exports_remark_stringify_Cb9EtkyK_es, {
|
|
198610
198663
|
default: () => remarkStringify
|
|
198611
198664
|
});
|
|
198612
|
-
var
|
|
198665
|
+
var init_remark_stringify_Cb9EtkyK_es = __esm(() => {
|
|
198613
198666
|
init_remark_stringify_6MMJfY0k_es();
|
|
198614
198667
|
});
|
|
198615
198668
|
|
|
@@ -198622,7 +198675,7 @@ var init_remark_gfm_eZN6yzWQ_es = __esm(() => {
|
|
|
198622
198675
|
init_remark_gfm_BhnWr3yf_es();
|
|
198623
198676
|
});
|
|
198624
198677
|
|
|
198625
|
-
// ../../packages/superdoc/dist/chunks/src-
|
|
198678
|
+
// ../../packages/superdoc/dist/chunks/src-CCV76OsP.es.js
|
|
198626
198679
|
function deleteProps(obj, propOrProps) {
|
|
198627
198680
|
const props = typeof propOrProps === "string" ? [propOrProps] : propOrProps;
|
|
198628
198681
|
const removeNested = (target, pathParts, index2 = 0) => {
|
|
@@ -199265,7 +199318,7 @@ function prosemirrorToYXmlFragment(doc$12, xmlFragment) {
|
|
|
199265
199318
|
}
|
|
199266
199319
|
function getSuperdocVersion() {
|
|
199267
199320
|
try {
|
|
199268
|
-
return "1.29.
|
|
199321
|
+
return "1.29.1";
|
|
199269
199322
|
} catch {
|
|
199270
199323
|
return "unknown";
|
|
199271
199324
|
}
|
|
@@ -201456,12 +201509,18 @@ function getParagraphListKind(node2, editor) {
|
|
|
201456
201509
|
return null;
|
|
201457
201510
|
return numFmtIsBullet(fmt) ? "bullet" : "ordered";
|
|
201458
201511
|
}
|
|
201459
|
-
function paragraphMatchesToggleListType(node2, editor, listType) {
|
|
201512
|
+
function paragraphMatchesToggleListType(node2, editor, listType, bulletStyle) {
|
|
201460
201513
|
const kind = getParagraphListKind(node2, editor);
|
|
201461
201514
|
if (!kind)
|
|
201462
201515
|
return false;
|
|
201463
|
-
if (listType === "bulletList")
|
|
201464
|
-
|
|
201516
|
+
if (listType === "bulletList") {
|
|
201517
|
+
if (kind !== "bullet")
|
|
201518
|
+
return false;
|
|
201519
|
+
if (!bulletStyle)
|
|
201520
|
+
return true;
|
|
201521
|
+
const markerText = node2.attrs.listRendering?.markerText;
|
|
201522
|
+
return markerTextToBulletStyle(markerText) === bulletStyle;
|
|
201523
|
+
}
|
|
201465
201524
|
if (listType === "orderedList")
|
|
201466
201525
|
return kind === "ordered";
|
|
201467
201526
|
return false;
|
|
@@ -262837,10 +262896,10 @@ var Node$13 = class Node$14 {
|
|
|
262837
262896
|
} catch {
|
|
262838
262897
|
return false;
|
|
262839
262898
|
}
|
|
262840
|
-
}, toggleList = (listType) => ({ editor, state, tr, dispatch }) => {
|
|
262899
|
+
}, toggleList = (listType, bulletStyle) => ({ editor, state, tr, dispatch }) => {
|
|
262841
262900
|
if (listType !== "orderedList" && listType !== "bulletList")
|
|
262842
262901
|
return false;
|
|
262843
|
-
const predicate = (n) => paragraphMatchesToggleListType(n, editor, listType);
|
|
262902
|
+
const predicate = (n) => paragraphMatchesToggleListType(n, editor, listType, bulletStyle);
|
|
262844
262903
|
const { selection } = state;
|
|
262845
262904
|
const { from: from$1, to } = selection;
|
|
262846
262905
|
let firstListNode = null;
|
|
@@ -262862,7 +262921,8 @@ var Node$13 = class Node$14 {
|
|
|
262862
262921
|
firstListNode = node2;
|
|
262863
262922
|
else if (!predicate(node2))
|
|
262864
262923
|
hasNonListParagraphs = true;
|
|
262865
|
-
|
|
262924
|
+
const selectionAlreadyHasListNumbering = paragraphsInSelection.some(({ node: node2 }) => getResolvedParagraphProperties(node2)?.numberingProperties != null);
|
|
262925
|
+
if (!firstListNode && !selectionAlreadyHasListNumbering && from$1 > 0) {
|
|
262866
262926
|
const beforeNode = getPrecedingParagraphForListReuse(state.doc, from$1, paragraphsInSelection);
|
|
262867
262927
|
if (beforeNode && predicate(beforeNode))
|
|
262868
262928
|
firstListNode = beforeNode;
|
|
@@ -262885,11 +262945,20 @@ var Node$13 = class Node$14 {
|
|
|
262885
262945
|
if (!dispatch)
|
|
262886
262946
|
return true;
|
|
262887
262947
|
if (mode === "create") {
|
|
262948
|
+
let bulletStyleLevel = 0;
|
|
262949
|
+
if (bulletStyle) {
|
|
262950
|
+
const firstExistingListPara = paragraphsInSelection.find(({ node: node2 }) => getResolvedParagraphProperties(node2)?.numberingProperties?.ilvl != null);
|
|
262951
|
+
const existingIlvl = firstExistingListPara ? getResolvedParagraphProperties(firstExistingListPara.node)?.numberingProperties?.ilvl : null;
|
|
262952
|
+
if (existingIlvl != null)
|
|
262953
|
+
bulletStyleLevel = existingIlvl;
|
|
262954
|
+
}
|
|
262888
262955
|
const numId = ListHelpers.getNewListId(editor);
|
|
262889
262956
|
ListHelpers.generateNewListDefinition({
|
|
262890
262957
|
numId: Number(numId),
|
|
262891
262958
|
listType,
|
|
262892
|
-
editor
|
|
262959
|
+
editor,
|
|
262960
|
+
bulletStyle,
|
|
262961
|
+
bulletStyleLevel
|
|
262893
262962
|
});
|
|
262894
262963
|
sharedNumberingProperties = {
|
|
262895
262964
|
numId: Number(numId),
|
|
@@ -262903,7 +262972,11 @@ var Node$13 = class Node$14 {
|
|
|
262903
262972
|
}
|
|
262904
262973
|
if (mode === "reuse" && predicate(node2))
|
|
262905
262974
|
continue;
|
|
262906
|
-
|
|
262975
|
+
const existingIlvl = getResolvedParagraphProperties(node2)?.numberingProperties?.ilvl;
|
|
262976
|
+
updateNumberingProperties(mode === "create" && existingIlvl != null && existingIlvl !== sharedNumberingProperties.ilvl ? {
|
|
262977
|
+
...sharedNumberingProperties,
|
|
262978
|
+
ilvl: existingIlvl
|
|
262979
|
+
} : sharedNumberingProperties, node2, pos, editor, tr);
|
|
262907
262980
|
}
|
|
262908
262981
|
if (paragraphsInSelection.length > 0) {
|
|
262909
262982
|
const firstPara = paragraphsInSelection[0];
|
|
@@ -268219,7 +268292,7 @@ var Node$13 = class Node$14 {
|
|
|
268219
268292
|
if (!target || !target.classList)
|
|
268220
268293
|
return;
|
|
268221
268294
|
target.classList.add(STYLE_ISOLATION_CLASS);
|
|
268222
|
-
}, _hoisted_1$
|
|
268295
|
+
}, _hoisted_1$23, _hoisted_2$17, _hoisted_3$13, _hoisted_4$9, _hoisted_5$6, Mentions_default, popoverPluginKey, PopoverPlugin, Popover = class {
|
|
268223
268296
|
constructor(view, editor) {
|
|
268224
268297
|
this.editor = editor;
|
|
268225
268298
|
this.view = view;
|
|
@@ -269665,6 +269738,8 @@ var Node$13 = class Node$14 {
|
|
|
269665
269738
|
const parentItem = exports_vue.ref(null);
|
|
269666
269739
|
const iconColor = exports_vue.ref(options.iconColor);
|
|
269667
269740
|
const hasCaret = exports_vue.ref(options.hasCaret);
|
|
269741
|
+
const splitButton = exports_vue.ref(Boolean(options.splitButton));
|
|
269742
|
+
const splitButtonCommand = options.splitButtonCommand;
|
|
269668
269743
|
const restoreEditorFocus = Boolean(options.restoreEditorFocus);
|
|
269669
269744
|
const dropdownStyles = exports_vue.ref(options.dropdownStyles);
|
|
269670
269745
|
const tooltip = exports_vue.ref(options.tooltip);
|
|
@@ -269734,6 +269809,8 @@ var Node$13 = class Node$14 {
|
|
|
269734
269809
|
parentItem,
|
|
269735
269810
|
iconColor,
|
|
269736
269811
|
hasCaret,
|
|
269812
|
+
splitButton,
|
|
269813
|
+
splitButtonCommand,
|
|
269737
269814
|
dropdownStyles,
|
|
269738
269815
|
tooltipVisible,
|
|
269739
269816
|
tooltipTimeout,
|
|
@@ -269781,10 +269858,12 @@ var Node$13 = class Node$14 {
|
|
|
269781
269858
|
</linearGradient>
|
|
269782
269859
|
</defs>
|
|
269783
269860
|
<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"/>
|
|
269784
|
-
</svg>`, _hoisted_1$21, _hoisted_2$16, _hoisted_3$12, _hoisted_4$8, _hoisted_5$5, 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_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>', 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>
|
|
269861
|
+
</svg>`, _hoisted_1$22, _hoisted_2$16, _hoisted_3$12, _hoisted_4$8, _hoisted_5$5, 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>
|
|
269862
|
+
`, 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>
|
|
269863
|
+
`, 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>', 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>
|
|
269785
269864
|
`, 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>
|
|
269786
269865
|
`, 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>
|
|
269787
|
-
`, 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$
|
|
269866
|
+
`, 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$21, AlignmentButtons_default, _hoisted_1$20, BulletStyleButtons_default, _hoisted_1$19, _hoisted_2$15, _hoisted_3$11, _hoisted_4$7, _hoisted_5$4, _hoisted_6$2, DocumentMode_default, _hoisted_1$18, _hoisted_2$14, LinkedStyle_default, _hoisted_1$17, _hoisted_2$13, _hoisted_3$10, _hoisted_4$6, _hoisted_5$3, _hoisted_6$1, _hoisted_7$1, _hoisted_8$1, _hoisted_9$1, _hoisted_10$1, _hoisted_11$1, _hoisted_12$1, _hoisted_13, _hoisted_14, LinkInput_default, _hoisted_1$16, _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>
|
|
269788
269867
|
`, _hoisted_1$15, _hoisted_2$11, _hoisted_3$8, IconGrid_default, closeDropdown$1 = (dropdown) => {
|
|
269789
269868
|
dropdown.expand.value = false;
|
|
269790
269869
|
}, makeColorOption = (color2, label = null) => {
|
|
@@ -270328,14 +270407,38 @@ var Node$13 = class Node$14 {
|
|
|
270328
270407
|
alignment$2.icon.value = icon;
|
|
270329
270408
|
};
|
|
270330
270409
|
const bulletedList = useToolbarItem({
|
|
270331
|
-
type: "
|
|
270410
|
+
type: "dropdown",
|
|
270332
270411
|
name: "list",
|
|
270333
|
-
command: "
|
|
270412
|
+
command: "toggleBulletListStyle",
|
|
270413
|
+
splitButton: true,
|
|
270414
|
+
splitButtonCommand: "toggleBulletList",
|
|
270334
270415
|
icon: toolbarIcons$1.bulletList,
|
|
270335
|
-
|
|
270416
|
+
hasCaret: true,
|
|
270336
270417
|
tooltip: toolbarTexts$1.bulletList,
|
|
270337
270418
|
restoreEditorFocus: true,
|
|
270338
|
-
|
|
270419
|
+
suppressActiveHighlight: true,
|
|
270420
|
+
attributes: { ariaLabel: "Bullet list" },
|
|
270421
|
+
options: [{
|
|
270422
|
+
type: "render",
|
|
270423
|
+
key: "bullet-style-buttons",
|
|
270424
|
+
render: () => {
|
|
270425
|
+
const handleSelect = (style2) => {
|
|
270426
|
+
closeDropdown(bulletedList);
|
|
270427
|
+
const item = {
|
|
270428
|
+
...bulletedList,
|
|
270429
|
+
command: "toggleBulletListStyle"
|
|
270430
|
+
};
|
|
270431
|
+
superToolbar.emitCommand({
|
|
270432
|
+
item,
|
|
270433
|
+
argument: style2
|
|
270434
|
+
});
|
|
270435
|
+
};
|
|
270436
|
+
return exports_vue.h(BulletStyleButtons_default, {
|
|
270437
|
+
selectedStyle: bulletedList.selectedValue.value,
|
|
270438
|
+
onSelect: handleSelect
|
|
270439
|
+
});
|
|
270440
|
+
}
|
|
270441
|
+
}]
|
|
270339
270442
|
});
|
|
270340
270443
|
const numberedList = useToolbarItem({
|
|
270341
270444
|
type: "button",
|
|
@@ -270806,7 +270909,7 @@ var Node$13 = class Node$14 {
|
|
|
270806
270909
|
defaultItems: visibleItems,
|
|
270807
270910
|
overflowItems: overflowItems.filter((item) => item.type !== "separator")
|
|
270808
270911
|
};
|
|
270809
|
-
}, _hoisted_1$11, _hoisted_2$7, ToolbarButtonIcon_default, _hoisted_1$10, _hoisted_2$6, _hoisted_3$5, _hoisted_4$4, _hoisted_5$1, _hoisted_6, _hoisted_7, _hoisted_8, ToolbarButton_default, _hoisted_1$9, ToolbarSeparator_default, _hoisted_1$8, _hoisted_2$5, _hoisted_3$4, OverflowMenu_default, _hoisted_1$7, _hoisted_2$4, _hoisted_3$3, _hoisted_4$3, ToolbarDropdown_default, SdTooltip_default, _hoisted_1$6, _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 = {}) => {
|
|
270912
|
+
}, _hoisted_1$11, _hoisted_2$7, ToolbarButtonIcon_default, _hoisted_1$10, _hoisted_2$6, _hoisted_3$5, _hoisted_4$4, _hoisted_5$1, _hoisted_6, _hoisted_7, _hoisted_8, _hoisted_9, _hoisted_10, _hoisted_11, _hoisted_12, ToolbarButton_default, _hoisted_1$9, ToolbarSeparator_default, _hoisted_1$8, _hoisted_2$5, _hoisted_3$4, OverflowMenu_default, _hoisted_1$7, _hoisted_2$4, _hoisted_3$3, _hoisted_4$3, ToolbarDropdown_default, SdTooltip_default, _hoisted_1$6, _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 = {}) => {
|
|
270810
270913
|
const fontFamilyProps = paragraphProps?.runProperties?.fontFamily;
|
|
270811
270914
|
if (!fontFamilyProps)
|
|
270812
270915
|
return null;
|
|
@@ -271626,7 +271729,7 @@ var Node$13 = class Node$14 {
|
|
|
271626
271729
|
domAvailabilityCache = false;
|
|
271627
271730
|
return false;
|
|
271628
271731
|
}
|
|
271629
|
-
}, summaryVersion = "1.29.
|
|
271732
|
+
}, summaryVersion = "1.29.1", nodeKeys, markKeys, transformListsInCopiedContent = (html3) => {
|
|
271630
271733
|
const container = document.createElement("div");
|
|
271631
271734
|
container.innerHTML = html3;
|
|
271632
271735
|
const result = [];
|
|
@@ -272800,7 +272903,7 @@ var Node$13 = class Node$14 {
|
|
|
272800
272903
|
return () => {};
|
|
272801
272904
|
const handle3 = setInterval(callback, intervalMs);
|
|
272802
272905
|
return () => clearInterval(handle3);
|
|
272803
|
-
}, 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, DEFAULT_LEVEL = 1, SWITCH_PATTERN, TOC_BOOKMARK_PREFIX = "_Toc", DEFAULT_RIGHT_TAB_POS = 9350, TAB_LEADER_MAP, NO_ENTRIES_PLACEHOLDER, 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, SETTINGS_PART, SPECIAL_NOTE_TYPES, 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.29.
|
|
272906
|
+
}, 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, DEFAULT_LEVEL = 1, SWITCH_PATTERN, TOC_BOOKMARK_PREFIX = "_Toc", DEFAULT_RIGHT_TAB_POS = 9350, TAB_LEADER_MAP, NO_ENTRIES_PLACEHOLDER, 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, SETTINGS_PART, SPECIAL_NOTE_TYPES, 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.29.1", PIXELS_PER_INCH2 = 96, MAX_HEIGHT_BUFFER_PX = 50, MAX_WIDTH_BUFFER_PX = 20, cloneExtensionInstance = (extension2) => {
|
|
272804
272907
|
const extensionLike = extension2;
|
|
272805
272908
|
const config3 = extensionLike?.config;
|
|
272806
272909
|
const ExtensionCtor = extensionLike?.constructor;
|
|
@@ -287930,22 +288033,22 @@ menclose::after {
|
|
|
287930
288033
|
return;
|
|
287931
288034
|
console.log(...args$1);
|
|
287932
288035
|
}, 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;
|
|
287933
|
-
var
|
|
288036
|
+
var init_src_CCV76OsP_es = __esm(() => {
|
|
287934
288037
|
init_rolldown_runtime_Bg48TavK_es();
|
|
287935
|
-
|
|
288038
|
+
init_SuperConverter_BTy5lByv_es();
|
|
287936
288039
|
init_jszip_C49i9kUs_es();
|
|
287937
288040
|
init_uuid_qzgm05fK_es();
|
|
287938
|
-
|
|
288041
|
+
init_create_headless_toolbar_k6nNYL53_es();
|
|
287939
288042
|
init_constants_DrU4EASo_es();
|
|
287940
288043
|
init_dist_B8HfvhaK_es();
|
|
287941
288044
|
init_unified_Dsuw2be5_es();
|
|
287942
288045
|
init_remark_gfm_BhnWr3yf_es();
|
|
287943
288046
|
init_remark_stringify_6MMJfY0k_es();
|
|
287944
|
-
|
|
288047
|
+
init_DocxZipper_CUX64E5K_es();
|
|
287945
288048
|
init__plugin_vue_export_helper_HmhZBO0u_es();
|
|
287946
|
-
|
|
287947
|
-
|
|
287948
|
-
|
|
288049
|
+
init_eventemitter3_BJrNoN9D_es();
|
|
288050
|
+
init_errors_C_DoKMoN_es();
|
|
288051
|
+
init_blank_docx_CDDHd6CH_es();
|
|
287949
288052
|
init_yjs();
|
|
287950
288053
|
init_yjs();
|
|
287951
288054
|
init_vue();
|
|
@@ -290938,6 +291041,9 @@ ${err.toString()}`);
|
|
|
290938
291041
|
toggleBulletList: () => (params$1) => {
|
|
290939
291042
|
return toggleList("bulletList")(params$1);
|
|
290940
291043
|
},
|
|
291044
|
+
toggleBulletListStyle: (style2) => (params$1) => {
|
|
291045
|
+
return toggleList("bulletList", style2)(params$1);
|
|
291046
|
+
},
|
|
290941
291047
|
restartNumbering: () => restartNumbering
|
|
290942
291048
|
};
|
|
290943
291049
|
},
|
|
@@ -305171,7 +305277,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
305171
305277
|
} });
|
|
305172
305278
|
tippy.setDefaultProps({ render });
|
|
305173
305279
|
tippy_esm_default = tippy;
|
|
305174
|
-
_hoisted_1$
|
|
305280
|
+
_hoisted_1$23 = ["onClick", "onMouseenter"];
|
|
305175
305281
|
_hoisted_2$17 = { key: 0 };
|
|
305176
305282
|
_hoisted_3$13 = { key: 0 };
|
|
305177
305283
|
_hoisted_4$9 = { key: 1 };
|
|
@@ -305241,7 +305347,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
305241
305347
|
onMouseleave: _cache[0] || (_cache[0] = ($event) => activeUserIndex.value = null),
|
|
305242
305348
|
key: user.email,
|
|
305243
305349
|
class: exports_vue.normalizeClass(["user-row", { selected: activeUserIndex.value === index2 }])
|
|
305244
|
-
}, [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$6, [exports_vue.createElementVNode("span", null, exports_vue.toDisplayString(user.email), 1)]))], 42, _hoisted_1$
|
|
305350
|
+
}, [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$6, [exports_vue.createElementVNode("span", null, exports_vue.toDisplayString(user.email), 1)]))], 42, _hoisted_1$23);
|
|
305245
305351
|
}), 128))], 544);
|
|
305246
305352
|
};
|
|
305247
305353
|
}
|
|
@@ -306321,7 +306427,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
306321
306427
|
})
|
|
306322
306428
|
}
|
|
306323
306429
|
] };
|
|
306324
|
-
_hoisted_1$
|
|
306430
|
+
_hoisted_1$22 = { class: "ai-user-input-field" };
|
|
306325
306431
|
_hoisted_2$16 = ["innerHTML"];
|
|
306326
306432
|
_hoisted_3$12 = ["placeholder"];
|
|
306327
306433
|
_hoisted_4$8 = { class: "ai-loader" };
|
|
@@ -306552,7 +306658,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
306552
306658
|
ref_key: "aiWriterRef",
|
|
306553
306659
|
ref: aiWriterRef,
|
|
306554
306660
|
onMousedown: _cache[1] || (_cache[1] = exports_vue.withModifiers(() => {}, ["stop"]))
|
|
306555
|
-
}, [exports_vue.createElementVNode("div", _hoisted_1$
|
|
306661
|
+
}, [exports_vue.createElementVNode("div", _hoisted_1$22, [exports_vue.createElementVNode("span", {
|
|
306556
306662
|
class: "ai-textarea-icon",
|
|
306557
306663
|
innerHTML: exports_vue.unref(edit_regular_default)
|
|
306558
306664
|
}, null, 8, _hoisted_2$16), exports_vue.withDirectives(exports_vue.createElementVNode("textarea", {
|
|
@@ -306588,6 +306694,9 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
306588
306694
|
alignCenter: align_center_solid_default,
|
|
306589
306695
|
alignJustify: align_justify_solid_default,
|
|
306590
306696
|
bulletList: list_solid_default,
|
|
306697
|
+
bulletListDisc: list_solid_default,
|
|
306698
|
+
bulletListCircle: list_circle_solid_default,
|
|
306699
|
+
bulletListSquare: list_square_solid_default,
|
|
306591
306700
|
numberedList: list_ol_solid_default,
|
|
306592
306701
|
indentLeft: outdent_solid_default,
|
|
306593
306702
|
indentRight: indent_solid_default,
|
|
@@ -306635,7 +306744,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
306635
306744
|
paste: paste_solid_default,
|
|
306636
306745
|
strikethrough: '<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="M161.3 144c3.2-17.2 14-30.1 33.7-38.6c21.1-9 51.8-12.3 88.6-6.5c11.9 1.9 48.8 9.1 60.1 12c17.1 4.5 34.6-5.6 39.2-22.7s-5.6-34.6-22.7-39.2c-14.3-3.8-53.6-11.4-66.6-13.4c-44.7-7-88.3-4.2-123.7 10.9c-36.5 15.6-64.4 44.8-71.8 87.3c-.1 .6-.2 1.1-.2 1.7c-2.8 23.9 .5 45.6 10.1 64.6c4.5 9 10.2 16.9 16.7 23.9L32 224c-17.7 0-32 14.3-32 32s14.3 32 32 32l448 0c17.7 0 32-14.3 32-32s-14.3-32-32-32l-209.9 0-.4-.1-1.1-.3c-36-10.8-65.2-19.6-85.2-33.1c-9.3-6.3-15-12.6-18.2-19.1c-3.1-6.1-5.2-14.6-3.8-27.4zM348.9 337.2c2.7 6.5 4.4 15.8 1.9 30.1c-3 17.6-13.8 30.8-33.9 39.4c-21.1 9-51.7 12.3-88.5 6.5c-18-2.9-49.1-13.5-74.4-22.1c-5.6-1.9-11-3.7-15.9-5.4c-16.8-5.6-34.9 3.5-40.5 20.3s3.5 34.9 20.3 40.5c3.6 1.2 7.9 2.7 12.7 4.3c0 0 0 0 0 0s0 0 0 0c24.9 8.5 63.6 21.7 87.6 25.6c0 0 0 0 0 0l.2 0c44.7 7 88.3 4.2 123.7-10.9c36.5-15.6 64.4-44.8 71.8-87.3c3.6-21 2.7-40.4-3.1-58.1l-75.7 0c7 5.6 11.4 11.2 13.9 17.2z"/></svg>\n'
|
|
306637
306746
|
};
|
|
306638
|
-
_hoisted_1$
|
|
306747
|
+
_hoisted_1$21 = [
|
|
306639
306748
|
"onClick",
|
|
306640
306749
|
"innerHTML",
|
|
306641
306750
|
"aria-label",
|
|
@@ -306727,11 +306836,107 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
306727
306836
|
ref_key: "alignmentButtonsRefs",
|
|
306728
306837
|
ref: alignmentButtonsRefs,
|
|
306729
306838
|
onKeydown: exports_vue.withModifiers((event) => handleKeyDown$1(event, index2), ["prevent"])
|
|
306730
|
-
}, null, 40, _hoisted_1$
|
|
306839
|
+
}, null, 40, _hoisted_1$21);
|
|
306731
306840
|
}), 64))], 2);
|
|
306732
306841
|
};
|
|
306733
306842
|
}
|
|
306734
306843
|
}, [["__scopeId", "data-v-3f7f0d98"]]);
|
|
306844
|
+
_hoisted_1$20 = [
|
|
306845
|
+
"onClick",
|
|
306846
|
+
"innerHTML",
|
|
306847
|
+
"aria-label",
|
|
306848
|
+
"onKeydown"
|
|
306849
|
+
];
|
|
306850
|
+
BulletStyleButtons_default = /* @__PURE__ */ __plugin_vue_export_helper_default({
|
|
306851
|
+
__name: "BulletStyleButtons",
|
|
306852
|
+
props: { selectedStyle: {
|
|
306853
|
+
type: String,
|
|
306854
|
+
default: null
|
|
306855
|
+
} },
|
|
306856
|
+
emits: ["select"],
|
|
306857
|
+
setup(__props, { emit: __emit }) {
|
|
306858
|
+
const { isHighContrastMode: isHighContrastMode$1 } = useHighContrastMode();
|
|
306859
|
+
const emit = __emit;
|
|
306860
|
+
const props = __props;
|
|
306861
|
+
const buttonRefs = exports_vue.ref([]);
|
|
306862
|
+
const bulletButtons = [
|
|
306863
|
+
{
|
|
306864
|
+
key: "disc",
|
|
306865
|
+
icon: toolbarIcons.bulletListDisc,
|
|
306866
|
+
ariaLabel: "Opaque circle"
|
|
306867
|
+
},
|
|
306868
|
+
{
|
|
306869
|
+
key: "circle",
|
|
306870
|
+
icon: toolbarIcons.bulletListCircle,
|
|
306871
|
+
ariaLabel: "Outline circle"
|
|
306872
|
+
},
|
|
306873
|
+
{
|
|
306874
|
+
key: "square",
|
|
306875
|
+
icon: toolbarIcons.bulletListSquare,
|
|
306876
|
+
ariaLabel: "Opaque square"
|
|
306877
|
+
}
|
|
306878
|
+
];
|
|
306879
|
+
const select2 = (key2) => {
|
|
306880
|
+
emit("select", key2);
|
|
306881
|
+
};
|
|
306882
|
+
const moveToNextButton = (index2) => {
|
|
306883
|
+
if (index2 === buttonRefs.value.length - 1)
|
|
306884
|
+
return;
|
|
306885
|
+
const next2 = buttonRefs.value[index2 + 1];
|
|
306886
|
+
if (next2) {
|
|
306887
|
+
next2.setAttribute("tabindex", "0");
|
|
306888
|
+
next2.focus();
|
|
306889
|
+
}
|
|
306890
|
+
};
|
|
306891
|
+
const moveToPreviousButton = (index2) => {
|
|
306892
|
+
if (index2 === 0)
|
|
306893
|
+
return;
|
|
306894
|
+
const prev = buttonRefs.value[index2 - 1];
|
|
306895
|
+
if (prev) {
|
|
306896
|
+
prev.setAttribute("tabindex", "0");
|
|
306897
|
+
prev.focus();
|
|
306898
|
+
}
|
|
306899
|
+
};
|
|
306900
|
+
const handleKeyDown$1 = (e, index2) => {
|
|
306901
|
+
switch (e.key) {
|
|
306902
|
+
case "ArrowLeft":
|
|
306903
|
+
moveToPreviousButton(index2);
|
|
306904
|
+
break;
|
|
306905
|
+
case "ArrowRight":
|
|
306906
|
+
moveToNextButton(index2);
|
|
306907
|
+
break;
|
|
306908
|
+
case "Enter":
|
|
306909
|
+
select2(bulletButtons[index2].key);
|
|
306910
|
+
break;
|
|
306911
|
+
default:
|
|
306912
|
+
break;
|
|
306913
|
+
}
|
|
306914
|
+
};
|
|
306915
|
+
exports_vue.onMounted(() => {
|
|
306916
|
+
const first$1 = buttonRefs.value[0];
|
|
306917
|
+
if (first$1) {
|
|
306918
|
+
first$1.setAttribute("tabindex", "0");
|
|
306919
|
+
first$1.focus();
|
|
306920
|
+
}
|
|
306921
|
+
});
|
|
306922
|
+
return (_ctx, _cache) => {
|
|
306923
|
+
return exports_vue.openBlock(), exports_vue.createElementBlock("div", { class: exports_vue.normalizeClass(["bullet-style-buttons", { "high-contrast": exports_vue.unref(isHighContrastMode$1) }]) }, [(exports_vue.openBlock(), exports_vue.createElementBlock(exports_vue.Fragment, null, exports_vue.renderList(bulletButtons, (button, index2) => {
|
|
306924
|
+
return exports_vue.createElementVNode("div", {
|
|
306925
|
+
key: button.key,
|
|
306926
|
+
class: exports_vue.normalizeClass(["button-icon", { selected: props.selectedStyle === button.key }]),
|
|
306927
|
+
onClick: ($event) => select2(button.key),
|
|
306928
|
+
innerHTML: button.icon,
|
|
306929
|
+
role: "menuitem",
|
|
306930
|
+
"aria-label": button.ariaLabel,
|
|
306931
|
+
ref_for: true,
|
|
306932
|
+
ref_key: "buttonRefs",
|
|
306933
|
+
ref: buttonRefs,
|
|
306934
|
+
onKeydown: exports_vue.withModifiers((event) => handleKeyDown$1(event, index2), ["prevent"])
|
|
306935
|
+
}, null, 42, _hoisted_1$20);
|
|
306936
|
+
}), 64))], 2);
|
|
306937
|
+
};
|
|
306938
|
+
}
|
|
306939
|
+
}, [["__scopeId", "data-v-e1b3c81e"]]);
|
|
306735
306940
|
_hoisted_1$19 = ["onClick", "onKeydown"];
|
|
306736
306941
|
_hoisted_2$15 = { class: "document-mode-column icon-column" };
|
|
306737
306942
|
_hoisted_3$11 = ["innerHTML"];
|
|
@@ -306909,10 +307114,10 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
306909
307114
|
_hoisted_6$1 = { class: "input-row text-input-row" };
|
|
306910
307115
|
_hoisted_7$1 = ["readonly"];
|
|
306911
307116
|
_hoisted_8$1 = { class: "input-row url-input-row" };
|
|
306912
|
-
_hoisted_9 = ["innerHTML"];
|
|
306913
|
-
_hoisted_10 = ["readonly", "onKeydown"];
|
|
306914
|
-
_hoisted_11 = ["innerHTML"];
|
|
306915
|
-
_hoisted_12 = {
|
|
307117
|
+
_hoisted_9$1 = ["innerHTML"];
|
|
307118
|
+
_hoisted_10$1 = ["readonly", "onKeydown"];
|
|
307119
|
+
_hoisted_11$1 = ["innerHTML"];
|
|
307120
|
+
_hoisted_12$1 = {
|
|
306916
307121
|
key: 0,
|
|
306917
307122
|
class: "input-row link-buttons"
|
|
306918
307123
|
};
|
|
@@ -307102,7 +307307,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
307102
307307
|
exports_vue.createElementVNode("div", {
|
|
307103
307308
|
class: "input-icon",
|
|
307104
307309
|
innerHTML: exports_vue.unref(toolbarIcons).linkInput
|
|
307105
|
-
}, null, 8, _hoisted_9),
|
|
307310
|
+
}, null, 8, _hoisted_9$1),
|
|
307106
307311
|
exports_vue.withDirectives(exports_vue.createElementVNode("input", {
|
|
307107
307312
|
type: "text",
|
|
307108
307313
|
name: "link",
|
|
@@ -307111,15 +307316,15 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
307111
307316
|
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => rawUrl.value = $event),
|
|
307112
307317
|
readonly: isViewingMode.value,
|
|
307113
307318
|
onKeydown: [exports_vue.withKeys(exports_vue.withModifiers(handleSubmit, ["stop", "prevent"]), ["enter"]), _cache[3] || (_cache[3] = ($event) => urlError.value = false)]
|
|
307114
|
-
}, null, 42, _hoisted_10), [[exports_vue.vModelText, rawUrl.value]]),
|
|
307319
|
+
}, null, 42, _hoisted_10$1), [[exports_vue.vModelText, rawUrl.value]]),
|
|
307115
307320
|
exports_vue.createElementVNode("div", {
|
|
307116
307321
|
class: exports_vue.normalizeClass(["open-link-icon", { disabled: !validUrl.value }]),
|
|
307117
307322
|
innerHTML: exports_vue.unref(toolbarIcons).openLink,
|
|
307118
307323
|
onClick: openLink,
|
|
307119
307324
|
"data-item": "btn-link-open"
|
|
307120
|
-
}, null, 10, _hoisted_11)
|
|
307325
|
+
}, null, 10, _hoisted_11$1)
|
|
307121
307326
|
]),
|
|
307122
|
-
!isViewingMode.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_12, [isEditing.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("button", {
|
|
307327
|
+
!isViewingMode.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_12$1, [isEditing.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("button", {
|
|
307123
307328
|
key: 0,
|
|
307124
307329
|
class: "remove-btn",
|
|
307125
307330
|
onClick: handleRemove,
|
|
@@ -307791,25 +307996,28 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
307791
307996
|
};
|
|
307792
307997
|
}
|
|
307793
307998
|
}, [["__scopeId", "data-v-8c30c125"]]);
|
|
307794
|
-
_hoisted_1$10 = [
|
|
307795
|
-
"role",
|
|
307796
|
-
"aria-label",
|
|
307797
|
-
"onKeydown"
|
|
307798
|
-
];
|
|
307999
|
+
_hoisted_1$10 = ["role", "aria-label"];
|
|
307799
308000
|
_hoisted_2$6 = ["data-item"];
|
|
307800
|
-
_hoisted_3$5 =
|
|
308001
|
+
_hoisted_3$5 = ["data-item"];
|
|
308002
|
+
_hoisted_4$4 = {
|
|
308003
|
+
key: 1,
|
|
308004
|
+
class: "button-label"
|
|
308005
|
+
};
|
|
308006
|
+
_hoisted_5$1 = ["data-item", "aria-label"];
|
|
308007
|
+
_hoisted_6 = ["innerHTML"];
|
|
308008
|
+
_hoisted_7 = {
|
|
307801
308009
|
key: 1,
|
|
307802
308010
|
class: "button-label"
|
|
307803
308011
|
};
|
|
307804
|
-
|
|
307805
|
-
|
|
307806
|
-
|
|
308012
|
+
_hoisted_8 = { key: 2 };
|
|
308013
|
+
_hoisted_9 = ["onKeydown", "id"];
|
|
308014
|
+
_hoisted_10 = [
|
|
307807
308015
|
"placeholder",
|
|
307808
308016
|
"onKeydown",
|
|
307809
308017
|
"id"
|
|
307810
308018
|
];
|
|
307811
|
-
|
|
307812
|
-
|
|
308019
|
+
_hoisted_11 = ["innerHTML"];
|
|
308020
|
+
_hoisted_12 = {
|
|
307813
308021
|
"aria-live": "polite",
|
|
307814
308022
|
class: "visually-hidden"
|
|
307815
308023
|
};
|
|
@@ -307845,11 +308053,16 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
307845
308053
|
default: false
|
|
307846
308054
|
}
|
|
307847
308055
|
},
|
|
307848
|
-
emits: [
|
|
308056
|
+
emits: [
|
|
308057
|
+
"buttonClick",
|
|
308058
|
+
"textSubmit",
|
|
308059
|
+
"mainClick"
|
|
308060
|
+
],
|
|
307849
308061
|
setup(__props, { emit: __emit }) {
|
|
307850
308062
|
const emit = __emit;
|
|
307851
308063
|
const props = __props;
|
|
307852
|
-
const { name, active, icon, label, hideLabel, iconColor, hasCaret, disabled, inlineTextInputVisible, hasInlineTextInput, minWidth, style: style2, attributes } = props.toolbarItem;
|
|
308064
|
+
const { name, active, icon, label, hideLabel, iconColor, hasCaret, splitButton, disabled, inlineTextInputVisible, hasInlineTextInput, minWidth, style: style2, attributes } = props.toolbarItem;
|
|
308065
|
+
const isSplit = exports_vue.computed(() => Boolean(splitButton?.value) && Boolean(hasCaret?.value));
|
|
307853
308066
|
const inlineTextInput = exports_vue.ref(label);
|
|
307854
308067
|
const inlineInput = exports_vue.ref(null);
|
|
307855
308068
|
const { isHighContrastMode: isHighContrastMode$1 } = useHighContrastMode();
|
|
@@ -307861,6 +308074,24 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
307861
308074
|
});
|
|
307862
308075
|
emit("buttonClick");
|
|
307863
308076
|
};
|
|
308077
|
+
const handleSplitMainClick = (event) => {
|
|
308078
|
+
if (disabled?.value)
|
|
308079
|
+
return;
|
|
308080
|
+
event?.stopPropagation();
|
|
308081
|
+
emit("mainClick");
|
|
308082
|
+
};
|
|
308083
|
+
const handleOuterClick = () => {
|
|
308084
|
+
if (isSplit.value)
|
|
308085
|
+
return;
|
|
308086
|
+
handleClick$1();
|
|
308087
|
+
};
|
|
308088
|
+
const handleOuterEnter = (event) => {
|
|
308089
|
+
if (isSplit.value) {
|
|
308090
|
+
handleSplitMainClick(event);
|
|
308091
|
+
return;
|
|
308092
|
+
}
|
|
308093
|
+
handleClick$1();
|
|
308094
|
+
};
|
|
307864
308095
|
const handleInputSubmit = () => {
|
|
307865
308096
|
const value = inlineTextInput.value;
|
|
307866
308097
|
const cleanValue = value.match(/^\d+(\.5)?$/) ? value : Math.floor(parseFloat(value)).toString();
|
|
@@ -307881,8 +308112,8 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
307881
308112
|
style: exports_vue.normalizeStyle(getStyle.value),
|
|
307882
308113
|
role: __props.isOverflowItem ? "menuitem" : "button",
|
|
307883
308114
|
"aria-label": exports_vue.unref(attributes).ariaLabel,
|
|
307884
|
-
onClick:
|
|
307885
|
-
onKeydown: exports_vue.withKeys(exports_vue.withModifiers(
|
|
308115
|
+
onClick: handleOuterClick,
|
|
308116
|
+
onKeydown: _cache[3] || (_cache[3] = exports_vue.withKeys(exports_vue.withModifiers(($event) => handleOuterEnter($event), ["stop"]), ["enter"])),
|
|
307886
308117
|
tabindex: "0"
|
|
307887
308118
|
}, [exports_vue.createElementVNode("div", {
|
|
307888
308119
|
class: exports_vue.normalizeClass(["toolbar-button", {
|
|
@@ -307890,12 +308121,18 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
307890
308121
|
disabled: exports_vue.unref(disabled),
|
|
307891
308122
|
narrow: __props.isNarrow,
|
|
307892
308123
|
wide: __props.isWide,
|
|
308124
|
+
split: isSplit.value,
|
|
307893
308125
|
"has-inline-text-input": exports_vue.unref(hasInlineTextInput),
|
|
307894
308126
|
"high-contrast": exports_vue.unref(isHighContrastMode$1)
|
|
307895
308127
|
}]),
|
|
307896
308128
|
"data-item": `btn-${exports_vue.unref(name) || ""}`
|
|
307897
308129
|
}, [
|
|
307898
|
-
|
|
308130
|
+
isSplit.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", {
|
|
308131
|
+
key: 0,
|
|
308132
|
+
class: "toolbar-button__main",
|
|
308133
|
+
"data-item": `btn-${exports_vue.unref(name) || ""}-main`,
|
|
308134
|
+
onClick: _cache[0] || (_cache[0] = ($event) => handleSplitMainClick($event))
|
|
308135
|
+
}, [exports_vue.unref(icon) ? (exports_vue.openBlock(), exports_vue.createBlock(ToolbarButtonIcon_default, {
|
|
307899
308136
|
key: 0,
|
|
307900
308137
|
color: exports_vue.unref(iconColor),
|
|
307901
308138
|
class: "toolbar-icon",
|
|
@@ -307905,41 +308142,64 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
307905
308142
|
"color",
|
|
307906
308143
|
"icon",
|
|
307907
308144
|
"name"
|
|
307908
|
-
])) : exports_vue.createCommentVNode("", true),
|
|
307909
|
-
|
|
307910
|
-
exports_vue.unref(inlineTextInputVisible) ? (exports_vue.openBlock(), exports_vue.createElementBlock("span", _hoisted_4$4, [exports_vue.unref(name) === "fontSize" ? exports_vue.withDirectives((exports_vue.openBlock(), exports_vue.createElementBlock("input", {
|
|
307911
|
-
key: 0,
|
|
307912
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => inlineTextInput.value = $event),
|
|
307913
|
-
onKeydown: exports_vue.withKeys(exports_vue.withModifiers(handleInputSubmit, ["prevent"]), ["enter"]),
|
|
307914
|
-
type: "text",
|
|
307915
|
-
class: exports_vue.normalizeClass(["button-text-input button-text-input--font-size", { "high-contrast": exports_vue.unref(isHighContrastMode$1) }]),
|
|
307916
|
-
id: "inlineTextInput-" + exports_vue.unref(name),
|
|
307917
|
-
autocomplete: "off",
|
|
307918
|
-
ref_key: "inlineInput",
|
|
307919
|
-
ref: inlineInput
|
|
307920
|
-
}, null, 42, _hoisted_5$1)), [[exports_vue.vModelText, inlineTextInput.value]]) : exports_vue.withDirectives((exports_vue.openBlock(), exports_vue.createElementBlock("input", {
|
|
308145
|
+
])) : exports_vue.createCommentVNode("", true), exports_vue.unref(label) && !exports_vue.unref(hideLabel) && !exports_vue.unref(inlineTextInputVisible) ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_4$4, exports_vue.toDisplayString(exports_vue.unref(label)), 1)) : exports_vue.createCommentVNode("", true)], 8, _hoisted_3$5)) : exports_vue.createCommentVNode("", true),
|
|
308146
|
+
isSplit.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", {
|
|
307921
308147
|
key: 1,
|
|
307922
|
-
|
|
307923
|
-
|
|
307924
|
-
|
|
307925
|
-
|
|
307926
|
-
|
|
307927
|
-
id: "inlineTextInput-" + exports_vue.unref(name),
|
|
307928
|
-
autocomplete: "off",
|
|
307929
|
-
ref_key: "inlineInput",
|
|
307930
|
-
ref: inlineInput
|
|
307931
|
-
}, null, 40, _hoisted_6)), [[exports_vue.vModelText, inlineTextInput.value]])])) : exports_vue.createCommentVNode("", true),
|
|
307932
|
-
exports_vue.unref(hasCaret) ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", {
|
|
307933
|
-
key: 3,
|
|
308148
|
+
class: "toolbar-button__caret",
|
|
308149
|
+
"data-item": `btn-${exports_vue.unref(name) || ""}-caret`,
|
|
308150
|
+
"aria-label": `${exports_vue.unref(attributes).ariaLabel} options`,
|
|
308151
|
+
role: "button"
|
|
308152
|
+
}, [exports_vue.createElementVNode("div", {
|
|
307934
308153
|
class: "dropdown-caret",
|
|
307935
308154
|
innerHTML: caretIcon.value,
|
|
307936
308155
|
style: exports_vue.normalizeStyle({ opacity: exports_vue.unref(disabled) ? 0.6 : 1 })
|
|
307937
|
-
}, null, 12,
|
|
307938
|
-
|
|
308156
|
+
}, null, 12, _hoisted_6)], 8, _hoisted_5$1)) : (exports_vue.openBlock(), exports_vue.createElementBlock(exports_vue.Fragment, { key: 2 }, [
|
|
308157
|
+
exports_vue.unref(icon) ? (exports_vue.openBlock(), exports_vue.createBlock(ToolbarButtonIcon_default, {
|
|
308158
|
+
key: 0,
|
|
308159
|
+
color: exports_vue.unref(iconColor),
|
|
308160
|
+
class: "toolbar-icon",
|
|
308161
|
+
icon: exports_vue.unref(icon),
|
|
308162
|
+
name: exports_vue.unref(name)
|
|
308163
|
+
}, null, 8, [
|
|
308164
|
+
"color",
|
|
308165
|
+
"icon",
|
|
308166
|
+
"name"
|
|
308167
|
+
])) : exports_vue.createCommentVNode("", true),
|
|
308168
|
+
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),
|
|
308169
|
+
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", {
|
|
308170
|
+
key: 0,
|
|
308171
|
+
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => inlineTextInput.value = $event),
|
|
308172
|
+
onKeydown: exports_vue.withKeys(exports_vue.withModifiers(handleInputSubmit, ["prevent"]), ["enter"]),
|
|
308173
|
+
type: "text",
|
|
308174
|
+
class: exports_vue.normalizeClass(["button-text-input button-text-input--font-size", { "high-contrast": exports_vue.unref(isHighContrastMode$1) }]),
|
|
308175
|
+
id: "inlineTextInput-" + exports_vue.unref(name),
|
|
308176
|
+
autocomplete: "off",
|
|
308177
|
+
ref_key: "inlineInput",
|
|
308178
|
+
ref: inlineInput
|
|
308179
|
+
}, null, 42, _hoisted_9)), [[exports_vue.vModelText, inlineTextInput.value]]) : exports_vue.withDirectives((exports_vue.openBlock(), exports_vue.createElementBlock("input", {
|
|
308180
|
+
key: 1,
|
|
308181
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => inlineTextInput.value = $event),
|
|
308182
|
+
placeholder: exports_vue.unref(label),
|
|
308183
|
+
onKeydown: exports_vue.withKeys(exports_vue.withModifiers(handleInputSubmit, ["prevent"]), ["enter"]),
|
|
308184
|
+
type: "text",
|
|
308185
|
+
class: "button-text-input",
|
|
308186
|
+
id: "inlineTextInput-" + exports_vue.unref(name),
|
|
308187
|
+
autocomplete: "off",
|
|
308188
|
+
ref_key: "inlineInput",
|
|
308189
|
+
ref: inlineInput
|
|
308190
|
+
}, null, 40, _hoisted_10)), [[exports_vue.vModelText, inlineTextInput.value]])])) : exports_vue.createCommentVNode("", true),
|
|
308191
|
+
exports_vue.unref(hasCaret) ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", {
|
|
308192
|
+
key: 3,
|
|
308193
|
+
class: "dropdown-caret",
|
|
308194
|
+
innerHTML: caretIcon.value,
|
|
308195
|
+
style: exports_vue.normalizeStyle({ opacity: exports_vue.unref(disabled) ? 0.6 : 1 })
|
|
308196
|
+
}, null, 12, _hoisted_11)) : exports_vue.createCommentVNode("", true)
|
|
308197
|
+
], 64)),
|
|
308198
|
+
exports_vue.createElementVNode("div", _hoisted_12, exports_vue.toDisplayString(`${exports_vue.unref(attributes).ariaLabel} ${exports_vue.unref(active) ? "selected" : "unset"}`), 1)
|
|
307939
308199
|
], 10, _hoisted_2$6)], 46, _hoisted_1$10);
|
|
307940
308200
|
};
|
|
307941
308201
|
}
|
|
307942
|
-
}, [["__scopeId", "data-v-
|
|
308202
|
+
}, [["__scopeId", "data-v-fdaeb82f"]]);
|
|
307943
308203
|
_hoisted_1$9 = {
|
|
307944
308204
|
class: "toolbar-separator",
|
|
307945
308205
|
role: "separator",
|
|
@@ -308677,6 +308937,25 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
308677
308937
|
argument
|
|
308678
308938
|
});
|
|
308679
308939
|
};
|
|
308940
|
+
const handleSplitButtonMainClick = (item) => {
|
|
308941
|
+
if (item.disabled.value)
|
|
308942
|
+
return;
|
|
308943
|
+
closeDropdowns();
|
|
308944
|
+
const splitCommand = item.splitButtonCommand;
|
|
308945
|
+
const dropdownCommand = item.command;
|
|
308946
|
+
const targetCommand = splitCommand || dropdownCommand;
|
|
308947
|
+
if (!targetCommand)
|
|
308948
|
+
return;
|
|
308949
|
+
const commandItem = {
|
|
308950
|
+
...item,
|
|
308951
|
+
command: targetCommand
|
|
308952
|
+
};
|
|
308953
|
+
emit("item-clicked");
|
|
308954
|
+
emit("command", {
|
|
308955
|
+
item: commandItem,
|
|
308956
|
+
argument: null
|
|
308957
|
+
});
|
|
308958
|
+
};
|
|
308680
308959
|
const closeDropdowns = () => {
|
|
308681
308960
|
const toolbarItems = proxy?.$toolbar?.toolbarItems || [];
|
|
308682
308961
|
const overflowItems = proxy?.$toolbar?.overflowItems || [];
|
|
@@ -308880,11 +309159,13 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
308880
309159
|
trigger: exports_vue.withCtx(() => [exports_vue.createVNode(ToolbarButton_default, {
|
|
308881
309160
|
"toolbar-item": item,
|
|
308882
309161
|
disabled: item.disabled.value,
|
|
308883
|
-
onTextSubmit: ($event) => handleToolbarButtonTextSubmit(item, $event)
|
|
309162
|
+
onTextSubmit: ($event) => handleToolbarButtonTextSubmit(item, $event),
|
|
309163
|
+
onMainClick: ($event) => handleSplitButtonMainClick(item)
|
|
308884
309164
|
}, null, 8, [
|
|
308885
309165
|
"toolbar-item",
|
|
308886
309166
|
"disabled",
|
|
308887
|
-
"onTextSubmit"
|
|
309167
|
+
"onTextSubmit",
|
|
309168
|
+
"onMainClick"
|
|
308888
309169
|
])]),
|
|
308889
309170
|
default: exports_vue.withCtx(() => [exports_vue.createElementVNode("div", null, [exports_vue.createTextVNode(exports_vue.toDisplayString(item.tooltip) + " ", 1), item.disabled.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("span", _hoisted_2$3, "(disabled)")) : exports_vue.createCommentVNode("", true)])]),
|
|
308890
309171
|
_: 2
|
|
@@ -308935,7 +309216,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
308935
309216
|
}), 128))], 36);
|
|
308936
309217
|
};
|
|
308937
309218
|
}
|
|
308938
|
-
}, [["__scopeId", "data-v-
|
|
309219
|
+
}, [["__scopeId", "data-v-7dc120d3"]]);
|
|
308939
309220
|
Toolbar_default = /* @__PURE__ */ __plugin_vue_export_helper_default({
|
|
308940
309221
|
__name: "Toolbar",
|
|
308941
309222
|
emits: [
|
|
@@ -309465,6 +309746,15 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
309465
309746
|
else
|
|
309466
309747
|
item.label.value = this.config.texts?.formatText || "Format text";
|
|
309467
309748
|
},
|
|
309749
|
+
list: () => {
|
|
309750
|
+
if (commandState?.active) {
|
|
309751
|
+
item.activate();
|
|
309752
|
+
item.selectedValue.value = markerTextToBulletStyle(commandState.value);
|
|
309753
|
+
} else {
|
|
309754
|
+
item.deactivate();
|
|
309755
|
+
item.selectedValue.value = null;
|
|
309756
|
+
}
|
|
309757
|
+
},
|
|
309468
309758
|
default: () => {
|
|
309469
309759
|
if (commandState?.active)
|
|
309470
309760
|
item.activate();
|
|
@@ -313004,9 +313294,9 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
313004
313294
|
try {
|
|
313005
313295
|
const [{ unified: unified$1 }, { default: rehypeParse2 }, { default: rehypeRemark2 }, { default: remarkStringify$1 }, { default: remarkGfm$1 }] = await Promise.all([
|
|
313006
313296
|
Promise.resolve().then(() => (init_unified_vFnLRfAM_es(), exports_unified_vFnLRfAM_es)),
|
|
313007
|
-
Promise.resolve().then(() => (
|
|
313008
|
-
Promise.resolve().then(() => (
|
|
313009
|
-
Promise.resolve().then(() => (
|
|
313297
|
+
Promise.resolve().then(() => (init_rehype_parse_DyKLXYD2_es(), exports_rehype_parse_DyKLXYD2_es)),
|
|
313298
|
+
Promise.resolve().then(() => (init_rehype_remark_DYihe9nj_es(), exports_rehype_remark_DYihe9nj_es)),
|
|
313299
|
+
Promise.resolve().then(() => (init_remark_stringify_Cb9EtkyK_es(), exports_remark_stringify_Cb9EtkyK_es)),
|
|
313010
313300
|
Promise.resolve().then(() => (init_remark_gfm_eZN6yzWQ_es(), exports_remark_gfm_eZN6yzWQ_es))
|
|
313011
313301
|
]);
|
|
313012
313302
|
const html3 = this.getHTML();
|
|
@@ -324870,18 +325160,21 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
324870
325160
|
];
|
|
324871
325161
|
});
|
|
324872
325162
|
|
|
324873
|
-
// ../../packages/superdoc/dist/chunks/ui-
|
|
325163
|
+
// ../../packages/superdoc/dist/chunks/create-super-doc-ui-CN0_46iS.es.js
|
|
324874
325164
|
var ALL_TOOLBAR_COMMAND_IDS, EMPTY_ACTIVE_IDS;
|
|
324875
|
-
var
|
|
324876
|
-
|
|
324877
|
-
|
|
325165
|
+
var init_create_super_doc_ui_CN0_46iS_es = __esm(() => {
|
|
325166
|
+
init_SuperConverter_BTy5lByv_es();
|
|
325167
|
+
init_create_headless_toolbar_k6nNYL53_es();
|
|
324878
325168
|
ALL_TOOLBAR_COMMAND_IDS = Object.keys(createToolbarRegistry());
|
|
324879
325169
|
EMPTY_ACTIVE_IDS = Object.freeze([]);
|
|
324880
325170
|
});
|
|
324881
325171
|
|
|
324882
|
-
// ../../packages/superdoc/dist/chunks/
|
|
325172
|
+
// ../../packages/superdoc/dist/chunks/ui-CGB3qmy3.es.js
|
|
325173
|
+
var init_ui_CGB3qmy3_es = () => {};
|
|
325174
|
+
|
|
325175
|
+
// ../../packages/superdoc/dist/chunks/zipper-BxRAi0-5.es.js
|
|
324883
325176
|
var import_jszip_min2;
|
|
324884
|
-
var
|
|
325177
|
+
var init_zipper_BxRAi0_5_es = __esm(() => {
|
|
324885
325178
|
init_rolldown_runtime_Bg48TavK_es();
|
|
324886
325179
|
init_jszip_C49i9kUs_es();
|
|
324887
325180
|
import_jszip_min2 = /* @__PURE__ */ __toESM2(require_jszip_min(), 1);
|
|
@@ -324889,19 +325182,20 @@ var init_zipper_CSxGBanD_es = __esm(() => {
|
|
|
324889
325182
|
|
|
324890
325183
|
// ../../packages/superdoc/dist/super-editor.es.js
|
|
324891
325184
|
var init_super_editor_es = __esm(() => {
|
|
324892
|
-
|
|
324893
|
-
|
|
325185
|
+
init_src_CCV76OsP_es();
|
|
325186
|
+
init_SuperConverter_BTy5lByv_es();
|
|
324894
325187
|
init_jszip_C49i9kUs_es();
|
|
324895
325188
|
init_xml_js_CqGKpaft_es();
|
|
324896
|
-
|
|
325189
|
+
init_create_headless_toolbar_k6nNYL53_es();
|
|
324897
325190
|
init_constants_DrU4EASo_es();
|
|
324898
325191
|
init_dist_B8HfvhaK_es();
|
|
324899
325192
|
init_unified_Dsuw2be5_es();
|
|
324900
|
-
|
|
324901
|
-
|
|
324902
|
-
|
|
324903
|
-
|
|
324904
|
-
|
|
325193
|
+
init_DocxZipper_CUX64E5K_es();
|
|
325194
|
+
init_create_super_doc_ui_CN0_46iS_es();
|
|
325195
|
+
init_ui_CGB3qmy3_es();
|
|
325196
|
+
init_eventemitter3_BJrNoN9D_es();
|
|
325197
|
+
init_errors_C_DoKMoN_es();
|
|
325198
|
+
init_zipper_BxRAi0_5_es();
|
|
324905
325199
|
});
|
|
324906
325200
|
|
|
324907
325201
|
// ../../packages/super-editor/src/editors/v1/document-api-adapters/helpers/value-utils.ts
|
|
@@ -423675,9 +423969,27 @@ function buildNumDef2(numId, abstractId) {
|
|
|
423675
423969
|
elements: [{ name: "w:abstractNumId", attributes: { "w:val": String(abstractId) } }]
|
|
423676
423970
|
};
|
|
423677
423971
|
}
|
|
423972
|
+
function generateAbstractIdentityHex2() {
|
|
423973
|
+
let hex3 = "";
|
|
423974
|
+
for (let i5 = 0;i5 < 8; i5 += 1) {
|
|
423975
|
+
hex3 += Math.floor(Math.random() * 16).toString(16);
|
|
423976
|
+
}
|
|
423977
|
+
return hex3.toUpperCase();
|
|
423978
|
+
}
|
|
423979
|
+
function refreshAbstractIdentity2(abstractDef) {
|
|
423980
|
+
if (!abstractDef?.elements?.length)
|
|
423981
|
+
return;
|
|
423982
|
+
for (const el of abstractDef.elements) {
|
|
423983
|
+
if (el?.name === "w:nsid" && el.attributes) {
|
|
423984
|
+
el.attributes["w:val"] = generateAbstractIdentityHex2();
|
|
423985
|
+
} else if (el?.name === "w:tmpl" && el.attributes) {
|
|
423986
|
+
el.attributes["w:val"] = generateAbstractIdentityHex2();
|
|
423987
|
+
}
|
|
423988
|
+
}
|
|
423989
|
+
}
|
|
423678
423990
|
function generateNewListDefinition2(numbering, options) {
|
|
423679
423991
|
let { listType } = options;
|
|
423680
|
-
const { numId, level, start: start2, text: text9, fmt, markerFontFamily } = options;
|
|
423992
|
+
const { numId, level, start: start2, text: text9, fmt, markerFontFamily, bulletStyle, bulletStyleLevel } = options;
|
|
423681
423993
|
if (typeof listType !== "string")
|
|
423682
423994
|
listType = listType.name;
|
|
423683
423995
|
const definition5 = listType === "orderedList" ? baseOrderedListDef2 : baseBulletList2;
|
|
@@ -423687,6 +423999,23 @@ function generateNewListDefinition2(numbering, options) {
|
|
|
423687
423999
|
...definition5,
|
|
423688
424000
|
attributes: { ...definition5.attributes, "w:abstractNumId": String(newAbstractId) }
|
|
423689
424001
|
}));
|
|
424002
|
+
refreshAbstractIdentity2(newAbstractDef);
|
|
424003
|
+
const shouldOverrideBulletStyle = bulletStyle && listType !== "orderedList";
|
|
424004
|
+
if (shouldOverrideBulletStyle) {
|
|
424005
|
+
const char = BULLET_STYLE_CHARS2[bulletStyle];
|
|
424006
|
+
const targetLevel = String(Math.max(0, Number.isFinite(bulletStyleLevel) ? bulletStyleLevel : 0));
|
|
424007
|
+
if (char) {
|
|
424008
|
+
const lvl = newAbstractDef.elements.find((el) => el.name === "w:lvl" && el.attributes["w:ilvl"] === targetLevel);
|
|
424009
|
+
if (lvl) {
|
|
424010
|
+
const lvlText = lvl.elements.find((el) => el.name === "w:lvlText");
|
|
424011
|
+
if (lvlText)
|
|
424012
|
+
lvlText.attributes["w:val"] = char;
|
|
424013
|
+
const rPr = lvl.elements.find((el) => el.name === "w:rPr");
|
|
424014
|
+
if (rPr)
|
|
424015
|
+
rPr.elements = rPr.elements.filter((el) => el.name !== "w:rFonts");
|
|
424016
|
+
}
|
|
424017
|
+
}
|
|
424018
|
+
}
|
|
423690
424019
|
if (level != null && start2 != null && text9 != null && fmt != null) {
|
|
423691
424020
|
if (numbering.definitions[numId]) {
|
|
423692
424021
|
const abstractId = numbering.definitions[numId]?.elements[0]?.attributes["w:val"];
|
|
@@ -423741,10 +424070,11 @@ function changeNumIdSameAbstract2(numbering, numId, level, listType) {
|
|
|
423741
424070
|
return { newNumId: newId, generated: true };
|
|
423742
424071
|
}
|
|
423743
424072
|
const newAbstractId = getNextId2(numbering.abstracts);
|
|
423744
|
-
const newAbstractDef = {
|
|
424073
|
+
const newAbstractDef = JSON.parse(JSON.stringify({
|
|
423745
424074
|
...abstract,
|
|
423746
424075
|
attributes: { ...abstract.attributes || {}, "w:abstractNumId": String(newAbstractId) }
|
|
423747
|
-
};
|
|
424076
|
+
}));
|
|
424077
|
+
refreshAbstractIdentity2(newAbstractDef);
|
|
423748
424078
|
numbering.abstracts[newAbstractId] = newAbstractDef;
|
|
423749
424079
|
const newNumDef = buildNumDef2(newId, newAbstractId);
|
|
423750
424080
|
numbering.definitions[newId] = newNumDef;
|
|
@@ -423865,8 +424195,14 @@ function setLvlRestartOnAbstract2(numbering, abstractNumId, ilvl, restartAfterLe
|
|
|
423865
424195
|
}
|
|
423866
424196
|
return true;
|
|
423867
424197
|
}
|
|
424198
|
+
var BULLET_STYLE_CHARS2;
|
|
423868
424199
|
var init_numbering_transforms = __esm(() => {
|
|
423869
424200
|
init_baseListDefinitions();
|
|
424201
|
+
BULLET_STYLE_CHARS2 = {
|
|
424202
|
+
disc: "•",
|
|
424203
|
+
circle: "◦",
|
|
424204
|
+
square: "▪"
|
|
424205
|
+
};
|
|
423870
424206
|
});
|
|
423871
424207
|
|
|
423872
424208
|
// ../../packages/super-editor/src/editors/v1/core/parts/adapters/numbering-part-descriptor.ts
|
|
@@ -424027,7 +424363,18 @@ var init_numbering_mutation = __esm(() => {
|
|
|
424027
424363
|
});
|
|
424028
424364
|
|
|
424029
424365
|
// ../../packages/super-editor/src/editors/v1/core/helpers/list-numbering-helpers.js
|
|
424030
|
-
var generateNewListDefinition3 = ({
|
|
424366
|
+
var generateNewListDefinition3 = ({
|
|
424367
|
+
numId,
|
|
424368
|
+
listType,
|
|
424369
|
+
level,
|
|
424370
|
+
start: start2,
|
|
424371
|
+
text: text9,
|
|
424372
|
+
fmt,
|
|
424373
|
+
editor,
|
|
424374
|
+
markerFontFamily,
|
|
424375
|
+
bulletStyle,
|
|
424376
|
+
bulletStyleLevel
|
|
424377
|
+
}) => {
|
|
424031
424378
|
let resultDefs;
|
|
424032
424379
|
mutateNumbering2(editor, "list-numbering-helpers:generateNewListDefinition", (numbering) => {
|
|
424033
424380
|
const result = generateNewListDefinition2(numbering, {
|
|
@@ -424037,7 +424384,9 @@ var generateNewListDefinition3 = ({ numId, listType, level, start: start2, text:
|
|
|
424037
424384
|
start: start2,
|
|
424038
424385
|
text: text9,
|
|
424039
424386
|
fmt,
|
|
424040
|
-
markerFontFamily
|
|
424387
|
+
markerFontFamily,
|
|
424388
|
+
bulletStyle,
|
|
424389
|
+
bulletStyleLevel
|
|
424041
424390
|
});
|
|
424042
424391
|
resultDefs = { abstractDef: result.abstractDef, numDef: result.numDef };
|
|
424043
424392
|
});
|