@matechat/core 1.10.0 → 1.11.0-alpha.0

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.
Files changed (120) hide show
  1. package/Attachment/Attachment.vue.d.ts +121 -0
  2. package/Attachment/attachment-types.d.ts +103 -0
  3. package/Attachment/drop-area.vue.d.ts +13 -0
  4. package/Attachment/index.css +1 -1
  5. package/Attachment/index.d.ts +2 -0
  6. package/Attachment/index.js +211 -311
  7. package/Attachment/uploader.d.ts +11 -0
  8. package/Attachment/use-upload.d.ts +8 -0
  9. package/Bubble/Bubble.vue.d.ts +75 -0
  10. package/Bubble/BubbleLoading.vue.d.ts +3 -0
  11. package/Bubble/bubble-constants.d.ts +4 -0
  12. package/Bubble/bubble-types.d.ts +38 -0
  13. package/Bubble/components/Avatar.vue.d.ts +57 -0
  14. package/Bubble/components/AvatarBodyIcon.vue.d.ts +24 -0
  15. package/Bubble/components/AvatarNoBodyIcon.vue.d.ts +24 -0
  16. package/Bubble/components/avatar-types.d.ts +25 -0
  17. package/Bubble/index.css +1 -1
  18. package/Bubble/index.d.ts +2 -0
  19. package/Bubble/index.js +142 -148
  20. package/FileList/FileIcon/CodeFile.vue.d.ts +10 -0
  21. package/FileList/FileIcon/CompressedFile.vue.d.ts +10 -0
  22. package/FileList/FileIcon/DefaultFileIcon.vue.d.ts +10 -0
  23. package/FileList/FileIcon/Document.vue.d.ts +10 -0
  24. package/FileList/FileIcon/DrawingBoard.vue.d.ts +10 -0
  25. package/FileList/FileIcon/EmailFile.vue.d.ts +10 -0
  26. package/FileList/FileIcon/Excel.vue.d.ts +10 -0
  27. package/FileList/FileIcon/FlowChart.vue.d.ts +10 -0
  28. package/FileList/FileIcon/FolderClosed.vue.d.ts +10 -0
  29. package/FileList/FileIcon/FolderOpen.vue.d.ts +10 -0
  30. package/FileList/FileIcon/Image.vue.d.ts +10 -0
  31. package/FileList/FileIcon/Markdown.vue.d.ts +10 -0
  32. package/FileList/FileIcon/Mind.vue.d.ts +10 -0
  33. package/FileList/FileIcon/Mp4.vue.d.ts +10 -0
  34. package/FileList/FileIcon/MultidimentionalTable.vue.d.ts +10 -0
  35. package/FileList/FileIcon/Page.vue.d.ts +10 -0
  36. package/FileList/FileIcon/Pdf.vue.d.ts +10 -0
  37. package/FileList/FileIcon/Ppt.vue.d.ts +10 -0
  38. package/FileList/FileIcon/Unknown.vue.d.ts +10 -0
  39. package/FileList/FileIcon/Wrong.vue.d.ts +10 -0
  40. package/FileList/FileList.vue.d.ts +36 -0
  41. package/FileList/fileList-types.d.ts +21 -0
  42. package/FileList/index.d.ts +2 -0
  43. package/FileList/index.js +220 -228
  44. package/Header/Header.vue.d.ts +47 -0
  45. package/Header/header-types.d.ts +14 -0
  46. package/Header/index.d.ts +2 -0
  47. package/Header/index.js +0 -1
  48. package/Input/Input.vue.d.ts +165 -0
  49. package/Input/components/EditableBlock.vue.d.ts +101 -0
  50. package/Input/components/InputTag.vue.d.ts +30 -0
  51. package/Input/components/LoadingIcon.vue.d.ts +3 -0
  52. package/Input/components/SendIcon.vue.d.ts +3 -0
  53. package/Input/components/button.vue.d.ts +3 -0
  54. package/Input/components/textarea-utils.d.ts +17 -0
  55. package/Input/components/textarea.vue.d.ts +3 -0
  56. package/Input/components/use-textarea-autosize.d.ts +12 -0
  57. package/Input/components/util.d.ts +3 -0
  58. package/Input/index.css +1 -1
  59. package/Input/index.d.ts +2 -0
  60. package/Input/index.js +114 -252
  61. package/Input/input-types.d.ts +118 -0
  62. package/Introduction/Introduction.vue.d.ts +88 -0
  63. package/Introduction/index.css +1 -1
  64. package/Introduction/index.d.ts +2 -0
  65. package/Introduction/index.js +8 -9
  66. package/Introduction/introduction-types.d.ts +37 -0
  67. package/Layout/Aside.vue.d.ts +13 -0
  68. package/Layout/Content.vue.d.ts +13 -0
  69. package/Layout/Header.vue.d.ts +13 -0
  70. package/Layout/Layout.vue.d.ts +13 -0
  71. package/Layout/Sender.vue.d.ts +13 -0
  72. package/Layout/index.d.ts +6 -0
  73. package/Layout/index.js +0 -1
  74. package/List/List.vue.d.ts +98 -0
  75. package/List/const.d.ts +5 -0
  76. package/List/index.css +1 -1
  77. package/List/index.d.ts +3 -0
  78. package/List/index.js +51 -54
  79. package/List/list-types.d.ts +52 -0
  80. package/List/use-list.d.ts +13 -0
  81. package/Locale/i18n.d.ts +21 -0
  82. package/Locale/index.d.ts +7 -0
  83. package/Locale/index.js +35 -103
  84. package/Locale/lang/en-us.d.ts +34 -0
  85. package/Locale/lang/zh-cn.d.ts +34 -0
  86. package/MarkdownCard/CodeBlock.vue.d.ts +76 -0
  87. package/MarkdownCard/MDCardParser.d.ts +12 -0
  88. package/MarkdownCard/MDCardService.d.ts +14 -0
  89. package/MarkdownCard/MermaidService.d.ts +22 -0
  90. package/MarkdownCard/index.css +1 -1
  91. package/MarkdownCard/index.d.ts +2 -0
  92. package/MarkdownCard/index.js +205 -559
  93. package/MarkdownCard/mdCard.types.d.ts +88 -0
  94. package/MarkdownCard/mdCard.vue.d.ts +29 -0
  95. package/Mention/Mention.vue.d.ts +51 -0
  96. package/Mention/const.d.ts +4 -0
  97. package/Mention/index.d.ts +2 -0
  98. package/Mention/index.js +0 -1
  99. package/Mention/mention-types.d.ts +24 -0
  100. package/Mention/use-mention.d.ts +10 -0
  101. package/Prompt/Prompt.vue.d.ts +38 -0
  102. package/Prompt/PromptItem.vue.d.ts +11 -0
  103. package/Prompt/components/Icon.vue.d.ts +42 -0
  104. package/Prompt/components/icon-types.d.ts +18 -0
  105. package/Prompt/index.d.ts +2 -0
  106. package/Prompt/prompt-types.d.ts +33 -0
  107. package/README.md +12 -8
  108. package/Toolbar/Toolbar.vue.d.ts +68 -0
  109. package/Toolbar/icon/CopyIcon.vue.d.ts +42 -0
  110. package/Toolbar/icon/DeleteIcon.vue.d.ts +42 -0
  111. package/Toolbar/icon/DislikeIcon.vue.d.ts +46 -0
  112. package/Toolbar/icon/LikeIcon.vue.d.ts +46 -0
  113. package/Toolbar/icon/RefreshIcon.vue.d.ts +42 -0
  114. package/Toolbar/icon/ShareIcon.vue.d.ts +42 -0
  115. package/Toolbar/index.css +1 -0
  116. package/Toolbar/index.d.ts +8 -0
  117. package/Toolbar/index.js +519 -0
  118. package/Toolbar/toolbar.types.d.ts +60 -0
  119. package/mate-chat.js +0 -6
  120. package/package.json +4 -1
package/FileList/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  import "./index.css";
2
- import { defineComponent as c, createElementBlock as a, openBlock as o, normalizeClass as h, createElementVNode as t, createStaticVNode as f, createCommentVNode as C, toDisplayString as k, ref as $, Fragment as x, createBlock as U, renderList as J, resolveDynamicComponent as Q, unref as m, Teleport as X, createVNode as Y, Transition as t2, withCtx as e2, withModifiers as i2 } from "vue";
2
+ import { defineComponent as c, createElementBlock as a, openBlock as o, normalizeClass as h, createElementVNode as t, createStaticVNode as f, createCommentVNode as C, toDisplayString as k, ref as $, createBlock as U, Fragment as x, renderList as J, resolveDynamicComponent as Q, unref as m, Teleport as X, createVNode as Y, Transition as t2, withCtx as e2, withModifiers as i2 } from "vue";
3
3
  import { useMcI18n as l2 } from "@matechat/core/Locale";
4
4
  const r2 = {
5
5
  // 文件列表数据
@@ -39,7 +39,7 @@ const r2 = {
39
39
  role: "img",
40
40
  "aria-label": e.title,
41
41
  class: h(e.class)
42
- }, [...r[0] || (r[0] = [
42
+ }, r[0] || (r[0] = [
43
43
  t(
44
44
  "mask",
45
45
  {
@@ -57,10 +57,10 @@ const r2 = {
57
57
  ])
58
58
  ],
59
59
  -1
60
- /* CACHED */
60
+ /* HOISTED */
61
61
  ),
62
62
  f('<defs><g id="use_5"><path id="蒙版" d="M7 2L20 2L28 10L28 27C28 28.6569 26.6569 30 25 30L7 30C5.34315 30 4 28.6569 4 27L4 5C4 3.34315 5.34315 2 7 2Z" fill="rgb(92,179,0)" fill-rule="evenodd"></path><path id="蒙版" d="M20 2L7 2C5.34315 2 4 3.34315 4 5L4 27C4 28.6569 5.34315 30 7 30L25 30C26.6569 30 28 28.6569 28 27L28 10L20 2ZM19.5858 3L27 10.4142L27 27C27 27.1577 26.9824 27.3113 26.9472 27.4607C26.9217 27.5687 26.8871 27.6745 26.8432 27.7782C26.7974 27.8867 26.7429 27.9896 26.6798 28.0869C26.6037 28.2041 26.5152 28.3132 26.4142 28.4142C26.3132 28.5152 26.2041 28.6037 26.0869 28.6797C25.9896 28.7429 25.8867 28.7974 25.7782 28.8432C25.6745 28.8871 25.5687 28.9217 25.4607 28.9472C25.3113 28.9824 25.1577 29 25 29L7 29C6.84229 29 6.68872 28.9824 6.53931 28.9472C6.43131 28.9217 6.32548 28.8871 6.22182 28.8432C6.11331 28.7973 6.01038 28.7428 5.91305 28.6797C5.79586 28.6037 5.68677 28.5152 5.58579 28.4142C5.48479 28.3132 5.39628 28.2041 5.32027 28.0869C5.25715 27.9896 5.20265 27.8867 5.15676 27.7782C5.11292 27.6745 5.07827 27.5687 5.05282 27.4607C5.01761 27.3113 5 27.1577 5 27L5 5C5 4.84228 5.01761 4.68871 5.05282 4.53929C5.07827 4.4313 5.11292 4.32547 5.15676 4.22182C5.20266 4.1133 5.25717 4.01037 5.32031 3.91303C5.39631 3.79585 5.4848 3.68677 5.58579 3.58579C5.68677 3.4848 5.79585 3.39631 5.91303 3.32031C6.01037 3.25717 6.1133 3.20266 6.22182 3.15676C6.32547 3.11292 6.4313 3.07827 6.53929 3.05282C6.68871 3.01761 6.84228 3 7 3L19.5858 3Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path></g><filter id="pixso_custom_mask_type_outline"><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 255 0 "></feColorMatrix></filter></defs><g id="代码类文件"><g id="图标/图片文件"><rect id="矩形" width="32" height="32" x="0" y="0" rx="8" fill="rgb(238,240,245)" fill-opacity="0"></rect><rect id="矩形" width="31" height="31" x="0.5" y="0.5" rx="8" stroke="rgb(151,151,151)" stroke-opacity="0" stroke-width="1"></rect><g id="编组 2"><g id="路径" mask="url(#mask_5)"><use xlink:href="#use_5"></use><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L28 10Z" fill="rgb(185,230,131)" fill-rule="evenodd"></path><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L21 3L21 8.5C21 8.56903 21.0122 8.63301 21.0366 8.69194C21.061 8.75087 21.0976 8.80474 21.1464 8.85355C21.1953 8.90237 21.2491 8.93898 21.3081 8.96339C21.367 8.9878 21.431 9 21.5 9L27 9L28 10Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path><g id="ic_public_code"><path id="ic_public_code_2_5" d="M0 0L7.06296 0" stroke="rgb(255,255,255)" stroke-linecap="round" stroke-width="1.5" transform="matrix(0.351112,-0.936333,0.936333,0.351112,14.7598,21.8066)"></path><path id="矢量 772" d="M12 15L9.05221 18.4391C9.0217 18.4747 9.02001 18.5267 9.04813 18.5642L12 22.5" stroke="rgb(255,255,255)" stroke-width="1.5"></path><path id="矢量 772" d="M3 0L0.0522046 3.43909C0.0217021 3.47468 0.0200084 3.52668 0.0481303 3.56417L3 7.5" stroke="rgb(255,255,255)" stroke-width="1.5" transform="matrix(-1,0,0,1,23,15)"></path></g></g></g></g></g>', 2)
63
- ])], 10, o2));
63
+ ]), 10, o2));
64
64
  }
65
65
  }), a2 = ["width", "height", "aria-label"], v = /* @__PURE__ */ c({
66
66
  __name: "CompressedFile",
@@ -82,7 +82,7 @@ const r2 = {
82
82
  role: "img",
83
83
  "aria-label": e.title,
84
84
  class: h(e.class)
85
- }, [...r[0] || (r[0] = [
85
+ }, r[0] || (r[0] = [
86
86
  t(
87
87
  "mask",
88
88
  {
@@ -100,10 +100,10 @@ const r2 = {
100
100
  ])
101
101
  ],
102
102
  -1
103
- /* CACHED */
103
+ /* HOISTED */
104
104
  ),
105
105
  f('<defs><g id="use_1"><path id="蒙版" d="M7 2L20 2L28 10L28 27C28 28.6569 26.6569 30 25 30L7 30C5.34315 30 4 28.6569 4 27L4 5C4 3.34315 5.34315 2 7 2Z" fill="rgb(255,136,0)" fill-rule="evenodd"></path><path id="蒙版" d="M20 2L7 2C5.34315 2 4 3.34315 4 5L4 27C4 28.6569 5.34315 30 7 30L25 30C26.6569 30 28 28.6569 28 27L28 10L20 2ZM19.5858 3L27 10.4142L27 27C27 27.1577 26.9824 27.3113 26.9472 27.4607C26.9217 27.5687 26.8871 27.6745 26.8432 27.7782C26.7974 27.8867 26.7429 27.9896 26.6798 28.0869C26.6037 28.2041 26.5152 28.3132 26.4142 28.4142C26.3132 28.5152 26.2041 28.6037 26.0869 28.6797C25.9896 28.7429 25.8867 28.7974 25.7782 28.8432C25.6745 28.8871 25.5687 28.9217 25.4607 28.9472C25.3113 28.9824 25.1577 29 25 29L7 29C6.84229 29 6.68872 28.9824 6.53931 28.9472C6.43131 28.9217 6.32548 28.8871 6.22182 28.8432C6.11331 28.7973 6.01038 28.7428 5.91305 28.6797C5.79586 28.6037 5.68677 28.5152 5.58579 28.4142C5.48479 28.3132 5.39628 28.2041 5.32027 28.0869C5.25715 27.9896 5.20265 27.8867 5.15676 27.7782C5.11292 27.6745 5.07827 27.5687 5.05282 27.4607C5.01761 27.3113 5 27.1577 5 27L5 5C5 4.84228 5.01761 4.68871 5.05282 4.53929C5.07827 4.4313 5.11292 4.32547 5.15676 4.22182C5.20266 4.1133 5.25717 4.01037 5.32031 3.91303C5.39631 3.79585 5.4848 3.68677 5.58579 3.58579C5.68677 3.4848 5.79585 3.39631 5.91303 3.32031C6.01037 3.25717 6.1133 3.20266 6.22182 3.15676C6.32547 3.11292 6.4313 3.07827 6.53929 3.05282C6.68871 3.01761 6.84228 3 7 3L19.5858 3Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path></g><filter id="pixso_custom_mask_type_outline"><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 255 0 "></feColorMatrix></filter></defs><g id="ppt"><g id="图标/ppt文件"><rect id="矩形" width="32" height="32" x="0" y="0" rx="8" fill="rgb(238,240,245)" fill-opacity="0"></rect><rect id="矩形" width="31" height="31" x="0.5" y="0.5" rx="8" stroke="rgb(151,151,151)" stroke-opacity="0" stroke-width="1"></rect><g id="编组 2"><g id="路径" mask="url(#mask_1)"><use xlink:href="#use_1"></use><g id="编组-109"><path id="Rectangle-16-Copy-2" d="M11.8164 9.26886L14.6559 9.26886C14.844 9.26886 14.9966 9.42141 14.9966 9.60959L14.9966 10.7454C14.9966 10.9336 14.844 11.0861 14.6559 11.0861L11.8164 11.0861L11.8164 9.26886Z" fill="rgb(255,255,255)" fill-rule="evenodd"></path><path id="Rectangle-16-Copy-4" d="M11.8164 12.9036L14.6559 12.9036C14.844 12.9036 14.9966 13.0562 14.9966 13.2444L14.9966 14.7209L14.9966 14.7209L11.8164 14.7209L11.8164 12.9036Z" fill="rgb(255,255,255)" fill-rule="evenodd"></path><path id="Rectangle-16-Copy" d="M0 0L2.83945 0C3.02763 0 3.18019 0.152552 3.18019 0.340734L3.18019 1.47652C3.18019 1.6647 3.02763 1.81725 2.83945 1.81725L0 1.81725L0 0Z" fill="rgb(255,255,255)" fill-rule="evenodd" transform="matrix(-1,0,0,1,13.1802,7.45172)"></path><path id="Rectangle-16-Copy-6" d="M0.340734 0L3.18019 0L3.18019 0L3.18019 1.81725L0.340734 1.81725C0.152552 1.81725 0 1.6647 0 1.47652L0 0.340734C0 0.152552 0.152552 0 0.340734 0Z" fill="rgb(255,255,255)" fill-rule="evenodd" transform="matrix(-1,0,0,1,14.9966,5.63434)"></path><path id="Rectangle-16-Copy-6备份-3" d="M0 0L3.18019 0L3.18019 1.81725L0.340734 1.81725C0.152552 1.81725 0 1.6647 0 1.47652L0 0L0 0Z" fill="rgb(255,255,255)" fill-rule="evenodd" transform="matrix(-1,0,0,1,14.9966,2.00006)"></path><path id="Rectangle-16-Copy-6备份-2" d="M0 0L2.83945 0C3.02763 0 3.18019 0.152552 3.18019 0.340734L3.18019 1.47652C3.18019 1.6647 3.02763 1.81725 2.83945 1.81725L0 1.81725L0 0Z" fill="rgb(255,255,255)" fill-rule="evenodd" transform="matrix(-1,0,0,1,13.1802,3.8172)"></path><path id="Rectangle-16-Copy-3" d="M0 0L2.83945 0C3.02763 0 3.18019 0.152552 3.18019 0.340734L3.18019 1.47652C3.18019 1.6647 3.02763 1.81725 2.83945 1.81725L0 1.81725L0 0Z" fill="rgb(255,255,255)" fill-rule="evenodd" transform="matrix(-1,0,0,1,13.1802,11.0862)"></path><path id="Combined-Shape" d="M15 17.687L15 14.72L10.0026 14.72L10.0026 17.687C10.0026 18.0556 10.3015 18.3545 10.6701 18.3545L14.3324 18.3545C14.7011 18.3545 15 18.0556 15 17.687ZM11.2478 15.6313L13.7465 15.6313L13.7465 16.8807C13.7465 17.0689 13.5939 17.2214 13.4058 17.2214L11.5885 17.2214C11.4003 17.2214 11.2478 17.0689 11.2478 16.8807L11.2478 15.6313Z" fill="rgb(255,255,255)" fill-rule="evenodd"></path></g><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L28 10Z" fill="rgb(252,213,164)" fill-rule="evenodd"></path><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L21 3L21 8.5C21 8.56903 21.0122 8.63301 21.0366 8.69194C21.061 8.75087 21.0976 8.80474 21.1464 8.85355C21.1953 8.90237 21.2491 8.93898 21.3081 8.96339C21.367 8.9878 21.431 9 21.5 9L27 9L28 10Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path></g></g></g></g>', 2)
106
- ])], 10, a2));
106
+ ]), 10, a2));
107
107
  }
108
108
  }), d2 = ["width", "height", "aria-label"], w = /* @__PURE__ */ c({
109
109
  __name: "Document",
@@ -125,7 +125,7 @@ const r2 = {
125
125
  role: "img",
126
126
  "aria-label": e.title,
127
127
  class: h(e.class)
128
- }, [...r[0] || (r[0] = [
128
+ }, r[0] || (r[0] = [
129
129
  t(
130
130
  "mask",
131
131
  {
@@ -143,10 +143,10 @@ const r2 = {
143
143
  ])
144
144
  ],
145
145
  -1
146
- /* CACHED */
146
+ /* HOISTED */
147
147
  ),
148
148
  f('<defs><g id="use_10"><path id="蒙版" d="M7 2L20 2L28 10L28 27C28 28.6569 26.6569 30 25 30L7 30C5.34315 30 4 28.6569 4 27L4 5C4 3.34315 5.34315 2 7 2Z" fill="rgb(57,121,249)" fill-rule="evenodd"></path><path id="蒙版" d="M20 2L7 2C5.34315 2 4 3.34315 4 5L4 27C4 28.6569 5.34315 30 7 30L25 30C26.6569 30 28 28.6569 28 27L28 10L20 2ZM19.5858 3L27 10.4142L27 27C27 27.1577 26.9824 27.3113 26.9472 27.4607C26.9217 27.5687 26.8871 27.6745 26.8432 27.7782C26.7974 27.8867 26.7429 27.9896 26.6798 28.0869C26.6037 28.2041 26.5152 28.3132 26.4142 28.4142C26.3132 28.5152 26.2041 28.6037 26.0869 28.6797C25.9896 28.7429 25.8867 28.7974 25.7782 28.8432C25.6745 28.8871 25.5687 28.9217 25.4607 28.9472C25.3113 28.9824 25.1577 29 25 29L7 29C6.84229 29 6.68872 28.9824 6.53931 28.9472C6.43131 28.9217 6.32548 28.8871 6.22182 28.8432C6.11331 28.7973 6.01038 28.7428 5.91305 28.6797C5.79586 28.6037 5.68677 28.5152 5.58579 28.4142C5.48479 28.3132 5.39628 28.2041 5.32027 28.0869C5.25715 27.9896 5.20265 27.8867 5.15676 27.7782C5.11292 27.6745 5.07827 27.5687 5.05282 27.4607C5.01761 27.3113 5 27.1577 5 27L5 5C5 4.84228 5.01761 4.68871 5.05282 4.53929C5.07827 4.4313 5.11292 4.32547 5.15676 4.22182C5.20266 4.1133 5.25717 4.01037 5.32031 3.91303C5.39631 3.79585 5.4848 3.68677 5.58579 3.58579C5.68677 3.4848 5.79585 3.39631 5.91303 3.32031C6.01037 3.25717 6.1133 3.20266 6.22182 3.15676C6.32547 3.11292 6.4313 3.07827 6.53929 3.05282C6.68871 3.01761 6.84228 3 7 3L19.5858 3Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path></g><filter id="pixso_custom_mask_type_outline"><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 255 0 "></feColorMatrix></filter></defs><g id="文件"><rect id="矩形" width="32" height="32" x="0" y="0" rx="6" fill="rgb(238,240,245)" fill-opacity="0"></rect><rect id="矩形" width="31" height="31" x="0.5" y="0.5" rx="6" stroke="rgb(151,151,151)" stroke-opacity="0" stroke-width="1"></rect><g id="图标/空文件夹 copy 2" mask="url(#mask_10)"><use xlink:href="#use_10"></use><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L28 10Z" fill="rgb(157,189,252)" fill-rule="evenodd"></path><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L21 3L21 8.5C21 8.56903 21.0122 8.63301 21.0366 8.69194C21.061 8.75087 21.0976 8.80474 21.1464 8.85355C21.1953 8.90237 21.2491 8.93898 21.3081 8.96339C21.367 8.9878 21.431 9 21.5 9L27 9L28 10Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path><g id="编组 29"><circle id="椭圆形" cx="9.25" cy="13" r="0.75" fill="rgb(255,255,255)"></circle><circle id="椭圆形" cx="9.25" cy="13" r="0.25" stroke="rgb(151,151,151)" stroke-opacity="0" stroke-width="1"></circle><circle id="椭圆形" cx="9.25" cy="18" r="0.75" fill="rgb(255,255,255)"></circle><circle id="椭圆形" cx="9.25" cy="18" r="0.25" stroke="rgb(151,151,151)" stroke-opacity="0" stroke-width="1"></circle><circle id="椭圆形" cx="9.25" cy="23" r="0.75" fill="rgb(255,255,255)"></circle><circle id="椭圆形" cx="9.25" cy="23" r="0.25" stroke="rgb(151,151,151)" stroke-opacity="0" stroke-width="1"></circle></g><path id="矢量 777" d="M12 13L23 13" stroke="rgb(255,255,255)" stroke-linecap="round" stroke-width="1.5"></path><path id="矢量 781" d="M12 18L23 18" stroke="rgb(255,255,255)" stroke-linecap="round" stroke-width="1.5"></path><path id="矢量 782" d="M12 23L23 23" stroke="rgb(255,255,255)" stroke-linecap="round" stroke-width="1.5"></path></g></g>', 2)
149
- ])], 10, d2));
149
+ ]), 10, d2));
150
150
  }
151
151
  }), n2 = ["width", "height", "aria-label"], Z = /* @__PURE__ */ c({
152
152
  __name: "DrawingBoard",
@@ -168,7 +168,7 @@ const r2 = {
168
168
  role: "img",
169
169
  "aria-label": e.title,
170
170
  class: h(e.class)
171
- }, [...r[0] || (r[0] = [
171
+ }, r[0] || (r[0] = [
172
172
  t(
173
173
  "mask",
174
174
  {
@@ -186,7 +186,7 @@ const r2 = {
186
186
  ])
187
187
  ],
188
188
  -1
189
- /* CACHED */
189
+ /* HOISTED */
190
190
  ),
191
191
  f('<defs><g id="use_4"><path id="蒙版" d="M7 2L20 2L28 10L28 27C28 28.6569 26.6569 30 25 30L7 30C5.34315 30 4 28.6569 4 27L4 5C4 3.34315 5.34315 2 7 2Z" fill="rgb(92,179,0)" fill-rule="evenodd"></path><path id="蒙版" d="M20 2L7 2C5.34315 2 4 3.34315 4 5L4 27C4 28.6569 5.34315 30 7 30L25 30C26.6569 30 28 28.6569 28 27L28 10L20 2ZM19.5858 3L27 10.4142L27 27C27 27.1577 26.9824 27.3113 26.9472 27.4607C26.9217 27.5687 26.8871 27.6745 26.8432 27.7782C26.7974 27.8867 26.7429 27.9896 26.6798 28.0869C26.6037 28.2041 26.5152 28.3132 26.4142 28.4142C26.3132 28.5152 26.2041 28.6037 26.0869 28.6797C25.9896 28.7429 25.8867 28.7974 25.7782 28.8432C25.6745 28.8871 25.5687 28.9217 25.4607 28.9472C25.3113 28.9824 25.1577 29 25 29L7 29C6.84229 29 6.68872 28.9824 6.53931 28.9472C6.43131 28.9217 6.32548 28.8871 6.22182 28.8432C6.11331 28.7973 6.01038 28.7428 5.91305 28.6797C5.79586 28.6037 5.68677 28.5152 5.58579 28.4142C5.48479 28.3132 5.39628 28.2041 5.32027 28.0869C5.25715 27.9896 5.20265 27.8867 5.15676 27.7782C5.11292 27.6745 5.07827 27.5687 5.05282 27.4607C5.01761 27.3113 5 27.1577 5 27L5 5C5 4.84228 5.01761 4.68871 5.05282 4.53929C5.07827 4.4313 5.11292 4.32547 5.15676 4.22182C5.20266 4.1133 5.25717 4.01037 5.32031 3.91303C5.39631 3.79585 5.4848 3.68677 5.58579 3.58579C5.68677 3.4848 5.79585 3.39631 5.91303 3.32031C6.01037 3.25717 6.1133 3.20266 6.22182 3.15676C6.32547 3.11292 6.4313 3.07827 6.53929 3.05282C6.68871 3.01761 6.84228 3 7 3L19.5858 3Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path></g><filter id="pixso_custom_mask_type_outline"><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 255 0 "></feColorMatrix></filter><clipPath id="clipPath_2"><rect width="15" height="16" x="9" y="11" fill="rgb(255,255,255)"></rect></clipPath></defs>', 1),
192
192
  t(
@@ -315,9 +315,9 @@ const r2 = {
315
315
  ])
316
316
  ],
317
317
  -1
318
- /* CACHED */
318
+ /* HOISTED */
319
319
  )
320
- ])], 10, n2));
320
+ ]), 10, n2));
321
321
  }
322
322
  }), p2 = ["width", "height", "aria-label"], C2 = /* @__PURE__ */ c({
323
323
  __name: "EmailFile",
@@ -339,7 +339,7 @@ const r2 = {
339
339
  role: "img",
340
340
  "aria-label": e.title,
341
341
  class: h(e.class)
342
- }, [...r[0] || (r[0] = [
342
+ }, r[0] || (r[0] = [
343
343
  t(
344
344
  "mask",
345
345
  {
@@ -357,10 +357,10 @@ const r2 = {
357
357
  ])
358
358
  ],
359
359
  -1
360
- /* CACHED */
360
+ /* HOISTED */
361
361
  ),
362
362
  f('<defs><g id="use_14"><rect id="蒙版" width="28" height="22" x="2" y="5" rx="4" fill="rgb(255,136,0)"></rect><rect id="蒙版" width="27" height="21" x="2.5" y="5.5" rx="4" stroke="rgb(223,225,230)" stroke-opacity="0" stroke-width="1"></rect></g><filter id="pixso_custom_mask_type_outline"><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 255 0 "></feColorMatrix></filter><linearGradient id="paint_linear_0" x1="14.3386717" x2="14.3386717" y1="0" y2="11.6952209" gradientUnits="userSpaceOnUse"><stop stop-color="rgb(246,247,253)" offset="0" stop-opacity="1"></stop><stop stop-color="rgb(233,237,250)" offset="1" stop-opacity="1"></stop></linearGradient><linearGradient id="paint_linear_1" x1="16" x2="16" y1="3" y2="17" gradientUnits="userSpaceOnUse"><stop stop-color="rgb(246,247,253)" offset="0" stop-opacity="1"></stop><stop stop-color="rgb(233,237,250)" offset="1" stop-opacity="1"></stop></linearGradient></defs><g id="邮件"><rect id="矩形" width="32" height="32" x="0" y="0" rx="4" fill="rgb(238,240,245)" fill-opacity="0"></rect><rect id="矩形" width="31" height="31" x="0.5" y="0.5" rx="4" stroke="rgb(151,151,151)" stroke-opacity="0" stroke-width="1"></rect><g id="矩形" mask="url(#mask_14)"><use xlink:href="#use_14"></use><path id="形状" d="M0.341524 1.75256L11.7046 11.6952L0.999972 0C0.711642 0 0.43735 0.124481 0.247408 0.341492C-0.116239 0.757141 -0.074125 1.38889 0.341524 1.75256ZM27.6773 0C28.2296 0 28.6773 0.447723 28.6773 1C28.6773 1.28836 28.5528 1.56268 28.3358 1.75256L16.9727 11.6952L27.6773 0Z" opacity="0" fill="url(#paint_linear_0)" fill-opacity="0" fill-rule="evenodd" transform="matrix(1,0,0,-1,1.66125,27.4999)"></path><path id="形状" d="M0.341524 1.75256L11.7046 11.6952L0.999972 0C0.711642 0 0.43735 0.124481 0.247408 0.341492C-0.116239 0.757141 -0.074125 1.38889 0.341524 1.75256ZM27.6773 0C28.2296 0 28.6773 0.447723 28.6773 1C28.6773 1.28836 28.5528 1.56268 28.3358 1.75256L16.9727 11.6952L27.6773 0Z" opacity="0" fill-rule="evenodd" stroke="rgb(255,255,255)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5" transform="matrix(1,0,0,-1,1.66125,27.4999)"></path><path id="矩形" d="M2.66145 3L29.3386 3C30.2619 3 30.692 4.14454 29.9971 4.75258L18.634 14.6952C17.1259 16.0148 14.8741 16.0148 13.366 14.6952L2.00294 4.75258C1.30804 4.14454 1.73808 3 2.66145 3Z" fill="url(#paint_linear_1)" fill-opacity="0" fill-rule="evenodd"></path><path id="矩形" d="M29.3386 3C30.2619 3 30.692 4.14454 29.9971 4.75258L18.634 14.6952C17.1259 16.0148 14.8741 16.0148 13.366 14.6952L2.00294 4.75258C1.30804 4.14454 1.73808 3 2.66145 3L29.3386 3Z" fill-rule="evenodd" stroke="rgb(255,255,255)" stroke-width="1.5"></path><path id="矢量 789" d="M0 0L15.5563 0" stroke="rgb(255,255,255)" stroke-width="1.5" transform="matrix(0.707107,-0.707107,0.707107,0.707107,3,26)"></path><path id="矢量 789" d="M0 0L15.5563 0" stroke="rgb(255,255,255)" stroke-width="1.5" transform="matrix(-0.707107,-0.707107,-0.707107,0.707107,29,26)"></path></g></g>', 2)
363
- ])], 10, p2));
363
+ ]), 10, p2));
364
364
  }
365
365
  }), h2 = ["width", "height", "aria-label"], B = /* @__PURE__ */ c({
366
366
  __name: "Excel",
@@ -382,7 +382,7 @@ const r2 = {
382
382
  role: "img",
383
383
  "aria-label": e.title,
384
384
  class: h(e.class)
385
- }, [...r[0] || (r[0] = [
385
+ }, r[0] || (r[0] = [
386
386
  t(
387
387
  "mask",
388
388
  {
@@ -400,10 +400,10 @@ const r2 = {
400
400
  ])
401
401
  ],
402
402
  -1
403
- /* CACHED */
403
+ /* HOISTED */
404
404
  ),
405
405
  f('<defs><g id="use_6"><path id="蒙版" d="M7 2L20 2L28 10L28 27C28 28.6569 26.6569 30 25 30L7 30C5.34315 30 4 28.6569 4 27L4 5C4 3.34315 5.34315 2 7 2Z" fill="rgb(37,194,81)" fill-rule="evenodd"></path><path id="蒙版" d="M20 2L7 2C5.34315 2 4 3.34315 4 5L4 27C4 28.6569 5.34315 30 7 30L25 30C26.6569 30 28 28.6569 28 27L28 10L20 2ZM19.5858 3L27 10.4142L27 27C27 27.1577 26.9824 27.3113 26.9472 27.4607C26.9217 27.5687 26.8871 27.6745 26.8432 27.7782C26.7974 27.8867 26.7429 27.9896 26.6798 28.0869C26.6037 28.2041 26.5152 28.3132 26.4142 28.4142C26.3132 28.5152 26.2041 28.6037 26.0869 28.6797C25.9896 28.7429 25.8867 28.7974 25.7782 28.8432C25.6745 28.8871 25.5687 28.9217 25.4607 28.9472C25.3113 28.9824 25.1577 29 25 29L7 29C6.84229 29 6.68872 28.9824 6.53931 28.9472C6.43131 28.9217 6.32548 28.8871 6.22182 28.8432C6.11331 28.7973 6.01038 28.7428 5.91305 28.6797C5.79586 28.6037 5.68677 28.5152 5.58579 28.4142C5.48479 28.3132 5.39628 28.2041 5.32027 28.0869C5.25715 27.9896 5.20265 27.8867 5.15676 27.7782C5.11292 27.6745 5.07827 27.5687 5.05282 27.4607C5.01761 27.3113 5 27.1577 5 27L5 5C5 4.84228 5.01761 4.68871 5.05282 4.53929C5.07827 4.4313 5.11292 4.32547 5.15676 4.22182C5.20266 4.1133 5.25717 4.01037 5.32031 3.91303C5.39631 3.79585 5.4848 3.68677 5.58579 3.58579C5.68677 3.4848 5.79585 3.39631 5.91303 3.32031C6.01037 3.25717 6.1133 3.20266 6.22182 3.15676C6.32547 3.11292 6.4313 3.07827 6.53929 3.05282C6.68871 3.01761 6.84228 3 7 3L19.5858 3Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path></g><filter id="pixso_custom_mask_type_outline"><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 255 0 "></feColorMatrix></filter></defs><g id="表格"><rect id="矩形" width="32" height="32" x="0" y="0" fill="rgb(0,0,0)" fill-opacity="0"></rect><rect id="矩形" width="31" height="31" x="0.5" y="0.5" stroke="rgb(151,151,151)" stroke-opacity="0" stroke-width="1"></rect><g id="路径" mask="url(#mask_6)"><use xlink:href="#use_6"></use><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L28 10Z" fill="rgb(146,224,165)" fill-rule="evenodd"></path><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L21 3L21 8.5C21 8.56903 21.0122 8.63301 21.0366 8.69194C21.061 8.75087 21.0976 8.80474 21.1464 8.85355C21.1953 8.90237 21.2491 8.93898 21.3081 8.96339C21.367 8.9878 21.431 9 21.5 9L27 9L28 10Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path><g id="组合 3851"><rect id="矩形" width="15" height="13" x="8.5" y="12.5" rx="2" fill="rgb(216,216,216)" fill-opacity="0"></rect><rect id="矩形" width="15" height="13" x="8.5" y="12.5" rx="2" stroke="rgb(255,255,255)" stroke-width="1.5"></rect><path id="矢量 773" d="M9 19L23 19" stroke="rgb(255,255,255)" stroke-width="1.5"></path><path id="矢量 773" d="M0 0L14 0" stroke="rgb(255,255,255)" stroke-width="1.5" transform="matrix(0,-1,1,0,16,26)"></path></g></g></g>', 2)
406
- ])], 10, h2));
406
+ ]), 10, h2));
407
407
  }
408
408
  }), c2 = ["width", "height", "aria-label"], u2 = /* @__PURE__ */ c({
409
409
  __name: "FlowChart",
@@ -425,7 +425,7 @@ const r2 = {
425
425
  role: "img",
426
426
  "aria-label": e.title,
427
427
  class: h(e.class)
428
- }, [...r[0] || (r[0] = [
428
+ }, r[0] || (r[0] = [
429
429
  t(
430
430
  "mask",
431
431
  {
@@ -443,10 +443,10 @@ const r2 = {
443
443
  ])
444
444
  ],
445
445
  -1
446
- /* CACHED */
446
+ /* HOISTED */
447
447
  ),
448
448
  f('<defs><g id="use_2"><path id="蒙版" d="M7 2L20 2L28 10L28 27C28 28.6569 26.6569 30 25 30L7 30C5.34315 30 4 28.6569 4 27L4 5C4 3.34315 5.34315 2 7 2Z" fill="rgb(242,48,48)" fill-rule="evenodd"></path><path id="蒙版" d="M20 2L7 2C5.34315 2 4 3.34315 4 5L4 27C4 28.6569 5.34315 30 7 30L25 30C26.6569 30 28 28.6569 28 27L28 10L20 2ZM19.5858 3L27 10.4142L27 27C27 27.1577 26.9824 27.3113 26.9472 27.4607C26.9217 27.5687 26.8871 27.6745 26.8432 27.7782C26.7974 27.8867 26.7429 27.9896 26.6798 28.0869C26.6037 28.2041 26.5152 28.3132 26.4142 28.4142C26.3132 28.5152 26.2041 28.6037 26.0869 28.6797C25.9896 28.7429 25.8867 28.7974 25.7782 28.8432C25.6745 28.8871 25.5687 28.9217 25.4607 28.9472C25.3113 28.9824 25.1577 29 25 29L7 29C6.84229 29 6.68872 28.9824 6.53931 28.9472C6.43131 28.9217 6.32548 28.8871 6.22182 28.8432C6.11331 28.7973 6.01038 28.7428 5.91305 28.6797C5.79586 28.6037 5.68677 28.5152 5.58579 28.4142C5.48479 28.3132 5.39628 28.2041 5.32027 28.0869C5.25715 27.9896 5.20265 27.8867 5.15676 27.7782C5.11292 27.6745 5.07827 27.5687 5.05282 27.4607C5.01761 27.3113 5 27.1577 5 27L5 5C5 4.84228 5.01761 4.68871 5.05282 4.53929C5.07827 4.4313 5.11292 4.32547 5.15676 4.22182C5.20266 4.1133 5.25717 4.01037 5.32031 3.91303C5.39631 3.79585 5.4848 3.68677 5.58579 3.58579C5.68677 3.4848 5.79585 3.39631 5.91303 3.32031C6.01037 3.25717 6.1133 3.20266 6.22182 3.15676C6.32547 3.11292 6.4313 3.07827 6.53929 3.05282C6.68871 3.01761 6.84228 3 7 3L19.5858 3Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path></g><filter id="pixso_custom_mask_type_outline"><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 255 0 "></feColorMatrix></filter></defs><g id="流程图"><rect id="矩形" width="32" height="32" x="0" y="0" fill="rgb(0,0,0)" fill-opacity="0"></rect><rect id="矩形" width="31" height="31" x="0.5" y="0.5" stroke="rgb(151,151,151)" stroke-opacity="0" stroke-width="1"></rect><g id="编组 2" mask="url(#mask_2)"><use xlink:href="#use_2"></use><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L28 10Z" fill="rgb(250,167,163)" fill-rule="evenodd"></path><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L21 3L21 8.5C21 8.56903 21.0122 8.63301 21.0366 8.69194C21.061 8.75087 21.0976 8.80474 21.1464 8.85355C21.1953 8.90237 21.2491 8.93898 21.3081 8.96339C21.367 8.9878 21.431 9 21.5 9L27 9L28 10Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path><path id="路径" d="M6.54991 5L2.5 5C1.11929 5 -1.09279e-07 3.88071 -1.09279e-07 2.5C-1.09279e-07 1.11929 1.11929 0 2.5 0L12 0L6.54991 5Z" fill="rgb(216,216,216)" fill-opacity="0" fill-rule="evenodd" transform="matrix(-1,0,0,1,23.5,13)"></path><path id="路径" d="M6.54991 5L2.5 5C1.11929 5 -1.09279e-07 3.88071 -1.09279e-07 2.5C-1.09279e-07 1.11929 1.11929 0 2.5 0L12 0" fill-rule="evenodd" stroke="rgb(255,255,255)" stroke-width="1.5" transform="matrix(-1,0,0,1,23.5,13)"></path><path id="路径备份" d="M8.64563 5L2.5 5C1.11929 5 -1.09278e-07 3.88071 -1.09278e-07 2.5C-1.09278e-07 1.11929 1.11929 0 2.5 0L11.9084 0L8.64563 5Z" fill="rgb(216,216,216)" fill-opacity="0" fill-rule="evenodd" transform="matrix(1,0,0,-1,9,23)"></path><path id="路径备份" d="M8.64563 5L2.5 5C1.11929 5 -1.09278e-07 3.88071 -1.09278e-07 2.5C-1.09278e-07 1.11929 1.11929 0 2.5 0L11.9084 0" fill-rule="evenodd" stroke="rgb(255,255,255)" stroke-width="1.5" transform="matrix(1,0,0,-1,9,23)"></path><rect id="矩形" width="3" height="3" x="20.5" y="21.5" rx="1.5" fill="rgb(18,119,255)" fill-opacity="0"></rect><rect id="矩形" width="3" height="3" x="20.5" y="21.5" rx="1.5" stroke="rgb(255,255,255)" stroke-width="1.5"></rect><rect id="矩形备份 16" width="3" height="3" x="0" y="0" rx="1.5" fill="rgb(216,216,216)" fill-opacity="0" transform="matrix(0.707107,0.707107,-0.707107,0.707107,10.5,10.8787)"></rect><rect id="矩形备份 16" width="3" height="3" x="0" y="0" rx="1.5" stroke="rgb(255,255,255)" stroke-width="1.5" transform="matrix(0.707107,0.707107,-0.707107,0.707107,10.5,10.8787)"></rect></g></g>', 2)
449
- ])], 10, c2));
449
+ ]), 10, c2));
450
450
  }
451
451
  }), f2 = ["width", "height", "aria-label"], y = /* @__PURE__ */ c({
452
452
  __name: "Image",
@@ -468,7 +468,7 @@ const r2 = {
468
468
  role: "img",
469
469
  "aria-label": e.title,
470
470
  class: h(e.class)
471
- }, [...r[0] || (r[0] = [
471
+ }, r[0] || (r[0] = [
472
472
  t(
473
473
  "mask",
474
474
  {
@@ -486,10 +486,10 @@ const r2 = {
486
486
  ])
487
487
  ],
488
488
  -1
489
- /* CACHED */
489
+ /* HOISTED */
490
490
  ),
491
491
  f('<defs><g id="use_0"><path id="蒙版" d="M7 2L20 2L28 10L28 27C28 28.6569 26.6569 30 25 30L7 30C5.34315 30 4 28.6569 4 27L4 5C4 3.34315 5.34315 2 7 2Z" fill="rgb(57,121,249)" fill-rule="evenodd"></path><path id="蒙版" d="M20 2L7 2C5.34315 2 4 3.34315 4 5L4 27C4 28.6569 5.34315 30 7 30L25 30C26.6569 30 28 28.6569 28 27L28 10L20 2ZM19.5858 3L27 10.4142L27 27C27 27.1577 26.9824 27.3113 26.9472 27.4607C26.9217 27.5687 26.8871 27.6745 26.8432 27.7782C26.7974 27.8867 26.7429 27.9896 26.6798 28.0869C26.6037 28.2041 26.5152 28.3132 26.4142 28.4142C26.3132 28.5152 26.2041 28.6037 26.0869 28.6797C25.9896 28.7429 25.8867 28.7974 25.7782 28.8432C25.6745 28.8871 25.5687 28.9217 25.4607 28.9472C25.3113 28.9824 25.1577 29 25 29L7 29C6.84229 29 6.68872 28.9824 6.53931 28.9472C6.43131 28.9217 6.32548 28.8871 6.22182 28.8432C6.11331 28.7973 6.01038 28.7428 5.91305 28.6797C5.79586 28.6037 5.68677 28.5152 5.58579 28.4142C5.48479 28.3132 5.39628 28.2041 5.32027 28.0869C5.25715 27.9896 5.20265 27.8867 5.15676 27.7782C5.11292 27.6745 5.07827 27.5687 5.05282 27.4607C5.01761 27.3113 5 27.1577 5 27L5 5C5 4.84228 5.01761 4.68871 5.05282 4.53929C5.07827 4.4313 5.11292 4.32547 5.15676 4.22182C5.20266 4.1133 5.25717 4.01037 5.32031 3.91303C5.39631 3.79585 5.4848 3.68677 5.58579 3.58579C5.68677 3.4848 5.79585 3.39631 5.91303 3.32031C6.01037 3.25717 6.1133 3.20266 6.22182 3.15676C6.32547 3.11292 6.4313 3.07827 6.53929 3.05282C6.68871 3.01761 6.84228 3 7 3L19.5858 3Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path></g><filter id="pixso_custom_mask_type_outline"><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 255 0 "></feColorMatrix></filter></defs><g id="图片"><rect id="矩形" width="32" height="32" x="0" y="0" rx="6" fill="rgb(238,240,245)" fill-opacity="0"></rect><rect id="矩形" width="31" height="31" x="0.5" y="0.5" rx="6" stroke="rgb(151,151,151)" stroke-opacity="0" stroke-width="1"></rect><g id="图标/空文件夹 copy 2" mask="url(#mask_0)"><use xlink:href="#use_0"></use><g id="编组 27"><path id="椭圆形" d="M11.5 16.5C12.3284 16.5 13 15.8284 13 15C13 14.1716 12.3284 13.5 11.5 13.5C10.6716 13.5 10 14.1716 10 15C10 15.8284 10.6716 16.5 11.5 16.5Z" fill="rgb(255,255,255)" fill-rule="evenodd"></path><path id="椭圆形" d="M13 15C13 15.8284 12.3284 16.5 11.5 16.5C10.6716 16.5 10 15.8284 10 15C10 14.1716 10.6716 13.5 11.5 13.5C12.3284 13.5 13 14.1716 13 15ZM11.9634 14.8081C11.9878 14.867 12 14.931 12 15C12 15.069 11.9878 15.133 11.9634 15.1919C11.939 15.2509 11.9024 15.3047 11.8536 15.3536C11.8047 15.4024 11.7509 15.439 11.6919 15.4634C11.633 15.4878 11.569 15.5 11.5 15.5C11.431 15.5 11.367 15.4878 11.3081 15.4634C11.2491 15.439 11.1953 15.4024 11.1464 15.3536C11.0976 15.3047 11.061 15.2509 11.0366 15.1919C11.0122 15.133 11 15.069 11 15C11 14.931 11.0122 14.867 11.0366 14.8081C11.061 14.7491 11.0976 14.6953 11.1464 14.6464C11.1953 14.5976 11.2491 14.561 11.3081 14.5366C11.367 14.5122 11.431 14.5 11.5 14.5C11.569 14.5 11.633 14.5122 11.6919 14.5366C11.7509 14.561 11.8047 14.5976 11.8536 14.6464C11.9024 14.6953 11.939 14.7491 11.9634 14.8081Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path><path id="路径" d="M22.7002 23.126L18.6447 16.9265C18.3065 16.4096 17.5571 16.3873 17.1888 16.8831L15.2857 19.4454L13.7373 18.0224C13.3287 17.647 12.6798 17.734 12.3846 18.2038L9.28364 23.1397C8.91213 23.731 9.33716 24.5 10.0355 24.5L21.9572 24.5C22.6629 24.5 23.0866 23.7165 22.7002 23.126Z" fill="rgb(255,255,255)" fill-rule="evenodd"></path><path id="路径" d="M14.5454 18.765L13.7373 18.0224C13.3287 17.647 12.6798 17.734 12.3846 18.2038L9.28364 23.1397C8.91213 23.731 9.33716 24.5 10.0355 24.5L21.9572 24.5C22.6629 24.5 23.0866 23.7165 22.7002 23.126L18.6447 16.9265C18.3065 16.4096 17.5571 16.3873 17.1888 16.8831L15.8852 18.6382L15.2857 19.4454L14.5454 18.765ZM17.8958 17.6084L15.4265 20.9329L13.1597 18.8498L10.2383 23.5L21.7499 23.5L17.8958 17.6084Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path></g><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L28 10Z" fill="rgb(157,189,252)" fill-rule="evenodd"></path><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L21 3L21 8.5C21 8.56903 21.0122 8.63301 21.0366 8.69194C21.061 8.75087 21.0976 8.80474 21.1464 8.85355C21.1953 8.90237 21.2491 8.93898 21.3081 8.96339C21.367 8.9878 21.431 9 21.5 9L27 9L28 10Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path></g></g>', 2)
492
- ])], 10, f2));
492
+ ]), 10, f2));
493
493
  }
494
494
  }), g2 = ["width", "height", "aria-label"], W = /* @__PURE__ */ c({
495
495
  __name: "Markdown",
@@ -511,7 +511,7 @@ const r2 = {
511
511
  role: "img",
512
512
  "aria-label": e.title,
513
513
  class: h(e.class)
514
- }, [...r[0] || (r[0] = [
514
+ }, r[0] || (r[0] = [
515
515
  t(
516
516
  "mask",
517
517
  {
@@ -529,10 +529,10 @@ const r2 = {
529
529
  ])
530
530
  ],
531
531
  -1
532
- /* CACHED */
532
+ /* HOISTED */
533
533
  ),
534
534
  f('<defs><g id="use_18"><path id="蒙版" d="M7 2L20 2L28 10L28 27C28 28.6569 26.6569 30 25 30L7 30C5.34315 30 4 28.6569 4 27L4 5C4 3.34315 5.34315 2 7 2Z" fill="rgb(37,194,81)" fill-rule="evenodd"></path><path id="蒙版" d="M20 2L7 2C5.34315 2 4 3.34315 4 5L4 27C4 28.6569 5.34315 30 7 30L25 30C26.6569 30 28 28.6569 28 27L28 10L20 2ZM19.5858 3L27 10.4142L27 27C27 27.1577 26.9824 27.3113 26.9472 27.4607C26.9217 27.5687 26.8871 27.6745 26.8432 27.7782C26.7974 27.8867 26.7429 27.9896 26.6798 28.0869C26.6037 28.2041 26.5152 28.3132 26.4142 28.4142C26.3132 28.5152 26.2041 28.6037 26.0869 28.6797C25.9896 28.7429 25.8867 28.7974 25.7782 28.8432C25.6745 28.8871 25.5687 28.9217 25.4607 28.9472C25.3113 28.9824 25.1577 29 25 29L7 29C6.84229 29 6.68872 28.9824 6.53931 28.9472C6.43131 28.9217 6.32548 28.8871 6.22182 28.8432C6.11331 28.7973 6.01038 28.7428 5.91305 28.6797C5.79586 28.6037 5.68677 28.5152 5.58579 28.4142C5.48479 28.3132 5.39628 28.2041 5.32027 28.0869C5.25715 27.9896 5.20265 27.8867 5.15676 27.7782C5.11292 27.6745 5.07827 27.5687 5.05282 27.4607C5.01761 27.3113 5 27.1577 5 27L5 5C5 4.84228 5.01761 4.68871 5.05282 4.53929C5.07827 4.4313 5.11292 4.32547 5.15676 4.22182C5.20266 4.1133 5.25717 4.01037 5.32031 3.91303C5.39631 3.79585 5.4848 3.68677 5.58579 3.58579C5.68677 3.4848 5.79585 3.39631 5.91303 3.32031C6.01037 3.25717 6.1133 3.20266 6.22182 3.15676C6.32547 3.11292 6.4313 3.07827 6.53929 3.05282C6.68871 3.01761 6.84228 3 7 3L19.5858 3Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path></g><filter id="pixso_custom_mask_type_outline"><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 255 0 "></feColorMatrix></filter></defs><rect id="雪碧图/32px/markdown" width="32" height="32" x="0" y="0"></rect><g id="图标/markdown文件"><rect id="矩形" width="32" height="32" x="0" y="0" rx="4" fill="rgb(238,240,245)" fill-opacity="0"></rect><rect id="矩形" width="31" height="31" x="0.5" y="0.5" rx="4" stroke="rgb(151,151,151)" stroke-opacity="0" stroke-width="1"></rect><g id="编组 2" mask="url(#mask_18)"><use xlink:href="#use_18"></use><g id="组合 3854"><path id="矢量 770" d="M0 0L8 0" stroke="rgb(255,255,255)" stroke-linecap="round" stroke-width="1.5" transform="matrix(0,1,-1,0,9,14)"></path><path id="矢量 790" d="M0 0L8 0" stroke="rgb(255,255,255)" stroke-linecap="round" stroke-width="1.5" transform="matrix(0,1,-1,0,17,14)"></path><path id="矢量 794" d="M0 0L8 0" stroke="rgb(255,255,255)" stroke-linecap="round" stroke-width="1.5" transform="matrix(0,1,-1,0,22,14)"></path><path id="矢量 795" d="M20 20L21.9293 21.9293C21.9683 21.9683 22.0317 21.9683 22.0707 21.9293L24 20" stroke="rgb(255,255,255)" stroke-width="1.5"></path><path id="矢量 791" d="M9 14L12.9106 21.8211C12.9474 21.8948 13.0526 21.8948 13.0894 21.8211L17 14" stroke="rgb(255,255,255)" stroke-width="1.5"></path></g><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L28 10Z" fill="rgb(146,224,165)" fill-rule="evenodd"></path><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L21 3L21 8.5C21 8.56903 21.0122 8.63301 21.0366 8.69194C21.061 8.75087 21.0976 8.80474 21.1464 8.85355C21.1953 8.90237 21.2491 8.93898 21.3081 8.96339C21.367 8.9878 21.431 9 21.5 9L27 9L28 10Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path></g></g>', 3)
535
- ])], 10, g2));
535
+ ]), 10, g2));
536
536
  }
537
537
  }), L2 = ["width", "height", "aria-label"], m2 = /* @__PURE__ */ c({
538
538
  __name: "Mind",
@@ -554,7 +554,7 @@ const r2 = {
554
554
  role: "img",
555
555
  "aria-label": e.title,
556
556
  class: h(e.class)
557
- }, [...r[0] || (r[0] = [
557
+ }, r[0] || (r[0] = [
558
558
  t(
559
559
  "mask",
560
560
  {
@@ -572,10 +572,10 @@ const r2 = {
572
572
  ])
573
573
  ],
574
574
  -1
575
- /* CACHED */
575
+ /* HOISTED */
576
576
  ),
577
577
  f('<defs><g id="use_12"><path id="蒙版" d="M7 2L20 2L28 10L28 27C28 28.6569 26.6569 30 25 30L7 30C5.34315 30 4 28.6569 4 27L4 5C4 3.34315 5.34315 2 7 2Z" fill="rgb(164,47,214)" fill-rule="evenodd"></path><path id="蒙版" d="M20 2L7 2C5.34315 2 4 3.34315 4 5L4 27C4 28.6569 5.34315 30 7 30L25 30C26.6569 30 28 28.6569 28 27L28 10L20 2ZM19.5858 3L27 10.4142L27 27C27 27.1577 26.9824 27.3113 26.9472 27.4607C26.9217 27.5687 26.8871 27.6745 26.8432 27.7782C26.7974 27.8867 26.7429 27.9896 26.6798 28.0869C26.6037 28.2041 26.5152 28.3132 26.4142 28.4142C26.3132 28.5152 26.2041 28.6037 26.0869 28.6797C25.9896 28.7429 25.8867 28.7974 25.7782 28.8432C25.6745 28.8871 25.5687 28.9217 25.4607 28.9472C25.3113 28.9824 25.1577 29 25 29L7 29C6.84229 29 6.68872 28.9824 6.53931 28.9472C6.43131 28.9217 6.32548 28.8871 6.22182 28.8432C6.11331 28.7973 6.01038 28.7428 5.91305 28.6797C5.79586 28.6037 5.68677 28.5152 5.58579 28.4142C5.48479 28.3132 5.39628 28.2041 5.32027 28.0869C5.25715 27.9896 5.20265 27.8867 5.15676 27.7782C5.11292 27.6745 5.07827 27.5687 5.05282 27.4607C5.01761 27.3113 5 27.1577 5 27L5 5C5 4.84228 5.01761 4.68871 5.05282 4.53929C5.07827 4.4313 5.11292 4.32547 5.15676 4.22182C5.20266 4.1133 5.25717 4.01037 5.32031 3.91303C5.39631 3.79585 5.4848 3.68677 5.58579 3.58579C5.68677 3.4848 5.79585 3.39631 5.91303 3.32031C6.01037 3.25717 6.1133 3.20266 6.22182 3.15676C6.32547 3.11292 6.4313 3.07827 6.53929 3.05282C6.68871 3.01761 6.84228 3 7 3L19.5858 3Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path></g><filter id="pixso_custom_mask_type_outline"><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 255 0 "></feColorMatrix></filter></defs><g id="思维导图"><rect id="矩形" width="32" height="32" x="0" y="0" fill="rgb(0,0,0)" fill-opacity="0"></rect><rect id="矩形" width="31" height="31" x="0.5" y="0.5" stroke="rgb(151,151,151)" stroke-opacity="0" stroke-width="1"></rect><g id="编组 2" mask="url(#mask_12)"><use xlink:href="#use_12"></use><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L28 10Z" fill="rgb(222,163,247)" fill-rule="evenodd"></path><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L21 3L21 8.5C21 8.56903 21.0122 8.63301 21.0366 8.69194C21.061 8.75087 21.0976 8.80474 21.1464 8.85355C21.1953 8.90237 21.2491 8.93898 21.3081 8.96339C21.367 8.9878 21.431 9 21.5 9L27 9L28 10Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path><g id="编组 33"><rect id="矩形" width="4" height="4" x="8.5" y="17" rx="2" fill="rgb(216,216,216)" fill-opacity="0"></rect><rect id="矩形" width="4" height="4" x="8.5" y="17" rx="2" stroke="rgb(255,255,255)" stroke-width="1.5"></rect><rect id="矩形备份 13" width="4" height="4" x="19.5" y="12.5" rx="2" fill="rgb(216,216,216)" fill-opacity="0"></rect><rect id="矩形备份 13" width="4" height="4" x="19.5" y="12.5" rx="2" stroke="rgb(255,255,255)" stroke-width="1.5"></rect><rect id="矩形备份 15" width="4" height="4" x="19.5" y="21.5" rx="2" fill="rgb(216,216,216)" fill-opacity="0"></rect><rect id="矩形备份 15" width="4" height="4" x="19.5" y="21.5" rx="2" stroke="rgb(255,255,255)" stroke-width="1.5"></rect><path id="路径 5" d="M12.5 19L16.0087 19" stroke="rgb(255,255,255)" stroke-width="1.5"></path><path id="路径" d="M19.446 23.5244L17.9496 23.5139C16.8505 23.5139 15.9636 22.6131 15.9636 21.514L15.9636 16.5141C15.9636 15.404 16.8676 14.5141 17.9776 14.5141L19.446 14.5244L19.446 23.5244Z" fill="rgb(216,216,216)" fill-opacity="0" fill-rule="evenodd"></path><path id="路径" d="M19.446 23.5244L17.9496 23.5139C16.8505 23.5139 15.9636 22.6131 15.9636 21.514L15.9636 16.5141C15.9636 15.404 16.8676 14.5141 17.9776 14.5141L19.446 14.5244" fill-rule="evenodd" stroke="rgb(255,255,255)" stroke-width="1.5"></path></g></g></g>', 2)
578
- ])], 10, L2));
578
+ ]), 10, L2));
579
579
  }
580
580
  }), _2 = ["width", "height", "aria-label"], u = /* @__PURE__ */ c({
581
581
  __name: "Mp4",
@@ -597,7 +597,7 @@ const r2 = {
597
597
  role: "img",
598
598
  "aria-label": e.title,
599
599
  class: h(e.class)
600
- }, [...r[0] || (r[0] = [
600
+ }, r[0] || (r[0] = [
601
601
  t(
602
602
  "mask",
603
603
  {
@@ -615,10 +615,10 @@ const r2 = {
615
615
  ])
616
616
  ],
617
617
  -1
618
- /* CACHED */
618
+ /* HOISTED */
619
619
  ),
620
620
  f('<defs><g id="use_9"><path id="蒙版" d="M7 2L20 2L28 10L28 27C28 28.6569 26.6569 30 25 30L7 30C5.34315 30 4 28.6569 4 27L4 5C4 3.34315 5.34315 2 7 2Z" fill="rgb(57,121,249)" fill-rule="evenodd"></path><path id="蒙版" d="M20 2L7 2C5.34315 2 4 3.34315 4 5L4 27C4 28.6569 5.34315 30 7 30L25 30C26.6569 30 28 28.6569 28 27L28 10L20 2ZM19.5858 3L27 10.4142L27 27C27 27.1577 26.9824 27.3113 26.9472 27.4607C26.9217 27.5687 26.8871 27.6745 26.8432 27.7782C26.7974 27.8867 26.7429 27.9896 26.6798 28.0869C26.6037 28.2041 26.5152 28.3132 26.4142 28.4142C26.3132 28.5152 26.2041 28.6037 26.0869 28.6797C25.9896 28.7429 25.8867 28.7974 25.7782 28.8432C25.6745 28.8871 25.5687 28.9217 25.4607 28.9472C25.3113 28.9824 25.1577 29 25 29L7 29C6.84229 29 6.68872 28.9824 6.53931 28.9472C6.43131 28.9217 6.32548 28.8871 6.22182 28.8432C6.11331 28.7973 6.01038 28.7428 5.91305 28.6797C5.79586 28.6037 5.68677 28.5152 5.58579 28.4142C5.48479 28.3132 5.39628 28.2041 5.32027 28.0869C5.25715 27.9896 5.20265 27.8867 5.15676 27.7782C5.11292 27.6745 5.07827 27.5687 5.05282 27.4607C5.01761 27.3113 5 27.1577 5 27L5 5C5 4.84228 5.01761 4.68871 5.05282 4.53929C5.07827 4.4313 5.11292 4.32547 5.15676 4.22182C5.20266 4.1133 5.25717 4.01037 5.32031 3.91303C5.39631 3.79585 5.4848 3.68677 5.58579 3.58579C5.68677 3.4848 5.79585 3.39631 5.91303 3.32031C6.01037 3.25717 6.1133 3.20266 6.22182 3.15676C6.32547 3.11292 6.4313 3.07827 6.53929 3.05282C6.68871 3.01761 6.84228 3 7 3L19.5858 3Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path></g><filter id="pixso_custom_mask_type_outline"><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 255 0 "></feColorMatrix></filter></defs><g id="mp4"><rect id="矩形" width="32" height="32" x="0" y="0" rx="8" fill="rgb(238,240,245)" fill-opacity="0"></rect><rect id="矩形" width="31" height="31" x="0.5" y="0.5" rx="8" stroke="rgb(151,151,151)" stroke-opacity="0" stroke-width="1"></rect><g id="路径" mask="url(#mask_9)"><use xlink:href="#use_9"></use><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L28 10Z" fill="rgb(157,189,252)" fill-rule="evenodd"></path><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L21 3L21 8.5C21 8.56903 21.0122 8.63301 21.0366 8.69194C21.061 8.75087 21.0976 8.80474 21.1464 8.85355C21.1953 8.90237 21.2491 8.93898 21.3081 8.96339C21.367 8.9878 21.431 9 21.5 9L27 9L28 10Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path><path id="矢量 780" d="M13.5 22.5433C13.5 22.6269 13.5965 22.6736 13.6621 22.6217L19.401 18.0784C19.4515 18.0384 19.4515 17.9616 19.401 17.9216L13.6621 13.3783C13.5965 13.3264 13.5 13.3731 13.5 13.4567L13.5 22.5433Z" stroke="rgb(255,255,255)" stroke-width="1.5"></path></g></g>', 2)
621
- ])], 10, _2));
621
+ ]), 10, _2));
622
622
  }
623
623
  }), k2 = ["width", "height", "aria-label"], x2 = /* @__PURE__ */ c({
624
624
  __name: "Page",
@@ -640,7 +640,7 @@ const r2 = {
640
640
  role: "img",
641
641
  "aria-label": e.title,
642
642
  class: h(e.class)
643
- }, [...r[0] || (r[0] = [
643
+ }, r[0] || (r[0] = [
644
644
  t(
645
645
  "mask",
646
646
  {
@@ -658,10 +658,10 @@ const r2 = {
658
658
  ])
659
659
  ],
660
660
  -1
661
- /* CACHED */
661
+ /* HOISTED */
662
662
  ),
663
663
  f('<defs><g id="use_7"><path id="蒙版" d="M7 2L20 2L28 10L28 27C28 28.6569 26.6569 30 25 30L7 30C5.34315 30 4 28.6569 4 27L4 5C4 3.34315 5.34315 2 7 2Z" fill="rgb(37,194,81)" fill-rule="evenodd"></path><path id="蒙版" d="M20 2L7 2C5.34315 2 4 3.34315 4 5L4 27C4 28.6569 5.34315 30 7 30L25 30C26.6569 30 28 28.6569 28 27L28 10L20 2ZM19.5858 3L27 10.4142L27 27C27 27.1577 26.9824 27.3113 26.9472 27.4607C26.9217 27.5687 26.8871 27.6745 26.8432 27.7782C26.7974 27.8867 26.7429 27.9896 26.6798 28.0869C26.6037 28.2041 26.5152 28.3132 26.4142 28.4142C26.3132 28.5152 26.2041 28.6037 26.0869 28.6797C25.9896 28.7429 25.8867 28.7974 25.7782 28.8432C25.6745 28.8871 25.5687 28.9217 25.4607 28.9472C25.3113 28.9824 25.1577 29 25 29L7 29C6.84229 29 6.68872 28.9824 6.53931 28.9472C6.43131 28.9217 6.32548 28.8871 6.22182 28.8432C6.11331 28.7973 6.01038 28.7428 5.91305 28.6797C5.79586 28.6037 5.68677 28.5152 5.58579 28.4142C5.48479 28.3132 5.39628 28.2041 5.32027 28.0869C5.25715 27.9896 5.20265 27.8867 5.15676 27.7782C5.11292 27.6745 5.07827 27.5687 5.05282 27.4607C5.01761 27.3113 5 27.1577 5 27L5 5C5 4.84228 5.01761 4.68871 5.05282 4.53929C5.07827 4.4313 5.11292 4.32547 5.15676 4.22182C5.20266 4.1133 5.25717 4.01037 5.32031 3.91303C5.39631 3.79585 5.4848 3.68677 5.58579 3.58579C5.68677 3.4848 5.79585 3.39631 5.91303 3.32031C6.01037 3.25717 6.1133 3.20266 6.22182 3.15676C6.32547 3.11292 6.4313 3.07827 6.53929 3.05282C6.68871 3.01761 6.84228 3 7 3L19.5858 3Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path></g><filter id="pixso_custom_mask_type_outline"><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 255 0 "></feColorMatrix></filter></defs><g id="Page"><g id="图标/word文件"><rect id="矩形" width="32" height="32" x="0" y="0" rx="4" fill="rgb(238,240,245)" fill-opacity="0"></rect><rect id="矩形" width="31" height="31" x="0.5" y="0.5" rx="4" stroke="rgb(151,151,151)" stroke-opacity="0" stroke-width="1"></rect><g id="编组 2" mask="url(#mask_7)"><use xlink:href="#use_7"></use><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L28 10Z" fill="rgb(146,224,165)" fill-rule="evenodd"></path><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L21 3L21 8.5C21 8.56903 21.0122 8.63301 21.0366 8.69194C21.061 8.75087 21.0976 8.80474 21.1464 8.85355C21.1953 8.90237 21.2491 8.93898 21.3081 8.96339C21.367 8.9878 21.431 9 21.5 9L27 9L28 10Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path><g id="编组 34"><path id="路径" d="M11.2618 22L10.5 22C9.39543 22 8.5 20.9553 8.5 19.6667L8.5 17.3333C8.5 16.0447 9.39543 15 10.5 15L11.4798 15L11.2618 22Z" fill="rgb(216,216,216)" fill-opacity="0" fill-rule="evenodd"></path><path id="路径" d="M11.2618 22L10.5 22C9.39543 22 8.5 20.9553 8.5 19.6667L8.5 17.3333C8.5 16.0447 9.39543 15 10.5 15L11.4798 15" fill-rule="evenodd" stroke="rgb(255,255,255)" stroke-width="1.5"></path><rect id="矩形" width="4" height="3" x="11.5" y="13.5" rx="1.5" fill="rgb(216,216,216)" fill-opacity="0"></rect><rect id="矩形" width="4" height="3" x="11.5" y="13.5" rx="1.5" stroke="rgb(255,255,255)" stroke-width="1.5"></rect><rect id="矩形备份 11" width="4" height="3" x="11.5" y="20.5" rx="1.5" fill="rgb(216,216,216)" fill-opacity="0"></rect><rect id="矩形备份 11" width="4" height="3" x="11.5" y="20.5" rx="1.5" stroke="rgb(255,255,255)" stroke-width="1.5"></rect><path id="矢量 774" d="M19 13.5L23 13.5" stroke="rgb(255,255,255)" stroke-linecap="round" stroke-width="1.5"></path><path id="矢量 775" d="M19 18.5L23 18.5" stroke="rgb(255,255,255)" stroke-linecap="round" stroke-width="1.5"></path><path id="矢量 776" d="M19 23.5L23 23.5" stroke="rgb(255,255,255)" stroke-linecap="round" stroke-width="1.5"></path></g></g></g></g>', 2)
664
- ])], 10, k2));
664
+ ]), 10, k2));
665
665
  }
666
666
  }), w2 = ["width", "height", "aria-label"], D = /* @__PURE__ */ c({
667
667
  __name: "Pdf",
@@ -683,7 +683,7 @@ const r2 = {
683
683
  role: "img",
684
684
  "aria-label": e.title,
685
685
  class: h(e.class)
686
- }, [...r[0] || (r[0] = [
686
+ }, r[0] || (r[0] = [
687
687
  t(
688
688
  "mask",
689
689
  {
@@ -701,10 +701,10 @@ const r2 = {
701
701
  ])
702
702
  ],
703
703
  -1
704
- /* CACHED */
704
+ /* HOISTED */
705
705
  ),
706
706
  f('<defs><g id="use_3"><path id="蒙版" d="M7 2L20 2L28 10L28 27C28 28.6569 26.6569 30 25 30L7 30C5.34315 30 4 28.6569 4 27L4 5C4 3.34315 5.34315 2 7 2Z" fill="rgb(242,48,48)" fill-rule="evenodd"></path><path id="蒙版" d="M20 2L7 2C5.34315 2 4 3.34315 4 5L4 27C4 28.6569 5.34315 30 7 30L25 30C26.6569 30 28 28.6569 28 27L28 10L20 2ZM19.5858 3L27 10.4142L27 27C27 27.1577 26.9824 27.3113 26.9472 27.4607C26.9217 27.5687 26.8871 27.6745 26.8432 27.7782C26.7974 27.8867 26.7429 27.9896 26.6798 28.0869C26.6037 28.2041 26.5152 28.3132 26.4142 28.4142C26.3132 28.5152 26.2041 28.6037 26.0869 28.6797C25.9896 28.7429 25.8867 28.7974 25.7782 28.8432C25.6745 28.8871 25.5687 28.9217 25.4607 28.9472C25.3113 28.9824 25.1577 29 25 29L7 29C6.84229 29 6.68872 28.9824 6.53931 28.9472C6.43131 28.9217 6.32548 28.8871 6.22182 28.8432C6.11331 28.7973 6.01038 28.7428 5.91305 28.6797C5.79586 28.6037 5.68677 28.5152 5.58579 28.4142C5.48479 28.3132 5.39628 28.2041 5.32027 28.0869C5.25715 27.9896 5.20265 27.8867 5.15676 27.7782C5.11292 27.6745 5.07827 27.5687 5.05282 27.4607C5.01761 27.3113 5 27.1577 5 27L5 5C5 4.84228 5.01761 4.68871 5.05282 4.53929C5.07827 4.4313 5.11292 4.32547 5.15676 4.22182C5.20266 4.1133 5.25717 4.01037 5.32031 3.91303C5.39631 3.79585 5.4848 3.68677 5.58579 3.58579C5.68677 3.4848 5.79585 3.39631 5.91303 3.32031C6.01037 3.25717 6.1133 3.20266 6.22182 3.15676C6.32547 3.11292 6.4313 3.07827 6.53929 3.05282C6.68871 3.01761 6.84228 3 7 3L19.5858 3Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path></g><filter id="pixso_custom_mask_type_outline"><feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 255 0 "></feColorMatrix></filter></defs><g id="pdf"><g id="图标/pdf文件"><rect id="矩形" width="32" height="32" x="0" y="0" rx="8" fill="rgb(238,240,245)" fill-opacity="0"></rect><rect id="矩形" width="31" height="31" x="0.5" y="0.5" rx="8" stroke="rgb(151,151,151)" stroke-opacity="0" stroke-width="1"></rect><g id="编组 2"><g id="路径" mask="url(#mask_3)"><use xlink:href="#use_3"></use><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L28 10Z" fill="rgb(250,167,163)" fill-rule="evenodd"></path><path id="路径" d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L21 3L21 8.5C21 8.56903 21.0122 8.63301 21.0366 8.69194C21.061 8.75087 21.0976 8.80474 21.1464 8.85355C21.1953 8.90237 21.2491 8.93898 21.3081 8.96339C21.367 8.9878 21.431 9 21.5 9L27 9L28 10Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path><path id="path6" d="M16.364 18.6456C18.7712 21.8711 23.2379 23.4328 23.4902 21.3188C23.7425 19.2048 19.0713 19.4571 14.9933 20.5482C10.9085 21.6324 7.37606 24.1215 8.83541 25.5399C10.2879 26.9584 11.7814 24.7489 13.8067 20.0504C15.8321 15.345 17.5164 11.0352 15.1979 11.0352C12.8793 11.0352 13.9499 15.42 16.364 18.6456Z" fill="rgb(0,0,0)" fill-opacity="0" fill-rule="nonzero"></path><path id="path6" d="M23.4902 21.3188C23.7425 19.2048 19.0713 19.4571 14.9933 20.5482C10.9085 21.6324 7.37606 24.1215 8.83541 25.5399C10.2879 26.9584 11.7814 24.7489 13.8067 20.0504C15.8321 15.345 17.5164 11.0352 15.1979 11.0352C12.8793 11.0352 13.9499 15.42 16.364 18.6456C18.7712 21.8711 23.2379 23.4328 23.4902 21.3188Z" fill-rule="nonzero" stroke="rgb(255,255,255)" stroke-linejoin="round" stroke-width="1.5"></path></g></g></g></g>', 2)
707
- ])], 10, w2));
707
+ ]), 10, w2));
708
708
  }
709
709
  }), y2 = ["width", "height", "aria-label"], G = /* @__PURE__ */ c({
710
710
  __name: "Ppt",
@@ -723,9 +723,9 @@ const r2 = {
723
723
  role: "img",
724
724
  "aria-label": e.title,
725
725
  class: h(e.class)
726
- }, [...r[0] || (r[0] = [
726
+ }, r[0] || (r[0] = [
727
727
  f('<g><!-- 橙色背景形状 --><path d="M7 2L20 2L28 10L28 27C28 28.6569 26.6569 30 25 30L7 30C5.34315 30 4 28.6569 4 27L4 5C4 3.34315 5.34315 2 7 2Z" fill="rgb(255,136,0)" fill-rule="evenodd"></path><!-- 内部白色 &quot;P&quot; 字母和装饰 --><g fill="#FFF" fill-rule="evenodd"><path d="M11.8164 9.26886L14.6559 9.26886C14.844 9.26886 14.9966 9.42141 14.9966 9.60959L14.9966 10.7454C14.9966 10.9336 14.844 11.0861 14.6559 11.0861L11.8164 11.0861L11.8164 9.26886Z"></path><path d="M11.8164 12.9036L14.6559 12.9036C14.844 12.9036 14.9966 13.0562 14.9966 13.2444L14.9966 14.7209L14.9966 14.7209L11.8164 14.7209L11.8164 12.9036Z"></path><path d="M0 0L2.83945 0C3.02763 0 3.18019 0.152552 3.18019 0.340734L3.18019 1.47652C3.18019 1.6647 3.02763 1.81725 2.83945 1.81725L0 1.81725L0 0Z" transform="matrix(-1,0,0,1,13.1802,7.45172)"></path><path d="M0.340734 0L3.18019 0L3.18019 0L3.18019 1.81725L0.340734 1.81725C0.152552 1.81725 0 1.6647 0 1.47652L0 0.340734C0 0.152552 0.152552 0 0.340734 0Z" transform="matrix(-1,0,0,1,14.9966,5.63434)"></path><path d="M0 0L3.18019 0L3.18019 1.81725L0.340734 1.81725C0.152552 1.81725 0 1.6647 0 1.47652L0 0L0 0Z" transform="matrix(-1,0,0,1,14.9966,2.00006)"></path><path d="M0 0L2.83945 0C3.02763 0 3.18019 0.152552 3.18019 0.340734L3.18019 1.47652C3.18019 1.6647 3.02763 1.81725 2.83945 1.81725L0 1.81725L0 0Z" transform="matrix(-1,0,0,1,13.1802,3.8172)"></path><path d="M0 0L2.83945 0C3.02763 0 3.18019 0.152552 3.18019 0.340734L3.18019 1.47652C3.18019 1.6647 3.02763 1.81725 2.83945 1.81725L0 1.81725L0 0Z" transform="matrix(-1,0,0,1,13.1802,11.0862)"></path><path d="M15 17.687L15 14.72L10.0026 14.72L10.0026 17.687C10.0026 18.0556 10.3015 18.3545 10.6701 18.3545L14.3324 18.3545C14.7011 18.3545 15 18.0556 15 17.687ZM11.2478 15.6313L13.7465 15.6313L13.7465 16.8807C13.7465 17.0689 13.5939 17.2214 13.4058 17.2214L11.5885 17.2214C11.4003 17.2214 11.2478 17.0689 11.2478 16.8807L11.2478 15.6313Z"></path></g><!-- 折角部分 --><path d="M28 10L21.5 10C20.6716 10 20 9.32843 20 8.5L20 2L28 10Z" fill="rgb(252,213,164)" fill-rule="evenodd"></path></g>', 1)
728
- ])], 10, y2));
728
+ ]), 10, y2));
729
729
  }
730
730
  }), v2 = ["width", "height", "aria-label"], z = /* @__PURE__ */ c({
731
731
  __name: "Unknown",
@@ -747,7 +747,7 @@ const r2 = {
747
747
  role: "img",
748
748
  "aria-label": e.title,
749
749
  class: h(e.class)
750
- }, [...r[0] || (r[0] = [
750
+ }, r[0] || (r[0] = [
751
751
  t(
752
752
  "mask",
753
753
  {
@@ -765,7 +765,7 @@ const r2 = {
765
765
  ])
766
766
  ],
767
767
  -1
768
- /* CACHED */
768
+ /* HOISTED */
769
769
  ),
770
770
  t(
771
771
  "defs",
@@ -841,10 +841,10 @@ const r2 = {
841
841
  ])
842
842
  ],
843
843
  -1
844
- /* CACHED */
844
+ /* HOISTED */
845
845
  ),
846
846
  f('<g id="未知文件"><g id="图标/未知文件"><rect id="矩形" width="32" height="32" x="0" y="3" rx="8" fill="rgb(238,240,245)" fill-opacity="0"></rect><rect id="矩形" width="31" height="31" x="0.5" y="3.5" rx="8" stroke="rgb(151,151,151)" stroke-opacity="0" stroke-width="1"></rect><g id="路径" mask="url(#mask_15)"><use xlink:href="#use_15"></use><g id="ic_public_questionmark"><path id="path4" d="M15.25 26.22C15.25 25.8224 15.5724 25.5 15.97 25.5L16 25.5C16.4142 25.5 16.75 25.8358 16.75 26.25C16.75 26.6642 16.4142 27 16 27L15.97 27C15.5724 27 15.25 26.6776 15.25 26.28L15.25 26.28L15.25 26.22Z" fill="rgb(255,255,255)" fill-rule="evenodd"></path><path id="path4" d="M14.25 26.22C14.25 25.9872 14.2952 25.7639 14.3856 25.5502C14.4727 25.3443 14.5954 25.1622 14.7538 25.0038C14.9122 24.8454 15.0943 24.7227 15.3002 24.6356C15.5139 24.5452 15.7372 24.5 15.97 24.5L16 24.5C16.2369 24.5 16.4641 24.546 16.6815 24.6379C16.891 24.7265 17.0763 24.8514 17.2374 25.0126C17.3986 25.1737 17.5235 25.359 17.6121 25.5685C17.704 25.7859 17.75 26.0131 17.75 26.25C17.75 26.4869 17.704 26.7141 17.6121 26.9315C17.5235 27.141 17.3986 27.3263 17.2374 27.4874C17.0763 27.6486 16.891 27.7735 16.6815 27.8621C16.4641 27.954 16.2369 28 16 28L15.97 28C15.7372 28 15.5139 27.9548 15.3002 27.8644C15.0943 27.7773 14.9122 27.6546 14.7538 27.4962C14.5954 27.3378 14.4727 27.1557 14.3856 26.9498C14.2952 26.7361 14.25 26.5128 14.25 26.28L16.25 26.28C16.25 26.2027 16.2227 26.1367 16.168 26.082C16.1133 26.0273 16.0473 26 15.97 26L16 26C15.931 26 15.872 26.0244 15.8232 26.0732C15.7744 26.122 15.75 26.181 15.75 26.25C15.75 26.319 15.7744 26.378 15.8232 26.4268C15.872 26.4756 15.931 26.5 16 26.5L15.97 26.5C16.0473 26.5 16.1133 26.4727 16.168 26.418C16.2227 26.3633 16.25 26.2973 16.25 26.22L14.25 26.22ZM16.23 26.2L16.25 26.22C16.25 26.78 15.81 27.22 15.25 27.22C14.69 27.22 14.25 26.78 14.25 26.22L14.27 26.2L16.23 26.2ZMnan nanLnan nanCnan nan nan nan nan nanCnan nan nan nan nan nanLnan nan" fill="rgb(25,25,25)" fill-opacity="0" fill-rule="nonzero"></path><path id="path5" d="M16 23.5C16 23.2897 15.9663 22.5794 16 22.2727C16.028 22.0177 16.086 21.7987 16.2953 21.4564C16.6719 20.8404 17.836 20.1869 18.0114 20.0597C18.9117 19.407 19.5 18.3279 19.5 17.1072C19.5 15.115 17.933 13.5 16 13.5C14.067 13.5 12.5 15.115 12.5 17.1072" fill-rule="evenodd" stroke="rgb(255,255,255)" stroke-linecap="round" stroke-linejoin="round" stroke-width="1.5"></path></g><g filter="url(#filter_0)"><path id="路径" d="M28 11L24 11C22.8954 11 22 10.1046 22 9L22 5L28 11Z" fill="rgb(245,245,246)" fill-rule="evenodd"></path><path id="路径" d="M28 11L24 11C22.8954 11 22 10.1046 22 9L22 5L23 6L23 9C23 9.08264 23.0096 9.1629 23.0288 9.24079C23.0413 9.29117 23.0577 9.34055 23.0782 9.38894C23.1003 9.44134 23.1265 9.49116 23.1568 9.53839C23.1955 9.59887 23.2409 9.65511 23.2929 9.70711C23.3449 9.75911 23.4011 9.80448 23.4616 9.84322C23.5089 9.87346 23.5587 9.89966 23.6111 9.92183C23.6595 9.94229 23.7088 9.95874 23.7592 9.97117C23.8371 9.99039 23.9174 10 24 10L27 10L28 11Z" fill="rgb(223,225,230)" fill-opacity="0" fill-rule="evenodd"></path></g></g></g></g>', 1)
847
- ])], 10, v2));
847
+ ]), 10, v2));
848
848
  }
849
849
  }), b2 = ["width", "height", "aria-hidden"], M2 = { key: 0 }, Z2 = /* @__PURE__ */ c({
850
850
  __name: "Wrong",
@@ -856,18 +856,18 @@ const r2 = {
856
856
  setup(i) {
857
857
  return (e, d) => (o(), a("svg", {
858
858
  xmlns: "http://www.w3.org/2000/svg",
859
- width: i.size,
860
- height: i.size,
859
+ width: e.size,
860
+ height: e.size,
861
861
  viewBox: "0 0 14 14",
862
- class: h(i.class),
862
+ class: h(e.class),
863
863
  role: "img",
864
- "aria-hidden": !i.title,
864
+ "aria-hidden": !e.title,
865
865
  fill: "none"
866
866
  }, [
867
- i.title ? (o(), a(
867
+ e.title ? (o(), a(
868
868
  "title",
869
869
  M2,
870
- k(i.title),
870
+ k(e.title),
871
871
  1
872
872
  /* TEXT */
873
873
  )) : C("v-if", !0),
@@ -881,7 +881,7 @@ const r2 = {
881
881
  },
882
882
  null,
883
883
  -1
884
- /* CACHED */
884
+ /* HOISTED */
885
885
  )),
886
886
  C(" 感叹号的点 "),
887
887
  d[1] || (d[1] = t(
@@ -892,7 +892,7 @@ const r2 = {
892
892
  },
893
893
  null,
894
894
  -1
895
- /* CACHED */
895
+ /* HOISTED */
896
896
  )),
897
897
  C(" 感叹号的竖线 "),
898
898
  d[2] || (d[2] = t(
@@ -907,7 +907,7 @@ const r2 = {
907
907
  },
908
908
  null,
909
909
  -1
910
- /* CACHED */
910
+ /* HOISTED */
911
911
  ))
912
912
  ], 10, b2));
913
913
  }
@@ -1070,178 +1070,170 @@ const r2 = {
1070
1070
  r("download", s, n);
1071
1071
  };
1072
1072
  return (s, n) => (o(), a(
1073
- x,
1074
- null,
1073
+ "div",
1074
+ {
1075
+ class: h(["mc-file-list", `mc-file-list--context-${d.context}`])
1076
+ },
1075
1077
  [
1076
- t(
1077
- "div",
1078
- {
1079
- class: h(["mc-file-list", `mc-file-list--context-${d.context}`])
1080
- },
1081
- [
1082
- t("div", z2, [
1083
- (o(!0), a(
1084
- x,
1085
- null,
1086
- J(s.fileItems, (l) => (o(), a("div", {
1087
- key: l.uid,
1088
- class: h(["mc-file-item", [l.status ? `mc-file-item--${l.status}` : ""]]),
1089
- onMouseenter: (g) => F.value = l.uid,
1090
- onMouseleave: n[0] || (n[0] = (g) => F.value = null)
1091
- }, [
1092
- C(" 文件图标和进度 "),
1093
- t("div", $2, [
1094
- C(" 图片预览 "),
1095
- M(l) === "image" && (l.thumbUrl || l.url) ? (o(), a("img", {
1096
- key: 0,
1097
- src: l.thumbUrl || l.url,
1098
- alt: l.name,
1099
- class: "mc-file-item__image-preview",
1100
- onClick: (g) => j(l)
1101
- }, null, 8, U2)) : (o(), a(
1102
- x,
1103
- { key: 1 },
1104
- [
1105
- C(" 原来的图标 "),
1106
- (o(), U(Q(V(l)), {
1107
- title: l.name,
1108
- size: 36,
1109
- class: "mc-file-item__type-icon"
1110
- }, null, 8, ["title"]))
1111
- ],
1112
- 64
1113
- /* STABLE_FRAGMENT */
1078
+ t("div", z2, [
1079
+ (o(!0), a(
1080
+ x,
1081
+ null,
1082
+ J(s.fileItems, (l) => (o(), a("div", {
1083
+ key: l.uid,
1084
+ class: h(["mc-file-item", [l.status ? `mc-file-item--${l.status}` : ""]]),
1085
+ onMouseenter: (g) => F.value = l.uid,
1086
+ onMouseleave: n[0] || (n[0] = (g) => F.value = null)
1087
+ }, [
1088
+ C(" 文件图标和进度 "),
1089
+ t("div", $2, [
1090
+ C(" 图片预览 "),
1091
+ M(l) === "image" && (l.thumbUrl || l.url) ? (o(), a("img", {
1092
+ key: 0,
1093
+ src: l.thumbUrl || l.url,
1094
+ alt: l.name,
1095
+ class: "mc-file-item__image-preview",
1096
+ onClick: (g) => j(l)
1097
+ }, null, 8, U2)) : (o(), a(
1098
+ x,
1099
+ { key: 1 },
1100
+ [
1101
+ C(" 原来的图标 "),
1102
+ (o(), U(Q(V(l)), {
1103
+ title: l.name,
1104
+ size: 36,
1105
+ class: "mc-file-item__type-icon"
1106
+ }, null, 8, ["title"]))
1107
+ ],
1108
+ 64
1109
+ /* STABLE_FRAGMENT */
1110
+ )),
1111
+ C(" 进度覆盖层 (同时处理上传和下载) "),
1112
+ l.status === "uploading" || l.status === "downloading" || l.status === "uploadError" || l.status === "downloadError" ? (o(), a("div", B2, [
1113
+ n[4] || (n[4] = t(
1114
+ "div",
1115
+ { class: "mc-file-item__progress-mask" },
1116
+ null,
1117
+ -1
1118
+ /* HOISTED */
1119
+ )),
1120
+ C(" 失败状态:显示 Wrong 图标 "),
1121
+ l.status === "uploadError" || l.status === "downloadError" ? (o(), U(Z2, {
1122
+ key: 0,
1123
+ class: "mc-file-item__wrong-icon",
1124
+ size: 12
1125
+ })) : (o(), a("svg", S2, [
1126
+ n[3] || (n[3] = t(
1127
+ "path",
1128
+ {
1129
+ class: "mc-file-item__progress-ring-track",
1130
+ d: "M18 2.0845 a 15.9155 15.9155 0 0 1 0 31.831 a 15.9155 15.9155 0 0 1 0 -31.831"
1131
+ },
1132
+ null,
1133
+ -1
1134
+ /* HOISTED */
1114
1135
  )),
1115
- C(" 进度覆盖层 (同时处理上传和下载) "),
1116
- l.status === "uploading" || l.status === "downloading" || l.status === "uploadError" || l.status === "downloadError" ? (o(), a("div", B2, [
1117
- n[4] || (n[4] = t(
1118
- "div",
1119
- { class: "mc-file-item__progress-mask" },
1120
- null,
1121
- -1
1122
- /* CACHED */
1123
- )),
1124
- C(" 失败状态:显示 Wrong 图标 "),
1125
- l.status === "uploadError" || l.status === "downloadError" ? (o(), U(Z2, {
1126
- key: 0,
1127
- class: "mc-file-item__wrong-icon",
1128
- size: 12
1129
- })) : (o(), a("svg", S2, [
1130
- n[3] || (n[3] = t(
1131
- "path",
1132
- {
1133
- class: "mc-file-item__progress-ring-track",
1134
- d: "M18 2.0845 a 15.9155 15.9155 0 0 1 0 31.831 a 15.9155 15.9155 0 0 1 0 -31.831"
1135
- },
1136
- null,
1137
- -1
1138
- /* CACHED */
1139
- )),
1140
- t("path", {
1141
- class: "mc-file-item__progress-ring-circle",
1142
- "stroke-dasharray": "100, 100",
1143
- "stroke-dashoffset": 100 - (l.percentage || 0),
1144
- d: "M18 2.0845 a 15.9155 15.9155 0 0 1 0 31.831 a 15.9155 15.9155 0 0 1 0 -31.831"
1145
- }, null, 8, j2)
1146
- ]))
1147
- ])) : C("v-if", !0)
1148
- ]),
1149
- C(" 文件信息 "),
1150
- t("div", O2, [
1151
- t("div", {
1152
- class: "mc-file-item__name",
1153
- title: l.name
1154
- }, k(l.name), 9, P2),
1155
- t("div", E2, [
1156
- C(" 1. 失败状态 (统一处理上传和下载失败) "),
1157
- l.status === "uploadError" || l.status === "downloadError" ? (o(), a(
1158
- x,
1159
- { key: 0 },
1160
- [
1161
- t("span", {
1162
- class: "mc-file-item__status mc-file-item__status--error",
1163
- title: typeof l.error == "string" ? l.error : l.status === "uploadError" ? m(L)("FileList.uploadFailed") : m(L)("FileList.downloadFailed")
1164
- }, k(l.status === "uploadError" ? m(L)("FileList.uploadFailed") : m(L)("FileList.downloadFailed")), 9, R2),
1165
- t("span", {
1166
- class: "mc-file-item__meta-action",
1167
- onClick: (g) => l.status === "uploadError" ? T(l) : H(l)
1168
- }, k(m(L)("FileList.retry")), 9, W2)
1169
- ],
1170
- 64
1171
- /* STABLE_FRAGMENT */
1172
- )) : F.value === l.uid && l.status === "success" ? (o(), a(
1173
- x,
1174
- { key: 1 },
1175
- [
1176
- C(" 2. 悬停状态 "),
1177
- t("span", {
1178
- class: "mc-file-item__meta-action",
1179
- onClick: (g) => K(l, g)
1180
- }, k(m(L)("FileList.download")), 9, D2),
1181
- t("span", {
1182
- class: "mc-file-item__meta-action",
1183
- onClick: (g) => j(l)
1184
- }, k(m(L)("FileList.preview")), 9, G2)
1185
- ],
1186
- 64
1187
- /* STABLE_FRAGMENT */
1188
- )) : l.status === "uploading" || l.status === "downloading" ? (o(), a(
1189
- x,
1190
- { key: 2 },
1191
- [
1192
- C(" 3. 上传/下载中状态 "),
1193
- t(
1194
- "span",
1195
- I2,
1196
- k(m(L)(`FileList.${l.status}`)),
1197
- 1
1198
- /* TEXT */
1199
- )
1200
- ],
1201
- 64
1202
- /* STABLE_FRAGMENT */
1203
- )) : (o(), a(
1204
- x,
1205
- { key: 3 },
1206
- [
1207
- C(" 4. 默认状态 "),
1208
- t(
1209
- "span",
1210
- N2,
1211
- k(q(l.name)),
1212
- 1
1213
- /* TEXT */
1214
- ),
1215
- t(
1216
- "span",
1217
- q2,
1218
- k(N(l.size)),
1219
- 1
1220
- /* TEXT */
1221
- )
1222
- ],
1223
- 64
1224
- /* STABLE_FRAGMENT */
1225
- ))
1226
- ])
1227
- ]),
1228
- C(" 删除按钮 "),
1229
- d.context === "input" ? (o(), a("div", V2, [
1230
- t("button", {
1231
- class: "mc-file-item__action-btn mc-file-item__action-btn--remove",
1232
- onClick: (g) => A(l),
1233
- title: m(L)("FileList.remove")
1234
- }, " ✕ ", 8, A2)
1235
- ])) : C("v-if", !0)
1236
- ], 42, F2))),
1237
- 128
1238
- /* KEYED_FRAGMENT */
1239
- ))
1240
- ])
1241
- ],
1242
- 2
1243
- /* CLASS */
1244
- ),
1136
+ t("path", {
1137
+ class: "mc-file-item__progress-ring-circle",
1138
+ "stroke-dasharray": "100, 100",
1139
+ "stroke-dashoffset": 100 - (l.percentage || 0),
1140
+ d: "M18 2.0845 a 15.9155 15.9155 0 0 1 0 31.831 a 15.9155 15.9155 0 0 1 0 -31.831"
1141
+ }, null, 8, j2)
1142
+ ]))
1143
+ ])) : C("v-if", !0)
1144
+ ]),
1145
+ C(" 文件信息 "),
1146
+ t("div", O2, [
1147
+ t("div", {
1148
+ class: "mc-file-item__name",
1149
+ title: l.name
1150
+ }, k(l.name), 9, P2),
1151
+ t("div", E2, [
1152
+ C(" 1. 失败状态 (统一处理上传和下载失败) "),
1153
+ l.status === "uploadError" || l.status === "downloadError" ? (o(), a(
1154
+ x,
1155
+ { key: 0 },
1156
+ [
1157
+ t("span", {
1158
+ class: "mc-file-item__status mc-file-item__status--error",
1159
+ title: typeof l.error == "string" ? l.error : l.status === "uploadError" ? m(L)("FileList.uploadFailed") : m(L)("FileList.downloadFailed")
1160
+ }, k(l.status === "uploadError" ? m(L)("FileList.uploadFailed") : m(L)("FileList.downloadFailed")), 9, R2),
1161
+ t("span", {
1162
+ class: "mc-file-item__meta-action",
1163
+ onClick: (g) => l.status === "uploadError" ? T(l) : H(l)
1164
+ }, k(m(L)("FileList.retry")), 9, W2)
1165
+ ],
1166
+ 64
1167
+ /* STABLE_FRAGMENT */
1168
+ )) : F.value === l.uid && l.status === "success" ? (o(), a(
1169
+ x,
1170
+ { key: 1 },
1171
+ [
1172
+ C(" 2. 悬停状态 "),
1173
+ t("span", {
1174
+ class: "mc-file-item__meta-action",
1175
+ onClick: (g) => K(l, g)
1176
+ }, k(m(L)("FileList.download")), 9, D2),
1177
+ t("span", {
1178
+ class: "mc-file-item__meta-action",
1179
+ onClick: (g) => j(l)
1180
+ }, k(m(L)("FileList.preview")), 9, G2)
1181
+ ],
1182
+ 64
1183
+ /* STABLE_FRAGMENT */
1184
+ )) : l.status === "uploading" || l.status === "downloading" ? (o(), a(
1185
+ x,
1186
+ { key: 2 },
1187
+ [
1188
+ C(" 3. 上传/下载中状态 "),
1189
+ t(
1190
+ "span",
1191
+ I2,
1192
+ k(m(L)(`FileList.${l.status}`)),
1193
+ 1
1194
+ /* TEXT */
1195
+ )
1196
+ ],
1197
+ 64
1198
+ /* STABLE_FRAGMENT */
1199
+ )) : (o(), a(
1200
+ x,
1201
+ { key: 3 },
1202
+ [
1203
+ C(" 4. 默认状态 "),
1204
+ t(
1205
+ "span",
1206
+ N2,
1207
+ k(q(l.name)),
1208
+ 1
1209
+ /* TEXT */
1210
+ ),
1211
+ t(
1212
+ "span",
1213
+ q2,
1214
+ k(N(l.size)),
1215
+ 1
1216
+ /* TEXT */
1217
+ )
1218
+ ],
1219
+ 64
1220
+ /* STABLE_FRAGMENT */
1221
+ ))
1222
+ ])
1223
+ ]),
1224
+ C(" 删除按钮 "),
1225
+ d.context === "input" ? (o(), a("div", V2, [
1226
+ t("button", {
1227
+ class: "mc-file-item__action-btn mc-file-item__action-btn--remove",
1228
+ onClick: (g) => A(l),
1229
+ title: m(L)("FileList.remove")
1230
+ }, "", 8, A2)
1231
+ ])) : C("v-if", !0)
1232
+ ], 42, F2))),
1233
+ 128
1234
+ /* KEYED_FRAGMENT */
1235
+ ))
1236
+ ]),
1245
1237
  (o(), U(X, { to: "body" }, [
1246
1238
  Y(t2, { name: "mc-file-preview-fade" }, {
1247
1239
  default: e2(() => [
@@ -1319,8 +1311,8 @@ const r2 = {
1319
1311
  })
1320
1312
  ]))
1321
1313
  ],
1322
- 64
1323
- /* STABLE_FRAGMENT */
1314
+ 2
1315
+ /* CLASS */
1324
1316
  ));
1325
1317
  }
1326
1318
  });