ant-design-x-vue 1.1.1 → 1.2.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 (518) hide show
  1. package/dist/index.umd.js +19 -198
  2. package/es/_util/cssinjs/Cache.mjs +16 -0
  3. package/es/_util/cssinjs/Keyframes.mjs +11 -0
  4. package/es/_util/cssinjs/StyleContext.mjs +116 -0
  5. package/es/_util/cssinjs/hooks/useCSSVarRegister.mjs +47 -0
  6. package/es/_util/cssinjs/hooks/useCacheToken.mjs +9 -0
  7. package/es/_util/cssinjs/hooks/useCacheToken.tsx2.mjs +76 -0
  8. package/es/_util/cssinjs/hooks/useGlobalCache.mjs +27 -0
  9. package/es/_util/cssinjs/hooks/useHMR.mjs +7 -0
  10. package/es/_util/cssinjs/hooks/useStyleRegister/cacheMapUtil.mjs +51 -0
  11. package/es/_util/cssinjs/hooks/useStyleRegister/index.mjs +17 -0
  12. package/es/_util/cssinjs/hooks/useStyleRegister/index.tsx2.mjs +541 -0
  13. package/es/_util/cssinjs/index.mjs +59 -0
  14. package/es/_util/cssinjs/linters/contentQuotesLinter.mjs +13 -0
  15. package/es/_util/cssinjs/linters/hashedAnimationLinter.mjs +10 -0
  16. package/es/_util/cssinjs/linters/index.mjs +12 -0
  17. package/es/_util/cssinjs/linters/interface.mjs +1 -0
  18. package/es/_util/cssinjs/linters/legacyNotSelectorLinter.mjs +15 -0
  19. package/es/_util/cssinjs/linters/logicalPropertiesLinter.mjs +61 -0
  20. package/es/_util/cssinjs/linters/parentSelectorLinter.mjs +7 -0
  21. package/es/_util/cssinjs/linters/utils.mjs +11 -0
  22. package/es/_util/cssinjs/theme/Theme.mjs +18 -0
  23. package/es/_util/cssinjs/theme/ThemeCache.mjs +72 -0
  24. package/es/_util/cssinjs/theme/createTheme.mjs +10 -0
  25. package/es/_util/cssinjs/theme/index.mjs +8 -0
  26. package/es/_util/cssinjs/theme/interface.mjs +1 -0
  27. package/es/_util/cssinjs/transformers/interface.mjs +1 -0
  28. package/es/_util/cssinjs/transformers/legacyLogicalProperties.mjs +92 -0
  29. package/es/_util/cssinjs/transformers/px2rem.mjs +31 -0
  30. package/es/_util/cssinjs/util.mjs +102 -0
  31. package/es/_util/cssinjs-utils/_util/hooks/useUniqueMemo.mjs +55 -0
  32. package/es/_util/cssinjs-utils/hooks/useCSP.mjs +4 -0
  33. package/es/_util/cssinjs-utils/hooks/usePrefix.mjs +1 -0
  34. package/es/_util/cssinjs-utils/hooks/useToken.mjs +1 -0
  35. package/es/_util/cssinjs-utils/index.mjs +10 -0
  36. package/es/_util/cssinjs-utils/interface/components.mjs +1 -0
  37. package/es/_util/cssinjs-utils/interface/index.mjs +1 -0
  38. package/es/_util/cssinjs-utils/util/calc/CSSCalculator.mjs +35 -0
  39. package/es/_util/cssinjs-utils/util/calc/NumCalculator.mjs +24 -0
  40. package/es/_util/cssinjs-utils/util/calc/calculator.mjs +5 -0
  41. package/es/_util/cssinjs-utils/util/calc/index.mjs +9 -0
  42. package/es/_util/cssinjs-utils/util/genStyleUtils.mjs +188 -0
  43. package/es/_util/cssinjs-utils/util/getCompVarPrefix.mjs +7 -0
  44. package/es/_util/cssinjs-utils/util/getComponentToken.mjs +18 -0
  45. package/es/_util/cssinjs-utils/util/getDefaultComponentToken.mjs +9 -0
  46. package/es/_util/cssinjs-utils/util/maxmin.mjs +15 -0
  47. package/es/_util/cssinjs-utils/util/statistic.mjs +45 -0
  48. package/es/_util/getScrollBarSize.mjs +33 -0
  49. package/es/_util/getValue.mjs +11 -0
  50. package/es/_util/hooks/use-event-callback.mjs +10 -0
  51. package/es/_util/hooks/use-state.mjs +11 -0
  52. package/es/_util/hooks/use-x-component-config.mjs +17 -0
  53. package/es/_util/hooks/useMergedState.mjs +21 -0
  54. package/es/_util/motion.mjs +23 -0
  55. package/es/_util/pick-attrs.mjs +43 -0
  56. package/es/_util/setStyle.mjs +11 -0
  57. package/es/_util/supportsPassive.mjs +14 -0
  58. package/es/_util/transition.mjs +75 -0
  59. package/es/_util/type.mjs +48 -0
  60. package/es/_util/warning.mjs +45 -0
  61. package/es/attachments/Attachments.mjs +4 -0
  62. package/es/attachments/Attachments2.mjs +255 -0
  63. package/es/attachments/DropArea.mjs +58 -0
  64. package/es/attachments/FileList/AudioIcon.mjs +5 -0
  65. package/es/attachments/FileList/AudioIcon2.mjs +35 -0
  66. package/es/attachments/FileList/FileList.mjs +4 -0
  67. package/es/attachments/FileList/FileList2.mjs +1574 -0
  68. package/es/attachments/FileList/FileListCard.mjs +168 -0
  69. package/es/attachments/FileList/Progress.mjs +49 -0
  70. package/es/attachments/FileList/VideoIcon.mjs +30 -0
  71. package/es/attachments/FileList/index.mjs +6 -0
  72. package/es/attachments/PlaceholderUploader.mjs +79 -0
  73. package/es/attachments/SilentUploader.mjs +27 -0
  74. package/es/attachments/context.mjs +32 -0
  75. package/es/attachments/index.mjs +12 -0
  76. package/es/attachments/interface.mjs +1 -0
  77. package/es/attachments/style/fileCard.mjs +157 -0
  78. package/es/attachments/style/index.mjs +584 -0
  79. package/es/attachments/util.mjs +31 -0
  80. package/es/bubble/Bubble.mjs +126 -0
  81. package/es/bubble/BubbleList.mjs +136 -0
  82. package/es/bubble/context.mjs +31 -0
  83. package/es/bubble/hooks/useDisplayData.mjs +36 -0
  84. package/es/bubble/hooks/useListData.mjs +18 -0
  85. package/es/bubble/hooks/useTypedEffect.mjs +24 -0
  86. package/es/bubble/hooks/useTypingConfig.mjs +24 -0
  87. package/es/bubble/index.mjs +10 -0
  88. package/es/bubble/interface.mjs +1 -0
  89. package/es/bubble/loading.mjs +25 -0
  90. package/es/bubble/style/content.mjs +59 -0
  91. package/es/bubble/style/index.mjs +148 -0
  92. package/es/bubble/style/list.mjs +14 -0
  93. package/es/conversations/Conversations.mjs +105 -0
  94. package/es/conversations/ConversationsItem.mjs +89 -0
  95. package/es/conversations/GroupTitle.mjs +22 -0
  96. package/es/conversations/context.mjs +31 -0
  97. package/es/conversations/hooks/useGroupable.mjs +48 -0
  98. package/es/conversations/index.mjs +5 -0
  99. package/es/conversations/interface.mjs +1 -0
  100. package/es/conversations/style/index.mjs +103 -0
  101. package/es/index.mjs +38 -0
  102. package/es/prompts/Prompts.mjs +116 -0
  103. package/es/prompts/index.mjs +5 -0
  104. package/es/prompts/interface.mjs +1 -0
  105. package/es/prompts/style/index.mjs +143 -0
  106. package/es/sender/Sender.mjs +251 -0
  107. package/es/sender/SenderHeader.mjs +82 -0
  108. package/es/sender/StopLoading.mjs +52 -0
  109. package/es/sender/components/ActionButton/context.mjs +31 -0
  110. package/es/sender/components/ActionButton/index.mjs +65 -0
  111. package/es/sender/components/ClearButton.mjs +41 -0
  112. package/es/sender/components/LoadingButton.mjs +58 -0
  113. package/es/sender/components/SendButton.mjs +45 -0
  114. package/es/sender/components/SpeechButton/RecordingIcon.mjs +49 -0
  115. package/es/sender/components/SpeechButton/index.mjs +59 -0
  116. package/es/sender/context.mjs +31 -0
  117. package/es/sender/index.mjs +9 -0
  118. package/es/sender/interface.mjs +1 -0
  119. package/es/sender/style/header.mjs +49 -0
  120. package/es/sender/style/index.mjs +147 -0
  121. package/es/sender/useSpeech.mjs +55 -0
  122. package/es/suggestion/Suggestion.mjs +93 -0
  123. package/es/suggestion/index.mjs +5 -0
  124. package/es/suggestion/interface.mjs +1 -0
  125. package/es/suggestion/style/index.mjs +41 -0
  126. package/es/suggestion/useActive.mjs +56 -0
  127. package/es/theme/components.mjs +1 -0
  128. package/es/theme/cssinjs-utils.mjs +1 -0
  129. package/es/theme/genStyleUtils.mjs +32 -0
  130. package/es/theme/index.mjs +4 -0
  131. package/es/theme/patch-antd.mjs +33 -0
  132. package/es/theme/useToken.mjs +351 -0
  133. package/es/thought-chain/ThoughtChain.mjs +107 -0
  134. package/es/thought-chain/context.mjs +31 -0
  135. package/es/thought-chain/hooks/useCollapsible.mjs +36 -0
  136. package/es/thought-chain/index.mjs +5 -0
  137. package/es/thought-chain/interface.mjs +4 -0
  138. package/es/thought-chain/item.mjs +96 -0
  139. package/es/thought-chain/style/index.mjs +215 -0
  140. package/es/transition-collapse/TransitionCollapse.mjs +49 -0
  141. package/es/transition-collapse/index.mjs +10 -0
  142. package/es/transition-collapse/style/index.mjs +22 -0
  143. package/es/type-utility.mjs +1 -0
  144. package/es/use-x-agent/index.mjs +7 -0
  145. package/es/use-x-agent/use-x-agent.mjs +49 -0
  146. package/es/use-x-chat/index.mjs +5 -0
  147. package/es/use-x-chat/use-x-chat.mjs +97 -0
  148. package/es/use-x-chat/useSyncState.mjs +12 -0
  149. package/es/vc-util/Dom/addEventListener.mjs +15 -0
  150. package/es/vc-util/Dom/canUseDom.mjs +6 -0
  151. package/es/vc-util/Dom/class.mjs +19 -0
  152. package/es/vc-util/Dom/contains.mjs +6 -0
  153. package/es/vc-util/Dom/css.mjs +86 -0
  154. package/es/vc-util/Dom/dynamicCSS.mjs +70 -0
  155. package/es/vc-util/Dom/isVisible.mjs +20 -0
  156. package/es/vc-util/Dom/scrollLocker.mjs +66 -0
  157. package/es/vc-util/devWarning.mjs +9 -0
  158. package/es/vc-util/get.mjs +12 -0
  159. package/es/vc-util/isEqual.mjs +32 -0
  160. package/es/vc-util/isMobile.mjs +13 -0
  161. package/es/vc-util/set.mjs +14 -0
  162. package/es/vc-util/warning.mjs +26 -0
  163. package/es/version/index.mjs +4 -0
  164. package/es/version/token-meta.mjs +7 -0
  165. package/es/version/token.mjs +21 -0
  166. package/es/version/version.mjs +4 -0
  167. package/es/welcome/Welcome.mjs +91 -0
  168. package/es/welcome/index.mjs +5 -0
  169. package/es/welcome/interface.mjs +1 -0
  170. package/es/welcome/style/index.mjs +69 -0
  171. package/es/x-provider/context.mjs +31 -0
  172. package/es/x-provider/hooks/use-x-provider-context.mjs +21 -0
  173. package/es/x-provider/index.mjs +8 -0
  174. package/es/x-provider/index2.mjs +81 -0
  175. package/es/x-request/index.mjs +7 -0
  176. package/es/x-request/x-fetch.mjs +22 -0
  177. package/es/x-request/x-request.mjs +83 -0
  178. package/es/x-stream/index.mjs +5 -0
  179. package/es/x-stream/x-stream.mjs +64 -0
  180. package/lib/_util/cssinjs/Cache.js +1 -0
  181. package/lib/_util/cssinjs/Keyframes.js +1 -0
  182. package/lib/_util/cssinjs/StyleContext.js +1 -0
  183. package/lib/_util/cssinjs/hooks/useCSSVarRegister.js +1 -0
  184. package/lib/_util/cssinjs/hooks/useCacheToken.js +1 -0
  185. package/lib/_util/cssinjs/hooks/useCacheToken.tsx2.js +1 -0
  186. package/lib/_util/cssinjs/hooks/useGlobalCache.js +1 -0
  187. package/lib/_util/cssinjs/hooks/useHMR.js +1 -0
  188. package/lib/_util/cssinjs/hooks/useStyleRegister/cacheMapUtil.js +1 -0
  189. package/lib/_util/cssinjs/hooks/useStyleRegister/index.js +1 -0
  190. package/lib/_util/cssinjs/hooks/useStyleRegister/index.tsx2.js +2 -0
  191. package/lib/_util/cssinjs/index.js +1 -0
  192. package/lib/_util/cssinjs/linters/contentQuotesLinter.js +1 -0
  193. package/lib/_util/cssinjs/linters/hashedAnimationLinter.js +1 -0
  194. package/lib/_util/cssinjs/linters/index.js +1 -0
  195. package/lib/_util/cssinjs/linters/interface.js +1 -0
  196. package/lib/_util/cssinjs/linters/legacyNotSelectorLinter.js +1 -0
  197. package/lib/_util/cssinjs/linters/logicalPropertiesLinter.js +1 -0
  198. package/lib/_util/cssinjs/linters/parentSelectorLinter.js +1 -0
  199. package/lib/_util/cssinjs/linters/utils.js +1 -0
  200. package/lib/_util/cssinjs/theme/Theme.js +1 -0
  201. package/lib/_util/cssinjs/theme/ThemeCache.js +1 -0
  202. package/lib/_util/cssinjs/theme/createTheme.js +1 -0
  203. package/lib/_util/cssinjs/theme/index.js +1 -0
  204. package/lib/_util/cssinjs/theme/interface.js +1 -0
  205. package/lib/_util/cssinjs/transformers/interface.js +1 -0
  206. package/lib/_util/cssinjs/transformers/legacyLogicalProperties.js +1 -0
  207. package/lib/_util/cssinjs/transformers/px2rem.js +1 -0
  208. package/lib/_util/cssinjs/util.js +1 -0
  209. package/lib/_util/cssinjs-utils/_util/hooks/useUniqueMemo.js +1 -0
  210. package/lib/_util/cssinjs-utils/hooks/useCSP.js +1 -0
  211. package/lib/_util/cssinjs-utils/hooks/usePrefix.js +1 -0
  212. package/lib/_util/cssinjs-utils/hooks/useToken.js +1 -0
  213. package/lib/_util/cssinjs-utils/index.js +1 -0
  214. package/lib/_util/cssinjs-utils/interface/components.js +1 -0
  215. package/lib/_util/cssinjs-utils/interface/index.js +1 -0
  216. package/lib/_util/cssinjs-utils/util/calc/CSSCalculator.js +1 -0
  217. package/lib/_util/cssinjs-utils/util/calc/NumCalculator.js +1 -0
  218. package/lib/_util/cssinjs-utils/util/calc/calculator.js +1 -0
  219. package/lib/_util/cssinjs-utils/util/calc/index.js +1 -0
  220. package/lib/_util/cssinjs-utils/util/genStyleUtils.js +1 -0
  221. package/lib/_util/cssinjs-utils/util/getCompVarPrefix.js +1 -0
  222. package/lib/_util/cssinjs-utils/util/getComponentToken.js +1 -0
  223. package/lib/_util/cssinjs-utils/util/getDefaultComponentToken.js +1 -0
  224. package/lib/_util/cssinjs-utils/util/maxmin.js +1 -0
  225. package/lib/_util/cssinjs-utils/util/statistic.js +1 -0
  226. package/lib/_util/getScrollBarSize.js +1 -0
  227. package/lib/_util/getValue.js +1 -0
  228. package/lib/_util/hooks/use-event-callback.js +1 -0
  229. package/lib/_util/hooks/use-state.js +1 -0
  230. package/lib/_util/hooks/use-x-component-config.js +1 -0
  231. package/lib/_util/hooks/useMergedState.js +1 -0
  232. package/lib/_util/motion.js +1 -0
  233. package/lib/_util/pick-attrs.js +18 -0
  234. package/lib/_util/setStyle.js +1 -0
  235. package/lib/_util/supportsPassive.js +1 -0
  236. package/lib/_util/transition.js +1 -0
  237. package/lib/_util/type.js +1 -0
  238. package/lib/_util/warning.js +1 -0
  239. package/lib/attachments/Attachments.js +1 -0
  240. package/lib/attachments/Attachments2.js +5 -0
  241. package/lib/attachments/DropArea.js +1 -0
  242. package/lib/attachments/FileList/AudioIcon.js +1 -0
  243. package/lib/attachments/FileList/AudioIcon2.js +1 -0
  244. package/lib/attachments/FileList/FileList.js +1 -0
  245. package/lib/attachments/FileList/FileList2.js +57 -0
  246. package/lib/attachments/FileList/FileListCard.js +1 -0
  247. package/lib/attachments/FileList/Progress.js +1 -0
  248. package/lib/attachments/FileList/VideoIcon.js +1 -0
  249. package/lib/attachments/FileList/index.js +1 -0
  250. package/lib/attachments/PlaceholderUploader.js +1 -0
  251. package/lib/attachments/SilentUploader.js +1 -0
  252. package/lib/attachments/context.js +1 -0
  253. package/lib/attachments/index.js +1 -0
  254. package/lib/attachments/interface.js +1 -0
  255. package/lib/attachments/style/fileCard.js +1 -0
  256. package/lib/attachments/style/index.js +1 -0
  257. package/lib/attachments/util.js +1 -0
  258. package/lib/bubble/Bubble.js +1 -0
  259. package/lib/bubble/BubbleList.js +1 -0
  260. package/lib/bubble/context.js +1 -0
  261. package/lib/bubble/hooks/useDisplayData.js +1 -0
  262. package/lib/bubble/hooks/useListData.js +1 -0
  263. package/lib/bubble/hooks/useTypedEffect.js +1 -0
  264. package/lib/bubble/hooks/useTypingConfig.js +1 -0
  265. package/lib/bubble/index.js +1 -0
  266. package/lib/bubble/interface.js +1 -0
  267. package/lib/bubble/loading.js +1 -0
  268. package/lib/bubble/style/content.js +1 -0
  269. package/lib/bubble/style/index.js +1 -0
  270. package/lib/bubble/style/list.js +1 -0
  271. package/lib/conversations/Conversations.js +1 -0
  272. package/lib/conversations/ConversationsItem.js +1 -0
  273. package/lib/conversations/GroupTitle.js +1 -0
  274. package/lib/conversations/context.js +1 -0
  275. package/lib/conversations/hooks/useGroupable.js +1 -0
  276. package/lib/conversations/index.js +1 -0
  277. package/lib/conversations/interface.js +1 -0
  278. package/lib/conversations/style/index.js +1 -0
  279. package/lib/index.js +1 -0
  280. package/lib/prompts/Prompts.js +1 -0
  281. package/lib/prompts/index.js +1 -0
  282. package/lib/prompts/interface.js +1 -0
  283. package/lib/prompts/style/index.js +1 -0
  284. package/lib/sender/Sender.js +1 -0
  285. package/lib/sender/SenderHeader.js +1 -0
  286. package/lib/sender/StopLoading.js +1 -0
  287. package/lib/sender/components/ActionButton/context.js +1 -0
  288. package/lib/sender/components/ActionButton/index.js +1 -0
  289. package/lib/sender/components/ClearButton.js +1 -0
  290. package/lib/sender/components/LoadingButton.js +1 -0
  291. package/lib/sender/components/SendButton.js +1 -0
  292. package/lib/sender/components/SpeechButton/RecordingIcon.js +1 -0
  293. package/lib/sender/components/SpeechButton/index.js +1 -0
  294. package/lib/sender/context.js +1 -0
  295. package/lib/sender/index.js +1 -0
  296. package/lib/sender/interface.js +1 -0
  297. package/lib/sender/style/header.js +1 -0
  298. package/lib/sender/style/index.js +1 -0
  299. package/lib/sender/useSpeech.js +1 -0
  300. package/lib/suggestion/Suggestion.js +1 -0
  301. package/lib/suggestion/index.js +1 -0
  302. package/lib/suggestion/interface.js +1 -0
  303. package/lib/suggestion/style/index.js +1 -0
  304. package/lib/suggestion/useActive.js +1 -0
  305. package/lib/theme/components.js +1 -0
  306. package/lib/theme/cssinjs-utils.js +1 -0
  307. package/lib/theme/genStyleUtils.js +1 -0
  308. package/lib/theme/index.js +1 -0
  309. package/lib/theme/patch-antd.js +1 -0
  310. package/lib/theme/useToken.js +35 -0
  311. package/lib/thought-chain/ThoughtChain.js +1 -0
  312. package/lib/thought-chain/context.js +1 -0
  313. package/lib/thought-chain/hooks/useCollapsible.js +1 -0
  314. package/lib/thought-chain/index.js +1 -0
  315. package/lib/thought-chain/interface.js +1 -0
  316. package/lib/thought-chain/item.js +1 -0
  317. package/lib/thought-chain/style/index.js +1 -0
  318. package/lib/transition-collapse/TransitionCollapse.js +1 -0
  319. package/lib/transition-collapse/index.js +1 -0
  320. package/lib/transition-collapse/style/index.js +1 -0
  321. package/lib/type-utility.js +1 -0
  322. package/lib/use-x-agent/index.js +1 -0
  323. package/lib/use-x-agent/use-x-agent.js +1 -0
  324. package/lib/use-x-chat/index.js +1 -0
  325. package/lib/use-x-chat/use-x-chat.js +1 -0
  326. package/lib/use-x-chat/useSyncState.js +1 -0
  327. package/lib/vc-util/Dom/addEventListener.js +1 -0
  328. package/lib/vc-util/Dom/canUseDom.js +1 -0
  329. package/lib/vc-util/Dom/class.js +1 -0
  330. package/lib/vc-util/Dom/contains.js +1 -0
  331. package/lib/vc-util/Dom/css.js +1 -0
  332. package/lib/vc-util/Dom/dynamicCSS.js +1 -0
  333. package/lib/vc-util/Dom/isVisible.js +1 -0
  334. package/lib/vc-util/Dom/scrollLocker.js +1 -0
  335. package/lib/vc-util/devWarning.js +1 -0
  336. package/lib/vc-util/get.js +1 -0
  337. package/lib/vc-util/isEqual.js +1 -0
  338. package/lib/vc-util/isMobile.js +1 -0
  339. package/lib/vc-util/set.js +1 -0
  340. package/lib/vc-util/warning.js +1 -0
  341. package/lib/version/index.js +1 -0
  342. package/lib/version/token-meta.js +1 -0
  343. package/lib/version/token.js +1 -0
  344. package/lib/version/version.js +1 -0
  345. package/lib/welcome/Welcome.js +1 -0
  346. package/lib/welcome/index.js +1 -0
  347. package/lib/welcome/interface.js +1 -0
  348. package/lib/welcome/style/index.js +1 -0
  349. package/lib/x-provider/context.js +1 -0
  350. package/lib/x-provider/hooks/use-x-provider-context.js +1 -0
  351. package/lib/x-provider/index.js +1 -0
  352. package/lib/x-provider/index2.js +1 -0
  353. package/lib/x-request/index.js +1 -0
  354. package/lib/x-request/x-fetch.js +1 -0
  355. package/lib/x-request/x-request.js +1 -0
  356. package/lib/x-stream/index.js +1 -0
  357. package/lib/x-stream/x-stream.js +4 -0
  358. package/package.json +21 -13
  359. package/typings/bubble/Bubble.vue.d.ts +37 -0
  360. package/typings/bubble/index.d.ts +258 -0
  361. package/{dist/typings → typings}/bubble/interface.d.ts +6 -4
  362. package/{dist/typings → typings}/conversations/interface.d.ts +2 -1
  363. package/{dist/typings → typings}/sender/interface.d.ts +1 -1
  364. package/{dist/typings → typings}/x-provider/context.d.ts +9 -9
  365. package/dist/index.mjs +0 -34154
  366. package/dist/typings/bubble/Bubble.vue.d.ts +0 -35
  367. package/dist/typings/bubble/index.d.ts +0 -51
  368. /package/{dist/resolver → resolver-dist}/index.d.ts +0 -0
  369. /package/{dist/resolver → resolver-dist}/index.js +0 -0
  370. /package/{dist/typings → typings}/_util/cssinjs/Cache.d.ts +0 -0
  371. /package/{dist/typings → typings}/_util/cssinjs/Keyframes.d.ts +0 -0
  372. /package/{dist/typings → typings}/_util/cssinjs/StyleContext.d.ts +0 -0
  373. /package/{dist/typings → typings}/_util/cssinjs/hooks/useCSSVarRegister.d.ts +0 -0
  374. /package/{dist/typings → typings}/_util/cssinjs/hooks/useCacheToken.d.ts +0 -0
  375. /package/{dist/typings → typings}/_util/cssinjs/hooks/useGlobalCache.d.ts +0 -0
  376. /package/{dist/typings → typings}/_util/cssinjs/hooks/useHMR.d.ts +0 -0
  377. /package/{dist/typings → typings}/_util/cssinjs/hooks/useStyleRegister/cacheMapUtil.d.ts +0 -0
  378. /package/{dist/typings → typings}/_util/cssinjs/hooks/useStyleRegister/index.d.ts +0 -0
  379. /package/{dist/typings → typings}/_util/cssinjs/index.d.ts +0 -0
  380. /package/{dist/typings → typings}/_util/cssinjs/linters/contentQuotesLinter.d.ts +0 -0
  381. /package/{dist/typings → typings}/_util/cssinjs/linters/hashedAnimationLinter.d.ts +0 -0
  382. /package/{dist/typings → typings}/_util/cssinjs/linters/index.d.ts +0 -0
  383. /package/{dist/typings → typings}/_util/cssinjs/linters/interface.d.ts +0 -0
  384. /package/{dist/typings → typings}/_util/cssinjs/linters/legacyNotSelectorLinter.d.ts +0 -0
  385. /package/{dist/typings → typings}/_util/cssinjs/linters/logicalPropertiesLinter.d.ts +0 -0
  386. /package/{dist/typings → typings}/_util/cssinjs/linters/parentSelectorLinter.d.ts +0 -0
  387. /package/{dist/typings → typings}/_util/cssinjs/linters/utils.d.ts +0 -0
  388. /package/{dist/typings → typings}/_util/cssinjs/theme/Theme.d.ts +0 -0
  389. /package/{dist/typings → typings}/_util/cssinjs/theme/ThemeCache.d.ts +0 -0
  390. /package/{dist/typings → typings}/_util/cssinjs/theme/createTheme.d.ts +0 -0
  391. /package/{dist/typings → typings}/_util/cssinjs/theme/index.d.ts +0 -0
  392. /package/{dist/typings → typings}/_util/cssinjs/theme/interface.d.ts +0 -0
  393. /package/{dist/typings → typings}/_util/cssinjs/transformers/interface.d.ts +0 -0
  394. /package/{dist/typings → typings}/_util/cssinjs/transformers/legacyLogicalProperties.d.ts +0 -0
  395. /package/{dist/typings → typings}/_util/cssinjs/transformers/px2rem.d.ts +0 -0
  396. /package/{dist/typings → typings}/_util/cssinjs/util.d.ts +0 -0
  397. /package/{dist/typings → typings}/_util/cssinjs-utils/_util/hooks/useUniqueMemo.d.ts +0 -0
  398. /package/{dist/typings → typings}/_util/cssinjs-utils/hooks/useCSP.d.ts +0 -0
  399. /package/{dist/typings → typings}/_util/cssinjs-utils/hooks/usePrefix.d.ts +0 -0
  400. /package/{dist/typings → typings}/_util/cssinjs-utils/hooks/useToken.d.ts +0 -0
  401. /package/{dist/typings → typings}/_util/cssinjs-utils/index.d.ts +0 -0
  402. /package/{dist/typings → typings}/_util/cssinjs-utils/interface/components.d.ts +0 -0
  403. /package/{dist/typings → typings}/_util/cssinjs-utils/interface/index.d.ts +0 -0
  404. /package/{dist/typings → typings}/_util/cssinjs-utils/util/calc/CSSCalculator.d.ts +0 -0
  405. /package/{dist/typings → typings}/_util/cssinjs-utils/util/calc/NumCalculator.d.ts +0 -0
  406. /package/{dist/typings → typings}/_util/cssinjs-utils/util/calc/calculator.d.ts +0 -0
  407. /package/{dist/typings → typings}/_util/cssinjs-utils/util/calc/index.d.ts +0 -0
  408. /package/{dist/typings → typings}/_util/cssinjs-utils/util/genStyleUtils.d.ts +0 -0
  409. /package/{dist/typings → typings}/_util/cssinjs-utils/util/getCompVarPrefix.d.ts +0 -0
  410. /package/{dist/typings → typings}/_util/cssinjs-utils/util/getComponentToken.d.ts +0 -0
  411. /package/{dist/typings → typings}/_util/cssinjs-utils/util/getDefaultComponentToken.d.ts +0 -0
  412. /package/{dist/typings → typings}/_util/cssinjs-utils/util/maxmin.d.ts +0 -0
  413. /package/{dist/typings → typings}/_util/cssinjs-utils/util/statistic.d.ts +0 -0
  414. /package/{dist/typings → typings}/_util/getValue.d.ts +0 -0
  415. /package/{dist/typings → typings}/_util/hooks/use-event-callback.d.ts +0 -0
  416. /package/{dist/typings → typings}/_util/hooks/use-state.d.ts +0 -0
  417. /package/{dist/typings → typings}/_util/hooks/use-x-component-config.d.ts +0 -0
  418. /package/{dist/typings → typings}/_util/hooks/useMergedState.d.ts +0 -0
  419. /package/{dist/typings → typings}/_util/pick-attrs.d.ts +0 -0
  420. /package/{dist/typings → typings}/_util/type.d.ts +0 -0
  421. /package/{dist/typings → typings}/_util/warning.d.ts +0 -0
  422. /package/{dist/typings → typings}/attachments/Attachments.vue.d.ts +0 -0
  423. /package/{dist/typings → typings}/attachments/DropArea.vue.d.ts +0 -0
  424. /package/{dist/typings → typings}/attachments/FileList/AudioIcon.vue.d.ts +0 -0
  425. /package/{dist/typings → typings}/attachments/FileList/FileList.vue.d.ts +0 -0
  426. /package/{dist/typings → typings}/attachments/FileList/FileListCard.vue.d.ts +0 -0
  427. /package/{dist/typings → typings}/attachments/FileList/VideoIcon.vue.d.ts +0 -0
  428. /package/{dist/typings → typings}/attachments/FileList/index.d.ts +0 -0
  429. /package/{dist/typings → typings}/attachments/PlaceholderUploader.vue.d.ts +0 -0
  430. /package/{dist/typings → typings}/attachments/SilentUploader.vue.d.ts +0 -0
  431. /package/{dist/typings → typings}/attachments/context.d.ts +0 -0
  432. /package/{dist/typings → typings}/attachments/index.d.ts +0 -0
  433. /package/{dist/typings → typings}/attachments/interface.d.ts +0 -0
  434. /package/{dist/typings → typings}/attachments/style/fileCard.d.ts +0 -0
  435. /package/{dist/typings → typings}/attachments/style/index.d.ts +0 -0
  436. /package/{dist/typings → typings}/attachments/util.d.ts +0 -0
  437. /package/{dist/typings → typings}/bubble/BubbleList.vue.d.ts +0 -0
  438. /package/{dist/typings → typings}/bubble/context.d.ts +0 -0
  439. /package/{dist/typings → typings}/bubble/hooks/useDisplayData.d.ts +0 -0
  440. /package/{dist/typings → typings}/bubble/hooks/useListData.d.ts +0 -0
  441. /package/{dist/typings → typings}/bubble/hooks/useTypedEffect.d.ts +0 -0
  442. /package/{dist/typings → typings}/bubble/hooks/useTypingConfig.d.ts +0 -0
  443. /package/{dist/typings → typings}/bubble/loading.vue.d.ts +0 -0
  444. /package/{dist/typings → typings}/bubble/style/content.d.ts +0 -0
  445. /package/{dist/typings → typings}/bubble/style/index.d.ts +0 -0
  446. /package/{dist/typings → typings}/bubble/style/list.d.ts +0 -0
  447. /package/{dist/typings → typings}/conversations/Conversations.vue.d.ts +0 -0
  448. /package/{dist/typings → typings}/conversations/ConversationsItem.vue.d.ts +0 -0
  449. /package/{dist/typings → typings}/conversations/GroupTitle.vue.d.ts +0 -0
  450. /package/{dist/typings → typings}/conversations/context.d.ts +0 -0
  451. /package/{dist/typings → typings}/conversations/hooks/useGroupable.d.ts +0 -0
  452. /package/{dist/typings → typings}/conversations/index.d.ts +0 -0
  453. /package/{dist/typings → typings}/conversations/style/index.d.ts +0 -0
  454. /package/{dist/typings → typings}/index.d.ts +0 -0
  455. /package/{dist/typings → typings}/prompts/Prompts.vue.d.ts +0 -0
  456. /package/{dist/typings → typings}/prompts/index.d.ts +0 -0
  457. /package/{dist/typings → typings}/prompts/interface.d.ts +0 -0
  458. /package/{dist/typings → typings}/prompts/style/index.d.ts +0 -0
  459. /package/{dist/typings → typings}/sender/Sender.vue.d.ts +0 -0
  460. /package/{dist/typings → typings}/sender/SenderHeader.vue.d.ts +0 -0
  461. /package/{dist/typings → typings}/sender/StopLoading.vue.d.ts +0 -0
  462. /package/{dist/typings → typings}/sender/components/ActionButton/context.d.ts +0 -0
  463. /package/{dist/typings → typings}/sender/components/ActionButton/index.vue.d.ts +0 -0
  464. /package/{dist/typings → typings}/sender/components/ClearButton.vue.d.ts +0 -0
  465. /package/{dist/typings → typings}/sender/components/LoadingButton.vue.d.ts +0 -0
  466. /package/{dist/typings → typings}/sender/components/SendButton.vue.d.ts +0 -0
  467. /package/{dist/typings → typings}/sender/components/SpeechButton/RecordingIcon.vue.d.ts +0 -0
  468. /package/{dist/typings → typings}/sender/components/SpeechButton/index.vue.d.ts +0 -0
  469. /package/{dist/typings → typings}/sender/context.d.ts +0 -0
  470. /package/{dist/typings → typings}/sender/index.d.ts +0 -0
  471. /package/{dist/typings → typings}/sender/style/header.d.ts +0 -0
  472. /package/{dist/typings → typings}/sender/style/index.d.ts +0 -0
  473. /package/{dist/typings → typings}/sender/useSpeech.d.ts +0 -0
  474. /package/{dist/typings → typings}/suggestion/Suggestion.vue.d.ts +0 -0
  475. /package/{dist/typings → typings}/suggestion/index.d.ts +0 -0
  476. /package/{dist/typings → typings}/suggestion/interface.d.ts +0 -0
  477. /package/{dist/typings → typings}/suggestion/style/index.d.ts +0 -0
  478. /package/{dist/typings → typings}/suggestion/useActive.d.ts +0 -0
  479. /package/{dist/typings → typings}/theme/components.d.ts +0 -0
  480. /package/{dist/typings → typings}/theme/cssinjs-utils.d.ts +0 -0
  481. /package/{dist/typings → typings}/theme/genStyleUtils.d.ts +0 -0
  482. /package/{dist/typings → typings}/theme/index.d.ts +0 -0
  483. /package/{dist/typings → typings}/theme/patch-antd.d.ts +0 -0
  484. /package/{dist/typings → typings}/theme/useToken.d.ts +0 -0
  485. /package/{dist/typings → typings}/thought-chain/ThoughtChain.vue.d.ts +0 -0
  486. /package/{dist/typings → typings}/thought-chain/context.d.ts +0 -0
  487. /package/{dist/typings → typings}/thought-chain/hooks/useCollapsible.d.ts +0 -0
  488. /package/{dist/typings → typings}/thought-chain/index.d.ts +0 -0
  489. /package/{dist/typings → typings}/thought-chain/interface.d.ts +0 -0
  490. /package/{dist/typings → typings}/thought-chain/item.vue.d.ts +0 -0
  491. /package/{dist/typings → typings}/thought-chain/style/index.d.ts +0 -0
  492. /package/{dist/typings → typings}/transition-collapse/TransitionCollapse.vue.d.ts +0 -0
  493. /package/{dist/typings → typings}/transition-collapse/index.d.ts +0 -0
  494. /package/{dist/typings → typings}/transition-collapse/style/index.d.ts +0 -0
  495. /package/{dist/typings → typings}/type-utility.d.ts +0 -0
  496. /package/{dist/typings → typings}/use-x-agent/index.d.ts +0 -0
  497. /package/{dist/typings → typings}/use-x-agent/use-x-agent.d.ts +0 -0
  498. /package/{dist/typings → typings}/use-x-chat/index.d.ts +0 -0
  499. /package/{dist/typings → typings}/use-x-chat/use-x-chat.d.ts +0 -0
  500. /package/{dist/typings → typings}/use-x-chat/useSyncState.d.ts +0 -0
  501. /package/{dist/typings → typings}/vc-util/Dom/canUseDom.d.ts +0 -0
  502. /package/{dist/typings → typings}/vc-util/Dom/contains.d.ts +0 -0
  503. /package/{dist/typings → typings}/vc-util/Dom/dynamicCSS.d.ts +0 -0
  504. /package/{dist/typings → typings}/vc-util/warning.d.ts +0 -0
  505. /package/{dist/typings → typings}/version/index.d.ts +0 -0
  506. /package/{dist/typings → typings}/version/version.d.ts +0 -0
  507. /package/{dist/typings → typings}/welcome/Welcome.vue.d.ts +0 -0
  508. /package/{dist/typings → typings}/welcome/index.d.ts +0 -0
  509. /package/{dist/typings → typings}/welcome/interface.d.ts +0 -0
  510. /package/{dist/typings → typings}/welcome/style/index.d.ts +0 -0
  511. /package/{dist/typings → typings}/x-provider/hooks/use-x-provider-context.d.ts +0 -0
  512. /package/{dist/typings → typings}/x-provider/index.d.ts +0 -0
  513. /package/{dist/typings → typings}/x-provider/index.vue.d.ts +0 -0
  514. /package/{dist/typings → typings}/x-request/index.d.ts +0 -0
  515. /package/{dist/typings → typings}/x-request/x-fetch.d.ts +0 -0
  516. /package/{dist/typings → typings}/x-request/x-request.d.ts +0 -0
  517. /package/{dist/typings → typings}/x-stream/index.d.ts +0 -0
  518. /package/{dist/typings → typings}/x-stream/x-stream.d.ts +0 -0
@@ -0,0 +1,1574 @@
1
+ import { inject as pe, ref as R, h as et, getCurrentInstance as ge, nextTick as Rt, reactive as ve, defineComponent as Nt, createVNode as u, computed as be, useTemplateRef as me, watchEffect as ye, onWatcherCleanup as Oe, watch as we, Fragment as Se } from "vue";
2
+ import { c as rt } from "../Attachments2.mjs";
3
+ import { Button as N } from "ant-design-vue";
4
+ import I from "../../_util/hooks/use-state.mjs";
5
+ import { useAttachmentContextInject as xe } from "../context.mjs";
6
+ import Pe from "../SilentUploader.mjs";
7
+ import Ce from "./FileListCard.mjs";
8
+ function d(t, e) {
9
+ Me(t) && (t = "100%");
10
+ var r = je(t);
11
+ return t = e === 360 ? t : Math.min(e, Math.max(0, parseFloat(t))), r && (t = parseInt(String(t * e), 10) / 100), Math.abs(t - e) < 1e-6 ? 1 : (e === 360 ? t = (t < 0 ? t % e + e : t % e) / parseFloat(String(e)) : t = t % e / parseFloat(String(e)), t);
12
+ }
13
+ function A(t) {
14
+ return Math.min(1, Math.max(0, t));
15
+ }
16
+ function Me(t) {
17
+ return typeof t == "string" && t.indexOf(".") !== -1 && parseFloat(t) === 1;
18
+ }
19
+ function je(t) {
20
+ return typeof t == "string" && t.indexOf("%") !== -1;
21
+ }
22
+ function It(t) {
23
+ return t = parseFloat(t), (isNaN(t) || t < 0 || t > 1) && (t = 1), t;
24
+ }
25
+ function F(t) {
26
+ return t <= 1 ? "".concat(Number(t) * 100, "%") : t;
27
+ }
28
+ function S(t) {
29
+ return t.length === 1 ? "0" + t : String(t);
30
+ }
31
+ function Ae(t, e, r) {
32
+ return {
33
+ r: d(t, 255) * 255,
34
+ g: d(e, 255) * 255,
35
+ b: d(r, 255) * 255
36
+ };
37
+ }
38
+ function nt(t, e, r) {
39
+ t = d(t, 255), e = d(e, 255), r = d(r, 255);
40
+ var n = Math.max(t, e, r), a = Math.min(t, e, r), i = 0, o = 0, l = (n + a) / 2;
41
+ if (n === a)
42
+ o = 0, i = 0;
43
+ else {
44
+ var c = n - a;
45
+ switch (o = l > 0.5 ? c / (2 - n - a) : c / (n + a), n) {
46
+ case t:
47
+ i = (e - r) / c + (e < r ? 6 : 0);
48
+ break;
49
+ case e:
50
+ i = (r - t) / c + 2;
51
+ break;
52
+ case r:
53
+ i = (t - e) / c + 4;
54
+ break;
55
+ }
56
+ i /= 6;
57
+ }
58
+ return { h: i, s: o, l };
59
+ }
60
+ function _(t, e, r) {
61
+ return r < 0 && (r += 1), r > 1 && (r -= 1), r < 1 / 6 ? t + (e - t) * (6 * r) : r < 1 / 2 ? e : r < 2 / 3 ? t + (e - t) * (2 / 3 - r) * 6 : t;
62
+ }
63
+ function Fe(t, e, r) {
64
+ var n, a, i;
65
+ if (t = d(t, 360), e = d(e, 100), r = d(r, 100), e === 0)
66
+ a = r, i = r, n = r;
67
+ else {
68
+ var o = r < 0.5 ? r * (1 + e) : r + e - r * e, l = 2 * r - o;
69
+ n = _(l, o, t + 1 / 3), a = _(l, o, t), i = _(l, o, t - 1 / 3);
70
+ }
71
+ return { r: n * 255, g: a * 255, b: i * 255 };
72
+ }
73
+ function D(t, e, r) {
74
+ t = d(t, 255), e = d(e, 255), r = d(r, 255);
75
+ var n = Math.max(t, e, r), a = Math.min(t, e, r), i = 0, o = n, l = n - a, c = n === 0 ? 0 : l / n;
76
+ if (n === a)
77
+ i = 0;
78
+ else {
79
+ switch (n) {
80
+ case t:
81
+ i = (e - r) / l + (e < r ? 6 : 0);
82
+ break;
83
+ case e:
84
+ i = (r - t) / l + 2;
85
+ break;
86
+ case r:
87
+ i = (t - e) / l + 4;
88
+ break;
89
+ }
90
+ i /= 6;
91
+ }
92
+ return { h: i, s: c, v: o };
93
+ }
94
+ function $e(t, e, r) {
95
+ t = d(t, 360) * 6, e = d(e, 100), r = d(r, 100);
96
+ var n = Math.floor(t), a = t - n, i = r * (1 - e), o = r * (1 - a * e), l = r * (1 - (1 - a) * e), c = n % 6, h = [r, o, i, i, l, r][c], v = [l, r, r, o, i, i][c], b = [i, i, l, r, r, o][c];
97
+ return { r: h * 255, g: v * 255, b: b * 255 };
98
+ }
99
+ function W(t, e, r, n) {
100
+ var a = [
101
+ S(Math.round(t).toString(16)),
102
+ S(Math.round(e).toString(16)),
103
+ S(Math.round(r).toString(16))
104
+ ];
105
+ return n && a[0].startsWith(a[0].charAt(1)) && a[1].startsWith(a[1].charAt(1)) && a[2].startsWith(a[2].charAt(1)) ? a[0].charAt(0) + a[1].charAt(0) + a[2].charAt(0) : a.join("");
106
+ }
107
+ function Te(t, e, r, n, a) {
108
+ var i = [
109
+ S(Math.round(t).toString(16)),
110
+ S(Math.round(e).toString(16)),
111
+ S(Math.round(r).toString(16)),
112
+ S(He(n))
113
+ ];
114
+ return a && i[0].startsWith(i[0].charAt(1)) && i[1].startsWith(i[1].charAt(1)) && i[2].startsWith(i[2].charAt(1)) && i[3].startsWith(i[3].charAt(1)) ? i[0].charAt(0) + i[1].charAt(0) + i[2].charAt(0) + i[3].charAt(0) : i.join("");
115
+ }
116
+ function He(t) {
117
+ return Math.round(parseFloat(t) * 255).toString(16);
118
+ }
119
+ function at(t) {
120
+ return p(t) / 255;
121
+ }
122
+ function p(t) {
123
+ return parseInt(t, 16);
124
+ }
125
+ function ze(t) {
126
+ return {
127
+ r: t >> 16,
128
+ g: (t & 65280) >> 8,
129
+ b: t & 255
130
+ };
131
+ }
132
+ var q = {
133
+ aliceblue: "#f0f8ff",
134
+ antiquewhite: "#faebd7",
135
+ aqua: "#00ffff",
136
+ aquamarine: "#7fffd4",
137
+ azure: "#f0ffff",
138
+ beige: "#f5f5dc",
139
+ bisque: "#ffe4c4",
140
+ black: "#000000",
141
+ blanchedalmond: "#ffebcd",
142
+ blue: "#0000ff",
143
+ blueviolet: "#8a2be2",
144
+ brown: "#a52a2a",
145
+ burlywood: "#deb887",
146
+ cadetblue: "#5f9ea0",
147
+ chartreuse: "#7fff00",
148
+ chocolate: "#d2691e",
149
+ coral: "#ff7f50",
150
+ cornflowerblue: "#6495ed",
151
+ cornsilk: "#fff8dc",
152
+ crimson: "#dc143c",
153
+ cyan: "#00ffff",
154
+ darkblue: "#00008b",
155
+ darkcyan: "#008b8b",
156
+ darkgoldenrod: "#b8860b",
157
+ darkgray: "#a9a9a9",
158
+ darkgreen: "#006400",
159
+ darkgrey: "#a9a9a9",
160
+ darkkhaki: "#bdb76b",
161
+ darkmagenta: "#8b008b",
162
+ darkolivegreen: "#556b2f",
163
+ darkorange: "#ff8c00",
164
+ darkorchid: "#9932cc",
165
+ darkred: "#8b0000",
166
+ darksalmon: "#e9967a",
167
+ darkseagreen: "#8fbc8f",
168
+ darkslateblue: "#483d8b",
169
+ darkslategray: "#2f4f4f",
170
+ darkslategrey: "#2f4f4f",
171
+ darkturquoise: "#00ced1",
172
+ darkviolet: "#9400d3",
173
+ deeppink: "#ff1493",
174
+ deepskyblue: "#00bfff",
175
+ dimgray: "#696969",
176
+ dimgrey: "#696969",
177
+ dodgerblue: "#1e90ff",
178
+ firebrick: "#b22222",
179
+ floralwhite: "#fffaf0",
180
+ forestgreen: "#228b22",
181
+ fuchsia: "#ff00ff",
182
+ gainsboro: "#dcdcdc",
183
+ ghostwhite: "#f8f8ff",
184
+ goldenrod: "#daa520",
185
+ gold: "#ffd700",
186
+ gray: "#808080",
187
+ green: "#008000",
188
+ greenyellow: "#adff2f",
189
+ grey: "#808080",
190
+ honeydew: "#f0fff0",
191
+ hotpink: "#ff69b4",
192
+ indianred: "#cd5c5c",
193
+ indigo: "#4b0082",
194
+ ivory: "#fffff0",
195
+ khaki: "#f0e68c",
196
+ lavenderblush: "#fff0f5",
197
+ lavender: "#e6e6fa",
198
+ lawngreen: "#7cfc00",
199
+ lemonchiffon: "#fffacd",
200
+ lightblue: "#add8e6",
201
+ lightcoral: "#f08080",
202
+ lightcyan: "#e0ffff",
203
+ lightgoldenrodyellow: "#fafad2",
204
+ lightgray: "#d3d3d3",
205
+ lightgreen: "#90ee90",
206
+ lightgrey: "#d3d3d3",
207
+ lightpink: "#ffb6c1",
208
+ lightsalmon: "#ffa07a",
209
+ lightseagreen: "#20b2aa",
210
+ lightskyblue: "#87cefa",
211
+ lightslategray: "#778899",
212
+ lightslategrey: "#778899",
213
+ lightsteelblue: "#b0c4de",
214
+ lightyellow: "#ffffe0",
215
+ lime: "#00ff00",
216
+ limegreen: "#32cd32",
217
+ linen: "#faf0e6",
218
+ magenta: "#ff00ff",
219
+ maroon: "#800000",
220
+ mediumaquamarine: "#66cdaa",
221
+ mediumblue: "#0000cd",
222
+ mediumorchid: "#ba55d3",
223
+ mediumpurple: "#9370db",
224
+ mediumseagreen: "#3cb371",
225
+ mediumslateblue: "#7b68ee",
226
+ mediumspringgreen: "#00fa9a",
227
+ mediumturquoise: "#48d1cc",
228
+ mediumvioletred: "#c71585",
229
+ midnightblue: "#191970",
230
+ mintcream: "#f5fffa",
231
+ mistyrose: "#ffe4e1",
232
+ moccasin: "#ffe4b5",
233
+ navajowhite: "#ffdead",
234
+ navy: "#000080",
235
+ oldlace: "#fdf5e6",
236
+ olive: "#808000",
237
+ olivedrab: "#6b8e23",
238
+ orange: "#ffa500",
239
+ orangered: "#ff4500",
240
+ orchid: "#da70d6",
241
+ palegoldenrod: "#eee8aa",
242
+ palegreen: "#98fb98",
243
+ paleturquoise: "#afeeee",
244
+ palevioletred: "#db7093",
245
+ papayawhip: "#ffefd5",
246
+ peachpuff: "#ffdab9",
247
+ peru: "#cd853f",
248
+ pink: "#ffc0cb",
249
+ plum: "#dda0dd",
250
+ powderblue: "#b0e0e6",
251
+ purple: "#800080",
252
+ rebeccapurple: "#663399",
253
+ red: "#ff0000",
254
+ rosybrown: "#bc8f8f",
255
+ royalblue: "#4169e1",
256
+ saddlebrown: "#8b4513",
257
+ salmon: "#fa8072",
258
+ sandybrown: "#f4a460",
259
+ seagreen: "#2e8b57",
260
+ seashell: "#fff5ee",
261
+ sienna: "#a0522d",
262
+ silver: "#c0c0c0",
263
+ skyblue: "#87ceeb",
264
+ slateblue: "#6a5acd",
265
+ slategray: "#708090",
266
+ slategrey: "#708090",
267
+ snow: "#fffafa",
268
+ springgreen: "#00ff7f",
269
+ steelblue: "#4682b4",
270
+ tan: "#d2b48c",
271
+ teal: "#008080",
272
+ thistle: "#d8bfd8",
273
+ tomato: "#ff6347",
274
+ turquoise: "#40e0d0",
275
+ violet: "#ee82ee",
276
+ wheat: "#f5deb3",
277
+ white: "#ffffff",
278
+ whitesmoke: "#f5f5f5",
279
+ yellow: "#ffff00",
280
+ yellowgreen: "#9acd32"
281
+ };
282
+ function P(t) {
283
+ var e = { r: 0, g: 0, b: 0 }, r = 1, n = null, a = null, i = null, o = !1, l = !1;
284
+ return typeof t == "string" && (t = Ne(t)), typeof t == "object" && (m(t.r) && m(t.g) && m(t.b) ? (e = Ae(t.r, t.g, t.b), o = !0, l = String(t.r).substr(-1) === "%" ? "prgb" : "rgb") : m(t.h) && m(t.s) && m(t.v) ? (n = F(t.s), a = F(t.v), e = $e(t.h, n, a), o = !0, l = "hsv") : m(t.h) && m(t.s) && m(t.l) && (n = F(t.s), i = F(t.l), e = Fe(t.h, n, i), o = !0, l = "hsl"), Object.prototype.hasOwnProperty.call(t, "a") && (r = t.a)), r = It(r), {
285
+ ok: o,
286
+ format: t.format || l,
287
+ r: Math.min(255, Math.max(e.r, 0)),
288
+ g: Math.min(255, Math.max(e.g, 0)),
289
+ b: Math.min(255, Math.max(e.b, 0)),
290
+ a: r
291
+ };
292
+ }
293
+ var Ee = "[-\\+]?\\d+%?", Re = "[-\\+]?\\d*\\.\\d+%?", y = "(?:".concat(Re, ")|(?:").concat(Ee, ")"), L = "[\\s|\\(]+(".concat(y, ")[,|\\s]+(").concat(y, ")[,|\\s]+(").concat(y, ")\\s*\\)?"), V = "[\\s|\\(]+(".concat(y, ")[,|\\s]+(").concat(y, ")[,|\\s]+(").concat(y, ")[,|\\s]+(").concat(y, ")\\s*\\)?"), g = {
294
+ CSS_UNIT: new RegExp(y),
295
+ rgb: new RegExp("rgb" + L),
296
+ rgba: new RegExp("rgba" + V),
297
+ hsl: new RegExp("hsl" + L),
298
+ hsla: new RegExp("hsla" + V),
299
+ hsv: new RegExp("hsv" + L),
300
+ hsva: new RegExp("hsva" + V),
301
+ hex3: /^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,
302
+ hex6: /^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,
303
+ hex4: /^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,
304
+ hex8: /^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/
305
+ };
306
+ function Ne(t) {
307
+ if (t = t.trim().toLowerCase(), t.length === 0)
308
+ return !1;
309
+ var e = !1;
310
+ if (q[t])
311
+ t = q[t], e = !0;
312
+ else if (t === "transparent")
313
+ return { r: 0, g: 0, b: 0, a: 0, format: "name" };
314
+ var r = g.rgb.exec(t);
315
+ return r ? { r: r[1], g: r[2], b: r[3] } : (r = g.rgba.exec(t), r ? { r: r[1], g: r[2], b: r[3], a: r[4] } : (r = g.hsl.exec(t), r ? { h: r[1], s: r[2], l: r[3] } : (r = g.hsla.exec(t), r ? { h: r[1], s: r[2], l: r[3], a: r[4] } : (r = g.hsv.exec(t), r ? { h: r[1], s: r[2], v: r[3] } : (r = g.hsva.exec(t), r ? { h: r[1], s: r[2], v: r[3], a: r[4] } : (r = g.hex8.exec(t), r ? {
316
+ r: p(r[1]),
317
+ g: p(r[2]),
318
+ b: p(r[3]),
319
+ a: at(r[4]),
320
+ format: e ? "name" : "hex8"
321
+ } : (r = g.hex6.exec(t), r ? {
322
+ r: p(r[1]),
323
+ g: p(r[2]),
324
+ b: p(r[3]),
325
+ format: e ? "name" : "hex"
326
+ } : (r = g.hex4.exec(t), r ? {
327
+ r: p(r[1] + r[1]),
328
+ g: p(r[2] + r[2]),
329
+ b: p(r[3] + r[3]),
330
+ a: at(r[4] + r[4]),
331
+ format: e ? "name" : "hex8"
332
+ } : (r = g.hex3.exec(t), r ? {
333
+ r: p(r[1] + r[1]),
334
+ g: p(r[2] + r[2]),
335
+ b: p(r[3] + r[3]),
336
+ format: e ? "name" : "hex"
337
+ } : !1)))))))));
338
+ }
339
+ function m(t) {
340
+ return !!g.CSS_UNIT.exec(String(t));
341
+ }
342
+ var hn = (
343
+ /** @class */
344
+ function() {
345
+ function t(e, r) {
346
+ e === void 0 && (e = ""), r === void 0 && (r = {});
347
+ var n;
348
+ if (e instanceof t)
349
+ return e;
350
+ typeof e == "number" && (e = ze(e)), this.originalInput = e;
351
+ var a = P(e);
352
+ this.originalInput = e, this.r = a.r, this.g = a.g, this.b = a.b, this.a = a.a, this.roundA = Math.round(100 * this.a) / 100, this.format = (n = r.format) !== null && n !== void 0 ? n : a.format, this.gradientType = r.gradientType, this.r < 1 && (this.r = Math.round(this.r)), this.g < 1 && (this.g = Math.round(this.g)), this.b < 1 && (this.b = Math.round(this.b)), this.isValid = a.ok;
353
+ }
354
+ return t.prototype.isDark = function() {
355
+ return this.getBrightness() < 128;
356
+ }, t.prototype.isLight = function() {
357
+ return !this.isDark();
358
+ }, t.prototype.getBrightness = function() {
359
+ var e = this.toRgb();
360
+ return (e.r * 299 + e.g * 587 + e.b * 114) / 1e3;
361
+ }, t.prototype.getLuminance = function() {
362
+ var e = this.toRgb(), r, n, a, i = e.r / 255, o = e.g / 255, l = e.b / 255;
363
+ return i <= 0.03928 ? r = i / 12.92 : r = Math.pow((i + 0.055) / 1.055, 2.4), o <= 0.03928 ? n = o / 12.92 : n = Math.pow((o + 0.055) / 1.055, 2.4), l <= 0.03928 ? a = l / 12.92 : a = Math.pow((l + 0.055) / 1.055, 2.4), 0.2126 * r + 0.7152 * n + 0.0722 * a;
364
+ }, t.prototype.getAlpha = function() {
365
+ return this.a;
366
+ }, t.prototype.setAlpha = function(e) {
367
+ return this.a = It(e), this.roundA = Math.round(100 * this.a) / 100, this;
368
+ }, t.prototype.isMonochrome = function() {
369
+ var e = this.toHsl().s;
370
+ return e === 0;
371
+ }, t.prototype.toHsv = function() {
372
+ var e = D(this.r, this.g, this.b);
373
+ return { h: e.h * 360, s: e.s, v: e.v, a: this.a };
374
+ }, t.prototype.toHsvString = function() {
375
+ var e = D(this.r, this.g, this.b), r = Math.round(e.h * 360), n = Math.round(e.s * 100), a = Math.round(e.v * 100);
376
+ return this.a === 1 ? "hsv(".concat(r, ", ").concat(n, "%, ").concat(a, "%)") : "hsva(".concat(r, ", ").concat(n, "%, ").concat(a, "%, ").concat(this.roundA, ")");
377
+ }, t.prototype.toHsl = function() {
378
+ var e = nt(this.r, this.g, this.b);
379
+ return { h: e.h * 360, s: e.s, l: e.l, a: this.a };
380
+ }, t.prototype.toHslString = function() {
381
+ var e = nt(this.r, this.g, this.b), r = Math.round(e.h * 360), n = Math.round(e.s * 100), a = Math.round(e.l * 100);
382
+ return this.a === 1 ? "hsl(".concat(r, ", ").concat(n, "%, ").concat(a, "%)") : "hsla(".concat(r, ", ").concat(n, "%, ").concat(a, "%, ").concat(this.roundA, ")");
383
+ }, t.prototype.toHex = function(e) {
384
+ return e === void 0 && (e = !1), W(this.r, this.g, this.b, e);
385
+ }, t.prototype.toHexString = function(e) {
386
+ return e === void 0 && (e = !1), "#" + this.toHex(e);
387
+ }, t.prototype.toHex8 = function(e) {
388
+ return e === void 0 && (e = !1), Te(this.r, this.g, this.b, this.a, e);
389
+ }, t.prototype.toHex8String = function(e) {
390
+ return e === void 0 && (e = !1), "#" + this.toHex8(e);
391
+ }, t.prototype.toHexShortString = function(e) {
392
+ return e === void 0 && (e = !1), this.a === 1 ? this.toHexString(e) : this.toHex8String(e);
393
+ }, t.prototype.toRgb = function() {
394
+ return {
395
+ r: Math.round(this.r),
396
+ g: Math.round(this.g),
397
+ b: Math.round(this.b),
398
+ a: this.a
399
+ };
400
+ }, t.prototype.toRgbString = function() {
401
+ var e = Math.round(this.r), r = Math.round(this.g), n = Math.round(this.b);
402
+ return this.a === 1 ? "rgb(".concat(e, ", ").concat(r, ", ").concat(n, ")") : "rgba(".concat(e, ", ").concat(r, ", ").concat(n, ", ").concat(this.roundA, ")");
403
+ }, t.prototype.toPercentageRgb = function() {
404
+ var e = function(r) {
405
+ return "".concat(Math.round(d(r, 255) * 100), "%");
406
+ };
407
+ return {
408
+ r: e(this.r),
409
+ g: e(this.g),
410
+ b: e(this.b),
411
+ a: this.a
412
+ };
413
+ }, t.prototype.toPercentageRgbString = function() {
414
+ var e = function(r) {
415
+ return Math.round(d(r, 255) * 100);
416
+ };
417
+ return this.a === 1 ? "rgb(".concat(e(this.r), "%, ").concat(e(this.g), "%, ").concat(e(this.b), "%)") : "rgba(".concat(e(this.r), "%, ").concat(e(this.g), "%, ").concat(e(this.b), "%, ").concat(this.roundA, ")");
418
+ }, t.prototype.toName = function() {
419
+ if (this.a === 0)
420
+ return "transparent";
421
+ if (this.a < 1)
422
+ return !1;
423
+ for (var e = "#" + W(this.r, this.g, this.b, !1), r = 0, n = Object.entries(q); r < n.length; r++) {
424
+ var a = n[r], i = a[0], o = a[1];
425
+ if (e === o)
426
+ return i;
427
+ }
428
+ return !1;
429
+ }, t.prototype.toString = function(e) {
430
+ var r = !!e;
431
+ e = e ?? this.format;
432
+ var n = !1, a = this.a < 1 && this.a >= 0, i = !r && a && (e.startsWith("hex") || e === "name");
433
+ return i ? e === "name" && this.a === 0 ? this.toName() : this.toRgbString() : (e === "rgb" && (n = this.toRgbString()), e === "prgb" && (n = this.toPercentageRgbString()), (e === "hex" || e === "hex6") && (n = this.toHexString()), e === "hex3" && (n = this.toHexString(!0)), e === "hex4" && (n = this.toHex8String(!0)), e === "hex8" && (n = this.toHex8String()), e === "name" && (n = this.toName()), e === "hsl" && (n = this.toHslString()), e === "hsv" && (n = this.toHsvString()), n || this.toHexString());
434
+ }, t.prototype.toNumber = function() {
435
+ return (Math.round(this.r) << 16) + (Math.round(this.g) << 8) + Math.round(this.b);
436
+ }, t.prototype.clone = function() {
437
+ return new t(this.toString());
438
+ }, t.prototype.lighten = function(e) {
439
+ e === void 0 && (e = 10);
440
+ var r = this.toHsl();
441
+ return r.l += e / 100, r.l = A(r.l), new t(r);
442
+ }, t.prototype.brighten = function(e) {
443
+ e === void 0 && (e = 10);
444
+ var r = this.toRgb();
445
+ return r.r = Math.max(0, Math.min(255, r.r - Math.round(255 * -(e / 100)))), r.g = Math.max(0, Math.min(255, r.g - Math.round(255 * -(e / 100)))), r.b = Math.max(0, Math.min(255, r.b - Math.round(255 * -(e / 100)))), new t(r);
446
+ }, t.prototype.darken = function(e) {
447
+ e === void 0 && (e = 10);
448
+ var r = this.toHsl();
449
+ return r.l -= e / 100, r.l = A(r.l), new t(r);
450
+ }, t.prototype.tint = function(e) {
451
+ return e === void 0 && (e = 10), this.mix("white", e);
452
+ }, t.prototype.shade = function(e) {
453
+ return e === void 0 && (e = 10), this.mix("black", e);
454
+ }, t.prototype.desaturate = function(e) {
455
+ e === void 0 && (e = 10);
456
+ var r = this.toHsl();
457
+ return r.s -= e / 100, r.s = A(r.s), new t(r);
458
+ }, t.prototype.saturate = function(e) {
459
+ e === void 0 && (e = 10);
460
+ var r = this.toHsl();
461
+ return r.s += e / 100, r.s = A(r.s), new t(r);
462
+ }, t.prototype.greyscale = function() {
463
+ return this.desaturate(100);
464
+ }, t.prototype.spin = function(e) {
465
+ var r = this.toHsl(), n = (r.h + e) % 360;
466
+ return r.h = n < 0 ? 360 + n : n, new t(r);
467
+ }, t.prototype.mix = function(e, r) {
468
+ r === void 0 && (r = 50);
469
+ var n = this.toRgb(), a = new t(e).toRgb(), i = r / 100, o = {
470
+ r: (a.r - n.r) * i + n.r,
471
+ g: (a.g - n.g) * i + n.g,
472
+ b: (a.b - n.b) * i + n.b,
473
+ a: (a.a - n.a) * i + n.a
474
+ };
475
+ return new t(o);
476
+ }, t.prototype.analogous = function(e, r) {
477
+ e === void 0 && (e = 6), r === void 0 && (r = 30);
478
+ var n = this.toHsl(), a = 360 / r, i = [this];
479
+ for (n.h = (n.h - (a * e >> 1) + 720) % 360; --e; )
480
+ n.h = (n.h + a) % 360, i.push(new t(n));
481
+ return i;
482
+ }, t.prototype.complement = function() {
483
+ var e = this.toHsl();
484
+ return e.h = (e.h + 180) % 360, new t(e);
485
+ }, t.prototype.monochromatic = function(e) {
486
+ e === void 0 && (e = 6);
487
+ for (var r = this.toHsv(), n = r.h, a = r.s, i = r.v, o = [], l = 1 / e; e--; )
488
+ o.push(new t({ h: n, s: a, v: i })), i = (i + l) % 1;
489
+ return o;
490
+ }, t.prototype.splitcomplement = function() {
491
+ var e = this.toHsl(), r = e.h;
492
+ return [
493
+ this,
494
+ new t({ h: (r + 72) % 360, s: e.s, l: e.l }),
495
+ new t({ h: (r + 216) % 360, s: e.s, l: e.l })
496
+ ];
497
+ }, t.prototype.onBackground = function(e) {
498
+ var r = this.toRgb(), n = new t(e).toRgb(), a = r.a + n.a * (1 - r.a);
499
+ return new t({
500
+ r: (r.r * r.a + n.r * n.a * (1 - r.a)) / a,
501
+ g: (r.g * r.a + n.g * n.a * (1 - r.a)) / a,
502
+ b: (r.b * r.a + n.b * n.a * (1 - r.a)) / a,
503
+ a
504
+ });
505
+ }, t.prototype.triad = function() {
506
+ return this.polyad(3);
507
+ }, t.prototype.tetrad = function() {
508
+ return this.polyad(4);
509
+ }, t.prototype.polyad = function(e) {
510
+ for (var r = this.toHsl(), n = r.h, a = [this], i = 360 / e, o = 1; o < e; o++)
511
+ a.push(new t({ h: (n + o * i) % 360, s: r.s, l: r.l }));
512
+ return a;
513
+ }, t.prototype.equals = function(e) {
514
+ return this.toRgbString() === new t(e).toRgbString();
515
+ }, t;
516
+ }()
517
+ ), $ = 2, it = 0.16, Ie = 0.05, _e = 0.05, Le = 0.15, _t = 5, Lt = 4, Ve = [{
518
+ index: 7,
519
+ opacity: 0.15
520
+ }, {
521
+ index: 6,
522
+ opacity: 0.25
523
+ }, {
524
+ index: 5,
525
+ opacity: 0.3
526
+ }, {
527
+ index: 5,
528
+ opacity: 0.45
529
+ }, {
530
+ index: 5,
531
+ opacity: 0.65
532
+ }, {
533
+ index: 5,
534
+ opacity: 0.85
535
+ }, {
536
+ index: 4,
537
+ opacity: 0.9
538
+ }, {
539
+ index: 3,
540
+ opacity: 0.95
541
+ }, {
542
+ index: 2,
543
+ opacity: 0.97
544
+ }, {
545
+ index: 1,
546
+ opacity: 0.98
547
+ }];
548
+ function ot(t) {
549
+ var e = t.r, r = t.g, n = t.b, a = D(e, r, n);
550
+ return {
551
+ h: a.h * 360,
552
+ s: a.s,
553
+ v: a.v
554
+ };
555
+ }
556
+ function T(t) {
557
+ var e = t.r, r = t.g, n = t.b;
558
+ return "#".concat(W(e, r, n, !1));
559
+ }
560
+ function ke(t, e, r) {
561
+ var n = r / 100, a = {
562
+ r: (e.r - t.r) * n + t.r,
563
+ g: (e.g - t.g) * n + t.g,
564
+ b: (e.b - t.b) * n + t.b
565
+ };
566
+ return a;
567
+ }
568
+ function lt(t, e, r) {
569
+ var n;
570
+ return Math.round(t.h) >= 60 && Math.round(t.h) <= 240 ? n = r ? Math.round(t.h) - $ * e : Math.round(t.h) + $ * e : n = r ? Math.round(t.h) + $ * e : Math.round(t.h) - $ * e, n < 0 ? n += 360 : n >= 360 && (n -= 360), n;
571
+ }
572
+ function ct(t, e, r) {
573
+ if (t.h === 0 && t.s === 0)
574
+ return t.s;
575
+ var n;
576
+ return r ? n = t.s - it * e : e === Lt ? n = t.s + it : n = t.s + Ie * e, n > 1 && (n = 1), r && e === _t && n > 0.1 && (n = 0.1), n < 0.06 && (n = 0.06), Number(n.toFixed(2));
577
+ }
578
+ function ut(t, e, r) {
579
+ var n;
580
+ return r ? n = t.v + _e * e : n = t.v - Le * e, n > 1 && (n = 1), Number(n.toFixed(2));
581
+ }
582
+ function U(t) {
583
+ for (var e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, r = [], n = P(t), a = _t; a > 0; a -= 1) {
584
+ var i = ot(n), o = T(P({
585
+ h: lt(i, a, !0),
586
+ s: ct(i, a, !0),
587
+ v: ut(i, a, !0)
588
+ }));
589
+ r.push(o);
590
+ }
591
+ r.push(T(n));
592
+ for (var l = 1; l <= Lt; l += 1) {
593
+ var c = ot(n), h = T(P({
594
+ h: lt(c, l),
595
+ s: ct(c, l),
596
+ v: ut(c, l)
597
+ }));
598
+ r.push(h);
599
+ }
600
+ return e.theme === "dark" ? Ve.map(function(v) {
601
+ var b = v.index, C = v.opacity, x = T(ke(P(e.backgroundColor || "#141414"), P(r[b]), C * 100));
602
+ return x;
603
+ }) : r;
604
+ }
605
+ var k = {
606
+ red: "#F5222D",
607
+ volcano: "#FA541C",
608
+ orange: "#FA8C16",
609
+ gold: "#FAAD14",
610
+ yellow: "#FADB14",
611
+ lime: "#A0D911",
612
+ green: "#52C41A",
613
+ cyan: "#13C2C2",
614
+ blue: "#1890FF",
615
+ geekblue: "#2F54EB",
616
+ purple: "#722ED1",
617
+ magenta: "#EB2F96",
618
+ grey: "#666666"
619
+ }, H = {}, B = {};
620
+ Object.keys(k).forEach(function(t) {
621
+ H[t] = U(k[t]), H[t].primary = H[t][5], B[t] = U(k[t], {
622
+ theme: "dark",
623
+ backgroundColor: "#141414"
624
+ }), B[t].primary = B[t][5];
625
+ });
626
+ var Be = H.blue, De = Symbol("iconContext"), Vt = function() {
627
+ return pe(De, {
628
+ prefixCls: R("anticon"),
629
+ rootClassName: R(""),
630
+ csp: R()
631
+ });
632
+ };
633
+ function X() {
634
+ return !!(typeof window < "u" && window.document && window.document.createElement);
635
+ }
636
+ function We(t, e) {
637
+ return t && t.contains ? t.contains(e) : !1;
638
+ }
639
+ var ft = "data-vc-order", qe = "vc-icon-key", G = /* @__PURE__ */ new Map();
640
+ function kt() {
641
+ var t = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {}, e = t.mark;
642
+ return e ? e.startsWith("data-") ? e : "data-".concat(e) : qe;
643
+ }
644
+ function Y(t) {
645
+ if (t.attachTo)
646
+ return t.attachTo;
647
+ var e = document.querySelector("head");
648
+ return e || document.body;
649
+ }
650
+ function Ue(t) {
651
+ return t === "queue" ? "prependQueue" : t ? "prepend" : "append";
652
+ }
653
+ function Bt(t) {
654
+ return Array.from((G.get(t) || t).children).filter(function(e) {
655
+ return e.tagName === "STYLE";
656
+ });
657
+ }
658
+ function Dt(t) {
659
+ var e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {};
660
+ if (!X())
661
+ return null;
662
+ var r = e.csp, n = e.prepend, a = document.createElement("style");
663
+ a.setAttribute(ft, Ue(n)), r && r.nonce && (a.nonce = r.nonce), a.innerHTML = t;
664
+ var i = Y(e), o = i.firstChild;
665
+ if (n) {
666
+ if (n === "queue") {
667
+ var l = Bt(i).filter(function(c) {
668
+ return ["prepend", "prependQueue"].includes(c.getAttribute(ft));
669
+ });
670
+ if (l.length)
671
+ return i.insertBefore(a, l[l.length - 1].nextSibling), a;
672
+ }
673
+ i.insertBefore(a, o);
674
+ } else
675
+ i.appendChild(a);
676
+ return a;
677
+ }
678
+ function Ge(t) {
679
+ var e = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : {}, r = Y(e);
680
+ return Bt(r).find(function(n) {
681
+ return n.getAttribute(kt(e)) === t;
682
+ });
683
+ }
684
+ function Ze(t, e) {
685
+ var r = G.get(t);
686
+ if (!r || !We(document, r)) {
687
+ var n = Dt("", e), a = n.parentNode;
688
+ G.set(t, a), t.removeChild(n);
689
+ }
690
+ }
691
+ function Xe(t, e) {
692
+ var r = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : {}, n = Y(r);
693
+ Ze(n, r);
694
+ var a = Ge(e, r);
695
+ if (a)
696
+ return r.csp && r.csp.nonce && a.nonce !== r.csp.nonce && (a.nonce = r.csp.nonce), a.innerHTML !== t && (a.innerHTML = t), a;
697
+ var i = Dt(t, r);
698
+ return i.setAttribute(kt(r), e), i;
699
+ }
700
+ function st(t) {
701
+ for (var e = 1; e < arguments.length; e++) {
702
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
703
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
704
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
705
+ }))), n.forEach(function(a) {
706
+ Ye(t, a, r[a]);
707
+ });
708
+ }
709
+ return t;
710
+ }
711
+ function Ye(t, e, r) {
712
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
713
+ }
714
+ function ht(t) {
715
+ return typeof t == "object" && typeof t.name == "string" && typeof t.theme == "string" && (typeof t.icon == "object" || typeof t.icon == "function");
716
+ }
717
+ function Z(t, e, r) {
718
+ return r ? et(t.tag, st({
719
+ key: e
720
+ }, r, t.attrs), (t.children || []).map(function(n, a) {
721
+ return Z(n, "".concat(e, "-").concat(t.tag, "-").concat(a));
722
+ })) : et(t.tag, st({
723
+ key: e
724
+ }, t.attrs), (t.children || []).map(function(n, a) {
725
+ return Z(n, "".concat(e, "-").concat(t.tag, "-").concat(a));
726
+ }));
727
+ }
728
+ function Wt(t) {
729
+ return U(t)[0];
730
+ }
731
+ function qt(t) {
732
+ return t ? Array.isArray(t) ? t : [t] : [];
733
+ }
734
+ var Qe = `
735
+ .anticon {
736
+ display: inline-block;
737
+ color: inherit;
738
+ font-style: normal;
739
+ line-height: 0;
740
+ text-align: center;
741
+ text-transform: none;
742
+ vertical-align: -0.125em;
743
+ text-rendering: optimizeLegibility;
744
+ -webkit-font-smoothing: antialiased;
745
+ -moz-osx-font-smoothing: grayscale;
746
+ }
747
+
748
+ .anticon > * {
749
+ line-height: 1;
750
+ }
751
+
752
+ .anticon svg {
753
+ display: inline-block;
754
+ }
755
+
756
+ .anticon::before {
757
+ display: none;
758
+ }
759
+
760
+ .anticon .anticon-icon {
761
+ display: block;
762
+ }
763
+
764
+ .anticon[tabindex] {
765
+ cursor: pointer;
766
+ }
767
+
768
+ .anticon-spin::before,
769
+ .anticon-spin {
770
+ display: inline-block;
771
+ -webkit-animation: loadingCircle 1s infinite linear;
772
+ animation: loadingCircle 1s infinite linear;
773
+ }
774
+
775
+ @-webkit-keyframes loadingCircle {
776
+ 100% {
777
+ -webkit-transform: rotate(360deg);
778
+ transform: rotate(360deg);
779
+ }
780
+ }
781
+
782
+ @keyframes loadingCircle {
783
+ 100% {
784
+ -webkit-transform: rotate(360deg);
785
+ transform: rotate(360deg);
786
+ }
787
+ }
788
+ `;
789
+ function Ut(t) {
790
+ return t && t.getRootNode && t.getRootNode();
791
+ }
792
+ function Je(t) {
793
+ return X() ? Ut(t) instanceof ShadowRoot : !1;
794
+ }
795
+ function Ke(t) {
796
+ return Je(t) ? Ut(t) : null;
797
+ }
798
+ var tr = function() {
799
+ var e = Vt(), r = e.prefixCls, n = e.csp, a = ge(), i = Qe;
800
+ r && (i = i.replace(/anticon/g, r.value)), Rt(function() {
801
+ if (X()) {
802
+ var o = a.vnode.el, l = Ke(o);
803
+ Xe(i, "@ant-design-vue-icons", {
804
+ prepend: !0,
805
+ csp: n.value,
806
+ attachTo: l
807
+ });
808
+ }
809
+ });
810
+ }, er = ["icon", "primaryColor", "secondaryColor"];
811
+ function rr(t, e) {
812
+ if (t == null) return {};
813
+ var r = nr(t, e), n, a;
814
+ if (Object.getOwnPropertySymbols) {
815
+ var i = Object.getOwnPropertySymbols(t);
816
+ for (a = 0; a < i.length; a++)
817
+ n = i[a], !(e.indexOf(n) >= 0) && Object.prototype.propertyIsEnumerable.call(t, n) && (r[n] = t[n]);
818
+ }
819
+ return r;
820
+ }
821
+ function nr(t, e) {
822
+ if (t == null) return {};
823
+ var r = {}, n = Object.keys(t), a, i;
824
+ for (i = 0; i < n.length; i++)
825
+ a = n[i], !(e.indexOf(a) >= 0) && (r[a] = t[a]);
826
+ return r;
827
+ }
828
+ function z(t) {
829
+ for (var e = 1; e < arguments.length; e++) {
830
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
831
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
832
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
833
+ }))), n.forEach(function(a) {
834
+ ar(t, a, r[a]);
835
+ });
836
+ }
837
+ return t;
838
+ }
839
+ function ar(t, e, r) {
840
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
841
+ }
842
+ var j = ve({
843
+ primaryColor: "#333",
844
+ secondaryColor: "#E6E6E6",
845
+ calculated: !1
846
+ });
847
+ function ir(t) {
848
+ var e = t.primaryColor, r = t.secondaryColor;
849
+ j.primaryColor = e, j.secondaryColor = r || Wt(e), j.calculated = !!r;
850
+ }
851
+ function or() {
852
+ return z({}, j);
853
+ }
854
+ var O = function(e, r) {
855
+ var n = z({}, e, r.attrs), a = n.icon, i = n.primaryColor, o = n.secondaryColor, l = rr(n, er), c = j;
856
+ if (i && (c = {
857
+ primaryColor: i,
858
+ secondaryColor: o || Wt(i)
859
+ }), ht(a), !ht(a))
860
+ return null;
861
+ var h = a;
862
+ return h && typeof h.icon == "function" && (h = z({}, h, {
863
+ icon: h.icon(c.primaryColor, c.secondaryColor)
864
+ })), Z(h.icon, "svg-".concat(h.name), z({}, l, {
865
+ "data-icon": h.name,
866
+ width: "1em",
867
+ height: "1em",
868
+ fill: "currentColor",
869
+ "aria-hidden": "true"
870
+ }));
871
+ };
872
+ O.props = {
873
+ icon: Object,
874
+ primaryColor: String,
875
+ secondaryColor: String,
876
+ focusable: String
877
+ };
878
+ O.inheritAttrs = !1;
879
+ O.displayName = "IconBase";
880
+ O.getTwoToneColors = or;
881
+ O.setTwoToneColors = ir;
882
+ function lr(t, e) {
883
+ return sr(t) || fr(t, e) || ur(t, e) || cr();
884
+ }
885
+ function cr() {
886
+ throw new TypeError(`Invalid attempt to destructure non-iterable instance.
887
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);
888
+ }
889
+ function ur(t, e) {
890
+ if (t) {
891
+ if (typeof t == "string") return dt(t, e);
892
+ var r = Object.prototype.toString.call(t).slice(8, -1);
893
+ if (r === "Object" && t.constructor && (r = t.constructor.name), r === "Map" || r === "Set") return Array.from(t);
894
+ if (r === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)) return dt(t, e);
895
+ }
896
+ }
897
+ function dt(t, e) {
898
+ (e == null || e > t.length) && (e = t.length);
899
+ for (var r = 0, n = new Array(e); r < e; r++)
900
+ n[r] = t[r];
901
+ return n;
902
+ }
903
+ function fr(t, e) {
904
+ var r = t == null ? null : typeof Symbol < "u" && t[Symbol.iterator] || t["@@iterator"];
905
+ if (r != null) {
906
+ var n = [], a = !0, i = !1, o, l;
907
+ try {
908
+ for (r = r.call(t); !(a = (o = r.next()).done) && (n.push(o.value), !(e && n.length === e)); a = !0)
909
+ ;
910
+ } catch (c) {
911
+ i = !0, l = c;
912
+ } finally {
913
+ try {
914
+ !a && r.return != null && r.return();
915
+ } finally {
916
+ if (i) throw l;
917
+ }
918
+ }
919
+ return n;
920
+ }
921
+ }
922
+ function sr(t) {
923
+ if (Array.isArray(t)) return t;
924
+ }
925
+ function Gt(t) {
926
+ var e = qt(t), r = lr(e, 2), n = r[0], a = r[1];
927
+ return O.setTwoToneColors({
928
+ primaryColor: n,
929
+ secondaryColor: a
930
+ });
931
+ }
932
+ function hr() {
933
+ var t = O.getTwoToneColors();
934
+ return t.calculated ? [t.primaryColor, t.secondaryColor] : t.primaryColor;
935
+ }
936
+ var dr = Nt({
937
+ name: "InsertStyles",
938
+ setup: function() {
939
+ return tr(), function() {
940
+ return null;
941
+ };
942
+ }
943
+ }), pr = ["class", "icon", "spin", "rotate", "tabindex", "twoToneColor", "onClick"];
944
+ function gr(t, e) {
945
+ return yr(t) || mr(t, e) || br(t, e) || vr();
946
+ }
947
+ function vr() {
948
+ throw new TypeError(`Invalid attempt to destructure non-iterable instance.
949
+ In order to be iterable, non-array objects must have a [Symbol.iterator]() method.`);
950
+ }
951
+ function br(t, e) {
952
+ if (t) {
953
+ if (typeof t == "string") return pt(t, e);
954
+ var r = Object.prototype.toString.call(t).slice(8, -1);
955
+ if (r === "Object" && t.constructor && (r = t.constructor.name), r === "Map" || r === "Set") return Array.from(t);
956
+ if (r === "Arguments" || /^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)) return pt(t, e);
957
+ }
958
+ }
959
+ function pt(t, e) {
960
+ (e == null || e > t.length) && (e = t.length);
961
+ for (var r = 0, n = new Array(e); r < e; r++)
962
+ n[r] = t[r];
963
+ return n;
964
+ }
965
+ function mr(t, e) {
966
+ var r = t == null ? null : typeof Symbol < "u" && t[Symbol.iterator] || t["@@iterator"];
967
+ if (r != null) {
968
+ var n = [], a = !0, i = !1, o, l;
969
+ try {
970
+ for (r = r.call(t); !(a = (o = r.next()).done) && (n.push(o.value), !(e && n.length === e)); a = !0)
971
+ ;
972
+ } catch (c) {
973
+ i = !0, l = c;
974
+ } finally {
975
+ try {
976
+ !a && r.return != null && r.return();
977
+ } finally {
978
+ if (i) throw l;
979
+ }
980
+ }
981
+ return n;
982
+ }
983
+ }
984
+ function yr(t) {
985
+ if (Array.isArray(t)) return t;
986
+ }
987
+ function gt(t) {
988
+ for (var e = 1; e < arguments.length; e++) {
989
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
990
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
991
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
992
+ }))), n.forEach(function(a) {
993
+ M(t, a, r[a]);
994
+ });
995
+ }
996
+ return t;
997
+ }
998
+ function M(t, e, r) {
999
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1000
+ }
1001
+ function Or(t, e) {
1002
+ if (t == null) return {};
1003
+ var r = wr(t, e), n, a;
1004
+ if (Object.getOwnPropertySymbols) {
1005
+ var i = Object.getOwnPropertySymbols(t);
1006
+ for (a = 0; a < i.length; a++)
1007
+ n = i[a], !(e.indexOf(n) >= 0) && Object.prototype.propertyIsEnumerable.call(t, n) && (r[n] = t[n]);
1008
+ }
1009
+ return r;
1010
+ }
1011
+ function wr(t, e) {
1012
+ if (t == null) return {};
1013
+ var r = {}, n = Object.keys(t), a, i;
1014
+ for (i = 0; i < n.length; i++)
1015
+ a = n[i], !(e.indexOf(a) >= 0) && (r[a] = t[a]);
1016
+ return r;
1017
+ }
1018
+ Gt(Be.primary);
1019
+ var f = function(e, r) {
1020
+ var n, a = gt({}, e, r.attrs), i = a.class, o = a.icon, l = a.spin, c = a.rotate, h = a.tabindex, v = a.twoToneColor, b = a.onClick, C = Or(a, pr), x = Vt(), s = x.prefixCls, w = x.rootClassName, ue = (n = {}, M(n, w.value, !!w.value), M(n, s.value, !0), M(n, "".concat(s.value, "-").concat(o.name), !!o.name), M(n, "".concat(s.value, "-spin"), !!l || o.name === "loading"), n), E = h;
1021
+ E === void 0 && b && (E = -1);
1022
+ var fe = c ? {
1023
+ msTransform: "rotate(".concat(c, "deg)"),
1024
+ transform: "rotate(".concat(c, "deg)")
1025
+ } : void 0, se = qt(v), tt = gr(se, 2), he = tt[0], de = tt[1];
1026
+ return u("span", gt({
1027
+ role: "img",
1028
+ "aria-label": o.name
1029
+ }, C, {
1030
+ onClick: b,
1031
+ class: [ue, i],
1032
+ tabindex: E
1033
+ }), [u(O, {
1034
+ icon: o,
1035
+ primaryColor: he,
1036
+ secondaryColor: de,
1037
+ style: fe
1038
+ }, null), u(dr, null, null)]);
1039
+ };
1040
+ f.props = {
1041
+ spin: Boolean,
1042
+ rotate: Number,
1043
+ icon: Object,
1044
+ twoToneColor: [String, Array]
1045
+ };
1046
+ f.displayName = "AntdIcon";
1047
+ f.inheritAttrs = !1;
1048
+ f.getTwoToneColor = hr;
1049
+ f.setTwoToneColor = Gt;
1050
+ var Sr = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M868 545.5L536.1 163a31.96 31.96 0 00-48.3 0L156 545.5a7.97 7.97 0 006 13.2h81c4.6 0 9-2 12.1-5.5L474 300.9V864c0 4.4 3.6 8 8 8h60c4.4 0 8-3.6 8-8V300.9l218.9 252.3c3 3.5 7.4 5.5 12.1 5.5h81c6.8 0 10.5-8 6-13.2z" } }] }, name: "arrow-up", theme: "outlined" };
1051
+ function vt(t) {
1052
+ for (var e = 1; e < arguments.length; e++) {
1053
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1054
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1055
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1056
+ }))), n.forEach(function(a) {
1057
+ xr(t, a, r[a]);
1058
+ });
1059
+ }
1060
+ return t;
1061
+ }
1062
+ function xr(t, e, r) {
1063
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1064
+ }
1065
+ var Zt = function(e, r) {
1066
+ var n = vt({}, e, r.attrs);
1067
+ return u(f, vt({}, n, {
1068
+ icon: Sr
1069
+ }), null);
1070
+ };
1071
+ Zt.displayName = "ArrowUpOutlined";
1072
+ Zt.inheritAttrs = !1;
1073
+ var Pr = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "defs", attrs: {}, children: [{ tag: "style", attrs: {} }] }, { tag: "path", attrs: { d: "M682 455V311l-76 76v68c-.1 50.7-42 92.1-94 92a95.8 95.8 0 01-52-15l-54 55c29.1 22.4 65.9 36 106 36 93.8 0 170-75.1 170-168z" } }, { tag: "path", attrs: { d: "M833 446h-60c-4.4 0-8 3.6-8 8 0 140.3-113.7 254-254 254-63 0-120.7-23-165-61l-54 54a334.01 334.01 0 00179 81v102H326c-13.9 0-24.9 14.3-25 32v36c.1 4.4 2.9 8 6 8h408c3.2 0 6-3.6 6-8v-36c0-17.7-11-32-25-32H547V782c165.3-17.9 294-157.9 294-328 0-4.4-3.6-8-8-8zm13.1-377.7l-43.5-41.9a8 8 0 00-11.2.1l-129 129C634.3 101.2 577 64 511 64c-93.9 0-170 75.3-170 168v224c0 6.7.4 13.3 1.2 19.8l-68 68A252.33 252.33 0 01258 454c-.2-4.4-3.8-8-8-8h-60c-4.4 0-8 3.6-8 8 0 53 12.5 103 34.6 147.4l-137 137a8.03 8.03 0 000 11.3l42.7 42.7c3.1 3.1 8.2 3.1 11.3 0L846.2 79.8l.1-.1c3.1-3.2 3-8.3-.2-11.4zM417 401V232c0-50.6 41.9-92 94-92 46 0 84.1 32.3 92.3 74.7L417 401z" } }] }, name: "audio-muted", theme: "outlined" };
1074
+ function bt(t) {
1075
+ for (var e = 1; e < arguments.length; e++) {
1076
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1077
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1078
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1079
+ }))), n.forEach(function(a) {
1080
+ Cr(t, a, r[a]);
1081
+ });
1082
+ }
1083
+ return t;
1084
+ }
1085
+ function Cr(t, e, r) {
1086
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1087
+ }
1088
+ var Xt = function(e, r) {
1089
+ var n = bt({}, e, r.attrs);
1090
+ return u(f, bt({}, n, {
1091
+ icon: Pr
1092
+ }), null);
1093
+ };
1094
+ Xt.displayName = "AudioMutedOutlined";
1095
+ Xt.inheritAttrs = !1;
1096
+ var Mr = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M842 454c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8 0 140.3-113.7 254-254 254S258 594.3 258 454c0-4.4-3.6-8-8-8h-60c-4.4 0-8 3.6-8 8 0 168.7 126.6 307.9 290 327.6V884H326.7c-13.7 0-24.7 14.3-24.7 32v36c0 4.4 2.8 8 6.2 8h407.6c3.4 0 6.2-3.6 6.2-8v-36c0-17.7-11-32-24.7-32H548V782.1c165.3-18 294-158 294-328.1zM512 624c93.9 0 170-75.2 170-168V232c0-92.8-76.1-168-170-168s-170 75.2-170 168v224c0 92.8 76.1 168 170 168zm-94-392c0-50.6 41.9-92 94-92s94 41.4 94 92v224c0 50.6-41.9 92-94 92s-94-41.4-94-92V232z" } }] }, name: "audio", theme: "outlined" };
1097
+ function mt(t) {
1098
+ for (var e = 1; e < arguments.length; e++) {
1099
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1100
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1101
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1102
+ }))), n.forEach(function(a) {
1103
+ jr(t, a, r[a]);
1104
+ });
1105
+ }
1106
+ return t;
1107
+ }
1108
+ function jr(t, e, r) {
1109
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1110
+ }
1111
+ var Yt = function(e, r) {
1112
+ var n = mt({}, e, r.attrs);
1113
+ return u(f, mt({}, n, {
1114
+ icon: Mr
1115
+ }), null);
1116
+ };
1117
+ Yt.displayName = "AudioOutlined";
1118
+ Yt.inheritAttrs = !1;
1119
+ var Ar = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "defs", attrs: {}, children: [{ tag: "style", attrs: {} }] }, { tag: "path", attrs: { d: "M899.1 869.6l-53-305.6H864c14.4 0 26-11.6 26-26V346c0-14.4-11.6-26-26-26H618V138c0-14.4-11.6-26-26-26H432c-14.4 0-26 11.6-26 26v182H160c-14.4 0-26 11.6-26 26v192c0 14.4 11.6 26 26 26h17.9l-53 305.6a25.95 25.95 0 0025.6 30.4h723c1.5 0 3-.1 4.4-.4a25.88 25.88 0 0021.2-30zM204 390h272V182h72v208h272v104H204V390zm468 440V674c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v156H416V674c0-4.4-3.6-8-8-8h-48c-4.4 0-8 3.6-8 8v156H202.8l45.1-260H776l45.1 260H672z" } }] }, name: "clear", theme: "outlined" };
1120
+ function yt(t) {
1121
+ for (var e = 1; e < arguments.length; e++) {
1122
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1123
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1124
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1125
+ }))), n.forEach(function(a) {
1126
+ Fr(t, a, r[a]);
1127
+ });
1128
+ }
1129
+ return t;
1130
+ }
1131
+ function Fr(t, e, r) {
1132
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1133
+ }
1134
+ var Qt = function(e, r) {
1135
+ var n = yt({}, e, r.attrs);
1136
+ return u(f, yt({}, n, {
1137
+ icon: Ar
1138
+ }), null);
1139
+ };
1140
+ Qt.displayName = "ClearOutlined";
1141
+ Qt.inheritAttrs = !1;
1142
+ var $r = { icon: { tag: "svg", attrs: { "fill-rule": "evenodd", viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M512 64c247.4 0 448 200.6 448 448S759.4 960 512 960 64 759.4 64 512 264.6 64 512 64zm127.98 274.82h-.04l-.08.06L512 466.75 384.14 338.88c-.04-.05-.06-.06-.08-.06a.12.12 0 00-.07 0c-.03 0-.05.01-.09.05l-45.02 45.02a.2.2 0 00-.05.09.12.12 0 000 .07v.02a.27.27 0 00.06.06L466.75 512 338.88 639.86c-.05.04-.06.06-.06.08a.12.12 0 000 .07c0 .03.01.05.05.09l45.02 45.02a.2.2 0 00.09.05.12.12 0 00.07 0c.02 0 .04-.01.08-.05L512 557.25l127.86 127.87c.04.04.06.05.08.05a.12.12 0 00.07 0c.03 0 .05-.01.09-.05l45.02-45.02a.2.2 0 00.05-.09.12.12 0 000-.07v-.02a.27.27 0 00-.05-.06L557.25 512l127.87-127.86c.04-.04.05-.06.05-.08a.12.12 0 000-.07c0-.03-.01-.05-.05-.09l-45.02-45.02a.2.2 0 00-.09-.05.12.12 0 00-.07 0z" } }] }, name: "close-circle", theme: "filled" };
1143
+ function Ot(t) {
1144
+ for (var e = 1; e < arguments.length; e++) {
1145
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1146
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1147
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1148
+ }))), n.forEach(function(a) {
1149
+ Tr(t, a, r[a]);
1150
+ });
1151
+ }
1152
+ return t;
1153
+ }
1154
+ function Tr(t, e, r) {
1155
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1156
+ }
1157
+ var Jt = function(e, r) {
1158
+ var n = Ot({}, e, r.attrs);
1159
+ return u(f, Ot({}, n, {
1160
+ icon: $r
1161
+ }), null);
1162
+ };
1163
+ Jt.displayName = "CloseCircleFilled";
1164
+ Jt.inheritAttrs = !1;
1165
+ var Hr = { icon: { tag: "svg", attrs: { "fill-rule": "evenodd", viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M799.86 166.31c.02 0 .04.02.08.06l57.69 57.7c.04.03.05.05.06.08a.12.12 0 010 .06c0 .03-.02.05-.06.09L569.93 512l287.7 287.7c.04.04.05.06.06.09a.12.12 0 010 .07c0 .02-.02.04-.06.08l-57.7 57.69c-.03.04-.05.05-.07.06a.12.12 0 01-.07 0c-.03 0-.05-.02-.09-.06L512 569.93l-287.7 287.7c-.04.04-.06.05-.09.06a.12.12 0 01-.07 0c-.02 0-.04-.02-.08-.06l-57.69-57.7c-.04-.03-.05-.05-.06-.07a.12.12 0 010-.07c0-.03.02-.05.06-.09L454.07 512l-287.7-287.7c-.04-.04-.05-.06-.06-.09a.12.12 0 010-.07c0-.02.02-.04.06-.08l57.7-57.69c.03-.04.05-.05.07-.06a.12.12 0 01.07 0c.03 0 .05.02.09.06L512 454.07l287.7-287.7c.04-.04.06-.05.09-.06a.12.12 0 01.07 0z" } }] }, name: "close", theme: "outlined" };
1166
+ function wt(t) {
1167
+ for (var e = 1; e < arguments.length; e++) {
1168
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1169
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1170
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1171
+ }))), n.forEach(function(a) {
1172
+ zr(t, a, r[a]);
1173
+ });
1174
+ }
1175
+ return t;
1176
+ }
1177
+ function zr(t, e, r) {
1178
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1179
+ }
1180
+ var Kt = function(e, r) {
1181
+ var n = wt({}, e, r.attrs);
1182
+ return u(f, wt({}, n, {
1183
+ icon: Hr
1184
+ }), null);
1185
+ };
1186
+ Kt.displayName = "CloseOutlined";
1187
+ Kt.inheritAttrs = !1;
1188
+ var Er = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M176 511a56 56 0 10112 0 56 56 0 10-112 0zm280 0a56 56 0 10112 0 56 56 0 10-112 0zm280 0a56 56 0 10112 0 56 56 0 10-112 0z" } }] }, name: "ellipsis", theme: "outlined" };
1189
+ function St(t) {
1190
+ for (var e = 1; e < arguments.length; e++) {
1191
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1192
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1193
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1194
+ }))), n.forEach(function(a) {
1195
+ Rr(t, a, r[a]);
1196
+ });
1197
+ }
1198
+ return t;
1199
+ }
1200
+ function Rr(t, e, r) {
1201
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1202
+ }
1203
+ var te = function(e, r) {
1204
+ var n = St({}, e, r.attrs);
1205
+ return u(f, St({}, n, {
1206
+ icon: Er
1207
+ }), null);
1208
+ };
1209
+ te.displayName = "EllipsisOutlined";
1210
+ te.inheritAttrs = !1;
1211
+ var Nr = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M854.6 288.7c6 6 9.4 14.1 9.4 22.6V928c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h424.7c8.5 0 16.7 3.4 22.7 9.4l215.2 215.3zM790.2 326L602 137.8V326h188.2zM575.34 477.84l-61.22 102.3L452.3 477.8a12 12 0 00-10.27-5.79h-38.44a12 12 0 00-6.4 1.85 12 12 0 00-3.75 16.56l82.34 130.42-83.45 132.78a12 12 0 00-1.84 6.39 12 12 0 0012 12h34.46a12 12 0 0010.21-5.7l62.7-101.47 62.3 101.45a12 12 0 0010.23 5.72h37.48a12 12 0 006.48-1.9 12 12 0 003.62-16.58l-83.83-130.55 85.3-132.47a12 12 0 001.9-6.5 12 12 0 00-12-12h-35.7a12 12 0 00-10.29 5.84z" } }] }, name: "file-excel", theme: "filled" };
1212
+ function xt(t) {
1213
+ for (var e = 1; e < arguments.length; e++) {
1214
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1215
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1216
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1217
+ }))), n.forEach(function(a) {
1218
+ Ir(t, a, r[a]);
1219
+ });
1220
+ }
1221
+ return t;
1222
+ }
1223
+ function Ir(t, e, r) {
1224
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1225
+ }
1226
+ var ee = function(e, r) {
1227
+ var n = xt({}, e, r.attrs);
1228
+ return u(f, xt({}, n, {
1229
+ icon: Nr
1230
+ }), null);
1231
+ };
1232
+ ee.displayName = "FileExcelFilled";
1233
+ ee.inheritAttrs = !1;
1234
+ var _r = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M854.6 288.7L639.4 73.4c-6-6-14.2-9.4-22.7-9.4H192c-17.7 0-32 14.3-32 32v832c0 17.7 14.3 32 32 32h640c17.7 0 32-14.3 32-32V311.3c0-8.5-3.4-16.6-9.4-22.6zM400 402c22.1 0 40 17.9 40 40s-17.9 40-40 40-40-17.9-40-40 17.9-40 40-40zm296 294H328c-6.7 0-10.4-7.7-6.3-12.9l99.8-127.2a8 8 0 0112.6 0l41.1 52.4 77.8-99.2a8 8 0 0112.6 0l136.5 174c4.3 5.2.5 12.9-6.1 12.9zm-94-370V137.8L790.2 326H602z" } }] }, name: "file-image", theme: "filled" };
1235
+ function Pt(t) {
1236
+ for (var e = 1; e < arguments.length; e++) {
1237
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1238
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1239
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1240
+ }))), n.forEach(function(a) {
1241
+ Lr(t, a, r[a]);
1242
+ });
1243
+ }
1244
+ return t;
1245
+ }
1246
+ function Lr(t, e, r) {
1247
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1248
+ }
1249
+ var re = function(e, r) {
1250
+ var n = Pt({}, e, r.attrs);
1251
+ return u(f, Pt({}, n, {
1252
+ icon: _r
1253
+ }), null);
1254
+ };
1255
+ re.displayName = "FileImageFilled";
1256
+ re.inheritAttrs = !1;
1257
+ var Vr = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M854.6 288.7c6 6 9.4 14.1 9.4 22.6V928c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h424.7c8.5 0 16.7 3.4 22.7 9.4l215.2 215.3zM790.2 326L602 137.8V326h188.2zM426.13 600.93l59.11 132.97a16 16 0 0014.62 9.5h24.06a16 16 0 0014.63-9.51l59.1-133.35V758a16 16 0 0016.01 16H641a16 16 0 0016-16V486a16 16 0 00-16-16h-34.75a16 16 0 00-14.67 9.62L512.1 662.2l-79.48-182.59a16 16 0 00-14.67-9.61H383a16 16 0 00-16 16v272a16 16 0 0016 16h27.13a16 16 0 0016-16V600.93z" } }] }, name: "file-markdown", theme: "filled" };
1258
+ function Ct(t) {
1259
+ for (var e = 1; e < arguments.length; e++) {
1260
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1261
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1262
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1263
+ }))), n.forEach(function(a) {
1264
+ kr(t, a, r[a]);
1265
+ });
1266
+ }
1267
+ return t;
1268
+ }
1269
+ function kr(t, e, r) {
1270
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1271
+ }
1272
+ var ne = function(e, r) {
1273
+ var n = Ct({}, e, r.attrs);
1274
+ return u(f, Ct({}, n, {
1275
+ icon: Vr
1276
+ }), null);
1277
+ };
1278
+ ne.displayName = "FileMarkdownFilled";
1279
+ ne.inheritAttrs = !1;
1280
+ var Br = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M854.6 288.7c6 6 9.4 14.1 9.4 22.6V928c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h424.7c8.5 0 16.7 3.4 22.7 9.4l215.2 215.3zM790.2 326L602 137.8V326h188.2zM633.22 637.26c-15.18-.5-31.32.67-49.65 2.96-24.3-14.99-40.66-35.58-52.28-65.83l1.07-4.38 1.24-5.18c4.3-18.13 6.61-31.36 7.3-44.7.52-10.07-.04-19.36-1.83-27.97-3.3-18.59-16.45-29.46-33.02-30.13-15.45-.63-29.65 8-33.28 21.37-5.91 21.62-2.45 50.07 10.08 98.59-15.96 38.05-37.05 82.66-51.2 107.54-18.89 9.74-33.6 18.6-45.96 28.42-16.3 12.97-26.48 26.3-29.28 40.3-1.36 6.49.69 14.97 5.36 21.92 5.3 7.88 13.28 13 22.85 13.74 24.15 1.87 53.83-23.03 86.6-79.26 3.29-1.1 6.77-2.26 11.02-3.7l11.9-4.02c7.53-2.54 12.99-4.36 18.39-6.11 23.4-7.62 41.1-12.43 57.2-15.17 27.98 14.98 60.32 24.8 82.1 24.8 17.98 0 30.13-9.32 34.52-23.99 3.85-12.88.8-27.82-7.48-36.08-8.56-8.41-24.3-12.43-45.65-13.12zM385.23 765.68v-.36l.13-.34a54.86 54.86 0 015.6-10.76c4.28-6.58 10.17-13.5 17.47-20.87 3.92-3.95 8-7.8 12.79-12.12 1.07-.96 7.91-7.05 9.19-8.25l11.17-10.4-8.12 12.93c-12.32 19.64-23.46 33.78-33 43-3.51 3.4-6.6 5.9-9.1 7.51a16.43 16.43 0 01-2.61 1.42c-.41.17-.77.27-1.13.3a2.2 2.2 0 01-1.12-.15 2.07 2.07 0 01-1.27-1.91zM511.17 547.4l-2.26 4-1.4-4.38c-3.1-9.83-5.38-24.64-6.01-38-.72-15.2.49-24.32 5.29-24.32 6.74 0 9.83 10.8 10.07 27.05.22 14.28-2.03 29.14-5.7 35.65zm-5.81 58.46l1.53-4.05 2.09 3.8c11.69 21.24 26.86 38.96 43.54 51.31l3.6 2.66-4.39.9c-16.33 3.38-31.54 8.46-52.34 16.85 2.17-.88-21.62 8.86-27.64 11.17l-5.25 2.01 2.8-4.88c12.35-21.5 23.76-47.32 36.05-79.77zm157.62 76.26c-7.86 3.1-24.78.33-54.57-12.39l-7.56-3.22 8.2-.6c23.3-1.73 39.8-.45 49.42 3.07 4.1 1.5 6.83 3.39 8.04 5.55a4.64 4.64 0 01-1.36 6.31 6.7 6.7 0 01-2.17 1.28z" } }] }, name: "file-pdf", theme: "filled" };
1281
+ function Mt(t) {
1282
+ for (var e = 1; e < arguments.length; e++) {
1283
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1284
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1285
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1286
+ }))), n.forEach(function(a) {
1287
+ Dr(t, a, r[a]);
1288
+ });
1289
+ }
1290
+ return t;
1291
+ }
1292
+ function Dr(t, e, r) {
1293
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1294
+ }
1295
+ var ae = function(e, r) {
1296
+ var n = Mt({}, e, r.attrs);
1297
+ return u(f, Mt({}, n, {
1298
+ icon: Br
1299
+ }), null);
1300
+ };
1301
+ ae.displayName = "FilePdfFilled";
1302
+ ae.inheritAttrs = !1;
1303
+ var Wr = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M854.6 288.7c6 6 9.4 14.1 9.4 22.6V928c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h424.7c8.5 0 16.7 3.4 22.7 9.4l215.2 215.3zM790.2 326L602 137.8V326h188.2zM468.53 760v-91.54h59.27c60.57 0 100.2-39.65 100.2-98.12 0-58.22-39.58-98.34-99.98-98.34H424a12 12 0 00-12 12v276a12 12 0 0012 12h32.53a12 12 0 0012-12zm0-139.33h34.9c47.82 0 67.19-12.93 67.19-50.33 0-32.05-18.12-50.12-49.87-50.12h-52.22v100.45z" } }] }, name: "file-ppt", theme: "filled" };
1304
+ function jt(t) {
1305
+ for (var e = 1; e < arguments.length; e++) {
1306
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1307
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1308
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1309
+ }))), n.forEach(function(a) {
1310
+ qr(t, a, r[a]);
1311
+ });
1312
+ }
1313
+ return t;
1314
+ }
1315
+ function qr(t, e, r) {
1316
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1317
+ }
1318
+ var ie = function(e, r) {
1319
+ var n = jt({}, e, r.attrs);
1320
+ return u(f, jt({}, n, {
1321
+ icon: Wr
1322
+ }), null);
1323
+ };
1324
+ ie.displayName = "FilePptFilled";
1325
+ ie.inheritAttrs = !1;
1326
+ var Ur = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M854.6 288.7c6 6 9.4 14.1 9.4 22.6V928c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h424.7c8.5 0 16.7 3.4 22.7 9.4l215.2 215.3zM790.2 326L602 137.8V326h188.2zM320 482a8 8 0 00-8 8v48a8 8 0 008 8h384a8 8 0 008-8v-48a8 8 0 00-8-8H320zm0 136a8 8 0 00-8 8v48a8 8 0 008 8h184a8 8 0 008-8v-48a8 8 0 00-8-8H320z" } }] }, name: "file-text", theme: "filled" };
1327
+ function At(t) {
1328
+ for (var e = 1; e < arguments.length; e++) {
1329
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1330
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1331
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1332
+ }))), n.forEach(function(a) {
1333
+ Gr(t, a, r[a]);
1334
+ });
1335
+ }
1336
+ return t;
1337
+ }
1338
+ function Gr(t, e, r) {
1339
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1340
+ }
1341
+ var oe = function(e, r) {
1342
+ var n = At({}, e, r.attrs);
1343
+ return u(f, At({}, n, {
1344
+ icon: Ur
1345
+ }), null);
1346
+ };
1347
+ oe.displayName = "FileTextFilled";
1348
+ oe.inheritAttrs = !1;
1349
+ var Zr = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M854.6 288.7c6 6 9.4 14.1 9.4 22.6V928c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h424.7c8.5 0 16.7 3.4 22.7 9.4l215.2 215.3zM790.2 326L602 137.8V326h188.2zM512 566.1l52.81 197a12 12 0 0011.6 8.9h31.77a12 12 0 0011.6-8.88l74.37-276a12 12 0 00.4-3.12 12 12 0 00-12-12h-35.57a12 12 0 00-11.7 9.31l-45.78 199.1-49.76-199.32A12 12 0 00528.1 472h-32.2a12 12 0 00-11.64 9.1L434.6 680.01 388.5 481.3a12 12 0 00-11.68-9.29h-35.39a12 12 0 00-3.11.41 12 12 0 00-8.47 14.7l74.17 276A12 12 0 00415.6 772h31.99a12 12 0 0011.59-8.9l52.81-197z" } }] }, name: "file-word", theme: "filled" };
1350
+ function Ft(t) {
1351
+ for (var e = 1; e < arguments.length; e++) {
1352
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1353
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1354
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1355
+ }))), n.forEach(function(a) {
1356
+ Xr(t, a, r[a]);
1357
+ });
1358
+ }
1359
+ return t;
1360
+ }
1361
+ function Xr(t, e, r) {
1362
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1363
+ }
1364
+ var le = function(e, r) {
1365
+ var n = Ft({}, e, r.attrs);
1366
+ return u(f, Ft({}, n, {
1367
+ icon: Zr
1368
+ }), null);
1369
+ };
1370
+ le.displayName = "FileWordFilled";
1371
+ le.inheritAttrs = !1;
1372
+ var Yr = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M854.6 288.7c6 6 9.4 14.1 9.4 22.6V928c0 17.7-14.3 32-32 32H192c-17.7 0-32-14.3-32-32V96c0-17.7 14.3-32 32-32h424.7c8.5 0 16.7 3.4 22.7 9.4l215.2 215.3zM790.2 326L602 137.8V326h188.2zM296 136v64h64v-64h-64zm64 64v64h64v-64h-64zm-64 64v64h64v-64h-64zm64 64v64h64v-64h-64zm-64 64v64h64v-64h-64zm64 64v64h64v-64h-64zm-64 64v64h64v-64h-64zm0 64v160h128V584H296zm48 48h32v64h-32v-64z" } }] }, name: "file-zip", theme: "filled" };
1373
+ function $t(t) {
1374
+ for (var e = 1; e < arguments.length; e++) {
1375
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1376
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1377
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1378
+ }))), n.forEach(function(a) {
1379
+ Qr(t, a, r[a]);
1380
+ });
1381
+ }
1382
+ return t;
1383
+ }
1384
+ function Qr(t, e, r) {
1385
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1386
+ }
1387
+ var ce = function(e, r) {
1388
+ var n = $t({}, e, r.attrs);
1389
+ return u(f, $t({}, n, {
1390
+ icon: Yr
1391
+ }), null);
1392
+ };
1393
+ ce.displayName = "FileZipFilled";
1394
+ ce.inheritAttrs = !1;
1395
+ var Jr = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M724 218.3V141c0-6.7-7.7-10.4-12.9-6.3L260.3 486.8a31.86 31.86 0 000 50.3l450.8 352.1c5.3 4.1 12.9.4 12.9-6.3v-77.3c0-4.9-2.3-9.6-6.1-12.6l-360-281 360-281.1c3.8-3 6.1-7.7 6.1-12.6z" } }] }, name: "left", theme: "outlined" };
1396
+ function Tt(t) {
1397
+ for (var e = 1; e < arguments.length; e++) {
1398
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1399
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1400
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1401
+ }))), n.forEach(function(a) {
1402
+ Kr(t, a, r[a]);
1403
+ });
1404
+ }
1405
+ return t;
1406
+ }
1407
+ function Kr(t, e, r) {
1408
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1409
+ }
1410
+ var Q = function(e, r) {
1411
+ var n = Tt({}, e, r.attrs);
1412
+ return u(f, Tt({}, n, {
1413
+ icon: Jr
1414
+ }), null);
1415
+ };
1416
+ Q.displayName = "LeftOutlined";
1417
+ Q.inheritAttrs = !1;
1418
+ var tn = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M482 152h60q8 0 8 8v704q0 8-8 8h-60q-8 0-8-8V160q0-8 8-8z" } }, { tag: "path", attrs: { d: "M192 474h672q8 0 8 8v60q0 8-8 8H160q-8 0-8-8v-60q0-8 8-8z" } }] }, name: "plus", theme: "outlined" };
1419
+ function Ht(t) {
1420
+ for (var e = 1; e < arguments.length; e++) {
1421
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1422
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1423
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1424
+ }))), n.forEach(function(a) {
1425
+ en(t, a, r[a]);
1426
+ });
1427
+ }
1428
+ return t;
1429
+ }
1430
+ function en(t, e, r) {
1431
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1432
+ }
1433
+ var J = function(e, r) {
1434
+ var n = Ht({}, e, r.attrs);
1435
+ return u(f, Ht({}, n, {
1436
+ icon: tn
1437
+ }), null);
1438
+ };
1439
+ J.displayName = "PlusOutlined";
1440
+ J.inheritAttrs = !1;
1441
+ var rn = { icon: { tag: "svg", attrs: { viewBox: "64 64 896 896", focusable: "false" }, children: [{ tag: "path", attrs: { d: "M765.7 486.8L314.9 134.7A7.97 7.97 0 00302 141v77.3c0 4.9 2.3 9.6 6.1 12.6l360 281.1-360 281.1c-3.9 3-6.1 7.7-6.1 12.6V883c0 6.7 7.7 10.4 12.9 6.3l450.8-352.1a31.96 31.96 0 000-50.4z" } }] }, name: "right", theme: "outlined" };
1442
+ function zt(t) {
1443
+ for (var e = 1; e < arguments.length; e++) {
1444
+ var r = arguments[e] != null ? Object(arguments[e]) : {}, n = Object.keys(r);
1445
+ typeof Object.getOwnPropertySymbols == "function" && (n = n.concat(Object.getOwnPropertySymbols(r).filter(function(a) {
1446
+ return Object.getOwnPropertyDescriptor(r, a).enumerable;
1447
+ }))), n.forEach(function(a) {
1448
+ nn(t, a, r[a]);
1449
+ });
1450
+ }
1451
+ return t;
1452
+ }
1453
+ function nn(t, e, r) {
1454
+ return e in t ? Object.defineProperty(t, e, { value: r, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = r, t;
1455
+ }
1456
+ var K = function(e, r) {
1457
+ var n = zt({}, e, r.attrs);
1458
+ return u(f, zt({}, n, {
1459
+ icon: rn
1460
+ }), null);
1461
+ };
1462
+ K.displayName = "RightOutlined";
1463
+ K.inheritAttrs = !1;
1464
+ const Et = 1, dn = /* @__PURE__ */ Nt({
1465
+ name: "AXAttachmentsFileList",
1466
+ __name: "FileList",
1467
+ props: {
1468
+ prefixCls: null,
1469
+ items: null,
1470
+ onRemove: {
1471
+ type: Function
1472
+ },
1473
+ overflow: null,
1474
+ upload: null,
1475
+ imageProps: null,
1476
+ listClassName: null,
1477
+ listStyle: null,
1478
+ itemClassName: null,
1479
+ itemStyle: null
1480
+ },
1481
+ setup(t) {
1482
+ const e = be(() => `${t.prefixCls}-list`), r = me("file-list-container"), [n, a] = I(!1), i = xe();
1483
+ ye(() => {
1484
+ a(!0), Oe(() => {
1485
+ a(!1);
1486
+ });
1487
+ });
1488
+ const [o, l] = I(!1), [c, h] = I(!1), v = () => {
1489
+ const s = r.value;
1490
+ s && (t.overflow === "scrollX" ? (l(Math.abs(s.scrollLeft) >= Et), h(s.scrollWidth - s.clientWidth - Math.abs(s.scrollLeft) >= Et)) : t.overflow === "scrollY" && (l(s.scrollTop !== 0), h(s.scrollHeight - s.clientHeight !== s.scrollTop)));
1491
+ };
1492
+ we([() => t.overflow, () => t.items.length], () => {
1493
+ Rt(() => {
1494
+ v();
1495
+ });
1496
+ }, {
1497
+ immediate: !0
1498
+ });
1499
+ const b = (s) => {
1500
+ const w = r.value;
1501
+ w && w.scrollTo({
1502
+ left: w.scrollLeft + s * w.clientWidth,
1503
+ behavior: "smooth"
1504
+ });
1505
+ }, C = () => {
1506
+ b(-1);
1507
+ }, x = () => {
1508
+ b(1);
1509
+ };
1510
+ return () => u("div", {
1511
+ class: rt(e.value, {
1512
+ [`${e.value}-overflow-${t.overflow}`]: t.overflow,
1513
+ [`${e.value}-overflow-ping-start`]: o.value,
1514
+ [`${e.value}-overflow-ping-end`]: c.value
1515
+ }, t.listClassName),
1516
+ ref: "file-list-container",
1517
+ onScroll: v,
1518
+ style: t.listStyle
1519
+ }, [t.items.map((s) => u(Ce, {
1520
+ key: s.uid,
1521
+ prefixCls: t.prefixCls,
1522
+ item: s,
1523
+ onRemove: t.onRemove,
1524
+ className: rt(t.itemClassName),
1525
+ imageProps: t.imageProps,
1526
+ style: {
1527
+ ...t.itemStyle
1528
+ }
1529
+ }, null)), !i.value.disabled && u(Pe, {
1530
+ upload: t.upload,
1531
+ children: u(N, {
1532
+ class: `${e.value}-upload-btn`,
1533
+ type: "dashed"
1534
+ }, {
1535
+ default: () => [u(J, {
1536
+ class: `${e.value}-upload-btn-icon`
1537
+ }, null)]
1538
+ })
1539
+ }, null), t.overflow === "scrollX" && u(Se, null, [u(N, {
1540
+ size: "small",
1541
+ shape: "circle",
1542
+ class: `${e.value}-prev-btn`,
1543
+ icon: u(Q, null, null),
1544
+ onClick: C
1545
+ }, null), u(N, {
1546
+ size: "small",
1547
+ shape: "circle",
1548
+ class: `${e.value}-next-btn`,
1549
+ icon: u(K, null, null),
1550
+ onClick: x
1551
+ }, null)])]);
1552
+ }
1553
+ });
1554
+ export {
1555
+ Zt as A,
1556
+ Jt as C,
1557
+ te as E,
1558
+ ee as F,
1559
+ Q as L,
1560
+ K as R,
1561
+ hn as T,
1562
+ dn as _,
1563
+ re as a,
1564
+ ne as b,
1565
+ ae as c,
1566
+ ie as d,
1567
+ le as e,
1568
+ ce as f,
1569
+ oe as g,
1570
+ Kt as h,
1571
+ Qt as i,
1572
+ Xt as j,
1573
+ Yt as k
1574
+ };