initial commit
Some checks failed
Build and Deploy / build-and-deploy (push) Has been cancelled

This commit is contained in:
cjh
2026-06-01 16:24:47 +08:00
commit 988d77d16f
1388 changed files with 308133 additions and 0 deletions

66
src/App.vue Normal file
View File

@@ -0,0 +1,66 @@
<script setup lang="ts">
import { computed } from 'vue';
import { NConfigProvider, darkTheme } from 'naive-ui';
import type { WatermarkProps } from 'naive-ui';
import { useAppStore } from './store/modules/app';
import { useThemeStore } from './store/modules/theme';
import { useAuthStore } from './store/modules/auth';
import { naiveDateLocales, naiveLocales } from './locales/naive';
defineOptions({
name: 'App'
});
const appStore = useAppStore();
const themeStore = useThemeStore();
const { userInfo } = useAuthStore();
const naiveDarkTheme = computed(() => (themeStore.darkMode ? darkTheme : undefined));
const naiveLocale = computed(() => {
return naiveLocales[appStore.locale];
});
const naiveDateLocale = computed(() => {
return naiveDateLocales[appStore.locale];
});
const watermarkProps = computed<WatermarkProps>(() => {
const appTitle = import.meta.env.VITE_APP_TITLE || 'RuoYi-Vue-Plus';
const content =
themeStore.watermark.enableUserName && userInfo.user?.userName
? `${userInfo.user?.nickName}@${appTitle} ${userInfo.user?.userName}`
: appTitle;
return {
content,
cross: true,
fullscreen: true,
fontSize: 14,
fontColor: themeStore.darkMode ? 'rgba(200, 200, 200, 0.03)' : 'rgba(200, 200, 200, 0.2)',
lineHeight: 14,
width: 200,
height: 300,
xOffset: 12,
yOffset: 60,
rotate: -18,
zIndex: 9999
};
});
</script>
<template>
<NConfigProvider
:theme="naiveDarkTheme"
:theme-overrides="themeStore.naiveTheme"
:locale="naiveLocale"
:date-locale="naiveDateLocale"
class="h-full"
>
<AppProvider>
<RouterView class="bg-layout" />
<NWatermark v-if="themeStore.watermark.visible" v-bind="watermarkProps" />
</AppProvider>
</NConfigProvider>
</template>
<style scoped></style>

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 230 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 759 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 550 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 757 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 679 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 29 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 574 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 743 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 13 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 617 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 542 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 879 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 162 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 88 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 478 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.9 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 56 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 163 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 571 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 18 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.6 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 498 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 322 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 991 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 683 B

BIN
src/assets/imgs/soybean.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 112 KiB

View File

@@ -0,0 +1,228 @@
{
"sensitiveContentCheck": {
"enable": false,
"sensitiveWords": "发包人, 投标文件, 其他敏感词",
"sensitiveWordsEnable": false,
"checkFileProperties": false,
"palaceCheck": false,
"imageCheck": false
},
"paperRequirements": {
"enable": false,
"paperSize": "A4",
"paperOrientation": "纵向",
"paperSizeEnable": false,
"paperOrientationEnable": false
},
"colorRequirements": {
"enable": false,
"whiteColorPage": false,
"noColorContent": false,
"noColorImages": false,
"noColorGraphics": false,
"noTableShading": false,
"noTableColorBorders": false
},
"pageRequirements": {
"enable": false,
"margins": {
"topMargin": 2.54,
"bottomMargin": 2.54,
"leftMargin": 1.9,
"rightMargin": 1.9,
"topMarginEnable": false,
"bottomMarginEnable": false,
"rightMarginEnable": false,
"leftMarginEnable": false
},
"headerFooter": {
"headerDistance": 1.9,
"footerDistance": 1.57,
"noHeader": false,
"noFooter": false,
"noPageBorders": false,
"headerDistanceEnable": false,
"footerDistanceEnable": false
}
},
"contentRequirements": {
"enable": false,
"font": {
"chineseFont": "宋体",
"westernFont": "Times New Roman",
"fontSize": "四号",
"chineseFontEnable": false,
"westernFontEnable": false,
"fontSizeEnable": false
},
"title1": {
"fontSize": "小三",
"fontSizeEnable": false,
"chineseFont": "黑体",
"chineseFontEnable": false,
"westernFont": "Times New Roman",
"westernFontEnable": false
},
"title2": {
"fontSize": "四号",
"fontSizeEnable": false,
"chineseFont": "黑体",
"chineseFontEnable": false,
"westernFont": "Times New Roman",
"westernFontEnable": false
},
"title3": {
"fontSize": "四号",
"fontSizeEnable": false,
"chineseFont": "黑体",
"chineseFontEnable": false,
"westernFont": "Times New Roman",
"westernFontEnable": false
},
"title4": {
"fontSize": "四号",
"fontSizeEnable": false,
"chineseFont": "黑体",
"chineseFontEnable": false,
"westernFont": "Times New Roman",
"westernFontEnable": false
},
"imageTitle": {
"fontSize": "五号",
"fontSizeEnable": false,
"chineseFont": "黑体",
"chineseFontEnable": false,
"westernFont": "Times New Roman",
"westernFontEnable": false
},
"tableTitle": {
"fontSize": "五号",
"fontSizeEnable": false,
"chineseFont": "黑体",
"chineseFontEnable": false,
"westernFont": "Times New Roman",
"westernFontEnable": false
},
"paragraph": {
"lineSpacing": "2倍行距",
"spacingBefore": 0,
"spacingAfter": 0,
"leftIndent": 2,
"leftIndentEnable": false,
"rightIndent": 2,
"rightIndentEnable": false,
"firstLineIndent": 2,
"firstLineIndentEnable": false,
"alignment": "左对齐",
"outlineLevelBodyText": false,
"lineSpacingEnable": false,
"spacingBeforeEnable": false,
"spacingAfterEnable": false,
"alignmentEnable": false
}
},
"pageCountRequirements": {
"enable": false,
"pageCount": 120,
"pageCountEnable": false
},
"tableRequirements": {
"enable": false,
"disallowTables": false,
"noTableRequirements": false,
"tableProperties": {
"tableAlignment": "左对齐",
"noTextEnvironment": false,
"cellVerticalAlignment": "左对齐",
"borderStyleSolid": false,
"borderWidth": 0.5,
"tableAlignmentEnable": false,
"cellVerticalAlignmentEnable": false,
"borderWidthEnable": false
},
"font": {
"chineseFont": "宋体",
"westernFont": "Times New Roman",
"fontSize": "四号",
"chineseFontEnable": false,
"westernFontEnable": false,
"fontSizeEnable": false
}
},
"imageRequirements": {
"enable": false,
"disallowImages": false,
"noImageRequirements": false,
"imageProperties": { "wrapText": "嵌入型", "wrapTextEnable": false }
},
"pageNumberRequirements": {
"enable": false,
"disallowPageNumbers": false,
"noPageNumberRequirements": false,
"font": {
"chineseFont": "宋体",
"westernFont": "Times New Roman",
"fontSize": "五号",
"chineseFontEnable": false,
"westernFontEnable": false,
"fontSizeEnable": false
},
"pageNumberFormat": {
"numberingFormat": "1,2,3...",
"range": "整篇文档",
"continuous": false,
"numberingFormatEnable": false,
"rangeEnable": false
}
},
"tocRequirements": {
"enable": false,
"disallowToc": false,
"tocHidePageNumbers": false,
"font": {
"chineseFont": "宋体",
"westernFont": "Times New Roman",
"fontSize": "四号",
"chineseFontEnable": false,
"westernFontEnable": false,
"fontSizeEnable": false
},
"paragraph": {
"lineSpacing": "2倍行距",
"spacingBefore": 1,
"spacingAfter": 1,
"leftIndent": 1,
"leftIndentEnable": false,
"rightIndent": 1,
"rightIndentEnable": false,
"firstLineIndent": 1,
"firstLineIndentEnable": false,
"alignment": "左对齐",
"lineSpacingEnable": false,
"spacingBeforeEnable": false,
"spacingAfterEnable": false,
"alignmentEnable": false
}
},
"defaultChecks": {
"enable": false,
"specialRequirements": { "disallowHyperlinks": false, "disallowShapes": false, "disallowWatermark": false },
"fontRequirements": {
"disallowBold": false,
"disallowUnderline": false,
"disallowItalic": false,
"disallowStrikethrough": false,
"disallowEmphasisMark": false,
"allowedColor": "自动/黑色",
"allowedColorEnable": false
},
"paragraphRequirements": { "requireDocumentGrid": false, "requireSnapToGrid": "无网格" }
},
"prohibitedItems": {
"enable": false,
"disallowBlankLines": false,
"disallowSpaces": false,
"disallowBlankPages": false,
"disallowHalfwidthPunctuation": false
}
}

View File

@@ -0,0 +1,228 @@
{
"sensitiveContentCheck": {
"enable": true,
"sensitiveWords": "发包人, 投标文件, 其他敏感词",
"sensitiveWordsEnable": true,
"checkFileProperties": true,
"palaceCheck": true,
"imageCheck": true
},
"paperRequirements": {
"enable": true,
"paperSize": "A4",
"paperOrientation": "纵向",
"paperSizeEnable": true,
"paperOrientationEnable": true
},
"colorRequirements": {
"enable": true,
"whiteColorPage": true,
"noColorContent": true,
"noColorImages": true,
"noColorGraphics": true,
"noTableShading": true,
"noTableColorBorders": true
},
"pageRequirements": {
"enable": true,
"margins": {
"topMargin": 2.54,
"bottomMargin": 2.54,
"leftMargin": 1.9,
"rightMargin": 1.9,
"topMarginEnable": true,
"bottomMarginEnable": true,
"rightMarginEnable": true,
"leftMarginEnable": true
},
"headerFooter": {
"headerDistance": 1.9,
"footerDistance": 1.57,
"noHeader": true,
"noFooter": true,
"noPageBorders": true,
"headerDistanceEnable": true,
"footerDistanceEnable": true
}
},
"contentRequirements": {
"enable": true,
"font": {
"chineseFont": "宋体",
"westernFont": "Times New Roman",
"fontSize": "四号",
"chineseFontEnable": true,
"westernFontEnable": true,
"fontSizeEnable": true
},
"title1": {
"fontSize": "小三",
"fontSizeEnable": true,
"chineseFont": "黑体",
"chineseFontEnable": true,
"westernFont": "Times New Roman",
"westernFontEnable": true
},
"title2": {
"fontSize": "四号",
"fontSizeEnable": true,
"chineseFont": "黑体",
"chineseFontEnable": true,
"westernFont": "Times New Roman",
"westernFontEnable": true
},
"title3": {
"fontSize": "四号",
"fontSizeEnable": true,
"chineseFont": "黑体",
"chineseFontEnable": true,
"westernFont": "Times New Roman",
"westernFontEnable": true
},
"title4": {
"fontSize": "四号",
"fontSizeEnable": true,
"chineseFont": "黑体",
"chineseFontEnable": true,
"westernFont": "Times New Roman",
"westernFontEnable": true
},
"imageTitle": {
"fontSize": "五号",
"fontSizeEnable": true,
"chineseFont": "黑体",
"chineseFontEnable": true,
"westernFont": "Times New Roman",
"westernFontEnable": true
},
"tableTitle": {
"fontSize": "五号",
"fontSizeEnable": true,
"chineseFont": "黑体",
"chineseFontEnable": true,
"westernFont": "Times New Roman",
"westernFontEnable": true
},
"paragraph": {
"lineSpacing": "2倍行距",
"spacingBefore": 0,
"spacingAfter": 0,
"leftIndent": 2,
"leftIndentEnable": true,
"rightIndent": 2,
"rightIndentEnable": true,
"firstLineIndent": 2,
"firstLineIndentEnable": true,
"alignment": "左对齐",
"outlineLevelBodyText": true,
"lineSpacingEnable": true,
"spacingBeforeEnable": true,
"spacingAfterEnable": true,
"alignmentEnable": true
}
},
"pageCountRequirements": {
"enable": true,
"pageCount": 120,
"pageCountEnable": true
},
"tableRequirements": {
"enable": true,
"disallowTables": true,
"noTableRequirements": true,
"tableProperties": {
"tableAlignment": "左对齐",
"noTextEnvironment": true,
"cellVerticalAlignment": "左对齐",
"borderStyleSolid": true,
"borderWidth": 0.5,
"tableAlignmentEnable": true,
"cellVerticalAlignmentEnable": true,
"borderWidthEnable": true
},
"font": {
"chineseFont": "宋体",
"westernFont": "Times New Roman",
"fontSize": "四号",
"chineseFontEnable": true,
"westernFontEnable": true,
"fontSizeEnable": true
}
},
"imageRequirements": {
"enable": true,
"disallowImages": true,
"noImageRequirements": true,
"imageProperties": { "wrapText": "嵌入型", "wrapTextEnable": true }
},
"pageNumberRequirements": {
"enable": true,
"disallowPageNumbers": true,
"noPageNumberRequirements": true,
"font": {
"chineseFont": "宋体",
"westernFont": "Times New Roman",
"fontSize": "五号",
"chineseFontEnable": true,
"westernFontEnable": true,
"fontSizeEnable": true
},
"pageNumberFormat": {
"numberingFormat": "1,2,3...",
"range": "整篇文档",
"continuous": true,
"numberingFormatEnable": true,
"rangeEnable": true
}
},
"tocRequirements": {
"enable": true,
"disallowToc": true,
"tocHidePageNumbers": true,
"font": {
"chineseFont": "宋体",
"westernFont": "Times New Roman",
"fontSize": "四号",
"chineseFontEnable": true,
"westernFontEnable": true,
"fontSizeEnable": true
},
"paragraph": {
"lineSpacing": "2倍行距",
"spacingBefore": 1,
"spacingAfter": 1,
"leftIndent": 1,
"leftIndentEnable": true,
"rightIndent": 1,
"rightIndentEnable": true,
"firstLineIndent": 1,
"firstLineIndentEnable": true,
"alignment": "左对齐",
"lineSpacingEnable": true,
"spacingBeforeEnable": true,
"spacingAfterEnable": true,
"alignmentEnable": true
}
},
"defaultChecks": {
"enable": true,
"specialRequirements": { "disallowHyperlinks": true, "disallowShapes": true, "disallowWatermark": true },
"fontRequirements": {
"disallowBold": true,
"disallowUnderline": true,
"disallowItalic": true,
"disallowStrikethrough": true,
"disallowEmphasisMark": true,
"allowedColor": "自动/黑色",
"allowedColorEnable": true
},
"paragraphRequirements": { "requireDocumentGrid": true, "requireSnapToGrid": "无网格" }
},
"prohibitedItems": {
"enable": true,
"disallowBlankLines": true,
"disallowSpaces": true,
"disallowBlankPages": true,
"disallowHalfwidthPunctuation": true
}
}

View File

@@ -0,0 +1,228 @@
{
"sensitiveContentCheck": {
"enable": true,
"sensitiveWords": "发包人, 投标文件, 其他敏感词",
"sensitiveWordsEnable": true,
"checkFileProperties": true,
"palaceCheck": true,
"imageCheck": true
},
"paperRequirements": {
"enable": true,
"paperSize": "A4",
"paperOrientation": "纵向",
"paperSizeEnable": true,
"paperOrientationEnable": true
},
"colorRequirements": {
"enable": true,
"whiteColorPage": true,
"noColorContent": false,
"noColorImages": false,
"noColorGraphics": false,
"noTableShading": false,
"noTableColorBorders": false
},
"pageRequirements": {
"enable": true,
"margins": {
"topMargin": 2.54,
"bottomMargin": 2.54,
"leftMargin": 1.9,
"rightMargin": 1.9,
"topMarginEnable": true,
"bottomMarginEnable": true,
"rightMarginEnable": true,
"leftMarginEnable": true
},
"headerFooter": {
"headerDistance": 1.9,
"footerDistance": 1.57,
"noHeader": true,
"noFooter": false,
"noPageBorders": false,
"headerDistanceEnable": true,
"footerDistanceEnable": true
}
},
"contentRequirements": {
"enable": true,
"font": {
"chineseFont": "宋体",
"westernFont": "Times New Roman",
"fontSize": "四号",
"chineseFontEnable": true,
"westernFontEnable": true,
"fontSizeEnable": true
},
"title1": {
"fontSize": "小三",
"fontSizeEnable": true,
"chineseFont": "黑体",
"chineseFontEnable": true,
"westernFont": "Times New Roman",
"westernFontEnable": true
},
"title2": {
"fontSize": "四号",
"fontSizeEnable": true,
"chineseFont": "黑体",
"chineseFontEnable": true,
"westernFont": "Times New Roman",
"westernFontEnable": true
},
"title3": {
"fontSize": "四号",
"fontSizeEnable": true,
"chineseFont": "黑体",
"chineseFontEnable": true,
"westernFont": "Times New Roman",
"westernFontEnable": false
},
"title4": {
"fontSize": "四号",
"fontSizeEnable": false,
"chineseFont": "黑体",
"chineseFontEnable": true,
"westernFont": "Times New Roman",
"westernFontEnable": false
},
"imageTitle": {
"fontSize": "五号",
"fontSizeEnable": true,
"chineseFont": "黑体",
"chineseFontEnable": true,
"westernFont": "Times New Roman",
"westernFontEnable": true
},
"tableTitle": {
"fontSize": "五号",
"fontSizeEnable": true,
"chineseFont": "黑体",
"chineseFontEnable": true,
"westernFont": "Times New Roman",
"westernFontEnable": false
},
"paragraph": {
"lineSpacing": "2倍行距",
"spacingBefore": 0,
"spacingAfter": 0,
"leftIndent": 2,
"leftIndentEnable": true,
"rightIndent": 2,
"rightIndentEnable": true,
"firstLineIndent": 2,
"firstLineIndentEnable": true,
"alignment": "左对齐",
"outlineLevelBodyText": true,
"lineSpacingEnable": true,
"spacingBeforeEnable": true,
"spacingAfterEnable": true,
"alignmentEnable": true
}
},
"pageCountRequirements": {
"enable": false,
"pageCount": 120,
"pageCountEnable": false
},
"tableRequirements": {
"enable": true,
"disallowTables": false,
"noTableRequirements": false,
"tableProperties": {
"tableAlignment": "左对齐",
"noTextEnvironment": false,
"cellVerticalAlignment": "左对齐",
"borderStyleSolid": false,
"borderWidth": 0.5,
"tableAlignmentEnable": false,
"cellVerticalAlignmentEnable": false,
"borderWidthEnable": false
},
"font": {
"chineseFont": "宋体",
"westernFont": "Times New Roman",
"fontSize": "四号",
"chineseFontEnable": true,
"westernFontEnable": true,
"fontSizeEnable": true
}
},
"imageRequirements": {
"enable": true,
"disallowImages": false,
"noImageRequirements": false,
"imageProperties": { "wrapText": "嵌入型", "wrapTextEnable": true }
},
"pageNumberRequirements": {
"enable": true,
"disallowPageNumbers": false,
"noPageNumberRequirements": false,
"font": {
"chineseFont": "宋体",
"westernFont": "Times New Roman",
"fontSize": "五号",
"chineseFontEnable": true,
"westernFontEnable": true,
"fontSizeEnable": true
},
"pageNumberFormat": {
"numberingFormat": "1,2,3...",
"range": "整篇文档",
"continuous": true,
"numberingFormatEnable": true,
"rangeEnable": true
}
},
"tocRequirements": {
"enable": true,
"disallowToc": false,
"tocHidePageNumbers": false,
"font": {
"chineseFont": "宋体",
"westernFont": "Times New Roman",
"fontSize": "四号",
"chineseFontEnable": true,
"westernFontEnable": false,
"fontSizeEnable": false
},
"paragraph": {
"lineSpacing": "2倍行距",
"spacingBefore": 1,
"spacingAfter": 1,
"leftIndent": 1,
"leftIndentEnable": true,
"rightIndent": 1,
"rightIndentEnable": false,
"firstLineIndent": 1,
"firstLineIndentEnable": false,
"alignment": "左对齐",
"lineSpacingEnable": true,
"spacingBeforeEnable": false,
"spacingAfterEnable": false,
"alignmentEnable": true
}
},
"defaultChecks": {
"enable": true,
"specialRequirements": { "disallowHyperlinks": false, "disallowShapes": false, "disallowWatermark": true },
"fontRequirements": {
"disallowBold": false,
"disallowUnderline": true,
"disallowItalic": true,
"disallowStrikethrough": true,
"disallowEmphasisMark": true,
"allowedColor": "自动/黑色",
"allowedColorEnable": true
},
"paragraphRequirements": { "requireDocumentGrid": false, "requireSnapToGrid": "无网格" }
},
"prohibitedItems": {
"enable": true,
"disallowBlankLines": true,
"disallowSpaces": false,
"disallowBlankPages": true,
"disallowHalfwidthPunctuation": true
}
}

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M22 12h-4l-3 9L9 3l-3 9H2"/></svg>

After

Width:  |  Height:  |  Size: 202 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="47.586700439453125" height="47.5869140625" viewBox="0 0 47.586700439453125 47.5869140625" fill="#A6A6A6"><path d="M45.7564 21.9631L25.6236 21.9631L25.6236 1.83028C25.6236 0.805328 24.8183 0 23.7933 0C22.7684 0 21.9631 0.805328 21.9631 1.83028L21.9631 21.9631L1.83028 21.9631C0.805328 21.9631 0 22.7684 0 23.7933C0 24.8183 0.805328 25.6236 1.83028 25.6236L21.9631 25.6236L21.9631 45.7564C21.9631 46.7813 22.7684 47.5867 23.7933 47.5867C24.8183 47.5867 25.6236 46.7813 25.6236 45.7564L25.6236 25.6236L45.7564 25.6236C46.7813 25.6236 47.5867 24.8183 47.5867 23.7933C47.5867 22.7684 46.7813 21.9631 45.7564 21.9631Z" ></path></svg>

After

Width:  |  Height:  |  Size: 721 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="12.2802734375" height="14.5341796875" viewBox="0 0 12.2802734375 14.5341796875" fill="none"><path fill="url(#linear_fill_17_12543_0_0)" d="M10.8705 0.00038588L12.2803 14.5339L9.08966 14.5339L8.71865 10.5796L4.26657 10.5796L3.0237 14.5339L0 14.5339L4.09962 0.719359L3.56166 0.00038588L10.8705 0.00038588ZM6.77087 2.46544L4.99004 8.11451L8.5517 8.11451L8.01374 2.46544L6.77087 2.46544Z"></path><path fill="url(#linear_fill_17_12543_1_0)" d="M18.9955 0.00038588L17.3817 14.5339L14.0055 14.5339L15.2484 0.976135L14.7104 0.00038588L18.9955 0.00038588Z"></path><path fill="url(#linear_fill_17_12543_2_0)" d="M20.628 16.2543L21.7595 5.13591L20.7949 5.13591L21.0361 2.69653L25.1728 2.69653L24.1711 12.6081L25.1728 12.2486L24.9131 14.7907L20.628 16.2543ZM24.8203 -1.69434L25.3583 1.72079L22.5201 1.72079L21.9821 -1.69434L24.8203 -1.69434ZM36.2659 -1.64298L35.2085 8.78213L25.9334 8.78213L26.898 -0.692909L26.527 -1.64298L36.2659 -1.64298ZM32.3518 6.39411L32.9268 0.745036L29.8475 0.745036L29.2724 6.39411L32.3518 6.39411ZM29.866 9.75788L27.4916 16.3057L24.6348 16.3057L27.0093 9.75788L29.866 9.75788ZM33.9471 9.75788L34.9859 16.3057L32.1106 16.3057L31.0903 9.75788L33.9471 9.75788Z"></path><path fill="url(#linear_fill_17_12543_3_0)" d="M47.3033 -1.69434L46.617 5.13591L43.7788 5.13591L43.315 6.59953L46.4686 6.59953L45.6524 14.6109C45.5782 15.3556 45.17 15.8306 45.17 15.8306C44.7619 16.3057 44.224 16.3057 44.224 16.3057L41.6084 16.3057L42.9069 13.9176L43.4078 9.0389L42.5173 9.0389L40.1986 16.3057L37.0265 16.3057L39.3452 9.0389L38.1209 9.0389L38.3621 6.59953L40.1429 6.59953L40.6067 5.13591L38.5105 5.13591L39.1968 -1.69434L47.3033 -1.69434ZM54 -1.69434L52.349 14.6109C52.2748 15.3556 51.8667 15.8306 51.8667 15.8306C51.4586 16.3057 50.9206 16.3057 50.9206 16.3057L47.7856 16.3057L49.4181 13.9176L50.9206 -0.949685L50.4754 -1.69434L54 -1.69434ZM50.1044 0.257162L48.7688 13.4298L46.6726 13.4298L48.0082 0.257162L50.1044 0.257162ZM41.5898 0.745036L41.3858 2.69653L44.2054 2.69653L44.4095 0.745036L41.5898 0.745036Z"></path><defs><linearGradient id="linear_fill_17_12543_0_0" x1="50.68359375" y1="12.3408203125" x2="11.7431640625" y2="-1.6943359375" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#5741F9" /><stop offset="1" stop-color="#0065F9" /></linearGradient><linearGradient id="linear_fill_17_12543_1_0" x1="50.68359375" y1="12.3408203125" x2="11.7431640625" y2="-1.6943359375" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#5741F9" /><stop offset="1" stop-color="#0065F9" /></linearGradient><linearGradient id="linear_fill_17_12543_2_0" x1="50.68359375" y1="12.3408203125" x2="11.7431640625" y2="-1.6943359375" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#5741F9" /><stop offset="1" stop-color="#0065F9" /></linearGradient><linearGradient id="linear_fill_17_12543_3_0" x1="50.68359375" y1="12.3408203125" x2="11.7431640625" y2="-1.6943359375" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#5741F9" /><stop offset="1" stop-color="#0065F9" /></linearGradient></defs></svg>

After

Width:  |  Height:  |  Size: 3.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="10.06640625" height="5.396484375" viewBox="0 0 10.06640625 5.396484375" fill="none"><path d="M4.96049 5.39649C4.81512 5.39649 4.66977 5.32382 4.59708 5.25112L0.16353 0.962718C-0.0545082 0.744648 -0.0545082 0.381272 0.16353 0.163202C0.381583 -0.0548677 0.74499 -0.0548677 0.963031 0.163203L5.03316 4.08816L9.10328 0.163205C9.3213 -0.0548654 9.68475 -0.0548654 9.90278 0.163205C10.1208 0.381268 10.1208 0.74465 9.90278 0.962713L5.46925 5.25112C5.2512 5.32382 5.10584 5.39649 4.96049 5.39649Z" fill="#000000" ></path></svg>

After

Width:  |  Height:  |  Size: 612 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="10.06640625" height="5.396484375" viewBox="0 0 10.06640625 5.396484375" fill="none"><path d="M4.96049 -1.31949e-06C4.81512 -1.76012e-06 4.66977 0.0726674 4.59708 0.145368L0.16353 4.43377C-0.0545082 4.65184 -0.0545082 5.01521 0.16353 5.23328C0.381583 5.45135 0.74499 5.45135 0.963031 5.23328L5.03316 1.30832L9.10328 5.23328C9.3213 5.45135 9.68475 5.45135 9.90278 5.23328C10.1208 5.01522 10.1208 4.65183 9.90278 4.43377L5.46925 0.145367C5.2512 0.0726677 5.10584 -1.35815e-06 4.96049 -1.31949e-06Z" fill="#000000" ></path></svg>

After

Width:  |  Height:  |  Size: 617 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M7.375 14.375C7.875 14.375 8.25 14 8.25 13.5C8.25 13 7.875 12.625 7.375 12.625L6 12.625C5.5 12.625 5.125 13 5.125 13.5C5.125 14 5.5 14.375 6 14.375L7.375 14.375ZM6 5.25C5.5 5.25 5.125 5.625 5.125 6.125C5.125 6.625 5.5 7 6 7L12.75 7C13.25 7 13.625 6.625 13.625 6.125C13.625 5.625 13.25 5.25 12.75 5.25L6 5.25ZM10.875 9.875C10.875 9.375 10.5 9 10 9L6 9C5.5 9 5.125 9.375 5.125 9.875C5.125 10.375 5.5 10.75 6 10.75L10 10.75C10.5 10.625 10.875 10.25 10.875 9.875Z" fill="#1E5EF9" ></path><path d="M2.75 2.75L15.875 2.75L15.875 8.125L17.5 8.125L17.5 2.625C17.5 1.75 16.875 1.125 16 1.125L2.625 1.125C1.75 1.125 1.125 1.75 1.125 2.625L1.125 17.5C1.125 18.375 1.75 19 2.625 19L9.5 19L9.5 17.375L2.75 17.375L2.75 2.75Z" fill="#1E5EF9" ></path><path d="M18.625 13.5004L15.875 10.7503C15.5 10.5003 15 10.3753 14.75 10.7503C14.625 10.8753 14.5 11.1253 14.5 11.3753C14.5 11.6253 14.625 11.7503 14.75 12.0003L16 13.2504L11.25 13.2504C10.875 13.2504 10.5 13.6254 10.5 14.1254C10.5 14.6254 10.875 15.0004 11.25 15.0004L16.125 15.0004L14.875 16.2504C14.5 16.6254 14.5 17.1254 14.875 17.3754C15 17.5004 15.25 17.6254 15.5 17.6254C15.75 17.6254 15.875 17.5004 16.125 17.3754L18.875 14.6254C19 14.5004 19.125 14.2504 19.125 14.0004C18.875 13.8754 18.875 13.6254 18.625 13.5004Z" fill="#1E5EF9" ></path></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 35 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.8 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 22 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 15 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20" fill="none"><path d="M19.0343 12.6096L0.965717 12.6096C0.432158 12.6096 0 13.1128 0 13.734C0 13.9702 0.0627716 14.1894 0.169 14.3693C0.214872 14.4958 0.284887 14.6139 0.371801 14.7179L4.6282 19.6711C4.81651 19.8904 5.06277 20 5.31144 20C5.56012 20 5.80637 19.8904 5.99469 19.6711C6.37132 19.2326 6.37132 18.5214 5.99469 18.08L3.22308 14.8585L19.0319 14.8585C19.5654 14.8585 19.9976 14.3553 19.9976 13.734C19.9976 13.1128 19.5678 12.6096 19.0343 12.6096ZM0.965717 7.39213L19.0343 7.39213C19.5678 7.39213 20 6.88894 20 6.26768C20 6.03154 19.9372 5.81228 19.831 5.63236C19.7972 5.5396 19.7489 5.44964 19.691 5.36531L16.2096 0.412102C15.8716 -0.0685984 15.2632 -0.138876 14.8503 0.254681C14.4375 0.648239 14.3771 1.35664 14.7151 1.83734L17.0401 5.14323L0.965717 5.14323C0.432158 5.14323 0 5.64642 0 6.26768C0 6.88894 0.432158 7.39213 0.965717 7.39213Z" fill="#1E5EF9" ></path></svg>

After

Width:  |  Height:  |  Size: 1007 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 13 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M14 13.5C13.85 13.5 13.75 13.45 13.65 13.35L8 7.7L2.35 13.35C2.15 13.55 1.85 13.55 1.65 13.35C1.45 13.15 1.45 12.85 1.65 12.65L7.65 6.65C7.85 6.45 8.15 6.45 8.35 6.65L14.35 12.65C14.55 12.85 14.55 13.15 14.35 13.35C14.25 13.45 14.15 13.5 14 13.5Z" fill="#3970F2" ></path><path d="M14 9.5C13.85 9.5 13.75 9.45 13.65 9.35L8 3.7L2.35 9.35C2.15 9.55 1.85 9.55 1.65 9.35C1.45 9.15 1.45 8.85 1.65 8.65L7.65 2.65C7.85 2.45 8.15 2.45 8.35 2.65L14.35 8.65C14.55 8.85 14.55 9.15 14.35 9.35C14.25 9.45 14.15 9.5 14 9.5Z" fill="#3970F2" ></path></svg>

After

Width:  |  Height:  |  Size: 691 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="7.814453125" height="15.099609375" viewBox="0 0 7.814453125 15.099609375" fill="#D6D6D6"><path d="M7.81445 7.44074C7.81445 7.22268 7.70923 7.00465 7.60397 6.89562L1.39458 0.245293C1.07883 -0.0817641 0.552678 -0.0817642 0.236924 0.245293C-0.0788307 0.572373 -0.0788307 1.11748 0.236924 1.44455L5.92007 7.54974L0.236924 13.6549C-0.0788307 13.9819 -0.0788307 14.5271 0.236924 14.8542C0.552667 15.1812 1.07883 15.1812 1.39457 14.8542L7.60397 8.20387C7.70923 7.8768 7.81445 7.65876 7.81445 7.44074Z" ></path></svg>

After

Width:  |  Height:  |  Size: 601 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 16 16" fill="none"><path d="M14 13.5C13.85 13.5 13.75 13.45 13.65 13.35L8 7.7L2.35 13.35C2.15 13.55 1.85 13.55 1.65 13.35C1.45 13.15 1.45 12.85 1.65 12.65L7.65 6.65C7.85 6.45 8.15 6.45 8.35 6.65L14.35 12.65C14.55 12.85 14.55 13.15 14.35 13.35C14.25 13.45 14.15 13.5 14 13.5Z" fill="#3970F2" ></path><path d="M14 9.5C13.85 9.5 13.75 9.45 13.65 9.35L8 3.7L2.35 9.35C2.15 9.55 1.85 9.55 1.65 9.35C1.45 9.15 1.45 8.85 1.65 8.65L7.65 2.65C7.85 2.45 8.15 2.45 8.35 2.65L14.35 8.65C14.55 8.85 14.55 9.15 14.35 9.35C14.25 9.45 14.15 9.5 14 9.5Z" fill="#3970F2" ></path></svg>

After

Width:  |  Height:  |  Size: 691 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" class="prefix__prefix__feather prefix__prefix__feather-at-sign"><circle cx="12" cy="12" r="4"/><path d="M16 8v5a3 3 0 006 0v-1a10 10 0 10-3.92 7.94"/></svg>

After

Width:  |  Height:  |  Size: 315 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="26" height="16" viewBox="0 0 26 16" fill="none"><path d="M0.059082 8.09064L13.3243 0.0537109L13.3123 15.9474L0.059082 8.09064Z" fill="#333333" ></path><path d="M13.342 16L13.2976 15.9737L0 8.09072L13.354 0L13.354 0.0535155L13.342 16ZM0.118183 8.09011L13.2827 15.8943L13.2947 0.106929L0.118183 8.09011Z" fill="#333333" ></path><path d="M26.0001 14.0021C26.0001 14.0021 25.7159 12.6736 24.7804 11.8631C24.0628 11.2414 23.6162 10.8908 22.5629 10.6963C19.8218 10.1903 7.3114 10.698 7.3114 10.698L7.3114 6.0796C7.3114 6.0796 15.6218 5.96511 18.3497 6.4668C19.1592 6.61564 20.5914 6.80742 21.565 7.2446C22.6148 7.71603 23.639 8.39902 24.1706 8.94615C25.982 10.8105 26.0001 14.0021 26.0001 14.0021Z" fill="#333333" ></path></svg>

After

Width:  |  Height:  |  Size: 819 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 19 KiB

View File

@@ -0,0 +1 @@
<svg data-v-0a0a4a97="" xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-bell-icon size-4"><path d="M6 8a6 6 0 0 1 12 0c0 7 3 9 3 9H3s3-2 3-9"></path><path d="M10.3 21a1.94 1.94 0 0 0 3.4 0"></path></svg>

After

Width:  |  Height:  |  Size: 353 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round" class="prefix__prefix__feather prefix__prefix__feather-cast"><path d="M2 16.1A5 5 0 015.9 20M2 12.05A9 9 0 019.95 20M2 8V6a2 2 0 012-2h16a2 2 0 012 2v12a2 2 0 01-2 2h-6M2 20h.01"/></svg>

After

Width:  |  Height:  |  Size: 345 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 14 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><circle cx="12" cy="12" r="10"/><circle cx="12" cy="12" r="4"/><path d="M21.17 8H12M3.95 6.06L8.54 14m2.34 7.94L15.46 14"/></svg>

After

Width:  |  Height:  |  Size: 288 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="21.65673828125" height="21.0826416015625" viewBox="0 0 21.65673828125 21.0826416015625" fill="none"><path d="M11.5473 0.277326C17.3713 0.683885 21.7787 5.60505 21.3813 11.2782C21.3543 11.664 21.019 11.9549 20.6325 11.9279C20.2514 11.9013 19.9628 11.5758 19.9805 11.1969L19.9815 11.1804C20.3241 6.28777 16.5088 2.02773 11.4494 1.67453C6.39003 1.32134 2.01796 5.00979 1.67525 9.90249C1.33258 14.7952 5.14789 19.0552 10.2073 19.4084C10.9966 19.4635 11.7789 19.421 12.5411 19.2843C12.9225 19.216 13.2872 19.4691 13.3557 19.8498C13.4243 20.2305 13.1706 20.5945 12.7893 20.6629C11.9131 20.82 11.0146 20.8688 10.1094 20.8056C4.28543 20.399 -0.121982 15.4779 0.27538 9.80477C0.672743 4.13163 5.72329 -0.129255 11.5473 0.277326L11.5473 0.277326ZM12.6091 11.3887L21.0013 14.3665C21.283 14.4709 21.4237 14.7669 21.3181 15.028C21.2701 15.1572 21.172 15.2622 21.0456 15.32L17.8521 16.7345C17.6064 16.8384 17.411 17.0318 17.3067 17.2743L15.9519 20.4608C15.8475 20.7194 15.536 20.8415 15.2737 20.7426L15.2657 20.7395C15.125 20.6873 15.0195 20.5653 14.9667 20.4261L11.9405 12.0503C11.9375 12.0424 11.9347 12.0343 11.9321 12.0262C11.9295 12.0181 11.9271 12.01 11.9249 12.0018C11.9227 11.9936 11.9207 11.9853 11.9189 11.977C11.9172 11.9687 11.9156 11.9603 11.9142 11.9519C11.9129 11.9435 11.9118 11.9351 11.9108 11.9267C11.9099 11.9182 11.9092 11.9098 11.9087 11.9013C11.9082 11.8928 11.9079 11.8843 11.9078 11.8758C11.9078 11.8673 11.9079 11.8588 11.9083 11.8503C11.9087 11.8418 11.9092 11.8333 11.91 11.8249C11.9108 11.8164 11.9118 11.8079 11.913 11.7995C11.9142 11.7912 11.9157 11.7828 11.9173 11.7744C11.919 11.7661 11.9208 11.7578 11.9229 11.7495C11.9249 11.7413 11.9272 11.7331 11.9297 11.725C11.9322 11.7168 11.9348 11.7088 11.9377 11.7008C11.9406 11.6928 11.9437 11.6849 11.947 11.677C11.9502 11.6692 11.9537 11.6614 11.9574 11.6538C12.017 11.5292 12.1251 11.4337 12.2573 11.3887C12.3627 11.3365 12.4859 11.3365 12.6091 11.3887ZM13.8436 13.2803L15.5298 17.9474L16.0458 16.7339C16.2853 16.1772 16.728 15.7328 17.2829 15.4881L17.302 15.4798L18.5209 14.9399L13.8436 13.2803ZM10.8284 5.36991C13.69 5.36991 16.0098 7.6853 16.0098 10.5415C16.0098 10.9282 15.6956 11.2418 15.3081 11.2418C14.9262 11.2418 14.6155 10.9372 14.6067 10.558L14.6065 10.5415C14.6065 8.45885 12.915 6.77054 10.8284 6.77054C8.74174 6.77054 7.05022 8.45885 7.05022 10.5415C7.05022 12.6033 8.70809 14.2786 10.7659 14.3119L10.8284 14.3124C11.2159 14.3124 11.53 14.6259 11.53 15.0127C11.53 15.3995 11.2159 15.713 10.8284 15.713C7.96672 15.713 5.64692 13.3976 5.64692 10.5415C5.64692 7.6853 7.96672 5.36991 10.8284 5.36991Z" stroke="rgba(255, 255, 255, 1)" stroke-width="0.5" fill="#FFFFFF" ></path></svg>

After

Width:  |  Height:  |  Size: 2.7 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 8.1 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="20" height="20" viewBox="0 0 20 20" fill="none"><g clip-path="url(#clip-path-4_2275)"><path d="M5.1375 4.00002L1.42188 4.00002L1.42188 20.0001L16.2844 20.0001L16.2844 16.0001L20 16.0001L20 0L5.1375 0L5.1375 4.00002ZM5.1375 5.33338L5.1375 16.0001L15.0458 16.0001L15.0458 18.6668L2.6604 18.6668L2.6604 5.33338L5.1375 5.33338ZM18.7614 1.33335L18.7614 14.6668L6.37602 14.6668L6.37602 1.33335L18.7614 1.33335Z" fill="#444444" ></path></g><defs><clipPath id="clip-path-4_2275"><path d="M0 20L20 20L20 0L0 0L0 20Z" fill="white"/></clipPath></defs></svg>

After

Width:  |  Height:  |  Size: 640 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><rect x="9" y="9" width="13" height="13" rx="2" ry="2"/><path d="M5 15H4a2 2 0 01-2-2V4a2 2 0 012-2h9a2 2 0 012 2v1"/></svg>

After

Width:  |  Height:  |  Size: 283 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" aria-hidden="true" viewBox="0 0 24 24"><path fill="currentColor" d="M19 10c0 1.38-2.12 2.5-3.5 2.5s-2.75-1.12-2.75-2.5h-1.5c0 1.38-1.37 2.5-2.75 2.5S5 11.38 5 10h-.75c-.16.64-.25 1.31-.25 2a8 8 0 008 8 8 8 0 008-8c0-.69-.09-1.36-.25-2H19m-7-6C9.04 4 6.45 5.61 5.07 8h13.86C17.55 5.61 14.96 4 12 4m10 8a10 10 0 01-10 10A10 10 0 012 12 10 10 0 0112 2a10 10 0 0110 10m-10 5.23c-1.75 0-3.29-.73-4.19-1.81L9.23 14c.45.72 1.52 1.23 2.77 1.23s2.32-.51 2.77-1.23l1.42 1.42c-.9 1.08-2.44 1.81-4.19 1.81z"/></svg>

After

Width:  |  Height:  |  Size: 544 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="14.00244140625" height="15" viewBox="0 0 14.00244140625 15" fill="#3970F2" ><path d="M2.72021 12.3961L2.71971 12.3165C2.71971 12.3436 2.71991 12.37 2.72021 12.3961ZM8.69958 3.32772C8.332 3.32772 8.03402 3.62538 8.03402 3.99326L8.04019 12.3386C8.04019 12.7058 8.33818 13.0041 8.70575 13.0041C9.07325 13.0041 9.37128 12.7058 9.37128 12.3386L9.36544 3.99326C9.36544 3.6254 9.06749 3.32772 8.69958 3.32772ZM13.3369 1.35122L8.03733 1.35369L8.03437 0.665551C8.03437 0.297676 7.73634 0 7.36849 0C7.24726 0 7.13372 0.0325485 7.03581 0.0891455C6.93785 0.0325485 6.82425 0 6.70292 0C6.33539 0 6.03739 0.297676 6.03739 0.665551L6.0405 1.35463L2.21623 1.3564C2.16259 1.34245 2.10632 1.335 2.04831 1.335C1.9901 1.335 1.93367 1.34252 1.87986 1.35655L0.665551 1.35711C0.298013 1.35711 0 1.65543 0 2.02265C0 2.39053 0.298 2.6882 0.665551 2.6882L1.38311 2.68786L1.38796 12.9568L1.38896 12.9568L1.38896 13.6639C1.38896 14.399 1.98496 14.995 2.72005 14.995L3.3856 14.995L3.3856 15L10.7066 14.9957L11.3721 14.995C12.0978 14.995 12.6875 14.4142 12.7026 13.6921L12.6971 3.99718C12.6971 3.62931 12.3991 3.33164 12.0316 3.33164C11.664 3.33164 11.366 3.62931 11.366 3.99718L11.3708 12.4616C11.3474 13.4639 11.0617 13.6476 10.0414 13.6476L10.7323 13.6646L3.18001 13.669L4.0508 13.6476C3.00854 13.6476 2.73284 13.4561 2.72021 12.3961L2.72842 13.6692L2.71939 13.6692L2.71418 2.68722L6.6499 2.6854C6.66942 2.68712 6.68914 2.68818 6.70909 2.68818C6.7293 2.68818 6.74924 2.68712 6.76898 2.68535L7.31141 2.6851C7.33225 2.68707 7.35332 2.68818 7.37466 2.68818C7.39626 2.68818 7.41758 2.68705 7.43867 2.68504L13.3369 2.68232C13.7045 2.68232 14.0025 2.38465 14.0025 2.01678C14.0025 1.6489 13.7045 1.35122 13.3369 1.35122ZM11.3709 12.5721L11.3715 13.6642L11.3639 13.6642L11.3709 12.5721ZM5.37184 3.32772C5.00428 3.32772 4.70628 3.62538 4.70628 3.99326L4.71245 12.3386C4.71245 12.7058 5.01045 13.0041 5.37803 13.0041C5.74557 13.0041 6.04357 12.7058 6.04357 12.3386L6.03739 3.99326C6.03739 3.6254 5.73938 3.32772 5.37184 3.32772Z" ></path></svg>

After

Width:  |  Height:  |  Size: 2.1 KiB

View File

@@ -0,0 +1 @@
<?xml version="1.0" standalone="no"?><!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"><svg t="1772605604088" class="icon" viewBox="0 0 1024 1024" version="1.1" xmlns="http://www.w3.org/2000/svg" p-id="4440" xmlns:xlink="http://www.w3.org/1999/xlink" width="200" height="200"><path d="M537.152 414.72h-288.64a29.44 29.44 0 0 1-26.24-30.72 29.44 29.44 0 0 1 26.24-32h288.64a29.44 29.44 0 0 1 26.24 32 29.44 29.44 0 0 1-26.24 30.72z m209.92 165.76h-498.56a32.64 32.64 0 0 1 0-64h498.56a32.64 32.64 0 0 1 0 64z m0 165.76h-498.56a32.64 32.64 0 0 1 0-64h498.56a32.64 32.64 0 0 1 0 64z" fill="#333333" p-id="4441"></path><path d="M192.832 0a128 128 0 0 0-128 128v768a128 128 0 0 0 128 128h640a128 128 0 0 0 128-128l7.04-670.72L748.992 0h-556.16z m512 64l192 192h-160.64a31.36 31.36 0 0 1-31.36-31.36V64z m128 896h-640a64 64 0 0 1-64-64V128a64 64 0 0 1 64-64h448v192a64 64 0 0 0 64 64h192v576a64 64 0 0 1-64 64z" fill="#333333" p-id="4442"></path></svg>

After

Width:  |  Height:  |  Size: 994 B

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="14" height="16" viewBox="0 0 14 16" fill="none"><path d="M8.93619 13.5288L8.93619 16L12.5958 12.9843L9.53194 12.9843C9.23407 12.9843 8.93619 13.2356 8.93619 13.5288ZM12 1.3822L0.553193 1.3822C0.25532 1.3822 0 1.71728 0 2.01047L0 15.4974C0 15.7906 0.212767 16 0.51064 16L8.383 16L8.383 12.9843C8.383 12.6911 8.68087 12.3979 8.93619 12.3979L12.5958 12.3979L12.5958 1.9267C12.5958 1.67539 12.2979 1.34031 12 1.3822ZM2.6383 11.6021C2.25533 11.6021 1.95745 11.3089 1.95745 10.9319C1.95745 10.555 2.25533 10.2618 2.6383 10.2618C3.02128 10.2618 3.31916 10.555 3.31916 10.9319C3.31916 11.267 3.02128 11.6021 2.6383 11.6021ZM2.6383 8.5445C2.25533 8.5445 1.95745 8.25131 1.95745 7.87435C1.95745 7.49738 2.25533 7.20419 2.6383 7.20419C3.02128 7.20419 3.31916 7.49738 3.31916 7.87435C3.31916 8.25131 3.02128 8.5445 2.6383 8.5445ZM2.6383 5.5288C2.25533 5.5288 1.95745 5.2356 1.95745 4.85864C1.95745 4.48168 2.25533 4.18848 2.6383 4.18848C3.02128 4.18848 3.31916 4.48168 3.31916 4.85864C3.31916 5.19372 3.02128 5.5288 2.6383 5.5288ZM10.0426 11.0157C10.0426 11.1832 9.91492 11.3089 9.74471 11.3089L4.72342 11.3089C4.5532 11.3089 4.42554 11.1832 4.42554 11.0157L4.42554 10.7225C4.42554 10.555 4.5532 10.4293 4.72342 10.4293L9.74471 10.4293C9.91492 10.4293 10.0426 10.555 10.0426 10.7225L10.0426 11.0157ZM10.0426 8C10.0426 8.16754 9.91492 8.29319 9.74471 8.29319L4.72342 8.29319C4.5532 8.29319 4.42554 8.16754 4.42554 8L4.42554 7.70681C4.42554 7.53927 4.5532 7.41361 4.72342 7.41361L9.74471 7.41361C9.91492 7.41361 10.0426 7.53927 10.0426 7.70681L10.0426 8ZM10.0426 4.98429C10.0426 5.15183 9.91492 5.27749 9.74471 5.27749L4.72342 5.27749C4.5532 5.27749 4.42554 5.15183 4.42554 4.98429L4.42554 4.6911C4.42554 4.52356 4.5532 4.39791 4.72342 4.39791L9.74471 4.39791C9.91492 4.39791 10.0426 4.52356 10.0426 4.6911L10.0426 4.98429ZM13.4894 0L1.82979 0C1.40426 0 1.10639 0.418848 1.10639 0.837696L12.5958 0.837696C12.8937 0.837696 13.149 1.13089 13.149 1.3822L13.149 11.6021C13.5745 11.6021 14 11.3508 14 10.9319L14 0.502618C13.9575 0.209424 13.7447 0 13.4894 0Z" fill="#005AEC" ></path><path d="M8.96265 15.9784L8.93611 15.9784L8.93611 13.529C8.93611 13.2358 9.23398 12.9845 9.53186 12.9845L12.5957 12.9845L8.96265 15.9784Z" fill-rule="evenodd" fill="#5597F0" ></path></svg>

After

Width:  |  Height:  |  Size: 2.3 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 6.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 35 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="16" height="16" viewBox="0 0 16 16" fill="#0065F9"><path d="M4.81475 10.3195L4.809 10.3129L3.52246 12.6501L6.02277 11.6751L6.01188 11.6628C6.04826 11.6582 6.085 11.6492 6.12086 11.6337C6.19147 11.6166 6.25814 11.5803 6.3117 11.5237L13.7758 3.63433C13.7904 3.61909 13.8021 3.60222 13.8137 3.58534C13.8455 3.56202 13.8759 3.53507 13.9023 3.50208C14.0358 3.3348 14.0317 3.11027 13.893 3.0007L12.8886 2.20675C12.8414 2.16949 12.7844 2.15168 12.7248 2.14921C12.5988 2.12589 12.4641 2.16404 12.3699 2.26359L4.9058 10.1529C4.85986 10.2016 4.8308 10.2592 4.81475 10.3195ZM12.6995 3.0458L13.022 3.30063L6.00402 10.7184L5.72236 10.4204L12.6995 3.0458ZM5.515 11.331L4.57322 11.6982L5.04766 10.8362L5.515 11.331Z" ></path><path d="M13.9998 9.76754C13.9983 9.60301 13.8649 9.47 13.7 9.47C13.5351 9.47 13.4016 9.60301 13.4002 9.76754L13.4 9.76754L13.4 13.1C13.4 13.2657 13.2657 13.4 13.1 13.4L2.9 13.4C2.73435 13.4 2.6 13.2657 2.6 13.1L2.6 2.9C2.6 2.73436 2.73435 2.6 2.9 2.6L6.2157 2.6L6.2157 2.59273C6.23644 2.59725 6.25789 2.6 6.28003 2.6C6.44568 2.6 6.58003 2.4657 6.58003 2.3C6.58003 2.1343 6.44568 2 6.28002 2C6.25787 2 6.23643 2.00275 6.21569 2.00727L6.21569 2L2.3 2C2.1343 2 2 2.1343 2 2.3L2 13.7C2 13.8657 2.1343 14 2.3 14L13.7 14C13.8657 14 14 13.8657 14 13.7L14 9.76754L13.9998 9.76754Z"></path></svg>

After

Width:  |  Height:  |  Size: 1.4 KiB

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 77 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="167.5205078125" height="158.568359375" viewBox="0 0 167.5205078125 158.568359375" fill="none"><path d="M167.52 79.2842C167.52 123.073 132.025 158.568 88.2364 158.568C44.4478 158.568 8.95215 123.073 8.95215 79.2842C8.95215 35.4957 44.4478 0 88.2364 0C132.025 0 167.52 35.4957 167.52 79.2842Z" fill="#F5F6F7" ></path><path d="M88.875 68.4138L27.4932 60.7411L78.6453 49.8726L144.502 55.6271L88.875 68.4138Z" fill="url(#linear_fill_15_7288)" ></path><path d="M88.875 141.946L88.875 68.324L142.584 56.2661L142.584 126.077L88.875 141.946Z" fill="url(#linear_fill_15_7289)" ></path><path d="M88.875 141.947L88.875 68.3278L27.4932 60.7412L27.4932 129.914L88.875 141.947Z" fill="url(#linear_fill_15_7290)" ></path><path d="M106.626 95.9092L88.875 68.414L144.502 55.6274L163.045 80.5638L106.626 95.9092Z" fill="url(#linear_fill_15_7291)" ></path><path d="M75.4479 98.466L88.8752 68.4139L27.4934 60.7412L12.7886 87.5957L75.4479 98.466Z" fill="url(#linear_fill_15_7292)" ></path><path d="M46.6751 35.1658C36.4455 34.1431 31.7568 23.6568 30.6909 18.541C39.0024 26.8544 42.8388 24.2956 46.6751 24.9362C53.3251 31.5861 64.7911 31.543 69.6933 30.6907C67.1363 31.9683 59.4636 36.4453 46.6751 35.1658Z" fill="#CCD2DB" ></path><path d="M31.3295 20.4595C29.7953 17.9026 28.559 10.8686 28.1338 7.67285C37.3407 15.3456 46.0362 13.8526 49.2338 12.148C55.6271 25.5753 74.1701 30.0504 72.252 30.0504C57.5453 35.805 47.3156 28.7729 46.0362 26.2141C37.0841 26.8547 33.2477 23.6571 31.3295 20.4595Z" fill="#E8EAEE" ></path><path d="M122.764 45.3956C126.6 38.3635 128.518 30.0502 129.157 23.6569C132.355 23.0181 136.191 20.4593 138.109 17.9023C139.389 31.3296 134.273 40.2817 132.355 41.5592C130.82 42.582 125.321 44.7568 122.764 45.3956Z" fill="#E8EAEE" ></path><path d="M8.95213 90.1544C5.37053 90.1544 1.91818 88.2363 0 86.3181C6.39331 84.3999 11.5091 81.8411 13.4273 80.5635C15.9842 82.4817 19.8206 83.7593 21.7388 84.3999C18.543 87.5956 12.5319 90.1544 8.95213 90.1544Z" fill="#BDC1C9" ></path><defs><linearGradient id="linear_fill_15_7288" x1="58538.2265625" y1="6695.0380859375" x2="58538.2265625" y2="8467.0751953125" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#DEE0E4" /><stop offset="1" stop-color="#ABB2BB" /></linearGradient><linearGradient id="linear_fill_15_7289" x1="38404.25390625" y1="37197.6806640625" x2="30154.533203125" y2="68782.5244140625" gradientUnits="userSpaceOnUse"><stop offset="0.021709999069571495" stop-color="#BBC0C9" /><stop offset="1" stop-color="#E9EBEE" /></linearGradient><linearGradient id="linear_fill_15_7290" x1="26636.078125" y1="38312.0712890625" x2="30197.87890625" y2="66030.3994140625" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#DCDFE3" /><stop offset="1" stop-color="#EAECF0" /></linearGradient><linearGradient id="linear_fill_15_7291" x1="53126.48828125" y1="16555.0537109375" x2="46002.8046875" y2="23952.6435546875" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#E9EAEE" /><stop offset="1" stop-color="#BFC2CA" /></linearGradient><linearGradient id="linear_fill_15_7292" x1="23906.03515625" y1="16542.9814453125" x2="25204.52734375" y2="22079.9658203125" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#EAECF0" /><stop offset="1" stop-color="#BDC1C9" /></linearGradient></defs></svg>

After

Width:  |  Height:  |  Size: 3.3 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="10.17578125" height="7.5615234375" viewBox="0 0 10.17578125 7.5615234375" fill="none"><path fill="#333333" d="M5.89373 7.15334L9.98015 1.59214C10.4654 0.93172 9.99385 0 9.17431 0L1.00147 0C0.181926 0 -0.28965 0.93172 0.19563 1.59214L4.28205 7.15334C4.68166 7.69716 5.49413 7.69716 5.89373 7.15334Z"></path></svg>

After

Width:  |  Height:  |  Size: 407 B

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 70 KiB

View File

@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="22" height="22" viewBox="0 0 22 22" fill="none"><path d="M18.728 3.29028C14.4685 -0.969161 7.56051 -0.969161 3.29891 3.29028C-0.962678 7.54974 -0.960546 14.4578 3.29891 18.7193C7.55837 22.9808 14.4664 22.9787 18.728 18.7193C22.9895 14.4599 22.9874 7.55186 18.728 3.29028ZM15.5339 15.5253C15.3251 15.7341 14.9884 15.7341 14.7796 15.5253L11.0124 11.7581L7.24727 15.5253C7.03846 15.7341 6.70178 15.7341 6.49297 15.5253C6.28415 15.3165 6.28415 14.9798 6.49297 14.771L10.2602 11.0037L6.49297 7.23864C6.28415 7.02983 6.28415 6.69316 6.49297 6.48435C6.70178 6.27552 7.03846 6.27552 7.24727 6.48435L11.0145 10.2516L14.7818 6.48435C14.9906 6.27552 15.3272 6.27552 15.536 6.48435C15.7449 6.69316 15.7449 7.02983 15.536 7.23864L11.7667 11.0037L15.5339 14.771C15.7406 14.9798 15.7406 15.3165 15.5339 15.5253Z" fill="#FF0000" ></path></svg>

After

Width:  |  Height:  |  Size: 919 B

Some files were not shown because too many files have changed in this diff Show More