@superdoc-dev/cli 0.8.0-next.31 → 0.8.0-next.33
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 +447 -153
- package/package.json +8 -8
package/dist/index.js
CHANGED
|
@@ -65806,7 +65806,7 @@ var init_remark_gfm_BhnWr3yf_es = __esm(() => {
|
|
|
65806
65806
|
emptyOptions2 = {};
|
|
65807
65807
|
});
|
|
65808
65808
|
|
|
65809
|
-
// ../../packages/superdoc/dist/chunks/SuperConverter-
|
|
65809
|
+
// ../../packages/superdoc/dist/chunks/SuperConverter-BTy5lByv.es.js
|
|
65810
65810
|
function getExtensionConfigField(extension$1, field, context = { name: "" }) {
|
|
65811
65811
|
const fieldValue = extension$1.config[field];
|
|
65812
65812
|
if (typeof fieldValue === "function")
|
|
@@ -85398,9 +85398,24 @@ function buildNumDef(numId, abstractId) {
|
|
|
85398
85398
|
}]
|
|
85399
85399
|
};
|
|
85400
85400
|
}
|
|
85401
|
+
function generateAbstractIdentityHex() {
|
|
85402
|
+
let hex = "";
|
|
85403
|
+
for (let i$1 = 0;i$1 < 8; i$1 += 1)
|
|
85404
|
+
hex += Math.floor(Math.random() * 16).toString(16);
|
|
85405
|
+
return hex.toUpperCase();
|
|
85406
|
+
}
|
|
85407
|
+
function refreshAbstractIdentity(abstractDef) {
|
|
85408
|
+
if (!abstractDef?.elements?.length)
|
|
85409
|
+
return;
|
|
85410
|
+
for (const el of abstractDef.elements)
|
|
85411
|
+
if (el?.name === "w:nsid" && el.attributes)
|
|
85412
|
+
el.attributes["w:val"] = generateAbstractIdentityHex();
|
|
85413
|
+
else if (el?.name === "w:tmpl" && el.attributes)
|
|
85414
|
+
el.attributes["w:val"] = generateAbstractIdentityHex();
|
|
85415
|
+
}
|
|
85401
85416
|
function generateNewListDefinition(numbering, options) {
|
|
85402
85417
|
let { listType } = options;
|
|
85403
|
-
const { numId, level, start, text: text$2, fmt, markerFontFamily } = options;
|
|
85418
|
+
const { numId, level, start, text: text$2, fmt, markerFontFamily, bulletStyle, bulletStyleLevel } = options;
|
|
85404
85419
|
if (typeof listType !== "string")
|
|
85405
85420
|
listType = listType.name;
|
|
85406
85421
|
const definition$1 = listType === "orderedList" ? baseOrderedListDef : baseBulletList;
|
|
@@ -85413,6 +85428,22 @@ function generateNewListDefinition(numbering, options) {
|
|
|
85413
85428
|
"w:abstractNumId": String(newAbstractId)
|
|
85414
85429
|
}
|
|
85415
85430
|
}));
|
|
85431
|
+
refreshAbstractIdentity(newAbstractDef);
|
|
85432
|
+
if (bulletStyle && listType !== "orderedList") {
|
|
85433
|
+
const char = BULLET_STYLE_CHARS[bulletStyle];
|
|
85434
|
+
const targetLevel = String(Math.max(0, Number.isFinite(bulletStyleLevel) ? bulletStyleLevel : 0));
|
|
85435
|
+
if (char) {
|
|
85436
|
+
const lvl = newAbstractDef.elements.find((el) => el.name === "w:lvl" && el.attributes["w:ilvl"] === targetLevel);
|
|
85437
|
+
if (lvl) {
|
|
85438
|
+
const lvlText = lvl.elements.find((el) => el.name === "w:lvlText");
|
|
85439
|
+
if (lvlText)
|
|
85440
|
+
lvlText.attributes["w:val"] = char;
|
|
85441
|
+
const rPr = lvl.elements.find((el) => el.name === "w:rPr");
|
|
85442
|
+
if (rPr)
|
|
85443
|
+
rPr.elements = rPr.elements.filter((el) => el.name !== "w:rFonts");
|
|
85444
|
+
}
|
|
85445
|
+
}
|
|
85446
|
+
}
|
|
85416
85447
|
if (level != null && start != null && text$2 != null && fmt != null) {
|
|
85417
85448
|
if (numbering.definitions[numId]) {
|
|
85418
85449
|
const abstractId = numbering.definitions[numId]?.elements[0]?.attributes["w:val"];
|
|
@@ -85495,13 +85526,14 @@ function changeNumIdSameAbstract(numbering, numId, level, listType) {
|
|
|
85495
85526
|
};
|
|
85496
85527
|
}
|
|
85497
85528
|
const newAbstractId = getNextId(numbering.abstracts);
|
|
85498
|
-
const newAbstractDef = {
|
|
85529
|
+
const newAbstractDef = JSON.parse(JSON.stringify({
|
|
85499
85530
|
...abstract,
|
|
85500
85531
|
attributes: {
|
|
85501
85532
|
...abstract.attributes || {},
|
|
85502
85533
|
"w:abstractNumId": String(newAbstractId)
|
|
85503
85534
|
}
|
|
85504
|
-
};
|
|
85535
|
+
}));
|
|
85536
|
+
refreshAbstractIdentity(newAbstractDef);
|
|
85505
85537
|
numbering.abstracts[newAbstractId] = newAbstractDef;
|
|
85506
85538
|
const newNumDef = buildNumDef(newId, newAbstractId);
|
|
85507
85539
|
numbering.definitions[newId] = newNumDef;
|
|
@@ -85720,6 +85752,13 @@ function mutateNumbering(editor, source, transform, options) {
|
|
|
85720
85752
|
}
|
|
85721
85753
|
});
|
|
85722
85754
|
}
|
|
85755
|
+
function markerTextToBulletStyle(markerText) {
|
|
85756
|
+
return {
|
|
85757
|
+
"•": "disc",
|
|
85758
|
+
"◦": "circle",
|
|
85759
|
+
"▪": "square"
|
|
85760
|
+
}[markerText] ?? null;
|
|
85761
|
+
}
|
|
85723
85762
|
function normalizeCssValue(value) {
|
|
85724
85763
|
if (!value)
|
|
85725
85764
|
return value;
|
|
@@ -112988,7 +113027,7 @@ var isRegExp = (value) => {
|
|
|
112988
113027
|
updateNumberingProperties(numberingProperties, node3, pos, editor, tr);
|
|
112989
113028
|
});
|
|
112990
113029
|
return true;
|
|
112991
|
-
}, NUMBERING_PART_ID = "word/numbering.xml", NUMBERING_ROOT_ATTRS, numberingPartDescriptor, generateNewListDefinition$1 = ({ numId, listType, level, start, text: text$2, fmt, editor, markerFontFamily }) => {
|
|
113030
|
+
}, 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 }) => {
|
|
112992
113031
|
let resultDefs;
|
|
112993
113032
|
mutateNumbering(editor, "list-numbering-helpers:generateNewListDefinition", (numbering) => {
|
|
112994
113033
|
const result = generateNewListDefinition(numbering, {
|
|
@@ -112998,7 +113037,9 @@ var isRegExp = (value) => {
|
|
|
112998
113037
|
start,
|
|
112999
113038
|
text: text$2,
|
|
113000
113039
|
fmt,
|
|
113001
|
-
markerFontFamily
|
|
113040
|
+
markerFontFamily,
|
|
113041
|
+
bulletStyle,
|
|
113042
|
+
bulletStyleLevel
|
|
113002
113043
|
});
|
|
113003
113044
|
resultDefs = {
|
|
113004
113045
|
abstractDef: result.abstractDef,
|
|
@@ -118128,7 +118169,7 @@ var isRegExp = (value) => {
|
|
|
118128
118169
|
if (id2)
|
|
118129
118170
|
return trackedChanges.filter(({ mark }) => mark.attrs.id === id2);
|
|
118130
118171
|
return trackedChanges;
|
|
118131
|
-
}, DERIVED_ID_LENGTH = 24, groupedCache, SDT_NODE_NAMES, SDT_BLOCK_NAME = "structuredContentBlock", VALID_CONTROL_TYPES, VALID_LOCK_MODES2, 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.
|
|
118172
|
+
}, DERIVED_ID_LENGTH = 24, groupedCache, SDT_NODE_NAMES, SDT_BLOCK_NAME = "structuredContentBlock", VALID_CONTROL_TYPES, VALID_LOCK_MODES2, 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 }) => {
|
|
118132
118173
|
if (!runProps?.elements?.length || !state)
|
|
118133
118174
|
return;
|
|
118134
118175
|
const fontsNode = runProps.elements.find((el) => el.name === "w:rFonts");
|
|
@@ -118162,7 +118203,7 @@ var isRegExp = (value) => {
|
|
|
118162
118203
|
state.kern = kernNode.attributes["w:val"];
|
|
118163
118204
|
}
|
|
118164
118205
|
}, SuperConverter;
|
|
118165
|
-
var
|
|
118206
|
+
var init_SuperConverter_BTy5lByv_es = __esm(() => {
|
|
118166
118207
|
init_rolldown_runtime_Bg48TavK_es();
|
|
118167
118208
|
init_jszip_C49i9kUs_es();
|
|
118168
118209
|
init_xml_js_CqGKpaft_es();
|
|
@@ -148530,6 +148571,11 @@ var init_SuperConverter_4akUYfWt_es = __esm(() => {
|
|
|
148530
148571
|
}
|
|
148531
148572
|
]
|
|
148532
148573
|
};
|
|
148574
|
+
BULLET_STYLE_CHARS = {
|
|
148575
|
+
disc: "•",
|
|
148576
|
+
circle: "◦",
|
|
148577
|
+
square: "▪"
|
|
148578
|
+
};
|
|
148533
148579
|
NUMBERING_ROOT_ATTRS = {
|
|
148534
148580
|
"xmlns:w": "http://schemas.openxmlformats.org/wordprocessingml/2006/main",
|
|
148535
148581
|
"xmlns:w15": "http://schemas.microsoft.com/office/word/2012/wordml",
|
|
@@ -155752,7 +155798,7 @@ var init_SuperConverter_4akUYfWt_es = __esm(() => {
|
|
|
155752
155798
|
};
|
|
155753
155799
|
});
|
|
155754
155800
|
|
|
155755
|
-
// ../../packages/superdoc/dist/chunks/create-headless-toolbar-
|
|
155801
|
+
// ../../packages/superdoc/dist/chunks/create-headless-toolbar-k6nNYL53.es.js
|
|
155756
155802
|
function parseSizeUnit(val = "0") {
|
|
155757
155803
|
const length3 = val.toString() || "0";
|
|
155758
155804
|
const value = Number.parseFloat(length3);
|
|
@@ -158028,8 +158074,15 @@ var CSS_DIMENSION_REGEX, DOM_SIZE_UNITS, Extension = class Extension2 {
|
|
|
158028
158074
|
const paragraphNode = getCurrentParagraphParent(context)?.node ?? null;
|
|
158029
158075
|
const paragraphProperties = getCurrentResolvedParagraphProperties(context);
|
|
158030
158076
|
const activeNumberingType = isList(paragraphNode) || Boolean(paragraphProperties?.numberingProperties && paragraphNode?.attrs?.listRendering) ? paragraphNode?.attrs?.listRendering?.numberingType : null;
|
|
158077
|
+
const isActive2 = numberingType === "bullet" ? activeNumberingType === "bullet" : activeNumberingType != null && activeNumberingType !== "bullet";
|
|
158078
|
+
if (numberingType === "bullet")
|
|
158079
|
+
return {
|
|
158080
|
+
active: isActive2,
|
|
158081
|
+
disabled: false,
|
|
158082
|
+
value: isActive2 ? paragraphNode?.attrs?.listRendering?.markerText ?? null : null
|
|
158083
|
+
};
|
|
158031
158084
|
return {
|
|
158032
|
-
active:
|
|
158085
|
+
active: isActive2,
|
|
158033
158086
|
disabled: false
|
|
158034
158087
|
};
|
|
158035
158088
|
}, createIndentIncreaseExecute = () => ({ context }) => {
|
|
@@ -158171,7 +158224,7 @@ var CSS_DIMENSION_REGEX, DOM_SIZE_UNITS, Extension = class Extension2 {
|
|
|
158171
158224
|
},
|
|
158172
158225
|
"bullet-list": {
|
|
158173
158226
|
id: "bullet-list",
|
|
158174
|
-
directCommandName: "
|
|
158227
|
+
directCommandName: "toggleBulletListStyle",
|
|
158175
158228
|
state: createListStateDeriver("bullet")
|
|
158176
158229
|
},
|
|
158177
158230
|
"numbered-list": {
|
|
@@ -158381,8 +158434,8 @@ var CSS_DIMENSION_REGEX, DOM_SIZE_UNITS, Extension = class Extension2 {
|
|
|
158381
158434
|
}
|
|
158382
158435
|
};
|
|
158383
158436
|
};
|
|
158384
|
-
var
|
|
158385
|
-
|
|
158437
|
+
var init_create_headless_toolbar_k6nNYL53_es = __esm(() => {
|
|
158438
|
+
init_SuperConverter_BTy5lByv_es();
|
|
158386
158439
|
init_constants_DrU4EASo_es();
|
|
158387
158440
|
init_dist_B8HfvhaK_es();
|
|
158388
158441
|
CSS_DIMENSION_REGEX = /[\d-.]+(\w+)$/;
|
|
@@ -159118,7 +159171,7 @@ var init_remark_stringify_6MMJfY0k_es = __esm(() => {
|
|
|
159118
159171
|
eol = /\r?\n|\r/g;
|
|
159119
159172
|
});
|
|
159120
159173
|
|
|
159121
|
-
// ../../packages/superdoc/dist/chunks/detect-container-
|
|
159174
|
+
// ../../packages/superdoc/dist/chunks/detect-container-C1zjKeIM.es.js
|
|
159122
159175
|
function matchesMagic(bytes, magic) {
|
|
159123
159176
|
if (bytes.length < magic.length)
|
|
159124
159177
|
return false;
|
|
@@ -159136,7 +159189,7 @@ function detectContainerType(data) {
|
|
|
159136
159189
|
return "unknown";
|
|
159137
159190
|
}
|
|
159138
159191
|
var ZIP_MAGIC, CFB_MAGIC;
|
|
159139
|
-
var
|
|
159192
|
+
var init_detect_container_C1zjKeIM_es = __esm(() => {
|
|
159140
159193
|
ZIP_MAGIC = [
|
|
159141
159194
|
80,
|
|
159142
159195
|
75,
|
|
@@ -159155,18 +159208,18 @@ var init_detect_container_D4DBxokY_es = __esm(() => {
|
|
|
159155
159208
|
];
|
|
159156
159209
|
});
|
|
159157
159210
|
|
|
159158
|
-
// ../../packages/superdoc/dist/chunks/detect-container-
|
|
159159
|
-
var
|
|
159160
|
-
__export(
|
|
159211
|
+
// ../../packages/superdoc/dist/chunks/detect-container-Dpg_mpnM.es.js
|
|
159212
|
+
var exports_detect_container_Dpg_mpnM_es = {};
|
|
159213
|
+
__export(exports_detect_container_Dpg_mpnM_es, {
|
|
159161
159214
|
detectContainerType: () => detectContainerType
|
|
159162
159215
|
});
|
|
159163
|
-
var
|
|
159164
|
-
|
|
159216
|
+
var init_detect_container_Dpg_mpnM_es = __esm(() => {
|
|
159217
|
+
init_detect_container_C1zjKeIM_es();
|
|
159165
159218
|
});
|
|
159166
159219
|
|
|
159167
|
-
// ../../packages/superdoc/dist/chunks/errors-
|
|
159220
|
+
// ../../packages/superdoc/dist/chunks/errors-C_DoKMoN.es.js
|
|
159168
159221
|
var EditorError, InvalidStateError, NoSourcePathError, FileSystemNotAvailableError, DocumentLoadError, DocxEncryptionErrorCode, DocxEncryptionError;
|
|
159169
|
-
var
|
|
159222
|
+
var init_errors_C_DoKMoN_es = __esm(() => {
|
|
159170
159223
|
EditorError = class extends Error {
|
|
159171
159224
|
constructor(message) {
|
|
159172
159225
|
super(message);
|
|
@@ -159214,9 +159267,9 @@ var init_errors_C4DO_BsD_es = __esm(() => {
|
|
|
159214
159267
|
};
|
|
159215
159268
|
});
|
|
159216
159269
|
|
|
159217
|
-
// ../../packages/superdoc/dist/chunks/decrypt-docx-
|
|
159218
|
-
var
|
|
159219
|
-
__export(
|
|
159270
|
+
// ../../packages/superdoc/dist/chunks/decrypt-docx-4kQ488M9.es.js
|
|
159271
|
+
var exports_decrypt_docx_4kQ488M9_es = {};
|
|
159272
|
+
__export(exports_decrypt_docx_4kQ488M9_es, {
|
|
159220
159273
|
decryptDocxIfNeeded: () => decryptDocxIfNeeded
|
|
159221
159274
|
});
|
|
159222
159275
|
function concatUint8Arrays(chunks) {
|
|
@@ -159757,10 +159810,10 @@ async function decryptDocxIfNeeded(data, options) {
|
|
|
159757
159810
|
};
|
|
159758
159811
|
}
|
|
159759
159812
|
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;
|
|
159760
|
-
var
|
|
159813
|
+
var init_decrypt_docx_4kQ488M9_es = __esm(() => {
|
|
159761
159814
|
init_dist_B8HfvhaK_es();
|
|
159762
|
-
|
|
159763
|
-
|
|
159815
|
+
init_errors_C_DoKMoN_es();
|
|
159816
|
+
init_detect_container_C1zjKeIM_es();
|
|
159764
159817
|
CFB_SIGNATURE = new Uint8Array([
|
|
159765
159818
|
208,
|
|
159766
159819
|
207,
|
|
@@ -159829,7 +159882,7 @@ var init_decrypt_docx_D8IVL1og_es = __esm(() => {
|
|
|
159829
159882
|
]);
|
|
159830
159883
|
});
|
|
159831
159884
|
|
|
159832
|
-
// ../../packages/superdoc/dist/chunks/DocxZipper-
|
|
159885
|
+
// ../../packages/superdoc/dist/chunks/DocxZipper-CUX64E5K.es.js
|
|
159833
159886
|
function sniffEncoding(u8) {
|
|
159834
159887
|
if (u8.length >= 2) {
|
|
159835
159888
|
const b0 = u8[0], b1 = u8[1];
|
|
@@ -160136,11 +160189,11 @@ var DOCX = "application/vnd.openxmlformats-officedocument.wordprocessingml.docum
|
|
|
160136
160189
|
return new Uint8Array(0);
|
|
160137
160190
|
}
|
|
160138
160191
|
async getDocxData(file, isNode3 = false, options = {}) {
|
|
160139
|
-
const { detectContainerType: detectContainerType2 } = await Promise.resolve().then(() => (
|
|
160192
|
+
const { detectContainerType: detectContainerType2 } = await Promise.resolve().then(() => (init_detect_container_Dpg_mpnM_es(), exports_detect_container_Dpg_mpnM_es));
|
|
160140
160193
|
const containerType = detectContainerType2(await this.#peekBytes(file, 8));
|
|
160141
160194
|
let fileData = file;
|
|
160142
160195
|
if (containerType === "cfb") {
|
|
160143
|
-
const { decryptDocxIfNeeded: decryptDocxIfNeeded2 } = await Promise.resolve().then(() => (
|
|
160196
|
+
const { decryptDocxIfNeeded: decryptDocxIfNeeded2 } = await Promise.resolve().then(() => (init_decrypt_docx_4kQ488M9_es(), exports_decrypt_docx_4kQ488M9_es));
|
|
160144
160197
|
const result = await decryptDocxIfNeeded2(file instanceof Uint8Array ? file : file instanceof ArrayBuffer ? new Uint8Array(file) : new Uint8Array(await file.arrayBuffer()), { password: options.password });
|
|
160145
160198
|
fileData = result.data;
|
|
160146
160199
|
this.decryptedFileData = result.data;
|
|
@@ -160480,7 +160533,7 @@ var DOCX = "application/vnd.openxmlformats-officedocument.wordprocessingml.docum
|
|
|
160480
160533
|
return `image/${MIME_TYPE_FOR_EXT[detectedType] || detectedType}`;
|
|
160481
160534
|
}
|
|
160482
160535
|
}, DocxZipper_default;
|
|
160483
|
-
var
|
|
160536
|
+
var init_DocxZipper_CUX64E5K_es = __esm(() => {
|
|
160484
160537
|
init_rolldown_runtime_Bg48TavK_es();
|
|
160485
160538
|
init_jszip_C49i9kUs_es();
|
|
160486
160539
|
init_xml_js_CqGKpaft_es();
|
|
@@ -160552,9 +160605,9 @@ var __plugin_vue_export_helper_default = (sfc, props) => {
|
|
|
160552
160605
|
};
|
|
160553
160606
|
var init__plugin_vue_export_helper_HmhZBO0u_es = () => {};
|
|
160554
160607
|
|
|
160555
|
-
// ../../packages/superdoc/dist/chunks/eventemitter3-
|
|
160608
|
+
// ../../packages/superdoc/dist/chunks/eventemitter3-BJrNoN9D.es.js
|
|
160556
160609
|
var import_eventemitter3, eventemitter3_default;
|
|
160557
|
-
var
|
|
160610
|
+
var init_eventemitter3_BJrNoN9D_es = __esm(() => {
|
|
160558
160611
|
init_rolldown_runtime_Bg48TavK_es();
|
|
160559
160612
|
import_eventemitter3 = /* @__PURE__ */ __toESM2((/* @__PURE__ */ __commonJSMin((exports, module) => {
|
|
160560
160613
|
var has = Object.prototype.hasOwnProperty, prefix = "~";
|
|
@@ -160724,8 +160777,8 @@ var init_eventemitter3_FJgkFNGb_es = __esm(() => {
|
|
|
160724
160777
|
eventemitter3_default = import_eventemitter3.default;
|
|
160725
160778
|
});
|
|
160726
160779
|
|
|
160727
|
-
// ../../packages/superdoc/dist/chunks/blank-docx-
|
|
160728
|
-
var
|
|
160780
|
+
// ../../packages/superdoc/dist/chunks/blank-docx-CDDHd6CH.es.js
|
|
160781
|
+
var init_blank_docx_CDDHd6CH_es = () => {};
|
|
160729
160782
|
|
|
160730
160783
|
// ../../node_modules/.pnpm/@vue+shared@3.5.32/node_modules/@vue/shared/dist/shared.cjs.js
|
|
160731
160784
|
var require_shared_cjs = __commonJS((exports) => {
|
|
@@ -196357,9 +196410,9 @@ var init_unified_vFnLRfAM_es = __esm(() => {
|
|
|
196357
196410
|
init_unified_Dsuw2be5_es();
|
|
196358
196411
|
});
|
|
196359
196412
|
|
|
196360
|
-
// ../../packages/superdoc/dist/chunks/rehype-parse-
|
|
196361
|
-
var
|
|
196362
|
-
__export(
|
|
196413
|
+
// ../../packages/superdoc/dist/chunks/rehype-parse-DyKLXYD2.es.js
|
|
196414
|
+
var exports_rehype_parse_DyKLXYD2_es = {};
|
|
196415
|
+
__export(exports_rehype_parse_DyKLXYD2_es, {
|
|
196363
196416
|
default: () => rehypeParse
|
|
196364
196417
|
});
|
|
196365
196418
|
function merge2(definitions, space) {
|
|
@@ -202308,7 +202361,7 @@ var Schema2 = class {
|
|
|
202308
202361
|
}
|
|
202309
202362
|
}
|
|
202310
202363
|
}, TABLE_VOID_ELEMENTS, errors, base3 = "https://html.spec.whatwg.org/multipage/parsing.html#parse-error-", dashToCamelRe, formatCRe, formatXRe, fatalities, emptyOptions3;
|
|
202311
|
-
var
|
|
202364
|
+
var init_rehype_parse_DyKLXYD2_es = __esm(() => {
|
|
202312
202365
|
init_rolldown_runtime_Bg48TavK_es();
|
|
202313
202366
|
init_default_BqgWzMfR_es();
|
|
202314
202367
|
init_lib_CYqLdG4z_es();
|
|
@@ -205053,9 +205106,9 @@ var init_rehype_parse_Daj0cUby_es = __esm(() => {
|
|
|
205053
205106
|
emptyOptions3 = {};
|
|
205054
205107
|
});
|
|
205055
205108
|
|
|
205056
|
-
// ../../packages/superdoc/dist/chunks/rehype-remark-
|
|
205057
|
-
var
|
|
205058
|
-
__export(
|
|
205109
|
+
// ../../packages/superdoc/dist/chunks/rehype-remark-DYihe9nj.es.js
|
|
205110
|
+
var exports_rehype_remark_DYihe9nj_es = {};
|
|
205111
|
+
__export(exports_rehype_remark_DYihe9nj_es, {
|
|
205059
205112
|
default: () => rehypeRemark
|
|
205060
205113
|
});
|
|
205061
205114
|
function anyFactory2(tests) {
|
|
@@ -206675,7 +206728,7 @@ var env, deserializer = ($2, _2) => {
|
|
|
206675
206728
|
if (is(parent.children[index2], index2, parent))
|
|
206676
206729
|
return parent.children[index2];
|
|
206677
206730
|
}, searchLineFeeds, searchTabOrSpaces, br$1, cell, p$1, row, notRendered, blockOrCaption, prefix = "language-", defaultChecked = "[x]", defaultUnchecked = "[ ]", own$12, list$1, basic, meta, defaultQuotes, nodeHandlers, handlers2, own6, emptyOptions4, defaults;
|
|
206678
|
-
var
|
|
206731
|
+
var init_rehype_remark_DYihe9nj_es = __esm(() => {
|
|
206679
206732
|
init_lib_DEff_P2k_es();
|
|
206680
206733
|
env = typeof self === "object" ? self : globalThis;
|
|
206681
206734
|
({ toString: toString$1 } = {});
|
|
@@ -207051,12 +207104,12 @@ var init_rehype_remark_BHDNk9YW_es = __esm(() => {
|
|
|
207051
207104
|
defaults = { document: true };
|
|
207052
207105
|
});
|
|
207053
207106
|
|
|
207054
|
-
// ../../packages/superdoc/dist/chunks/remark-stringify-
|
|
207055
|
-
var
|
|
207056
|
-
__export(
|
|
207107
|
+
// ../../packages/superdoc/dist/chunks/remark-stringify-Cb9EtkyK.es.js
|
|
207108
|
+
var exports_remark_stringify_Cb9EtkyK_es = {};
|
|
207109
|
+
__export(exports_remark_stringify_Cb9EtkyK_es, {
|
|
207057
207110
|
default: () => remarkStringify
|
|
207058
207111
|
});
|
|
207059
|
-
var
|
|
207112
|
+
var init_remark_stringify_Cb9EtkyK_es = __esm(() => {
|
|
207060
207113
|
init_remark_stringify_6MMJfY0k_es();
|
|
207061
207114
|
});
|
|
207062
207115
|
|
|
@@ -207069,7 +207122,7 @@ var init_remark_gfm_eZN6yzWQ_es = __esm(() => {
|
|
|
207069
207122
|
init_remark_gfm_BhnWr3yf_es();
|
|
207070
207123
|
});
|
|
207071
207124
|
|
|
207072
|
-
// ../../packages/superdoc/dist/chunks/src-
|
|
207125
|
+
// ../../packages/superdoc/dist/chunks/src-CCV76OsP.es.js
|
|
207073
207126
|
function deleteProps(obj, propOrProps) {
|
|
207074
207127
|
const props = typeof propOrProps === "string" ? [propOrProps] : propOrProps;
|
|
207075
207128
|
const removeNested = (target, pathParts, index2 = 0) => {
|
|
@@ -207712,7 +207765,7 @@ function prosemirrorToYXmlFragment(doc$12, xmlFragment) {
|
|
|
207712
207765
|
}
|
|
207713
207766
|
function getSuperdocVersion() {
|
|
207714
207767
|
try {
|
|
207715
|
-
return "1.29.
|
|
207768
|
+
return "1.29.1";
|
|
207716
207769
|
} catch {
|
|
207717
207770
|
return "unknown";
|
|
207718
207771
|
}
|
|
@@ -209903,12 +209956,18 @@ function getParagraphListKind(node3, editor) {
|
|
|
209903
209956
|
return null;
|
|
209904
209957
|
return numFmtIsBullet(fmt) ? "bullet" : "ordered";
|
|
209905
209958
|
}
|
|
209906
|
-
function paragraphMatchesToggleListType(node3, editor, listType) {
|
|
209959
|
+
function paragraphMatchesToggleListType(node3, editor, listType, bulletStyle) {
|
|
209907
209960
|
const kind = getParagraphListKind(node3, editor);
|
|
209908
209961
|
if (!kind)
|
|
209909
209962
|
return false;
|
|
209910
|
-
if (listType === "bulletList")
|
|
209911
|
-
|
|
209963
|
+
if (listType === "bulletList") {
|
|
209964
|
+
if (kind !== "bullet")
|
|
209965
|
+
return false;
|
|
209966
|
+
if (!bulletStyle)
|
|
209967
|
+
return true;
|
|
209968
|
+
const markerText = node3.attrs.listRendering?.markerText;
|
|
209969
|
+
return markerTextToBulletStyle(markerText) === bulletStyle;
|
|
209970
|
+
}
|
|
209912
209971
|
if (listType === "orderedList")
|
|
209913
209972
|
return kind === "ordered";
|
|
209914
209973
|
return false;
|
|
@@ -271284,10 +271343,10 @@ var Node$13 = class Node$14 {
|
|
|
271284
271343
|
} catch {
|
|
271285
271344
|
return false;
|
|
271286
271345
|
}
|
|
271287
|
-
}, toggleList = (listType) => ({ editor, state, tr, dispatch }) => {
|
|
271346
|
+
}, toggleList = (listType, bulletStyle) => ({ editor, state, tr, dispatch }) => {
|
|
271288
271347
|
if (listType !== "orderedList" && listType !== "bulletList")
|
|
271289
271348
|
return false;
|
|
271290
|
-
const predicate = (n) => paragraphMatchesToggleListType(n, editor, listType);
|
|
271349
|
+
const predicate = (n) => paragraphMatchesToggleListType(n, editor, listType, bulletStyle);
|
|
271291
271350
|
const { selection } = state;
|
|
271292
271351
|
const { from: from$1, to } = selection;
|
|
271293
271352
|
let firstListNode = null;
|
|
@@ -271309,7 +271368,8 @@ var Node$13 = class Node$14 {
|
|
|
271309
271368
|
firstListNode = node3;
|
|
271310
271369
|
else if (!predicate(node3))
|
|
271311
271370
|
hasNonListParagraphs = true;
|
|
271312
|
-
|
|
271371
|
+
const selectionAlreadyHasListNumbering = paragraphsInSelection.some(({ node: node3 }) => getResolvedParagraphProperties(node3)?.numberingProperties != null);
|
|
271372
|
+
if (!firstListNode && !selectionAlreadyHasListNumbering && from$1 > 0) {
|
|
271313
271373
|
const beforeNode = getPrecedingParagraphForListReuse(state.doc, from$1, paragraphsInSelection);
|
|
271314
271374
|
if (beforeNode && predicate(beforeNode))
|
|
271315
271375
|
firstListNode = beforeNode;
|
|
@@ -271332,11 +271392,20 @@ var Node$13 = class Node$14 {
|
|
|
271332
271392
|
if (!dispatch)
|
|
271333
271393
|
return true;
|
|
271334
271394
|
if (mode === "create") {
|
|
271395
|
+
let bulletStyleLevel = 0;
|
|
271396
|
+
if (bulletStyle) {
|
|
271397
|
+
const firstExistingListPara = paragraphsInSelection.find(({ node: node3 }) => getResolvedParagraphProperties(node3)?.numberingProperties?.ilvl != null);
|
|
271398
|
+
const existingIlvl = firstExistingListPara ? getResolvedParagraphProperties(firstExistingListPara.node)?.numberingProperties?.ilvl : null;
|
|
271399
|
+
if (existingIlvl != null)
|
|
271400
|
+
bulletStyleLevel = existingIlvl;
|
|
271401
|
+
}
|
|
271335
271402
|
const numId = ListHelpers.getNewListId(editor);
|
|
271336
271403
|
ListHelpers.generateNewListDefinition({
|
|
271337
271404
|
numId: Number(numId),
|
|
271338
271405
|
listType,
|
|
271339
|
-
editor
|
|
271406
|
+
editor,
|
|
271407
|
+
bulletStyle,
|
|
271408
|
+
bulletStyleLevel
|
|
271340
271409
|
});
|
|
271341
271410
|
sharedNumberingProperties = {
|
|
271342
271411
|
numId: Number(numId),
|
|
@@ -271350,7 +271419,11 @@ var Node$13 = class Node$14 {
|
|
|
271350
271419
|
}
|
|
271351
271420
|
if (mode === "reuse" && predicate(node3))
|
|
271352
271421
|
continue;
|
|
271353
|
-
|
|
271422
|
+
const existingIlvl = getResolvedParagraphProperties(node3)?.numberingProperties?.ilvl;
|
|
271423
|
+
updateNumberingProperties(mode === "create" && existingIlvl != null && existingIlvl !== sharedNumberingProperties.ilvl ? {
|
|
271424
|
+
...sharedNumberingProperties,
|
|
271425
|
+
ilvl: existingIlvl
|
|
271426
|
+
} : sharedNumberingProperties, node3, pos, editor, tr);
|
|
271354
271427
|
}
|
|
271355
271428
|
if (paragraphsInSelection.length > 0) {
|
|
271356
271429
|
const firstPara = paragraphsInSelection[0];
|
|
@@ -276666,7 +276739,7 @@ var Node$13 = class Node$14 {
|
|
|
276666
276739
|
if (!target || !target.classList)
|
|
276667
276740
|
return;
|
|
276668
276741
|
target.classList.add(STYLE_ISOLATION_CLASS);
|
|
276669
|
-
}, _hoisted_1$
|
|
276742
|
+
}, _hoisted_1$23, _hoisted_2$17, _hoisted_3$13, _hoisted_4$9, _hoisted_5$6, Mentions_default, popoverPluginKey, PopoverPlugin, Popover = class {
|
|
276670
276743
|
constructor(view, editor) {
|
|
276671
276744
|
this.editor = editor;
|
|
276672
276745
|
this.view = view;
|
|
@@ -278112,6 +278185,8 @@ var Node$13 = class Node$14 {
|
|
|
278112
278185
|
const parentItem = exports_vue.ref(null);
|
|
278113
278186
|
const iconColor = exports_vue.ref(options.iconColor);
|
|
278114
278187
|
const hasCaret = exports_vue.ref(options.hasCaret);
|
|
278188
|
+
const splitButton = exports_vue.ref(Boolean(options.splitButton));
|
|
278189
|
+
const splitButtonCommand = options.splitButtonCommand;
|
|
278115
278190
|
const restoreEditorFocus = Boolean(options.restoreEditorFocus);
|
|
278116
278191
|
const dropdownStyles = exports_vue.ref(options.dropdownStyles);
|
|
278117
278192
|
const tooltip = exports_vue.ref(options.tooltip);
|
|
@@ -278181,6 +278256,8 @@ var Node$13 = class Node$14 {
|
|
|
278181
278256
|
parentItem,
|
|
278182
278257
|
iconColor,
|
|
278183
278258
|
hasCaret,
|
|
278259
|
+
splitButton,
|
|
278260
|
+
splitButtonCommand,
|
|
278184
278261
|
dropdownStyles,
|
|
278185
278262
|
tooltipVisible,
|
|
278186
278263
|
tooltipTimeout,
|
|
@@ -278228,10 +278305,12 @@ var Node$13 = class Node$14 {
|
|
|
278228
278305
|
</linearGradient>
|
|
278229
278306
|
</defs>
|
|
278230
278307
|
<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"/>
|
|
278231
|
-
</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>
|
|
278308
|
+
</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>
|
|
278309
|
+
`, 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>
|
|
278310
|
+
`, 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>
|
|
278232
278311
|
`, 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>
|
|
278233
278312
|
`, 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>
|
|
278234
|
-
`, 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$
|
|
278313
|
+
`, 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>
|
|
278235
278314
|
`, _hoisted_1$15, _hoisted_2$11, _hoisted_3$8, IconGrid_default, closeDropdown$1 = (dropdown) => {
|
|
278236
278315
|
dropdown.expand.value = false;
|
|
278237
278316
|
}, makeColorOption = (color2, label = null) => {
|
|
@@ -278775,14 +278854,38 @@ var Node$13 = class Node$14 {
|
|
|
278775
278854
|
alignment$2.icon.value = icon;
|
|
278776
278855
|
};
|
|
278777
278856
|
const bulletedList = useToolbarItem({
|
|
278778
|
-
type: "
|
|
278857
|
+
type: "dropdown",
|
|
278779
278858
|
name: "list",
|
|
278780
|
-
command: "
|
|
278859
|
+
command: "toggleBulletListStyle",
|
|
278860
|
+
splitButton: true,
|
|
278861
|
+
splitButtonCommand: "toggleBulletList",
|
|
278781
278862
|
icon: toolbarIcons$1.bulletList,
|
|
278782
|
-
|
|
278863
|
+
hasCaret: true,
|
|
278783
278864
|
tooltip: toolbarTexts$1.bulletList,
|
|
278784
278865
|
restoreEditorFocus: true,
|
|
278785
|
-
|
|
278866
|
+
suppressActiveHighlight: true,
|
|
278867
|
+
attributes: { ariaLabel: "Bullet list" },
|
|
278868
|
+
options: [{
|
|
278869
|
+
type: "render",
|
|
278870
|
+
key: "bullet-style-buttons",
|
|
278871
|
+
render: () => {
|
|
278872
|
+
const handleSelect = (style2) => {
|
|
278873
|
+
closeDropdown(bulletedList);
|
|
278874
|
+
const item = {
|
|
278875
|
+
...bulletedList,
|
|
278876
|
+
command: "toggleBulletListStyle"
|
|
278877
|
+
};
|
|
278878
|
+
superToolbar.emitCommand({
|
|
278879
|
+
item,
|
|
278880
|
+
argument: style2
|
|
278881
|
+
});
|
|
278882
|
+
};
|
|
278883
|
+
return exports_vue.h(BulletStyleButtons_default, {
|
|
278884
|
+
selectedStyle: bulletedList.selectedValue.value,
|
|
278885
|
+
onSelect: handleSelect
|
|
278886
|
+
});
|
|
278887
|
+
}
|
|
278888
|
+
}]
|
|
278786
278889
|
});
|
|
278787
278890
|
const numberedList = useToolbarItem({
|
|
278788
278891
|
type: "button",
|
|
@@ -279253,7 +279356,7 @@ var Node$13 = class Node$14 {
|
|
|
279253
279356
|
defaultItems: visibleItems,
|
|
279254
279357
|
overflowItems: overflowItems.filter((item) => item.type !== "separator")
|
|
279255
279358
|
};
|
|
279256
|
-
}, _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 = {}) => {
|
|
279359
|
+
}, _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 = {}) => {
|
|
279257
279360
|
const fontFamilyProps = paragraphProps?.runProperties?.fontFamily;
|
|
279258
279361
|
if (!fontFamilyProps)
|
|
279259
279362
|
return null;
|
|
@@ -280073,7 +280176,7 @@ var Node$13 = class Node$14 {
|
|
|
280073
280176
|
domAvailabilityCache = false;
|
|
280074
280177
|
return false;
|
|
280075
280178
|
}
|
|
280076
|
-
}, summaryVersion = "1.29.
|
|
280179
|
+
}, summaryVersion = "1.29.1", nodeKeys, markKeys, transformListsInCopiedContent = (html3) => {
|
|
280077
280180
|
const container = document.createElement("div");
|
|
280078
280181
|
container.innerHTML = html3;
|
|
280079
280182
|
const result = [];
|
|
@@ -281247,7 +281350,7 @@ var Node$13 = class Node$14 {
|
|
|
281247
281350
|
return () => {};
|
|
281248
281351
|
const handle3 = setInterval(callback, intervalMs);
|
|
281249
281352
|
return () => clearInterval(handle3);
|
|
281250
|
-
}, 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.
|
|
281353
|
+
}, 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 = (extension3) => {
|
|
281251
281354
|
const extensionLike = extension3;
|
|
281252
281355
|
const config2 = extensionLike?.config;
|
|
281253
281356
|
const ExtensionCtor = extensionLike?.constructor;
|
|
@@ -296377,22 +296480,22 @@ menclose::after {
|
|
|
296377
296480
|
return;
|
|
296378
296481
|
console.log(...args$1);
|
|
296379
296482
|
}, 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;
|
|
296380
|
-
var
|
|
296483
|
+
var init_src_CCV76OsP_es = __esm(() => {
|
|
296381
296484
|
init_rolldown_runtime_Bg48TavK_es();
|
|
296382
|
-
|
|
296485
|
+
init_SuperConverter_BTy5lByv_es();
|
|
296383
296486
|
init_jszip_C49i9kUs_es();
|
|
296384
296487
|
init_uuid_qzgm05fK_es();
|
|
296385
|
-
|
|
296488
|
+
init_create_headless_toolbar_k6nNYL53_es();
|
|
296386
296489
|
init_constants_DrU4EASo_es();
|
|
296387
296490
|
init_dist_B8HfvhaK_es();
|
|
296388
296491
|
init_unified_Dsuw2be5_es();
|
|
296389
296492
|
init_remark_gfm_BhnWr3yf_es();
|
|
296390
296493
|
init_remark_stringify_6MMJfY0k_es();
|
|
296391
|
-
|
|
296494
|
+
init_DocxZipper_CUX64E5K_es();
|
|
296392
296495
|
init__plugin_vue_export_helper_HmhZBO0u_es();
|
|
296393
|
-
|
|
296394
|
-
|
|
296395
|
-
|
|
296496
|
+
init_eventemitter3_BJrNoN9D_es();
|
|
296497
|
+
init_errors_C_DoKMoN_es();
|
|
296498
|
+
init_blank_docx_CDDHd6CH_es();
|
|
296396
296499
|
init_yjs();
|
|
296397
296500
|
init_yjs();
|
|
296398
296501
|
init_vue();
|
|
@@ -299385,6 +299488,9 @@ ${err.toString()}`);
|
|
|
299385
299488
|
toggleBulletList: () => (params$1) => {
|
|
299386
299489
|
return toggleList("bulletList")(params$1);
|
|
299387
299490
|
},
|
|
299491
|
+
toggleBulletListStyle: (style2) => (params$1) => {
|
|
299492
|
+
return toggleList("bulletList", style2)(params$1);
|
|
299493
|
+
},
|
|
299388
299494
|
restartNumbering: () => restartNumbering
|
|
299389
299495
|
};
|
|
299390
299496
|
},
|
|
@@ -313618,7 +313724,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
313618
313724
|
} });
|
|
313619
313725
|
tippy.setDefaultProps({ render });
|
|
313620
313726
|
tippy_esm_default = tippy;
|
|
313621
|
-
_hoisted_1$
|
|
313727
|
+
_hoisted_1$23 = ["onClick", "onMouseenter"];
|
|
313622
313728
|
_hoisted_2$17 = { key: 0 };
|
|
313623
313729
|
_hoisted_3$13 = { key: 0 };
|
|
313624
313730
|
_hoisted_4$9 = { key: 1 };
|
|
@@ -313688,7 +313794,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
313688
313794
|
onMouseleave: _cache[0] || (_cache[0] = ($event) => activeUserIndex.value = null),
|
|
313689
313795
|
key: user.email,
|
|
313690
313796
|
class: exports_vue.normalizeClass(["user-row", { selected: activeUserIndex.value === index2 }])
|
|
313691
|
-
}, [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$
|
|
313797
|
+
}, [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);
|
|
313692
313798
|
}), 128))], 544);
|
|
313693
313799
|
};
|
|
313694
313800
|
}
|
|
@@ -314768,7 +314874,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
314768
314874
|
})
|
|
314769
314875
|
}
|
|
314770
314876
|
] };
|
|
314771
|
-
_hoisted_1$
|
|
314877
|
+
_hoisted_1$22 = { class: "ai-user-input-field" };
|
|
314772
314878
|
_hoisted_2$16 = ["innerHTML"];
|
|
314773
314879
|
_hoisted_3$12 = ["placeholder"];
|
|
314774
314880
|
_hoisted_4$8 = { class: "ai-loader" };
|
|
@@ -314999,7 +315105,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
314999
315105
|
ref_key: "aiWriterRef",
|
|
315000
315106
|
ref: aiWriterRef,
|
|
315001
315107
|
onMousedown: _cache[1] || (_cache[1] = exports_vue.withModifiers(() => {}, ["stop"]))
|
|
315002
|
-
}, [exports_vue.createElementVNode("div", _hoisted_1$
|
|
315108
|
+
}, [exports_vue.createElementVNode("div", _hoisted_1$22, [exports_vue.createElementVNode("span", {
|
|
315003
315109
|
class: "ai-textarea-icon",
|
|
315004
315110
|
innerHTML: exports_vue.unref(edit_regular_default)
|
|
315005
315111
|
}, null, 8, _hoisted_2$16), exports_vue.withDirectives(exports_vue.createElementVNode("textarea", {
|
|
@@ -315035,6 +315141,9 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
315035
315141
|
alignCenter: align_center_solid_default,
|
|
315036
315142
|
alignJustify: align_justify_solid_default,
|
|
315037
315143
|
bulletList: list_solid_default,
|
|
315144
|
+
bulletListDisc: list_solid_default,
|
|
315145
|
+
bulletListCircle: list_circle_solid_default,
|
|
315146
|
+
bulletListSquare: list_square_solid_default,
|
|
315038
315147
|
numberedList: list_ol_solid_default,
|
|
315039
315148
|
indentLeft: outdent_solid_default,
|
|
315040
315149
|
indentRight: indent_solid_default,
|
|
@@ -315082,7 +315191,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
315082
315191
|
paste: paste_solid_default,
|
|
315083
315192
|
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'
|
|
315084
315193
|
};
|
|
315085
|
-
_hoisted_1$
|
|
315194
|
+
_hoisted_1$21 = [
|
|
315086
315195
|
"onClick",
|
|
315087
315196
|
"innerHTML",
|
|
315088
315197
|
"aria-label",
|
|
@@ -315174,11 +315283,107 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
315174
315283
|
ref_key: "alignmentButtonsRefs",
|
|
315175
315284
|
ref: alignmentButtonsRefs,
|
|
315176
315285
|
onKeydown: exports_vue.withModifiers((event) => handleKeyDown$1(event, index2), ["prevent"])
|
|
315177
|
-
}, null, 40, _hoisted_1$
|
|
315286
|
+
}, null, 40, _hoisted_1$21);
|
|
315178
315287
|
}), 64))], 2);
|
|
315179
315288
|
};
|
|
315180
315289
|
}
|
|
315181
315290
|
}, [["__scopeId", "data-v-3f7f0d98"]]);
|
|
315291
|
+
_hoisted_1$20 = [
|
|
315292
|
+
"onClick",
|
|
315293
|
+
"innerHTML",
|
|
315294
|
+
"aria-label",
|
|
315295
|
+
"onKeydown"
|
|
315296
|
+
];
|
|
315297
|
+
BulletStyleButtons_default = /* @__PURE__ */ __plugin_vue_export_helper_default({
|
|
315298
|
+
__name: "BulletStyleButtons",
|
|
315299
|
+
props: { selectedStyle: {
|
|
315300
|
+
type: String,
|
|
315301
|
+
default: null
|
|
315302
|
+
} },
|
|
315303
|
+
emits: ["select"],
|
|
315304
|
+
setup(__props, { emit: __emit }) {
|
|
315305
|
+
const { isHighContrastMode: isHighContrastMode$1 } = useHighContrastMode();
|
|
315306
|
+
const emit = __emit;
|
|
315307
|
+
const props = __props;
|
|
315308
|
+
const buttonRefs = exports_vue.ref([]);
|
|
315309
|
+
const bulletButtons = [
|
|
315310
|
+
{
|
|
315311
|
+
key: "disc",
|
|
315312
|
+
icon: toolbarIcons.bulletListDisc,
|
|
315313
|
+
ariaLabel: "Opaque circle"
|
|
315314
|
+
},
|
|
315315
|
+
{
|
|
315316
|
+
key: "circle",
|
|
315317
|
+
icon: toolbarIcons.bulletListCircle,
|
|
315318
|
+
ariaLabel: "Outline circle"
|
|
315319
|
+
},
|
|
315320
|
+
{
|
|
315321
|
+
key: "square",
|
|
315322
|
+
icon: toolbarIcons.bulletListSquare,
|
|
315323
|
+
ariaLabel: "Opaque square"
|
|
315324
|
+
}
|
|
315325
|
+
];
|
|
315326
|
+
const select2 = (key2) => {
|
|
315327
|
+
emit("select", key2);
|
|
315328
|
+
};
|
|
315329
|
+
const moveToNextButton = (index2) => {
|
|
315330
|
+
if (index2 === buttonRefs.value.length - 1)
|
|
315331
|
+
return;
|
|
315332
|
+
const next2 = buttonRefs.value[index2 + 1];
|
|
315333
|
+
if (next2) {
|
|
315334
|
+
next2.setAttribute("tabindex", "0");
|
|
315335
|
+
next2.focus();
|
|
315336
|
+
}
|
|
315337
|
+
};
|
|
315338
|
+
const moveToPreviousButton = (index2) => {
|
|
315339
|
+
if (index2 === 0)
|
|
315340
|
+
return;
|
|
315341
|
+
const prev = buttonRefs.value[index2 - 1];
|
|
315342
|
+
if (prev) {
|
|
315343
|
+
prev.setAttribute("tabindex", "0");
|
|
315344
|
+
prev.focus();
|
|
315345
|
+
}
|
|
315346
|
+
};
|
|
315347
|
+
const handleKeyDown$1 = (e, index2) => {
|
|
315348
|
+
switch (e.key) {
|
|
315349
|
+
case "ArrowLeft":
|
|
315350
|
+
moveToPreviousButton(index2);
|
|
315351
|
+
break;
|
|
315352
|
+
case "ArrowRight":
|
|
315353
|
+
moveToNextButton(index2);
|
|
315354
|
+
break;
|
|
315355
|
+
case "Enter":
|
|
315356
|
+
select2(bulletButtons[index2].key);
|
|
315357
|
+
break;
|
|
315358
|
+
default:
|
|
315359
|
+
break;
|
|
315360
|
+
}
|
|
315361
|
+
};
|
|
315362
|
+
exports_vue.onMounted(() => {
|
|
315363
|
+
const first$1 = buttonRefs.value[0];
|
|
315364
|
+
if (first$1) {
|
|
315365
|
+
first$1.setAttribute("tabindex", "0");
|
|
315366
|
+
first$1.focus();
|
|
315367
|
+
}
|
|
315368
|
+
});
|
|
315369
|
+
return (_ctx, _cache) => {
|
|
315370
|
+
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) => {
|
|
315371
|
+
return exports_vue.createElementVNode("div", {
|
|
315372
|
+
key: button.key,
|
|
315373
|
+
class: exports_vue.normalizeClass(["button-icon", { selected: props.selectedStyle === button.key }]),
|
|
315374
|
+
onClick: ($event) => select2(button.key),
|
|
315375
|
+
innerHTML: button.icon,
|
|
315376
|
+
role: "menuitem",
|
|
315377
|
+
"aria-label": button.ariaLabel,
|
|
315378
|
+
ref_for: true,
|
|
315379
|
+
ref_key: "buttonRefs",
|
|
315380
|
+
ref: buttonRefs,
|
|
315381
|
+
onKeydown: exports_vue.withModifiers((event) => handleKeyDown$1(event, index2), ["prevent"])
|
|
315382
|
+
}, null, 42, _hoisted_1$20);
|
|
315383
|
+
}), 64))], 2);
|
|
315384
|
+
};
|
|
315385
|
+
}
|
|
315386
|
+
}, [["__scopeId", "data-v-e1b3c81e"]]);
|
|
315182
315387
|
_hoisted_1$19 = ["onClick", "onKeydown"];
|
|
315183
315388
|
_hoisted_2$15 = { class: "document-mode-column icon-column" };
|
|
315184
315389
|
_hoisted_3$11 = ["innerHTML"];
|
|
@@ -315356,10 +315561,10 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
315356
315561
|
_hoisted_6$1 = { class: "input-row text-input-row" };
|
|
315357
315562
|
_hoisted_7$1 = ["readonly"];
|
|
315358
315563
|
_hoisted_8$1 = { class: "input-row url-input-row" };
|
|
315359
|
-
_hoisted_9 = ["innerHTML"];
|
|
315360
|
-
_hoisted_10 = ["readonly", "onKeydown"];
|
|
315361
|
-
_hoisted_11 = ["innerHTML"];
|
|
315362
|
-
_hoisted_12 = {
|
|
315564
|
+
_hoisted_9$1 = ["innerHTML"];
|
|
315565
|
+
_hoisted_10$1 = ["readonly", "onKeydown"];
|
|
315566
|
+
_hoisted_11$1 = ["innerHTML"];
|
|
315567
|
+
_hoisted_12$1 = {
|
|
315363
315568
|
key: 0,
|
|
315364
315569
|
class: "input-row link-buttons"
|
|
315365
315570
|
};
|
|
@@ -315549,7 +315754,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
315549
315754
|
exports_vue.createElementVNode("div", {
|
|
315550
315755
|
class: "input-icon",
|
|
315551
315756
|
innerHTML: exports_vue.unref(toolbarIcons).linkInput
|
|
315552
|
-
}, null, 8, _hoisted_9),
|
|
315757
|
+
}, null, 8, _hoisted_9$1),
|
|
315553
315758
|
exports_vue.withDirectives(exports_vue.createElementVNode("input", {
|
|
315554
315759
|
type: "text",
|
|
315555
315760
|
name: "link",
|
|
@@ -315558,15 +315763,15 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
315558
315763
|
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => rawUrl.value = $event),
|
|
315559
315764
|
readonly: isViewingMode.value,
|
|
315560
315765
|
onKeydown: [exports_vue.withKeys(exports_vue.withModifiers(handleSubmit, ["stop", "prevent"]), ["enter"]), _cache[3] || (_cache[3] = ($event) => urlError.value = false)]
|
|
315561
|
-
}, null, 42, _hoisted_10), [[exports_vue.vModelText, rawUrl.value]]),
|
|
315766
|
+
}, null, 42, _hoisted_10$1), [[exports_vue.vModelText, rawUrl.value]]),
|
|
315562
315767
|
exports_vue.createElementVNode("div", {
|
|
315563
315768
|
class: exports_vue.normalizeClass(["open-link-icon", { disabled: !validUrl.value }]),
|
|
315564
315769
|
innerHTML: exports_vue.unref(toolbarIcons).openLink,
|
|
315565
315770
|
onClick: openLink,
|
|
315566
315771
|
"data-item": "btn-link-open"
|
|
315567
|
-
}, null, 10, _hoisted_11)
|
|
315772
|
+
}, null, 10, _hoisted_11$1)
|
|
315568
315773
|
]),
|
|
315569
|
-
!isViewingMode.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_12, [isEditing.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("button", {
|
|
315774
|
+
!isViewingMode.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", _hoisted_12$1, [isEditing.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("button", {
|
|
315570
315775
|
key: 0,
|
|
315571
315776
|
class: "remove-btn",
|
|
315572
315777
|
onClick: handleRemove,
|
|
@@ -316238,25 +316443,28 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
316238
316443
|
};
|
|
316239
316444
|
}
|
|
316240
316445
|
}, [["__scopeId", "data-v-8c30c125"]]);
|
|
316241
|
-
_hoisted_1$10 = [
|
|
316242
|
-
"role",
|
|
316243
|
-
"aria-label",
|
|
316244
|
-
"onKeydown"
|
|
316245
|
-
];
|
|
316446
|
+
_hoisted_1$10 = ["role", "aria-label"];
|
|
316246
316447
|
_hoisted_2$6 = ["data-item"];
|
|
316247
|
-
_hoisted_3$5 =
|
|
316448
|
+
_hoisted_3$5 = ["data-item"];
|
|
316449
|
+
_hoisted_4$4 = {
|
|
316248
316450
|
key: 1,
|
|
316249
316451
|
class: "button-label"
|
|
316250
316452
|
};
|
|
316251
|
-
|
|
316252
|
-
|
|
316253
|
-
|
|
316453
|
+
_hoisted_5$1 = ["data-item", "aria-label"];
|
|
316454
|
+
_hoisted_6 = ["innerHTML"];
|
|
316455
|
+
_hoisted_7 = {
|
|
316456
|
+
key: 1,
|
|
316457
|
+
class: "button-label"
|
|
316458
|
+
};
|
|
316459
|
+
_hoisted_8 = { key: 2 };
|
|
316460
|
+
_hoisted_9 = ["onKeydown", "id"];
|
|
316461
|
+
_hoisted_10 = [
|
|
316254
316462
|
"placeholder",
|
|
316255
316463
|
"onKeydown",
|
|
316256
316464
|
"id"
|
|
316257
316465
|
];
|
|
316258
|
-
|
|
316259
|
-
|
|
316466
|
+
_hoisted_11 = ["innerHTML"];
|
|
316467
|
+
_hoisted_12 = {
|
|
316260
316468
|
"aria-live": "polite",
|
|
316261
316469
|
class: "visually-hidden"
|
|
316262
316470
|
};
|
|
@@ -316292,11 +316500,16 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
316292
316500
|
default: false
|
|
316293
316501
|
}
|
|
316294
316502
|
},
|
|
316295
|
-
emits: [
|
|
316503
|
+
emits: [
|
|
316504
|
+
"buttonClick",
|
|
316505
|
+
"textSubmit",
|
|
316506
|
+
"mainClick"
|
|
316507
|
+
],
|
|
316296
316508
|
setup(__props, { emit: __emit }) {
|
|
316297
316509
|
const emit = __emit;
|
|
316298
316510
|
const props = __props;
|
|
316299
|
-
const { name, active, icon, label, hideLabel, iconColor, hasCaret, disabled, inlineTextInputVisible, hasInlineTextInput, minWidth, style: style2, attributes } = props.toolbarItem;
|
|
316511
|
+
const { name, active, icon, label, hideLabel, iconColor, hasCaret, splitButton, disabled, inlineTextInputVisible, hasInlineTextInput, minWidth, style: style2, attributes } = props.toolbarItem;
|
|
316512
|
+
const isSplit = exports_vue.computed(() => Boolean(splitButton?.value) && Boolean(hasCaret?.value));
|
|
316300
316513
|
const inlineTextInput = exports_vue.ref(label);
|
|
316301
316514
|
const inlineInput = exports_vue.ref(null);
|
|
316302
316515
|
const { isHighContrastMode: isHighContrastMode$1 } = useHighContrastMode();
|
|
@@ -316308,6 +316521,24 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
316308
316521
|
});
|
|
316309
316522
|
emit("buttonClick");
|
|
316310
316523
|
};
|
|
316524
|
+
const handleSplitMainClick = (event) => {
|
|
316525
|
+
if (disabled?.value)
|
|
316526
|
+
return;
|
|
316527
|
+
event?.stopPropagation();
|
|
316528
|
+
emit("mainClick");
|
|
316529
|
+
};
|
|
316530
|
+
const handleOuterClick = () => {
|
|
316531
|
+
if (isSplit.value)
|
|
316532
|
+
return;
|
|
316533
|
+
handleClick$1();
|
|
316534
|
+
};
|
|
316535
|
+
const handleOuterEnter = (event) => {
|
|
316536
|
+
if (isSplit.value) {
|
|
316537
|
+
handleSplitMainClick(event);
|
|
316538
|
+
return;
|
|
316539
|
+
}
|
|
316540
|
+
handleClick$1();
|
|
316541
|
+
};
|
|
316311
316542
|
const handleInputSubmit = () => {
|
|
316312
316543
|
const value = inlineTextInput.value;
|
|
316313
316544
|
const cleanValue = value.match(/^\d+(\.5)?$/) ? value : Math.floor(parseFloat(value)).toString();
|
|
@@ -316328,8 +316559,8 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
316328
316559
|
style: exports_vue.normalizeStyle(getStyle.value),
|
|
316329
316560
|
role: __props.isOverflowItem ? "menuitem" : "button",
|
|
316330
316561
|
"aria-label": exports_vue.unref(attributes).ariaLabel,
|
|
316331
|
-
onClick:
|
|
316332
|
-
onKeydown: exports_vue.withKeys(exports_vue.withModifiers(
|
|
316562
|
+
onClick: handleOuterClick,
|
|
316563
|
+
onKeydown: _cache[3] || (_cache[3] = exports_vue.withKeys(exports_vue.withModifiers(($event) => handleOuterEnter($event), ["stop"]), ["enter"])),
|
|
316333
316564
|
tabindex: "0"
|
|
316334
316565
|
}, [exports_vue.createElementVNode("div", {
|
|
316335
316566
|
class: exports_vue.normalizeClass(["toolbar-button", {
|
|
@@ -316337,12 +316568,18 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
316337
316568
|
disabled: exports_vue.unref(disabled),
|
|
316338
316569
|
narrow: __props.isNarrow,
|
|
316339
316570
|
wide: __props.isWide,
|
|
316571
|
+
split: isSplit.value,
|
|
316340
316572
|
"has-inline-text-input": exports_vue.unref(hasInlineTextInput),
|
|
316341
316573
|
"high-contrast": exports_vue.unref(isHighContrastMode$1)
|
|
316342
316574
|
}]),
|
|
316343
316575
|
"data-item": `btn-${exports_vue.unref(name) || ""}`
|
|
316344
316576
|
}, [
|
|
316345
|
-
|
|
316577
|
+
isSplit.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", {
|
|
316578
|
+
key: 0,
|
|
316579
|
+
class: "toolbar-button__main",
|
|
316580
|
+
"data-item": `btn-${exports_vue.unref(name) || ""}-main`,
|
|
316581
|
+
onClick: _cache[0] || (_cache[0] = ($event) => handleSplitMainClick($event))
|
|
316582
|
+
}, [exports_vue.unref(icon) ? (exports_vue.openBlock(), exports_vue.createBlock(ToolbarButtonIcon_default, {
|
|
316346
316583
|
key: 0,
|
|
316347
316584
|
color: exports_vue.unref(iconColor),
|
|
316348
316585
|
class: "toolbar-icon",
|
|
@@ -316352,41 +316589,64 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
316352
316589
|
"color",
|
|
316353
316590
|
"icon",
|
|
316354
316591
|
"name"
|
|
316355
|
-
])) : exports_vue.createCommentVNode("", true),
|
|
316356
|
-
|
|
316357
|
-
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", {
|
|
316358
|
-
key: 0,
|
|
316359
|
-
"onUpdate:modelValue": _cache[0] || (_cache[0] = ($event) => inlineTextInput.value = $event),
|
|
316360
|
-
onKeydown: exports_vue.withKeys(exports_vue.withModifiers(handleInputSubmit, ["prevent"]), ["enter"]),
|
|
316361
|
-
type: "text",
|
|
316362
|
-
class: exports_vue.normalizeClass(["button-text-input button-text-input--font-size", { "high-contrast": exports_vue.unref(isHighContrastMode$1) }]),
|
|
316363
|
-
id: "inlineTextInput-" + exports_vue.unref(name),
|
|
316364
|
-
autocomplete: "off",
|
|
316365
|
-
ref_key: "inlineInput",
|
|
316366
|
-
ref: inlineInput
|
|
316367
|
-
}, null, 42, _hoisted_5$1)), [[exports_vue.vModelText, inlineTextInput.value]]) : exports_vue.withDirectives((exports_vue.openBlock(), exports_vue.createElementBlock("input", {
|
|
316592
|
+
])) : 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),
|
|
316593
|
+
isSplit.value ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", {
|
|
316368
316594
|
key: 1,
|
|
316369
|
-
|
|
316370
|
-
|
|
316371
|
-
|
|
316372
|
-
|
|
316373
|
-
|
|
316374
|
-
id: "inlineTextInput-" + exports_vue.unref(name),
|
|
316375
|
-
autocomplete: "off",
|
|
316376
|
-
ref_key: "inlineInput",
|
|
316377
|
-
ref: inlineInput
|
|
316378
|
-
}, null, 40, _hoisted_6)), [[exports_vue.vModelText, inlineTextInput.value]])])) : exports_vue.createCommentVNode("", true),
|
|
316379
|
-
exports_vue.unref(hasCaret) ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", {
|
|
316380
|
-
key: 3,
|
|
316595
|
+
class: "toolbar-button__caret",
|
|
316596
|
+
"data-item": `btn-${exports_vue.unref(name) || ""}-caret`,
|
|
316597
|
+
"aria-label": `${exports_vue.unref(attributes).ariaLabel} options`,
|
|
316598
|
+
role: "button"
|
|
316599
|
+
}, [exports_vue.createElementVNode("div", {
|
|
316381
316600
|
class: "dropdown-caret",
|
|
316382
316601
|
innerHTML: caretIcon.value,
|
|
316383
316602
|
style: exports_vue.normalizeStyle({ opacity: exports_vue.unref(disabled) ? 0.6 : 1 })
|
|
316384
|
-
}, null, 12,
|
|
316385
|
-
|
|
316603
|
+
}, null, 12, _hoisted_6)], 8, _hoisted_5$1)) : (exports_vue.openBlock(), exports_vue.createElementBlock(exports_vue.Fragment, { key: 2 }, [
|
|
316604
|
+
exports_vue.unref(icon) ? (exports_vue.openBlock(), exports_vue.createBlock(ToolbarButtonIcon_default, {
|
|
316605
|
+
key: 0,
|
|
316606
|
+
color: exports_vue.unref(iconColor),
|
|
316607
|
+
class: "toolbar-icon",
|
|
316608
|
+
icon: exports_vue.unref(icon),
|
|
316609
|
+
name: exports_vue.unref(name)
|
|
316610
|
+
}, null, 8, [
|
|
316611
|
+
"color",
|
|
316612
|
+
"icon",
|
|
316613
|
+
"name"
|
|
316614
|
+
])) : exports_vue.createCommentVNode("", true),
|
|
316615
|
+
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),
|
|
316616
|
+
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", {
|
|
316617
|
+
key: 0,
|
|
316618
|
+
"onUpdate:modelValue": _cache[1] || (_cache[1] = ($event) => inlineTextInput.value = $event),
|
|
316619
|
+
onKeydown: exports_vue.withKeys(exports_vue.withModifiers(handleInputSubmit, ["prevent"]), ["enter"]),
|
|
316620
|
+
type: "text",
|
|
316621
|
+
class: exports_vue.normalizeClass(["button-text-input button-text-input--font-size", { "high-contrast": exports_vue.unref(isHighContrastMode$1) }]),
|
|
316622
|
+
id: "inlineTextInput-" + exports_vue.unref(name),
|
|
316623
|
+
autocomplete: "off",
|
|
316624
|
+
ref_key: "inlineInput",
|
|
316625
|
+
ref: inlineInput
|
|
316626
|
+
}, null, 42, _hoisted_9)), [[exports_vue.vModelText, inlineTextInput.value]]) : exports_vue.withDirectives((exports_vue.openBlock(), exports_vue.createElementBlock("input", {
|
|
316627
|
+
key: 1,
|
|
316628
|
+
"onUpdate:modelValue": _cache[2] || (_cache[2] = ($event) => inlineTextInput.value = $event),
|
|
316629
|
+
placeholder: exports_vue.unref(label),
|
|
316630
|
+
onKeydown: exports_vue.withKeys(exports_vue.withModifiers(handleInputSubmit, ["prevent"]), ["enter"]),
|
|
316631
|
+
type: "text",
|
|
316632
|
+
class: "button-text-input",
|
|
316633
|
+
id: "inlineTextInput-" + exports_vue.unref(name),
|
|
316634
|
+
autocomplete: "off",
|
|
316635
|
+
ref_key: "inlineInput",
|
|
316636
|
+
ref: inlineInput
|
|
316637
|
+
}, null, 40, _hoisted_10)), [[exports_vue.vModelText, inlineTextInput.value]])])) : exports_vue.createCommentVNode("", true),
|
|
316638
|
+
exports_vue.unref(hasCaret) ? (exports_vue.openBlock(), exports_vue.createElementBlock("div", {
|
|
316639
|
+
key: 3,
|
|
316640
|
+
class: "dropdown-caret",
|
|
316641
|
+
innerHTML: caretIcon.value,
|
|
316642
|
+
style: exports_vue.normalizeStyle({ opacity: exports_vue.unref(disabled) ? 0.6 : 1 })
|
|
316643
|
+
}, null, 12, _hoisted_11)) : exports_vue.createCommentVNode("", true)
|
|
316644
|
+
], 64)),
|
|
316645
|
+
exports_vue.createElementVNode("div", _hoisted_12, exports_vue.toDisplayString(`${exports_vue.unref(attributes).ariaLabel} ${exports_vue.unref(active) ? "selected" : "unset"}`), 1)
|
|
316386
316646
|
], 10, _hoisted_2$6)], 46, _hoisted_1$10);
|
|
316387
316647
|
};
|
|
316388
316648
|
}
|
|
316389
|
-
}, [["__scopeId", "data-v-
|
|
316649
|
+
}, [["__scopeId", "data-v-fdaeb82f"]]);
|
|
316390
316650
|
_hoisted_1$9 = {
|
|
316391
316651
|
class: "toolbar-separator",
|
|
316392
316652
|
role: "separator",
|
|
@@ -317124,6 +317384,25 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
317124
317384
|
argument
|
|
317125
317385
|
});
|
|
317126
317386
|
};
|
|
317387
|
+
const handleSplitButtonMainClick = (item) => {
|
|
317388
|
+
if (item.disabled.value)
|
|
317389
|
+
return;
|
|
317390
|
+
closeDropdowns();
|
|
317391
|
+
const splitCommand = item.splitButtonCommand;
|
|
317392
|
+
const dropdownCommand = item.command;
|
|
317393
|
+
const targetCommand = splitCommand || dropdownCommand;
|
|
317394
|
+
if (!targetCommand)
|
|
317395
|
+
return;
|
|
317396
|
+
const commandItem = {
|
|
317397
|
+
...item,
|
|
317398
|
+
command: targetCommand
|
|
317399
|
+
};
|
|
317400
|
+
emit("item-clicked");
|
|
317401
|
+
emit("command", {
|
|
317402
|
+
item: commandItem,
|
|
317403
|
+
argument: null
|
|
317404
|
+
});
|
|
317405
|
+
};
|
|
317127
317406
|
const closeDropdowns = () => {
|
|
317128
317407
|
const toolbarItems = proxy?.$toolbar?.toolbarItems || [];
|
|
317129
317408
|
const overflowItems = proxy?.$toolbar?.overflowItems || [];
|
|
@@ -317327,11 +317606,13 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
317327
317606
|
trigger: exports_vue.withCtx(() => [exports_vue.createVNode(ToolbarButton_default, {
|
|
317328
317607
|
"toolbar-item": item,
|
|
317329
317608
|
disabled: item.disabled.value,
|
|
317330
|
-
onTextSubmit: ($event) => handleToolbarButtonTextSubmit(item, $event)
|
|
317609
|
+
onTextSubmit: ($event) => handleToolbarButtonTextSubmit(item, $event),
|
|
317610
|
+
onMainClick: ($event) => handleSplitButtonMainClick(item)
|
|
317331
317611
|
}, null, 8, [
|
|
317332
317612
|
"toolbar-item",
|
|
317333
317613
|
"disabled",
|
|
317334
|
-
"onTextSubmit"
|
|
317614
|
+
"onTextSubmit",
|
|
317615
|
+
"onMainClick"
|
|
317335
317616
|
])]),
|
|
317336
317617
|
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)])]),
|
|
317337
317618
|
_: 2
|
|
@@ -317382,7 +317663,7 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
317382
317663
|
}), 128))], 36);
|
|
317383
317664
|
};
|
|
317384
317665
|
}
|
|
317385
|
-
}, [["__scopeId", "data-v-
|
|
317666
|
+
}, [["__scopeId", "data-v-7dc120d3"]]);
|
|
317386
317667
|
Toolbar_default = /* @__PURE__ */ __plugin_vue_export_helper_default({
|
|
317387
317668
|
__name: "Toolbar",
|
|
317388
317669
|
emits: [
|
|
@@ -317912,6 +318193,15 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
317912
318193
|
else
|
|
317913
318194
|
item.label.value = this.config.texts?.formatText || "Format text";
|
|
317914
318195
|
},
|
|
318196
|
+
list: () => {
|
|
318197
|
+
if (commandState?.active) {
|
|
318198
|
+
item.activate();
|
|
318199
|
+
item.selectedValue.value = markerTextToBulletStyle(commandState.value);
|
|
318200
|
+
} else {
|
|
318201
|
+
item.deactivate();
|
|
318202
|
+
item.selectedValue.value = null;
|
|
318203
|
+
}
|
|
318204
|
+
},
|
|
317915
318205
|
default: () => {
|
|
317916
318206
|
if (commandState?.active)
|
|
317917
318207
|
item.activate();
|
|
@@ -321451,9 +321741,9 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
321451
321741
|
try {
|
|
321452
321742
|
const [{ unified: unified$1 }, { default: rehypeParse2 }, { default: rehypeRemark2 }, { default: remarkStringify$1 }, { default: remarkGfm$1 }] = await Promise.all([
|
|
321453
321743
|
Promise.resolve().then(() => (init_unified_vFnLRfAM_es(), exports_unified_vFnLRfAM_es)),
|
|
321454
|
-
Promise.resolve().then(() => (
|
|
321455
|
-
Promise.resolve().then(() => (
|
|
321456
|
-
Promise.resolve().then(() => (
|
|
321744
|
+
Promise.resolve().then(() => (init_rehype_parse_DyKLXYD2_es(), exports_rehype_parse_DyKLXYD2_es)),
|
|
321745
|
+
Promise.resolve().then(() => (init_rehype_remark_DYihe9nj_es(), exports_rehype_remark_DYihe9nj_es)),
|
|
321746
|
+
Promise.resolve().then(() => (init_remark_stringify_Cb9EtkyK_es(), exports_remark_stringify_Cb9EtkyK_es)),
|
|
321457
321747
|
Promise.resolve().then(() => (init_remark_gfm_eZN6yzWQ_es(), exports_remark_gfm_eZN6yzWQ_es))
|
|
321458
321748
|
]);
|
|
321459
321749
|
const html3 = this.getHTML();
|
|
@@ -333317,18 +333607,21 @@ function print() { __p += __j.call(arguments, '') }
|
|
|
333317
333607
|
];
|
|
333318
333608
|
});
|
|
333319
333609
|
|
|
333320
|
-
// ../../packages/superdoc/dist/chunks/ui-
|
|
333610
|
+
// ../../packages/superdoc/dist/chunks/create-super-doc-ui-BUfd0WN3.es.js
|
|
333321
333611
|
var ALL_TOOLBAR_COMMAND_IDS, EMPTY_ACTIVE_IDS;
|
|
333322
|
-
var
|
|
333323
|
-
|
|
333324
|
-
|
|
333612
|
+
var init_create_super_doc_ui_BUfd0WN3_es = __esm(() => {
|
|
333613
|
+
init_SuperConverter_BTy5lByv_es();
|
|
333614
|
+
init_create_headless_toolbar_k6nNYL53_es();
|
|
333325
333615
|
ALL_TOOLBAR_COMMAND_IDS = Object.keys(createToolbarRegistry());
|
|
333326
333616
|
EMPTY_ACTIVE_IDS = Object.freeze([]);
|
|
333327
333617
|
});
|
|
333328
333618
|
|
|
333329
|
-
// ../../packages/superdoc/dist/chunks/
|
|
333619
|
+
// ../../packages/superdoc/dist/chunks/ui-CGB3qmy3.es.js
|
|
333620
|
+
var init_ui_CGB3qmy3_es = () => {};
|
|
333621
|
+
|
|
333622
|
+
// ../../packages/superdoc/dist/chunks/zipper-BxRAi0-5.es.js
|
|
333330
333623
|
var import_jszip_min2;
|
|
333331
|
-
var
|
|
333624
|
+
var init_zipper_BxRAi0_5_es = __esm(() => {
|
|
333332
333625
|
init_rolldown_runtime_Bg48TavK_es();
|
|
333333
333626
|
init_jszip_C49i9kUs_es();
|
|
333334
333627
|
import_jszip_min2 = /* @__PURE__ */ __toESM2(require_jszip_min(), 1);
|
|
@@ -333336,19 +333629,20 @@ var init_zipper_CSxGBanD_es = __esm(() => {
|
|
|
333336
333629
|
|
|
333337
333630
|
// ../../packages/superdoc/dist/super-editor.es.js
|
|
333338
333631
|
var init_super_editor_es = __esm(() => {
|
|
333339
|
-
|
|
333340
|
-
|
|
333632
|
+
init_src_CCV76OsP_es();
|
|
333633
|
+
init_SuperConverter_BTy5lByv_es();
|
|
333341
333634
|
init_jszip_C49i9kUs_es();
|
|
333342
333635
|
init_xml_js_CqGKpaft_es();
|
|
333343
|
-
|
|
333636
|
+
init_create_headless_toolbar_k6nNYL53_es();
|
|
333344
333637
|
init_constants_DrU4EASo_es();
|
|
333345
333638
|
init_dist_B8HfvhaK_es();
|
|
333346
333639
|
init_unified_Dsuw2be5_es();
|
|
333347
|
-
|
|
333348
|
-
|
|
333349
|
-
|
|
333350
|
-
|
|
333351
|
-
|
|
333640
|
+
init_DocxZipper_CUX64E5K_es();
|
|
333641
|
+
init_create_super_doc_ui_BUfd0WN3_es();
|
|
333642
|
+
init_ui_CGB3qmy3_es();
|
|
333643
|
+
init_eventemitter3_BJrNoN9D_es();
|
|
333644
|
+
init_errors_C_DoKMoN_es();
|
|
333645
|
+
init_zipper_BxRAi0_5_es();
|
|
333352
333646
|
});
|
|
333353
333647
|
|
|
333354
333648
|
// ../../node_modules/.pnpm/happy-dom@20.4.0/node_modules/happy-dom/lib/PropertySymbol.js
|