yahee-components 0.0.5

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 (229) hide show
  1. package/es/_virtual/_commonjsHelpers.js +8 -0
  2. package/es/_virtual/_plugin-vue_export-helper.js +9 -0
  3. package/es/_virtual/dayjs.min.js +4 -0
  4. package/es/_virtual/lodash.js +4 -0
  5. package/es/annex-upload/annex-upload.vue.js +158 -0
  6. package/es/annex-upload/annex-upload.vue2.js +4 -0
  7. package/es/annex-upload/index.js +7 -0
  8. package/es/annex-upload/mimeType.js +822 -0
  9. package/es/annex-upload/style/index.css +7 -0
  10. package/es/comprehensive-search/comprehensive-search.vue.js +234 -0
  11. package/es/comprehensive-search/comprehensive-search.vue2.js +4 -0
  12. package/es/comprehensive-search/index.js +7 -0
  13. package/es/comprehensive-search/style/index.css +24 -0
  14. package/es/copy/copy.vue.js +57 -0
  15. package/es/copy/copy.vue2.js +4 -0
  16. package/es/copy/index.js +7 -0
  17. package/es/copy/style/index.css +10 -0
  18. package/es/image-upload/image-upload.vue.js +176 -0
  19. package/es/image-upload/image-upload.vue2.js +4 -0
  20. package/es/image-upload/index.js +7 -0
  21. package/es/image-upload/style/index.css +33 -0
  22. package/es/index.js +18 -0
  23. package/es/input/index.js +7 -0
  24. package/es/input/input.vue.js +40 -0
  25. package/es/input/input.vue2.js +4 -0
  26. package/es/input/style/index.css +3 -0
  27. package/es/installs.js +17 -0
  28. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/adapters/adapters.js +53 -0
  29. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/adapters/fetch.js +141 -0
  30. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/adapters/xhr.js +71 -0
  31. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/axios.js +46 -0
  32. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/cancel/CancelToken.js +77 -0
  33. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/cancel/CanceledError.js +11 -0
  34. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/cancel/isCancel.js +6 -0
  35. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/Axios.js +133 -0
  36. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/AxiosError.js +54 -0
  37. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/AxiosHeaders.js +173 -0
  38. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/InterceptorManager.js +58 -0
  39. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/buildFullPath.js +8 -0
  40. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/dispatchRequest.js +31 -0
  41. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/mergeConfig.js +70 -0
  42. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/settle.js +14 -0
  43. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/transformData.js +13 -0
  44. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/defaults/index.js +89 -0
  45. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/defaults/transitional.js +8 -0
  46. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/env/data.js +4 -0
  47. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +33 -0
  48. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/HttpStatusCode.js +71 -0
  49. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/bind.js +8 -0
  50. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/buildURL.js +19 -0
  51. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/combineURLs.js +6 -0
  52. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/composeSignals.js +30 -0
  53. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/cookies.js +32 -0
  54. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/formDataToJSON.js +31 -0
  55. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/isAbsoluteURL.js +6 -0
  56. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/isAxiosError.js +7 -0
  57. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/isURLSameOrigin.js +37 -0
  58. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/null.js +4 -0
  59. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/parseHeaders.js +30 -0
  60. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/parseProtocol.js +7 -0
  61. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/progressEventReducer.js +35 -0
  62. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/resolveConfig.js +33 -0
  63. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/speedometer.js +19 -0
  64. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/spread.js +8 -0
  65. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/throttle.js +15 -0
  66. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/toFormData.js +83 -0
  67. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/toURLEncodedForm.js +13 -0
  68. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/trackStream.js +63 -0
  69. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/validator.js +51 -0
  70. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/browser/classes/Blob.js +4 -0
  71. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/browser/classes/FormData.js +4 -0
  72. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +5 -0
  73. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/browser/index.js +15 -0
  74. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/common/utils.js +9 -0
  75. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/index.js +9 -0
  76. package/es/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/utils.js +233 -0
  77. package/es/node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/dayjs.min.js +282 -0
  78. package/es/node_modules/.pnpm/element-plus@2.8.3_vue@3.5.4_typescript@5.6.2_/node_modules/element-plus/es/locale/lang/zh-cn.js +181 -0
  79. package/es/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js +3677 -0
  80. package/es/node_modules/.pnpm/v3-infinite-loading@1.3.2/node_modules/v3-infinite-loading/lib/v3-infinite-loading.es.js +120 -0
  81. package/es/operation-log/index.js +7 -0
  82. package/es/operation-log/operation-log-content.vue.js +100 -0
  83. package/es/operation-log/operation-log-content.vue2.js +4 -0
  84. package/es/operation-log/operation-log-dialog.vue.js +70 -0
  85. package/es/operation-log/operation-log-dialog.vue2.js +4 -0
  86. package/es/operation-log/operation-log-form.vue.js +7 -0
  87. package/es/operation-log/operation-log-form.vue2.js +181 -0
  88. package/es/operation-log/operation-log.vue.js +231 -0
  89. package/es/operation-log/operation-log.vue2.js +4 -0
  90. package/es/operation-log/style/index.css +220 -0
  91. package/es/packages/components/api/log-server.js +54 -0
  92. package/es/packages/components/api/remarkApi.js +15 -0
  93. package/es/packages/components/api/requestRemark.js +47 -0
  94. package/es/packages/components/api/requestTools.js +62 -0
  95. package/es/packages/components/assets/images/errorimg.png.js +4 -0
  96. package/es/packages/components/assets/images/excel.png.js +4 -0
  97. package/es/packages/components/assets/images/file-word.png.js +4 -0
  98. package/es/packages/components/assets/images/pdf.png.js +4 -0
  99. package/es/packages/components/assets/images/ppt.png.js +4 -0
  100. package/es/packages/components/assets/images/vue.svg.js +4 -0
  101. package/es/packages/components/hooks/useClipboard.js +28 -0
  102. package/es/packages/components/hooks/useImg.js +15 -0
  103. package/es/packages/components/hooks/useImgPath.js +14 -0
  104. package/es/packages/components/hooks/useImport.js +31 -0
  105. package/es/packages/components/hooks/useUpload.js +24 -0
  106. package/es/style.css +1090 -0
  107. package/es/styles/custom.css +83 -0
  108. package/es/styles/globals.css +697 -0
  109. package/es/styles/index.css +787 -0
  110. package/es/styles/variables.css +32 -0
  111. package/es/utils/install.js +13 -0
  112. package/es/utils/storage.js +52 -0
  113. package/es/utils/translate.js +38 -0
  114. package/global.d.ts +10 -0
  115. package/lib/_virtual/_commonjsHelpers.js +1 -0
  116. package/lib/_virtual/_plugin-vue_export-helper.js +1 -0
  117. package/lib/_virtual/dayjs.min.js +1 -0
  118. package/lib/_virtual/lodash.js +1 -0
  119. package/lib/annex-upload/annex-upload.vue.js +1 -0
  120. package/lib/annex-upload/annex-upload.vue2.js +1 -0
  121. package/lib/annex-upload/index.js +1 -0
  122. package/lib/annex-upload/mimeType.js +1 -0
  123. package/lib/annex-upload/style/index.css +7 -0
  124. package/lib/comprehensive-search/comprehensive-search.vue.js +1 -0
  125. package/lib/comprehensive-search/comprehensive-search.vue2.js +1 -0
  126. package/lib/comprehensive-search/index.js +1 -0
  127. package/lib/comprehensive-search/style/index.css +24 -0
  128. package/lib/copy/copy.vue.js +1 -0
  129. package/lib/copy/copy.vue2.js +1 -0
  130. package/lib/copy/index.js +1 -0
  131. package/lib/copy/style/index.css +10 -0
  132. package/lib/image-upload/image-upload.vue.js +1 -0
  133. package/lib/image-upload/image-upload.vue2.js +1 -0
  134. package/lib/image-upload/index.js +1 -0
  135. package/lib/image-upload/style/index.css +33 -0
  136. package/lib/index.js +1 -0
  137. package/lib/input/index.js +1 -0
  138. package/lib/input/input.vue.js +1 -0
  139. package/lib/input/input.vue2.js +1 -0
  140. package/lib/input/style/index.css +3 -0
  141. package/lib/installs.js +1 -0
  142. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/adapters/adapters.js +3 -0
  143. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/adapters/fetch.js +1 -0
  144. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/adapters/xhr.js +1 -0
  145. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/axios.js +1 -0
  146. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/cancel/CancelToken.js +1 -0
  147. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/cancel/CanceledError.js +1 -0
  148. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/cancel/isCancel.js +1 -0
  149. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/Axios.js +2 -0
  150. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/AxiosError.js +1 -0
  151. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/AxiosHeaders.js +2 -0
  152. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/InterceptorManager.js +1 -0
  153. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/buildFullPath.js +1 -0
  154. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/dispatchRequest.js +1 -0
  155. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/mergeConfig.js +1 -0
  156. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/settle.js +1 -0
  157. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/core/transformData.js +1 -0
  158. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/defaults/index.js +1 -0
  159. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/defaults/transitional.js +1 -0
  160. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/env/data.js +1 -0
  161. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +1 -0
  162. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/HttpStatusCode.js +1 -0
  163. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/bind.js +1 -0
  164. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/buildURL.js +1 -0
  165. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/combineURLs.js +1 -0
  166. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/composeSignals.js +1 -0
  167. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/cookies.js +1 -0
  168. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/formDataToJSON.js +1 -0
  169. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/isAbsoluteURL.js +1 -0
  170. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/isAxiosError.js +1 -0
  171. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/isURLSameOrigin.js +1 -0
  172. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/null.js +1 -0
  173. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/parseHeaders.js +2 -0
  174. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/parseProtocol.js +1 -0
  175. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/progressEventReducer.js +1 -0
  176. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/resolveConfig.js +1 -0
  177. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/speedometer.js +1 -0
  178. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/spread.js +1 -0
  179. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/throttle.js +1 -0
  180. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/toFormData.js +1 -0
  181. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/toURLEncodedForm.js +1 -0
  182. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/trackStream.js +1 -0
  183. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/helpers/validator.js +1 -0
  184. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/browser/classes/Blob.js +1 -0
  185. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/browser/classes/FormData.js +1 -0
  186. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +1 -0
  187. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/browser/index.js +1 -0
  188. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/common/utils.js +1 -0
  189. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/platform/index.js +1 -0
  190. package/lib/node_modules/.pnpm/axios@1.7.7/node_modules/axios/lib/utils.js +1 -0
  191. package/lib/node_modules/.pnpm/dayjs@1.11.13/node_modules/dayjs/dayjs.min.js +1 -0
  192. package/lib/node_modules/.pnpm/element-plus@2.8.3_vue@3.5.4_typescript@5.6.2_/node_modules/element-plus/es/locale/lang/zh-cn.js +1 -0
  193. package/lib/node_modules/.pnpm/lodash@4.17.21/node_modules/lodash/lodash.js +27 -0
  194. package/lib/node_modules/.pnpm/v3-infinite-loading@1.3.2/node_modules/v3-infinite-loading/lib/v3-infinite-loading.es.js +1 -0
  195. package/lib/operation-log/index.js +1 -0
  196. package/lib/operation-log/operation-log-content.vue.js +1 -0
  197. package/lib/operation-log/operation-log-content.vue2.js +1 -0
  198. package/lib/operation-log/operation-log-dialog.vue.js +1 -0
  199. package/lib/operation-log/operation-log-dialog.vue2.js +1 -0
  200. package/lib/operation-log/operation-log-form.vue.js +1 -0
  201. package/lib/operation-log/operation-log-form.vue2.js +1 -0
  202. package/lib/operation-log/operation-log.vue.js +1 -0
  203. package/lib/operation-log/operation-log.vue2.js +1 -0
  204. package/lib/operation-log/style/index.css +220 -0
  205. package/lib/packages/components/api/log-server.js +1 -0
  206. package/lib/packages/components/api/remarkApi.js +1 -0
  207. package/lib/packages/components/api/requestRemark.js +1 -0
  208. package/lib/packages/components/api/requestTools.js +1 -0
  209. package/lib/packages/components/assets/images/errorimg.png.js +1 -0
  210. package/lib/packages/components/assets/images/excel.png.js +1 -0
  211. package/lib/packages/components/assets/images/file-word.png.js +1 -0
  212. package/lib/packages/components/assets/images/pdf.png.js +1 -0
  213. package/lib/packages/components/assets/images/ppt.png.js +1 -0
  214. package/lib/packages/components/assets/images/vue.svg.js +1 -0
  215. package/lib/packages/components/hooks/useClipboard.js +1 -0
  216. package/lib/packages/components/hooks/useImg.js +1 -0
  217. package/lib/packages/components/hooks/useImgPath.js +1 -0
  218. package/lib/packages/components/hooks/useImport.js +1 -0
  219. package/lib/packages/components/hooks/useUpload.js +1 -0
  220. package/lib/style.css +1090 -0
  221. package/lib/styles/custom.css +83 -0
  222. package/lib/styles/globals.css +697 -0
  223. package/lib/styles/index.css +787 -0
  224. package/lib/styles/variables.css +32 -0
  225. package/lib/utils/install.js +1 -0
  226. package/lib/utils/storage.js +1 -0
  227. package/lib/utils/translate.js +1 -0
  228. package/package.json +44 -0
  229. package/types/index.d.ts +1204 -0
@@ -0,0 +1,233 @@
1
+ import C from "./helpers/bind.js";
2
+ const { toString: I } = Object.prototype, { getPrototypeOf: h } = Object, y = /* @__PURE__ */ ((e) => (t) => {
3
+ const r = I.call(t);
4
+ return e[r] || (e[r] = r.slice(8, -1).toLowerCase());
5
+ })(/* @__PURE__ */ Object.create(null)), l = (e) => (e = e.toLowerCase(), (t) => y(t) === e), g = (e) => (t) => typeof t === e, { isArray: u } = Array, p = g("undefined");
6
+ function M(e) {
7
+ return e !== null && !p(e) && e.constructor !== null && !p(e.constructor) && c(e.constructor.isBuffer) && e.constructor.isBuffer(e);
8
+ }
9
+ const x = l("ArrayBuffer");
10
+ function R(e) {
11
+ let t;
12
+ return typeof ArrayBuffer < "u" && ArrayBuffer.isView ? t = ArrayBuffer.isView(e) : t = e && e.buffer && x(e.buffer), t;
13
+ }
14
+ const H = g("string"), c = g("function"), L = g("number"), w = (e) => e !== null && typeof e == "object", k = (e) => e === !0 || e === !1, m = (e) => {
15
+ if (y(e) !== "object")
16
+ return !1;
17
+ const t = h(e);
18
+ return (t === null || t === Object.prototype || Object.getPrototypeOf(t) === null) && !(Symbol.toStringTag in e) && !(Symbol.iterator in e);
19
+ }, N = l("Date"), U = l("File"), _ = l("Blob"), q = l("FileList"), V = (e) => w(e) && c(e.pipe), z = (e) => {
20
+ let t;
21
+ return e && (typeof FormData == "function" && e instanceof FormData || c(e.append) && ((t = y(e)) === "formdata" || // detect form-data instance
22
+ t === "object" && c(e.toString) && e.toString() === "[object FormData]"));
23
+ }, G = l("URLSearchParams"), [J, K, $, W] = ["ReadableStream", "Request", "Response", "Headers"].map(l), Q = (e) => e.trim ? e.trim() : e.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
24
+ function d(e, t, { allOwnKeys: r = !1 } = {}) {
25
+ if (e === null || typeof e > "u")
26
+ return;
27
+ let n, s;
28
+ if (typeof e != "object" && (e = [e]), u(e))
29
+ for (n = 0, s = e.length; n < s; n++)
30
+ t.call(null, e[n], n, e);
31
+ else {
32
+ const o = r ? Object.getOwnPropertyNames(e) : Object.keys(e), i = o.length;
33
+ let f;
34
+ for (n = 0; n < i; n++)
35
+ f = o[n], t.call(null, e[f], f, e);
36
+ }
37
+ }
38
+ function P(e, t) {
39
+ t = t.toLowerCase();
40
+ const r = Object.keys(e);
41
+ let n = r.length, s;
42
+ for (; n-- > 0; )
43
+ if (s = r[n], t === s.toLowerCase())
44
+ return s;
45
+ return null;
46
+ }
47
+ const a = typeof globalThis < "u" ? globalThis : typeof self < "u" ? self : typeof window < "u" ? window : global, T = (e) => !p(e) && e !== a;
48
+ function F() {
49
+ const { caseless: e } = T(this) && this || {}, t = {}, r = (n, s) => {
50
+ const o = e && P(t, s) || s;
51
+ m(t[o]) && m(n) ? t[o] = F(t[o], n) : m(n) ? t[o] = F({}, n) : u(n) ? t[o] = n.slice() : t[o] = n;
52
+ };
53
+ for (let n = 0, s = arguments.length; n < s; n++)
54
+ arguments[n] && d(arguments[n], r);
55
+ return t;
56
+ }
57
+ const X = (e, t, r, { allOwnKeys: n } = {}) => (d(t, (s, o) => {
58
+ r && c(s) ? e[o] = C(s, r) : e[o] = s;
59
+ }, { allOwnKeys: n }), e), Y = (e) => (e.charCodeAt(0) === 65279 && (e = e.slice(1)), e), Z = (e, t, r, n) => {
60
+ e.prototype = Object.create(t.prototype, n), e.prototype.constructor = e, Object.defineProperty(e, "super", {
61
+ value: t.prototype
62
+ }), r && Object.assign(e.prototype, r);
63
+ }, j = (e, t, r, n) => {
64
+ let s, o, i;
65
+ const f = {};
66
+ if (t = t || {}, e == null) return t;
67
+ do {
68
+ for (s = Object.getOwnPropertyNames(e), o = s.length; o-- > 0; )
69
+ i = s[o], (!n || n(i, e, t)) && !f[i] && (t[i] = e[i], f[i] = !0);
70
+ e = r !== !1 && h(e);
71
+ } while (e && (!r || r(e, t)) && e !== Object.prototype);
72
+ return t;
73
+ }, v = (e, t, r) => {
74
+ e = String(e), (r === void 0 || r > e.length) && (r = e.length), r -= t.length;
75
+ const n = e.indexOf(t, r);
76
+ return n !== -1 && n === r;
77
+ }, ee = (e) => {
78
+ if (!e) return null;
79
+ if (u(e)) return e;
80
+ let t = e.length;
81
+ if (!L(t)) return null;
82
+ const r = new Array(t);
83
+ for (; t-- > 0; )
84
+ r[t] = e[t];
85
+ return r;
86
+ }, te = /* @__PURE__ */ ((e) => (t) => e && t instanceof e)(typeof Uint8Array < "u" && h(Uint8Array)), ne = (e, t) => {
87
+ const n = (e && e[Symbol.iterator]).call(e);
88
+ let s;
89
+ for (; (s = n.next()) && !s.done; ) {
90
+ const o = s.value;
91
+ t.call(e, o[0], o[1]);
92
+ }
93
+ }, re = (e, t) => {
94
+ let r;
95
+ const n = [];
96
+ for (; (r = e.exec(t)) !== null; )
97
+ n.push(r);
98
+ return n;
99
+ }, se = l("HTMLFormElement"), oe = (e) => e.toLowerCase().replace(
100
+ /[-_\s]([a-z\d])(\w*)/g,
101
+ function(r, n, s) {
102
+ return n.toUpperCase() + s;
103
+ }
104
+ ), S = (({ hasOwnProperty: e }) => (t, r) => e.call(t, r))(Object.prototype), ie = l("RegExp"), B = (e, t) => {
105
+ const r = Object.getOwnPropertyDescriptors(e), n = {};
106
+ d(r, (s, o) => {
107
+ let i;
108
+ (i = t(s, o, e)) !== !1 && (n[o] = i || s);
109
+ }), Object.defineProperties(e, n);
110
+ }, ce = (e) => {
111
+ B(e, (t, r) => {
112
+ if (c(e) && ["arguments", "caller", "callee"].indexOf(r) !== -1)
113
+ return !1;
114
+ const n = e[r];
115
+ if (c(n)) {
116
+ if (t.enumerable = !1, "writable" in t) {
117
+ t.writable = !1;
118
+ return;
119
+ }
120
+ t.set || (t.set = () => {
121
+ throw Error("Can not rewrite read-only method '" + r + "'");
122
+ });
123
+ }
124
+ });
125
+ }, le = (e, t) => {
126
+ const r = {}, n = (s) => {
127
+ s.forEach((o) => {
128
+ r[o] = !0;
129
+ });
130
+ };
131
+ return u(e) ? n(e) : n(String(e).split(t)), r;
132
+ }, fe = () => {
133
+ }, ae = (e, t) => e != null && Number.isFinite(e = +e) ? e : t, A = "abcdefghijklmnopqrstuvwxyz", b = "0123456789", D = {
134
+ DIGIT: b,
135
+ ALPHA: A,
136
+ ALPHA_DIGIT: A + A.toUpperCase() + b
137
+ }, ue = (e = 16, t = D.ALPHA_DIGIT) => {
138
+ let r = "";
139
+ const { length: n } = t;
140
+ for (; e--; )
141
+ r += t[Math.random() * n | 0];
142
+ return r;
143
+ };
144
+ function pe(e) {
145
+ return !!(e && c(e.append) && e[Symbol.toStringTag] === "FormData" && e[Symbol.iterator]);
146
+ }
147
+ const de = (e) => {
148
+ const t = new Array(10), r = (n, s) => {
149
+ if (w(n)) {
150
+ if (t.indexOf(n) >= 0)
151
+ return;
152
+ if (!("toJSON" in n)) {
153
+ t[s] = n;
154
+ const o = u(n) ? [] : {};
155
+ return d(n, (i, f) => {
156
+ const O = r(i, s + 1);
157
+ !p(O) && (o[f] = O);
158
+ }), t[s] = void 0, o;
159
+ }
160
+ }
161
+ return n;
162
+ };
163
+ return r(e, 0);
164
+ }, me = l("AsyncFunction"), ye = (e) => e && (w(e) || c(e)) && c(e.then) && c(e.catch), E = ((e, t) => e ? setImmediate : t ? ((r, n) => (a.addEventListener("message", ({ source: s, data: o }) => {
165
+ s === a && o === r && n.length && n.shift()();
166
+ }, !1), (s) => {
167
+ n.push(s), a.postMessage(r, "*");
168
+ }))(`axios@${Math.random()}`, []) : (r) => setTimeout(r))(
169
+ typeof setImmediate == "function",
170
+ c(a.postMessage)
171
+ ), ge = typeof queueMicrotask < "u" ? queueMicrotask.bind(a) : typeof process < "u" && process.nextTick || E, Ae = {
172
+ isArray: u,
173
+ isArrayBuffer: x,
174
+ isBuffer: M,
175
+ isFormData: z,
176
+ isArrayBufferView: R,
177
+ isString: H,
178
+ isNumber: L,
179
+ isBoolean: k,
180
+ isObject: w,
181
+ isPlainObject: m,
182
+ isReadableStream: J,
183
+ isRequest: K,
184
+ isResponse: $,
185
+ isHeaders: W,
186
+ isUndefined: p,
187
+ isDate: N,
188
+ isFile: U,
189
+ isBlob: _,
190
+ isRegExp: ie,
191
+ isFunction: c,
192
+ isStream: V,
193
+ isURLSearchParams: G,
194
+ isTypedArray: te,
195
+ isFileList: q,
196
+ forEach: d,
197
+ merge: F,
198
+ extend: X,
199
+ trim: Q,
200
+ stripBOM: Y,
201
+ inherits: Z,
202
+ toFlatObject: j,
203
+ kindOf: y,
204
+ kindOfTest: l,
205
+ endsWith: v,
206
+ toArray: ee,
207
+ forEachEntry: ne,
208
+ matchAll: re,
209
+ isHTMLForm: se,
210
+ hasOwnProperty: S,
211
+ hasOwnProp: S,
212
+ // an alias to avoid ESLint no-prototype-builtins detection
213
+ reduceDescriptors: B,
214
+ freezeMethods: ce,
215
+ toObjectSet: le,
216
+ toCamelCase: oe,
217
+ noop: fe,
218
+ toFiniteNumber: ae,
219
+ findKey: P,
220
+ global: a,
221
+ isContextDefined: T,
222
+ ALPHABET: D,
223
+ generateString: ue,
224
+ isSpecCompliantForm: pe,
225
+ toJSONObject: de,
226
+ isAsyncFn: me,
227
+ isThenable: ye,
228
+ setImmediate: E,
229
+ asap: ge
230
+ };
231
+ export {
232
+ Ae as default
233
+ };
@@ -0,0 +1,282 @@
1
+ import { commonjsGlobal as Q, getDefaultExportFromCjs as K } from "../../../../../_virtual/_commonjsHelpers.js";
2
+ import { __module as E } from "../../../../../_virtual/dayjs.min.js";
3
+ (function(V, X) {
4
+ (function(W, k) {
5
+ V.exports = k();
6
+ })(Q, function() {
7
+ var W = 1e3, k = 6e4, N = 36e5, A = "millisecond", S = "second", w = "minute", O = "hour", M = "day", T = "week", m = "month", U = "quarter", y = "year", _ = "date", J = "Invalid Date", q = /^(\d{4})[-/]?(\d{1,2})?[-/]?(\d{0,2})[Tt\s]*(\d{1,2})?:?(\d{1,2})?:?(\d{1,2})?[.:]?(\d+)?$/, B = /\[([^\]]+)]|Y{1,4}|M{1,4}|D{1,2}|d{1,4}|H{1,2}|h{1,2}|a|A|m{1,2}|s{1,2}|Z{1,2}|SSS/g, G = { name: "en", weekdays: "Sunday_Monday_Tuesday_Wednesday_Thursday_Friday_Saturday".split("_"), months: "January_February_March_April_May_June_July_August_September_October_November_December".split("_"), ordinal: function(s) {
8
+ var n = ["th", "st", "nd", "rd"], t = s % 100;
9
+ return "[" + s + (n[(t - 20) % 10] || n[t] || n[0]) + "]";
10
+ } }, I = function(s, n, t) {
11
+ var r = String(s);
12
+ return !r || r.length >= n ? s : "" + Array(n + 1 - r.length).join(t) + s;
13
+ }, P = { s: I, z: function(s) {
14
+ var n = -s.utcOffset(), t = Math.abs(n), r = Math.floor(t / 60), e = t % 60;
15
+ return (n <= 0 ? "+" : "-") + I(r, 2, "0") + ":" + I(e, 2, "0");
16
+ }, m: function s(n, t) {
17
+ if (n.date() < t.date()) return -s(t, n);
18
+ var r = 12 * (t.year() - n.year()) + (t.month() - n.month()), e = n.clone().add(r, m), i = t - e < 0, u = n.clone().add(r + (i ? -1 : 1), m);
19
+ return +(-(r + (t - e) / (i ? e - u : u - e)) || 0);
20
+ }, a: function(s) {
21
+ return s < 0 ? Math.ceil(s) || 0 : Math.floor(s);
22
+ }, p: function(s) {
23
+ return { M: m, y, w: T, d: M, D: _, h: O, m: w, s: S, ms: A, Q: U }[s] || String(s || "").toLowerCase().replace(/s$/, "");
24
+ }, u: function(s) {
25
+ return s === void 0;
26
+ } }, x = "en", D = {};
27
+ D[x] = G;
28
+ var Z = "$isDayjsObject", F = function(s) {
29
+ return s instanceof C || !(!s || !s[Z]);
30
+ }, j = function s(n, t, r) {
31
+ var e;
32
+ if (!n) return x;
33
+ if (typeof n == "string") {
34
+ var i = n.toLowerCase();
35
+ D[i] && (e = i), t && (D[i] = t, e = i);
36
+ var u = n.split("-");
37
+ if (!e && u.length > 1) return s(u[0]);
38
+ } else {
39
+ var o = n.name;
40
+ D[o] = n, e = o;
41
+ }
42
+ return !r && e && (x = e), e || !r && x;
43
+ }, f = function(s, n) {
44
+ if (F(s)) return s.clone();
45
+ var t = typeof n == "object" ? n : {};
46
+ return t.date = s, t.args = arguments, new C(t);
47
+ }, a = P;
48
+ a.l = j, a.i = F, a.w = function(s, n) {
49
+ return f(s, { locale: n.$L, utc: n.$u, x: n.$x, $offset: n.$offset });
50
+ };
51
+ var C = function() {
52
+ function s(t) {
53
+ this.$L = j(t.locale, null, !0), this.parse(t), this.$x = this.$x || t.x || {}, this[Z] = !0;
54
+ }
55
+ var n = s.prototype;
56
+ return n.parse = function(t) {
57
+ this.$d = function(r) {
58
+ var e = r.date, i = r.utc;
59
+ if (e === null) return /* @__PURE__ */ new Date(NaN);
60
+ if (a.u(e)) return /* @__PURE__ */ new Date();
61
+ if (e instanceof Date) return new Date(e);
62
+ if (typeof e == "string" && !/Z$/i.test(e)) {
63
+ var u = e.match(q);
64
+ if (u) {
65
+ var o = u[2] - 1 || 0, c = (u[7] || "0").substring(0, 3);
66
+ return i ? new Date(Date.UTC(u[1], o, u[3] || 1, u[4] || 0, u[5] || 0, u[6] || 0, c)) : new Date(u[1], o, u[3] || 1, u[4] || 0, u[5] || 0, u[6] || 0, c);
67
+ }
68
+ }
69
+ return new Date(e);
70
+ }(t), this.init();
71
+ }, n.init = function() {
72
+ var t = this.$d;
73
+ this.$y = t.getFullYear(), this.$M = t.getMonth(), this.$D = t.getDate(), this.$W = t.getDay(), this.$H = t.getHours(), this.$m = t.getMinutes(), this.$s = t.getSeconds(), this.$ms = t.getMilliseconds();
74
+ }, n.$utils = function() {
75
+ return a;
76
+ }, n.isValid = function() {
77
+ return this.$d.toString() !== J;
78
+ }, n.isSame = function(t, r) {
79
+ var e = f(t);
80
+ return this.startOf(r) <= e && e <= this.endOf(r);
81
+ }, n.isAfter = function(t, r) {
82
+ return f(t) < this.startOf(r);
83
+ }, n.isBefore = function(t, r) {
84
+ return this.endOf(r) < f(t);
85
+ }, n.$g = function(t, r, e) {
86
+ return a.u(t) ? this[r] : this.set(e, t);
87
+ }, n.unix = function() {
88
+ return Math.floor(this.valueOf() / 1e3);
89
+ }, n.valueOf = function() {
90
+ return this.$d.getTime();
91
+ }, n.startOf = function(t, r) {
92
+ var e = this, i = !!a.u(r) || r, u = a.p(t), o = function(p, $) {
93
+ var v = a.w(e.$u ? Date.UTC(e.$y, $, p) : new Date(e.$y, $, p), e);
94
+ return i ? v : v.endOf(M);
95
+ }, c = function(p, $) {
96
+ return a.w(e.toDate()[p].apply(e.toDate("s"), (i ? [0, 0, 0, 0] : [23, 59, 59, 999]).slice($)), e);
97
+ }, h = this.$W, d = this.$M, l = this.$D, b = "set" + (this.$u ? "UTC" : "");
98
+ switch (u) {
99
+ case y:
100
+ return i ? o(1, 0) : o(31, 11);
101
+ case m:
102
+ return i ? o(1, d) : o(0, d + 1);
103
+ case T:
104
+ var g = this.$locale().weekStart || 0, Y = (h < g ? h + 7 : h) - g;
105
+ return o(i ? l - Y : l + (6 - Y), d);
106
+ case M:
107
+ case _:
108
+ return c(b + "Hours", 0);
109
+ case O:
110
+ return c(b + "Minutes", 1);
111
+ case w:
112
+ return c(b + "Seconds", 2);
113
+ case S:
114
+ return c(b + "Milliseconds", 3);
115
+ default:
116
+ return this.clone();
117
+ }
118
+ }, n.endOf = function(t) {
119
+ return this.startOf(t, !1);
120
+ }, n.$set = function(t, r) {
121
+ var e, i = a.p(t), u = "set" + (this.$u ? "UTC" : ""), o = (e = {}, e[M] = u + "Date", e[_] = u + "Date", e[m] = u + "Month", e[y] = u + "FullYear", e[O] = u + "Hours", e[w] = u + "Minutes", e[S] = u + "Seconds", e[A] = u + "Milliseconds", e)[i], c = i === M ? this.$D + (r - this.$W) : r;
122
+ if (i === m || i === y) {
123
+ var h = this.clone().set(_, 1);
124
+ h.$d[o](c), h.init(), this.$d = h.set(_, Math.min(this.$D, h.daysInMonth())).$d;
125
+ } else o && this.$d[o](c);
126
+ return this.init(), this;
127
+ }, n.set = function(t, r) {
128
+ return this.clone().$set(t, r);
129
+ }, n.get = function(t) {
130
+ return this[a.p(t)]();
131
+ }, n.add = function(t, r) {
132
+ var e, i = this;
133
+ t = Number(t);
134
+ var u = a.p(r), o = function(d) {
135
+ var l = f(i);
136
+ return a.w(l.date(l.date() + Math.round(d * t)), i);
137
+ };
138
+ if (u === m) return this.set(m, this.$M + t);
139
+ if (u === y) return this.set(y, this.$y + t);
140
+ if (u === M) return o(1);
141
+ if (u === T) return o(7);
142
+ var c = (e = {}, e[w] = k, e[O] = N, e[S] = W, e)[u] || 1, h = this.$d.getTime() + t * c;
143
+ return a.w(h, this);
144
+ }, n.subtract = function(t, r) {
145
+ return this.add(-1 * t, r);
146
+ }, n.format = function(t) {
147
+ var r = this, e = this.$locale();
148
+ if (!this.isValid()) return e.invalidDate || J;
149
+ var i = t || "YYYY-MM-DDTHH:mm:ssZ", u = a.z(this), o = this.$H, c = this.$m, h = this.$M, d = e.weekdays, l = e.months, b = e.meridiem, g = function($, v, H, L) {
150
+ return $ && ($[v] || $(r, i)) || H[v].slice(0, L);
151
+ }, Y = function($) {
152
+ return a.s(o % 12 || 12, $, "0");
153
+ }, p = b || function($, v, H) {
154
+ var L = $ < 12 ? "AM" : "PM";
155
+ return H ? L.toLowerCase() : L;
156
+ };
157
+ return i.replace(B, function($, v) {
158
+ return v || function(H) {
159
+ switch (H) {
160
+ case "YY":
161
+ return String(r.$y).slice(-2);
162
+ case "YYYY":
163
+ return a.s(r.$y, 4, "0");
164
+ case "M":
165
+ return h + 1;
166
+ case "MM":
167
+ return a.s(h + 1, 2, "0");
168
+ case "MMM":
169
+ return g(e.monthsShort, h, l, 3);
170
+ case "MMMM":
171
+ return g(l, h);
172
+ case "D":
173
+ return r.$D;
174
+ case "DD":
175
+ return a.s(r.$D, 2, "0");
176
+ case "d":
177
+ return String(r.$W);
178
+ case "dd":
179
+ return g(e.weekdaysMin, r.$W, d, 2);
180
+ case "ddd":
181
+ return g(e.weekdaysShort, r.$W, d, 3);
182
+ case "dddd":
183
+ return d[r.$W];
184
+ case "H":
185
+ return String(o);
186
+ case "HH":
187
+ return a.s(o, 2, "0");
188
+ case "h":
189
+ return Y(1);
190
+ case "hh":
191
+ return Y(2);
192
+ case "a":
193
+ return p(o, c, !0);
194
+ case "A":
195
+ return p(o, c, !1);
196
+ case "m":
197
+ return String(c);
198
+ case "mm":
199
+ return a.s(c, 2, "0");
200
+ case "s":
201
+ return String(r.$s);
202
+ case "ss":
203
+ return a.s(r.$s, 2, "0");
204
+ case "SSS":
205
+ return a.s(r.$ms, 3, "0");
206
+ case "Z":
207
+ return u;
208
+ }
209
+ return null;
210
+ }($) || u.replace(":", "");
211
+ });
212
+ }, n.utcOffset = function() {
213
+ return 15 * -Math.round(this.$d.getTimezoneOffset() / 15);
214
+ }, n.diff = function(t, r, e) {
215
+ var i, u = this, o = a.p(r), c = f(t), h = (c.utcOffset() - this.utcOffset()) * k, d = this - c, l = function() {
216
+ return a.m(u, c);
217
+ };
218
+ switch (o) {
219
+ case y:
220
+ i = l() / 12;
221
+ break;
222
+ case m:
223
+ i = l();
224
+ break;
225
+ case U:
226
+ i = l() / 3;
227
+ break;
228
+ case T:
229
+ i = (d - h) / 6048e5;
230
+ break;
231
+ case M:
232
+ i = (d - h) / 864e5;
233
+ break;
234
+ case O:
235
+ i = d / N;
236
+ break;
237
+ case w:
238
+ i = d / k;
239
+ break;
240
+ case S:
241
+ i = d / W;
242
+ break;
243
+ default:
244
+ i = d;
245
+ }
246
+ return e ? i : a.a(i);
247
+ }, n.daysInMonth = function() {
248
+ return this.endOf(m).$D;
249
+ }, n.$locale = function() {
250
+ return D[this.$L];
251
+ }, n.locale = function(t, r) {
252
+ if (!t) return this.$L;
253
+ var e = this.clone(), i = j(t, r, !0);
254
+ return i && (e.$L = i), e;
255
+ }, n.clone = function() {
256
+ return a.w(this.$d, this);
257
+ }, n.toDate = function() {
258
+ return new Date(this.valueOf());
259
+ }, n.toJSON = function() {
260
+ return this.isValid() ? this.toISOString() : null;
261
+ }, n.toISOString = function() {
262
+ return this.$d.toISOString();
263
+ }, n.toString = function() {
264
+ return this.$d.toUTCString();
265
+ }, s;
266
+ }(), z = C.prototype;
267
+ return f.prototype = z, [["$ms", A], ["$s", S], ["$m", w], ["$H", O], ["$W", M], ["$M", m], ["$y", y], ["$D", _]].forEach(function(s) {
268
+ z[s[1]] = function(n) {
269
+ return this.$g(n, s[0], s[1]);
270
+ };
271
+ }), f.extend = function(s, n) {
272
+ return s.$i || (s(n, C, f), s.$i = !0), f;
273
+ }, f.locale = j, f.isDayjs = F, f.unix = function(s) {
274
+ return f(1e3 * s);
275
+ }, f.en = D[x], f.Ls = D, f.p = {}, f;
276
+ });
277
+ })(E);
278
+ var R = E.exports;
279
+ const nt = /* @__PURE__ */ K(R);
280
+ export {
281
+ nt as default
282
+ };
@@ -0,0 +1,181 @@
1
+ var u = {
2
+ name: "zh-cn",
3
+ el: {
4
+ breadcrumb: {
5
+ label: "面包屑"
6
+ },
7
+ colorpicker: {
8
+ confirm: "确定",
9
+ clear: "清空",
10
+ defaultLabel: "颜色选择器",
11
+ description: "当前颜色 {color},按 Enter 键选择新颜色",
12
+ alphaLabel: "选择透明度的值"
13
+ },
14
+ datepicker: {
15
+ now: "此刻",
16
+ today: "今天",
17
+ cancel: "取消",
18
+ clear: "清空",
19
+ confirm: "确定",
20
+ dateTablePrompt: "使用方向键与 Enter 键可选择日期",
21
+ monthTablePrompt: "使用方向键与 Enter 键可选择月份",
22
+ yearTablePrompt: "使用方向键与 Enter 键可选择年份",
23
+ selectedDate: "已选日期",
24
+ selectDate: "选择日期",
25
+ selectTime: "选择时间",
26
+ startDate: "开始日期",
27
+ startTime: "开始时间",
28
+ endDate: "结束日期",
29
+ endTime: "结束时间",
30
+ prevYear: "前一年",
31
+ nextYear: "后一年",
32
+ prevMonth: "上个月",
33
+ nextMonth: "下个月",
34
+ year: "年",
35
+ month1: "1 月",
36
+ month2: "2 月",
37
+ month3: "3 月",
38
+ month4: "4 月",
39
+ month5: "5 月",
40
+ month6: "6 月",
41
+ month7: "7 月",
42
+ month8: "8 月",
43
+ month9: "9 月",
44
+ month10: "10 月",
45
+ month11: "11 月",
46
+ month12: "12 月",
47
+ weeks: {
48
+ sun: "日",
49
+ mon: "一",
50
+ tue: "二",
51
+ wed: "三",
52
+ thu: "四",
53
+ fri: "五",
54
+ sat: "六"
55
+ },
56
+ weeksFull: {
57
+ sun: "星期日",
58
+ mon: "星期一",
59
+ tue: "星期二",
60
+ wed: "星期三",
61
+ thu: "星期四",
62
+ fri: "星期五",
63
+ sat: "星期六"
64
+ },
65
+ months: {
66
+ jan: "一月",
67
+ feb: "二月",
68
+ mar: "三月",
69
+ apr: "四月",
70
+ may: "五月",
71
+ jun: "六月",
72
+ jul: "七月",
73
+ aug: "八月",
74
+ sep: "九月",
75
+ oct: "十月",
76
+ nov: "十一月",
77
+ dec: "十二月"
78
+ }
79
+ },
80
+ inputNumber: {
81
+ decrease: "减少数值",
82
+ increase: "增加数值"
83
+ },
84
+ select: {
85
+ loading: "加载中",
86
+ noMatch: "无匹配数据",
87
+ noData: "无数据",
88
+ placeholder: "请选择"
89
+ },
90
+ dropdown: {
91
+ toggleDropdown: "切换下拉选项"
92
+ },
93
+ mention: {
94
+ loading: "加载中"
95
+ },
96
+ cascader: {
97
+ noMatch: "无匹配数据",
98
+ loading: "加载中",
99
+ placeholder: "请选择",
100
+ noData: "暂无数据"
101
+ },
102
+ pagination: {
103
+ goto: "前往",
104
+ pagesize: "条/页",
105
+ total: "共 {total} 条",
106
+ pageClassifier: "页",
107
+ page: "页",
108
+ prev: "上一页",
109
+ next: "下一页",
110
+ currentPage: "第 {pager} 页",
111
+ prevPages: "向前 {pager} 页",
112
+ nextPages: "向后 {pager} 页",
113
+ deprecationWarning: "你使用了一些已被废弃的用法,请参考 el-pagination 的官方文档"
114
+ },
115
+ dialog: {
116
+ close: "关闭此对话框"
117
+ },
118
+ drawer: {
119
+ close: "关闭此对话框"
120
+ },
121
+ messagebox: {
122
+ title: "提示",
123
+ confirm: "确定",
124
+ cancel: "取消",
125
+ error: "输入的数据不合法!",
126
+ close: "关闭此对话框"
127
+ },
128
+ upload: {
129
+ deleteTip: "按 delete 键可删除",
130
+ delete: "删除",
131
+ preview: "查看图片",
132
+ continue: "继续上传"
133
+ },
134
+ slider: {
135
+ defaultLabel: "滑块介于 {min} 至 {max}",
136
+ defaultRangeStartLabel: "选择起始值",
137
+ defaultRangeEndLabel: "选择结束值"
138
+ },
139
+ table: {
140
+ emptyText: "暂无数据",
141
+ confirmFilter: "筛选",
142
+ resetFilter: "重置",
143
+ clearFilter: "全部",
144
+ sumText: "合计"
145
+ },
146
+ tour: {
147
+ next: "下一步",
148
+ previous: "上一步",
149
+ finish: "结束导览"
150
+ },
151
+ tree: {
152
+ emptyText: "暂无数据"
153
+ },
154
+ transfer: {
155
+ noMatch: "无匹配数据",
156
+ noData: "无数据",
157
+ titles: ["列表 1", "列表 2"],
158
+ filterPlaceholder: "请输入搜索内容",
159
+ noCheckedFormat: "共 {total} 项",
160
+ hasCheckedFormat: "已选 {checked}/{total} 项"
161
+ },
162
+ image: {
163
+ error: "加载失败"
164
+ },
165
+ pageHeader: {
166
+ title: "返回"
167
+ },
168
+ popconfirm: {
169
+ confirmButtonText: "确定",
170
+ cancelButtonText: "取消"
171
+ },
172
+ carousel: {
173
+ leftArrow: "上一张幻灯片",
174
+ rightArrow: "下一张幻灯片",
175
+ indicator: "幻灯片切换至索引 {index}"
176
+ }
177
+ }
178
+ };
179
+ export {
180
+ u as default
181
+ };