@king-design/vue 3.7.0 → 3.8.0-beta.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 (227) hide show
  1. package/__tests__/__snapshots__/Vue Next Demos.md +399 -0
  2. package/components/bubble/bubble.d.ts +61 -0
  3. package/components/bubble/bubble.js +81 -0
  4. package/components/bubble/bubble.vdt.js +85 -0
  5. package/components/bubble/index.d.ts +1 -0
  6. package/components/bubble/index.js +1 -0
  7. package/components/bubble/index.spec.d.ts +1 -0
  8. package/components/bubble/index.spec.js +771 -0
  9. package/components/bubble/styles.d.ts +5 -0
  10. package/components/bubble/styles.js +53 -0
  11. package/components/bubble/useBubbleDisplay.d.ts +18 -0
  12. package/components/bubble/useBubbleDisplay.js +300 -0
  13. package/components/bubbleList/bubbleList.d.ts +87 -0
  14. package/components/bubbleList/bubbleList.js +75 -0
  15. package/components/bubbleList/bubbleList.vdt.js +143 -0
  16. package/components/bubbleList/index.d.ts +1 -0
  17. package/components/bubbleList/index.js +1 -0
  18. package/components/bubbleList/index.spec.d.ts +1 -0
  19. package/components/bubbleList/index.spec.js +1268 -0
  20. package/components/bubbleList/item.d.ts +16 -0
  21. package/components/bubbleList/item.js +27 -0
  22. package/components/bubbleList/item.vdt.js +36 -0
  23. package/components/bubbleList/styles.d.ts +5 -0
  24. package/components/bubbleList/styles.js +33 -0
  25. package/components/bubbleList/useBubbleList.d.ts +28 -0
  26. package/components/bubbleList/useBubbleList.js +455 -0
  27. package/components/checkbox/index.d.ts +3 -3
  28. package/components/fileCard/fileCard.d.ts +65 -0
  29. package/components/fileCard/fileCard.js +72 -0
  30. package/components/fileCard/fileCard.vdt.js +161 -0
  31. package/components/fileCard/fileCardAssets.d.ts +1 -0
  32. package/components/fileCard/fileCardAssets.js +54 -0
  33. package/components/fileCard/fileCardUtils.d.ts +14 -0
  34. package/components/fileCard/fileCardUtils.js +94 -0
  35. package/components/fileCard/index.d.ts +2 -0
  36. package/components/fileCard/index.js +2 -0
  37. package/components/fileCard/index.spec.d.ts +1 -0
  38. package/components/fileCard/index.spec.js +1096 -0
  39. package/components/fileCard/list.d.ts +29 -0
  40. package/components/fileCard/list.js +46 -0
  41. package/components/fileCard/list.vdt.js +71 -0
  42. package/components/fileCard/styles.d.ts +5 -0
  43. package/components/fileCard/styles.js +83 -0
  44. package/components/fileCard/useFileCard.d.ts +45 -0
  45. package/components/fileCard/useFileCard.js +330 -0
  46. package/components/fileCard/useFileCardList.d.ts +14 -0
  47. package/components/fileCard/useFileCardList.js +49 -0
  48. package/components/form/form.js +2 -1
  49. package/components/media/context.d.ts +6 -0
  50. package/components/media/context.js +2 -0
  51. package/components/media/group.d.ts +12 -0
  52. package/components/media/group.js +32 -0
  53. package/components/media/group.vdt.js +50 -0
  54. package/components/media/index.d.ts +2 -0
  55. package/components/media/index.js +2 -0
  56. package/components/media/index.spec.d.ts +1 -0
  57. package/components/media/index.spec.js +1691 -0
  58. package/components/media/media.d.ts +37 -0
  59. package/components/media/media.js +67 -0
  60. package/components/media/media.vdt.js +202 -0
  61. package/components/media/mediaAssets.d.ts +4 -0
  62. package/components/media/mediaAssets.js +9 -0
  63. package/components/media/mediaUtils.d.ts +6 -0
  64. package/components/media/mediaUtils.js +66 -0
  65. package/components/media/styles.d.ts +13 -0
  66. package/components/media/styles.js +52 -0
  67. package/components/media/types.d.ts +37 -0
  68. package/components/media/types.js +1 -0
  69. package/components/media/useMedia.d.ts +70 -0
  70. package/components/media/useMedia.js +471 -0
  71. package/components/media/useMediaGroup.d.ts +15 -0
  72. package/components/media/useMediaGroup.js +136 -0
  73. package/components/media/useMediaViewer.d.ts +14 -0
  74. package/components/media/useMediaViewer.js +129 -0
  75. package/components/media/viewer.d.ts +24 -0
  76. package/components/media/viewer.js +54 -0
  77. package/components/media/viewer.vdt.js +100 -0
  78. package/components/radio/index.d.ts +3 -3
  79. package/components/sender/icons.d.ts +3 -0
  80. package/components/sender/icons.js +17 -0
  81. package/components/sender/index.d.ts +1 -0
  82. package/components/sender/index.js +1 -0
  83. package/components/sender/index.spec.d.ts +1 -0
  84. package/components/sender/index.spec.js +1597 -0
  85. package/components/sender/sender.d.ts +104 -0
  86. package/components/sender/sender.js +111 -0
  87. package/components/sender/sender.vdt.js +230 -0
  88. package/components/sender/styles.d.ts +5 -0
  89. package/components/sender/styles.js +56 -0
  90. package/components/sender/useAutoResize.d.ts +4 -0
  91. package/components/sender/useAutoResize.js +99 -0
  92. package/components/sender/useSenderDrag.d.ts +6 -0
  93. package/components/sender/useSenderDrag.js +320 -0
  94. package/components/sender/useSenderInput.d.ts +16 -0
  95. package/components/sender/useSenderInput.js +101 -0
  96. package/components/sender/useSenderPaste.d.ts +5 -0
  97. package/components/sender/useSenderPaste.js +36 -0
  98. package/components/sender/useSenderUpload.d.ts +11 -0
  99. package/components/sender/useSenderUpload.js +395 -0
  100. package/components/skeleton/skeleton.d.ts +2 -1
  101. package/components/skeleton/skeleton.js +1 -1
  102. package/components/think/index.d.ts +1 -0
  103. package/components/think/index.js +1 -0
  104. package/components/think/index.spec.d.ts +1 -0
  105. package/components/think/index.spec.js +345 -0
  106. package/components/think/index.vdt.js +82 -0
  107. package/components/think/styles.d.ts +5 -0
  108. package/components/think/styles.js +25 -0
  109. package/components/think/think.d.ts +28 -0
  110. package/components/think/think.js +48 -0
  111. package/components/think/useThinkExpand.d.ts +10 -0
  112. package/components/think/useThinkExpand.js +56 -0
  113. package/components/types.d.ts +4 -2
  114. package/components/upload/ajaxUploader.d.ts +1 -0
  115. package/components/upload/ajaxUploader.js +6 -0
  116. package/components/xmarkdown/index.d.ts +2 -0
  117. package/components/xmarkdown/index.js +1 -0
  118. package/components/xmarkdown/index.spec.d.ts +1 -0
  119. package/components/xmarkdown/index.spec.js +1666 -0
  120. package/components/xmarkdown/markdown/codeBlockRenderer.d.ts +8 -0
  121. package/components/xmarkdown/markdown/codeBlockRenderer.js +52 -0
  122. package/components/xmarkdown/markdown/codeblock.d.ts +8 -0
  123. package/components/xmarkdown/markdown/codeblock.js +74 -0
  124. package/components/xmarkdown/markdown/highlight.d.ts +17 -0
  125. package/components/xmarkdown/markdown/highlight.js +83 -0
  126. package/components/xmarkdown/markdown/index.d.ts +14 -0
  127. package/components/xmarkdown/markdown/index.js +14 -0
  128. package/components/xmarkdown/markdown/mermaid.d.ts +8 -0
  129. package/components/xmarkdown/markdown/mermaid.js +104 -0
  130. package/components/xmarkdown/markdown/renderTree.d.ts +54 -0
  131. package/components/xmarkdown/markdown/renderTree.js +386 -0
  132. package/components/xmarkdown/markdown/renderer.d.ts +18 -0
  133. package/components/xmarkdown/markdown/renderer.js +461 -0
  134. package/components/xmarkdown/markdown/streaming.d.ts +24 -0
  135. package/components/xmarkdown/markdown/streaming.js +513 -0
  136. package/components/xmarkdown/markdown/types.d.ts +124 -0
  137. package/components/xmarkdown/markdown/types.js +6 -0
  138. package/components/xmarkdown/markdown/utils.d.ts +7 -0
  139. package/components/xmarkdown/markdown/utils.js +9 -0
  140. package/components/xmarkdown/markdown.d.ts +1 -0
  141. package/components/xmarkdown/markdown.js +1 -0
  142. package/components/xmarkdown/styles.d.ts +5 -0
  143. package/components/xmarkdown/styles.js +50 -0
  144. package/components/xmarkdown/useMermaid.d.ts +27 -0
  145. package/components/xmarkdown/useMermaid.js +745 -0
  146. package/components/xmarkdown/useXMarkdownContent.d.ts +14 -0
  147. package/components/xmarkdown/useXMarkdownContent.js +218 -0
  148. package/components/xmarkdown/useXMarkdownDisplay.d.ts +26 -0
  149. package/components/xmarkdown/useXMarkdownDisplay.js +569 -0
  150. package/components/xmarkdown/xmarkdown.d.ts +61 -0
  151. package/components/xmarkdown/xmarkdown.js +109 -0
  152. package/components/xmarkdown/xmarkdown.vdt.js +43 -0
  153. package/dist/fonts/KaTeX_AMS-Regular.ttf +0 -0
  154. package/dist/fonts/KaTeX_AMS-Regular.woff +0 -0
  155. package/dist/fonts/KaTeX_AMS-Regular.woff2 +0 -0
  156. package/dist/fonts/KaTeX_Caligraphic-Bold.ttf +0 -0
  157. package/dist/fonts/KaTeX_Caligraphic-Bold.woff +0 -0
  158. package/dist/fonts/KaTeX_Caligraphic-Bold.woff2 +0 -0
  159. package/dist/fonts/KaTeX_Caligraphic-Regular.ttf +0 -0
  160. package/dist/fonts/KaTeX_Caligraphic-Regular.woff +0 -0
  161. package/dist/fonts/KaTeX_Caligraphic-Regular.woff2 +0 -0
  162. package/dist/fonts/KaTeX_Fraktur-Bold.ttf +0 -0
  163. package/dist/fonts/KaTeX_Fraktur-Bold.woff +0 -0
  164. package/dist/fonts/KaTeX_Fraktur-Bold.woff2 +0 -0
  165. package/dist/fonts/KaTeX_Fraktur-Regular.ttf +0 -0
  166. package/dist/fonts/KaTeX_Fraktur-Regular.woff +0 -0
  167. package/dist/fonts/KaTeX_Fraktur-Regular.woff2 +0 -0
  168. package/dist/fonts/KaTeX_Main-Bold.ttf +0 -0
  169. package/dist/fonts/KaTeX_Main-Bold.woff +0 -0
  170. package/dist/fonts/KaTeX_Main-Bold.woff2 +0 -0
  171. package/dist/fonts/KaTeX_Main-BoldItalic.ttf +0 -0
  172. package/dist/fonts/KaTeX_Main-BoldItalic.woff +0 -0
  173. package/dist/fonts/KaTeX_Main-BoldItalic.woff2 +0 -0
  174. package/dist/fonts/KaTeX_Main-Italic.ttf +0 -0
  175. package/dist/fonts/KaTeX_Main-Italic.woff +0 -0
  176. package/dist/fonts/KaTeX_Main-Italic.woff2 +0 -0
  177. package/dist/fonts/KaTeX_Main-Regular.ttf +0 -0
  178. package/dist/fonts/KaTeX_Main-Regular.woff +0 -0
  179. package/dist/fonts/KaTeX_Main-Regular.woff2 +0 -0
  180. package/dist/fonts/KaTeX_Math-BoldItalic.ttf +0 -0
  181. package/dist/fonts/KaTeX_Math-BoldItalic.woff +0 -0
  182. package/dist/fonts/KaTeX_Math-BoldItalic.woff2 +0 -0
  183. package/dist/fonts/KaTeX_Math-Italic.ttf +0 -0
  184. package/dist/fonts/KaTeX_Math-Italic.woff +0 -0
  185. package/dist/fonts/KaTeX_Math-Italic.woff2 +0 -0
  186. package/dist/fonts/KaTeX_SansSerif-Bold.ttf +0 -0
  187. package/dist/fonts/KaTeX_SansSerif-Bold.woff +0 -0
  188. package/dist/fonts/KaTeX_SansSerif-Bold.woff2 +0 -0
  189. package/dist/fonts/KaTeX_SansSerif-Italic.ttf +0 -0
  190. package/dist/fonts/KaTeX_SansSerif-Italic.woff +0 -0
  191. package/dist/fonts/KaTeX_SansSerif-Italic.woff2 +0 -0
  192. package/dist/fonts/KaTeX_SansSerif-Regular.ttf +0 -0
  193. package/dist/fonts/KaTeX_SansSerif-Regular.woff +0 -0
  194. package/dist/fonts/KaTeX_SansSerif-Regular.woff2 +0 -0
  195. package/dist/fonts/KaTeX_Script-Regular.ttf +0 -0
  196. package/dist/fonts/KaTeX_Script-Regular.woff +0 -0
  197. package/dist/fonts/KaTeX_Script-Regular.woff2 +0 -0
  198. package/dist/fonts/KaTeX_Size1-Regular.ttf +0 -0
  199. package/dist/fonts/KaTeX_Size1-Regular.woff +0 -0
  200. package/dist/fonts/KaTeX_Size1-Regular.woff2 +0 -0
  201. package/dist/fonts/KaTeX_Size2-Regular.ttf +0 -0
  202. package/dist/fonts/KaTeX_Size2-Regular.woff +0 -0
  203. package/dist/fonts/KaTeX_Size2-Regular.woff2 +0 -0
  204. package/dist/fonts/KaTeX_Size3-Regular.ttf +0 -0
  205. package/dist/fonts/KaTeX_Size3-Regular.woff +0 -0
  206. package/dist/fonts/KaTeX_Size3-Regular.woff2 +0 -0
  207. package/dist/fonts/KaTeX_Size4-Regular.ttf +0 -0
  208. package/dist/fonts/KaTeX_Size4-Regular.woff +0 -0
  209. package/dist/fonts/KaTeX_Size4-Regular.woff2 +0 -0
  210. package/dist/fonts/KaTeX_Typewriter-Regular.ttf +0 -0
  211. package/dist/fonts/KaTeX_Typewriter-Regular.woff +0 -0
  212. package/dist/fonts/KaTeX_Typewriter-Regular.woff2 +0 -0
  213. package/dist/i18n/en-US.js +29 -1
  214. package/dist/i18n/en-US.js.map +1 -1
  215. package/dist/i18n/en-US.min.js +1 -1
  216. package/dist/index.js +100506 -37457
  217. package/dist/index.js.map +1 -1
  218. package/dist/index.min.js +1569 -1
  219. package/dist/kpc.css +4 -0
  220. package/dist/ksyun.css +4 -0
  221. package/i18n/en-US.d.ts +27 -0
  222. package/i18n/en-US.js +29 -1
  223. package/index.d.ts +9 -2
  224. package/index.js +9 -2
  225. package/package.json +8 -2
  226. package/styles/global.js +12 -6
  227. package/yarn-error.log +0 -1012
@@ -1 +1 @@
1
- {"version":3,"sources":["webpack://i18n/webpack/universalModuleDefinition","webpack://i18n/./node_modules/@babel/runtime-corejs3/core-js/global-this.js","webpack://i18n/./node_modules/core-js-pure/actual/global-this.js","webpack://i18n/./node_modules/core-js-pure/es/global-this.js","webpack://i18n/./node_modules/core-js-pure/features/global-this.js","webpack://i18n/./node_modules/core-js-pure/full/global-this.js","webpack://i18n/./node_modules/core-js-pure/internals/a-callable.js","webpack://i18n/./node_modules/core-js-pure/internals/an-object.js","webpack://i18n/./node_modules/core-js-pure/internals/classof-raw.js","webpack://i18n/./node_modules/core-js-pure/internals/create-non-enumerable-property.js","webpack://i18n/./node_modules/core-js-pure/internals/create-property-descriptor.js","webpack://i18n/./node_modules/core-js-pure/internals/define-global-property.js","webpack://i18n/./node_modules/core-js-pure/internals/descriptors.js","webpack://i18n/./node_modules/core-js-pure/internals/document-create-element.js","webpack://i18n/./node_modules/core-js-pure/internals/engine-user-agent.js","webpack://i18n/./node_modules/core-js-pure/internals/engine-v8-version.js","webpack://i18n/./node_modules/core-js-pure/internals/export.js","webpack://i18n/./node_modules/core-js-pure/internals/fails.js","webpack://i18n/./node_modules/core-js-pure/internals/function-apply.js","webpack://i18n/./node_modules/core-js-pure/internals/function-bind-context.js","webpack://i18n/./node_modules/core-js-pure/internals/function-bind-native.js","webpack://i18n/./node_modules/core-js-pure/internals/function-call.js","webpack://i18n/./node_modules/core-js-pure/internals/function-uncurry-this-clause.js","webpack://i18n/./node_modules/core-js-pure/internals/function-uncurry-this.js","webpack://i18n/./node_modules/core-js-pure/internals/get-built-in.js","webpack://i18n/./node_modules/core-js-pure/internals/get-method.js","webpack://i18n/./node_modules/core-js-pure/internals/global.js","webpack://i18n/./node_modules/core-js-pure/internals/has-own-property.js","webpack://i18n/./node_modules/core-js-pure/internals/ie8-dom-define.js","webpack://i18n/./node_modules/core-js-pure/internals/indexed-object.js","webpack://i18n/./node_modules/core-js-pure/internals/is-callable.js","webpack://i18n/./node_modules/core-js-pure/internals/is-forced.js","webpack://i18n/./node_modules/core-js-pure/internals/is-null-or-undefined.js","webpack://i18n/./node_modules/core-js-pure/internals/is-object.js","webpack://i18n/./node_modules/core-js-pure/internals/is-pure.js","webpack://i18n/./node_modules/core-js-pure/internals/is-symbol.js","webpack://i18n/./node_modules/core-js-pure/internals/object-define-property.js","webpack://i18n/./node_modules/core-js-pure/internals/object-get-own-property-descriptor.js","webpack://i18n/./node_modules/core-js-pure/internals/object-is-prototype-of.js","webpack://i18n/./node_modules/core-js-pure/internals/object-property-is-enumerable.js","webpack://i18n/./node_modules/core-js-pure/internals/ordinary-to-primitive.js","webpack://i18n/./node_modules/core-js-pure/internals/path.js","webpack://i18n/./node_modules/core-js-pure/internals/require-object-coercible.js","webpack://i18n/./node_modules/core-js-pure/internals/shared-store.js","webpack://i18n/./node_modules/core-js-pure/internals/shared.js","webpack://i18n/./node_modules/core-js-pure/internals/symbol-constructor-detection.js","webpack://i18n/./node_modules/core-js-pure/internals/to-indexed-object.js","webpack://i18n/./node_modules/core-js-pure/internals/to-object.js","webpack://i18n/./node_modules/core-js-pure/internals/to-primitive.js","webpack://i18n/./node_modules/core-js-pure/internals/to-property-key.js","webpack://i18n/./node_modules/core-js-pure/internals/try-to-string.js","webpack://i18n/./node_modules/core-js-pure/internals/uid.js","webpack://i18n/./node_modules/core-js-pure/internals/use-symbol-as-uid.js","webpack://i18n/./node_modules/core-js-pure/internals/v8-prototype-define-bug.js","webpack://i18n/./node_modules/core-js-pure/internals/well-known-symbol.js","webpack://i18n/./node_modules/core-js-pure/modules/es.global-this.js","webpack://i18n/./node_modules/core-js-pure/modules/esnext.global-this.js","webpack://i18n/./node_modules/core-js-pure/stable/global-this.js","webpack://i18n/webpack/bootstrap","webpack://i18n/webpack/runtime/compat get default export","webpack://i18n/webpack/runtime/define property getters","webpack://i18n/webpack/runtime/global","webpack://i18n/webpack/runtime/hasOwnProperty shorthand","webpack://i18n/webpack/runtime/make namespace object","webpack://i18n/./i18n/en-US.ts"],"names":["i18n","_globalThis"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD,O;;;;;;ACVA,yCAA6D,C;;;;;;;;ACAhD;AACb,aAAa,mBAAO,CAAC,IAAuB;;AAE5C;;;;;;;;;ACHa;AACb,mBAAO,CAAC,IAA2B;;AAEnC,0CAA+C;;;;;;;;;ACHlC;AACb,0CAA+C;;;;;;;;;ACDlC;AACb;AACA,mBAAO,CAAC,IAA+B;;AAEvC,aAAa,mBAAO,CAAC,IAAuB;;AAE5C;;;;;;;;;ACNa;AACb,iBAAiB,mBAAO,CAAC,IAA0B;AACnD,kBAAkB,mBAAO,CAAC,IAA4B;;AAEtD;;AAEA;AACA;AACA;AACA;AACA;;;;;;;;;ACVa;AACb,eAAe,mBAAO,CAAC,GAAwB;;AAE/C;AACA;;AAEA;AACA;AACA;AACA;AACA;;;;;;;;;ACVa;AACb,kBAAkB,mBAAO,CAAC,IAAoC;;AAE9D,6BAA6B;AAC7B;;AAEA;AACA;AACA;;;;;;;;;ACRa;AACb,kBAAkB,mBAAO,CAAC,IAA0B;AACpD,2BAA2B,mBAAO,CAAC,IAAqC;AACxE,+BAA+B,mBAAO,CAAC,IAAyC;;AAEhF;AACA;AACA,CAAC;AACD;AACA;AACA;;;;;;;;;ACVa;AACb;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;ACRa;AACb,aAAa,mBAAO,CAAC,IAAqB;;AAE1C;AACA;;AAEA;AACA;AACA,iCAAiC,mDAAmD;AACpF,GAAG;AACH;AACA,GAAG;AACH;;;;;;;;;ACZa;AACb,YAAY,mBAAO,CAAC,IAAoB;;AAExC;AACA;AACA;AACA,iCAAiC,MAAM,mBAAmB,UAAU,EAAE,EAAE;AACxE,CAAC;;;;;;;;;ACPY;AACb,aAAa,mBAAO,CAAC,IAAqB;AAC1C,eAAe,mBAAO,CAAC,GAAwB;;AAE/C;AACA;AACA;;AAEA;AACA;AACA;;;;;;;;;ACVa;AACb;;;;;;;;;ACDa;AACb,aAAa,mBAAO,CAAC,IAAqB;AAC1C,gBAAgB,mBAAO,CAAC,IAAgC;;AAExD;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;;;;;;;;AC3Ba;AACb,aAAa,mBAAO,CAAC,IAAqB;AAC1C,YAAY,mBAAO,CAAC,IAA6B;AACjD,kBAAkB,mBAAO,CAAC,IAA2C;AACrE,iBAAiB,mBAAO,CAAC,IAA0B;AACnD,+BAA+B,2BAA4D;AAC3F,eAAe,mBAAO,CAAC,IAAwB;AAC/C,WAAW,mBAAO,CAAC,IAAmB;AACtC,WAAW,mBAAO,CAAC,IAAoC;AACvD,kCAAkC,mBAAO,CAAC,IAA6C;AACvF,aAAa,mBAAO,CAAC,GAA+B;;AAEpD;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO;AACP,KAAK;AACL;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;;AAEA,2FAA2F;AAC3F;;AAEA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA,KAAK;;AAEL;AACA;;AAEA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;AACA;;AAEA;;AAEA;AACA;AACA;AACA,+DAA+D;AAC/D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;ACrGa;AACb;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;;;;;;;;ACPa;AACb,kBAAkB,mBAAO,CAAC,IAAmC;;AAE7D;AACA;AACA;;AAEA;AACA;AACA;AACA,CAAC;;;;;;;;;ACVY;AACb,kBAAkB,mBAAO,CAAC,IAA2C;AACrE,gBAAgB,mBAAO,CAAC,IAAyB;AACjD,kBAAkB,mBAAO,CAAC,IAAmC;;AAE7D;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;ACba;AACb,YAAY,mBAAO,CAAC,IAAoB;;AAExC;AACA;AACA,2BAA2B,cAAc;AACzC;AACA;AACA,CAAC;;;;;;;;;ACRY;AACb,kBAAkB,mBAAO,CAAC,IAAmC;;AAE7D;;AAEA;AACA;AACA;;;;;;;;;ACPa;AACb,iBAAiB,mBAAO,CAAC,IAA0B;AACnD,kBAAkB,mBAAO,CAAC,IAAoC;;AAE9D;AACA;AACA;AACA;AACA;AACA;;;;;;;;;ACTa;AACb,kBAAkB,mBAAO,CAAC,IAAmC;;AAE7D;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;;;;;;;;;ACXa;AACb,WAAW,mBAAO,CAAC,IAAmB;AACtC,aAAa,mBAAO,CAAC,IAAqB;AAC1C,iBAAiB,mBAAO,CAAC,IAA0B;;AAEnD;AACA;AACA;;AAEA;AACA;AACA;AACA;;;;;;;;;ACZa;AACb,gBAAgB,mBAAO,CAAC,IAAyB;AACjD,wBAAwB,mBAAO,CAAC,IAAmC;;AAEnE;AACA;AACA;AACA;AACA;AACA;;;;;;;;;ACTa;AACb;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,eAAe,qBAAM,gBAAgB,qBAAM;AAC3C;AACA;AACA,gBAAgB,aAAa,EAAE;;;;;;;;;ACflB;AACb,kBAAkB,mBAAO,CAAC,IAAoC;AAC9D,eAAe,mBAAO,CAAC,IAAwB;;AAE/C,mCAAmC;;AAEnC;AACA;AACA;AACA;AACA;AACA;;;;;;;;;ACXa;AACb,kBAAkB,mBAAO,CAAC,IAA0B;AACpD,YAAY,mBAAO,CAAC,IAAoB;AACxC,oBAAoB,mBAAO,CAAC,IAAsC;;AAElE;AACA;AACA;AACA;AACA,sBAAsB,UAAU;AAChC,GAAG;AACH,CAAC;;;;;;;;;ACXY;AACb,kBAAkB,mBAAO,CAAC,IAAoC;AAC9D,YAAY,mBAAO,CAAC,IAAoB;AACxC,cAAc,mBAAO,CAAC,IAA0B;;AAEhD;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;AACA,CAAC;;;;;;;;;ACfY;AACb;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,CAAC;AACD;AACA;;;;;;;;;ACXa;AACb,YAAY,mBAAO,CAAC,IAAoB;AACxC,iBAAiB,mBAAO,CAAC,IAA0B;;AAEnD;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;AACA;AACA;;AAEA;;;;;;;;;ACtBa;AACb;AACA;AACA;AACA;AACA;;;;;;;;;ACLa;AACb,iBAAiB,mBAAO,CAAC,IAA0B;;AAEnD;AACA;AACA;;;;;;;;;ACLa;AACb;;;;;;;;;ACDa;AACb,iBAAiB,mBAAO,CAAC,GAA2B;AACpD,iBAAiB,mBAAO,CAAC,IAA0B;AACnD,oBAAoB,mBAAO,CAAC,IAAqC;AACjE,wBAAwB,mBAAO,CAAC,IAAgC;;AAEhE;;AAEA;AACA;AACA,CAAC;AACD;AACA;AACA;;;;;;;;;ACba;AACb,kBAAkB,mBAAO,CAAC,IAA0B;AACpD,qBAAqB,mBAAO,CAAC,IAA6B;AAC1D,8BAA8B,mBAAO,CAAC,IAAsC;AAC5E,eAAe,mBAAO,CAAC,IAAwB;AAC/C,oBAAoB,mBAAO,CAAC,IAA8B;;AAE1D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAEA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH,CAAC;AACD;AACA;AACA;AACA;AACA;AACA,GAAG,gBAAgB;AACnB;AACA;AACA;AACA;;;;;;;;;AC3Ca;AACb,kBAAkB,mBAAO,CAAC,IAA0B;AACpD,WAAW,mBAAO,CAAC,IAA4B;AAC/C,iCAAiC,mBAAO,CAAC,IAA4C;AACrF,+BAA+B,mBAAO,CAAC,IAAyC;AAChF,sBAAsB,mBAAO,CAAC,IAAgC;AAC9D,oBAAoB,mBAAO,CAAC,IAA8B;AAC1D,aAAa,mBAAO,CAAC,GAA+B;AACpD,qBAAqB,mBAAO,CAAC,IAA6B;;AAE1D;AACA;;AAEA;AACA;AACA,SAAS;AACT;AACA;AACA;AACA;AACA,GAAG,gBAAgB;AACnB;AACA;;;;;;;;;ACtBa;AACb,kBAAkB,mBAAO,CAAC,IAAoC;;AAE9D,+BAA+B;;;;;;;;;ACHlB;AACb,8BAA8B;AAC9B;AACA;;AAEA;AACA,2EAA2E,OAAO;;AAElF;AACA;AACA,SAAS;AACT;AACA;AACA,CAAC;;;;;;;;;ACbY;AACb,WAAW,mBAAO,CAAC,IAA4B;AAC/C,iBAAiB,mBAAO,CAAC,IAA0B;AACnD,eAAe,mBAAO,CAAC,GAAwB;;AAE/C;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;ACfa;AACb;;;;;;;;;ACDa;AACb,wBAAwB,mBAAO,CAAC,IAAmC;;AAEnE;;AAEA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;ACVa;AACb,aAAa,mBAAO,CAAC,IAAqB;AAC1C,2BAA2B,mBAAO,CAAC,IAAqC;;AAExE;AACA,6DAA6D;;AAE7D;;;;;;;;;ACPa;AACb,cAAc,mBAAO,CAAC,IAAsB;AAC5C,YAAY,mBAAO,CAAC,IAA2B;;AAE/C;AACA,qEAAqE;AACrE,CAAC;AACD;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;ACZY;AACb;AACA,iBAAiB,mBAAO,CAAC,IAAgC;AACzD,YAAY,mBAAO,CAAC,IAAoB;AACxC,aAAa,mBAAO,CAAC,IAAqB;;AAE1C;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,CAAC;;;;;;;;;AClBY;AACb;AACA,oBAAoB,mBAAO,CAAC,IAA6B;AACzD,6BAA6B,mBAAO,CAAC,IAAuC;;AAE5E;AACA;AACA;;;;;;;;;ACPa;AACb,6BAA6B,mBAAO,CAAC,IAAuC;;AAE5E;;AAEA;AACA;AACA;AACA;AACA;;;;;;;;;ACTa;AACb,WAAW,mBAAO,CAAC,IAA4B;AAC/C,eAAe,mBAAO,CAAC,GAAwB;AAC/C,eAAe,mBAAO,CAAC,IAAwB;AAC/C,gBAAgB,mBAAO,CAAC,IAAyB;AACjD,0BAA0B,mBAAO,CAAC,IAAoC;AACtE,sBAAsB,mBAAO,CAAC,IAAgC;;AAE9D;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;;;;;;;;ACzBa;AACb,kBAAkB,mBAAO,CAAC,IAA2B;AACrD,eAAe,mBAAO,CAAC,IAAwB;;AAE/C;AACA;AACA;AACA;AACA;AACA;;;;;;;;;ACTa;AACb;;AAEA;AACA;AACA;AACA,GAAG;AACH;AACA;AACA;;;;;;;;;ACTa;AACb,kBAAkB,mBAAO,CAAC,IAAoC;;AAE9D;AACA;AACA;;AAEA;AACA;AACA;;;;;;;;;ACTa;AACb;AACA,oBAAoB,mBAAO,CAAC,IAA2C;;AAEvE;AACA;AACA;;;;;;;;;ACNa;AACb,kBAAkB,mBAAO,CAAC,IAA0B;AACpD,YAAY,mBAAO,CAAC,IAAoB;;AAExC;AACA;AACA;AACA;AACA,4CAA4C,cAAc;AAC1D;AACA;AACA,GAAG;AACH,CAAC;;;;;;;;;ACZY;AACb,aAAa,mBAAO,CAAC,IAAqB;AAC1C,aAAa,mBAAO,CAAC,IAAqB;AAC1C,aAAa,mBAAO,CAAC,GAA+B;AACpD,UAAU,mBAAO,CAAC,IAAkB;AACpC,oBAAoB,mBAAO,CAAC,IAA2C;AACvE,wBAAwB,mBAAO,CAAC,IAAgC;;AAEhE;AACA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA,GAAG;AACH;;;;;;;;;AClBa;AACb,QAAQ,mBAAO,CAAC,IAAqB;AACrC,aAAa,mBAAO,CAAC,IAAqB;;AAE1C;AACA;AACA,GAAG,qDAAqD;AACxD;AACA,CAAC;;;;;;;;;ACRY;AACb;AACA,mBAAO,CAAC,IAA2B;;;;;;;;;ACFtB;AACb,aAAa,mBAAO,CAAC,IAAmB;;AAExC;;;;;;;UCHA;UACA;;UAEA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;UACA;;UAEA;UACA;;UAEA;UACA;UACA;;;;;WCtBA;WACA;WACA;WACA;WACA;WACA,gCAAgC,YAAY;WAC5C;WACA,E;;;;;WCPA;WACA;WACA;WACA;WACA,wCAAwC,yCAAyC;WACjF;WACA;WACA,E;;;;;WCPA;WACA;WACA;WACA;WACA,EAAE;WACF;WACA;WACA,CAAC,I;;;;;WCPD,wF;;;;;WCAA;WACA;WACA;WACA,sDAAsD,kBAAkB;WACxE;WACA,+CAA+C,cAAc;WAC7D,E;;;;;;;;;;;;;;;ACNA,IAAMA,IAAI,GAAG;EACT;EACA,iBAAiB,EAAE,SAAS;EAC5B,UAAU,EAAE,6BAA6B;EACzC,OAAO,EAAE,oBAAoB;EAC7B,aAAa,EAAE,uBAAuB;EACtC,aAAa,EAAE,uBAAuB;EACtC,OAAO,EAAE,oBAAoB;EAC7B,OAAO,EAAE,qBAAqB;EAC9B,IAAI,EAAE,KAAK;EACX,IAAI,EAAE,KAAK;EACX,IAAI,EAAE,KAAK;EACX,IAAI,EAAE,KAAK;EACX,IAAI,EAAE,KAAK;EACX,IAAI,EAAE,KAAK;EACX,IAAI,EAAE,KAAK;EACX,IAAI,EAAE,KAAK;EACX,IAAI,EAAE,KAAK;EACX,KAAK,EAAE,KAAK;EACZ,KAAK,EAAE,KAAK;EACZ,KAAK,EAAE,KAAK;EACZ,GAAG,EAAE,KAAK;EACV,GAAG,EAAE,KAAK;EACV,GAAG,EAAE,KAAK;EACV,GAAG,EAAE,KAAK;EACV,GAAG,EAAE,KAAK;EACV,GAAG,EAAE,KAAK;EACV,GAAG,EAAE,KAAK;EACV,MAAM,EAAE,KAAK;EACb,mBAAmB,EAAE,iBAAiB;EACtC,IAAI,EAAE,OAAO;EACb,IAAI,EAAE,WAAW;EACjB,IAAI,EAAE,UAAU;EAChB,KAAK,EAAE,gBAAgB;EACvB,KAAK,EAAE,iBAAiB;EACxB,KAAK,EAAE,oBAAoB;EAC3B,KAAK,EAAE,iBAAiB;EACxB,KAAK,EAAE,kBAAkB;EACzB,KAAK,EAAE,qBAAqB;EAC5B,KAAK,EAAE,WAAW;EAClB,KAAK,EAAE,WAAW;EAClB,MAAM,EAAE,YAAY;EACpB,MAAM,EAAE,YAAY;EACpB,MAAM,EAAE,mBAAmB;EAC3B,MAAM,EAAE,mBAAmB;EAE3B;EACA,OAAO,EAAE,oBAAoB;EAC7B,MAAM,EAAE,YAAY;EACpB,MAAM,EAAE,UAAU;EAElB;EACA,IAAI,EAAE,KAAK;EACX,IAAI,EAAE,IAAI;EACV,IAAI,EAAE,QAAQ;EACd,IAAI,EAAE,OAAO;EAEb;EACA,IAAI,EAAE,MAAM;EAEZ;EACA,MAAM,EAAE,yBAAyB;EACjC,OAAO,EAAE,2BAA2B;EACpC,YAAY,EAAE,qCAAqC;EACnD,UAAU,EAAE,2BAA2B;EACvC,UAAU,EAAE,4BAA4B;EACxC,uBAAuB,EAAE,kCAAkC;EAC3D,SAAS,EAAE,8BAA8B;EACzC,eAAe,EAAE,iDAAiD;EAClE,eAAe,EAAE,oDAAoD;EACrE,0BAA0B,EAAE,iDAAiD;EAC7E,eAAe,EAAE,wDAAwD;EACzE,SAAS,EAAE,oCAAoC;EAC/C,GAAG,EAAE,GAAG;EACR,YAAY,EAAE,2CAA2C;EACzD,cAAc,EAAE,+CAA+C;EAC/D,YAAY,EAAE,uCAAuC;EACrD,cAAc,EAAE,2CAA2C;EAC3D,iBAAiB,EAAE,kCAAkC;EACrD,mBAAmB,EAAE,sCAAsC;EAE3D;EACA,WAAW,EAAE,YAAY;EACzB,IAAI,EAAE,MAAM;EACZ,GAAG,EAAE,EAAE;EACP,SAAS,EAAE,WAAW;EAEtB;EACA,MAAM,EAAE,qBAAqB;EAC7B,IAAI,EAAE,OAAO;EAEb;EACA,KAAK,EAAE,cAAc;EACrB,KAAK,EAAE,eAAe;EACtB,KAAK,EAAE,UAAU;EACjB,IAAI,EAAE,YAAY;EAClB,IAAI,EAAE,WAAW;EAEjB;EACA,QAAQ,EAAE,wBAAwB;EAClC,KAAK,EAAE,SAAS;EAEhB;EACA,MAAM,EAAE,iBAAiB;EACzB,sBAAsB,EAAE,kDAAkD;EAC1E,MAAM,EAAE,YAAY;EACpB,MAAM,EAAE,cAAc;EACtB,oBAAoB,EAAE,0DAA0D;EAChF,+BAA+B,EAAE,wDAAwD;EACzF,kBAAkB,EAAE,4BAA4B;EAEhD;EACA,QAAQ,EAAE,uBAAuB;EAEjC;EACA,MAAM,EAAE,oBAAoB;EAC5B,MAAM,EAAE,cAAc;EACtB,IAAI,EAAE;AACV,CAAC;AAED,iEAAeA,IAAI,EAAC;;AAEpB;AACA;AACA;AACA,IAAI,OAAOC,uFAAuB,KAAK,WAAW,EAAE;EAChDA,8FAAgC,CAACD,IAAI,CAAC;AAC1C,C","file":"en-US.js","sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"i18n\"] = factory();\n\telse\n\t\troot[\"i18n\"] = factory();\n})(self, function() {\nreturn ","module.exports = require(\"core-js-pure/features/global-this\");","'use strict';\nvar parent = require('../stable/global-this');\n\nmodule.exports = parent;\n","'use strict';\nrequire('../modules/es.global-this');\n\nmodule.exports = require('../internals/global');\n","'use strict';\nmodule.exports = require('../full/global-this');\n","'use strict';\n// TODO: remove from `core-js@4`\nrequire('../modules/esnext.global-this');\n\nvar parent = require('../actual/global-this');\n\nmodule.exports = parent;\n","'use strict';\nvar isCallable = require('../internals/is-callable');\nvar tryToString = require('../internals/try-to-string');\n\nvar $TypeError = TypeError;\n\n// `Assert: IsCallable(argument) is true`\nmodule.exports = function (argument) {\n if (isCallable(argument)) return argument;\n throw new $TypeError(tryToString(argument) + ' is not a function');\n};\n","'use strict';\nvar isObject = require('../internals/is-object');\n\nvar $String = String;\nvar $TypeError = TypeError;\n\n// `Assert: Type(argument) is Object`\nmodule.exports = function (argument) {\n if (isObject(argument)) return argument;\n throw new $TypeError($String(argument) + ' is not an object');\n};\n","'use strict';\nvar uncurryThis = require('../internals/function-uncurry-this');\n\nvar toString = uncurryThis({}.toString);\nvar stringSlice = uncurryThis(''.slice);\n\nmodule.exports = function (it) {\n return stringSlice(toString(it), 8, -1);\n};\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","'use strict';\nmodule.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","'use strict';\nvar global = require('../internals/global');\n\n// eslint-disable-next-line es/no-object-defineproperty -- safe\nvar defineProperty = Object.defineProperty;\n\nmodule.exports = function (key, value) {\n try {\n defineProperty(global, key, { value: value, configurable: true, writable: true });\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","'use strict';\nvar fails = require('../internals/fails');\n\n// Detect IE8's incomplete defineProperty implementation\nmodule.exports = !fails(function () {\n // eslint-disable-next-line es/no-object-defineproperty -- required for testing\n return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;\n});\n","'use strict';\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","'use strict';\nmodule.exports = typeof navigator != 'undefined' && String(navigator.userAgent) || '';\n","'use strict';\nvar global = require('../internals/global');\nvar userAgent = require('../internals/engine-user-agent');\n\nvar process = global.process;\nvar Deno = global.Deno;\nvar versions = process && process.versions || Deno && Deno.version;\nvar v8 = versions && versions.v8;\nvar match, version;\n\nif (v8) {\n match = v8.split('.');\n // in old Chrome, versions of V8 isn't V8 = Chrome / 10\n // but their correct versions are not interesting for us\n version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);\n}\n\n// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`\n// so check `userAgent` even if `.v8` exists, but 0\nif (!version && userAgent) {\n match = userAgent.match(/Edge\\/(\\d+)/);\n if (!match || match[1] >= 74) {\n match = userAgent.match(/Chrome\\/(\\d+)/);\n if (match) version = +match[1];\n }\n}\n\nmodule.exports = version;\n","'use strict';\nvar global = require('../internals/global');\nvar apply = require('../internals/function-apply');\nvar uncurryThis = require('../internals/function-uncurry-this-clause');\nvar isCallable = require('../internals/is-callable');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar isForced = require('../internals/is-forced');\nvar path = require('../internals/path');\nvar bind = require('../internals/function-bind-context');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar hasOwn = require('../internals/has-own-property');\n\nvar wrapConstructor = function (NativeConstructor) {\n var Wrapper = function (a, b, c) {\n if (this instanceof Wrapper) {\n switch (arguments.length) {\n case 0: return new NativeConstructor();\n case 1: return new NativeConstructor(a);\n case 2: return new NativeConstructor(a, b);\n } return new NativeConstructor(a, b, c);\n } return apply(NativeConstructor, this, arguments);\n };\n Wrapper.prototype = NativeConstructor.prototype;\n return Wrapper;\n};\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.dontCallGetSet - prevent calling a getter on target\n options.name - the .name of the function if it does not match the key\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var PROTO = options.proto;\n\n var nativeSource = GLOBAL ? global : STATIC ? global[TARGET] : global[TARGET] && global[TARGET].prototype;\n\n var target = GLOBAL ? path : path[TARGET] || createNonEnumerableProperty(path, TARGET, {})[TARGET];\n var targetPrototype = target.prototype;\n\n var FORCED, USE_NATIVE, VIRTUAL_PROTOTYPE;\n var key, sourceProperty, targetProperty, nativeProperty, resultProperty, descriptor;\n\n for (key in source) {\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contains in native\n USE_NATIVE = !FORCED && nativeSource && hasOwn(nativeSource, key);\n\n targetProperty = target[key];\n\n if (USE_NATIVE) if (options.dontCallGetSet) {\n descriptor = getOwnPropertyDescriptor(nativeSource, key);\n nativeProperty = descriptor && descriptor.value;\n } else nativeProperty = nativeSource[key];\n\n // export native or implementation\n sourceProperty = (USE_NATIVE && nativeProperty) ? nativeProperty : source[key];\n\n if (!FORCED && !PROTO && typeof targetProperty == typeof sourceProperty) continue;\n\n // bind methods to global for calling from export context\n if (options.bind && USE_NATIVE) resultProperty = bind(sourceProperty, global);\n // wrap global constructors for prevent changes in this version\n else if (options.wrap && USE_NATIVE) resultProperty = wrapConstructor(sourceProperty);\n // make static versions for prototype methods\n else if (PROTO && isCallable(sourceProperty)) resultProperty = uncurryThis(sourceProperty);\n // default case\n else resultProperty = sourceProperty;\n\n // add a flag to not completely full polyfills\n if (options.sham || (sourceProperty && sourceProperty.sham) || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(resultProperty, 'sham', true);\n }\n\n createNonEnumerableProperty(target, key, resultProperty);\n\n if (PROTO) {\n VIRTUAL_PROTOTYPE = TARGET + 'Prototype';\n if (!hasOwn(path, VIRTUAL_PROTOTYPE)) {\n createNonEnumerableProperty(path, VIRTUAL_PROTOTYPE, {});\n }\n // export virtual prototype methods\n createNonEnumerableProperty(path[VIRTUAL_PROTOTYPE], key, sourceProperty);\n // export real prototype methods\n if (options.real && targetPrototype && (FORCED || !targetPrototype[key])) {\n createNonEnumerableProperty(targetPrototype, key, sourceProperty);\n }\n }\n }\n};\n","'use strict';\nmodule.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","'use strict';\nvar NATIVE_BIND = require('../internals/function-bind-native');\n\nvar FunctionPrototype = Function.prototype;\nvar apply = FunctionPrototype.apply;\nvar call = FunctionPrototype.call;\n\n// eslint-disable-next-line es/no-reflect -- safe\nmodule.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {\n return call.apply(apply, arguments);\n});\n","'use strict';\nvar uncurryThis = require('../internals/function-uncurry-this-clause');\nvar aCallable = require('../internals/a-callable');\nvar NATIVE_BIND = require('../internals/function-bind-native');\n\nvar bind = uncurryThis(uncurryThis.bind);\n\n// optional / simple context binding\nmodule.exports = function (fn, that) {\n aCallable(fn);\n return that === undefined ? fn : NATIVE_BIND ? bind(fn, that) : function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","'use strict';\nvar fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n // eslint-disable-next-line es/no-function-prototype-bind -- safe\n var test = (function () { /* empty */ }).bind();\n // eslint-disable-next-line no-prototype-builtins -- safe\n return typeof test != 'function' || test.hasOwnProperty('prototype');\n});\n","'use strict';\nvar NATIVE_BIND = require('../internals/function-bind-native');\n\nvar call = Function.prototype.call;\n\nmodule.exports = NATIVE_BIND ? call.bind(call) : function () {\n return call.apply(call, arguments);\n};\n","'use strict';\nvar classofRaw = require('../internals/classof-raw');\nvar uncurryThis = require('../internals/function-uncurry-this');\n\nmodule.exports = function (fn) {\n // Nashorn bug:\n // https://github.com/zloirock/core-js/issues/1128\n // https://github.com/zloirock/core-js/issues/1130\n if (classofRaw(fn) === 'Function') return uncurryThis(fn);\n};\n","'use strict';\nvar NATIVE_BIND = require('../internals/function-bind-native');\n\nvar FunctionPrototype = Function.prototype;\nvar call = FunctionPrototype.call;\nvar uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);\n\nmodule.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {\n return function () {\n return call.apply(fn, arguments);\n };\n};\n","'use strict';\nvar path = require('../internals/path');\nvar global = require('../internals/global');\nvar isCallable = require('../internals/is-callable');\n\nvar aFunction = function (variable) {\n return isCallable(variable) ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n","'use strict';\nvar aCallable = require('../internals/a-callable');\nvar isNullOrUndefined = require('../internals/is-null-or-undefined');\n\n// `GetMethod` abstract operation\n// https://tc39.es/ecma262/#sec-getmethod\nmodule.exports = function (V, P) {\n var func = V[P];\n return isNullOrUndefined(func) ? undefined : aCallable(func);\n};\n","'use strict';\nvar check = function (it) {\n return it && it.Math === Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line es/no-global-this -- safe\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n // eslint-disable-next-line no-restricted-globals -- safe\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n check(typeof this == 'object' && this) ||\n // eslint-disable-next-line no-new-func -- fallback\n (function () { return this; })() || Function('return this')();\n","'use strict';\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar toObject = require('../internals/to-object');\n\nvar hasOwnProperty = uncurryThis({}.hasOwnProperty);\n\n// `HasOwnProperty` abstract operation\n// https://tc39.es/ecma262/#sec-hasownproperty\n// eslint-disable-next-line es/no-object-hasown -- safe\nmodule.exports = Object.hasOwn || function hasOwn(it, key) {\n return hasOwnProperty(toObject(it), key);\n};\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thanks to IE8 for its funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n // eslint-disable-next-line es/no-object-defineproperty -- required for testing\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a !== 7;\n});\n","'use strict';\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar $Object = Object;\nvar split = uncurryThis(''.split);\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins -- safe\n return !$Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) === 'String' ? split(it, '') : $Object(it);\n} : $Object;\n","'use strict';\n// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot\nvar documentAll = typeof document == 'object' && document.all;\n\n// `IsCallable` abstract operation\n// https://tc39.es/ecma262/#sec-iscallable\n// eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing\nmodule.exports = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {\n return typeof argument == 'function' || argument === documentAll;\n} : function (argument) {\n return typeof argument == 'function';\n};\n","'use strict';\nvar fails = require('../internals/fails');\nvar isCallable = require('../internals/is-callable');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value === POLYFILL ? true\n : value === NATIVE ? false\n : isCallable(detection) ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","'use strict';\n// we can't use just `it == null` since of `document.all` special case\n// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec\nmodule.exports = function (it) {\n return it === null || it === undefined;\n};\n","'use strict';\nvar isCallable = require('../internals/is-callable');\n\nmodule.exports = function (it) {\n return typeof it == 'object' ? it !== null : isCallable(it);\n};\n","'use strict';\nmodule.exports = true;\n","'use strict';\nvar getBuiltIn = require('../internals/get-built-in');\nvar isCallable = require('../internals/is-callable');\nvar isPrototypeOf = require('../internals/object-is-prototype-of');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar $Object = Object;\n\nmodule.exports = USE_SYMBOL_AS_UID ? function (it) {\n return typeof it == 'symbol';\n} : function (it) {\n var $Symbol = getBuiltIn('Symbol');\n return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));\n};\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar V8_PROTOTYPE_DEFINE_BUG = require('../internals/v8-prototype-define-bug');\nvar anObject = require('../internals/an-object');\nvar toPropertyKey = require('../internals/to-property-key');\n\nvar $TypeError = TypeError;\n// eslint-disable-next-line es/no-object-defineproperty -- safe\nvar $defineProperty = Object.defineProperty;\n// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe\nvar $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\nvar ENUMERABLE = 'enumerable';\nvar CONFIGURABLE = 'configurable';\nvar WRITABLE = 'writable';\n\n// `Object.defineProperty` method\n// https://tc39.es/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPropertyKey(P);\n anObject(Attributes);\n if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {\n var current = $getOwnPropertyDescriptor(O, P);\n if (current && current[WRITABLE]) {\n O[P] = Attributes.value;\n Attributes = {\n configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],\n enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],\n writable: false\n };\n }\n } return $defineProperty(O, P, Attributes);\n} : $defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPropertyKey(P);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return $defineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar call = require('../internals/function-call');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPropertyKey = require('../internals/to-property-key');\nvar hasOwn = require('../internals/has-own-property');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\n// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe\nvar $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPropertyKey(P);\n if (IE8_DOM_DEFINE) try {\n return $getOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);\n};\n","'use strict';\nvar uncurryThis = require('../internals/function-uncurry-this');\n\nmodule.exports = uncurryThis({}.isPrototypeOf);\n","'use strict';\nvar $propertyIsEnumerable = {}.propertyIsEnumerable;\n// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : $propertyIsEnumerable;\n","'use strict';\nvar call = require('../internals/function-call');\nvar isCallable = require('../internals/is-callable');\nvar isObject = require('../internals/is-object');\n\nvar $TypeError = TypeError;\n\n// `OrdinaryToPrimitive` abstract operation\n// https://tc39.es/ecma262/#sec-ordinarytoprimitive\nmodule.exports = function (input, pref) {\n var fn, val;\n if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;\n if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;\n if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;\n throw new $TypeError(\"Can't convert object to primitive value\");\n};\n","'use strict';\nmodule.exports = {};\n","'use strict';\nvar isNullOrUndefined = require('../internals/is-null-or-undefined');\n\nvar $TypeError = TypeError;\n\n// `RequireObjectCoercible` abstract operation\n// https://tc39.es/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (isNullOrUndefined(it)) throw new $TypeError(\"Can't call method on \" + it);\n return it;\n};\n","'use strict';\nvar global = require('../internals/global');\nvar defineGlobalProperty = require('../internals/define-global-property');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || defineGlobalProperty(SHARED, {});\n\nmodule.exports = store;\n","'use strict';\nvar IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.35.1',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',\n license: 'https://github.com/zloirock/core-js/blob/v3.35.1/LICENSE',\n source: 'https://github.com/zloirock/core-js'\n});\n","'use strict';\n/* eslint-disable es/no-symbol -- required for testing */\nvar V8_VERSION = require('../internals/engine-v8-version');\nvar fails = require('../internals/fails');\nvar global = require('../internals/global');\n\nvar $String = global.String;\n\n// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n var symbol = Symbol('symbol detection');\n // Chrome 38 Symbol has incorrect toString conversion\n // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances\n // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,\n // of course, fail.\n return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||\n // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances\n !Symbol.sham && V8_VERSION && V8_VERSION < 41;\n});\n","'use strict';\n// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","'use strict';\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nvar $Object = Object;\n\n// `ToObject` abstract operation\n// https://tc39.es/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return $Object(requireObjectCoercible(argument));\n};\n","'use strict';\nvar call = require('../internals/function-call');\nvar isObject = require('../internals/is-object');\nvar isSymbol = require('../internals/is-symbol');\nvar getMethod = require('../internals/get-method');\nvar ordinaryToPrimitive = require('../internals/ordinary-to-primitive');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar $TypeError = TypeError;\nvar TO_PRIMITIVE = wellKnownSymbol('toPrimitive');\n\n// `ToPrimitive` abstract operation\n// https://tc39.es/ecma262/#sec-toprimitive\nmodule.exports = function (input, pref) {\n if (!isObject(input) || isSymbol(input)) return input;\n var exoticToPrim = getMethod(input, TO_PRIMITIVE);\n var result;\n if (exoticToPrim) {\n if (pref === undefined) pref = 'default';\n result = call(exoticToPrim, input, pref);\n if (!isObject(result) || isSymbol(result)) return result;\n throw new $TypeError(\"Can't convert object to primitive value\");\n }\n if (pref === undefined) pref = 'number';\n return ordinaryToPrimitive(input, pref);\n};\n","'use strict';\nvar toPrimitive = require('../internals/to-primitive');\nvar isSymbol = require('../internals/is-symbol');\n\n// `ToPropertyKey` abstract operation\n// https://tc39.es/ecma262/#sec-topropertykey\nmodule.exports = function (argument) {\n var key = toPrimitive(argument, 'string');\n return isSymbol(key) ? key : key + '';\n};\n","'use strict';\nvar $String = String;\n\nmodule.exports = function (argument) {\n try {\n return $String(argument);\n } catch (error) {\n return 'Object';\n }\n};\n","'use strict';\nvar uncurryThis = require('../internals/function-uncurry-this');\n\nvar id = 0;\nvar postfix = Math.random();\nvar toString = uncurryThis(1.0.toString);\n\nmodule.exports = function (key) {\n return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);\n};\n","'use strict';\n/* eslint-disable es/no-symbol -- required for testing */\nvar NATIVE_SYMBOL = require('../internals/symbol-constructor-detection');\n\nmodule.exports = NATIVE_SYMBOL\n && !Symbol.sham\n && typeof Symbol.iterator == 'symbol';\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\n\n// V8 ~ Chrome 36-\n// https://bugs.chromium.org/p/v8/issues/detail?id=3334\nmodule.exports = DESCRIPTORS && fails(function () {\n // eslint-disable-next-line es/no-object-defineproperty -- required for testing\n return Object.defineProperty(function () { /* empty */ }, 'prototype', {\n value: 42,\n writable: false\n }).prototype !== 42;\n});\n","'use strict';\nvar global = require('../internals/global');\nvar shared = require('../internals/shared');\nvar hasOwn = require('../internals/has-own-property');\nvar uid = require('../internals/uid');\nvar NATIVE_SYMBOL = require('../internals/symbol-constructor-detection');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar Symbol = global.Symbol;\nvar WellKnownSymbolsStore = shared('wks');\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;\n\nmodule.exports = function (name) {\n if (!hasOwn(WellKnownSymbolsStore, name)) {\n WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name)\n ? Symbol[name]\n : createWellKnownSymbol('Symbol.' + name);\n } return WellKnownSymbolsStore[name];\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar global = require('../internals/global');\n\n// `globalThis` object\n// https://tc39.es/ecma262/#sec-globalthis\n$({ global: true, forced: global.globalThis !== global }, {\n globalThis: global\n});\n","'use strict';\n// TODO: Remove from `core-js@4`\nrequire('../modules/es.global-this');\n","'use strict';\nvar parent = require('../es/global-this');\n\nmodule.exports = parent;\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","const i18n = {\n // datepicker\n 'yearMonthFormat': 'MM YYYY',\n '请选择日期和时间': 'Please select date and time',\n '请选择日期': 'Please select date',\n '开始时间 ~ 结束时间': 'Begin time ~ End time',\n '开始日期 ~ 结束日期': 'Begin date ~ End date',\n '请选择年份': 'Please select year',\n '请选择月份': 'Please select month',\n '1月': 'Jan',\n '2月': 'Feb',\n '3月': 'Mar',\n '4月': 'Apr',\n '5月': 'May',\n '6月': 'Jun',\n '7月': 'Jul',\n '8月': 'Aug',\n '9月': 'Sep',\n '10月': 'Oct',\n '11月': 'Nov',\n '12月': 'Dec',\n '日': 'Sun',\n '一': 'Mon',\n '二': 'Tue',\n '三': 'Wed',\n '四': 'Thu',\n '五': 'Fri',\n '六': 'Sat',\n '{n}年': '{n}',\n '{start}年 - {end}年': '{start} - {end}',\n '今天': 'Today',\n '昨天': 'Yesterday',\n '明天': 'Tomorrow',\n '一周后': 'After one week',\n '一月后': 'After one month',\n '三月后': 'After three months',\n '一周前': 'Before one week',\n '一月前': 'Before one month',\n '三月前': 'Before three months',\n '上一周': 'Last week',\n '下一周': 'Next week',\n '上一个月': 'Last month',\n '下一个月': 'Next month',\n '前三个月': 'Last three months',\n '后三个月': 'Next three months',\n\n // timepicker\n '请选择时间': 'Please select time',\n '开始时间': 'Begin Time',\n '结束时间': 'End Time',\n\n // dialog\n '提示': 'Tip',\n '确定': 'OK',\n '取消': 'Cancel',\n '关闭': 'Close',\n\n // editable\n '编辑': 'Edit',\n\n // validator\n '必须填写': 'This field is required.',\n '请输入数字': 'Please enter only digits.',\n '请输入正确的邮箱地址': 'Please enter a valid email address.',\n '请输入正确的网址': 'Please enter a valid URL.',\n '请输入正确的日期': 'Please enter a valid date.',\n '请输入正确的日期 (YYYY-MM-DD)': 'Please enter a valid date (ISO).',\n '请输入正确的数': 'Please enter a valid number.',\n '请输入不大于 {n} 的数': 'Please enter a value less than or equal to {n}.',\n '请输入不小于 {n} 的数': 'Please enter a value greater than or equal to {n}.',\n '请输入 {n[0]} 到 {n[1]} 之间的数': 'Please enter a value between {n[0]} and {n[1]}.',\n '请输入步长为 {n} 的数': 'Please enter a number which should be a multipe of {n}',\n '两次输入不一致': 'Please enter the same value again.',\n '两': '2',\n '最多选择 {n} 项': 'Please select no more than {n} item{s:n}.',\n '最多输入 {n} 个字符': 'Please enter no more than {n} character{s:n}.',\n '最少选择 {n} 项': 'Please select at least {n} item{s:n}.',\n '最少输入 {n} 个字符': 'Please enter at least {n} character{s:n}.',\n '请选择 {n} 到 {m} 项': 'Please select {n}~{m} item{s:m}.', \n '请输入 {n} 到 {m} 个字符': 'Please enter {n}~{m} character{s:m}.',\n\n // pagination\n '{n} 条 / 页': '{n} / page',\n '前往': 'Goto',\n '页': '',\n '共 {n} 条': 'Total {n}',\n\n // table\n '暂无数据': 'No data to display.',\n '重置': 'Reset',\n\n // transfer\n '请输入': 'Please enter',\n '请选择': 'Please select',\n '已选择': 'Selected',\n '全选': 'Select all',\n '清空': 'Clear all',\n\n // select\n '请输入或选择': 'Please enter or select',\n '无数据': 'No data',\n\n // upload\n '点击上传': 'Click to Upload',\n '将文件拖到此处,或<a>点击上传</a>': 'Drag file to this area or <a>click to upload</a>',\n '查看图片': 'View Image',\n '上传图片': 'Upload Image',\n '超出文件数量最大限制:{limit}': 'Exceed the maximum limit of the number of files: {limit}',\n '\"{name}\" 超出文件最大限制:{maxSize}kb': '\"{name}\" exceeds the maximum size of file: {maxSize}kb',\n '\"{name}\" 文件类型不合法': '\"{name}\" invalid file type',\n\n // search\n '请输入关键字': 'Please enter keywords',\n\n // copy\n '复制成功': 'Copy successfully!',\n '复制失败': 'Copy failed!',\n '复制': 'Copy',\n};\n\nexport default i18n; \n\n/**\n * global does not exist in Vite, use standard object globalThis\n */\nif (typeof (globalThis as any).Kpc !== 'undefined') {\n (globalThis as any).Kpc.localize(i18n);\n}\n"],"sourceRoot":""}
1
+ {"version":3,"sources":["webpack://i18n/webpack/universalModuleDefinition","webpack://i18n/./node_modules/@babel/runtime-corejs3/core-js/global-this.js","webpack://i18n/./node_modules/core-js-pure/actual/global-this.js","webpack://i18n/./node_modules/core-js-pure/es/global-this.js","webpack://i18n/./node_modules/core-js-pure/features/global-this.js","webpack://i18n/./node_modules/core-js-pure/full/global-this.js","webpack://i18n/./node_modules/core-js-pure/internals/a-callable.js","webpack://i18n/./node_modules/core-js-pure/internals/an-object.js","webpack://i18n/./node_modules/core-js-pure/internals/classof-raw.js","webpack://i18n/./node_modules/core-js-pure/internals/create-non-enumerable-property.js","webpack://i18n/./node_modules/core-js-pure/internals/create-property-descriptor.js","webpack://i18n/./node_modules/core-js-pure/internals/define-global-property.js","webpack://i18n/./node_modules/core-js-pure/internals/descriptors.js","webpack://i18n/./node_modules/core-js-pure/internals/document-create-element.js","webpack://i18n/./node_modules/core-js-pure/internals/engine-user-agent.js","webpack://i18n/./node_modules/core-js-pure/internals/engine-v8-version.js","webpack://i18n/./node_modules/core-js-pure/internals/export.js","webpack://i18n/./node_modules/core-js-pure/internals/fails.js","webpack://i18n/./node_modules/core-js-pure/internals/function-apply.js","webpack://i18n/./node_modules/core-js-pure/internals/function-bind-context.js","webpack://i18n/./node_modules/core-js-pure/internals/function-bind-native.js","webpack://i18n/./node_modules/core-js-pure/internals/function-call.js","webpack://i18n/./node_modules/core-js-pure/internals/function-uncurry-this-clause.js","webpack://i18n/./node_modules/core-js-pure/internals/function-uncurry-this.js","webpack://i18n/./node_modules/core-js-pure/internals/get-built-in.js","webpack://i18n/./node_modules/core-js-pure/internals/get-method.js","webpack://i18n/./node_modules/core-js-pure/internals/global.js","webpack://i18n/./node_modules/core-js-pure/internals/has-own-property.js","webpack://i18n/./node_modules/core-js-pure/internals/ie8-dom-define.js","webpack://i18n/./node_modules/core-js-pure/internals/indexed-object.js","webpack://i18n/./node_modules/core-js-pure/internals/is-callable.js","webpack://i18n/./node_modules/core-js-pure/internals/is-forced.js","webpack://i18n/./node_modules/core-js-pure/internals/is-null-or-undefined.js","webpack://i18n/./node_modules/core-js-pure/internals/is-object.js","webpack://i18n/./node_modules/core-js-pure/internals/is-pure.js","webpack://i18n/./node_modules/core-js-pure/internals/is-symbol.js","webpack://i18n/./node_modules/core-js-pure/internals/object-define-property.js","webpack://i18n/./node_modules/core-js-pure/internals/object-get-own-property-descriptor.js","webpack://i18n/./node_modules/core-js-pure/internals/object-is-prototype-of.js","webpack://i18n/./node_modules/core-js-pure/internals/object-property-is-enumerable.js","webpack://i18n/./node_modules/core-js-pure/internals/ordinary-to-primitive.js","webpack://i18n/./node_modules/core-js-pure/internals/path.js","webpack://i18n/./node_modules/core-js-pure/internals/require-object-coercible.js","webpack://i18n/./node_modules/core-js-pure/internals/shared-store.js","webpack://i18n/./node_modules/core-js-pure/internals/shared.js","webpack://i18n/./node_modules/core-js-pure/internals/symbol-constructor-detection.js","webpack://i18n/./node_modules/core-js-pure/internals/to-indexed-object.js","webpack://i18n/./node_modules/core-js-pure/internals/to-object.js","webpack://i18n/./node_modules/core-js-pure/internals/to-primitive.js","webpack://i18n/./node_modules/core-js-pure/internals/to-property-key.js","webpack://i18n/./node_modules/core-js-pure/internals/try-to-string.js","webpack://i18n/./node_modules/core-js-pure/internals/uid.js","webpack://i18n/./node_modules/core-js-pure/internals/use-symbol-as-uid.js","webpack://i18n/./node_modules/core-js-pure/internals/v8-prototype-define-bug.js","webpack://i18n/./node_modules/core-js-pure/internals/well-known-symbol.js","webpack://i18n/./node_modules/core-js-pure/modules/es.global-this.js","webpack://i18n/./node_modules/core-js-pure/modules/esnext.global-this.js","webpack://i18n/./node_modules/core-js-pure/stable/global-this.js","webpack://i18n/webpack/bootstrap","webpack://i18n/webpack/runtime/compat get default export","webpack://i18n/webpack/runtime/define property getters","webpack://i18n/webpack/runtime/global","webpack://i18n/webpack/runtime/hasOwnProperty shorthand","webpack://i18n/webpack/runtime/make namespace object","webpack://i18n/./i18n/en-US.ts"],"names":["i18n","_globalThis"],"mappings":"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","file":"en-US.js","sourcesContent":["(function webpackUniversalModuleDefinition(root, factory) {\n\tif(typeof exports === 'object' && typeof module === 'object')\n\t\tmodule.exports = factory();\n\telse if(typeof define === 'function' && define.amd)\n\t\tdefine([], factory);\n\telse if(typeof exports === 'object')\n\t\texports[\"i18n\"] = factory();\n\telse\n\t\troot[\"i18n\"] = factory();\n})(self, function() {\nreturn ","module.exports = require(\"core-js-pure/features/global-this\");","'use strict';\nvar parent = require('../stable/global-this');\n\nmodule.exports = parent;\n","'use strict';\nrequire('../modules/es.global-this');\n\nmodule.exports = require('../internals/global');\n","'use strict';\nmodule.exports = require('../full/global-this');\n","'use strict';\n// TODO: remove from `core-js@4`\nrequire('../modules/esnext.global-this');\n\nvar parent = require('../actual/global-this');\n\nmodule.exports = parent;\n","'use strict';\nvar isCallable = require('../internals/is-callable');\nvar tryToString = require('../internals/try-to-string');\n\nvar $TypeError = TypeError;\n\n// `Assert: IsCallable(argument) is true`\nmodule.exports = function (argument) {\n if (isCallable(argument)) return argument;\n throw new $TypeError(tryToString(argument) + ' is not a function');\n};\n","'use strict';\nvar isObject = require('../internals/is-object');\n\nvar $String = String;\nvar $TypeError = TypeError;\n\n// `Assert: Type(argument) is Object`\nmodule.exports = function (argument) {\n if (isObject(argument)) return argument;\n throw new $TypeError($String(argument) + ' is not an object');\n};\n","'use strict';\nvar uncurryThis = require('../internals/function-uncurry-this');\n\nvar toString = uncurryThis({}.toString);\nvar stringSlice = uncurryThis(''.slice);\n\nmodule.exports = function (it) {\n return stringSlice(toString(it), 8, -1);\n};\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar definePropertyModule = require('../internals/object-define-property');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\n\nmodule.exports = DESCRIPTORS ? function (object, key, value) {\n return definePropertyModule.f(object, key, createPropertyDescriptor(1, value));\n} : function (object, key, value) {\n object[key] = value;\n return object;\n};\n","'use strict';\nmodule.exports = function (bitmap, value) {\n return {\n enumerable: !(bitmap & 1),\n configurable: !(bitmap & 2),\n writable: !(bitmap & 4),\n value: value\n };\n};\n","'use strict';\nvar global = require('../internals/global');\n\n// eslint-disable-next-line es/no-object-defineproperty -- safe\nvar defineProperty = Object.defineProperty;\n\nmodule.exports = function (key, value) {\n try {\n defineProperty(global, key, { value: value, configurable: true, writable: true });\n } catch (error) {\n global[key] = value;\n } return value;\n};\n","'use strict';\nvar fails = require('../internals/fails');\n\n// Detect IE8's incomplete defineProperty implementation\nmodule.exports = !fails(function () {\n // eslint-disable-next-line es/no-object-defineproperty -- required for testing\n return Object.defineProperty({}, 1, { get: function () { return 7; } })[1] !== 7;\n});\n","'use strict';\nvar global = require('../internals/global');\nvar isObject = require('../internals/is-object');\n\nvar document = global.document;\n// typeof document.createElement is 'object' in old IE\nvar EXISTS = isObject(document) && isObject(document.createElement);\n\nmodule.exports = function (it) {\n return EXISTS ? document.createElement(it) : {};\n};\n","'use strict';\nmodule.exports = typeof navigator != 'undefined' && String(navigator.userAgent) || '';\n","'use strict';\nvar global = require('../internals/global');\nvar userAgent = require('../internals/engine-user-agent');\n\nvar process = global.process;\nvar Deno = global.Deno;\nvar versions = process && process.versions || Deno && Deno.version;\nvar v8 = versions && versions.v8;\nvar match, version;\n\nif (v8) {\n match = v8.split('.');\n // in old Chrome, versions of V8 isn't V8 = Chrome / 10\n // but their correct versions are not interesting for us\n version = match[0] > 0 && match[0] < 4 ? 1 : +(match[0] + match[1]);\n}\n\n// BrowserFS NodeJS `process` polyfill incorrectly set `.v8` to `0.0`\n// so check `userAgent` even if `.v8` exists, but 0\nif (!version && userAgent) {\n match = userAgent.match(/Edge\\/(\\d+)/);\n if (!match || match[1] >= 74) {\n match = userAgent.match(/Chrome\\/(\\d+)/);\n if (match) version = +match[1];\n }\n}\n\nmodule.exports = version;\n","'use strict';\nvar global = require('../internals/global');\nvar apply = require('../internals/function-apply');\nvar uncurryThis = require('../internals/function-uncurry-this-clause');\nvar isCallable = require('../internals/is-callable');\nvar getOwnPropertyDescriptor = require('../internals/object-get-own-property-descriptor').f;\nvar isForced = require('../internals/is-forced');\nvar path = require('../internals/path');\nvar bind = require('../internals/function-bind-context');\nvar createNonEnumerableProperty = require('../internals/create-non-enumerable-property');\nvar hasOwn = require('../internals/has-own-property');\n\nvar wrapConstructor = function (NativeConstructor) {\n var Wrapper = function (a, b, c) {\n if (this instanceof Wrapper) {\n switch (arguments.length) {\n case 0: return new NativeConstructor();\n case 1: return new NativeConstructor(a);\n case 2: return new NativeConstructor(a, b);\n } return new NativeConstructor(a, b, c);\n } return apply(NativeConstructor, this, arguments);\n };\n Wrapper.prototype = NativeConstructor.prototype;\n return Wrapper;\n};\n\n/*\n options.target - name of the target object\n options.global - target is the global object\n options.stat - export as static methods of target\n options.proto - export as prototype methods of target\n options.real - real prototype method for the `pure` version\n options.forced - export even if the native feature is available\n options.bind - bind methods to the target, required for the `pure` version\n options.wrap - wrap constructors to preventing global pollution, required for the `pure` version\n options.unsafe - use the simple assignment of property instead of delete + defineProperty\n options.sham - add a flag to not completely full polyfills\n options.enumerable - export as enumerable property\n options.dontCallGetSet - prevent calling a getter on target\n options.name - the .name of the function if it does not match the key\n*/\nmodule.exports = function (options, source) {\n var TARGET = options.target;\n var GLOBAL = options.global;\n var STATIC = options.stat;\n var PROTO = options.proto;\n\n var nativeSource = GLOBAL ? global : STATIC ? global[TARGET] : global[TARGET] && global[TARGET].prototype;\n\n var target = GLOBAL ? path : path[TARGET] || createNonEnumerableProperty(path, TARGET, {})[TARGET];\n var targetPrototype = target.prototype;\n\n var FORCED, USE_NATIVE, VIRTUAL_PROTOTYPE;\n var key, sourceProperty, targetProperty, nativeProperty, resultProperty, descriptor;\n\n for (key in source) {\n FORCED = isForced(GLOBAL ? key : TARGET + (STATIC ? '.' : '#') + key, options.forced);\n // contains in native\n USE_NATIVE = !FORCED && nativeSource && hasOwn(nativeSource, key);\n\n targetProperty = target[key];\n\n if (USE_NATIVE) if (options.dontCallGetSet) {\n descriptor = getOwnPropertyDescriptor(nativeSource, key);\n nativeProperty = descriptor && descriptor.value;\n } else nativeProperty = nativeSource[key];\n\n // export native or implementation\n sourceProperty = (USE_NATIVE && nativeProperty) ? nativeProperty : source[key];\n\n if (!FORCED && !PROTO && typeof targetProperty == typeof sourceProperty) continue;\n\n // bind methods to global for calling from export context\n if (options.bind && USE_NATIVE) resultProperty = bind(sourceProperty, global);\n // wrap global constructors for prevent changes in this version\n else if (options.wrap && USE_NATIVE) resultProperty = wrapConstructor(sourceProperty);\n // make static versions for prototype methods\n else if (PROTO && isCallable(sourceProperty)) resultProperty = uncurryThis(sourceProperty);\n // default case\n else resultProperty = sourceProperty;\n\n // add a flag to not completely full polyfills\n if (options.sham || (sourceProperty && sourceProperty.sham) || (targetProperty && targetProperty.sham)) {\n createNonEnumerableProperty(resultProperty, 'sham', true);\n }\n\n createNonEnumerableProperty(target, key, resultProperty);\n\n if (PROTO) {\n VIRTUAL_PROTOTYPE = TARGET + 'Prototype';\n if (!hasOwn(path, VIRTUAL_PROTOTYPE)) {\n createNonEnumerableProperty(path, VIRTUAL_PROTOTYPE, {});\n }\n // export virtual prototype methods\n createNonEnumerableProperty(path[VIRTUAL_PROTOTYPE], key, sourceProperty);\n // export real prototype methods\n if (options.real && targetPrototype && (FORCED || !targetPrototype[key])) {\n createNonEnumerableProperty(targetPrototype, key, sourceProperty);\n }\n }\n }\n};\n","'use strict';\nmodule.exports = function (exec) {\n try {\n return !!exec();\n } catch (error) {\n return true;\n }\n};\n","'use strict';\nvar NATIVE_BIND = require('../internals/function-bind-native');\n\nvar FunctionPrototype = Function.prototype;\nvar apply = FunctionPrototype.apply;\nvar call = FunctionPrototype.call;\n\n// eslint-disable-next-line es/no-reflect -- safe\nmodule.exports = typeof Reflect == 'object' && Reflect.apply || (NATIVE_BIND ? call.bind(apply) : function () {\n return call.apply(apply, arguments);\n});\n","'use strict';\nvar uncurryThis = require('../internals/function-uncurry-this-clause');\nvar aCallable = require('../internals/a-callable');\nvar NATIVE_BIND = require('../internals/function-bind-native');\n\nvar bind = uncurryThis(uncurryThis.bind);\n\n// optional / simple context binding\nmodule.exports = function (fn, that) {\n aCallable(fn);\n return that === undefined ? fn : NATIVE_BIND ? bind(fn, that) : function (/* ...args */) {\n return fn.apply(that, arguments);\n };\n};\n","'use strict';\nvar fails = require('../internals/fails');\n\nmodule.exports = !fails(function () {\n // eslint-disable-next-line es/no-function-prototype-bind -- safe\n var test = (function () { /* empty */ }).bind();\n // eslint-disable-next-line no-prototype-builtins -- safe\n return typeof test != 'function' || test.hasOwnProperty('prototype');\n});\n","'use strict';\nvar NATIVE_BIND = require('../internals/function-bind-native');\n\nvar call = Function.prototype.call;\n\nmodule.exports = NATIVE_BIND ? call.bind(call) : function () {\n return call.apply(call, arguments);\n};\n","'use strict';\nvar classofRaw = require('../internals/classof-raw');\nvar uncurryThis = require('../internals/function-uncurry-this');\n\nmodule.exports = function (fn) {\n // Nashorn bug:\n // https://github.com/zloirock/core-js/issues/1128\n // https://github.com/zloirock/core-js/issues/1130\n if (classofRaw(fn) === 'Function') return uncurryThis(fn);\n};\n","'use strict';\nvar NATIVE_BIND = require('../internals/function-bind-native');\n\nvar FunctionPrototype = Function.prototype;\nvar call = FunctionPrototype.call;\nvar uncurryThisWithBind = NATIVE_BIND && FunctionPrototype.bind.bind(call, call);\n\nmodule.exports = NATIVE_BIND ? uncurryThisWithBind : function (fn) {\n return function () {\n return call.apply(fn, arguments);\n };\n};\n","'use strict';\nvar path = require('../internals/path');\nvar global = require('../internals/global');\nvar isCallable = require('../internals/is-callable');\n\nvar aFunction = function (variable) {\n return isCallable(variable) ? variable : undefined;\n};\n\nmodule.exports = function (namespace, method) {\n return arguments.length < 2 ? aFunction(path[namespace]) || aFunction(global[namespace])\n : path[namespace] && path[namespace][method] || global[namespace] && global[namespace][method];\n};\n","'use strict';\nvar aCallable = require('../internals/a-callable');\nvar isNullOrUndefined = require('../internals/is-null-or-undefined');\n\n// `GetMethod` abstract operation\n// https://tc39.es/ecma262/#sec-getmethod\nmodule.exports = function (V, P) {\n var func = V[P];\n return isNullOrUndefined(func) ? undefined : aCallable(func);\n};\n","'use strict';\nvar check = function (it) {\n return it && it.Math === Math && it;\n};\n\n// https://github.com/zloirock/core-js/issues/86#issuecomment-115759028\nmodule.exports =\n // eslint-disable-next-line es/no-global-this -- safe\n check(typeof globalThis == 'object' && globalThis) ||\n check(typeof window == 'object' && window) ||\n // eslint-disable-next-line no-restricted-globals -- safe\n check(typeof self == 'object' && self) ||\n check(typeof global == 'object' && global) ||\n check(typeof this == 'object' && this) ||\n // eslint-disable-next-line no-new-func -- fallback\n (function () { return this; })() || Function('return this')();\n","'use strict';\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar toObject = require('../internals/to-object');\n\nvar hasOwnProperty = uncurryThis({}.hasOwnProperty);\n\n// `HasOwnProperty` abstract operation\n// https://tc39.es/ecma262/#sec-hasownproperty\n// eslint-disable-next-line es/no-object-hasown -- safe\nmodule.exports = Object.hasOwn || function hasOwn(it, key) {\n return hasOwnProperty(toObject(it), key);\n};\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\nvar createElement = require('../internals/document-create-element');\n\n// Thanks to IE8 for its funny defineProperty\nmodule.exports = !DESCRIPTORS && !fails(function () {\n // eslint-disable-next-line es/no-object-defineproperty -- required for testing\n return Object.defineProperty(createElement('div'), 'a', {\n get: function () { return 7; }\n }).a !== 7;\n});\n","'use strict';\nvar uncurryThis = require('../internals/function-uncurry-this');\nvar fails = require('../internals/fails');\nvar classof = require('../internals/classof-raw');\n\nvar $Object = Object;\nvar split = uncurryThis(''.split);\n\n// fallback for non-array-like ES3 and non-enumerable old V8 strings\nmodule.exports = fails(function () {\n // throws an error in rhino, see https://github.com/mozilla/rhino/issues/346\n // eslint-disable-next-line no-prototype-builtins -- safe\n return !$Object('z').propertyIsEnumerable(0);\n}) ? function (it) {\n return classof(it) === 'String' ? split(it, '') : $Object(it);\n} : $Object;\n","'use strict';\n// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot\nvar documentAll = typeof document == 'object' && document.all;\n\n// `IsCallable` abstract operation\n// https://tc39.es/ecma262/#sec-iscallable\n// eslint-disable-next-line unicorn/no-typeof-undefined -- required for testing\nmodule.exports = typeof documentAll == 'undefined' && documentAll !== undefined ? function (argument) {\n return typeof argument == 'function' || argument === documentAll;\n} : function (argument) {\n return typeof argument == 'function';\n};\n","'use strict';\nvar fails = require('../internals/fails');\nvar isCallable = require('../internals/is-callable');\n\nvar replacement = /#|\\.prototype\\./;\n\nvar isForced = function (feature, detection) {\n var value = data[normalize(feature)];\n return value === POLYFILL ? true\n : value === NATIVE ? false\n : isCallable(detection) ? fails(detection)\n : !!detection;\n};\n\nvar normalize = isForced.normalize = function (string) {\n return String(string).replace(replacement, '.').toLowerCase();\n};\n\nvar data = isForced.data = {};\nvar NATIVE = isForced.NATIVE = 'N';\nvar POLYFILL = isForced.POLYFILL = 'P';\n\nmodule.exports = isForced;\n","'use strict';\n// we can't use just `it == null` since of `document.all` special case\n// https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot-aec\nmodule.exports = function (it) {\n return it === null || it === undefined;\n};\n","'use strict';\nvar isCallable = require('../internals/is-callable');\n\nmodule.exports = function (it) {\n return typeof it == 'object' ? it !== null : isCallable(it);\n};\n","'use strict';\nmodule.exports = true;\n","'use strict';\nvar getBuiltIn = require('../internals/get-built-in');\nvar isCallable = require('../internals/is-callable');\nvar isPrototypeOf = require('../internals/object-is-prototype-of');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar $Object = Object;\n\nmodule.exports = USE_SYMBOL_AS_UID ? function (it) {\n return typeof it == 'symbol';\n} : function (it) {\n var $Symbol = getBuiltIn('Symbol');\n return isCallable($Symbol) && isPrototypeOf($Symbol.prototype, $Object(it));\n};\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\nvar V8_PROTOTYPE_DEFINE_BUG = require('../internals/v8-prototype-define-bug');\nvar anObject = require('../internals/an-object');\nvar toPropertyKey = require('../internals/to-property-key');\n\nvar $TypeError = TypeError;\n// eslint-disable-next-line es/no-object-defineproperty -- safe\nvar $defineProperty = Object.defineProperty;\n// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe\nvar $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\nvar ENUMERABLE = 'enumerable';\nvar CONFIGURABLE = 'configurable';\nvar WRITABLE = 'writable';\n\n// `Object.defineProperty` method\n// https://tc39.es/ecma262/#sec-object.defineproperty\nexports.f = DESCRIPTORS ? V8_PROTOTYPE_DEFINE_BUG ? function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPropertyKey(P);\n anObject(Attributes);\n if (typeof O === 'function' && P === 'prototype' && 'value' in Attributes && WRITABLE in Attributes && !Attributes[WRITABLE]) {\n var current = $getOwnPropertyDescriptor(O, P);\n if (current && current[WRITABLE]) {\n O[P] = Attributes.value;\n Attributes = {\n configurable: CONFIGURABLE in Attributes ? Attributes[CONFIGURABLE] : current[CONFIGURABLE],\n enumerable: ENUMERABLE in Attributes ? Attributes[ENUMERABLE] : current[ENUMERABLE],\n writable: false\n };\n }\n } return $defineProperty(O, P, Attributes);\n} : $defineProperty : function defineProperty(O, P, Attributes) {\n anObject(O);\n P = toPropertyKey(P);\n anObject(Attributes);\n if (IE8_DOM_DEFINE) try {\n return $defineProperty(O, P, Attributes);\n } catch (error) { /* empty */ }\n if ('get' in Attributes || 'set' in Attributes) throw new $TypeError('Accessors not supported');\n if ('value' in Attributes) O[P] = Attributes.value;\n return O;\n};\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar call = require('../internals/function-call');\nvar propertyIsEnumerableModule = require('../internals/object-property-is-enumerable');\nvar createPropertyDescriptor = require('../internals/create-property-descriptor');\nvar toIndexedObject = require('../internals/to-indexed-object');\nvar toPropertyKey = require('../internals/to-property-key');\nvar hasOwn = require('../internals/has-own-property');\nvar IE8_DOM_DEFINE = require('../internals/ie8-dom-define');\n\n// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe\nvar $getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// `Object.getOwnPropertyDescriptor` method\n// https://tc39.es/ecma262/#sec-object.getownpropertydescriptor\nexports.f = DESCRIPTORS ? $getOwnPropertyDescriptor : function getOwnPropertyDescriptor(O, P) {\n O = toIndexedObject(O);\n P = toPropertyKey(P);\n if (IE8_DOM_DEFINE) try {\n return $getOwnPropertyDescriptor(O, P);\n } catch (error) { /* empty */ }\n if (hasOwn(O, P)) return createPropertyDescriptor(!call(propertyIsEnumerableModule.f, O, P), O[P]);\n};\n","'use strict';\nvar uncurryThis = require('../internals/function-uncurry-this');\n\nmodule.exports = uncurryThis({}.isPrototypeOf);\n","'use strict';\nvar $propertyIsEnumerable = {}.propertyIsEnumerable;\n// eslint-disable-next-line es/no-object-getownpropertydescriptor -- safe\nvar getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor;\n\n// Nashorn ~ JDK8 bug\nvar NASHORN_BUG = getOwnPropertyDescriptor && !$propertyIsEnumerable.call({ 1: 2 }, 1);\n\n// `Object.prototype.propertyIsEnumerable` method implementation\n// https://tc39.es/ecma262/#sec-object.prototype.propertyisenumerable\nexports.f = NASHORN_BUG ? function propertyIsEnumerable(V) {\n var descriptor = getOwnPropertyDescriptor(this, V);\n return !!descriptor && descriptor.enumerable;\n} : $propertyIsEnumerable;\n","'use strict';\nvar call = require('../internals/function-call');\nvar isCallable = require('../internals/is-callable');\nvar isObject = require('../internals/is-object');\n\nvar $TypeError = TypeError;\n\n// `OrdinaryToPrimitive` abstract operation\n// https://tc39.es/ecma262/#sec-ordinarytoprimitive\nmodule.exports = function (input, pref) {\n var fn, val;\n if (pref === 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;\n if (isCallable(fn = input.valueOf) && !isObject(val = call(fn, input))) return val;\n if (pref !== 'string' && isCallable(fn = input.toString) && !isObject(val = call(fn, input))) return val;\n throw new $TypeError(\"Can't convert object to primitive value\");\n};\n","'use strict';\nmodule.exports = {};\n","'use strict';\nvar isNullOrUndefined = require('../internals/is-null-or-undefined');\n\nvar $TypeError = TypeError;\n\n// `RequireObjectCoercible` abstract operation\n// https://tc39.es/ecma262/#sec-requireobjectcoercible\nmodule.exports = function (it) {\n if (isNullOrUndefined(it)) throw new $TypeError(\"Can't call method on \" + it);\n return it;\n};\n","'use strict';\nvar global = require('../internals/global');\nvar defineGlobalProperty = require('../internals/define-global-property');\n\nvar SHARED = '__core-js_shared__';\nvar store = global[SHARED] || defineGlobalProperty(SHARED, {});\n\nmodule.exports = store;\n","'use strict';\nvar IS_PURE = require('../internals/is-pure');\nvar store = require('../internals/shared-store');\n\n(module.exports = function (key, value) {\n return store[key] || (store[key] = value !== undefined ? value : {});\n})('versions', []).push({\n version: '3.35.1',\n mode: IS_PURE ? 'pure' : 'global',\n copyright: '© 2014-2024 Denis Pushkarev (zloirock.ru)',\n license: 'https://github.com/zloirock/core-js/blob/v3.35.1/LICENSE',\n source: 'https://github.com/zloirock/core-js'\n});\n","'use strict';\n/* eslint-disable es/no-symbol -- required for testing */\nvar V8_VERSION = require('../internals/engine-v8-version');\nvar fails = require('../internals/fails');\nvar global = require('../internals/global');\n\nvar $String = global.String;\n\n// eslint-disable-next-line es/no-object-getownpropertysymbols -- required for testing\nmodule.exports = !!Object.getOwnPropertySymbols && !fails(function () {\n var symbol = Symbol('symbol detection');\n // Chrome 38 Symbol has incorrect toString conversion\n // `get-own-property-symbols` polyfill symbols converted to object are not Symbol instances\n // nb: Do not call `String` directly to avoid this being optimized out to `symbol+''` which will,\n // of course, fail.\n return !$String(symbol) || !(Object(symbol) instanceof Symbol) ||\n // Chrome 38-40 symbols are not inherited from DOM collections prototypes to instances\n !Symbol.sham && V8_VERSION && V8_VERSION < 41;\n});\n","'use strict';\n// toObject with fallback for non-array-like ES3 strings\nvar IndexedObject = require('../internals/indexed-object');\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nmodule.exports = function (it) {\n return IndexedObject(requireObjectCoercible(it));\n};\n","'use strict';\nvar requireObjectCoercible = require('../internals/require-object-coercible');\n\nvar $Object = Object;\n\n// `ToObject` abstract operation\n// https://tc39.es/ecma262/#sec-toobject\nmodule.exports = function (argument) {\n return $Object(requireObjectCoercible(argument));\n};\n","'use strict';\nvar call = require('../internals/function-call');\nvar isObject = require('../internals/is-object');\nvar isSymbol = require('../internals/is-symbol');\nvar getMethod = require('../internals/get-method');\nvar ordinaryToPrimitive = require('../internals/ordinary-to-primitive');\nvar wellKnownSymbol = require('../internals/well-known-symbol');\n\nvar $TypeError = TypeError;\nvar TO_PRIMITIVE = wellKnownSymbol('toPrimitive');\n\n// `ToPrimitive` abstract operation\n// https://tc39.es/ecma262/#sec-toprimitive\nmodule.exports = function (input, pref) {\n if (!isObject(input) || isSymbol(input)) return input;\n var exoticToPrim = getMethod(input, TO_PRIMITIVE);\n var result;\n if (exoticToPrim) {\n if (pref === undefined) pref = 'default';\n result = call(exoticToPrim, input, pref);\n if (!isObject(result) || isSymbol(result)) return result;\n throw new $TypeError(\"Can't convert object to primitive value\");\n }\n if (pref === undefined) pref = 'number';\n return ordinaryToPrimitive(input, pref);\n};\n","'use strict';\nvar toPrimitive = require('../internals/to-primitive');\nvar isSymbol = require('../internals/is-symbol');\n\n// `ToPropertyKey` abstract operation\n// https://tc39.es/ecma262/#sec-topropertykey\nmodule.exports = function (argument) {\n var key = toPrimitive(argument, 'string');\n return isSymbol(key) ? key : key + '';\n};\n","'use strict';\nvar $String = String;\n\nmodule.exports = function (argument) {\n try {\n return $String(argument);\n } catch (error) {\n return 'Object';\n }\n};\n","'use strict';\nvar uncurryThis = require('../internals/function-uncurry-this');\n\nvar id = 0;\nvar postfix = Math.random();\nvar toString = uncurryThis(1.0.toString);\n\nmodule.exports = function (key) {\n return 'Symbol(' + (key === undefined ? '' : key) + ')_' + toString(++id + postfix, 36);\n};\n","'use strict';\n/* eslint-disable es/no-symbol -- required for testing */\nvar NATIVE_SYMBOL = require('../internals/symbol-constructor-detection');\n\nmodule.exports = NATIVE_SYMBOL\n && !Symbol.sham\n && typeof Symbol.iterator == 'symbol';\n","'use strict';\nvar DESCRIPTORS = require('../internals/descriptors');\nvar fails = require('../internals/fails');\n\n// V8 ~ Chrome 36-\n// https://bugs.chromium.org/p/v8/issues/detail?id=3334\nmodule.exports = DESCRIPTORS && fails(function () {\n // eslint-disable-next-line es/no-object-defineproperty -- required for testing\n return Object.defineProperty(function () { /* empty */ }, 'prototype', {\n value: 42,\n writable: false\n }).prototype !== 42;\n});\n","'use strict';\nvar global = require('../internals/global');\nvar shared = require('../internals/shared');\nvar hasOwn = require('../internals/has-own-property');\nvar uid = require('../internals/uid');\nvar NATIVE_SYMBOL = require('../internals/symbol-constructor-detection');\nvar USE_SYMBOL_AS_UID = require('../internals/use-symbol-as-uid');\n\nvar Symbol = global.Symbol;\nvar WellKnownSymbolsStore = shared('wks');\nvar createWellKnownSymbol = USE_SYMBOL_AS_UID ? Symbol['for'] || Symbol : Symbol && Symbol.withoutSetter || uid;\n\nmodule.exports = function (name) {\n if (!hasOwn(WellKnownSymbolsStore, name)) {\n WellKnownSymbolsStore[name] = NATIVE_SYMBOL && hasOwn(Symbol, name)\n ? Symbol[name]\n : createWellKnownSymbol('Symbol.' + name);\n } return WellKnownSymbolsStore[name];\n};\n","'use strict';\nvar $ = require('../internals/export');\nvar global = require('../internals/global');\n\n// `globalThis` object\n// https://tc39.es/ecma262/#sec-globalthis\n$({ global: true, forced: global.globalThis !== global }, {\n globalThis: global\n});\n","'use strict';\n// TODO: Remove from `core-js@4`\nrequire('../modules/es.global-this');\n","'use strict';\nvar parent = require('../es/global-this');\n\nmodule.exports = parent;\n","// The module cache\nvar __webpack_module_cache__ = {};\n\n// The require function\nfunction __webpack_require__(moduleId) {\n\t// Check if module is in cache\n\tvar cachedModule = __webpack_module_cache__[moduleId];\n\tif (cachedModule !== undefined) {\n\t\treturn cachedModule.exports;\n\t}\n\t// Create a new module (and put it into the cache)\n\tvar module = __webpack_module_cache__[moduleId] = {\n\t\t// no module.id needed\n\t\t// no module.loaded needed\n\t\texports: {}\n\t};\n\n\t// Execute the module function\n\t__webpack_modules__[moduleId].call(module.exports, module, module.exports, __webpack_require__);\n\n\t// Return the exports of the module\n\treturn module.exports;\n}\n\n","// getDefaultExport function for compatibility with non-harmony modules\n__webpack_require__.n = (module) => {\n\tvar getter = module && module.__esModule ?\n\t\t() => (module['default']) :\n\t\t() => (module);\n\t__webpack_require__.d(getter, { a: getter });\n\treturn getter;\n};","// define getter functions for harmony exports\n__webpack_require__.d = (exports, definition) => {\n\tfor(var key in definition) {\n\t\tif(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {\n\t\t\tObject.defineProperty(exports, key, { enumerable: true, get: definition[key] });\n\t\t}\n\t}\n};","__webpack_require__.g = (function() {\n\tif (typeof globalThis === 'object') return globalThis;\n\ttry {\n\t\treturn this || new Function('return this')();\n\t} catch (e) {\n\t\tif (typeof window === 'object') return window;\n\t}\n})();","__webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))","// define __esModule on exports\n__webpack_require__.r = (exports) => {\n\tif(typeof Symbol !== 'undefined' && Symbol.toStringTag) {\n\t\tObject.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });\n\t}\n\tObject.defineProperty(exports, '__esModule', { value: true });\n};","const i18n = {\n // datepicker\n 'yearMonthFormat': 'MM YYYY',\n '请选择日期和时间': 'Please select date and time',\n '请选择日期': 'Please select date',\n '开始时间 ~ 结束时间': 'Begin time ~ End time',\n '开始日期 ~ 结束日期': 'Begin date ~ End date',\n '请选择年份': 'Please select year',\n '请选择月份': 'Please select month',\n '1月': 'Jan',\n '2月': 'Feb',\n '3月': 'Mar',\n '4月': 'Apr',\n '5月': 'May',\n '6月': 'Jun',\n '7月': 'Jul',\n '8月': 'Aug',\n '9月': 'Sep',\n '10月': 'Oct',\n '11月': 'Nov',\n '12月': 'Dec',\n '日': 'Sun',\n '一': 'Mon',\n '二': 'Tue',\n '三': 'Wed',\n '四': 'Thu',\n '五': 'Fri',\n '六': 'Sat',\n '{n}年': '{n}',\n '{start}年 - {end}年': '{start} - {end}',\n '今天': 'Today',\n '昨天': 'Yesterday',\n '明天': 'Tomorrow',\n '一周后': 'After one week',\n '一月后': 'After one month',\n '三月后': 'After three months',\n '一周前': 'Before one week',\n '一月前': 'Before one month',\n '三月前': 'Before three months',\n '上一周': 'Last week',\n '下一周': 'Next week',\n '上一个月': 'Last month',\n '下一个月': 'Next month',\n '前三个月': 'Last three months',\n '后三个月': 'Next three months',\n\n // timepicker\n '请选择时间': 'Please select time',\n '开始时间': 'Begin Time',\n '结束时间': 'End Time',\n\n // dialog\n '提示': 'Tip',\n '确定': 'OK',\n '取消': 'Cancel',\n '关闭': 'Close',\n\n // editable\n '编辑': 'Edit',\n\n // validator\n '必须填写': 'This field is required.',\n '请输入数字': 'Please enter only digits.',\n '请输入正确的邮箱地址': 'Please enter a valid email address.',\n '请输入正确的网址': 'Please enter a valid URL.',\n '请输入正确的日期': 'Please enter a valid date.',\n '请输入正确的日期 (YYYY-MM-DD)': 'Please enter a valid date (ISO).',\n '请输入正确的数': 'Please enter a valid number.',\n '请输入不大于 {n} 的数': 'Please enter a value less than or equal to {n}.',\n '请输入不小于 {n} 的数': 'Please enter a value greater than or equal to {n}.',\n '请输入 {n[0]} 到 {n[1]} 之间的数': 'Please enter a value between {n[0]} and {n[1]}.',\n '请输入步长为 {n} 的数': 'Please enter a number which should be a multipe of {n}',\n '两次输入不一致': 'Please enter the same value again.',\n '两': '2',\n '最多选择 {n} 项': 'Please select no more than {n} item{s:n}.',\n '最多输入 {n} 个字符': 'Please enter no more than {n} character{s:n}.',\n '最少选择 {n} 项': 'Please select at least {n} item{s:n}.',\n '最少输入 {n} 个字符': 'Please enter at least {n} character{s:n}.',\n '请选择 {n} 到 {m} 项': 'Please select {n}~{m} item{s:m}.', \n '请输入 {n} 到 {m} 个字符': 'Please enter {n}~{m} character{s:m}.',\n\n // pagination\n '{n} 条 / 页': '{n} / page',\n '前往': 'Goto',\n '页': '',\n '共 {n} 条': 'Total {n}',\n\n // table\n '暂无数据': 'No data to display.',\n '重置': 'Reset',\n\n // transfer\n '请输入': 'Please enter',\n '请选择': 'Please select',\n '已选择': 'Selected',\n '全选': 'Select all',\n '清空': 'Clear all',\n\n // select\n '请输入或选择': 'Please enter or select',\n '无数据': 'No data',\n\n // upload\n '点击上传': 'Click to Upload',\n '将文件拖到此处,或<a>点击上传</a>': 'Drag file to this area or <a>click to upload</a>',\n '查看图片': 'View Image',\n '查看视频': 'View Video',\n '查看音频': 'View Audio',\n '查看文件夹': 'View Folder',\n '查看文件': 'View File',\n '上传图片': 'Upload Image',\n '上传文件夹': 'Upload Folder',\n '超出文件数量最大限制:{limit}': 'Exceed the maximum limit of the number of files: {limit}',\n '\"{name}\" 超出文件最大限制:{maxSize}kb': '\"{name}\" exceeds the maximum size of file: {maxSize}kb',\n '\"{name}\" 文件类型不合法': '\"{name}\" invalid file type',\n '查看': 'Preview',\n '下载': 'Download',\n '删除': 'Delete',\n '上传中': 'Uploading',\n '处理中': 'Processing',\n '生成中': 'Generating',\n '上传失败': 'Upload failed',\n '已完成': 'Completed',\n '在新窗口中打开': 'Open in a new window',\n '未命名文件': 'Untitled file',\n\n // search\n '请输入关键字': 'Please enter keywords',\n\n // sender\n '请输入...': 'Please enter...',\n '输入对话内容(Enter发送, Shift + Enter 换行)': 'Enter your message (Enter to send, Shift + Enter for newline)',\n '发送': 'Send',\n '停止生成': 'Stop generating',\n '释放文件以上传': 'Release files to upload',\n '文件拖动到此处即可上传': 'Drag files here to upload',\n '上传附件': 'Upload attachments',\n\n // copy\n '复制成功': 'Copy successfully!',\n '复制失败': 'Copy failed!',\n '复制': 'Copy',\n '刷新': 'Refresh',\n '重试': 'Retry',\n '加载中': 'Loading',\n '加载失败': 'Load failed',\n '思考中': 'Thinking',\n};\n\nexport default i18n; \n\n/**\n * global does not exist in Vite, use standard object globalThis\n */\nif (typeof (globalThis as any).Kpc !== 'undefined') {\n (globalThis as any).Kpc.localize(i18n);\n}\n"],"sourceRoot":""}
@@ -1 +1 @@
1
- !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.i18n=t():e.i18n=t()}(self,function(){return r={149:(e,t,r)=>{e.exports=r(888)},5023:(e,t,r)=>{"use strict";r=r(2369);e.exports=r},1031:(e,t,r)=>{"use strict";r(2595),e.exports=r(1899)},888:(e,t,r)=>{"use strict";e.exports=r(1403)},1403:(e,t,r)=>{"use strict";r(9668);r=r(5023);e.exports=r},4883:(e,t,r)=>{"use strict";var n=r(7475),o=r(9826),s=TypeError;e.exports=function(e){if(n(e))return e;throw new s(o(e)+" is not a function")}},6059:(e,t,r)=>{"use strict";var n=r(941),o=String,s=TypeError;e.exports=function(e){if(n(e))return e;throw new s(o(e)+" is not an object")}},2532:(e,t,r)=>{"use strict";var r=r(5329),n=r({}.toString),o=r("".slice);e.exports=function(e){return o(n(e),8,-1)}},2029:(e,t,r)=>{"use strict";var n=r(5746),o=r(5988),s=r(1887);e.exports=n?function(e,t,r){return o.f(e,t,s(1,r))}:function(e,t,r){return e[t]=r,e}},1887:e=>{"use strict";e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},5609:(e,t,r)=>{"use strict";var n=r(1899),o=Object.defineProperty;e.exports=function(t,r){try{o(n,t,{value:r,configurable:!0,writable:!0})}catch(e){n[t]=r}return r}},5746:(e,t,r)=>{"use strict";r=r(5981);e.exports=!r(function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]})},1333:(e,t,r)=>{"use strict";var n=r(1899),r=r(941),o=n.document,s=r(o)&&r(o.createElement);e.exports=function(e){return s?o.createElement(e):{}}},2861:e=>{"use strict";e.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},3385:(e,t,r)=>{"use strict";var n,o,s=r(1899),r=r(2861),i=s.process,s=s.Deno,i=i&&i.versions||s&&s.version,s=i&&i.v8;!(o=s?0<(n=s.split("."))[0]&&n[0]<4?1:+(n[0]+n[1]):o)&&r&&(!(n=r.match(/Edge\/(\d+)/))||74<=n[1])&&(n=r.match(/Chrome\/(\d+)/))&&(o=+n[1]),e.exports=o},6887:(e,t,r)=>{"use strict";function m(n){function o(e,t,r){if(this instanceof o){switch(arguments.length){case 0:return new n;case 1:return new n(e);case 2:return new n(e,t)}return new n(e,t,r)}return s(n,this,arguments)}return o.prototype=n.prototype,o}var v=r(1899),s=r(9730),b=r(7484),h=r(7475),x=r(9677).f,g=r(7252),w=r(4058),P=r(6843),j=r(2029),S=r(953);e.exports=function(e,t){var r,n,o,s,i,a,u=e.target,c=e.global,l=e.stat,p=e.proto,f=c?v:l?v[u]:v[u]&&v[u].prototype,d=c?w:w[u]||j(w,u,{})[u],y=d.prototype;for(n in t)i=!(r=g(c?n:u+(l?".":"#")+n,e.forced))&&f&&S(f,n),s=d[n],i&&(a=e.dontCallGetSet?(a=x(f,n))&&a.value:f[n]),o=i&&a?a:t[n],(r||p||typeof s!=typeof o)&&(i=e.bind&&i?P(o,v):e.wrap&&i?m(o):p&&h(o)?b(o):o,(e.sham||o&&o.sham||s&&s.sham)&&j(i,"sham",!0),j(d,n,i),p)&&(S(w,s=u+"Prototype")||j(w,s,{}),j(w[s],n,o),e.real)&&y&&(r||!y[n])&&j(y,n,o)}},5981:e=>{"use strict";e.exports=function(e){try{return!!e()}catch(e){return!0}}},9730:(e,t,r)=>{"use strict";var r=r(8285),n=Function.prototype,o=n.apply,s=n.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?s.bind(o):function(){return s.apply(o,arguments)})},6843:(e,t,r)=>{"use strict";var n=r(7484),o=r(4883),s=r(8285),i=n(n.bind);e.exports=function(e,t){return o(e),void 0===t?e:s?i(e,t):function(){return e.apply(t,arguments)}}},8285:(e,t,r)=>{"use strict";r=r(5981);e.exports=!r(function(){var e=function(){}.bind();return"function"!=typeof e||e.hasOwnProperty("prototype")})},8834:(e,t,r)=>{"use strict";var r=r(8285),n=Function.prototype.call;e.exports=r?n.bind(n):function(){return n.apply(n,arguments)}},7484:(e,t,r)=>{"use strict";var n=r(2532),o=r(5329);e.exports=function(e){if("Function"===n(e))return o(e)}},5329:(e,t,r)=>{"use strict";var r=r(8285),n=Function.prototype,o=n.call,n=r&&n.bind.bind(o,o);e.exports=r?n:function(e){return function(){return o.apply(e,arguments)}}},626:(e,t,r)=>{"use strict";function n(e){return i(e)?e:void 0}var o=r(4058),s=r(1899),i=r(7475);e.exports=function(e,t){return arguments.length<2?n(o[e])||n(s[e]):o[e]&&o[e][t]||s[e]&&s[e][t]}},4229:(e,t,r)=>{"use strict";var n=r(4883),o=r(2119);e.exports=function(e,t){e=e[t];return o(e)?void 0:n(e)}},1899:function(e,t,r){"use strict";function n(e){return e&&e.Math===Math&&e}e.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof r.g&&r.g)||n("object"==typeof this&&this)||function(){return this}()||Function("return this")()},953:(e,t,r)=>{"use strict";var n=r(5329),o=r(9678),s=n({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return s(o(e),t)}},2840:(e,t,r)=>{"use strict";var n=r(5746),o=r(5981),s=r(1333);e.exports=!n&&!o(function(){return 7!==Object.defineProperty(s("div"),"a",{get:function(){return 7}}).a})},7026:(e,t,r)=>{"use strict";var n=r(5329),o=r(5981),s=r(2532),i=Object,a=n("".split);e.exports=o(function(){return!i("z").propertyIsEnumerable(0)})?function(e){return"String"===s(e)?a(e,""):i(e)}:i},7475:e=>{"use strict";var t="object"==typeof document&&document.all;e.exports=void 0===t&&void 0!==t?function(e){return"function"==typeof e||e===t}:function(e){return"function"==typeof e}},7252:(e,t,r)=>{"use strict";function n(e,t){return(e=u[a(e)])===l||e!==c&&(s(t)?o(t):!!t)}var o=r(5981),s=r(7475),i=/#|\.prototype\./,a=n.normalize=function(e){return String(e).replace(i,".").toLowerCase()},u=n.data={},c=n.NATIVE="N",l=n.POLYFILL="P";e.exports=n},2119:e=>{"use strict";e.exports=function(e){return null==e}},941:(e,t,r)=>{"use strict";var n=r(7475);e.exports=function(e){return"object"==typeof e?null!==e:n(e)}},2529:e=>{"use strict";e.exports=!0},6664:(e,t,r)=>{"use strict";var n=r(626),o=r(7475),s=r(7046),r=r(2302),i=Object;e.exports=r?function(e){return"symbol"==typeof e}:function(e){var t=n("Symbol");return o(t)&&s(t.prototype,i(e))}},5988:(e,t,r)=>{"use strict";var n=r(5746),o=r(2840),s=r(3937),i=r(6059),a=r(3894),u=TypeError,c=Object.defineProperty,l=Object.getOwnPropertyDescriptor,p="enumerable",f="configurable",d="writable";t.f=n?s?function(e,t,r){var n;return i(e),t=a(t),i(r),"function"==typeof e&&"prototype"===t&&"value"in r&&d in r&&!r[d]&&(n=l(e,t))&&n[d]&&(e[t]=r.value,r={configurable:(f in r?r:n)[f],enumerable:(p in r?r:n)[p],writable:!1}),c(e,t,r)}:c:function(e,t,r){if(i(e),t=a(t),i(r),o)try{return c(e,t,r)}catch(e){}if("get"in r||"set"in r)throw new u("Accessors not supported");return"value"in r&&(e[t]=r.value),e}},9677:(e,t,r)=>{"use strict";var n=r(5746),o=r(8834),s=r(6760),i=r(1887),a=r(4529),u=r(3894),c=r(953),l=r(2840),p=Object.getOwnPropertyDescriptor;t.f=n?p:function(e,t){if(e=a(e),t=u(t),l)try{return p(e,t)}catch(e){}if(c(e,t))return i(!o(s.f,e,t),e[t])}},7046:(e,t,r)=>{"use strict";r=r(5329);e.exports=r({}.isPrototypeOf)},6760:(e,t)=>{"use strict";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!r.call({1:2},1);t.f=o?function(e){e=n(this,e);return!!e&&e.enumerable}:r},9811:(e,t,r)=>{"use strict";var o=r(8834),s=r(7475),i=r(941),a=TypeError;e.exports=function(e,t){var r,n;if("string"===t&&s(r=e.toString)&&!i(n=o(r,e)))return n;if(s(r=e.valueOf)&&!i(n=o(r,e)))return n;if("string"!==t&&s(r=e.toString)&&!i(n=o(r,e)))return n;throw new a("Can't convert object to primitive value")}},4058:e=>{"use strict";e.exports={}},8219:(e,t,r)=>{"use strict";var n=r(2119),o=TypeError;e.exports=function(e){if(n(e))throw new o("Can't call method on "+e);return e}},3030:(e,t,r)=>{"use strict";var n=r(1899),r=r(5609),o="__core-js_shared__",n=n[o]||r(o,{});e.exports=n},8726:(e,t,r)=>{"use strict";var n=r(2529),o=r(3030);(e.exports=function(e,t){return o[e]||(o[e]=void 0!==t?t:{})})("versions",[]).push({version:"3.35.1",mode:n?"pure":"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.35.1/LICENSE",source:"https://github.com/zloirock/core-js"})},3405:(e,t,r)=>{"use strict";var n=r(3385),o=r(5981),s=r(1899).String;e.exports=!!Object.getOwnPropertySymbols&&!o(function(){var e=Symbol("symbol detection");return!s(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&n&&n<41})},4529:(e,t,r)=>{"use strict";var n=r(7026),o=r(8219);e.exports=function(e){return n(o(e))}},9678:(e,t,r)=>{"use strict";var n=r(8219),o=Object;e.exports=function(e){return o(n(e))}},6935:(e,t,r)=>{"use strict";var n=r(8834),o=r(941),s=r(6664),i=r(4229),a=r(9811),r=r(9813),u=TypeError,c=r("toPrimitive");e.exports=function(e,t){if(!o(e)||s(e))return e;var r=i(e,c);if(r){if(r=n(r,e,t=void 0===t?"default":t),!o(r)||s(r))return r;throw new u("Can't convert object to primitive value")}return a(e,t=void 0===t?"number":t)}},3894:(e,t,r)=>{"use strict";var n=r(6935),o=r(6664);e.exports=function(e){e=n(e,"string");return o(e)?e:e+""}},9826:e=>{"use strict";var t=String;e.exports=function(e){try{return t(e)}catch(e){return"Object"}}},9418:(e,t,r)=>{"use strict";var r=r(5329),n=0,o=Math.random(),s=r(1..toString);e.exports=function(e){return"Symbol("+(void 0===e?"":e)+")_"+s(++n+o,36)}},2302:(e,t,r)=>{"use strict";r=r(3405);e.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},3937:(e,t,r)=>{"use strict";var n=r(5746),r=r(5981);e.exports=n&&r(function(){return 42!==Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype})},9813:(e,t,r)=>{"use strict";var n=r(1899),o=r(8726),s=r(953),i=r(9418),a=r(3405),r=r(2302),u=n.Symbol,c=o("wks"),l=r?u.for||u:u&&u.withoutSetter||i;e.exports=function(e){return s(c,e)||(c[e]=a&&s(u,e)?u[e]:l("Symbol."+e)),c[e]}},2595:(e,t,r)=>{"use strict";var n=r(6887),r=r(1899);n({global:!0,forced:r.globalThis!==r},{globalThis:r})},9668:(e,t,r)=>{"use strict";r(2595)},2369:(e,t,r)=>{"use strict";r=r(1031);e.exports=r}},o={},n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},s={},(()=>{"use strict";n.r(s),n.d(s,{default:()=>r});var e=n(149),e=n.n(e),t={yearMonthFormat:"MM YYYY","请选择日期和时间":"Please select date and time","请选择日期":"Please select date","开始时间 ~ 结束时间":"Begin time ~ End time","开始日期 ~ 结束日期":"Begin date ~ End date","请选择年份":"Please select year","请选择月份":"Please select month","1月":"Jan","2月":"Feb","3月":"Mar","4月":"Apr","5月":"May","6月":"Jun","7月":"Jul","8月":"Aug","9月":"Sep","10月":"Oct","11月":"Nov","12月":"Dec","日":"Sun","一":"Mon","二":"Tue","三":"Wed","四":"Thu","五":"Fri","六":"Sat","{n}年":"{n}","{start}年 - {end}年":"{start} - {end}","今天":"Today","昨天":"Yesterday","明天":"Tomorrow","一周后":"After one week","一月后":"After one month","三月后":"After three months","一周前":"Before one week","一月前":"Before one month","三月前":"Before three months","上一周":"Last week","下一周":"Next week","上一个月":"Last month","下一个月":"Next month","前三个月":"Last three months","后三个月":"Next three months","请选择时间":"Please select time","开始时间":"Begin Time","结束时间":"End Time","提示":"Tip","确定":"OK","取消":"Cancel","关闭":"Close","编辑":"Edit","必须填写":"This field is required.","请输入数字":"Please enter only digits.","请输入正确的邮箱地址":"Please enter a valid email address.","请输入正确的网址":"Please enter a valid URL.","请输入正确的日期":"Please enter a valid date.","请输入正确的日期 (YYYY-MM-DD)":"Please enter a valid date (ISO).","请输入正确的数":"Please enter a valid number.","请输入不大于 {n} 的数":"Please enter a value less than or equal to {n}.","请输入不小于 {n} 的数":"Please enter a value greater than or equal to {n}.","请输入 {n[0]} 到 {n[1]} 之间的数":"Please enter a value between {n[0]} and {n[1]}.","请输入步长为 {n} 的数":"Please enter a number which should be a multipe of {n}","两次输入不一致":"Please enter the same value again.","两":"2","最多选择 {n} 项":"Please select no more than {n} item{s:n}.","最多输入 {n} 个字符":"Please enter no more than {n} character{s:n}.","最少选择 {n} 项":"Please select at least {n} item{s:n}.","最少输入 {n} 个字符":"Please enter at least {n} character{s:n}.","请选择 {n} 到 {m} 项":"Please select {n}~{m} item{s:m}.","请输入 {n} 到 {m} 个字符":"Please enter {n}~{m} character{s:m}.","{n} 条 / 页":"{n} / page","前往":"Goto","页":"","共 {n} 条":"Total {n}","暂无数据":"No data to display.","重置":"Reset","请输入":"Please enter","请选择":"Please select","已选择":"Selected","全选":"Select all","清空":"Clear all","请输入或选择":"Please enter or select","无数据":"No data","点击上传":"Click to Upload","将文件拖到此处,或<a>点击上传</a>":"Drag file to this area or <a>click to upload</a>","查看图片":"View Image","上传图片":"Upload Image","超出文件数量最大限制:{limit}":"Exceed the maximum limit of the number of files: {limit}",'"{name}" 超出文件最大限制:{maxSize}kb':'"{name}" exceeds the maximum size of file: {maxSize}kb','"{name}" 文件类型不合法':'"{name}" invalid file type',"请输入关键字":"Please enter keywords","复制成功":"Copy successfully!","复制失败":"Copy failed!","复制":"Copy"};const r=t;void 0!==e().Kpc&&e().Kpc.localize(t)})(),s;function n(e){var t=o[e];return void 0!==t||(t=o[e]={exports:{}},r[e].call(t.exports,t,t.exports,n)),t.exports}var r,o,s});
1
+ !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):"object"==typeof exports?exports.i18n=t():e.i18n=t()}(self,function(){return r={149:(e,t,r)=>{e.exports=r(888)},5023:(e,t,r)=>{"use strict";r=r(2369);e.exports=r},1031:(e,t,r)=>{"use strict";r(2595),e.exports=r(1899)},888:(e,t,r)=>{"use strict";e.exports=r(1403)},1403:(e,t,r)=>{"use strict";r(9668);r=r(5023);e.exports=r},4883:(e,t,r)=>{"use strict";var n=r(7475),o=r(9826),i=TypeError;e.exports=function(e){if(n(e))return e;throw new i(o(e)+" is not a function")}},6059:(e,t,r)=>{"use strict";var n=r(941),o=String,i=TypeError;e.exports=function(e){if(n(e))return e;throw new i(o(e)+" is not an object")}},2532:(e,t,r)=>{"use strict";var r=r(5329),n=r({}.toString),o=r("".slice);e.exports=function(e){return o(n(e),8,-1)}},2029:(e,t,r)=>{"use strict";var n=r(5746),o=r(5988),i=r(1887);e.exports=n?function(e,t,r){return o.f(e,t,i(1,r))}:function(e,t,r){return e[t]=r,e}},1887:e=>{"use strict";e.exports=function(e,t){return{enumerable:!(1&e),configurable:!(2&e),writable:!(4&e),value:t}}},5609:(e,t,r)=>{"use strict";var n=r(1899),o=Object.defineProperty;e.exports=function(t,r){try{o(n,t,{value:r,configurable:!0,writable:!0})}catch(e){n[t]=r}return r}},5746:(e,t,r)=>{"use strict";r=r(5981);e.exports=!r(function(){return 7!==Object.defineProperty({},1,{get:function(){return 7}})[1]})},1333:(e,t,r)=>{"use strict";var n=r(1899),r=r(941),o=n.document,i=r(o)&&r(o.createElement);e.exports=function(e){return i?o.createElement(e):{}}},2861:e=>{"use strict";e.exports="undefined"!=typeof navigator&&String(navigator.userAgent)||""},3385:(e,t,r)=>{"use strict";var n,o,i=r(1899),r=r(2861),s=i.process,i=i.Deno,s=s&&s.versions||i&&i.version,i=s&&s.v8;!(o=i?0<(n=i.split("."))[0]&&n[0]<4?1:+(n[0]+n[1]):o)&&r&&(!(n=r.match(/Edge\/(\d+)/))||74<=n[1])&&(n=r.match(/Chrome\/(\d+)/))&&(o=+n[1]),e.exports=o},6887:(e,t,r)=>{"use strict";function m(n){function o(e,t,r){if(this instanceof o){switch(arguments.length){case 0:return new n;case 1:return new n(e);case 2:return new n(e,t)}return new n(e,t,r)}return i(n,this,arguments)}return o.prototype=n.prototype,o}var v=r(1899),i=r(9730),b=r(7484),h=r(7475),g=r(9677).f,x=r(7252),w=r(4058),P=r(6843),S=r(2029),j=r(953);e.exports=function(e,t){var r,n,o,i,s,a,u=e.target,c=e.global,l=e.stat,p=e.proto,f=c?v:l?v[u]:v[u]&&v[u].prototype,d=c?w:w[u]||S(w,u,{})[u],y=d.prototype;for(n in t)s=!(r=x(c?n:u+(l?".":"#")+n,e.forced))&&f&&j(f,n),i=d[n],s&&(a=e.dontCallGetSet?(a=g(f,n))&&a.value:f[n]),o=s&&a?a:t[n],(r||p||typeof i!=typeof o)&&(s=e.bind&&s?P(o,v):e.wrap&&s?m(o):p&&h(o)?b(o):o,(e.sham||o&&o.sham||i&&i.sham)&&S(s,"sham",!0),S(d,n,s),p)&&(j(w,i=u+"Prototype")||S(w,i,{}),S(w[i],n,o),e.real)&&y&&(r||!y[n])&&S(y,n,o)}},5981:e=>{"use strict";e.exports=function(e){try{return!!e()}catch(e){return!0}}},9730:(e,t,r)=>{"use strict";var r=r(8285),n=Function.prototype,o=n.apply,i=n.call;e.exports="object"==typeof Reflect&&Reflect.apply||(r?i.bind(o):function(){return i.apply(o,arguments)})},6843:(e,t,r)=>{"use strict";var n=r(7484),o=r(4883),i=r(8285),s=n(n.bind);e.exports=function(e,t){return o(e),void 0===t?e:i?s(e,t):function(){return e.apply(t,arguments)}}},8285:(e,t,r)=>{"use strict";r=r(5981);e.exports=!r(function(){var e=function(){}.bind();return"function"!=typeof e||e.hasOwnProperty("prototype")})},8834:(e,t,r)=>{"use strict";var r=r(8285),n=Function.prototype.call;e.exports=r?n.bind(n):function(){return n.apply(n,arguments)}},7484:(e,t,r)=>{"use strict";var n=r(2532),o=r(5329);e.exports=function(e){if("Function"===n(e))return o(e)}},5329:(e,t,r)=>{"use strict";var r=r(8285),n=Function.prototype,o=n.call,n=r&&n.bind.bind(o,o);e.exports=r?n:function(e){return function(){return o.apply(e,arguments)}}},626:(e,t,r)=>{"use strict";function n(e){return s(e)?e:void 0}var o=r(4058),i=r(1899),s=r(7475);e.exports=function(e,t){return arguments.length<2?n(o[e])||n(i[e]):o[e]&&o[e][t]||i[e]&&i[e][t]}},4229:(e,t,r)=>{"use strict";var n=r(4883),o=r(2119);e.exports=function(e,t){e=e[t];return o(e)?void 0:n(e)}},1899:function(e,t,r){"use strict";function n(e){return e&&e.Math===Math&&e}e.exports=n("object"==typeof globalThis&&globalThis)||n("object"==typeof window&&window)||n("object"==typeof self&&self)||n("object"==typeof r.g&&r.g)||n("object"==typeof this&&this)||function(){return this}()||Function("return this")()},953:(e,t,r)=>{"use strict";var n=r(5329),o=r(9678),i=n({}.hasOwnProperty);e.exports=Object.hasOwn||function(e,t){return i(o(e),t)}},2840:(e,t,r)=>{"use strict";var n=r(5746),o=r(5981),i=r(1333);e.exports=!n&&!o(function(){return 7!==Object.defineProperty(i("div"),"a",{get:function(){return 7}}).a})},7026:(e,t,r)=>{"use strict";var n=r(5329),o=r(5981),i=r(2532),s=Object,a=n("".split);e.exports=o(function(){return!s("z").propertyIsEnumerable(0)})?function(e){return"String"===i(e)?a(e,""):s(e)}:s},7475:e=>{"use strict";var t="object"==typeof document&&document.all;e.exports=void 0===t&&void 0!==t?function(e){return"function"==typeof e||e===t}:function(e){return"function"==typeof e}},7252:(e,t,r)=>{"use strict";function n(e,t){return(e=u[a(e)])===l||e!==c&&(i(t)?o(t):!!t)}var o=r(5981),i=r(7475),s=/#|\.prototype\./,a=n.normalize=function(e){return String(e).replace(s,".").toLowerCase()},u=n.data={},c=n.NATIVE="N",l=n.POLYFILL="P";e.exports=n},2119:e=>{"use strict";e.exports=function(e){return null==e}},941:(e,t,r)=>{"use strict";var n=r(7475);e.exports=function(e){return"object"==typeof e?null!==e:n(e)}},2529:e=>{"use strict";e.exports=!0},6664:(e,t,r)=>{"use strict";var n=r(626),o=r(7475),i=r(7046),r=r(2302),s=Object;e.exports=r?function(e){return"symbol"==typeof e}:function(e){var t=n("Symbol");return o(t)&&i(t.prototype,s(e))}},5988:(e,t,r)=>{"use strict";var n=r(5746),o=r(2840),i=r(3937),s=r(6059),a=r(3894),u=TypeError,c=Object.defineProperty,l=Object.getOwnPropertyDescriptor,p="enumerable",f="configurable",d="writable";t.f=n?i?function(e,t,r){var n;return s(e),t=a(t),s(r),"function"==typeof e&&"prototype"===t&&"value"in r&&d in r&&!r[d]&&(n=l(e,t))&&n[d]&&(e[t]=r.value,r={configurable:(f in r?r:n)[f],enumerable:(p in r?r:n)[p],writable:!1}),c(e,t,r)}:c:function(e,t,r){if(s(e),t=a(t),s(r),o)try{return c(e,t,r)}catch(e){}if("get"in r||"set"in r)throw new u("Accessors not supported");return"value"in r&&(e[t]=r.value),e}},9677:(e,t,r)=>{"use strict";var n=r(5746),o=r(8834),i=r(6760),s=r(1887),a=r(4529),u=r(3894),c=r(953),l=r(2840),p=Object.getOwnPropertyDescriptor;t.f=n?p:function(e,t){if(e=a(e),t=u(t),l)try{return p(e,t)}catch(e){}if(c(e,t))return s(!o(i.f,e,t),e[t])}},7046:(e,t,r)=>{"use strict";r=r(5329);e.exports=r({}.isPrototypeOf)},6760:(e,t)=>{"use strict";var r={}.propertyIsEnumerable,n=Object.getOwnPropertyDescriptor,o=n&&!r.call({1:2},1);t.f=o?function(e){e=n(this,e);return!!e&&e.enumerable}:r},9811:(e,t,r)=>{"use strict";var o=r(8834),i=r(7475),s=r(941),a=TypeError;e.exports=function(e,t){var r,n;if("string"===t&&i(r=e.toString)&&!s(n=o(r,e)))return n;if(i(r=e.valueOf)&&!s(n=o(r,e)))return n;if("string"!==t&&i(r=e.toString)&&!s(n=o(r,e)))return n;throw new a("Can't convert object to primitive value")}},4058:e=>{"use strict";e.exports={}},8219:(e,t,r)=>{"use strict";var n=r(2119),o=TypeError;e.exports=function(e){if(n(e))throw new o("Can't call method on "+e);return e}},3030:(e,t,r)=>{"use strict";var n=r(1899),r=r(5609),o="__core-js_shared__",n=n[o]||r(o,{});e.exports=n},8726:(e,t,r)=>{"use strict";var n=r(2529),o=r(3030);(e.exports=function(e,t){return o[e]||(o[e]=void 0!==t?t:{})})("versions",[]).push({version:"3.35.1",mode:n?"pure":"global",copyright:"© 2014-2024 Denis Pushkarev (zloirock.ru)",license:"https://github.com/zloirock/core-js/blob/v3.35.1/LICENSE",source:"https://github.com/zloirock/core-js"})},3405:(e,t,r)=>{"use strict";var n=r(3385),o=r(5981),i=r(1899).String;e.exports=!!Object.getOwnPropertySymbols&&!o(function(){var e=Symbol("symbol detection");return!i(e)||!(Object(e)instanceof Symbol)||!Symbol.sham&&n&&n<41})},4529:(e,t,r)=>{"use strict";var n=r(7026),o=r(8219);e.exports=function(e){return n(o(e))}},9678:(e,t,r)=>{"use strict";var n=r(8219),o=Object;e.exports=function(e){return o(n(e))}},6935:(e,t,r)=>{"use strict";var n=r(8834),o=r(941),i=r(6664),s=r(4229),a=r(9811),r=r(9813),u=TypeError,c=r("toPrimitive");e.exports=function(e,t){if(!o(e)||i(e))return e;var r=s(e,c);if(r){if(r=n(r,e,t=void 0===t?"default":t),!o(r)||i(r))return r;throw new u("Can't convert object to primitive value")}return a(e,t=void 0===t?"number":t)}},3894:(e,t,r)=>{"use strict";var n=r(6935),o=r(6664);e.exports=function(e){e=n(e,"string");return o(e)?e:e+""}},9826:e=>{"use strict";var t=String;e.exports=function(e){try{return t(e)}catch(e){return"Object"}}},9418:(e,t,r)=>{"use strict";var r=r(5329),n=0,o=Math.random(),i=r(1..toString);e.exports=function(e){return"Symbol("+(void 0===e?"":e)+")_"+i(++n+o,36)}},2302:(e,t,r)=>{"use strict";r=r(3405);e.exports=r&&!Symbol.sham&&"symbol"==typeof Symbol.iterator},3937:(e,t,r)=>{"use strict";var n=r(5746),r=r(5981);e.exports=n&&r(function(){return 42!==Object.defineProperty(function(){},"prototype",{value:42,writable:!1}).prototype})},9813:(e,t,r)=>{"use strict";var n=r(1899),o=r(8726),i=r(953),s=r(9418),a=r(3405),r=r(2302),u=n.Symbol,c=o("wks"),l=r?u.for||u:u&&u.withoutSetter||s;e.exports=function(e){return i(c,e)||(c[e]=a&&i(u,e)?u[e]:l("Symbol."+e)),c[e]}},2595:(e,t,r)=>{"use strict";var n=r(6887),r=r(1899);n({global:!0,forced:r.globalThis!==r},{globalThis:r})},9668:(e,t,r)=>{"use strict";r(2595)},2369:(e,t,r)=>{"use strict";r=r(1031);e.exports=r}},o={},n.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return n.d(t,{a:t}),t},n.d=(e,t)=>{for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),n.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),n.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},i={},(()=>{"use strict";n.r(i),n.d(i,{default:()=>r});var e=n(149),e=n.n(e),t={yearMonthFormat:"MM YYYY","请选择日期和时间":"Please select date and time","请选择日期":"Please select date","开始时间 ~ 结束时间":"Begin time ~ End time","开始日期 ~ 结束日期":"Begin date ~ End date","请选择年份":"Please select year","请选择月份":"Please select month","1月":"Jan","2月":"Feb","3月":"Mar","4月":"Apr","5月":"May","6月":"Jun","7月":"Jul","8月":"Aug","9月":"Sep","10月":"Oct","11月":"Nov","12月":"Dec","日":"Sun","一":"Mon","二":"Tue","三":"Wed","四":"Thu","五":"Fri","六":"Sat","{n}年":"{n}","{start}年 - {end}年":"{start} - {end}","今天":"Today","昨天":"Yesterday","明天":"Tomorrow","一周后":"After one week","一月后":"After one month","三月后":"After three months","一周前":"Before one week","一月前":"Before one month","三月前":"Before three months","上一周":"Last week","下一周":"Next week","上一个月":"Last month","下一个月":"Next month","前三个月":"Last three months","后三个月":"Next three months","请选择时间":"Please select time","开始时间":"Begin Time","结束时间":"End Time","提示":"Tip","确定":"OK","取消":"Cancel","关闭":"Close","编辑":"Edit","必须填写":"This field is required.","请输入数字":"Please enter only digits.","请输入正确的邮箱地址":"Please enter a valid email address.","请输入正确的网址":"Please enter a valid URL.","请输入正确的日期":"Please enter a valid date.","请输入正确的日期 (YYYY-MM-DD)":"Please enter a valid date (ISO).","请输入正确的数":"Please enter a valid number.","请输入不大于 {n} 的数":"Please enter a value less than or equal to {n}.","请输入不小于 {n} 的数":"Please enter a value greater than or equal to {n}.","请输入 {n[0]} 到 {n[1]} 之间的数":"Please enter a value between {n[0]} and {n[1]}.","请输入步长为 {n} 的数":"Please enter a number which should be a multipe of {n}","两次输入不一致":"Please enter the same value again.","两":"2","最多选择 {n} 项":"Please select no more than {n} item{s:n}.","最多输入 {n} 个字符":"Please enter no more than {n} character{s:n}.","最少选择 {n} 项":"Please select at least {n} item{s:n}.","最少输入 {n} 个字符":"Please enter at least {n} character{s:n}.","请选择 {n} 到 {m} 项":"Please select {n}~{m} item{s:m}.","请输入 {n} 到 {m} 个字符":"Please enter {n}~{m} character{s:m}.","{n} 条 / 页":"{n} / page","前往":"Goto","页":"","共 {n} 条":"Total {n}","暂无数据":"No data to display.","重置":"Reset","请输入":"Please enter","请选择":"Please select","已选择":"Selected","全选":"Select all","清空":"Clear all","请输入或选择":"Please enter or select","无数据":"No data","点击上传":"Click to Upload","将文件拖到此处,或<a>点击上传</a>":"Drag file to this area or <a>click to upload</a>","查看图片":"View Image","查看视频":"View Video","查看音频":"View Audio","查看文件夹":"View Folder","查看文件":"View File","上传图片":"Upload Image","上传文件夹":"Upload Folder","超出文件数量最大限制:{limit}":"Exceed the maximum limit of the number of files: {limit}",'"{name}" 超出文件最大限制:{maxSize}kb':'"{name}" exceeds the maximum size of file: {maxSize}kb','"{name}" 文件类型不合法':'"{name}" invalid file type',"查看":"Preview","下载":"Download","删除":"Delete","上传中":"Uploading","处理中":"Processing","生成中":"Generating","上传失败":"Upload failed","已完成":"Completed","在新窗口中打开":"Open in a new window","未命名文件":"Untitled file","请输入关键字":"Please enter keywords","请输入...":"Please enter...","输入对话内容(Enter发送, Shift + Enter 换行)":"Enter your message (Enter to send, Shift + Enter for newline)","发送":"Send","停止生成":"Stop generating","释放文件以上传":"Release files to upload","文件拖动到此处即可上传":"Drag files here to upload","上传附件":"Upload attachments","复制成功":"Copy successfully!","复制失败":"Copy failed!","复制":"Copy","刷新":"Refresh","重试":"Retry","加载中":"Loading","加载失败":"Load failed","思考中":"Thinking"};const r=t;void 0!==e().Kpc&&e().Kpc.localize(t)})(),i;function n(e){var t=o[e];return void 0!==t||(t=o[e]={exports:{}},r[e].call(t.exports,t,t.exports,n)),t.exports}var r,o,i});