yc-design-vue 2.2.2 → 2.2.4

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 (594) hide show
  1. package/dist/index.umd.js +1 -1
  2. package/dist/lang-es/zh-cn.js +26 -26
  3. package/dist/style.css +1 -1
  4. package/es/Affix/index.vue.js +0 -4
  5. package/es/Alert/index.vue.js +0 -4
  6. package/es/Anchor/Anchor.vue.js +0 -4
  7. package/es/Anchor/AnchorLink.vue.js +0 -4
  8. package/es/Anchor/hooks/useContext.d.ts +1 -1
  9. package/es/Anchor/hooks/useContext.js +5 -13
  10. package/es/AutoComplete/index.vue.js +0 -4
  11. package/es/Avatar/Avatar.vue.js +0 -4
  12. package/es/Avatar/AvatarGroup.vue.js +0 -4
  13. package/es/BackTop/index.vue.js +0 -4
  14. package/es/Badge/index.vue.js +0 -4
  15. package/es/Breadcrumb/Breadcrumb.vue.js +0 -4
  16. package/es/Breadcrumb/BreadcrumbItem.vue.js +0 -4
  17. package/es/Breadcrumb/BreadcrumbMore.vue.js +0 -4
  18. package/es/Breadcrumb/BreadcrumbSeparator.vue.js +0 -4
  19. package/es/Button/hooks/useContext.js +0 -4
  20. package/es/Calendar/Calendar.vue.js +30 -49
  21. package/es/Calendar/CalendarMonth.vue.d.ts +4 -6
  22. package/es/Calendar/CalendarMonth.vue.js +34 -43
  23. package/es/Calendar/CalendarYear.vue.d.ts +3 -4
  24. package/es/Calendar/CalendarYear.vue.js +19 -38
  25. package/es/Calendar/hooks/useCalendar.d.ts +7 -0
  26. package/es/Calendar/hooks/useCalendar.js +36 -0
  27. package/es/Card/Card.vue.js +0 -4
  28. package/es/Card/CardMeta.vue.js +0 -4
  29. package/es/Carousel/Carousel.vue.js +0 -4
  30. package/es/Carousel/CarouselArrow.vue.js +0 -4
  31. package/es/Carousel/CarouselIndicator.vue.js +0 -4
  32. package/es/Carousel/hooks/useContext.d.ts +11 -2
  33. package/es/Carousel/hooks/useContext.js +4 -8
  34. package/es/Cascader/Cascader.vue.js +0 -4
  35. package/es/Cascader/CascaderIcon.vue.js +0 -4
  36. package/es/Cascader/CascaderOption.vue.js +0 -4
  37. package/es/Cascader/hooks/useContext.d.ts +69 -8
  38. package/es/Cascader/hooks/useContext.js +5 -17
  39. package/es/Cascader/index.css +1 -1
  40. package/es/Checkbox/Checkbox.vue.js +0 -4
  41. package/es/Checkbox/hooks/useContext.js +0 -4
  42. package/es/Collapse/CollapseItem.vue.js +0 -4
  43. package/es/Collapse/hooks/useContext.js +0 -4
  44. package/es/ColorPicker/ColorControl.vue.js +0 -4
  45. package/es/ColorPicker/ColorInput.vue.js +0 -4
  46. package/es/ColorPicker/ColorList.vue.js +0 -4
  47. package/es/ColorPicker/ColorPalette.vue.js +0 -4
  48. package/es/ColorPicker/ColorPanel.vue.js +0 -4
  49. package/es/ColorPicker/hooks/useContext.d.ts +12 -1
  50. package/es/ColorPicker/hooks/useContext.js +5 -9
  51. package/es/Comment/hooks/useContext.js +0 -4
  52. package/es/Comment/index.vue.js +0 -4
  53. package/es/ConfigProvider/index.vue.js +0 -4
  54. package/es/DatePicker/PickerRange.vue.d.ts +2 -0
  55. package/es/DatePicker/PickerRange.vue.js +15 -0
  56. package/es/DatePicker/PickerRange.vue2.js +4 -0
  57. package/es/DatePicker/YcDatePicker.vue.d.ts +2 -0
  58. package/es/DatePicker/YcDatePicker.vue.js +15 -0
  59. package/es/DatePicker/YcDatePicker.vue2.js +4 -0
  60. package/es/DatePicker/YcMonthPicker.vue.d.ts +66 -0
  61. package/es/DatePicker/YcMonthPicker.vue.js +230 -0
  62. package/es/DatePicker/YcMonthPicker.vue3.js +5 -0
  63. package/es/DatePicker/YcWeekPicker.vue.d.ts +67 -0
  64. package/es/DatePicker/YcWeekPicker.vue.js +7 -0
  65. package/es/DatePicker/YcWeekPicker.vue2.js +315 -0
  66. package/es/DatePicker/YcYearPicker.vue.d.ts +65 -0
  67. package/es/DatePicker/YcYearPicker.vue.js +196 -0
  68. package/es/DatePicker/YcYearPicker.vue3.js +5 -0
  69. package/es/DatePicker/component/PickerCell.vue.d.ts +36 -0
  70. package/es/DatePicker/component/PickerCell.vue.js +7 -0
  71. package/es/DatePicker/component/PickerCell.vue2.js +41 -0
  72. package/es/DatePicker/component/PickerInput.vue.d.ts +297 -0
  73. package/es/DatePicker/component/PickerInput.vue.js +7 -0
  74. package/es/DatePicker/component/PickerInput.vue2.js +121 -0
  75. package/es/DatePicker/component/PickerPanel.vue.d.ts +33 -0
  76. package/es/DatePicker/component/PickerPanel.vue.js +104 -0
  77. package/es/DatePicker/component/PickerPanel.vue3.js +5 -0
  78. package/es/DatePicker/hooks/useContext.d.ts +19 -0
  79. package/es/DatePicker/hooks/useContext.js +37 -0
  80. package/es/DatePicker/hooks/userPicker.d.ts +44 -0
  81. package/es/DatePicker/hooks/userPicker.js +217 -0
  82. package/es/DatePicker/index.css +3 -0
  83. package/es/DatePicker/index.d.ts +38 -0
  84. package/es/DatePicker/index.js +23 -0
  85. package/es/DatePicker/type.d.ts +104 -0
  86. package/es/Descriptions/ReuseItem.vue.js +0 -4
  87. package/es/Descriptions/ReuseTd.vue.js +0 -4
  88. package/es/Descriptions/hooks/useContext.js +0 -4
  89. package/es/Divider/index.vue.js +0 -4
  90. package/es/Drawer/Drawer.vue.js +0 -4
  91. package/es/Drawer/DrawerService.vue.js +1 -5
  92. package/es/Dropdown/Dropdown.vue.js +0 -4
  93. package/es/Dropdown/DropdownButton.vue.js +0 -4
  94. package/es/Dropdown/Dsubmenu.vue.js +0 -4
  95. package/es/Dropdown/hooks/useContext.js +0 -4
  96. package/es/Empty/index.vue.js +0 -4
  97. package/es/Grid/Grid.vue.js +0 -4
  98. package/es/Grid/GridCol.vue.js +0 -4
  99. package/es/Grid/GridItem.vue.js +0 -4
  100. package/es/Grid/GridRow.vue.js +0 -4
  101. package/es/Grid/hooks/useContext.d.ts +6 -2
  102. package/es/Grid/hooks/useContext.js +5 -11
  103. package/es/Image/Image.vue.js +0 -4
  104. package/es/Image/ImagePreview.vue.js +0 -4
  105. package/es/Image/ImagePreviewArrow.vue.js +0 -4
  106. package/es/Image/ImagePreviewGroup.vue.js +0 -4
  107. package/es/Image/ImagePreviewToolbar.vue.js +0 -4
  108. package/es/Image/hooks/useContext.js +0 -4
  109. package/es/Input/Input.vue.js +0 -4
  110. package/es/Input/InputPassword.vue.js +0 -4
  111. package/es/Input/InputSearch.vue.js +0 -4
  112. package/es/Input/hooks/useLimitedInput.js +0 -4
  113. package/es/InputNumber/InputNumber.vue.js +0 -4
  114. package/es/InputNumber/InputOperaBtn.vue.js +0 -4
  115. package/es/InputTag/index.vue.js +0 -4
  116. package/es/Layout/Layout.vue.js +0 -4
  117. package/es/Layout/LayoutSider.vue.js +0 -4
  118. package/es/Layout/hooks/useSiderContext.js +0 -4
  119. package/es/Link/index.vue.js +0 -4
  120. package/es/List/List.vue.js +0 -4
  121. package/es/List/ListVirtual.vue.js +0 -4
  122. package/es/List/hooks/useScrollReach.js +0 -4
  123. package/es/Mention/index.vue.js +0 -4
  124. package/es/Menu/Menu.vue.js +0 -4
  125. package/es/Menu/MenuEllipsis.vue.js +0 -4
  126. package/es/Menu/MenuItem.vue.js +0 -4
  127. package/es/Menu/MenuItemGroup.vue.js +0 -4
  128. package/es/Menu/SubMenu.vue.js +0 -4
  129. package/es/Menu/hooks/useCalcMaxMenuItems.js +0 -4
  130. package/es/Menu/hooks/useContext.d.ts +17 -2
  131. package/es/Menu/hooks/useContext.js +5 -11
  132. package/es/Message/Message.vue.js +1 -5
  133. package/es/Message/index.js +0 -4
  134. package/es/Modal/Modal.vue.js +0 -4
  135. package/es/Modal/ModalService.vue.js +2 -6
  136. package/es/Modal/hooks/useModalClose.js +0 -4
  137. package/es/Modal/hooks/useModalDraggable.js +0 -4
  138. package/es/Modal/hooks/useOnBeforeClose.js +0 -4
  139. package/es/Notification/Notification.vue.js +2 -6
  140. package/es/Notification/index.js +0 -4
  141. package/es/OverflowList/index.vue.js +0 -4
  142. package/es/PageHeader/index.vue.js +0 -4
  143. package/es/Pagination/Pagination.vue.js +0 -4
  144. package/es/Pagination/PaginationItem.vue.js +0 -4
  145. package/es/Pagination/hooks/useContext.js +0 -4
  146. package/es/Popconfirm/index.vue.js +0 -4
  147. package/es/Popover/index.vue.js +0 -4
  148. package/es/Progress/Progress.vue.js +0 -4
  149. package/es/Progress/ProgressCircle.vue.js +0 -4
  150. package/es/Progress/ProgressLine.vue.js +0 -4
  151. package/es/Progress/ProgressSteps.vue.js +0 -4
  152. package/es/Radio/Radio.vue.js +0 -4
  153. package/es/Radio/hooks/useContext.js +0 -4
  154. package/es/Rate/index.vue.js +0 -4
  155. package/es/ResizeBox/index.vue.js +0 -4
  156. package/es/Scrollbar/Scrollbar.vue.js +0 -4
  157. package/es/Scrollbar/ScrollbarTrack.vue.js +0 -4
  158. package/es/Select/Option.vue.js +0 -4
  159. package/es/Select/Select.vue.js +0 -4
  160. package/es/Select/SelectIcon.vue.js +0 -4
  161. package/es/Select/SelectRealList.vue.js +0 -4
  162. package/es/Select/SelectView.vue.js +0 -4
  163. package/es/Select/SelectVirtualList.vue.js +0 -4
  164. package/es/Select/hooks/useContext.d.ts +2 -2
  165. package/es/Select/hooks/useContext.js +0 -4
  166. package/es/Select/hooks/useSelectHotkeys.js +0 -4
  167. package/es/Select/hooks/useSelectOptions.d.ts +2 -2
  168. package/es/Select/hooks/useSelectOptions.js +0 -4
  169. package/es/Skeleton/SkeletonLine.vue.js +0 -4
  170. package/es/Skeleton/SkeletonShape.vue.js +0 -4
  171. package/es/Slider/SliderBtn.vue.js +0 -4
  172. package/es/Slider/hooks/useContext.d.ts +12 -6
  173. package/es/Slider/hooks/useContext.js +5 -16
  174. package/es/Slider/hooks/useSliderDraggable.js +0 -4
  175. package/es/Space/index.vue.js +0 -4
  176. package/es/Spin/index.vue.js +0 -4
  177. package/es/Split/index.vue.js +0 -4
  178. package/es/Statistic/Countdown.vue.js +0 -4
  179. package/es/Statistic/Statistic.vue.js +3 -7
  180. package/es/Steps/Step.vue.js +0 -4
  181. package/es/Steps/hooks/useContext.d.ts +9 -1
  182. package/es/Steps/hooks/useContext.js +3 -10
  183. package/es/Switch/index.vue.js +0 -4
  184. package/es/Tabs/TabButton.vue.js +0 -4
  185. package/es/Tabs/TabPane.vue.js +0 -4
  186. package/es/Tabs/Tabs.vue.js +0 -4
  187. package/es/Tabs/TabsNavInk.vue.js +0 -4
  188. package/es/Tabs/TabsTab.vue.js +0 -4
  189. package/es/Tabs/hooks/useContext.d.ts +9 -2
  190. package/es/Tabs/hooks/useContext.js +5 -13
  191. package/es/Tabs/hooks/useTabsScroll.js +0 -4
  192. package/es/Tag/index.vue.js +0 -4
  193. package/es/Textarea/hooks/useTextareaHeight.js +0 -4
  194. package/es/Textarea/index.vue.js +0 -4
  195. package/es/TimePicker/TimePicker.vue.js +1 -5
  196. package/es/TimePicker/TimePickerPanel.vue.js +0 -4
  197. package/es/TimePicker/hooks/useContext.d.ts +17 -7
  198. package/es/TimePicker/hooks/useContext.js +4 -13
  199. package/es/Timeline/TimelineItemPending.vue.js +0 -4
  200. package/es/Timeline/hooks/useContext.d.ts +4 -2
  201. package/es/Timeline/hooks/useContext.js +3 -10
  202. package/es/Tooltip/index.vue.js +0 -4
  203. package/es/Transfer/Transfer.vue.js +0 -4
  204. package/es/Transfer/TransferPanel.vue.js +1 -5
  205. package/es/Transfer/hooks/useContext.d.ts +1 -6
  206. package/es/Transfer/hooks/useContext.js +3 -11
  207. package/es/Trigger/hooks/useContext.js +0 -4
  208. package/es/Trigger/hooks/useTriggerPosition.js +0 -4
  209. package/es/Trigger/hooks/useTriggerVisible.js +0 -4
  210. package/es/Trigger/index.vue.js +0 -4
  211. package/es/Typography/TypographyBase.vue.js +2 -6
  212. package/es/Upload/Upload.vue.js +6 -4
  213. package/es/Upload/UploadButton.vue.js +0 -4
  214. package/es/Upload/UploadDrag.vue.js +0 -4
  215. package/es/Upload/UploadFileList.vue.js +125 -5
  216. package/es/Upload/UploadFileList.vue3.js +5 -0
  217. package/es/Upload/UploadPictureCard.vue.js +131 -5
  218. package/es/Upload/UploadPictureCard.vue3.js +5 -0
  219. package/es/Upload/hooks/useContext.js +0 -4
  220. package/es/Upload/hooks/useUpload.js +0 -4
  221. package/es/VerificationCode/index.vue.js +0 -4
  222. package/es/Watermark/index.vue.js +0 -4
  223. package/es/_shared/components/ExpandTransition/index.vue2.js +0 -4
  224. package/es/_shared/components/Icon/index.vue3.js +0 -4
  225. package/es/_shared/components/IconButton/index.vue.js +0 -4
  226. package/es/_shared/constants/index.js +0 -4
  227. package/es/_shared/icons/IconArrowDown.vue.js +0 -4
  228. package/es/_shared/icons/IconArrowRight.vue.js +0 -4
  229. package/es/_shared/icons/IconCalendar.vue.d.ts +2 -0
  230. package/es/_shared/icons/IconCalendar.vue.js +4 -0
  231. package/es/_shared/icons/IconCalendar.vue2.js +27 -0
  232. package/es/_shared/icons/IconCheck.vue.js +0 -4
  233. package/es/_shared/icons/IconCheckboxChecked.vue.js +0 -4
  234. package/es/_shared/icons/IconClose.vue.js +0 -4
  235. package/es/_shared/icons/IconCopy.vue.js +1 -28
  236. package/es/_shared/icons/IconCopy.vue2.js +24 -1
  237. package/es/_shared/icons/IconDelete.vue.js +1 -28
  238. package/es/_shared/icons/IconDelete.vue2.js +24 -1
  239. package/es/_shared/icons/IconDoubleLeft.vue.d.ts +2 -0
  240. package/es/_shared/icons/IconDoubleLeft.vue.js +27 -0
  241. package/es/_shared/icons/IconDoubleLeft.vue2.js +4 -0
  242. package/es/_shared/icons/IconDoubleRight.vue.d.ts +2 -0
  243. package/es/_shared/icons/IconDoubleRight.vue.js +27 -0
  244. package/es/_shared/icons/IconDoubleRight.vue2.js +4 -0
  245. package/es/_shared/icons/IconDragDot.vue.js +0 -4
  246. package/es/_shared/icons/IconEdit.vue.js +1 -28
  247. package/es/_shared/icons/IconEdit.vue2.js +24 -1
  248. package/es/_shared/icons/IconEmpty.vue.js +0 -4
  249. package/es/_shared/icons/IconError.vue.js +0 -4
  250. package/es/_shared/icons/IconExclamation.vue2.js +0 -4
  251. package/es/_shared/icons/IconEyeClose.vue.js +0 -4
  252. package/es/_shared/icons/IconEyeOpen.vue.js +0 -4
  253. package/es/_shared/icons/IconFaceSmile.vue.js +0 -4
  254. package/es/_shared/icons/IconFile.vue2.js +0 -4
  255. package/es/_shared/icons/IconFullScreen.vue2.js +0 -4
  256. package/es/_shared/icons/IconImageClose.vue.js +0 -4
  257. package/es/_shared/icons/IconInfo.vue.js +0 -4
  258. package/es/_shared/icons/IconInfoLine.vue.js +0 -4
  259. package/es/_shared/icons/IconLink.vue.js +0 -4
  260. package/es/_shared/icons/IconLoading.vue.js +0 -4
  261. package/es/_shared/icons/IconMenuFold.vue.js +0 -4
  262. package/es/_shared/icons/IconMenuUnfold.vue.js +0 -4
  263. package/es/_shared/icons/IconMinus.vue2.js +0 -4
  264. package/es/_shared/icons/IconMore.vue.js +0 -4
  265. package/es/_shared/icons/IconOriginSize.vue2.js +0 -4
  266. package/es/_shared/icons/IconPlus.vue.js +0 -4
  267. package/es/_shared/icons/IconRight.vue.js +0 -4
  268. package/es/_shared/icons/IconRotateLeft.vue2.js +0 -4
  269. package/es/_shared/icons/IconRotateRight.vue2.js +0 -4
  270. package/es/_shared/icons/IconSearch.vue.js +0 -4
  271. package/es/_shared/icons/IconSeparator.vue2.js +0 -4
  272. package/es/_shared/icons/IconStar.vue.js +0 -4
  273. package/es/_shared/icons/IconSuccess.vue.js +0 -4
  274. package/es/_shared/icons/IconTime.vue.js +0 -4
  275. package/es/_shared/icons/IconToTop.vue.js +0 -4
  276. package/es/_shared/icons/IconUpload.vue2.js +0 -4
  277. package/es/_shared/icons/IconWarning.vue.js +0 -4
  278. package/es/_shared/icons/IconZoomIn.vue2.js +0 -4
  279. package/es/_shared/icons/IconZoomOut.vue2.js +0 -4
  280. package/es/_shared/icons/index.d.ts +3 -0
  281. package/es/_shared/type/index.d.ts +1 -1
  282. package/es/_shared/utils/color.js +0 -4
  283. package/es/_shared/utils/dependencies.d.ts +0 -4
  284. package/es/_shared/utils/dom.js +0 -4
  285. package/es/_shared/utils/hooks.js +1 -1
  286. package/es/_shared/utils/locale.d.ts +0 -5
  287. package/es/_shared/utils/time.d.ts +0 -9
  288. package/es/_shared/utils/time.js +0 -30
  289. package/es/_shared/utils/vue-utils.d.ts +1 -1
  290. package/es/_virtual/isoWeek.js +4 -0
  291. package/es/index.d.ts +307 -1
  292. package/es/index.js +42 -33
  293. package/es/lang-es/zh-cn.js +26 -26
  294. package/es/node_modules/dayjs/plugin/isoWeek.js +33 -0
  295. package/es/src/lang/lang-es/zh-cn.js +26 -26
  296. package/es/style.css +1 -1
  297. package/lib/Affix/index.vue.js +1 -1
  298. package/lib/Alert/index.vue.js +1 -1
  299. package/lib/Anchor/Anchor.vue.js +1 -1
  300. package/lib/Anchor/AnchorLink.vue.js +1 -1
  301. package/lib/Anchor/hooks/useContext.d.ts +1 -1
  302. package/lib/Anchor/hooks/useContext.js +1 -1
  303. package/lib/AutoComplete/index.vue.js +1 -1
  304. package/lib/Avatar/Avatar.vue.js +1 -1
  305. package/lib/Avatar/AvatarGroup.vue.js +1 -1
  306. package/lib/BackTop/index.vue.js +1 -1
  307. package/lib/Badge/index.vue.js +1 -1
  308. package/lib/Breadcrumb/Breadcrumb.vue.js +1 -1
  309. package/lib/Breadcrumb/BreadcrumbItem.vue.js +1 -1
  310. package/lib/Breadcrumb/BreadcrumbMore.vue.js +1 -1
  311. package/lib/Breadcrumb/BreadcrumbSeparator.vue.js +1 -1
  312. package/lib/Button/hooks/useContext.js +1 -1
  313. package/lib/Calendar/Calendar.vue.js +1 -1
  314. package/lib/Calendar/CalendarMonth.vue.d.ts +4 -6
  315. package/lib/Calendar/CalendarMonth.vue.js +1 -1
  316. package/lib/Calendar/CalendarYear.vue.d.ts +3 -4
  317. package/lib/Calendar/CalendarYear.vue.js +1 -1
  318. package/lib/Calendar/hooks/useCalendar.d.ts +7 -0
  319. package/lib/Calendar/hooks/useCalendar.js +1 -0
  320. package/lib/Card/Card.vue.js +1 -1
  321. package/lib/Card/CardMeta.vue.js +1 -1
  322. package/lib/Carousel/Carousel.vue.js +1 -1
  323. package/lib/Carousel/CarouselArrow.vue.js +1 -1
  324. package/lib/Carousel/CarouselIndicator.vue.js +1 -1
  325. package/lib/Carousel/hooks/useContext.d.ts +11 -2
  326. package/lib/Carousel/hooks/useContext.js +1 -1
  327. package/lib/Cascader/Cascader.vue.js +1 -1
  328. package/lib/Cascader/CascaderIcon.vue.js +1 -1
  329. package/lib/Cascader/CascaderOption.vue.js +1 -1
  330. package/lib/Cascader/hooks/useContext.d.ts +69 -8
  331. package/lib/Cascader/hooks/useContext.js +1 -1
  332. package/lib/Cascader/index.css +1 -1
  333. package/lib/Checkbox/Checkbox.vue.js +1 -1
  334. package/lib/Checkbox/hooks/useContext.js +1 -1
  335. package/lib/Collapse/CollapseItem.vue.js +1 -1
  336. package/lib/Collapse/hooks/useContext.js +1 -1
  337. package/lib/ColorPicker/ColorControl.vue.js +1 -1
  338. package/lib/ColorPicker/ColorInput.vue.js +1 -1
  339. package/lib/ColorPicker/ColorList.vue.js +1 -1
  340. package/lib/ColorPicker/ColorPalette.vue.js +1 -1
  341. package/lib/ColorPicker/ColorPanel.vue.js +1 -1
  342. package/lib/ColorPicker/hooks/useContext.d.ts +12 -1
  343. package/lib/ColorPicker/hooks/useContext.js +1 -1
  344. package/lib/Comment/hooks/useContext.js +1 -1
  345. package/lib/Comment/index.vue.js +1 -1
  346. package/lib/ConfigProvider/index.vue.js +1 -1
  347. package/lib/DatePicker/PickerRange.vue.d.ts +2 -0
  348. package/lib/DatePicker/PickerRange.vue.js +1 -0
  349. package/lib/DatePicker/PickerRange.vue2.js +1 -0
  350. package/lib/DatePicker/YcDatePicker.vue.d.ts +2 -0
  351. package/lib/DatePicker/YcDatePicker.vue.js +1 -0
  352. package/lib/DatePicker/YcDatePicker.vue2.js +1 -0
  353. package/lib/DatePicker/YcMonthPicker.vue.d.ts +66 -0
  354. package/lib/DatePicker/YcMonthPicker.vue.js +1 -0
  355. package/lib/DatePicker/YcMonthPicker.vue3.js +1 -0
  356. package/lib/DatePicker/YcWeekPicker.vue.d.ts +67 -0
  357. package/lib/DatePicker/YcWeekPicker.vue.js +1 -0
  358. package/lib/DatePicker/YcWeekPicker.vue2.js +1 -0
  359. package/lib/DatePicker/YcYearPicker.vue.d.ts +65 -0
  360. package/lib/DatePicker/YcYearPicker.vue.js +1 -0
  361. package/lib/DatePicker/YcYearPicker.vue3.js +1 -0
  362. package/lib/DatePicker/component/PickerCell.vue.d.ts +36 -0
  363. package/lib/DatePicker/component/PickerCell.vue.js +1 -0
  364. package/lib/DatePicker/component/PickerCell.vue2.js +1 -0
  365. package/lib/DatePicker/component/PickerInput.vue.d.ts +297 -0
  366. package/lib/DatePicker/component/PickerInput.vue.js +1 -0
  367. package/lib/DatePicker/component/PickerInput.vue2.js +1 -0
  368. package/lib/DatePicker/component/PickerPanel.vue.d.ts +33 -0
  369. package/lib/DatePicker/component/PickerPanel.vue.js +1 -0
  370. package/lib/DatePicker/component/PickerPanel.vue3.js +1 -0
  371. package/lib/DatePicker/hooks/useContext.d.ts +19 -0
  372. package/lib/DatePicker/hooks/useContext.js +1 -0
  373. package/lib/DatePicker/hooks/userPicker.d.ts +44 -0
  374. package/lib/DatePicker/hooks/userPicker.js +1 -0
  375. package/lib/DatePicker/index.css +3 -0
  376. package/lib/DatePicker/index.d.ts +38 -0
  377. package/lib/DatePicker/index.js +1 -0
  378. package/lib/DatePicker/type.d.ts +104 -0
  379. package/lib/Descriptions/ReuseItem.vue.js +1 -1
  380. package/lib/Descriptions/ReuseTd.vue.js +1 -1
  381. package/lib/Descriptions/hooks/useContext.js +1 -1
  382. package/lib/Divider/index.vue.js +1 -1
  383. package/lib/Drawer/Drawer.vue.js +1 -1
  384. package/lib/Drawer/DrawerService.vue.js +1 -1
  385. package/lib/Dropdown/Dropdown.vue.js +1 -1
  386. package/lib/Dropdown/DropdownButton.vue.js +1 -1
  387. package/lib/Dropdown/Dsubmenu.vue.js +1 -1
  388. package/lib/Dropdown/hooks/useContext.js +1 -1
  389. package/lib/Empty/index.vue.js +1 -1
  390. package/lib/Grid/Grid.vue.js +1 -1
  391. package/lib/Grid/GridCol.vue.js +1 -1
  392. package/lib/Grid/GridItem.vue.js +1 -1
  393. package/lib/Grid/GridRow.vue.js +1 -1
  394. package/lib/Grid/hooks/useContext.d.ts +6 -2
  395. package/lib/Grid/hooks/useContext.js +1 -1
  396. package/lib/Image/Image.vue.js +1 -1
  397. package/lib/Image/ImagePreview.vue.js +1 -1
  398. package/lib/Image/ImagePreviewArrow.vue.js +1 -1
  399. package/lib/Image/ImagePreviewGroup.vue.js +1 -1
  400. package/lib/Image/ImagePreviewToolbar.vue.js +1 -1
  401. package/lib/Image/hooks/useContext.js +1 -1
  402. package/lib/Input/Input.vue.js +1 -1
  403. package/lib/Input/InputPassword.vue.js +1 -1
  404. package/lib/Input/InputSearch.vue.js +1 -1
  405. package/lib/Input/hooks/useLimitedInput.js +1 -1
  406. package/lib/InputNumber/InputNumber.vue.js +1 -1
  407. package/lib/InputNumber/InputOperaBtn.vue.js +1 -1
  408. package/lib/InputTag/index.vue.js +1 -1
  409. package/lib/Layout/Layout.vue.js +1 -1
  410. package/lib/Layout/LayoutSider.vue.js +1 -1
  411. package/lib/Layout/hooks/useSiderContext.js +1 -1
  412. package/lib/Link/index.vue.js +1 -1
  413. package/lib/List/List.vue.js +1 -1
  414. package/lib/List/ListVirtual.vue.js +1 -1
  415. package/lib/List/hooks/useScrollReach.js +1 -1
  416. package/lib/Mention/index.vue.js +1 -1
  417. package/lib/Menu/Menu.vue.js +1 -1
  418. package/lib/Menu/MenuEllipsis.vue.js +1 -1
  419. package/lib/Menu/MenuItem.vue.js +1 -1
  420. package/lib/Menu/MenuItemGroup.vue.js +1 -1
  421. package/lib/Menu/SubMenu.vue.js +1 -1
  422. package/lib/Menu/hooks/useCalcMaxMenuItems.js +1 -1
  423. package/lib/Menu/hooks/useContext.d.ts +17 -2
  424. package/lib/Menu/hooks/useContext.js +1 -1
  425. package/lib/Message/Message.vue.js +1 -1
  426. package/lib/Message/index.js +1 -1
  427. package/lib/Modal/Modal.vue.js +1 -1
  428. package/lib/Modal/ModalService.vue.js +1 -1
  429. package/lib/Modal/hooks/useModalClose.js +1 -1
  430. package/lib/Modal/hooks/useModalDraggable.js +1 -1
  431. package/lib/Modal/hooks/useOnBeforeClose.js +1 -1
  432. package/lib/Notification/Notification.vue.js +1 -1
  433. package/lib/Notification/index.js +1 -1
  434. package/lib/OverflowList/index.vue.js +1 -1
  435. package/lib/PageHeader/index.vue.js +1 -1
  436. package/lib/Pagination/Pagination.vue.js +1 -1
  437. package/lib/Pagination/PaginationItem.vue.js +1 -1
  438. package/lib/Pagination/hooks/useContext.js +1 -1
  439. package/lib/Popconfirm/index.vue.js +1 -1
  440. package/lib/Popover/index.vue.js +1 -1
  441. package/lib/Progress/Progress.vue.js +1 -1
  442. package/lib/Progress/ProgressCircle.vue.js +1 -1
  443. package/lib/Progress/ProgressLine.vue.js +1 -1
  444. package/lib/Progress/ProgressSteps.vue.js +1 -1
  445. package/lib/Radio/Radio.vue.js +1 -1
  446. package/lib/Radio/hooks/useContext.js +1 -1
  447. package/lib/Rate/index.vue.js +1 -1
  448. package/lib/ResizeBox/index.vue.js +1 -1
  449. package/lib/Scrollbar/Scrollbar.vue.js +1 -1
  450. package/lib/Scrollbar/ScrollbarTrack.vue.js +1 -1
  451. package/lib/Select/Option.vue.js +1 -1
  452. package/lib/Select/Select.vue.js +1 -1
  453. package/lib/Select/SelectIcon.vue.js +1 -1
  454. package/lib/Select/SelectRealList.vue.js +1 -1
  455. package/lib/Select/SelectView.vue.js +1 -1
  456. package/lib/Select/SelectVirtualList.vue.js +1 -1
  457. package/lib/Select/hooks/useContext.d.ts +2 -2
  458. package/lib/Select/hooks/useContext.js +1 -1
  459. package/lib/Select/hooks/useSelectHotkeys.js +1 -1
  460. package/lib/Select/hooks/useSelectOptions.d.ts +2 -2
  461. package/lib/Select/hooks/useSelectOptions.js +1 -1
  462. package/lib/Skeleton/SkeletonLine.vue.js +1 -1
  463. package/lib/Skeleton/SkeletonShape.vue.js +1 -1
  464. package/lib/Slider/SliderBtn.vue.js +1 -1
  465. package/lib/Slider/hooks/useContext.d.ts +12 -6
  466. package/lib/Slider/hooks/useContext.js +1 -1
  467. package/lib/Slider/hooks/useSliderDraggable.js +1 -1
  468. package/lib/Space/index.vue.js +1 -1
  469. package/lib/Spin/index.vue.js +1 -1
  470. package/lib/Split/index.vue.js +1 -1
  471. package/lib/Statistic/Countdown.vue.js +1 -1
  472. package/lib/Statistic/Statistic.vue.js +1 -1
  473. package/lib/Steps/Step.vue.js +1 -1
  474. package/lib/Steps/hooks/useContext.d.ts +9 -1
  475. package/lib/Steps/hooks/useContext.js +1 -1
  476. package/lib/Switch/index.vue.js +1 -1
  477. package/lib/Tabs/TabButton.vue.js +1 -1
  478. package/lib/Tabs/TabPane.vue.js +1 -1
  479. package/lib/Tabs/Tabs.vue.js +1 -1
  480. package/lib/Tabs/TabsNavInk.vue.js +1 -1
  481. package/lib/Tabs/TabsTab.vue.js +1 -1
  482. package/lib/Tabs/hooks/useContext.d.ts +9 -2
  483. package/lib/Tabs/hooks/useContext.js +1 -1
  484. package/lib/Tabs/hooks/useTabsScroll.js +1 -1
  485. package/lib/Tag/index.vue.js +1 -1
  486. package/lib/Textarea/hooks/useTextareaHeight.js +1 -1
  487. package/lib/Textarea/index.vue.js +1 -1
  488. package/lib/TimePicker/TimePicker.vue.js +1 -1
  489. package/lib/TimePicker/TimePickerPanel.vue.js +1 -1
  490. package/lib/TimePicker/hooks/useContext.d.ts +17 -7
  491. package/lib/TimePicker/hooks/useContext.js +1 -1
  492. package/lib/Timeline/TimelineItemPending.vue.js +1 -1
  493. package/lib/Timeline/hooks/useContext.d.ts +4 -2
  494. package/lib/Timeline/hooks/useContext.js +1 -1
  495. package/lib/Tooltip/index.vue.js +1 -1
  496. package/lib/Transfer/Transfer.vue.js +1 -1
  497. package/lib/Transfer/TransferPanel.vue.js +1 -1
  498. package/lib/Transfer/hooks/useContext.d.ts +1 -6
  499. package/lib/Transfer/hooks/useContext.js +1 -1
  500. package/lib/Trigger/hooks/useContext.js +1 -1
  501. package/lib/Trigger/hooks/useTriggerPosition.js +1 -1
  502. package/lib/Trigger/hooks/useTriggerVisible.js +1 -1
  503. package/lib/Trigger/index.vue.js +1 -1
  504. package/lib/Typography/TypographyBase.vue.js +1 -1
  505. package/lib/Upload/Upload.vue.js +1 -1
  506. package/lib/Upload/UploadButton.vue.js +1 -1
  507. package/lib/Upload/UploadDrag.vue.js +1 -1
  508. package/lib/Upload/UploadFileList.vue.js +1 -1
  509. package/lib/Upload/UploadFileList.vue3.js +1 -0
  510. package/lib/Upload/UploadPictureCard.vue.js +1 -1
  511. package/lib/Upload/UploadPictureCard.vue3.js +1 -0
  512. package/lib/Upload/hooks/useContext.js +1 -1
  513. package/lib/Upload/hooks/useUpload.js +1 -1
  514. package/lib/VerificationCode/index.vue.js +1 -1
  515. package/lib/Watermark/index.vue.js +1 -1
  516. package/lib/_shared/components/ExpandTransition/index.vue2.js +1 -1
  517. package/lib/_shared/components/Icon/index.vue3.js +1 -1
  518. package/lib/_shared/components/IconButton/index.vue.js +1 -1
  519. package/lib/_shared/constants/index.js +1 -1
  520. package/lib/_shared/icons/IconArrowDown.vue.js +1 -1
  521. package/lib/_shared/icons/IconArrowRight.vue.js +1 -1
  522. package/lib/_shared/icons/IconCalendar.vue.d.ts +2 -0
  523. package/lib/_shared/icons/IconCalendar.vue.js +1 -0
  524. package/lib/_shared/icons/IconCalendar.vue2.js +1 -0
  525. package/lib/_shared/icons/IconCheck.vue.js +1 -1
  526. package/lib/_shared/icons/IconCheckboxChecked.vue.js +1 -1
  527. package/lib/_shared/icons/IconClose.vue.js +1 -1
  528. package/lib/_shared/icons/IconCopy.vue.js +1 -1
  529. package/lib/_shared/icons/IconCopy.vue2.js +1 -1
  530. package/lib/_shared/icons/IconDelete.vue.js +1 -1
  531. package/lib/_shared/icons/IconDelete.vue2.js +1 -1
  532. package/lib/_shared/icons/IconDoubleLeft.vue.d.ts +2 -0
  533. package/lib/_shared/icons/IconDoubleLeft.vue.js +1 -0
  534. package/lib/_shared/icons/IconDoubleLeft.vue2.js +1 -0
  535. package/lib/_shared/icons/IconDoubleRight.vue.d.ts +2 -0
  536. package/lib/_shared/icons/IconDoubleRight.vue.js +1 -0
  537. package/lib/_shared/icons/IconDoubleRight.vue2.js +1 -0
  538. package/lib/_shared/icons/IconDragDot.vue.js +1 -1
  539. package/lib/_shared/icons/IconEdit.vue.js +1 -1
  540. package/lib/_shared/icons/IconEdit.vue2.js +1 -1
  541. package/lib/_shared/icons/IconEmpty.vue.js +1 -1
  542. package/lib/_shared/icons/IconError.vue.js +1 -1
  543. package/lib/_shared/icons/IconExclamation.vue2.js +1 -1
  544. package/lib/_shared/icons/IconEyeClose.vue.js +1 -1
  545. package/lib/_shared/icons/IconEyeOpen.vue.js +1 -1
  546. package/lib/_shared/icons/IconFaceSmile.vue.js +1 -1
  547. package/lib/_shared/icons/IconFile.vue2.js +1 -1
  548. package/lib/_shared/icons/IconFullScreen.vue2.js +1 -1
  549. package/lib/_shared/icons/IconImageClose.vue.js +1 -1
  550. package/lib/_shared/icons/IconInfo.vue.js +1 -1
  551. package/lib/_shared/icons/IconInfoLine.vue.js +1 -1
  552. package/lib/_shared/icons/IconLink.vue.js +1 -1
  553. package/lib/_shared/icons/IconLoading.vue.js +1 -1
  554. package/lib/_shared/icons/IconMenuFold.vue.js +1 -1
  555. package/lib/_shared/icons/IconMenuUnfold.vue.js +1 -1
  556. package/lib/_shared/icons/IconMinus.vue2.js +1 -1
  557. package/lib/_shared/icons/IconMore.vue.js +1 -1
  558. package/lib/_shared/icons/IconOriginSize.vue2.js +1 -1
  559. package/lib/_shared/icons/IconPlus.vue.js +1 -1
  560. package/lib/_shared/icons/IconRight.vue.js +1 -1
  561. package/lib/_shared/icons/IconRotateLeft.vue2.js +1 -1
  562. package/lib/_shared/icons/IconRotateRight.vue2.js +1 -1
  563. package/lib/_shared/icons/IconSearch.vue.js +1 -1
  564. package/lib/_shared/icons/IconSeparator.vue2.js +1 -1
  565. package/lib/_shared/icons/IconStar.vue.js +1 -1
  566. package/lib/_shared/icons/IconSuccess.vue.js +1 -1
  567. package/lib/_shared/icons/IconTime.vue.js +1 -1
  568. package/lib/_shared/icons/IconToTop.vue.js +1 -1
  569. package/lib/_shared/icons/IconUpload.vue2.js +1 -1
  570. package/lib/_shared/icons/IconWarning.vue.js +1 -1
  571. package/lib/_shared/icons/IconZoomIn.vue2.js +1 -1
  572. package/lib/_shared/icons/IconZoomOut.vue2.js +1 -1
  573. package/lib/_shared/icons/index.d.ts +3 -0
  574. package/lib/_shared/type/index.d.ts +1 -1
  575. package/lib/_shared/utils/color.js +1 -1
  576. package/lib/_shared/utils/dependencies.d.ts +0 -4
  577. package/lib/_shared/utils/dom.js +1 -1
  578. package/lib/_shared/utils/hooks.js +1 -1
  579. package/lib/_shared/utils/locale.d.ts +0 -5
  580. package/lib/_shared/utils/time.d.ts +0 -9
  581. package/lib/_shared/utils/time.js +1 -1
  582. package/lib/_shared/utils/vue-utils.d.ts +1 -1
  583. package/lib/_virtual/isoWeek.js +1 -0
  584. package/lib/index.d.ts +307 -1
  585. package/lib/index.js +1 -1
  586. package/lib/lang-es/zh-cn.js +26 -26
  587. package/lib/node_modules/dayjs/plugin/isoWeek.js +1 -0
  588. package/lib/src/lang/lang-es/zh-cn.js +1 -1
  589. package/lib/style.css +1 -1
  590. package/package.json +1 -1
  591. package/es/Upload/UploadFileList.vue2.js +0 -131
  592. package/es/Upload/UploadPictureCard.vue2.js +0 -137
  593. package/lib/Upload/UploadFileList.vue2.js +0 -1
  594. package/lib/Upload/UploadPictureCard.vue2.js +0 -1
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../../node_modules/dayjs/plugin/duration.js"),require("../../node_modules/dayjs/plugin/toObject.js"),require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),require("../../node_modules/dayjs/plugin/isSameOrBefore.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const s=e.defineComponent({__name:"IconPlus",setup:s=>(s,r)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(s.$attrs)),{default:e.withCtx(()=>[...r[0]||(r[0]=[e.createElementVNode("path",{d:"M5 24h38M24 5v38"},null,-1)])]),_:1},16))});exports.default=s;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const n=e.defineComponent({__name:"IconPlus",setup:n=>(n,t)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(n.$attrs)),{default:e.withCtx(()=>[...t[0]||(t[0]=[e.createElementVNode("path",{d:"M5 24h38M24 5v38"},null,-1)])]),_:1},16))});exports.default=n;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../../node_modules/dayjs/plugin/duration.js"),require("../../node_modules/dayjs/plugin/toObject.js"),require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),require("../../node_modules/dayjs/plugin/isSameOrBefore.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const r=e.defineComponent({__name:"IconRight",setup:r=>(r,n)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(r.$attrs)),{default:e.withCtx(()=>[...n[0]||(n[0]=[e.createElementVNode("path",{d:"M34.829 23.063c.6.48.6 1.394 0 1.874L17.949 38.44c-.785.629-1.949.07-1.949-.937V10.497c0-1.007 1.164-1.566 1.95-.937l16.879 13.503Z",fill:"currentColor",stroke:"none"},null,-1)])]),_:1},16))});exports.default=r;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const n=e.defineComponent({__name:"IconRight",setup:n=>(n,t)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(n.$attrs)),{default:e.withCtx(()=>[...t[0]||(t[0]=[e.createElementVNode("path",{d:"M34.829 23.063c.6.48.6 1.394 0 1.874L17.949 38.44c-.785.629-1.949.07-1.949-.937V10.497c0-1.007 1.164-1.566 1.95-.937l16.879 13.503Z",fill:"currentColor",stroke:"none"},null,-1)])]),_:1},16))});exports.default=n;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../../node_modules/dayjs/plugin/duration.js"),require("../../node_modules/dayjs/plugin/toObject.js"),require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),require("../../node_modules/dayjs/plugin/isSameOrBefore.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const s=e.defineComponent({__name:"IconRotateLeft",setup:s=>(s,r)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(s.$attrs)),{default:e.withCtx(()=>[...r[0]||(r[0]=[e.createElementVNode("path",{d:"M10 22a1 1 0 0 1 1-1h20a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H11a1 1 0 0 1-1-1V22ZM23 11h11a6 6 0 0 1 6 6v6M22.5 12.893 19.587 11 22.5 9.107v3.786Z"},null,-1)])]),_:1},16))});exports.default=s;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const t=e.defineComponent({__name:"IconRotateLeft",setup:t=>(t,n)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(t.$attrs)),{default:e.withCtx(()=>[...n[0]||(n[0]=[e.createElementVNode("path",{d:"M10 22a1 1 0 0 1 1-1h20a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1H11a1 1 0 0 1-1-1V22ZM23 11h11a6 6 0 0 1 6 6v6M22.5 12.893 19.587 11 22.5 9.107v3.786Z"},null,-1)])]),_:1},16))});exports.default=t;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../../node_modules/dayjs/plugin/duration.js"),require("../../node_modules/dayjs/plugin/toObject.js"),require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),require("../../node_modules/dayjs/plugin/isSameOrBefore.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const s=e.defineComponent({__name:"IconRotateRight",setup:s=>(s,r)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(s.$attrs)),{default:e.withCtx(()=>[...r[0]||(r[0]=[e.createElementVNode("path",{d:"M38 22a1 1 0 0 0-1-1H17a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h20a1 1 0 0 0 1-1V22ZM25 11H14a6 6 0 0 0-6 6v6M25.5 12.893 28.413 11 25.5 9.107v3.786Z"},null,-1)])]),_:1},16))});exports.default=s;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const t=e.defineComponent({__name:"IconRotateRight",setup:t=>(t,n)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(t.$attrs)),{default:e.withCtx(()=>[...n[0]||(n[0]=[e.createElementVNode("path",{d:"M38 22a1 1 0 0 0-1-1H17a1 1 0 0 0-1 1v16a1 1 0 0 0 1 1h20a1 1 0 0 0 1-1V22ZM25 11H14a6 6 0 0 0-6 6v6M25.5 12.893 28.413 11 25.5 9.107v3.786Z"},null,-1)])]),_:1},16))});exports.default=t;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../../node_modules/dayjs/plugin/duration.js"),require("../../node_modules/dayjs/plugin/toObject.js"),require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),require("../../node_modules/dayjs/plugin/isSameOrBefore.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const r=e.defineComponent({__name:"IconSearch",setup:r=>(r,s)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(r.$attrs)),{default:e.withCtx(()=>[...s[0]||(s[0]=[e.createElementVNode("path",{d:"M33.072 33.071c6.248-6.248 6.248-16.379 0-22.627-6.249-6.249-16.38-6.249-22.628 0-6.248 6.248-6.248 16.379 0 22.627 6.248 6.248 16.38 6.248 22.628 0Zm0 0 8.485 8.485"},null,-1)])]),_:1},16))});exports.default=r;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const n=e.defineComponent({__name:"IconSearch",setup:n=>(n,t)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(n.$attrs)),{default:e.withCtx(()=>[...t[0]||(t[0]=[e.createElementVNode("path",{d:"M33.072 33.071c6.248-6.248 6.248-16.379 0-22.627-6.249-6.249-16.38-6.249-22.628 0-6.248 6.248-6.248 16.379 0 22.627 6.248 6.248 16.38 6.248 22.628 0Zm0 0 8.485 8.485"},null,-1)])]),_:1},16))});exports.default=n;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../../node_modules/dayjs/plugin/duration.js"),require("../../node_modules/dayjs/plugin/toObject.js"),require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),require("../../node_modules/dayjs/plugin/isSameOrBefore.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const r=e.defineComponent({__name:"IconSeparator",setup:r=>(r,s)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(r.$attrs)),{default:e.withCtx(()=>[...s[0]||(s[0]=[e.createElementVNode("path",{d:"M29.506 6.502 18.493 41.498"},null,-1)])]),_:1},16))});exports.default=r;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const n=e.defineComponent({__name:"IconSeparator",setup:n=>(n,t)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(n.$attrs)),{default:e.withCtx(()=>[...t[0]||(t[0]=[e.createElementVNode("path",{d:"M29.506 6.502 18.493 41.498"},null,-1)])]),_:1},16))});exports.default=n;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../../node_modules/dayjs/plugin/duration.js"),require("../../node_modules/dayjs/plugin/toObject.js"),require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),require("../../node_modules/dayjs/plugin/isSameOrBefore.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const r=e.defineComponent({__name:"IconStar",setup:r=>(r,n)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(r.$attrs)),{default:e.withCtx(()=>[...n[0]||(n[0]=[e.createElementVNode("path",{d:"M22.683 5.415c.568-1.043 2.065-1.043 2.634 0l5.507 10.098a1.5 1.5 0 0 0 1.04.756l11.306 2.117c1.168.219 1.63 1.642.814 2.505l-7.902 8.359a1.5 1.5 0 0 0-.397 1.223l1.48 11.407c.153 1.177-1.058 2.057-2.131 1.548l-10.391-4.933a1.5 1.5 0 0 0-1.287 0l-10.39 4.933c-1.073.51-2.284-.37-2.131-1.548l1.48-11.407a1.5 1.5 0 0 0-.398-1.223L4.015 20.89c-.816-.863-.353-2.286.814-2.505l11.306-2.117a1.5 1.5 0 0 0 1.04-.756l5.508-10.098Z",fill:"currentColor",stroke:"none"},null,-1)])]),_:1},16))});exports.default=r;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const n=e.defineComponent({__name:"IconStar",setup:n=>(n,r)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(n.$attrs)),{default:e.withCtx(()=>[...r[0]||(r[0]=[e.createElementVNode("path",{d:"M22.683 5.415c.568-1.043 2.065-1.043 2.634 0l5.507 10.098a1.5 1.5 0 0 0 1.04.756l11.306 2.117c1.168.219 1.63 1.642.814 2.505l-7.902 8.359a1.5 1.5 0 0 0-.397 1.223l1.48 11.407c.153 1.177-1.058 2.057-2.131 1.548l-10.391-4.933a1.5 1.5 0 0 0-1.287 0l-10.39 4.933c-1.073.51-2.284-.37-2.131-1.548l1.48-11.407a1.5 1.5 0 0 0-.398-1.223L4.015 20.89c-.816-.863-.353-2.286.814-2.505l11.306-2.117a1.5 1.5 0 0 0 1.04-.756l5.508-10.098Z",fill:"currentColor",stroke:"none"},null,-1)])]),_:1},16))});exports.default=n;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../../node_modules/dayjs/plugin/duration.js"),require("../../node_modules/dayjs/plugin/toObject.js"),require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),require("../../node_modules/dayjs/plugin/isSameOrBefore.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const r=e.defineComponent({__name:"IconSuccess",setup:r=>(r,s)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(r.$attrs)),{default:e.withCtx(()=>[...s[0]||(s[0]=[e.createElementVNode("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M24 44c11.046 0 20-8.954 20-20S35.046 4 24 4 4 12.954 4 24s8.954 20 20 20Zm10.207-24.379a1 1 0 0 0 0-1.414l-1.414-1.414a1 1 0 0 0-1.414 0L22 26.172l-4.878-4.88a1 1 0 0 0-1.415 0l-1.414 1.415a1 1 0 0 0 0 1.414l7 7a1 1 0 0 0 1.414 0l11.5-11.5Z",fill:"currentColor",stroke:"none"},null,-1)])]),_:1},16))});exports.default=r;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const n=e.defineComponent({__name:"IconSuccess",setup:n=>(n,r)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(n.$attrs)),{default:e.withCtx(()=>[...r[0]||(r[0]=[e.createElementVNode("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M24 44c11.046 0 20-8.954 20-20S35.046 4 24 4 4 12.954 4 24s8.954 20 20 20Zm10.207-24.379a1 1 0 0 0 0-1.414l-1.414-1.414a1 1 0 0 0-1.414 0L22 26.172l-4.878-4.88a1 1 0 0 0-1.415 0l-1.414 1.415a1 1 0 0 0 0 1.414l7 7a1 1 0 0 0 1.414 0l11.5-11.5Z",fill:"currentColor",stroke:"none"},null,-1)])]),_:1},16))});exports.default=n;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../../node_modules/dayjs/plugin/duration.js"),require("../../node_modules/dayjs/plugin/toObject.js"),require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),require("../../node_modules/dayjs/plugin/isSameOrBefore.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const s=e.defineComponent({__name:"IconTime",setup:s=>(s,r)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(s.$attrs)),{default:e.withCtx(()=>[...r[0]||(r[0]=[e.createElementVNode("path",{d:"M24 14v10h9.5m8.5 0c0 9.941-8.059 18-18 18S6 33.941 6 24 14.059 6 24 6s18 8.059 18 18Z"},null,-1)])]),_:1},16))});exports.default=s;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const n=e.defineComponent({__name:"IconTime",setup:n=>(n,t)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(n.$attrs)),{default:e.withCtx(()=>[...t[0]||(t[0]=[e.createElementVNode("path",{d:"M24 14v10h9.5m8.5 0c0 9.941-8.059 18-18 18S6 33.941 6 24 14.059 6 24 6s18 8.059 18 18Z"},null,-1)])]),_:1},16))});exports.default=n;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../../node_modules/dayjs/plugin/duration.js"),require("../../node_modules/dayjs/plugin/toObject.js"),require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),require("../../node_modules/dayjs/plugin/isSameOrBefore.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const r=e.defineComponent({__name:"IconToTop",setup:r=>(r,n)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(r.$attrs)),{default:e.withCtx(()=>[...n[0]||(n[0]=[e.createElementVNode("path",{d:"M43 7H5M24 20v23M24 13.96 30.453 21H17.546L24 13.96Zm.736-.804Z"},null,-1),e.createElementVNode("path",{d:"m24 14-6 7h12l-6-7Z",fill:"currentColor",stroke:"none"},null,-1)])]),_:1},16))});exports.default=r;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const n=e.defineComponent({__name:"IconToTop",setup:n=>(n,t)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(n.$attrs)),{default:e.withCtx(()=>[...t[0]||(t[0]=[e.createElementVNode("path",{d:"M43 7H5M24 20v23M24 13.96 30.453 21H17.546L24 13.96Zm.736-.804Z"},null,-1),e.createElementVNode("path",{d:"m24 14-6 7h12l-6-7Z",fill:"currentColor",stroke:"none"},null,-1)])]),_:1},16))});exports.default=n;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../../node_modules/dayjs/plugin/duration.js"),require("../../node_modules/dayjs/plugin/toObject.js"),require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),require("../../node_modules/dayjs/plugin/isSameOrBefore.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const s=e.defineComponent({__name:"IconUpload",setup:s=>(s,r)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(s.$attrs)),{default:e.withCtx(()=>[...r[0]||(r[0]=[e.createElementVNode("path",{d:"M14.93 17.071 24.001 8l9.071 9.071m-9.07 16.071v-25M40 35v6H8v-6"},null,-1)])]),_:1},16))});exports.default=s;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const n=e.defineComponent({__name:"IconUpload",setup:n=>(n,t)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(n.$attrs)),{default:e.withCtx(()=>[...t[0]||(t[0]=[e.createElementVNode("path",{d:"M14.93 17.071 24.001 8l9.071 9.071m-9.07 16.071v-25M40 35v6H8v-6"},null,-1)])]),_:1},16))});exports.default=n;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../../node_modules/dayjs/plugin/duration.js"),require("../../node_modules/dayjs/plugin/toObject.js"),require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),require("../../node_modules/dayjs/plugin/isSameOrBefore.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const r=e.defineComponent({__name:"IconWarning",setup:r=>(r,n)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(r.$attrs)),{default:e.withCtx(()=>[...n[0]||(n[0]=[e.createElementVNode("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M24 44c11.046 0 20-8.954 20-20S35.046 4 24 4 4 12.954 4 24s8.954 20 20 20Zm-2-11a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v2Zm4-18a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V15Z",fill:"currentColor",stroke:"none"},null,-1)])]),_:1},16))});exports.default=r;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const n=e.defineComponent({__name:"IconWarning",setup:n=>(n,r)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(n.$attrs)),{default:e.withCtx(()=>[...r[0]||(r[0]=[e.createElementVNode("path",{"fill-rule":"evenodd","clip-rule":"evenodd",d:"M24 44c11.046 0 20-8.954 20-20S35.046 4 24 4 4 12.954 4 24s8.954 20 20 20Zm-2-11a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1v-2a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v2Zm4-18a1 1 0 0 0-1-1h-2a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h2a1 1 0 0 0 1-1V15Z",fill:"currentColor",stroke:"none"},null,-1)])]),_:1},16))});exports.default=n;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../../node_modules/dayjs/plugin/duration.js"),require("../../node_modules/dayjs/plugin/toObject.js"),require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),require("../../node_modules/dayjs/plugin/isSameOrBefore.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const s=e.defineComponent({__name:"IconZoomIn",setup:s=>(s,n)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(s.$attrs)),{default:e.withCtx(()=>[...n[0]||(n[0]=[e.createElementVNode("path",{d:"M32.607 32.607A14.953 14.953 0 0 0 37 22c0-8.284-6.716-15-15-15-8.284 0-15 6.716-15 15 0 8.284 6.716 15 15 15 4.142 0 7.892-1.679 10.607-4.393Zm0 0L41.5 41.5M29 22H15m7 7V15"},null,-1)])]),_:1},16))});exports.default=s;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const n=e.defineComponent({__name:"IconZoomIn",setup:n=>(n,t)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(n.$attrs)),{default:e.withCtx(()=>[...t[0]||(t[0]=[e.createElementVNode("path",{d:"M32.607 32.607A14.953 14.953 0 0 0 37 22c0-8.284-6.716-15-15-15-8.284 0-15 6.716-15 15 0 8.284 6.716 15 15 15 4.142 0 7.892-1.679 10.607-4.393Zm0 0L41.5 41.5M29 22H15m7 7V15"},null,-1)])]),_:1},16))});exports.default=n;
@@ -1 +1 @@
1
- "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../../node_modules/dayjs/plugin/duration.js"),require("../../node_modules/dayjs/plugin/toObject.js"),require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),require("../../node_modules/dayjs/plugin/isSameOrBefore.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const s=e.defineComponent({__name:"IconZoomOut",setup:s=>(s,r)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(s.$attrs)),{default:e.withCtx(()=>[...r[0]||(r[0]=[e.createElementVNode("path",{d:"M32.607 32.607A14.953 14.953 0 0 0 37 22c0-8.284-6.716-15-15-15-8.284 0-15 6.716-15 15 0 8.284 6.716 15 15 15 4.142 0 7.892-1.679 10.607-4.393Zm0 0L41.5 41.5M29 22H15"},null,-1)])]),_:1},16))});exports.default=s;
1
+ "use strict";Object.defineProperties(exports,{__esModule:{value:!0},[Symbol.toStringTag]:{value:"Module"}});const e=require("vue");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../utils/dom.js"),require("../utils/locale.js"),require("../utils/time.js"),/* empty css */;/* empty css */const o=require("../components/Icon/index.vue3.js");;/* empty css */const n=e.defineComponent({__name:"IconZoomOut",setup:n=>(n,t)=>(e.openBlock(),e.createBlock(e.unref(o.default),e.normalizeProps(e.guardReactiveProps(n.$attrs)),{default:e.withCtx(()=>[...t[0]||(t[0]=[e.createElementVNode("path",{d:"M32.607 32.607A14.953 14.953 0 0 0 37 22c0-8.284-6.716-15-15-15-8.284 0-15 6.716-15 15 0 8.284 6.716 15 15 15 4.142 0 7.892-1.679 10.607-4.393Zm0 0L41.5 41.5M29 22H15"},null,-1)])]),_:1},16))});exports.default=n;
@@ -39,3 +39,6 @@ export { default as IconZoomIn } from './IconZoomIn.vue';
39
39
  export { default as IconZoomOut } from './IconZoomOut.vue';
40
40
  export { default as IconUpload } from './IconUpload.vue';
41
41
  export { default as IconFile } from './IconFile.vue';
42
+ export { default as IconDoubleLeft } from './IconDoubleLeft.vue';
43
+ export { default as IconDoubleRight } from './IconDoubleRight.vue';
44
+ export { default as IconCalendar } from './IconCalendar.vue';
@@ -22,7 +22,7 @@ export type Position = 'left' | 'right' | 'top' | 'bottom';
22
22
  export type Type<T = never> = 'success' | 'warning' | 'error' | 'info' | T;
23
23
  export type Status<T = never> = 'success' | 'warning' | 'danger' | 'normal' | T;
24
24
  export type ClassName = string | Record<string, boolean> | (string | Record<string, boolean>)[];
25
- export type RenderContent = string | RecordType[] | RenderFunction;
25
+ export type RenderContent = string | number | RecordType[] | RenderFunction;
26
26
  export type RecordType<T = any> = Record<string, T>;
27
27
  export type Required<T> = {
28
28
  [P in keyof T]-?: T[P] extends object ? Required<T[P]> : T[P];
@@ -1 +1 @@
1
- "use strict";var o=Object.defineProperty,t=(t,e,r)=>((t,e,r)=>e in t?o(t,e,{enumerable:!0,configurable:!0,writable:!0,value:r}):t[e]=r)(t,"symbol"!=typeof e?e+"":e,r);Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"}),require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js");const e=require("../../node_modules/tinycolor2/esm/tinycolor.js");require("../../node_modules/dayjs/plugin/duration.js"),require("../../node_modules/dayjs/plugin/toObject.js"),require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),require("../../node_modules/dayjs/plugin/isSameOrBefore.js");exports.GradientColorCalculator=class{constructor(){t(this,"colorStops"),this.colorStops=[{pos:0,color:"#f00"},{pos:.17,color:"#ff0"},{pos:.33,color:"#0f0"},{pos:.5,color:"#0ff"},{pos:.67,color:"#00f"},{pos:.83,color:"#f0f"},{pos:1,color:"#f00"}]}getPositionForColor(o,t){const r=e.default(o);let s=1/0,l=0;for(let i=0;i<=100;i++){const o=i/100,n=e.default(this.getColorAtPosition(o*t,t)),a=this.calculateColorDistance(r,n);a<s&&(s=a,l=o)}return l*t}calculateColorDistance(o,t){const e=o.toRgb(),r=t.toRgb();return Math.sqrt(Math.pow(e.r-r.r,2)+Math.pow(e.g-r.g,2)+Math.pow(e.b-r.b,2))}getPrecisePositionForColor(o,t,r=.001){const s=e.default(o);let l=0,i=1,n=.5,a=1/0;for(;i-l>r;){const o=l+(i-l)/3,r=i-(i-l)/3,c=e.default(this.getColorAtPosition(o*t,t)),p=e.default(this.getColorAtPosition(r*t,t)),u=this.calculateColorDistance(s,c),d=this.calculateColorDistance(s,p);u<d?(i=r,u<a&&(a=u,n=o)):(l=o,d<a&&(a=d,n=r))}return n*t}getColorAtPosition(o,t){const r=this.clamp(o/t,0,1),{startStop:s,endStop:l}=this.findStops(r),i=l.pos-s.pos,n=i>0?(r-s.pos)/i:0,a=e.default(s.color),c=e.default(l.color);return e.default.mix(a,c,100*n).toHexString()}findStops(o){for(let t=0;t<this.colorStops.length-1;t++)if(o>=this.colorStops[t].pos&&o<=this.colorStops[t+1].pos)return{startStop:this.colorStops[t],endStop:this.colorStops[t+1]};return{startStop:this.colorStops[0],endStop:this.colorStops[this.colorStops.length-1]}}clamp(o,t,e){return Math.min(Math.max(o,t),e)}updateColorStops(o){if(o.length<2)throw new Error("至少需要两个颜色停止点");if(0!==o[0].pos||1!==o[o.length-1].pos)throw new Error("第一个停止点位置必须为0,最后一个必须为1");this.colorStops=o.sort((o,t)=>o.pos-t.pos)}},exports.parseColor=o=>e.default(o);
1
+ "use strict";var o=Object.defineProperty,t=(t,r,s)=>((t,r,s)=>r in t?o(t,r,{enumerable:!0,configurable:!0,writable:!0,value:s}):t[r]=s)(t,"symbol"!=typeof r?r+"":r,s);Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"}),require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js");const r=require("../../node_modules/tinycolor2/esm/tinycolor.js");exports.GradientColorCalculator=class{constructor(){t(this,"colorStops"),this.colorStops=[{pos:0,color:"#f00"},{pos:.17,color:"#ff0"},{pos:.33,color:"#0f0"},{pos:.5,color:"#0ff"},{pos:.67,color:"#00f"},{pos:.83,color:"#f0f"},{pos:1,color:"#f00"}]}getPositionForColor(o,t){const s=r.default(o);let e=1/0,l=0;for(let i=0;i<=100;i++){const o=i/100,n=r.default(this.getColorAtPosition(o*t,t)),c=this.calculateColorDistance(s,n);c<e&&(e=c,l=o)}return l*t}calculateColorDistance(o,t){const r=o.toRgb(),s=t.toRgb();return Math.sqrt(Math.pow(r.r-s.r,2)+Math.pow(r.g-s.g,2)+Math.pow(r.b-s.b,2))}getPrecisePositionForColor(o,t,s=.001){const e=r.default(o);let l=0,i=1,n=.5,c=1/0;for(;i-l>s;){const o=l+(i-l)/3,s=i-(i-l)/3,p=r.default(this.getColorAtPosition(o*t,t)),a=r.default(this.getColorAtPosition(s*t,t)),u=this.calculateColorDistance(e,p),f=this.calculateColorDistance(e,a);u<f?(i=s,u<c&&(c=u,n=o)):(l=o,f<c&&(c=f,n=s))}return n*t}getColorAtPosition(o,t){const s=this.clamp(o/t,0,1),{startStop:e,endStop:l}=this.findStops(s),i=l.pos-e.pos,n=i>0?(s-e.pos)/i:0,c=r.default(e.color),p=r.default(l.color);return r.default.mix(c,p,100*n).toHexString()}findStops(o){for(let t=0;t<this.colorStops.length-1;t++)if(o>=this.colorStops[t].pos&&o<=this.colorStops[t+1].pos)return{startStop:this.colorStops[t],endStop:this.colorStops[t+1]};return{startStop:this.colorStops[0],endStop:this.colorStops[this.colorStops.length-1]}}clamp(o,t,r){return Math.min(Math.max(o,t),r)}updateColorStops(o){if(o.length<2)throw new Error("至少需要两个颜色停止点");if(0!==o[0].pos||1!==o[o.length-1].pos)throw new Error("第一个停止点位置必须为0,最后一个必须为1");this.colorStops=o.sort((o,t)=>o.pos-t.pos)}},exports.parseColor=o=>r.default(o);
@@ -4,8 +4,4 @@ export { default as BTween } from 'b-tween';
4
4
  export { default as dayjs } from 'dayjs';
5
5
  export type { UnitType } from 'dayjs';
6
6
  export { default as tinycolor } from 'tinycolor2';
7
- export { default as duration } from 'dayjs/plugin/duration';
8
- export { default as toObject } from 'dayjs/plugin/toObject';
9
- export { default as isSameOrAfter } from 'dayjs/plugin/isSameOrAfter';
10
- export { default as isSameOrBefore } from 'dayjs/plugin/isSameOrBefore';
11
7
  export type { ColorInput } from 'tinycolor2';
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),t=require("../constants/index.js"),r=require("../../node_modules/@vueuse/core/index.js");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js"),require("../../node_modules/dayjs/plugin/duration.js"),require("../../node_modules/dayjs/plugin/toObject.js"),require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),require("../../node_modules/dayjs/plugin/isSameOrBefore.js");const n=require("./is.js"),o=(()=>{try{return!("undefined"!=typeof window&&void 0!==document)}catch(e){return!0}})(),i=(e,t)=>{if(!o)return(t??document).querySelector(e)??void 0};exports.debounce=(e,t,r=!1)=>{let n=null,o=!1;return function(...i){const s=this;n&&clearTimeout(n),r&&!o&&(e.apply(s,i),o=!0),n=setTimeout(()=>{r||e.apply(s,i),o=!1},t)}},exports.findFirstScrollableParent=e=>{if(!e)return;let t=e.parentElement;for(;t;){const e=getComputedStyle(t),r=e.overflowY||e.overflow,n=["auto","scroll"].includes(r),o=t.scrollHeight>t.clientHeight;if(n&&o)return t;t=t.parentElement}},exports.getBreakpointValue=(e,t,r)=>{if(!n.isObject(t))return t;const o=["xs","sm","md","lg","xl","xxl"],i=o.indexOf(e);for(let s=i;s>=0;s--){const e=o[s];if(!n.isUndefined(t[e]))return t[e]}for(let s=i+1;s<o.length;s++){const e=o[s];if(!n.isUndefined(t[e]))return t[e]}return r},exports.getElement=(e,t)=>{if(n.isString(e)){const r="#"===e[0]?`[id='${e.slice(1)}']`:e;return i(r,t)}return e},exports.innerText=e=>{var t;return(null==(t=r.unrefElement(e))?void 0:t.innerText)||""},exports.isHorizontallyScrollable=function(e){const t=getComputedStyle(e),r="scroll"===t.overflowX||"auto"===t.overflowX;if(!("none"!==t.display&&"hidden"!==t.visibility))return!1;const n=e.scrollWidth>e.clientWidth;return r&&n},exports.isServerRendering=o,exports.isVerticallyScrollable=function(e){const t=getComputedStyle(e),r="scroll"===t.overflowY||"auto"===t.overflowY;if(!("none"!==t.display&&"hidden"!==t.visibility))return!1;const n=e.scrollHeight>e.clientHeight;return r&&n},exports.mediaQueryHandler=(n,o=t.MEDICA_QUERY_QUERUES)=>{const i=[],s={},l=[];Object.keys(o).forEach((e,t)=>{i.push(e),s[e]=t,l.push(r.useMediaQuery(o[e]))}),e.watch(l,e=>{const t=e.lastIndexOf(!0);n(i[t],s,t)},{immediate:!0})},exports.querySelector=i,exports.sleep=e=>new Promise(t=>{setTimeout(()=>{t("")},e)}),exports.throttle=(e,t)=>{let r=0,n=null;return function(...o){const i=Date.now(),s=t-(i-r);n&&(clearTimeout(n),n=null),s<=0?(e.apply(this,o),r=i):n=setTimeout(()=>{e.apply(this,o),r=Date.now(),n=null},s)}},exports.throttleByRaf=e=>{let t=0;const r=(...r)=>{t&&cancelAnimationFrame(t),t=requestAnimationFrame(()=>{e(...r),t=0})};return r.cancel=()=>{cancelAnimationFrame(t),t=0},r},exports.valueToPx=e=>n.isNumber(e)||n.isString(e)&&/^-?\d+(\.\d+)?$/.test(e)?e+"px":e;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),t=require("../constants/index.js"),r=require("../../node_modules/@vueuse/core/index.js");require("../../node_modules/b-tween/dist/b-tween.es.js"),require("../../node_modules/dayjs/dayjs.min.js"),require("../../node_modules/tinycolor2/esm/tinycolor.js");const n=require("./is.js"),o=(()=>{try{return!("undefined"!=typeof window&&void 0!==document)}catch(e){return!0}})(),i=(e,t)=>{if(!o)return(t??document).querySelector(e)??void 0};exports.debounce=(e,t,r=!1)=>{let n=null,o=!1;return function(...i){const l=this;n&&clearTimeout(n),r&&!o&&(e.apply(l,i),o=!0),n=setTimeout(()=>{r||e.apply(l,i),o=!1},t)}},exports.findFirstScrollableParent=e=>{if(!e)return;let t=e.parentElement;for(;t;){const e=getComputedStyle(t),r=e.overflowY||e.overflow,n=["auto","scroll"].includes(r),o=t.scrollHeight>t.clientHeight;if(n&&o)return t;t=t.parentElement}},exports.getBreakpointValue=(e,t,r)=>{if(!n.isObject(t))return t;const o=["xs","sm","md","lg","xl","xxl"],i=o.indexOf(e);for(let l=i;l>=0;l--){const e=o[l];if(!n.isUndefined(t[e]))return t[e]}for(let l=i+1;l<o.length;l++){const e=o[l];if(!n.isUndefined(t[e]))return t[e]}return r},exports.getElement=(e,t)=>{if(n.isString(e)){const r="#"===e[0]?`[id='${e.slice(1)}']`:e;return i(r,t)}return e},exports.innerText=e=>{var t;return(null==(t=r.unrefElement(e))?void 0:t.innerText)||""},exports.isHorizontallyScrollable=function(e){const t=getComputedStyle(e),r="scroll"===t.overflowX||"auto"===t.overflowX;if(!("none"!==t.display&&"hidden"!==t.visibility))return!1;const n=e.scrollWidth>e.clientWidth;return r&&n},exports.isServerRendering=o,exports.isVerticallyScrollable=function(e){const t=getComputedStyle(e),r="scroll"===t.overflowY||"auto"===t.overflowY;if(!("none"!==t.display&&"hidden"!==t.visibility))return!1;const n=e.scrollHeight>e.clientHeight;return r&&n},exports.mediaQueryHandler=(n,o=t.MEDICA_QUERY_QUERUES)=>{const i=[],l={},s=[];Object.keys(o).forEach((e,t)=>{i.push(e),l[e]=t,s.push(r.useMediaQuery(o[e]))}),e.watch(s,e=>{const t=e.lastIndexOf(!0);n(i[t],l,t)},{immediate:!0})},exports.querySelector=i,exports.sleep=e=>new Promise(t=>{setTimeout(()=>{t("")},e)}),exports.throttle=(e,t)=>{let r=0,n=null;return function(...o){const i=Date.now(),l=t-(i-r);n&&(clearTimeout(n),n=null),l<=0?(e.apply(this,o),r=i):n=setTimeout(()=>{e.apply(this,o),r=Date.now(),n=null},l)}},exports.throttleByRaf=e=>{let t=0;const r=(...r)=>{t&&cancelAnimationFrame(t),t=requestAnimationFrame(()=>{e(...r),t=0})};return r.cancel=()=>{cancelAnimationFrame(t),t=0},r},exports.valueToPx=e=>n.isNumber(e)||n.isString(e)&&/^-?\d+(\.\d+)?$/.test(e)?e+"px":e;
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),t=require("./is.js");exports.useControlValue=(r,u,o=e=>e,s=e=>e)=>{const n=e.ref(u);return e.computed({get(){const e=t.isUndefined(r.value)?n.value:r.value;return s(e)},set(e){n.value=e,o(e)}})};
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("vue"),t=require("./is.js");exports.useControlValue=(r,u,o=e=>e,s=e=>e)=>{const n=e.ref(u);return e.computed({get(){const e=t.isUndefined(r.value)?n.value:r.value;return s(e)},set(e){n.value=e,o(e,n)}})};
@@ -1,8 +1,3 @@
1
- export declare const addI18nMessages: (messages: Record<string, any>, options?: {
2
- overwrite?: boolean;
3
- }) => void;
4
- export declare const getLocale: () => string;
5
- export declare const useLocale: (locale: string) => void;
6
1
  export declare const useI18n: () => {
7
2
  i18nMessage: import('vue').ComputedRef<Record<string, any>>;
8
3
  locale: import('vue').ComputedRef<any>;
@@ -1,12 +1,3 @@
1
1
  import { dayjs } from './dependencies';
2
2
  export declare const isValidTimeRange: (beginDate: string, endDate: string, format: string) => boolean;
3
- export interface CalendarCellData {
4
- day: number;
5
- month: number;
6
- year: number;
7
- isCurrentMonth: boolean;
8
- fullDate: string;
9
- }
10
- export declare const generateMonthCalendar: (year: number, month: number) => CalendarCellData[][];
11
3
  export declare const formatSeconds: (time: number, format: string, type?: dayjs.UnitType) => string;
12
- export declare const formatDate: (value: string | number | Date, format: string) => string;
@@ -1 +1 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"}),require("../../node_modules/b-tween/dist/b-tween.es.js");const e=require("../../node_modules/dayjs/dayjs.min.js");require("../../node_modules/tinycolor2/esm/tinycolor.js");const t=require("../../node_modules/dayjs/plugin/duration.js"),d=require("../../node_modules/dayjs/plugin/toObject.js"),o=require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),r=require("../../node_modules/dayjs/plugin/isSameOrBefore.js");require("../../node_modules/dayjs/locale/en.js"),e.default.extend(o.default),e.default.extend(r.default),e.default.extend(d.default),e.default.extend(t.default);exports.formatDate=(t,d)=>e.default(t).format(d),exports.formatSeconds=(t,d,o="milliseconds")=>e.default.duration(t,o).format(d),exports.generateMonthCalendar=(t,d)=>{const o=e.default(`${t}-${d}-01`),r=o.day(),a=[],s=[];for(let e=0;e<42;e++){const t=e-r,n=o.add(t,"day"),l=n.month()+1===d;s.push({day:n.date(),month:n.month(),year:n.year(),fullDate:n.format("YYYY/MM/DD"),isCurrentMonth:l}),7===s.length&&(a.push([...s]),s.splice(0))}return a},exports.isValidTimeRange=(t,d,o)=>{const r=e.default(t,o).locale("en",{weekStart:1}),a=e.default(d,o).locale("en",{weekStart:1});return r.isBefore(a)};
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"}),require("../../node_modules/b-tween/dist/b-tween.es.js");const e=require("../../node_modules/dayjs/dayjs.min.js");require("../../node_modules/tinycolor2/esm/tinycolor.js");const d=require("../../node_modules/dayjs/plugin/duration.js"),t=require("../../node_modules/dayjs/plugin/toObject.js"),o=require("../../node_modules/dayjs/plugin/isSameOrAfter.js"),s=require("../../node_modules/dayjs/plugin/isSameOrBefore.js");require("../../node_modules/dayjs/locale/en.js"),e.default.extend(o.default),e.default.extend(s.default),e.default.extend(t.default),e.default.extend(d.default);exports.formatSeconds=(d,t,o="milliseconds")=>e.default.duration(d,o).format(t),exports.isValidTimeRange=(d,t,o)=>{const s=e.default(d,o).locale("en",{weekStart:1}),r=e.default(t,o).locale("en",{weekStart:1});return s.isBefore(r)};
@@ -1,6 +1,6 @@
1
1
  import { VNode } from 'vue';
2
2
  import { RecordType, RenderContent } from '../type';
3
- export declare const getSlotFunction: (param: RenderContent | undefined) => import('vue').RenderFunction | (() => string | RecordType<any>[]) | undefined;
3
+ export declare const getSlotFunction: (param: RenderContent | undefined) => import('vue').RenderFunction | (() => string | number | RecordType<any>[]) | undefined;
4
4
  export declare const isVifNode: (vnode: VNode | undefined | null) => boolean;
5
5
  export declare const findFirstLegitChild: (node: VNode[] | undefined) => VNode | null;
6
6
  export declare const findComponentsFromVnodes: (vnodes: VNode[], name?: string) => RecordType[];
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});exports.__module={exports:{}};
package/lib/index.d.ts CHANGED
@@ -18,6 +18,7 @@ import { default as Cascader } from './Cascader';
18
18
  import { default as Comment } from './Comment';
19
19
  import { default as ConfigProvider } from './ConfigProvider';
20
20
  import { default as Descriptions } from './Descriptions';
21
+ import { default as DatePicker } from './DatePicker';
21
22
  import { default as Divider } from './Divider';
22
23
  import { default as Drawer } from './Drawer';
23
24
  import { default as Dropdown } from './Dropdown';
@@ -136,7 +137,7 @@ export * from './Tabs';
136
137
  export * from './Upload';
137
138
  export * from './VerificationCode';
138
139
  export * from './Watermark';
139
- export { Affix, Alert, Anchor, AutoComplete, Avatar, BackTop, Badge, Button, Breadcrumb, Card, Calendar, Carousel, Checkbox, Collapse, ColorPicker, Cascader, Comment, ConfigProvider, Descriptions, Divider, Drawer, Dropdown, Empty, Grid, Image, Input, InputNumber, InputTag, Layout, Link, List, Menu, Mention, Modal, Message, Notification, OverflowList, PageHeader, Pagination, Popconfirm, Popover, Progress, Radio, Rate, ResizeBox, Result, Scrollbar, Select, Skeleton, Slider, Space, Split, Statistic, Steps, Spin, Switch, Tag, Timeline, Textarea, TimePicker, Tooltip, Transfer, Trigger, Typography, Tabs, Upload, VerificationCode, Watermark, };
140
+ export { Affix, Alert, Anchor, AutoComplete, Avatar, BackTop, Badge, Button, Breadcrumb, Card, Calendar, Carousel, Checkbox, Collapse, ColorPicker, Cascader, Comment, ConfigProvider, Descriptions, DatePicker, Divider, Drawer, Dropdown, Empty, Grid, Image, Input, InputNumber, InputTag, Layout, Link, List, Menu, Mention, Modal, Message, Notification, OverflowList, PageHeader, Pagination, Popconfirm, Popover, Progress, Radio, Rate, ResizeBox, Result, Scrollbar, Select, Skeleton, Slider, Space, Split, Statistic, Steps, Spin, Switch, Tag, Timeline, Textarea, TimePicker, Tooltip, Transfer, Trigger, Typography, Tabs, Upload, VerificationCode, Watermark, };
140
141
  export declare const components: Record<string, Plugin>;
141
142
  declare const YcDesignVue: {
142
143
  AnchorLink: {
@@ -487,6 +488,311 @@ declare const YcDesignVue: {
487
488
  }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
488
489
  $slots: Readonly<import('./Descriptions').DescriptionsItemSlots> & import('./Descriptions').DescriptionsItemSlots;
489
490
  });
491
+ YearPicker: {
492
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./DatePicker').YearPickerProps> & Readonly<{
493
+ onChange?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
494
+ "onUpdate:popupVisible"?: ((value: boolean) => any) | undefined;
495
+ "onPopup-visible-change"?: ((visible: boolean) => any) | undefined;
496
+ onClear?: (() => any) | undefined;
497
+ onSelect?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
498
+ "onUpdate:modelValue"?: ((value: import('./DatePicker').DatePickerValue) => any) | undefined;
499
+ "onUpdate:pickerValue"?: ((value: import('./DatePicker').DatePickerValue) => any) | undefined;
500
+ onOk?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
501
+ "onPicker-value-change"?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
502
+ "onSelect-shortcut"?: ((shortcut: import('./DatePicker').ShortcutType) => any) | undefined;
503
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
504
+ change: (value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any;
505
+ "update:popupVisible": (value: boolean) => any;
506
+ "popup-visible-change": (visible: boolean) => any;
507
+ clear: () => any;
508
+ select: (value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any;
509
+ "update:modelValue": (value: import('./DatePicker').DatePickerValue) => any;
510
+ "update:pickerValue": (value: import('./DatePicker').DatePickerValue) => any;
511
+ ok: (value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any;
512
+ "picker-value-change": (value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any;
513
+ "select-shortcut": (shortcut: import('./DatePicker').ShortcutType) => any;
514
+ }, import('vue').PublicProps, {
515
+ error: boolean;
516
+ size: import('./_shared/type').Size;
517
+ popupVisible: boolean;
518
+ defaultPopupVisible: boolean;
519
+ disabled: boolean;
520
+ position: import('./DatePicker').DatePickerPosition;
521
+ unmountOnClose: boolean;
522
+ popupContainer: import('./_shared/type').PopupContainer;
523
+ placeholder: string;
524
+ locale: Record<string, any>;
525
+ modelValue: import('./DatePicker').DatePickerValue;
526
+ defaultValue: import('./DatePicker').DatePickerValue;
527
+ allowClear: boolean;
528
+ readonly: boolean;
529
+ triggerProps: import('./Trigger').TriggerProps;
530
+ hideTrigger: boolean;
531
+ format: string;
532
+ pickerValue: import('./DatePicker').DatePickerValue;
533
+ defaultPickerValue: import('./DatePicker').DatePickerValue;
534
+ valueFormat: import('./DatePicker').ValueFormat;
535
+ showConfirmBtn: boolean;
536
+ shortcutsPosition: import('./DatePicker').ShortcutsPosition;
537
+ shortcuts: import('./DatePicker').ShortcutType[];
538
+ previewShortcut: boolean;
539
+ disabledInput: boolean;
540
+ disabledDate: import('./DatePicker').DisabledDate;
541
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
542
+ P: {};
543
+ B: {};
544
+ D: {};
545
+ C: {};
546
+ M: {};
547
+ Defaults: {};
548
+ }, Readonly<import('./DatePicker').YearPickerProps> & Readonly<{
549
+ onChange?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
550
+ "onUpdate:popupVisible"?: ((value: boolean) => any) | undefined;
551
+ "onPopup-visible-change"?: ((visible: boolean) => any) | undefined;
552
+ onClear?: (() => any) | undefined;
553
+ onSelect?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
554
+ "onUpdate:modelValue"?: ((value: import('./DatePicker').DatePickerValue) => any) | undefined;
555
+ "onUpdate:pickerValue"?: ((value: import('./DatePicker').DatePickerValue) => any) | undefined;
556
+ onOk?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
557
+ "onPicker-value-change"?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
558
+ "onSelect-shortcut"?: ((shortcut: import('./DatePicker').ShortcutType) => any) | undefined;
559
+ }>, {}, {}, {}, {}, {
560
+ error: boolean;
561
+ size: import('./_shared/type').Size;
562
+ popupVisible: boolean;
563
+ defaultPopupVisible: boolean;
564
+ disabled: boolean;
565
+ position: import('./DatePicker').DatePickerPosition;
566
+ unmountOnClose: boolean;
567
+ popupContainer: import('./_shared/type').PopupContainer;
568
+ placeholder: string;
569
+ locale: Record<string, any>;
570
+ modelValue: import('./DatePicker').DatePickerValue;
571
+ defaultValue: import('./DatePicker').DatePickerValue;
572
+ allowClear: boolean;
573
+ readonly: boolean;
574
+ triggerProps: import('./Trigger').TriggerProps;
575
+ hideTrigger: boolean;
576
+ format: string;
577
+ pickerValue: import('./DatePicker').DatePickerValue;
578
+ defaultPickerValue: import('./DatePicker').DatePickerValue;
579
+ valueFormat: import('./DatePicker').ValueFormat;
580
+ showConfirmBtn: boolean;
581
+ shortcutsPosition: import('./DatePicker').ShortcutsPosition;
582
+ shortcuts: import('./DatePicker').ShortcutType[];
583
+ previewShortcut: boolean;
584
+ disabledInput: boolean;
585
+ disabledDate: import('./DatePicker').DisabledDate;
586
+ }>;
587
+ __isFragment?: never;
588
+ __isTeleport?: never;
589
+ __isSuspense?: never;
590
+ } & import('vue').ComponentOptionsBase<Readonly<import('./DatePicker').YearPickerProps> & Readonly<{
591
+ onChange?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
592
+ "onUpdate:popupVisible"?: ((value: boolean) => any) | undefined;
593
+ "onPopup-visible-change"?: ((visible: boolean) => any) | undefined;
594
+ onClear?: (() => any) | undefined;
595
+ onSelect?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
596
+ "onUpdate:modelValue"?: ((value: import('./DatePicker').DatePickerValue) => any) | undefined;
597
+ "onUpdate:pickerValue"?: ((value: import('./DatePicker').DatePickerValue) => any) | undefined;
598
+ onOk?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
599
+ "onPicker-value-change"?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
600
+ "onSelect-shortcut"?: ((shortcut: import('./DatePicker').ShortcutType) => any) | undefined;
601
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
602
+ change: (value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any;
603
+ "update:popupVisible": (value: boolean) => any;
604
+ "popup-visible-change": (visible: boolean) => any;
605
+ clear: () => any;
606
+ select: (value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any;
607
+ "update:modelValue": (value: import('./DatePicker').DatePickerValue) => any;
608
+ "update:pickerValue": (value: import('./DatePicker').DatePickerValue) => any;
609
+ ok: (value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any;
610
+ "picker-value-change": (value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any;
611
+ "select-shortcut": (shortcut: import('./DatePicker').ShortcutType) => any;
612
+ }, string, {
613
+ error: boolean;
614
+ size: import('./_shared/type').Size;
615
+ popupVisible: boolean;
616
+ defaultPopupVisible: boolean;
617
+ disabled: boolean;
618
+ position: import('./DatePicker').DatePickerPosition;
619
+ unmountOnClose: boolean;
620
+ popupContainer: import('./_shared/type').PopupContainer;
621
+ placeholder: string;
622
+ locale: Record<string, any>;
623
+ modelValue: import('./DatePicker').DatePickerValue;
624
+ defaultValue: import('./DatePicker').DatePickerValue;
625
+ allowClear: boolean;
626
+ readonly: boolean;
627
+ triggerProps: import('./Trigger').TriggerProps;
628
+ hideTrigger: boolean;
629
+ format: string;
630
+ pickerValue: import('./DatePicker').DatePickerValue;
631
+ defaultPickerValue: import('./DatePicker').DatePickerValue;
632
+ valueFormat: import('./DatePicker').ValueFormat;
633
+ showConfirmBtn: boolean;
634
+ shortcutsPosition: import('./DatePicker').ShortcutsPosition;
635
+ shortcuts: import('./DatePicker').ShortcutType[];
636
+ previewShortcut: boolean;
637
+ disabledInput: boolean;
638
+ disabledDate: import('./DatePicker').DisabledDate;
639
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
640
+ $slots: any;
641
+ });
642
+ MonthPicker: {
643
+ new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./DatePicker').MonthPickerProps> & Readonly<{
644
+ onChange?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
645
+ "onUpdate:popupVisible"?: ((value: boolean) => any) | undefined;
646
+ "onPopup-visible-change"?: ((visible: boolean) => any) | undefined;
647
+ onClear?: (() => any) | undefined;
648
+ onSelect?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
649
+ "onUpdate:modelValue"?: ((value: import('./DatePicker').DatePickerValue) => any) | undefined;
650
+ "onUpdate:pickerValue"?: ((value: import('./DatePicker').DatePickerValue) => any) | undefined;
651
+ onOk?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
652
+ "onPicker-value-change"?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
653
+ "onSelect-shortcut"?: ((shortcut: import('./DatePicker').ShortcutType) => any) | undefined;
654
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
655
+ change: (value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any;
656
+ "update:popupVisible": (value: boolean) => any;
657
+ "popup-visible-change": (visible: boolean) => any;
658
+ clear: () => any;
659
+ select: (value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any;
660
+ "update:modelValue": (value: import('./DatePicker').DatePickerValue) => any;
661
+ "update:pickerValue": (value: import('./DatePicker').DatePickerValue) => any;
662
+ ok: (value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any;
663
+ "picker-value-change": (value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any;
664
+ "select-shortcut": (shortcut: import('./DatePicker').ShortcutType) => any;
665
+ }, import('vue').PublicProps, {
666
+ error: boolean;
667
+ size: import('./_shared/type').Size;
668
+ popupVisible: boolean;
669
+ defaultPopupVisible: boolean;
670
+ disabled: boolean;
671
+ position: import('./DatePicker').DatePickerPosition;
672
+ unmountOnClose: boolean;
673
+ popupContainer: import('./_shared/type').PopupContainer;
674
+ placeholder: string;
675
+ locale: Record<string, any>;
676
+ modelValue: import('./DatePicker').DatePickerValue;
677
+ defaultValue: import('./DatePicker').DatePickerValue;
678
+ allowClear: boolean;
679
+ readonly: boolean;
680
+ triggerProps: import('./Trigger').TriggerProps;
681
+ hideTrigger: boolean;
682
+ format: string;
683
+ pickerValue: import('./DatePicker').DatePickerValue;
684
+ defaultPickerValue: import('./DatePicker').DatePickerValue;
685
+ valueFormat: import('./DatePicker').ValueFormat;
686
+ showConfirmBtn: boolean;
687
+ abbreviation: boolean;
688
+ shortcutsPosition: import('./DatePicker').ShortcutsPosition;
689
+ shortcuts: import('./DatePicker').ShortcutType[];
690
+ previewShortcut: boolean;
691
+ disabledInput: boolean;
692
+ disabledDate: import('./DatePicker').DisabledDate;
693
+ }, false, {}, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, {}, any, import('vue').ComponentProvideOptions, {
694
+ P: {};
695
+ B: {};
696
+ D: {};
697
+ C: {};
698
+ M: {};
699
+ Defaults: {};
700
+ }, Readonly<import('./DatePicker').MonthPickerProps> & Readonly<{
701
+ onChange?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
702
+ "onUpdate:popupVisible"?: ((value: boolean) => any) | undefined;
703
+ "onPopup-visible-change"?: ((visible: boolean) => any) | undefined;
704
+ onClear?: (() => any) | undefined;
705
+ onSelect?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
706
+ "onUpdate:modelValue"?: ((value: import('./DatePicker').DatePickerValue) => any) | undefined;
707
+ "onUpdate:pickerValue"?: ((value: import('./DatePicker').DatePickerValue) => any) | undefined;
708
+ onOk?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
709
+ "onPicker-value-change"?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
710
+ "onSelect-shortcut"?: ((shortcut: import('./DatePicker').ShortcutType) => any) | undefined;
711
+ }>, {}, {}, {}, {}, {
712
+ error: boolean;
713
+ size: import('./_shared/type').Size;
714
+ popupVisible: boolean;
715
+ defaultPopupVisible: boolean;
716
+ disabled: boolean;
717
+ position: import('./DatePicker').DatePickerPosition;
718
+ unmountOnClose: boolean;
719
+ popupContainer: import('./_shared/type').PopupContainer;
720
+ placeholder: string;
721
+ locale: Record<string, any>;
722
+ modelValue: import('./DatePicker').DatePickerValue;
723
+ defaultValue: import('./DatePicker').DatePickerValue;
724
+ allowClear: boolean;
725
+ readonly: boolean;
726
+ triggerProps: import('./Trigger').TriggerProps;
727
+ hideTrigger: boolean;
728
+ format: string;
729
+ pickerValue: import('./DatePicker').DatePickerValue;
730
+ defaultPickerValue: import('./DatePicker').DatePickerValue;
731
+ valueFormat: import('./DatePicker').ValueFormat;
732
+ showConfirmBtn: boolean;
733
+ abbreviation: boolean;
734
+ shortcutsPosition: import('./DatePicker').ShortcutsPosition;
735
+ shortcuts: import('./DatePicker').ShortcutType[];
736
+ previewShortcut: boolean;
737
+ disabledInput: boolean;
738
+ disabledDate: import('./DatePicker').DisabledDate;
739
+ }>;
740
+ __isFragment?: never;
741
+ __isTeleport?: never;
742
+ __isSuspense?: never;
743
+ } & import('vue').ComponentOptionsBase<Readonly<import('./DatePicker').MonthPickerProps> & Readonly<{
744
+ onChange?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
745
+ "onUpdate:popupVisible"?: ((value: boolean) => any) | undefined;
746
+ "onPopup-visible-change"?: ((visible: boolean) => any) | undefined;
747
+ onClear?: (() => any) | undefined;
748
+ onSelect?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
749
+ "onUpdate:modelValue"?: ((value: import('./DatePicker').DatePickerValue) => any) | undefined;
750
+ "onUpdate:pickerValue"?: ((value: import('./DatePicker').DatePickerValue) => any) | undefined;
751
+ onOk?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
752
+ "onPicker-value-change"?: ((value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any) | undefined;
753
+ "onSelect-shortcut"?: ((shortcut: import('./DatePicker').ShortcutType) => any) | undefined;
754
+ }>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
755
+ change: (value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any;
756
+ "update:popupVisible": (value: boolean) => any;
757
+ "popup-visible-change": (visible: boolean) => any;
758
+ clear: () => any;
759
+ select: (value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any;
760
+ "update:modelValue": (value: import('./DatePicker').DatePickerValue) => any;
761
+ "update:pickerValue": (value: import('./DatePicker').DatePickerValue) => any;
762
+ ok: (value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any;
763
+ "picker-value-change": (value: import('./DatePicker').DatePickerValue, date: Date, dateString: string) => any;
764
+ "select-shortcut": (shortcut: import('./DatePicker').ShortcutType) => any;
765
+ }, string, {
766
+ error: boolean;
767
+ size: import('./_shared/type').Size;
768
+ popupVisible: boolean;
769
+ defaultPopupVisible: boolean;
770
+ disabled: boolean;
771
+ position: import('./DatePicker').DatePickerPosition;
772
+ unmountOnClose: boolean;
773
+ popupContainer: import('./_shared/type').PopupContainer;
774
+ placeholder: string;
775
+ locale: Record<string, any>;
776
+ modelValue: import('./DatePicker').DatePickerValue;
777
+ defaultValue: import('./DatePicker').DatePickerValue;
778
+ allowClear: boolean;
779
+ readonly: boolean;
780
+ triggerProps: import('./Trigger').TriggerProps;
781
+ hideTrigger: boolean;
782
+ format: string;
783
+ pickerValue: import('./DatePicker').DatePickerValue;
784
+ defaultPickerValue: import('./DatePicker').DatePickerValue;
785
+ valueFormat: import('./DatePicker').ValueFormat;
786
+ showConfirmBtn: boolean;
787
+ abbreviation: boolean;
788
+ shortcutsPosition: import('./DatePicker').ShortcutsPosition;
789
+ shortcuts: import('./DatePicker').ShortcutType[];
790
+ previewShortcut: boolean;
791
+ disabledInput: boolean;
792
+ disabledDate: import('./DatePicker').DisabledDate;
793
+ }, {}, string, {}, import('vue').GlobalComponents, import('vue').GlobalDirectives, string, import('vue').ComponentProvideOptions> & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps & (new () => {
794
+ $slots: any;
795
+ });
490
796
  DropdownButton: {
491
797
  new (...args: any[]): import('vue').CreateComponentPublicInstanceWithMixins<Readonly<import('./Dropdown').DropdownButtonProps> & Readonly<{
492
798
  onClick?: ((ev: MouseEvent) => any) | undefined;