@harbour-enterprises/superdoc 0.28.3 → 0.29.0-next.2
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/chunks/{PdfViewer-DUpLlOgk.es.js → PdfViewer-ByaA6tu-.es.js} +1 -1
- package/dist/chunks/{PdfViewer-QTV3RJM1.cjs → PdfViewer-POSV5DiN.cjs} +1 -1
- package/dist/chunks/{index-CuXB3dyN.cjs → index-3BBP_H1q.cjs} +3 -3
- package/dist/chunks/{index-DKtyoTAq.es.js → index-C3_BQlO-.es.js} +3 -3
- package/dist/chunks/{index-B3rVM2bJ-BgYPFhrh.cjs → index-F9UTAd9o-FTCIxXZV.cjs} +1 -1
- package/dist/chunks/{index-B3rVM2bJ-B62R9mgx.es.js → index-F9UTAd9o-O789Xvby.es.js} +1 -1
- package/dist/chunks/{super-editor.es-BKCxu5-_.cjs → super-editor.es-Ce1bKea8.cjs} +135 -36
- package/dist/chunks/{super-editor.es-BjTZa-cJ.es.js → super-editor.es-ZQFMn4Mx.es.js} +135 -36
- package/dist/core/types/index.d.ts.map +1 -1
- package/dist/images/altText_add.svg +3 -0
- package/dist/images/altText_disclaimer.svg +3 -0
- package/dist/images/altText_done.svg +3 -0
- package/dist/images/altText_spinner.svg +30 -0
- package/dist/images/altText_warning.svg +3 -0
- package/dist/images/annotation-check.svg +11 -0
- package/dist/images/annotation-comment.svg +16 -0
- package/dist/images/annotation-help.svg +26 -0
- package/dist/images/annotation-insert.svg +10 -0
- package/dist/images/annotation-key.svg +11 -0
- package/dist/images/annotation-newparagraph.svg +11 -0
- package/dist/images/annotation-noicon.svg +7 -0
- package/dist/images/annotation-note.svg +42 -0
- package/dist/images/annotation-paperclip.svg +6 -0
- package/dist/images/annotation-paragraph.svg +16 -0
- package/dist/images/annotation-pushpin.svg +7 -0
- package/dist/images/cursor-editorFreeHighlight.svg +6 -0
- package/dist/images/cursor-editorFreeText.svg +3 -0
- package/dist/images/cursor-editorInk.svg +4 -0
- package/dist/images/cursor-editorTextHighlight.svg +8 -0
- package/dist/images/editor-toolbar-delete.svg +5 -0
- package/dist/images/loading-icon.gif +0 -0
- package/dist/images/messageBar_closingButton.svg +3 -0
- package/dist/images/messageBar_warning.svg +3 -0
- package/dist/images/toolbarButton-editorHighlight.svg +6 -0
- package/dist/images/toolbarButton-menuArrow.svg +3 -0
- package/dist/style.css +10 -0
- package/dist/super-editor/ai-writer.es.js +2 -2
- package/dist/super-editor/chunks/{converter-CMtyH2w0.js → converter-C3c63BcJ.js} +95 -29
- package/dist/super-editor/chunks/{docx-zipper-Pgf9i5kI.js → docx-zipper-BYMN0YBQ.js} +1 -1
- package/dist/super-editor/chunks/{editor-C3KgN3zx.js → editor-CTJhnyzP.js} +42 -9
- package/dist/super-editor/chunks/{index-B3rVM2bJ.js → index-F9UTAd9o.js} +1 -1
- package/dist/super-editor/chunks/{toolbar-TXkIPPvk.js → toolbar-6Ayv3LAk.js} +2 -2
- package/dist/super-editor/converter.es.js +1 -1
- package/dist/super-editor/docx-zipper.es.js +2 -2
- package/dist/super-editor/editor.es.js +3 -3
- package/dist/super-editor/file-zipper.es.js +1 -1
- package/dist/super-editor/style.css +10 -0
- package/dist/super-editor/super-editor/src/core/super-converter/relationship-helpers.d.ts +2 -0
- package/dist/super-editor/super-editor/src/core/super-converter/v2/importer/listImporter.d.ts +1 -1
- package/dist/super-editor/super-editor/src/core/super-converter/v2/importer/numberingCache.d.ts +2 -2
- package/dist/super-editor/super-editor/src/utils/headless-helpers.d.ts +1 -0
- package/dist/super-editor/super-editor/src/utils/styleIsolation.d.ts +2 -0
- package/dist/super-editor/super-editor.es.js +6 -6
- package/dist/super-editor/toolbar.es.js +2 -2
- package/dist/super-editor.cjs +1 -1
- package/dist/super-editor.es.js +1 -1
- package/dist/superdoc.cjs +2 -2
- package/dist/superdoc.es.js +2 -2
- package/dist/superdoc.umd.js +137 -38
- package/dist/superdoc.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -20591,7 +20591,23 @@ const baseNumbering = {
|
|
|
20591
20591
|
]
|
|
20592
20592
|
};
|
|
20593
20593
|
const docxNumberingCacheStore = /* @__PURE__ */ new WeakMap();
|
|
20594
|
+
const NUMBERING_CACHE_KEY = "numbering-cache";
|
|
20594
20595
|
const LEVELS_MAP_KEY = Symbol("superdoc.numbering.levels");
|
|
20596
|
+
const NUMBERING_CACHE_DOCX_KEY = Symbol("superdoc.numbering.docx");
|
|
20597
|
+
const clearConverterCache = (converter) => {
|
|
20598
|
+
if (!converter) return;
|
|
20599
|
+
delete converter[NUMBERING_CACHE_KEY];
|
|
20600
|
+
delete converter[NUMBERING_CACHE_DOCX_KEY];
|
|
20601
|
+
};
|
|
20602
|
+
const setConverterCache = (converter, cache2, docx) => {
|
|
20603
|
+
if (!converter) return;
|
|
20604
|
+
converter[NUMBERING_CACHE_KEY] = cache2;
|
|
20605
|
+
if (docx && typeof docx === "object") {
|
|
20606
|
+
converter[NUMBERING_CACHE_DOCX_KEY] = docx;
|
|
20607
|
+
} else {
|
|
20608
|
+
delete converter[NUMBERING_CACHE_DOCX_KEY];
|
|
20609
|
+
}
|
|
20610
|
+
};
|
|
20595
20611
|
const createEmptyCache = () => ({
|
|
20596
20612
|
numToAbstractId: /* @__PURE__ */ new Map(),
|
|
20597
20613
|
abstractById: /* @__PURE__ */ new Map(),
|
|
@@ -20663,12 +20679,27 @@ const buildNumberingCache = (docx) => {
|
|
|
20663
20679
|
}
|
|
20664
20680
|
return { numToAbstractId, abstractById, templateById, numToDefinition, numNodesById };
|
|
20665
20681
|
};
|
|
20666
|
-
const ensureNumberingCache = (docx) => {
|
|
20682
|
+
const ensureNumberingCache = (docx, converter) => {
|
|
20683
|
+
if (converter?.[NUMBERING_CACHE_KEY]) {
|
|
20684
|
+
const cachedDocx = converter[NUMBERING_CACHE_DOCX_KEY];
|
|
20685
|
+
if (docx && cachedDocx && cachedDocx !== docx) {
|
|
20686
|
+
clearConverterCache(converter);
|
|
20687
|
+
} else {
|
|
20688
|
+
return converter[NUMBERING_CACHE_KEY];
|
|
20689
|
+
}
|
|
20690
|
+
}
|
|
20667
20691
|
if (!docx || typeof docx !== "object") return createEmptyCache();
|
|
20668
20692
|
const existingCache = docxNumberingCacheStore.get(docx);
|
|
20669
|
-
if (existingCache)
|
|
20693
|
+
if (existingCache) {
|
|
20694
|
+
setConverterCache(converter, existingCache, docx);
|
|
20695
|
+
return existingCache;
|
|
20696
|
+
}
|
|
20670
20697
|
const cache2 = buildNumberingCache(docx);
|
|
20671
|
-
|
|
20698
|
+
if (converter) {
|
|
20699
|
+
setConverterCache(converter, cache2, docx);
|
|
20700
|
+
} else {
|
|
20701
|
+
docxNumberingCacheStore.set(docx, cache2);
|
|
20702
|
+
}
|
|
20672
20703
|
return cache2;
|
|
20673
20704
|
};
|
|
20674
20705
|
const handleListNode = (params2) => {
|
|
@@ -20925,11 +20956,11 @@ const getListNumIdFromStyleRef = (styleId, docx) => {
|
|
|
20925
20956
|
}
|
|
20926
20957
|
return { numId, ilvl };
|
|
20927
20958
|
};
|
|
20928
|
-
const getAbstractDefinition = (numId, docx) => {
|
|
20959
|
+
const getAbstractDefinition = (numId, docx, converter) => {
|
|
20929
20960
|
const numberingXml = docx["word/numbering.xml"];
|
|
20930
20961
|
if (!numberingXml) return {};
|
|
20931
20962
|
if (numId == null) return void 0;
|
|
20932
|
-
const cache2 = ensureNumberingCache(docx);
|
|
20963
|
+
const cache2 = ensureNumberingCache(docx, converter);
|
|
20933
20964
|
const numKey = String(numId);
|
|
20934
20965
|
let listDefinitionForThisNumId = cache2.numToDefinition.get(numKey);
|
|
20935
20966
|
if (!listDefinitionForThisNumId) {
|
|
@@ -24442,10 +24473,11 @@ const getListItemStyleDefinitions = ({ styleId, numId, level, editor, tries }) =
|
|
|
24442
24473
|
if (typeof numId === "string") numId = Number(numId);
|
|
24443
24474
|
if (typeof level === "string") level = Number(level);
|
|
24444
24475
|
const docx = editor?.converter?.convertedXml;
|
|
24445
|
-
const
|
|
24476
|
+
const converter = editor?.converter;
|
|
24477
|
+
const numbering = converter?.numbering;
|
|
24446
24478
|
const styleDefinition = docx ? getStyleTagFromStyleId(styleId, docx) : null;
|
|
24447
24479
|
const stylePpr = styleDefinition?.elements.find((el) => el.name === "w:pPr");
|
|
24448
|
-
let abstractDefinition = docx ? getAbstractDefinition(numId, docx) : null;
|
|
24480
|
+
let abstractDefinition = docx ? getAbstractDefinition(numId, docx, converter) : null;
|
|
24449
24481
|
if (!abstractDefinition) {
|
|
24450
24482
|
const listDef = numbering?.definitions?.[numId];
|
|
24451
24483
|
const abstractId = listDef?.elements?.find((item) => item.name === "w:abstractNumId")?.attributes?.["w:val"];
|
|
@@ -28786,7 +28818,16 @@ const translateImageNode = (params2) => {
|
|
|
28786
28818
|
const { width: w2, height: h2 } = resizeKeepAspectRatio(size2.w, size2.h, maxWidthEmu);
|
|
28787
28819
|
if (w2 && h2) size2 = { w: w2, h: h2 };
|
|
28788
28820
|
}
|
|
28789
|
-
if (
|
|
28821
|
+
if (imageId) {
|
|
28822
|
+
const docx = params2.converter?.convertedXml || {};
|
|
28823
|
+
const rels = docx["word/_rels/document.xml.rels"];
|
|
28824
|
+
const relsTag = rels?.elements?.find((el) => el.name === "Relationships");
|
|
28825
|
+
const hasRelation = relsTag?.elements.find((el) => el.attributes.Id === imageId);
|
|
28826
|
+
const path = src?.split("word/")[1];
|
|
28827
|
+
if (!hasRelation) {
|
|
28828
|
+
addImageRelationshipForId(params2, imageId, path);
|
|
28829
|
+
}
|
|
28830
|
+
} else if (params2.node.type === "image" && !imageId) {
|
|
28790
28831
|
const path = src?.split("word/")[1];
|
|
28791
28832
|
imageId = addNewImageRelationship(params2, path);
|
|
28792
28833
|
} else if (params2.node.type === "fieldAnnotation" && !imageId) {
|
|
@@ -29010,6 +29051,18 @@ function addNewImageRelationship(params2, imagePath) {
|
|
|
29010
29051
|
params2.relationships.push(newRel);
|
|
29011
29052
|
return newId;
|
|
29012
29053
|
}
|
|
29054
|
+
function addImageRelationshipForId(params2, id, imagePath) {
|
|
29055
|
+
const newRel = {
|
|
29056
|
+
type: "element",
|
|
29057
|
+
name: "Relationship",
|
|
29058
|
+
attributes: {
|
|
29059
|
+
Id: id,
|
|
29060
|
+
Type: "http://schemas.openxmlformats.org/officeDocument/2006/relationships/image",
|
|
29061
|
+
Target: imagePath
|
|
29062
|
+
}
|
|
29063
|
+
};
|
|
29064
|
+
params2.relationships.push(newRel);
|
|
29065
|
+
}
|
|
29013
29066
|
function translateVectorShape(params2) {
|
|
29014
29067
|
const { node } = params2;
|
|
29015
29068
|
const { drawingContent } = node.attrs;
|
|
@@ -33525,7 +33578,7 @@ const createDocumentJson = (docx, converter, editor) => {
|
|
|
33525
33578
|
comments,
|
|
33526
33579
|
inlineDocumentFonts,
|
|
33527
33580
|
linkedStyles: getStyleDefinitions(docx),
|
|
33528
|
-
numbering: getNumberingDefinitions(docx)
|
|
33581
|
+
numbering: getNumberingDefinitions(docx, converter)
|
|
33529
33582
|
};
|
|
33530
33583
|
}
|
|
33531
33584
|
return null;
|
|
@@ -33924,8 +33977,8 @@ function filterOutRootInlineNodes(content = []) {
|
|
|
33924
33977
|
]);
|
|
33925
33978
|
return content.filter((node) => node && typeof node.type === "string" && !INLINE_TYPES.has(node.type));
|
|
33926
33979
|
}
|
|
33927
|
-
function getNumberingDefinitions(docx) {
|
|
33928
|
-
const cache2 = ensureNumberingCache(docx);
|
|
33980
|
+
function getNumberingDefinitions(docx, converter) {
|
|
33981
|
+
const cache2 = ensureNumberingCache(docx, converter);
|
|
33929
33982
|
const abstractDefinitions = {};
|
|
33930
33983
|
cache2.abstractById.forEach((value, key2) => {
|
|
33931
33984
|
const numericKey = Number(key2);
|
|
@@ -35299,6 +35352,35 @@ const prepareCommentsXmlFilesForExport = ({ convertedXml, defs, commentsWithPara
|
|
|
35299
35352
|
};
|
|
35300
35353
|
const HYPERLINK_RELATIONSHIP_TYPE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/hyperlink";
|
|
35301
35354
|
const HEADER_RELATIONSHIP_TYPE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/header";
|
|
35355
|
+
const FOOTER_RELATIONSHIP_TYPE = "http://schemas.openxmlformats.org/officeDocument/2006/relationships/footer";
|
|
35356
|
+
const REL_ID_NUMERIC_PATTERN = /rId|mi/g;
|
|
35357
|
+
const getLargestRelationshipId = (relationships = []) => {
|
|
35358
|
+
const numericIds = relationships.map((rel) => Number(String(rel?.attributes?.Id ?? "").replace(REL_ID_NUMERIC_PATTERN, ""))).filter((value) => Number.isFinite(value));
|
|
35359
|
+
return numericIds.length ? Math.max(...numericIds) : 0;
|
|
35360
|
+
};
|
|
35361
|
+
const mergeRelationshipElements = (existingRelationships = [], newRelationships = []) => {
|
|
35362
|
+
if (!newRelationships?.length) return existingRelationships;
|
|
35363
|
+
let largestId = getLargestRelationshipId(existingRelationships);
|
|
35364
|
+
const seenIds = new Set(existingRelationships.map((rel) => rel?.attributes?.Id).filter(Boolean));
|
|
35365
|
+
const additions = [];
|
|
35366
|
+
newRelationships.forEach((rel) => {
|
|
35367
|
+
if (!rel?.attributes) return;
|
|
35368
|
+
const attributes = rel.attributes;
|
|
35369
|
+
const currentId = attributes.Id || "";
|
|
35370
|
+
attributes.Target = attributes?.Target?.replace(/&/g, "&");
|
|
35371
|
+
const existingTarget = existingRelationships.find((el) => el.attributes.Target === attributes.Target);
|
|
35372
|
+
const isMedia = attributes.Target?.startsWith("media/");
|
|
35373
|
+
const isNewHyperlink = attributes.Type === HYPERLINK_RELATIONSHIP_TYPE && currentId.length > 6;
|
|
35374
|
+
const isNewHeadFoot = (attributes.Type === HEADER_RELATIONSHIP_TYPE || attributes.Type === FOOTER_RELATIONSHIP_TYPE) && currentId.length > 6;
|
|
35375
|
+
const hasSeenId = currentId && seenIds.has(currentId);
|
|
35376
|
+
const shouldSkip = !isNewHyperlink && !isNewHeadFoot && (hasSeenId || existingTarget);
|
|
35377
|
+
if (shouldSkip) return;
|
|
35378
|
+
attributes.Id = currentId.length > 6 || isMedia ? currentId : `rId${++largestId}`;
|
|
35379
|
+
seenIds.add(attributes.Id);
|
|
35380
|
+
additions.push(rel);
|
|
35381
|
+
});
|
|
35382
|
+
return additions.length ? [...existingRelationships, ...additions] : existingRelationships;
|
|
35383
|
+
};
|
|
35302
35384
|
const FONT_FAMILY_FALLBACKS = Object.freeze({
|
|
35303
35385
|
swiss: "Arial, sans-serif",
|
|
35304
35386
|
roman: "Times New Roman, serif",
|
|
@@ -35507,7 +35589,7 @@ const _SuperConverter = class _SuperConverter2 {
|
|
|
35507
35589
|
static getStoredSuperdocVersion(docx) {
|
|
35508
35590
|
return _SuperConverter2.getStoredCustomProperty(docx, "SuperdocVersion");
|
|
35509
35591
|
}
|
|
35510
|
-
static setStoredSuperdocVersion(docx = this.convertedXml, version2 = "0.
|
|
35592
|
+
static setStoredSuperdocVersion(docx = this.convertedXml, version2 = "0.29.0-next.2") {
|
|
35511
35593
|
return _SuperConverter2.setStoredCustomProperty(docx, "SuperdocVersion", version2, false);
|
|
35512
35594
|
}
|
|
35513
35595
|
/**
|
|
@@ -36013,23 +36095,7 @@ exportProcessHeadersFooters_fn = function({ isFinalDoc = false }) {
|
|
|
36013
36095
|
exportProcessNewRelationships_fn = function(rels = []) {
|
|
36014
36096
|
const relsData = this.convertedXml["word/_rels/document.xml.rels"];
|
|
36015
36097
|
const relationships = relsData.elements.find((x) => x.name === "Relationships");
|
|
36016
|
-
|
|
36017
|
-
const regex = /rId|mi/g;
|
|
36018
|
-
let largestId = Math.max(...relationships.elements.map((el) => Number(el.attributes.Id.replace(regex, ""))));
|
|
36019
|
-
rels.forEach((rel) => {
|
|
36020
|
-
const existingId = rel.attributes.Id;
|
|
36021
|
-
const existingTarget = relationships.elements.find((el) => el.attributes.Target === rel.attributes.Target);
|
|
36022
|
-
const isNewMedia = rel.attributes.Target?.startsWith("media/") && existingId.length > 6;
|
|
36023
|
-
const isNewHyperlink = rel.attributes.Type === HYPERLINK_RELATIONSHIP_TYPE && existingId.length > 6;
|
|
36024
|
-
const isNewHeadFoot = rel.attributes.Type === HEADER_RELATIONSHIP_TYPE && existingId.length > 6;
|
|
36025
|
-
if (existingTarget && !isNewMedia && !isNewHyperlink && !isNewHeadFoot) {
|
|
36026
|
-
return;
|
|
36027
|
-
}
|
|
36028
|
-
rel.attributes.Target = rel.attributes?.Target?.replace(/&/g, "&");
|
|
36029
|
-
rel.attributes.Id = existingId.length > 6 ? existingId : `rId${++largestId}`;
|
|
36030
|
-
newRels.push(rel);
|
|
36031
|
-
});
|
|
36032
|
-
relationships.elements = [...relationships.elements, ...newRels];
|
|
36098
|
+
relationships.elements = mergeRelationshipElements(relationships.elements, rels);
|
|
36033
36099
|
};
|
|
36034
36100
|
exportProcessMediaFiles_fn = async function(media = {}) {
|
|
36035
36101
|
const processedData = {
|
|
@@ -49713,10 +49779,12 @@ const _ExtensionService = class _ExtensionService2 {
|
|
|
49713
49779
|
type: getNodeType(extension.name, this.schema)
|
|
49714
49780
|
};
|
|
49715
49781
|
const addNodeView = getExtensionConfigField(extension, "addNodeView", context);
|
|
49716
|
-
if (!addNodeView) return
|
|
49782
|
+
if (!addNodeView) return null;
|
|
49783
|
+
const nodeViewFunction = addNodeView();
|
|
49784
|
+
if (!nodeViewFunction) return null;
|
|
49717
49785
|
const nodeview = (node, _view, getPos, decorations) => {
|
|
49718
49786
|
const htmlAttributes = Attribute2.getAttributesToRender(node, extensionAttrs);
|
|
49719
|
-
return
|
|
49787
|
+
return nodeViewFunction({
|
|
49720
49788
|
editor,
|
|
49721
49789
|
node,
|
|
49722
49790
|
getPos,
|
|
@@ -49726,7 +49794,7 @@ const _ExtensionService = class _ExtensionService2 {
|
|
|
49726
49794
|
});
|
|
49727
49795
|
};
|
|
49728
49796
|
return [extension.name, nodeview];
|
|
49729
|
-
});
|
|
49797
|
+
}).filter(Boolean);
|
|
49730
49798
|
return Object.fromEntries(entries);
|
|
49731
49799
|
}
|
|
49732
49800
|
};
|
|
@@ -50349,6 +50417,7 @@ const getHighlightColor = ({ activeThreadId, threadId, isInternal, editor }) =>
|
|
|
50349
50417
|
const updateYdocDocxData = async (editor, ydoc) => {
|
|
50350
50418
|
ydoc = ydoc || editor.options.ydoc;
|
|
50351
50419
|
if (!ydoc) return;
|
|
50420
|
+
if (!editor || editor.isDestroyed) return;
|
|
50352
50421
|
const metaMap = ydoc.getMap("meta");
|
|
50353
50422
|
const docxValue = metaMap.get("docx");
|
|
50354
50423
|
let docx = [];
|
|
@@ -50380,6 +50449,11 @@ const updateYdocDocxData = async (editor, ydoc) => {
|
|
|
50380
50449
|
{ event: "docx-update", user: editor.options.user }
|
|
50381
50450
|
);
|
|
50382
50451
|
};
|
|
50452
|
+
const STYLE_ISOLATION_CLASS = "sd-editor-scoped";
|
|
50453
|
+
const applyStyleIsolationClass = (target) => {
|
|
50454
|
+
if (!target || !target.classList) return;
|
|
50455
|
+
target.classList.add(STYLE_ISOLATION_CLASS);
|
|
50456
|
+
};
|
|
50383
50457
|
const PaginationPluginKey = new PluginKey("paginationPlugin");
|
|
50384
50458
|
const initPaginationData = async (editor) => {
|
|
50385
50459
|
if (!editor.converter) return;
|
|
@@ -50415,6 +50489,7 @@ const getSectionHeight = async (editor, data) => {
|
|
|
50415
50489
|
return new Promise((resolve) => {
|
|
50416
50490
|
const editorContainer = document.createElement("div");
|
|
50417
50491
|
editorContainer.className = "super-editor";
|
|
50492
|
+
applyStyleIsolationClass(editorContainer);
|
|
50418
50493
|
editorContainer.style.padding = "0";
|
|
50419
50494
|
editorContainer.style.margin = "0";
|
|
50420
50495
|
const sectionEditor = createHeaderFooterEditor({ editor, data, editorContainer });
|
|
@@ -50442,6 +50517,7 @@ const createHeaderFooterEditor = ({
|
|
|
50442
50517
|
const { fontSizePt, typeface, fontFamilyCss } = parentStyles;
|
|
50443
50518
|
const fontSizeInPixles = fontSizePt * 1.3333;
|
|
50444
50519
|
const lineHeight2 = fontSizeInPixles * 1.2;
|
|
50520
|
+
applyStyleIsolationClass(editorContainer);
|
|
50445
50521
|
Object.assign(editorContainer.style, {
|
|
50446
50522
|
padding: "0",
|
|
50447
50523
|
margin: "0",
|
|
@@ -51840,6 +51916,16 @@ const Collaboration = Extension.create({
|
|
|
51840
51916
|
});
|
|
51841
51917
|
});
|
|
51842
51918
|
return [syncPlugin];
|
|
51919
|
+
},
|
|
51920
|
+
addCommands() {
|
|
51921
|
+
return {
|
|
51922
|
+
addImageToCollaboration: ({ mediaPath, fileData }) => () => {
|
|
51923
|
+
if (!this.options.ydoc || !mediaPath || !fileData) return false;
|
|
51924
|
+
const mediaMap = this.options.ydoc.getMap("media");
|
|
51925
|
+
mediaMap.set(mediaPath, fileData);
|
|
51926
|
+
return true;
|
|
51927
|
+
}
|
|
51928
|
+
};
|
|
51843
51929
|
}
|
|
51844
51930
|
});
|
|
51845
51931
|
const createSyncPlugin = (ydoc, editor) => {
|
|
@@ -53692,7 +53778,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
|
|
|
53692
53778
|
{ default: remarkStringify },
|
|
53693
53779
|
{ default: remarkGfm }
|
|
53694
53780
|
] = await Promise.all([
|
|
53695
|
-
import("./index-
|
|
53781
|
+
import("./index-F9UTAd9o-O789Xvby.es.js"),
|
|
53696
53782
|
import("./index-DRCvimau-Cw339678.es.js"),
|
|
53697
53783
|
import("./index-C_x_N6Uh-DJn8hIEt.es.js"),
|
|
53698
53784
|
import("./index-D_sWOSiG-DE96TaT5.es.js"),
|
|
@@ -53910,7 +53996,7 @@ const _Editor = class _Editor2 extends EventEmitter$1 {
|
|
|
53910
53996
|
* @returns {Object | void} Migration results
|
|
53911
53997
|
*/
|
|
53912
53998
|
processCollaborationMigrations() {
|
|
53913
|
-
console.debug("[checkVersionMigrations] Current editor version", "0.
|
|
53999
|
+
console.debug("[checkVersionMigrations] Current editor version", "0.29.0-next.2");
|
|
53914
54000
|
if (!this.options.ydoc) return;
|
|
53915
54001
|
const metaMap = this.options.ydoc.getMap("meta");
|
|
53916
54002
|
let docVersion = metaMap.get("version");
|
|
@@ -54101,7 +54187,12 @@ initContainerElement_fn = function(options) {
|
|
|
54101
54187
|
options.element.classList.add("sd-super-editor-html");
|
|
54102
54188
|
}
|
|
54103
54189
|
}
|
|
54104
|
-
|
|
54190
|
+
if (options.isHeadless) {
|
|
54191
|
+
options.element = null;
|
|
54192
|
+
return;
|
|
54193
|
+
}
|
|
54194
|
+
options.element = options.element || document.createElement("div");
|
|
54195
|
+
applyStyleIsolationClass(options.element);
|
|
54105
54196
|
};
|
|
54106
54197
|
init_fn = function() {
|
|
54107
54198
|
__privateMethod$1(this, _Editor_instances, createExtensionService_fn).call(this);
|
|
@@ -58984,6 +59075,9 @@ function orderedListSync(editor) {
|
|
|
58984
59075
|
}
|
|
58985
59076
|
});
|
|
58986
59077
|
}
|
|
59078
|
+
const shouldSkipNodeView = (editor) => {
|
|
59079
|
+
return editor.options.isHeadless;
|
|
59080
|
+
};
|
|
58987
59081
|
const ListItem = Node$1.create({
|
|
58988
59082
|
name: "listItem",
|
|
58989
59083
|
content: "paragraph* block*",
|
|
@@ -59010,9 +59104,11 @@ const ListItem = Node$1.create({
|
|
|
59010
59104
|
},
|
|
59011
59105
|
/**
|
|
59012
59106
|
* Important: The listItem node uses a custom node view.
|
|
59013
|
-
*
|
|
59107
|
+
* Skip node view in headless mode for performance.
|
|
59108
|
+
* @returns {import('@core/NodeView.js').NodeView|null}
|
|
59014
59109
|
*/
|
|
59015
59110
|
addNodeView() {
|
|
59111
|
+
if (shouldSkipNodeView(this.editor)) return null;
|
|
59016
59112
|
return ({ node, editor, getPos, decorations }) => {
|
|
59017
59113
|
return new ListItemNodeView(node, getPos, decorations, editor);
|
|
59018
59114
|
};
|
|
@@ -74124,6 +74220,7 @@ class Popover {
|
|
|
74124
74220
|
this.view = view;
|
|
74125
74221
|
this.popover = document.createElement("div");
|
|
74126
74222
|
this.popover.className = "sd-editor-popover";
|
|
74223
|
+
applyStyleIsolationClass(this.popover);
|
|
74127
74224
|
document.body.appendChild(this.popover);
|
|
74128
74225
|
this.tippyInstance = tippy(this.popover, {
|
|
74129
74226
|
trigger: "manual",
|
|
@@ -75540,6 +75637,7 @@ const calculatePageBreaks = (view, editor, sectionData) => {
|
|
|
75540
75637
|
const tempContainer = editor.options.element.cloneNode();
|
|
75541
75638
|
if (!tempContainer) return [];
|
|
75542
75639
|
tempContainer.className = "temp-container super-editor";
|
|
75640
|
+
applyStyleIsolationClass(tempContainer);
|
|
75543
75641
|
const HIDDEN_EDITOR_OFFSET_TOP = 0;
|
|
75544
75642
|
const HIDDEN_EDITOR_OFFSET_LEFT = 0;
|
|
75545
75643
|
tempContainer.style.left = HIDDEN_EDITOR_OFFSET_TOP + "px";
|
|
@@ -76588,6 +76686,7 @@ const nodeResizer = (nodeNames = ["image"], editor) => {
|
|
|
76588
76686
|
handleEl.style.pointerEvents = "auto";
|
|
76589
76687
|
resizeContainer.appendChild(handleEl);
|
|
76590
76688
|
}
|
|
76689
|
+
applyStyleIsolationClass(resizeContainer);
|
|
76591
76690
|
document.body.appendChild(resizeContainer);
|
|
76592
76691
|
updateHandlePositions(wrapper.firstElementChild);
|
|
76593
76692
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/core/types/index.js"],"names":[],"mappings":";;;;;;;UAEc,MAAM;;;;WACN,MAAM;;;;YACN,MAAM,GAAG,IAAI;;;;;;;;;cAKb,OAAO;;;;iBACP,MAAM;;;;eACN,MAAM;;;;sBACN,MAAM;;;;;;SAKN,MAAM;;;;UACN,MAAM;;;;WACN,IAAI,GAAG,IAAI,GAAG,IAAI;;;;WAClB,MAAM;;;;UACN,MAAM;;;;gBACN,OAAO;;;;WACP,OAAO,KAAK,EAAE,GAAG;;;;eACjB,OAAO,sBAAsB,EAAE,kBAAkB;;;;;;eAM5D;QAQqC,kBAAkB,GAR5C,CAAC,MAAM,EAAE;YAClB,UAAU,EAAE,MAAM,CAAC;YACnB,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,UAAU,CAAC,EAAE,OAAO,CAAC;YACrB,OAAO,CAAC,EAAE,MAAS,IAAI,CAAC;YACxB,aAAa,CAAC,EAAE,MAAS,IAAI,CAAC;YAC9B,WAAW,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;YAC1B,QAAQ,CAAC,EAAE,QAAQ,GAAG,IAAI,CAAC;SAC5B,KAAK,OAAO,GAAG,SAAS;KACzB;;;;SACA;QAAuB,MAAM,GAAlB,MAAM;QACM,QAAQ,GAApB,MAAM;KACjB;;;;;;;;;;;;gBAGA;QAA6B,WAAW;QACR,YAAY;QACb,mBAAmB,GAAvC,OAAO;KACpB;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/core/types/index.js"],"names":[],"mappings":";;;;;;;UAEc,MAAM;;;;WACN,MAAM;;;;YACN,MAAM,GAAG,IAAI;;;;;;;;;cAKb,OAAO;;;;iBACP,MAAM;;;;eACN,MAAM;;;;sBACN,MAAM;;;;;;SAKN,MAAM;;;;UACN,MAAM;;;;WACN,IAAI,GAAG,IAAI,GAAG,IAAI;;;;WAClB,MAAM;;;;UACN,MAAM;;;;gBACN,OAAO;;;;WACP,OAAO,KAAK,EAAE,GAAG;;;;eACjB,OAAO,sBAAsB,EAAE,kBAAkB;;;;;;eAM5D;QAQqC,kBAAkB,GAR5C,CAAC,MAAM,EAAE;YAClB,UAAU,EAAE,MAAM,CAAC;YACnB,IAAI,CAAC,EAAE,MAAM,CAAC;YACd,UAAU,CAAC,EAAE,OAAO,CAAC;YACrB,OAAO,CAAC,EAAE,MAAS,IAAI,CAAC;YACxB,aAAa,CAAC,EAAE,MAAS,IAAI,CAAC;YAC9B,WAAW,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;YAC1B,QAAQ,CAAC,EAAE,QAAQ,GAAG,IAAI,CAAC;SAC5B,KAAK,OAAO,GAAG,SAAS;KACzB;;;;SACA;QAAuB,MAAM,GAAlB,MAAM;QACM,QAAQ,GAApB,MAAM;KACjB;;;;;;;;;;;;gBAGA;QAA6B,WAAW;QACR,YAAY;QACb,mBAAmB,GAAvC,OAAO;KACpB;;;;;;;;;;;;;;sBA0Fi+2f,aAAa;;;;;;;;;;;yBAA4uJ,aAAa;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;+BAA44a,aAAa;sBAA/vuB,aAAa;8CAAizX,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;6CAAq7tB,UAAU;8CAAuV,UAAU,aAA+E,UAAU;gCAAgZ,UAAU;;;;;;;;;;uBAvF38zhB,OAAO,gBAAgB,EAAE,QAAQ;2BAGlC,SAAS,GAAG,SAAS,GAAG,YAAY;yBAIpC,MAAM,GAAG,KAAK,GAAG,MAAM;;;;;2BAIvB,UAAU,GAAG,OAAO;;;;;iBAOnB,UAAU,EAAE;;;;mBACZ,YAAY;;;;mBACZ,MAAM;;;;sBACN,OAAO;;;;2BACP,MAAM;;;;;;iBAKN,MAAM;;;;cACN,MAAM,GAAG,WAAW;;;;kBACpB,YAAY;;;;WACZ,QAAQ,GAAG,QAAQ,GAAG,WAAW;;;;eACjC,MAAS,MAAM,GAAG,IAAI,GAAG,IAAI;;;;gBAC7B,KAAK,CAAC,QAAQ,CAAC;;;;WACf,IAAI;;;;YACJ,KAAK,CAAC,IAAI,CAAC;;;;aACX,KAAK,CAAC,MAAM,CAAC;;;;cACb,OAAO;;;;yBACP,CAAC,MAAM,EAAE;QAClB,UAAU,EAAE,MAAM,CAAC;QACnB,IAAI,CAAC,EAAE,MAAM,CAAC;QACd,UAAU,CAAC,EAAE,OAAO,CAAC;QACrB,OAAO,CAAC,EAAE,MAAS,IAAI,CAAC;QACxB,aAAa,CAAC,EAAE,MAAS,IAAI,CAAC;QAC9B,WAAW,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;QAC1B,QAAQ,CAAC,EAAE,QAAQ,GAAG,IAAI,CAAC;KAC5B,KAAK,OAAO,GAAG,SAAS;;;;iBACd,OAAO;;;;cACP,MAAM;;;;oBACN,KAAK,CAAC,MAAM,CAAC;;;;;;;;;;;;YAGb,OAAO;;;;gBACP,eAAe;;;;2BACf,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI;;;;qBACxB,CAAC,MAAM,EAAE,MAAM,KAAK,IAAI;;;;oBACxB,CAAC,MAAM,EAAE;QAAE,MAAM,EAAE,MAAM,CAAC;QAAC,WAAW,EAAE,GAAG,CAAC;QAAC,QAAQ,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI;;;;sBACxE,MAAM,IAAI;;;;qBACV,CAAC,MAAM,EAAE;QAAE,KAAK,EAAE,MAAM,CAAC;QAAC,MAAM,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,IAAI,CAAA;KAAE,KAAK,IAAI;;;;cACnF,CAAC,MAAM,EAAE;QAAE,QAAQ,EAAE,QAAQ,CAAA;KAAE,KAAK,IAAI;;;;uBACxC,CAAC,MAAM,EAAE;QAAE,IAAI,EAAE,MAAM,CAAC;QAAC,IAAI,EAAE,MAAM,CAAA;KAAC,KAAK,IAAI;;;;wBAC/C,CAAC,MAAM,EAAE;QAAE,OAAO,EAAE,QAAQ,CAAC;QAAC,MAAM,QAAO;KAAE,KAAK,IAAI;;;;eACtD,CAAC,MAAM,EAAE;QAAE,QAAQ,EAAE,OAAO,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE,KAAK,IAAI;;;;yBACvD,MAAM,IAAI;;;;sBACV,CAAC,QAAQ,EAAE,OAAO,KAAK,IAAI;;;;2BAC3B,CAAC,MAAM,EAAE;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI;;;;qBACpC,CAAC,MAAM,EAAE;QAAE,MAAM,EAAE,MAAM,CAAA;KAAE,KAAK,IAAI;;;;kBACpC,CAAC,MAAM,EAAE;QAAE,KAAK,EAAE,KAAK,CAAA;KAAE,KAAK,IAAI;;;;2BAClC,CAAC,MAAM,EAAE;QAAE,UAAU,EAAE,OAAO,CAAA;KAAE,KAAK,IAAI;;;;8BACzC,CAAC,MAAM,EAAE,EAAE,KAAC,GAAA;;;;aACZ,MAAM;;;;uBACN,KAAQ;;;;iBACR,OAAO;;;;YACP,MAAM;;;;oBACN,KAAQ;;;;eACR,OAAO;;;;wBACP,CAAS,IAAI,EAAJ,IAAI,KAAG,OAAO,CAAC,MAAM,CAAC;;;;eAC/B,IAAI;;;;aACJ,OAAO;;;;gCACP,OAAO;;;;;;;;yBAEP,OAAO;;;;WACP,MAAM;;;;eACN,MAAM;;;;cACN,OAAO"}
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M5.375 7.625V11.875C5.375 12.0408 5.44085 12.1997 5.55806 12.3169C5.67527 12.4342 5.83424 12.5 6 12.5C6.16576 12.5 6.32473 12.4342 6.44194 12.3169C6.55915 12.1997 6.625 12.0408 6.625 11.875V7.625L7.125 7.125H11.375C11.5408 7.125 11.6997 7.05915 11.8169 6.94194C11.9342 6.82473 12 6.66576 12 6.5C12 6.33424 11.9342 6.17527 11.8169 6.05806C11.6997 5.94085 11.5408 5.875 11.375 5.875H7.125L6.625 5.375V1.125C6.625 0.95924 6.55915 0.800269 6.44194 0.683058C6.32473 0.565848 6.16576 0.5 6 0.5C5.83424 0.5 5.67527 0.565848 5.55806 0.683058C5.44085 0.800269 5.375 0.95924 5.375 1.125V5.375L4.875 5.875H0.625C0.45924 5.875 0.300269 5.94085 0.183058 6.05806C0.065848 6.17527 0 6.33424 0 6.5C0 6.66576 0.065848 6.82473 0.183058 6.94194C0.300269 7.05915 0.45924 7.125 0.625 7.125H4.762L5.375 7.625Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M3.49073 1.3015L3.30873 2.1505C3.29349 2.22246 3.25769 2.28844 3.20568 2.34045C3.15368 2.39246 3.08769 2.42826 3.01573 2.4435L2.16673 2.6255C1.76473 2.7125 1.76473 3.2865 2.16673 3.3725L3.01573 3.5555C3.08769 3.57074 3.15368 3.60654 3.20568 3.65855C3.25769 3.71056 3.29349 3.77654 3.30873 3.8485L3.49073 4.6975C3.57773 5.0995 4.15173 5.0995 4.23773 4.6975L4.42073 3.8485C4.43598 3.77654 4.47177 3.71056 4.52378 3.65855C4.57579 3.60654 4.64178 3.57074 4.71373 3.5555L5.56173 3.3725C5.96373 3.2855 5.96373 2.7115 5.56173 2.6255L4.71273 2.4435C4.64083 2.42814 4.57491 2.3923 4.52292 2.34031C4.47093 2.28832 4.43509 2.2224 4.41973 2.1505L4.23773 1.3015C4.15073 0.8995 3.57673 0.8995 3.49073 1.3015ZM10.8647 13.9995C10.4853 14.0056 10.1158 13.8782 9.82067 13.6397C9.52553 13.4013 9.32347 13.0667 9.24973 12.6945L8.89273 11.0275C8.83676 10.7687 8.70738 10.5316 8.52009 10.3445C8.3328 10.1574 8.09554 10.0282 7.83673 9.9725L6.16973 9.6155C5.38873 9.4465 4.86473 8.7975 4.86473 7.9995C4.86473 7.2015 5.38873 6.5525 6.16973 6.3845L7.83673 6.0275C8.09551 5.97135 8.33267 5.84193 8.51992 5.65468C8.70716 5.46744 8.83658 5.23028 8.89273 4.9715L9.25073 3.3045C9.41773 2.5235 10.0667 1.9995 10.8647 1.9995C11.6627 1.9995 12.3117 2.5235 12.4797 3.3045L12.8367 4.9715C12.9507 5.4995 13.3647 5.9135 13.8927 6.0265L15.5597 6.3835C16.3407 6.5525 16.8647 7.2015 16.8647 7.9995C16.8647 8.7975 16.3407 9.4465 15.5597 9.6145L13.8927 9.9715C13.6337 10.0275 13.3963 10.157 13.209 10.3445C13.0217 10.5319 12.8925 10.7694 12.8367 11.0285L12.4787 12.6945C12.4054 13.0667 12.2036 13.4014 11.9086 13.6399C11.6135 13.8784 11.2441 14.0057 10.8647 13.9995ZM10.8647 3.2495C10.7667 3.2495 10.5337 3.2795 10.4727 3.5655L10.1147 5.2335C10.0081 5.72777 9.76116 6.18082 9.40361 6.53837C9.04606 6.89593 8.59301 7.14283 8.09873 7.2495L6.43173 7.6065C6.14573 7.6685 6.11473 7.9015 6.11473 7.9995C6.11473 8.0975 6.14573 8.3305 6.43173 8.3925L8.09873 8.7495C8.59301 8.85617 9.04606 9.10307 9.40361 9.46062C9.76116 9.81817 10.0081 10.2712 10.1147 10.7655L10.4727 12.4335C10.5337 12.7195 10.7667 12.7495 10.8647 12.7495C10.9627 12.7495 11.1957 12.7195 11.2567 12.4335L11.6147 10.7665C11.7212 10.272 11.9681 9.81878 12.3256 9.46103C12.6832 9.10329 13.1363 8.85624 13.6307 8.7495L15.2977 8.3925C15.5837 8.3305 15.6147 8.0975 15.6147 7.9995C15.6147 7.9015 15.5837 7.6685 15.2977 7.6065L13.6307 7.2495C13.1365 7.14283 12.6834 6.89593 12.3259 6.53837C11.9683 6.18082 11.7214 5.72777 11.6147 5.2335L11.2567 3.5655C11.1957 3.2795 10.9627 3.2495 10.8647 3.2495ZM3.30873 12.1505L3.49073 11.3015C3.57673 10.8995 4.15073 10.8995 4.23773 11.3015L4.41973 12.1505C4.43509 12.2224 4.47093 12.2883 4.52292 12.3403C4.57491 12.3923 4.64083 12.4281 4.71273 12.4435L5.56173 12.6255C5.96373 12.7115 5.96373 13.2855 5.56173 13.3725L4.71273 13.5545C4.64083 13.5699 4.57491 13.6057 4.52292 13.6577C4.47093 13.7097 4.43509 13.7756 4.41973 13.8475L4.23773 14.6965C4.15173 15.0985 3.57773 15.0985 3.49073 14.6965L3.30873 13.8475C3.29337 13.7756 3.25754 13.7097 3.20555 13.6577C3.15356 13.6057 3.08764 13.5699 3.01573 13.5545L2.16673 13.3725C1.76473 13.2865 1.76473 12.7125 2.16673 12.6255L3.01573 12.4435C3.08769 12.4283 3.15368 12.3925 3.20568 12.3405C3.25769 12.2884 3.29349 12.2225 3.30873 12.1505Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="12" height="13" viewBox="0 0 12 13" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path d="M6 0.5C5.21207 0.5 4.43185 0.655195 3.7039 0.956723C2.97595 1.25825 2.31451 1.70021 1.75736 2.25736C1.20021 2.81451 0.758251 3.47595 0.456723 4.2039C0.155195 4.93185 0 5.71207 0 6.5C0 7.28793 0.155195 8.06815 0.456723 8.7961C0.758251 9.52405 1.20021 10.1855 1.75736 10.7426C2.31451 11.2998 2.97595 11.7417 3.7039 12.0433C4.43185 12.3448 5.21207 12.5 6 12.5C7.5913 12.5 9.11742 11.8679 10.2426 10.7426C11.3679 9.61742 12 8.0913 12 6.5C12 4.9087 11.3679 3.38258 10.2426 2.25736C9.11742 1.13214 7.5913 0.5 6 0.5ZM5.06 8.9L2.9464 6.7856C2.85273 6.69171 2.80018 6.56446 2.80033 6.43183C2.80048 6.29921 2.85331 6.17207 2.9472 6.0784C3.04109 5.98473 3.16834 5.93218 3.30097 5.93233C3.43359 5.93248 3.56073 5.98531 3.6544 6.0792L5.3112 7.7368L8.3464 4.7008C8.44109 4.6109 8.56715 4.56153 8.69771 4.56322C8.82827 4.56492 8.95301 4.61754 9.04534 4.70986C9.13766 4.80219 9.19028 4.92693 9.19198 5.05749C9.19367 5.18805 9.1443 5.31411 9.0544 5.4088L5.5624 8.9H5.06Z" fill="#FBFBFE"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
2
|
+
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
3
|
+
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" width="16" height="16">
|
|
5
|
+
<style>
|
|
6
|
+
@media not (prefers-reduced-motion) {
|
|
7
|
+
@keyframes loadingRotate {
|
|
8
|
+
from { rotate: 0; } to { rotate: 360deg }
|
|
9
|
+
}
|
|
10
|
+
#circle-arrows {
|
|
11
|
+
animation: loadingRotate 1.8s linear infinite;
|
|
12
|
+
transform-origin: 50% 50%;
|
|
13
|
+
}
|
|
14
|
+
#hourglass {
|
|
15
|
+
display: none;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
@media (prefers-reduced-motion) {
|
|
20
|
+
#circle-arrows {
|
|
21
|
+
display: none;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
</style>
|
|
25
|
+
<path id="circle-arrows" d="M9 5.528c0 .42.508.63.804.333l2.528-2.528a.47.47 0 0 0 0-.666L9.805.14A.471.471 0 0 0 9 .472v1.866A5.756 5.756 0 0 0 2.25 8c0 .942.232 1.83.635 2.615l1.143-1.143A4.208 4.208 0 0 1 3.75 8 4.254 4.254 0 0 1 8 3.75c.345 0 .68.042 1 .122v1.656zM7 10.472v1.656c.32.08.655.122 1 .122A4.254 4.254 0 0 0 12.25 8c0-.52-.107-1.013-.279-1.474l1.143-1.143c.404.786.636 1.674.636 2.617A5.756 5.756 0 0 1 7 13.662v1.866a.47.47 0 0 1-.804.333l-2.528-2.528a.47.47 0 0 1 0-.666l2.528-2.528a.47.47 0 0 1 .804.333z"/>
|
|
26
|
+
<g id="hourglass">
|
|
27
|
+
<path d="M13,1 C13.5522847,1 14,1.44771525 14,2 C14,2.55228475 13.5522847,3 13,3 L12.9854217,2.99990801 C12.9950817,3.16495885 13,3.33173274 13,3.5 C13,5.24679885 10.9877318,6.01090495 10.9877318,8.0017538 C10.9877318,9.99260264 13,10.7536922 13,12.5 C13,12.6686079 12.9950617,12.8357163 12.985363,13.0010943 L13,13 C13.5522847,13 14,13.4477153 14,14 C14,14.5522847 13.5522847,15 13,15 L3,15 C2.44771525,15 2,14.5522847 2,14 C2,13.4477153 2.44771525,13 3,13 L3.01463704,13.0010943 C3.00493827,12.8357163 3,12.6686079 3,12.5 C3,10.7536922 4.9877318,9.99260264 5,8.0017538 C5.0122682,6.01090495 3,5.24679885 3,3.5 C3,3.33173274 3.00491834,3.16495885 3.01457832,2.99990801 L3,3 C2.44771525,3 2,2.55228475 2,2 C2,1.44771525 2.44771525,1 3,1 L13,1 Z M10.987,3 L5.012,3 L5.00308914,3.24815712 C5.00103707,3.33163368 5,3.4155948 5,3.5 C5,5.36125069 6.99153646,6.01774089 6.99153646,8.0017538 C6.99153646,9.98576671 5,10.6393737 5,12.5 L5.00307746,12.7513676 L5.01222201,12.9998392 L5.60191711,12.9988344 L6.0425138,12.2959826 C7.02362731,10.7653275 7.67612271,10 8,10 C8.37014547,10 9.16950644,10.9996115 10.3980829,12.9988344 L10.987778,12.9998392 C10.9958674,12.8352104 11,12.66849 11,12.5 C11,10.6393737 8.98689779,10.0147381 8.98689779,8.0017538 C8.98689779,5.98876953 11,5.36125069 11,3.5 L10.9969109,3.24815712 L10.987,3 Z"/>
|
|
28
|
+
<path d="M6,4 L10,4 C8.95166016,6 8.28499349,7 8,7 C7.71500651,7 7.04833984,6 6,4 Z"/>
|
|
29
|
+
</g>
|
|
30
|
+
</svg>
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
<svg width="17" height="16" viewBox="0 0 17 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M8.78182 2.63903C8.58882 2.28803 8.25782 2.25003 8.12482 2.25003C7.99019 2.24847 7.85771 2.28393 7.74185 2.35253C7.62599 2.42113 7.5312 2.52023 7.46782 2.63903L1.97082 12.639C1.90673 12.7528 1.87406 12.8816 1.87617 13.0122C1.87828 13.1427 1.91509 13.2704 1.98282 13.382C2.04798 13.4951 2.14207 13.5888 2.25543 13.6535C2.36879 13.7182 2.49732 13.7515 2.62782 13.75H13.6218C13.7523 13.7515 13.8809 13.7182 13.9942 13.6535C14.1076 13.5888 14.2017 13.4951 14.2668 13.382C14.3346 13.2704 14.3714 13.1427 14.3735 13.0122C14.3756 12.8816 14.3429 12.7528 14.2788 12.639L8.78182 2.63903ZM6.37282 2.03703C6.75182 1.34603 7.43882 1.00003 8.12482 1.00003C8.48341 0.997985 8.83583 1.09326 9.14454 1.2757C9.45325 1.45814 9.70668 1.72092 9.87782 2.03603L15.3748 12.036C16.1078 13.369 15.1438 15 13.6228 15H2.62782C1.10682 15 0.141823 13.37 0.875823 12.037L6.37282 2.03703ZM8.74982 9.06203C8.74982 9.22779 8.68397 9.38676 8.56676 9.50397C8.44955 9.62118 8.29058 9.68703 8.12482 9.68703C7.95906 9.68703 7.80009 9.62118 7.68288 9.50397C7.56566 9.38676 7.49982 9.22779 7.49982 9.06203V5.62503C7.49982 5.45927 7.56566 5.3003 7.68288 5.18309C7.80009 5.06588 7.95906 5.00003 8.12482 5.00003C8.29058 5.00003 8.44955 5.06588 8.56676 5.18309C8.68397 5.3003 8.74982 5.45927 8.74982 5.62503V9.06203ZM7.74982 12L7.49982 11.75V11L7.74982 10.75H8.49982L8.74982 11V11.75L8.49982 12H7.74982Z" fill="black"/>
|
|
3
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
width="40"
|
|
5
|
+
height="40"
|
|
6
|
+
viewBox="0 0 40 40">
|
|
7
|
+
<path
|
|
8
|
+
d="M 1.5006714,23.536225 6.8925879,18.994244 14.585721,26.037937 34.019683,4.5410479 38.499329,9.2235032 14.585721,35.458952 z"
|
|
9
|
+
id="path4"
|
|
10
|
+
style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.25402856;stroke-opacity:1" />
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
height="40"
|
|
5
|
+
width="40"
|
|
6
|
+
viewBox="0 0 40 40">
|
|
7
|
+
<rect
|
|
8
|
+
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
|
|
9
|
+
width="33.76017"
|
|
10
|
+
height="33.76017"
|
|
11
|
+
x="3.119915"
|
|
12
|
+
y="3.119915" />
|
|
13
|
+
<path
|
|
14
|
+
d="m 20.677967,8.54499 c -7.342801,0 -13.295293,4.954293 -13.295293,11.065751 0,2.088793 0.3647173,3.484376 1.575539,5.150563 L 6.0267418,31.45501 13.560595,29.011117 c 2.221262,1.387962 4.125932,1.665377 7.117372,1.665377 7.3428,0 13.295291,-4.954295 13.295291,-11.065753 0,-6.111458 -5.952491,-11.065751 -13.295291,-11.065751 z"
|
|
15
|
+
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.93031836;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"/>
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
width="40"
|
|
5
|
+
height="40"
|
|
6
|
+
viewBox="0 0 40 40">
|
|
7
|
+
<g
|
|
8
|
+
transform="translate(0,-60)"
|
|
9
|
+
id="layer1">
|
|
10
|
+
<rect
|
|
11
|
+
width="36.460953"
|
|
12
|
+
height="34.805603"
|
|
13
|
+
x="1.7695236"
|
|
14
|
+
y="62.597198"
|
|
15
|
+
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.30826771;stroke-opacity:1" />
|
|
16
|
+
<g
|
|
17
|
+
transform="matrix(0.88763677,0,0,0.88763677,2.2472646,8.9890584)">
|
|
18
|
+
<path
|
|
19
|
+
d="M 20,64.526342 C 11.454135,64.526342 4.5263421,71.454135 4.5263421,80 4.5263421,88.545865 11.454135,95.473658 20,95.473658 28.545865,95.473658 35.473658,88.545865 35.473658,80 35.473658,71.454135 28.545865,64.526342 20,64.526342 z m -0.408738,9.488564 c 3.527079,0 6.393832,2.84061 6.393832,6.335441 0,3.494831 -2.866753,6.335441 -6.393832,6.335441 -3.527079,0 -6.393832,-2.84061 -6.393832,-6.335441 0,-3.494831 2.866753,-6.335441 6.393832,-6.335441 z"
|
|
20
|
+
style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.02768445;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
|
21
|
+
<path
|
|
22
|
+
d="m 7.2335209,71.819938 4.9702591,4.161823 c -1.679956,2.581606 -1.443939,6.069592 0.159325,8.677725 l -5.1263071,3.424463 c 0.67516,1.231452 3.0166401,3.547686 4.2331971,4.194757 l 3.907728,-4.567277 c 2.541952,1.45975 5.730694,1.392161 8.438683,-0.12614 l 3.469517,6.108336 c 1.129779,-0.44367 4.742234,-3.449633 5.416358,-5.003859 l -5.46204,-4.415541 c 1.44319,-2.424098 1.651175,-5.267515 0.557303,-7.748623 l 5.903195,-3.833951 C 33.14257,71.704996 30.616217,69.018606 29.02952,67.99296 l -4.118813,4.981678 C 22.411934,71.205099 18.900853,70.937534 16.041319,72.32916 l -3.595408,-5.322091 c -1.345962,0.579488 -4.1293881,2.921233 -5.2123901,4.812869 z m 8.1010311,3.426672 c 2.75284,-2.446266 6.769149,-2.144694 9.048998,0.420874 2.279848,2.56557 2.113919,6.596919 -0.638924,9.043185 -2.752841,2.446267 -6.775754,2.13726 -9.055604,-0.428308 -2.279851,-2.565568 -2.107313,-6.589485 0.64553,-9.035751 z"
|
|
23
|
+
style="fill:#000000;fill-opacity:1;stroke:none" />
|
|
24
|
+
</g>
|
|
25
|
+
</g>
|
|
26
|
+
</svg>
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
width="64"
|
|
5
|
+
height="64"
|
|
6
|
+
viewBox="0 0 64 64">
|
|
7
|
+
<path
|
|
8
|
+
d="M 32.003143,1.4044602 57.432701,62.632577 6.5672991,62.627924 z"
|
|
9
|
+
style="fill:#ffff00;fill-opacity:0.94117647;fill-rule:nonzero;stroke:#000000;stroke-width:1.00493038;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
|
10
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
width="64"
|
|
5
|
+
height="64"
|
|
6
|
+
viewBox="0 0 64 64">
|
|
7
|
+
<path
|
|
8
|
+
d="M 25.470843,9.4933766 C 25.30219,12.141818 30.139101,14.445969 34.704831,13.529144 40.62635,12.541995 41.398833,7.3856498 35.97505,5.777863 31.400921,4.1549155 25.157674,6.5445892 25.470843,9.4933766 z M 4.5246282,17.652051 C 4.068249,11.832873 9.2742983,5.9270407 18.437379,3.0977088 29.751911,-0.87185184 45.495663,1.4008022 53.603953,7.1104009 c 9.275765,6.1889221 7.158128,16.2079421 -3.171076,21.5939521 -1.784316,1.635815 -6.380222,1.21421 -7.068351,3.186186 -1.04003,0.972427 -1.288046,2.050158 -1.232864,3.168203 1.015111,2.000108 -3.831548,1.633216 -3.270553,3.759574 0.589477,5.264544 -0.179276,10.53738 -0.362842,15.806257 -0.492006,2.184998 1.163456,4.574232 -0.734888,6.610642 -2.482919,2.325184 -7.30604,2.189143 -9.193497,-0.274767 -2.733688,-1.740626 -8.254447,-3.615254 -6.104247,-6.339626 3.468112,-1.708686 -2.116197,-3.449897 0.431242,-5.080274 5.058402,-1.39256 -2.393215,-2.304318 -0.146889,-4.334645 3.069198,-0.977415 2.056986,-2.518352 -0.219121,-3.540397 1.876567,-1.807151 1.484149,-4.868919 -2.565455,-5.942205 0.150866,-1.805474 2.905737,-4.136876 -1.679967,-5.20493 C 10.260902,27.882167 4.6872697,22.95045 4.5245945,17.652051 z"
|
|
9
|
+
id="path604"
|
|
10
|
+
style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:1.72665179;stroke-opacity:1" />
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
width="64"
|
|
5
|
+
height="64"
|
|
6
|
+
viewBox="0 0 64 64">
|
|
7
|
+
<path
|
|
8
|
+
d="M 32.003143,10.913072 57.432701,53.086929 6.567299,53.083723 z"
|
|
9
|
+
id="path2985"
|
|
10
|
+
style="fill:#ffff00;fill-opacity:0.94117647;fill-rule:nonzero;stroke:#000000;stroke-width:0.83403099;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
|
11
|
+
</svg>
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
width="40"
|
|
5
|
+
height="40"
|
|
6
|
+
viewBox="0 0 40 40">
|
|
7
|
+
<rect
|
|
8
|
+
width="36.075428"
|
|
9
|
+
height="31.096582"
|
|
10
|
+
x="1.962286"
|
|
11
|
+
y="4.4517088"
|
|
12
|
+
id="rect4"
|
|
13
|
+
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.23004246;stroke-opacity:1" />
|
|
14
|
+
<rect
|
|
15
|
+
width="27.96859"
|
|
16
|
+
height="1.5012145"
|
|
17
|
+
x="6.0157046"
|
|
18
|
+
y="10.285"
|
|
19
|
+
id="rect6"
|
|
20
|
+
style="fill:#000000;fill-opacity:1;stroke:none" />
|
|
21
|
+
<rect
|
|
22
|
+
width="27.96859"
|
|
23
|
+
height="0.85783684"
|
|
24
|
+
x="6.0157056"
|
|
25
|
+
y="23.21689"
|
|
26
|
+
id="rect8"
|
|
27
|
+
style="fill:#000000;fill-opacity:1;stroke:none" />
|
|
28
|
+
<rect
|
|
29
|
+
width="27.96859"
|
|
30
|
+
height="0.85783684"
|
|
31
|
+
x="5.8130345"
|
|
32
|
+
y="28.964394"
|
|
33
|
+
id="rect10"
|
|
34
|
+
style="fill:#000000;fill-opacity:1;stroke:none" />
|
|
35
|
+
<rect
|
|
36
|
+
width="27.96859"
|
|
37
|
+
height="0.85783684"
|
|
38
|
+
x="6.0157046"
|
|
39
|
+
y="17.426493"
|
|
40
|
+
id="rect12"
|
|
41
|
+
style="fill:#000000;fill-opacity:1;stroke:none" />
|
|
42
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
2
|
+
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
3
|
+
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="40" width="40">
|
|
5
|
+
<path d="M9 3.5a1.5 1.5 0 0 0-3-.001v7.95C6 12.83 7.12 14 8.5 14s2.5-1.17 2.5-2.55V5.5a.5.5 0 0 1 1 0v6.03C11.955 13.427 10.405 15 8.5 15S5.044 13.426 5 11.53V3.5a2.5 2.5 0 0 1 5 0v7.003a1.5 1.5 0 0 1-3-.003v-5a.5.5 0 0 1 1 0v5a.5.5 0 0 0 1 0Z"/>
|
|
6
|
+
</svg>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
|
2
|
+
<svg
|
|
3
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
4
|
+
width="40"
|
|
5
|
+
height="40"
|
|
6
|
+
viewBox="0 0 40 40">
|
|
7
|
+
<rect
|
|
8
|
+
width="33.76017"
|
|
9
|
+
height="33.76017"
|
|
10
|
+
x="3.119915"
|
|
11
|
+
y="3.119915"
|
|
12
|
+
style="fill:#ffff00;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
|
|
13
|
+
<path
|
|
14
|
+
d="m 17.692678,34.50206 0,-16.182224 c -1.930515,-0.103225 -3.455824,-0.730383 -4.57593,-1.881473 -1.12011,-1.151067 -1.680164,-2.619596 -1.680164,-4.405591 0,-1.992435 0.621995,-3.5796849 1.865988,-4.7617553 1.243989,-1.1820288 3.06352,-1.7730536 5.458598,-1.7730764 l 9.802246,0 0,2.6789711 -2.229895,0 0,26.3251486 -2.632515,0 0,-26.3251486 -3.45324,0 0,26.3251486 z"
|
|
15
|
+
style="font-size:29.42051125px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:125%;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:1.07795751;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial" />
|
|
16
|
+
</svg>
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
<!-- This Source Code Form is subject to the terms of the Mozilla Public
|
|
2
|
+
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
3
|
+
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
|
4
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" height="40" width="40">
|
|
5
|
+
<path d="M8.156 12.5a.99.99 0 0 0 .707-.294l.523-2.574L10.5 8.499l1.058-1.04 2.65-.601a.996.996 0 0 0 0-1.414l-3.657-3.658a.996.996 0 0 0-1.414 0l-.523 2.576L7.5 5.499 6.442 6.535l-2.65.6a.996.996 0 0 0 0 1.413l3.657 3.658a.999.999 0 0 0 .707.295z"/>
|
|
6
|
+
<path d="M9.842.996c-.386 0-.77.146-1.06.44a.5.5 0 0 0-.136.251l-.492 2.43-1.008 1.03-.953.933-2.511.566a.5.5 0 0 0-.243.133 1.505 1.505 0 0 0-.002 2.123l1.477 1.477-2.768 2.767a.5.5 0 0 0 0 .707.5.5 0 0 0 .708 0l2.767-2.767 1.475 1.474a1.494 1.494 0 0 0 2.123-.002.5.5 0 0 0 .135-.254l.492-2.427 1.008-1.024.953-.937 2.511-.57a.5.5 0 0 0 .243-.132c.586-.58.583-1.543.002-2.125l-3.659-3.656A1.501 1.501 0 0 0 9.842.996Zm.05 1.025a.394.394 0 0 1 .305.12l3.658 3.657c.18.18.141.432.002.627l-2.41.545a.5.5 0 0 0-.24.131L10.15 8.142a.5.5 0 0 0-.007.006L9.029 9.283a.5.5 0 0 0-.133.25l-.48 2.36c-.082.053-.165.109-.26.109a.492.492 0 0 1-.353-.149L4.145 8.195c-.18-.18-.141-.432-.002-.627l2.41-.545a.5.5 0 0 0 .238-.13L7.85 5.857a.5.5 0 0 0 .007-.008l1.114-1.138a.5.5 0 0 0 .133-.25l.472-2.323a.619.619 0 0 1 .317-.117Z"/>
|
|
7
|
+
</svg>
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
<svg width="18" height="19" viewBox="0 0 18 19" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M12.2 3.09C12.28 3.01 12.43 3 12.43 3C12.48 3 12.58 3.02 12.66 3.1L14.45 4.89C14.58 5.02 14.58 5.22 14.45 5.35L11.7713 8.02872L9.51628 5.77372L12.2 3.09ZM13.2658 5.12L11.7713 6.6145L10.9305 5.77372L12.425 4.27921L13.2658 5.12Z" fill="#FBFBFE"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M5.98 9.32L8.23 11.57L10.7106 9.08938L8.45562 6.83438L5.98 9.31V9.32ZM8.23 10.1558L9.29641 9.08938L8.45562 8.24859L7.38921 9.315L8.23 10.1558Z" fill="#FBFBFE"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M10.1526 13.1816L16.2125 7.1217C16.7576 6.58919 17.05 5.8707 17.05 5.12C17.05 4.36931 16.7576 3.65084 16.2126 3.11834L14.4317 1.33747C13.8992 0.79242 13.1807 0.5 12.43 0.5C11.6643 0.5 10.9529 0.812929 10.4329 1.33289L3.68289 8.08289C3.04127 8.72452 3.00459 9.75075 3.57288 10.4363L1.29187 12.7239C1.09186 12.9245 0.990263 13.1957 1.0007 13.4685L1 14.5C0.447715 14.5 0 14.9477 0 15.5V17.5C0 18.0523 0.447715 18.5 1 18.5H16C16.5523 18.5 17 18.0523 17 17.5V15.5C17 14.9477 16.5523 14.5 16 14.5H10.2325C9.83594 14.5 9.39953 13.9347 10.1526 13.1816ZM4.39 9.85L4.9807 10.4407L2.39762 13.0312H6.63877L7.10501 12.565L7.57125 13.0312H8.88875L15.51 6.41C15.86 6.07 16.05 5.61 16.05 5.12C16.05 4.63 15.86 4.17 15.51 3.83L13.72 2.04C13.38 1.69 12.92 1.5 12.43 1.5C11.94 1.5 11.48 1.7 11.14 2.04L4.39 8.79C4.1 9.08 4.1 9.56 4.39 9.85ZM16 17.5V15.5H1V17.5H16Z" fill="#FBFBFE"/>
|
|
5
|
+
<path d="M15.1616 6.05136L15.1616 6.05132L15.1564 6.05645L8.40645 12.8064C8.35915 12.8537 8.29589 12.88 8.23 12.88C8.16411 12.88 8.10085 12.8537 8.05355 12.8064L7.45857 12.2115L7.10501 11.8579L6.75146 12.2115L6.03289 12.93H3.20465L5.33477 10.7937L5.6873 10.4402L5.33426 10.0871L4.74355 9.49645C4.64882 9.40171 4.64882 9.23829 4.74355 9.14355L11.4936 2.39355C11.7436 2.14354 12.0779 2 12.43 2C12.7883 2 13.1179 2.13776 13.3614 2.38839L13.3613 2.38843L13.3664 2.39355L15.1564 4.18355L15.1564 4.18359L15.1616 4.18864C15.4122 4.43211 15.55 4.76166 15.55 5.12C15.55 5.47834 15.4122 5.80789 15.1616 6.05136ZM7.87645 11.9236L8.23 12.2771L8.58355 11.9236L11.0642 9.44293L11.4177 9.08938L11.0642 8.73582L8.80918 6.48082L8.45562 6.12727L8.10207 6.48082L5.62645 8.95645L5.48 9.10289V9.31V9.32V9.52711L5.62645 9.67355L7.87645 11.9236ZM11.4177 8.38227L11.7713 8.73582L12.1248 8.38227L14.8036 5.70355C15.1288 5.37829 15.1288 4.86171 14.8036 4.53645L13.0136 2.74645C12.8186 2.55146 12.5792 2.5 12.43 2.5H12.4134L12.3967 2.50111L12.43 3C12.3967 2.50111 12.3966 2.50112 12.3965 2.50112L12.3963 2.50114L12.3957 2.50117L12.3947 2.50125L12.3924 2.50142L12.387 2.50184L12.3732 2.50311C12.3628 2.50416 12.3498 2.50567 12.3346 2.50784C12.3049 2.51208 12.2642 2.51925 12.2178 2.53146C12.1396 2.55202 11.9797 2.60317 11.8464 2.73645L9.16273 5.42016L8.80918 5.77372L9.16273 6.12727L11.4177 8.38227ZM1.5 16H15.5V17H1.5V16Z" stroke="#15141A"/>
|
|
6
|
+
</svg>
|