vft 0.0.71 → 0.0.72

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 (408) hide show
  1. package/attributes.json +1 -1
  2. package/dist/index.css +1 -1
  3. package/es/component.js +56 -40
  4. package/es/components/aside/style/css.js +2 -0
  5. package/es/components/aside/style/index.js +2 -0
  6. package/es/components/back-top/back-top.vue2.js +8 -2
  7. package/es/components/col/col.vue.js +4 -0
  8. package/es/components/col/col.vue2.js +60 -0
  9. package/es/components/col/index.js +12 -0
  10. package/es/components/col/style/css.js +2 -0
  11. package/es/components/col/style/index.js +2 -0
  12. package/es/components/col/types.js +1 -0
  13. package/es/components/color-picker/utils/color.js +41 -51
  14. package/es/components/container/aside.vue.js +4 -0
  15. package/es/components/container/aside.vue2.js +37 -0
  16. package/es/components/container/container.vue.js +4 -0
  17. package/es/components/container/container.vue2.js +33 -0
  18. package/es/components/container/footer.vue.js +4 -0
  19. package/es/components/container/footer.vue2.js +39 -0
  20. package/es/components/container/header.vue.js +4 -0
  21. package/es/components/container/header.vue2.js +39 -0
  22. package/es/components/container/index.js +25 -0
  23. package/es/components/container/main.vue.js +4 -0
  24. package/es/components/container/main.vue2.js +26 -0
  25. package/es/components/container/style/css.js +6 -0
  26. package/es/components/container/style/index.js +6 -0
  27. package/es/components/context-menu/context-menu.vue2.js +20 -14
  28. package/es/components/date-picker/composables/use-month-range-header.js +29 -0
  29. package/es/components/date-picker/composables/use-range-picker.js +68 -0
  30. package/es/components/date-picker/composables/use-shortcut.js +24 -0
  31. package/es/components/date-picker/constants.js +4 -0
  32. package/es/components/date-picker/date-picker-com/basic-cell-render.js +37 -0
  33. package/es/components/date-picker/date-picker-com/basic-date-table.vue.js +4 -0
  34. package/es/components/date-picker/date-picker-com/basic-date-table.vue2.js +206 -0
  35. package/es/components/date-picker/date-picker-com/basic-month-table.vue.js +4 -0
  36. package/es/components/date-picker/date-picker-com/basic-month-table.vue2.js +131 -0
  37. package/es/components/date-picker/date-picker-com/basic-year-table.vue.js +4 -0
  38. package/es/components/date-picker/date-picker-com/basic-year-table.vue2.js +85 -0
  39. package/es/components/date-picker/date-picker-com/panel-date-pick.vue.js +4 -0
  40. package/es/components/date-picker/date-picker-com/panel-date-pick.vue2.js +455 -0
  41. package/es/components/date-picker/date-picker-com/panel-date-range.vue.js +4 -0
  42. package/es/components/date-picker/date-picker-com/panel-date-range.vue2.js +383 -0
  43. package/es/components/date-picker/date-picker-com/panel-month-range.vue.js +4 -0
  44. package/es/components/date-picker/date-picker-com/panel-month-range.vue2.js +170 -0
  45. package/es/components/date-picker/date-picker.js +81 -0
  46. package/es/components/date-picker/date-picker.type.js +1 -0
  47. package/es/components/date-picker/index.js +14 -0
  48. package/es/components/date-picker/panel-utils.js +17 -0
  49. package/es/components/date-picker/props/basic-cell.js +14 -0
  50. package/es/components/date-picker/props/basic-date-table.js +18 -0
  51. package/es/components/date-picker/props/basic-month-table.js +14 -0
  52. package/es/components/date-picker/props/basic-year-table.js +15 -0
  53. package/es/components/date-picker/props/date-picker.js +18 -0
  54. package/es/components/date-picker/props/panel-date-pick.js +23 -0
  55. package/es/components/date-picker/props/panel-date-range.js +14 -0
  56. package/es/components/date-picker/props/panel-month-range.js +14 -0
  57. package/es/components/date-picker/props/shared.js +56 -0
  58. package/es/components/date-picker/style/css.js +2 -0
  59. package/es/components/date-picker/style/index.js +7 -0
  60. package/es/components/date-picker/utils.js +49 -0
  61. package/es/components/date-time-select/date-time-select.vue2.js +70 -62
  62. package/es/components/date-time-select/style/index.js +6 -0
  63. package/es/components/footer/style/css.js +2 -0
  64. package/es/components/footer/style/index.js +2 -0
  65. package/es/components/footer-layout/footer-layout.vue2.js +105 -35
  66. package/es/components/header/style/css.js +2 -0
  67. package/es/components/header/style/index.js +2 -0
  68. package/es/components/header-layout/header-layout.vue2.js +122 -37
  69. package/es/components/horizontal-menu/horizontal-menu.vue.js +4 -0
  70. package/es/components/horizontal-menu/horizontal-menu.vue2.js +115 -0
  71. package/es/components/horizontal-menu/index.js +12 -0
  72. package/es/components/horizontal-menu/style/css.js +6 -0
  73. package/es/components/horizontal-menu/style/index.js +6 -0
  74. package/es/components/index.js +254 -209
  75. package/es/components/input/input.vue2.js +184 -178
  76. package/es/components/link/link.vue2.js +24 -24
  77. package/es/components/logo/logo.vue2.js +21 -21
  78. package/es/components/main/style/css.js +2 -0
  79. package/es/components/main/style/index.js +2 -0
  80. package/es/components/md-container/md-container.vue2.js +65 -59
  81. package/es/components/md-container/toc.js +1 -1
  82. package/es/components/menu/menu-item.vue2.js +89 -62
  83. package/es/components/menu/menu.vue2.js +100 -106
  84. package/es/components/menu/sub-menu.vue2.js +83 -76
  85. package/es/components/menu/utils/menu-item.js +15 -19
  86. package/es/components/menu/utils/submenu.js +20 -25
  87. package/es/components/multiple-tabs/multiple-tabs.vue2.js +45 -39
  88. package/es/components/result/result.vue2.js +8 -2
  89. package/es/components/row/constants.js +4 -0
  90. package/es/components/row/index.js +14 -0
  91. package/es/components/row/row.vue.js +4 -0
  92. package/es/components/row/row.vue2.js +49 -0
  93. package/es/components/row/style/css.js +2 -0
  94. package/es/components/row/style/index.js +2 -0
  95. package/es/components/row/types.js +1 -0
  96. package/es/components/search/search.vue2.js +126 -114
  97. package/es/components/side-menu/side-menu.vue2.js +212 -146
  98. package/es/components/side-menu/use-drag-line.js +29 -28
  99. package/es/components/tabs/tab-nav.vue2.js +48 -42
  100. package/es/components/time-picker/common/picker.vue.js +4 -0
  101. package/es/components/time-picker/common/picker.vue2.js +438 -0
  102. package/es/components/time-picker/common/props.js +201 -0
  103. package/es/components/time-picker/composables/use-time-panel.js +60 -0
  104. package/es/components/time-picker/composables/use-time-picker.js +40 -0
  105. package/es/components/time-picker/constants.js +17 -0
  106. package/es/components/time-picker/index.js +31 -0
  107. package/es/components/time-picker/props/basic-time-spinner.js +31 -0
  108. package/es/components/time-picker/props/panel-time-picker.js +17 -0
  109. package/es/components/time-picker/props/panel-time-range.js +16 -0
  110. package/es/components/time-picker/props/shared.js +40 -0
  111. package/es/components/time-picker/style/css.js +2 -0
  112. package/es/components/time-picker/style/index.js +2 -0
  113. package/es/components/time-picker/time-picker-com/basic-time-spinner.vue.js +4 -0
  114. package/es/components/time-picker/time-picker-com/basic-time-spinner.vue2.js +227 -0
  115. package/es/components/time-picker/time-picker-com/panel-time-pick.vue.js +4 -0
  116. package/es/components/time-picker/time-picker-com/panel-time-pick.vue2.js +107 -0
  117. package/es/components/time-picker/time-picker-com/panel-time-range.vue.js +4 -0
  118. package/es/components/time-picker/time-picker-com/panel-time-range.vue2.js +190 -0
  119. package/es/components/time-picker/time-picker.js +70 -0
  120. package/es/components/time-picker/types.js +1 -0
  121. package/es/components/time-picker/utils.js +35 -0
  122. package/es/components/time-select/style/css.js +2 -0
  123. package/es/components/time-select/style/index.js +2 -0
  124. package/es/components/time-select/time-select.js +54 -0
  125. package/es/components/time-select/time-select.vue.js +4 -0
  126. package/es/components/time-select/time-select.vue2.js +104 -0
  127. package/es/components/time-select/utils.js +40 -0
  128. package/es/components/tooltip/index.js +5 -3
  129. package/es/index.js +381 -336
  130. package/es/package.json.js +1 -1
  131. package/global.d.ts +73 -2
  132. package/lib/component.cjs +1 -1
  133. package/lib/components/aside/style/css.cjs +1 -0
  134. package/lib/components/aside/style/index.cjs +1 -0
  135. package/lib/components/back-top/back-top.vue2.cjs +1 -1
  136. package/lib/components/col/col.vue.cjs +1 -0
  137. package/lib/components/col/col.vue2.cjs +1 -0
  138. package/lib/components/col/index.cjs +1 -0
  139. package/lib/components/col/style/css.cjs +1 -0
  140. package/lib/components/col/style/index.cjs +1 -0
  141. package/lib/components/col/types.cjs +1 -0
  142. package/lib/components/color-picker/utils/color.cjs +1 -1
  143. package/lib/components/container/aside.vue.cjs +1 -0
  144. package/lib/components/container/aside.vue2.cjs +1 -0
  145. package/lib/components/container/container.vue.cjs +1 -0
  146. package/lib/components/container/container.vue2.cjs +1 -0
  147. package/lib/components/container/footer.vue.cjs +1 -0
  148. package/lib/components/container/footer.vue2.cjs +1 -0
  149. package/lib/components/container/header.vue.cjs +1 -0
  150. package/lib/components/container/header.vue2.cjs +1 -0
  151. package/lib/components/container/index.cjs +1 -0
  152. package/lib/components/container/main.vue.cjs +1 -0
  153. package/lib/components/container/main.vue2.cjs +1 -0
  154. package/lib/components/container/style/css.cjs +1 -0
  155. package/lib/components/container/style/index.cjs +1 -0
  156. package/lib/components/context-menu/context-menu.vue2.cjs +1 -1
  157. package/lib/components/date-picker/composables/use-month-range-header.cjs +1 -0
  158. package/lib/components/date-picker/composables/use-range-picker.cjs +1 -0
  159. package/lib/components/date-picker/composables/use-shortcut.cjs +1 -0
  160. package/lib/components/date-picker/constants.cjs +1 -0
  161. package/lib/components/date-picker/date-picker-com/basic-cell-render.cjs +1 -0
  162. package/lib/components/date-picker/date-picker-com/basic-date-table.vue.cjs +1 -0
  163. package/lib/components/date-picker/date-picker-com/basic-date-table.vue2.cjs +1 -0
  164. package/lib/components/date-picker/date-picker-com/basic-month-table.vue.cjs +1 -0
  165. package/lib/components/date-picker/date-picker-com/basic-month-table.vue2.cjs +1 -0
  166. package/lib/components/date-picker/date-picker-com/basic-year-table.vue.cjs +1 -0
  167. package/lib/components/date-picker/date-picker-com/basic-year-table.vue2.cjs +1 -0
  168. package/lib/components/date-picker/date-picker-com/panel-date-pick.vue.cjs +1 -0
  169. package/lib/components/date-picker/date-picker-com/panel-date-pick.vue2.cjs +1 -0
  170. package/lib/components/date-picker/date-picker-com/panel-date-range.vue.cjs +1 -0
  171. package/lib/components/date-picker/date-picker-com/panel-date-range.vue2.cjs +1 -0
  172. package/lib/components/date-picker/date-picker-com/panel-month-range.vue.cjs +1 -0
  173. package/lib/components/date-picker/date-picker-com/panel-month-range.vue2.cjs +1 -0
  174. package/lib/components/date-picker/date-picker.cjs +1 -0
  175. package/lib/components/date-picker/date-picker.type.cjs +1 -0
  176. package/lib/components/date-picker/index.cjs +1 -0
  177. package/lib/components/date-picker/panel-utils.cjs +1 -0
  178. package/lib/components/date-picker/props/basic-cell.cjs +1 -0
  179. package/lib/components/date-picker/props/basic-date-table.cjs +1 -0
  180. package/lib/components/date-picker/props/basic-month-table.cjs +1 -0
  181. package/lib/components/date-picker/props/basic-year-table.cjs +1 -0
  182. package/lib/components/date-picker/props/date-picker.cjs +1 -0
  183. package/lib/components/date-picker/props/panel-date-pick.cjs +1 -0
  184. package/lib/components/date-picker/props/panel-date-range.cjs +1 -0
  185. package/lib/components/date-picker/props/panel-month-range.cjs +1 -0
  186. package/lib/components/date-picker/props/shared.cjs +1 -0
  187. package/lib/components/date-picker/style/css.cjs +1 -0
  188. package/lib/components/date-picker/style/index.cjs +1 -0
  189. package/lib/components/date-picker/utils.cjs +1 -0
  190. package/lib/components/date-time-select/date-time-select.vue2.cjs +1 -1
  191. package/lib/components/date-time-select/style/index.cjs +1 -1
  192. package/lib/components/footer/style/css.cjs +1 -0
  193. package/lib/components/footer/style/index.cjs +1 -0
  194. package/lib/components/footer-layout/footer-layout.vue2.cjs +1 -1
  195. package/lib/components/header/style/css.cjs +1 -0
  196. package/lib/components/header/style/index.cjs +1 -0
  197. package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
  198. package/lib/components/horizontal-menu/horizontal-menu.vue.cjs +1 -0
  199. package/lib/components/horizontal-menu/horizontal-menu.vue2.cjs +1 -0
  200. package/lib/components/horizontal-menu/index.cjs +1 -0
  201. package/lib/components/horizontal-menu/style/css.cjs +1 -0
  202. package/lib/components/horizontal-menu/style/index.cjs +1 -0
  203. package/lib/components/index.cjs +1 -1
  204. package/lib/components/input/input.vue2.cjs +1 -1
  205. package/lib/components/link/link.vue2.cjs +1 -1
  206. package/lib/components/logo/logo.vue2.cjs +1 -1
  207. package/lib/components/main/style/css.cjs +1 -0
  208. package/lib/components/main/style/index.cjs +1 -0
  209. package/lib/components/md-container/md-container.vue2.cjs +1 -1
  210. package/lib/components/md-container/toc.cjs +1 -1
  211. package/lib/components/menu/menu-item.vue2.cjs +1 -1
  212. package/lib/components/menu/menu.vue2.cjs +1 -1
  213. package/lib/components/menu/sub-menu.vue2.cjs +1 -1
  214. package/lib/components/menu/utils/menu-item.cjs +1 -1
  215. package/lib/components/menu/utils/submenu.cjs +1 -1
  216. package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
  217. package/lib/components/result/result.vue2.cjs +1 -1
  218. package/lib/components/row/constants.cjs +1 -0
  219. package/lib/components/row/index.cjs +1 -0
  220. package/lib/components/row/row.vue.cjs +1 -0
  221. package/lib/components/row/row.vue2.cjs +1 -0
  222. package/lib/components/row/style/css.cjs +1 -0
  223. package/lib/components/row/style/index.cjs +1 -0
  224. package/lib/components/row/types.cjs +1 -0
  225. package/lib/components/search/search.vue2.cjs +1 -1
  226. package/lib/components/side-menu/side-menu.vue2.cjs +1 -1
  227. package/lib/components/side-menu/use-drag-line.cjs +1 -1
  228. package/lib/components/tabs/tab-nav.vue2.cjs +1 -1
  229. package/lib/components/time-picker/common/picker.vue.cjs +1 -0
  230. package/lib/components/time-picker/common/picker.vue2.cjs +1 -0
  231. package/lib/components/time-picker/common/props.cjs +1 -0
  232. package/lib/components/time-picker/composables/use-time-panel.cjs +1 -0
  233. package/lib/components/time-picker/composables/use-time-picker.cjs +1 -0
  234. package/lib/components/time-picker/constants.cjs +1 -0
  235. package/lib/components/time-picker/index.cjs +1 -0
  236. package/lib/components/time-picker/props/basic-time-spinner.cjs +1 -0
  237. package/lib/components/time-picker/props/panel-time-picker.cjs +1 -0
  238. package/lib/components/time-picker/props/panel-time-range.cjs +1 -0
  239. package/lib/components/time-picker/props/shared.cjs +1 -0
  240. package/lib/components/time-picker/style/css.cjs +1 -0
  241. package/lib/components/time-picker/style/index.cjs +1 -0
  242. package/lib/components/time-picker/time-picker-com/basic-time-spinner.vue.cjs +1 -0
  243. package/lib/components/time-picker/time-picker-com/basic-time-spinner.vue2.cjs +1 -0
  244. package/lib/components/time-picker/time-picker-com/panel-time-pick.vue.cjs +1 -0
  245. package/lib/components/time-picker/time-picker-com/panel-time-pick.vue2.cjs +1 -0
  246. package/lib/components/time-picker/time-picker-com/panel-time-range.vue.cjs +1 -0
  247. package/lib/components/time-picker/time-picker-com/panel-time-range.vue2.cjs +1 -0
  248. package/lib/components/time-picker/time-picker.cjs +1 -0
  249. package/lib/components/time-picker/types.cjs +1 -0
  250. package/lib/components/time-picker/utils.cjs +1 -0
  251. package/lib/components/time-select/style/css.cjs +1 -0
  252. package/lib/components/time-select/style/index.cjs +1 -0
  253. package/lib/components/time-select/time-select.cjs +1 -0
  254. package/lib/components/time-select/time-select.vue.cjs +1 -0
  255. package/lib/components/time-select/time-select.vue2.cjs +1 -0
  256. package/lib/components/time-select/utils.cjs +1 -0
  257. package/lib/components/tooltip/index.cjs +1 -1
  258. package/lib/index.cjs +1 -1
  259. package/lib/package.json.cjs +1 -1
  260. package/package.json +7 -7
  261. package/tags.json +1 -1
  262. package/theme-style/base.css +1 -1
  263. package/theme-style/display.css +1 -0
  264. package/theme-style/index.css +1 -1
  265. package/theme-style/src/affix.scss +7 -0
  266. package/theme-style/src/aside.scss +8 -0
  267. package/theme-style/src/autocomplete.scss +83 -0
  268. package/theme-style/src/back-top.scss +7 -6
  269. package/theme-style/src/badge.scss +57 -0
  270. package/theme-style/src/breadcrumb-item.scss +0 -0
  271. package/theme-style/src/breadcrumb.scss +61 -0
  272. package/theme-style/src/calendar.scss +80 -0
  273. package/theme-style/src/card.scss +38 -0
  274. package/theme-style/src/carousel-item.scss +50 -0
  275. package/theme-style/src/carousel.scss +174 -0
  276. package/theme-style/src/cascader-panel.scss +138 -0
  277. package/theme-style/src/cascader.scss +216 -0
  278. package/theme-style/src/check-tag.scss +29 -0
  279. package/theme-style/src/col.scss +52 -0
  280. package/theme-style/src/collapse-item.scss +0 -0
  281. package/theme-style/src/collapse.scss +67 -0
  282. package/theme-style/src/color-picker.scss +2 -2
  283. package/theme-style/src/common/popup.scss +47 -0
  284. package/theme-style/src/common/var.scss +381 -6
  285. package/theme-style/src/container.scss +14 -0
  286. package/theme-style/src/date-picker/date-picker.scss +110 -0
  287. package/theme-style/src/date-picker/date-range-picker.scss +113 -0
  288. package/theme-style/src/date-picker/date-table.scss +162 -0
  289. package/theme-style/src/date-picker/month-table.scss +90 -0
  290. package/theme-style/src/date-picker/picker-panel.scss +131 -0
  291. package/theme-style/src/date-picker/picker.scss +210 -0
  292. package/theme-style/src/date-picker/time-picker.scss +90 -0
  293. package/theme-style/src/date-picker/time-range-picker.scss +33 -0
  294. package/theme-style/src/date-picker/time-spinner.scss +111 -0
  295. package/theme-style/src/date-picker/year-table.scss +60 -0
  296. package/theme-style/src/date-picker.scss +9 -0
  297. package/theme-style/src/date-time-select.scss +1 -1
  298. package/theme-style/src/display.scss +12 -0
  299. package/theme-style/src/drawer.scss +160 -0
  300. package/theme-style/src/footer-layout.scss +4 -9
  301. package/theme-style/src/footer.scss +11 -0
  302. package/theme-style/src/header-layout.scss +26 -15
  303. package/theme-style/src/header.scss +11 -0
  304. package/theme-style/src/horizontal-menu.scss +90 -0
  305. package/theme-style/src/icon.scss +6 -6
  306. package/theme-style/src/index.scss +123 -76
  307. package/theme-style/src/infinite-scroll.scss +0 -0
  308. package/theme-style/src/input-number.scss +175 -0
  309. package/theme-style/src/input.scss +2 -4
  310. package/theme-style/src/list-cell.scss +3 -3
  311. package/theme-style/src/loading.scss +1 -1
  312. package/theme-style/src/main.scss +10 -0
  313. package/theme-style/src/md/code.scss +3 -3
  314. package/theme-style/src/md/demo-block.scss +2 -2
  315. package/theme-style/src/md/pswp.scss +4 -4
  316. package/theme-style/src/md/scroll-bar.scss +1 -1
  317. package/theme-style/src/md/table.scss +3 -3
  318. package/theme-style/src/md/toc.scss +3 -3
  319. package/theme-style/src/md-container.scss +6 -8
  320. package/theme-style/src/menu.scss +43 -17
  321. package/theme-style/src/message-box.scss +258 -0
  322. package/theme-style/src/mixins/_col.scss +38 -0
  323. package/theme-style/src/mixins/mixins.scss +25 -0
  324. package/theme-style/src/notification.scss +105 -0
  325. package/theme-style/src/option.scss +36 -0
  326. package/theme-style/src/pagination.scss +0 -2
  327. package/theme-style/src/progress.scss +169 -0
  328. package/theme-style/src/rate.scss +101 -0
  329. package/theme-style/src/reset.scss +92 -0
  330. package/theme-style/src/row.scss +31 -0
  331. package/theme-style/src/search.scss +6 -5
  332. package/theme-style/src/select-dropdown.scss +2 -2
  333. package/theme-style/src/side-menu.scss +9 -3
  334. package/theme-style/src/slider.scss +211 -0
  335. package/theme-style/src/space.scss +20 -0
  336. package/theme-style/src/spinner.scss +43 -0
  337. package/theme-style/src/statistic.scss +35 -0
  338. package/theme-style/src/step.scss +316 -0
  339. package/theme-style/src/steps.scss +21 -0
  340. package/theme-style/src/tabs.scss +2 -2
  341. package/theme-style/src/time-picker.scss +5 -0
  342. package/theme-style/src/time-select.scss +37 -0
  343. package/theme-style/src/timeline-item.scss +85 -0
  344. package/theme-style/src/timeline.scss +46 -0
  345. package/theme-style/src/transfer.scss +206 -0
  346. package/theme-style/src/tree-select.scss +36 -0
  347. package/theme-style/src/tree.scss +131 -0
  348. package/theme-style/src/upload.scss +621 -0
  349. package/theme-style/vft-affix.css +1 -0
  350. package/theme-style/vft-aside.css +1 -0
  351. package/theme-style/vft-autocomplete.css +1 -0
  352. package/theme-style/vft-back-top.css +1 -1
  353. package/theme-style/vft-badge.css +1 -0
  354. package/theme-style/vft-breadcrumb-item.css +0 -0
  355. package/theme-style/vft-breadcrumb.css +1 -0
  356. package/theme-style/vft-calendar.css +1 -0
  357. package/theme-style/vft-card.css +1 -0
  358. package/theme-style/vft-carousel-item.css +1 -0
  359. package/theme-style/vft-carousel.css +1 -0
  360. package/theme-style/vft-cascader-panel.css +1 -0
  361. package/theme-style/vft-cascader.css +1 -0
  362. package/theme-style/vft-check-tag.css +1 -0
  363. package/theme-style/vft-col.css +1 -0
  364. package/theme-style/vft-collapse-item.css +0 -0
  365. package/theme-style/vft-collapse.css +1 -0
  366. package/theme-style/vft-color-picker.css +1 -1
  367. package/theme-style/vft-container.css +1 -0
  368. package/theme-style/vft-date-picker.css +1 -0
  369. package/theme-style/vft-drawer.css +1 -0
  370. package/theme-style/vft-footer-layout.css +1 -1
  371. package/theme-style/vft-footer.css +1 -0
  372. package/theme-style/vft-header-layout.css +1 -1
  373. package/theme-style/vft-header.css +1 -0
  374. package/theme-style/vft-horizontal-menu.css +1 -0
  375. package/theme-style/vft-infinite-scroll.css +0 -0
  376. package/theme-style/vft-input-number.css +1 -0
  377. package/theme-style/vft-main.css +1 -0
  378. package/theme-style/vft-md-container.css +1 -1
  379. package/theme-style/vft-menu.css +1 -1
  380. package/theme-style/vft-message-box.css +1 -0
  381. package/theme-style/vft-notification.css +1 -0
  382. package/theme-style/vft-option.css +1 -0
  383. package/theme-style/vft-pagination.css +1 -1
  384. package/theme-style/vft-progress.css +1 -0
  385. package/theme-style/vft-rate.css +1 -0
  386. package/theme-style/vft-reset.css +1 -0
  387. package/theme-style/vft-row.css +1 -0
  388. package/theme-style/vft-search.css +1 -1
  389. package/theme-style/vft-select-dropdown.css +1 -1
  390. package/theme-style/vft-select.css +1 -1
  391. package/theme-style/vft-side-menu.css +1 -1
  392. package/theme-style/vft-slider.css +1 -0
  393. package/theme-style/vft-space.css +1 -0
  394. package/theme-style/vft-spinner.css +1 -0
  395. package/theme-style/vft-statistic.css +1 -0
  396. package/theme-style/vft-step.css +1 -0
  397. package/theme-style/vft-steps.css +1 -0
  398. package/theme-style/vft-time-picker.css +1 -0
  399. package/theme-style/vft-time-select.css +1 -0
  400. package/theme-style/vft-timeline-item.css +1 -0
  401. package/theme-style/vft-timeline.css +1 -0
  402. package/theme-style/vft-transfer.css +1 -0
  403. package/theme-style/vft-tree-select.css +1 -0
  404. package/theme-style/vft-tree.css +1 -0
  405. package/theme-style/vft-upload.css +1 -0
  406. package/theme-style/vft-var.css +1 -1
  407. package/web-types.json +1 -1
  408. package/theme-style/src/md/list.scss +0 -21
@@ -1,6 +1,6 @@
1
- import { defineComponent as T, useSlots as Y, ref as g, computed as m, h as v, onMounted as F, nextTick as G, getCurrentInstance as J, createVNode as f } from "vue";
1
+ import { defineComponent as E, toRefs as ee, useSlots as te, getCurrentInstance as oe, ref as y, computed as g, h as C, createVNode as f, onMounted as le, nextTick as ne, watch as re, isVNode as ie } from "vue";
2
2
  import "../divider/index.js";
3
- import { VftIcon as K } from "../icon/index.js";
3
+ import { VftIcon as ae } from "../icon/index.js";
4
4
  import "../avatar/index.js";
5
5
  import "../empty/index.js";
6
6
  import "../result/index.js";
@@ -9,8 +9,8 @@ import "../popper/index.js";
9
9
  import "../collapse-transition/index.js";
10
10
  import "../tooltip/index.js";
11
11
  import "../popover/index.js";
12
- import { VftMenu as Q, VftSubMenu as X, VftMenuItem as R } from "../menu/index.js";
13
- import { isUrl as Z, addUnit as k, isNullOrUndefined as N, removeUnit as I } from "@vft/utils";
12
+ import { VftMenu as pe, VftSubMenu as ue, VftMenuItem as A } from "../menu/index.js";
13
+ import { isUrl as se, isNullOrUndefined as V, addUnit as j, isNumber as de } from "@vft/utils";
14
14
  import "../context-menu/context-menu.vue2.js";
15
15
  import "../multiple-tabs/index.js";
16
16
  import "../header-layout/index.js";
@@ -19,6 +19,7 @@ import "../iframe-layout/index.js";
19
19
  import "../router-view-content/index.js";
20
20
  import "../logo/index.js";
21
21
  import "../back-top/index.js";
22
+ import "../container/index.js";
22
23
  import "../config-provider/index.js";
23
24
  import "../descriptions/index.js";
24
25
  import "../full-screen/index.js";
@@ -56,6 +57,11 @@ import "../image-viewer/index.js";
56
57
  import "../list-cell/index.js";
57
58
  import "../dialog/index.js";
58
59
  import "../date-time-select/index.js";
60
+ import "../col/index.js";
61
+ import "../row/index.js";
62
+ import "../horizontal-menu/index.js";
63
+ import "../time-picker/index.js";
64
+ import "../date-picker/index.js";
59
65
  import "../md-container/index.js";
60
66
  import "../md-comment/index.js";
61
67
  import "../md-tabs/index.js";
@@ -63,73 +69,92 @@ import "../md-vue-playground/index.js";
63
69
  import "../md-code-demo/index.js";
64
70
  import "../md-code-tabs/index.js";
65
71
  import "../message/index.js";
66
- import { useNamespace as _ } from "../../hooks/use-namespace/index.js";
72
+ import { useNamespace as ce } from "../../hooks/use-namespace/index.js";
67
73
  import "@popperjs/core";
68
74
  import "lodash";
69
75
  import "../../hooks/use-z-index/index.js";
70
76
  import "@vueuse/core";
71
77
  import "../../utils/ns-cover.js";
72
- import { listenerRouteChange as ee, useRouterHelper as te } from "@vft/router";
73
- import { useSortable as oe } from "@vft/use";
74
- import { useRouter as le } from "vue-router";
75
- import { useDragLine as ie } from "./use-drag-line.js";
76
- const a = (
78
+ import { listenerRouteChange as me, useRouterHelper as fe } from "@vft/router";
79
+ import { useSortable as he } from "@vft/use";
80
+ import { useDragLine as ge } from "./use-drag-line.js";
81
+ const p = (
77
82
  /* hoist-static*/
78
- _("side-menu")
79
- ), ne = T({
80
- name: a.b()
81
- }), Rt = /* @__PURE__ */ T({
82
- ...ne,
83
+ ce("side-menu")
84
+ );
85
+ function ve(v) {
86
+ return typeof v == "function" || Object.prototype.toString.call(v) === "[object Object]" && !ie(v);
87
+ }
88
+ const be = E({
89
+ name: p.b()
90
+ }), Ft = /* @__PURE__ */ E({
91
+ ...be,
83
92
  props: {
84
- menus: null,
85
- uniqueOpened: {
93
+ isFixedLeft: {
86
94
  type: Boolean,
87
95
  default: !0
88
96
  },
89
- collapse: {
90
- type: Boolean,
91
- default: !1
97
+ menus: null,
98
+ width: {
99
+ default: 200
100
+ },
101
+ height: {
102
+ default: "100%"
92
103
  },
93
- defaultActive: null,
94
- sideWidth: null,
95
104
  collapseWidth: {
96
105
  default: 50
97
106
  },
98
107
  attrMapping: null,
99
- extraHeight: {
100
- default: 100
101
- },
102
108
  menuTopBottomHeight: {
103
- default: 40
109
+ default: 0
104
110
  },
105
111
  showCollapse: {
106
112
  type: Boolean,
107
113
  default: !1
108
114
  },
109
115
  dragOption: null,
110
- dragWidth: {
116
+ dragWidthCfg: {
117
+ type: [Boolean, Object],
118
+ default: !1
119
+ },
120
+ useRouterJump: {
111
121
  type: Boolean,
112
122
  default: !1
113
123
  },
114
- useMenuSelect: {
124
+ openDisabled: {
125
+ type: Boolean
126
+ },
127
+ autoScrollActiveDom: {
128
+ type: [Boolean, Number],
129
+ default: !0
130
+ },
131
+ openMenuCollapse: {
115
132
  type: Boolean,
116
133
  default: !0
117
134
  },
118
- openListenRoute: {
135
+ collapse: {
119
136
  type: Boolean,
120
137
  default: !1
121
138
  },
122
- openDisabled: {
123
- type: Boolean
139
+ uniqueOpened: {
140
+ type: Boolean,
141
+ default: !0
124
142
  },
143
+ defaultActive: null,
125
144
  defaultOpeneds: null
126
145
  },
127
- emits: ["update:collapse", "update:sideWidth", "dragEnd", "select", "dragWidthEnd"],
128
- setup(t, {
129
- expose: A,
130
- emit: h
146
+ emits: ["update:collapse", "update:width", "dragEnd", "dragWidthEnd", "select", "subMenuClick", "menuItemMouseenter", "menuItemMouseleave"],
147
+ setup(v, {
148
+ expose: I,
149
+ emit: m
131
150
  }) {
132
- const c = Y(), y = g(), i = m(() => ({
151
+ const t = v, {
152
+ defaultActive: M,
153
+ collapse: h,
154
+ uniqueOpened: q,
155
+ defaultOpeneds: S,
156
+ openMenuCollapse: L
157
+ } = ee(t), i = te(), O = oe(), B = y(), a = g(() => ({
133
158
  path: "path",
134
159
  children: "children",
135
160
  title: "title",
@@ -138,103 +163,135 @@ const a = (
138
163
  disabled: "disabled",
139
164
  ...t.attrMapping
140
165
  }));
141
- ee((e) => {
142
- var o;
143
- !e || (o = e.meta) != null && o.hideSide && !t.openListenRoute || (y.value = e.path);
166
+ me((e) => {
167
+ var n;
168
+ !e || (n = e.meta) != null && n.hideSide && !t.useRouterJump || (B.value = e.path);
144
169
  });
145
- const C = (e, o) => {
146
- const l = e[i.value.path], d = e[i.value.title], r = e == null ? void 0 : e[i.value.children], u = e == null ? void 0 : e[i.value.index], p = e == null ? void 0 : e[i.value.icon], s = !(e != null && e[i.value.disabled]);
147
- return r != null && r.length ? v(
170
+ const P = (e) => {
171
+ var o;
172
+ const n = e.e;
173
+ if (t.autoScrollActiveDom && n) {
174
+ const u = de(t.autoScrollActiveDom) ? t.autoScrollActiveDom : 0, r = n.target;
175
+ (o = b.value) != null && o.menu && r && setTimeout(() => {
176
+ b.value.menu.scrollTop = b.value.menu.scrollTop + (r.getBoundingClientRect().top - b.value.menu.getBoundingClientRect().top) + u;
177
+ }, 300);
178
+ }
179
+ m("subMenuClick", e);
180
+ }, H = (e) => {
181
+ m("menuItemMouseenter", e);
182
+ }, J = (e) => {
183
+ m("menuItemMouseleave", e);
184
+ }, _ = (e, n) => {
185
+ const o = e[a.value.path], u = e[a.value.title], r = e == null ? void 0 : e[a.value.children], s = e == null ? void 0 : e[a.value.index], d = e == null ? void 0 : e[a.value.icon], c = !!(e != null && e[a.value.disabled]);
186
+ return r != null && r.length ? C(
148
187
  // @ts-ignore
149
- X,
188
+ ue,
150
189
  {
190
+ ...e,
151
191
  popperAppendToBody: !0,
152
- key: u || l,
153
- index: u || l,
154
- title: d,
155
- icon: p,
156
- popperClass: a.e("popper")
192
+ key: s || o,
193
+ index: s || o,
194
+ title: u,
195
+ icon: d,
196
+ class: s || o,
197
+ disabled: t.openDisabled && c,
198
+ popperClass: p.e("popper")
157
199
  },
158
200
  {
159
- default: () => r == null ? void 0 : r.map((n, P) => {
160
- var M;
161
- const x = n[i.value.path], S = n[i.value.index], $ = n[i.value.icon], j = n[i.value.title], z = n[i.value.disabled];
162
- return (M = n == null ? void 0 : n[i.value.children]) != null && M.length ? C(n, P) : (
201
+ default: () => r == null ? void 0 : r.map((l, G) => {
202
+ var k;
203
+ const w = l[a.value.path], N = l[a.value.index], K = l[a.value.icon], Q = l[a.value.title], X = !!l[a.value.disabled];
204
+ return (k = l == null ? void 0 : l[a.value.children]) != null && k.length ? _(l, G) : (
163
205
  // @ts-ignore
164
- v(R, {
165
- key: S || x,
166
- index: S || x,
167
- route: x,
168
- icon: $,
169
- title: j,
170
- disabled: t.openDisabled && z
171
- })
206
+ C(A, {
207
+ ...l,
208
+ key: N || w,
209
+ index: N || w,
210
+ route: w,
211
+ icon: K,
212
+ title: Q,
213
+ disabled: t.openDisabled && X
214
+ }, i.menuItem ? () => {
215
+ var W;
216
+ return (W = i.menuItem) == null ? void 0 : W.call(i, {
217
+ item: l
218
+ });
219
+ } : "")
172
220
  );
173
221
  })
174
222
  }
175
- ) : v(R, {
176
- key: u || l,
177
- index: u || l,
178
- title: d,
179
- route: l,
180
- icon: p,
181
- disabled: t.openDisabled && s
182
- }, c.menuItem ? () => {
183
- var n;
184
- return (n = c.menuItem) == null ? void 0 : n.call(c, {
223
+ ) : C(A, {
224
+ ...e,
225
+ key: s || o,
226
+ index: s || o,
227
+ title: u,
228
+ route: o,
229
+ icon: d,
230
+ disabled: t.openDisabled && c,
231
+ onMouseenter: () => H(e),
232
+ onMouseleave: () => J(e)
233
+ }, i.menuItem ? () => {
234
+ var l;
235
+ return (l = i.menuItem) == null ? void 0 : l.call(i, {
185
236
  item: e,
186
- index: o
237
+ index: n
187
238
  });
188
239
  } : "");
189
- }, D = m(() => {
190
- var e, o;
191
- return v(Q, {
192
- onSelect: t.useMenuSelect ? H : () => {
193
- },
194
- defaultActive: t.defaultActive || y.value,
195
- defaultOpeneds: t.defaultOpeneds,
196
- class: [a.e("con"), (e = t.dragOption) != null && e.dragClassName ? a.e((o = t.dragOption) == null ? void 0 : o.dragClassName) : ""],
197
- style: {
198
- height: `calc(100% - ${t.menuTopBottomHeight}px)`
199
- },
200
- uniqueOpened: t.uniqueOpened,
201
- collapse: t.collapse,
202
- "collapse-transition": !1
203
- }, () => t.menus.map((l, d) => C(l, d)));
204
- }), {
205
- go: O
206
- } = te(), w = le();
207
- async function H(e) {
208
- var r, u, p;
209
- const o = e.route;
210
- let l = e.route;
211
- e.indexPath.some((s) => Z(s)) && (l = e.indexPath.slice(-2).join("/"));
212
- const d = (p = (u = (r = w.getRoutes().filter((s) => s.path === l)) == null ? void 0 : r[0]) == null ? void 0 : u.meta) == null ? void 0 : p.linkTarget;
213
- O(d ? {
214
- url: o,
215
- winOpenOpt: {
216
- target: d
217
- }
218
- } : o), h("select", e);
240
+ }, b = y(), U = g(() => ({
241
+ ...t.collapseWidth === 0 && h.value ? {
242
+ width: 0
243
+ } : {},
244
+ height: `calc(100% - ${t.menuTopBottomHeight}px)`
245
+ })), F = g(() => {
246
+ var n, o;
247
+ let e;
248
+ return C(f(pe, {
249
+ ref: b,
250
+ onSelect: Z,
251
+ onOpen: P,
252
+ defaultActive: (M == null ? void 0 : M.value) || B.value,
253
+ defaultOpeneds: S == null ? void 0 : S.value,
254
+ class: [p.e("con"), (n = t.dragOption) != null && n.dragClassName ? p.e((o = t.dragOption) == null ? void 0 : o.dragClassName) : ""],
255
+ style: U.value,
256
+ collapse: L.value ? h.value : !1,
257
+ uniqueOpened: q.value,
258
+ collapseTransition: !1
259
+ }, ve(e = t.menus.map((u, r) => _(u, r))) ? e : {
260
+ default: () => [e]
261
+ }));
262
+ }), R = O.appContext.config.globalProperties.$router;
263
+ async function Z(e) {
264
+ var n, o, u;
265
+ if (t.useRouterJump) {
266
+ const {
267
+ go: r
268
+ } = fe(R), s = e.route;
269
+ let d = e.route;
270
+ e.indexPath.some((l) => se(l)) && (d = e.indexPath.slice(-2).join("/"));
271
+ const c = (u = (o = (n = R.getRoutes().filter((l) => l.path === d)) == null ? void 0 : n[0]) == null ? void 0 : o.meta) == null ? void 0 : u.linkTarget;
272
+ r(c ? {
273
+ url: s,
274
+ winOpenOpt: {
275
+ target: c
276
+ }
277
+ } : s);
278
+ }
279
+ m("select", e);
219
280
  }
220
- const W = g(), V = m(() => ({
221
- width: k(t.sideWidth),
222
- height: `calc(100% - ${t.extraHeight}px)`
223
- })), q = m(() => [a.b(), a.m("fixed")]);
224
- F(() => {
225
- G(() => {
226
- var e, o, l;
281
+ le(() => {
282
+ ne(() => {
283
+ var e, n, o;
227
284
  if ((e = t.dragOption) != null && e.dragClassName) {
228
- const d = (l = document.querySelectorAll("." + a.e((o = t.dragOption) == null ? void 0 : o.dragClassName))) == null ? void 0 : l[0], {
285
+ const u = (o = document.querySelectorAll("." + p.e((n = t.dragOption) == null ? void 0 : n.dragClassName))) == null ? void 0 : o[0], {
229
286
  initSortable: r
230
- } = oe(d, {
287
+ } = he(u, {
231
288
  draggable: ".vft-menu-item",
232
- onEnd: (u) => {
289
+ onEnd: (s) => {
233
290
  const {
234
- oldIndex: p,
235
- newIndex: s
236
- } = u;
237
- N(p) || N(s) || p === s || h("dragEnd", p, s);
291
+ oldIndex: d,
292
+ newIndex: c
293
+ } = s;
294
+ V(d) || V(c) || d === c || m("dragEnd", d, c);
238
295
  },
239
296
  ...t.dragOption
240
297
  });
@@ -242,39 +299,48 @@ const a = (
242
299
  }
243
300
  });
244
301
  });
245
- const b = g(), B = g(), E = m(() => ({
246
- left: k(t.sideWidth)
302
+ const x = y(), D = y(), T = y(), $ = g(() => ({
303
+ ...t.collapseWidth === 0 && h.value ? {
304
+ borderRight: "none"
305
+ } : {},
306
+ width: j(t.width),
307
+ height: t.height
247
308
  }));
248
- function U() {
249
- t.collapse ? h("update:sideWidth", W.value) : (W.value = t.sideWidth, h("update:sideWidth", t.collapseWidth)), h("update:collapse", !t.collapse);
250
- }
251
- const L = J();
252
- return t.dragWidth && ie(b, B, m(() => I(t.collapseWidth)), L, m(() => t.collapse)), A({
253
- sideRef: b
254
- }), () => f("div", {
255
- ref: b,
256
- class: q.value,
257
- style: V.value
258
- }, [c.top ? f("div", {
259
- class: a.e("top")
260
- }, [c.top()]) : null, D.value, c.bottom ? f("div", {
261
- class: a.e("bottom")
262
- }, [c.bottom()]) : t.showCollapse ? f("div", {
263
- onClick: U,
264
- class: [a.e("bottom"), a.e("collapse")]
265
- }, [f(K, {
266
- style: {
267
- transform: t.collapse ? "rotateY(180deg)" : ""
268
- },
269
- size: 20,
270
- icon: "ico-iconoir:sidebar-collapse"
271
- }, null)]) : null, t.dragWidth ? f("div", {
272
- ref: B,
273
- style: E.value,
274
- class: a.e("drag-bar")
275
- }, null) : null]);
309
+ re(() => h.value, (e) => {
310
+ e ? m("update:width", t.collapseWidth) : m("update:width", T.value || t.width), T.value = t.width;
311
+ }), t.dragWidthCfg && ge(x, D, O);
312
+ const z = g(() => ({
313
+ left: j(t.width)
314
+ })), Y = g(() => [p.b(), t.isFixedLeft ? p.m("fixed") : ""]);
315
+ return I({
316
+ sideRef: x
317
+ }), () => {
318
+ var e;
319
+ return f("div", {
320
+ ref: x,
321
+ class: Y.value,
322
+ style: $.value
323
+ }, [i.top ? f("div", {
324
+ class: p.e("top")
325
+ }, [i.top()]) : null, F.value, i.bottom ? f("div", {
326
+ class: p.e("bottom")
327
+ }, [i.bottom()]) : t.showCollapse ? f("div", {
328
+ onClick: () => m("update:collapse", !h.value),
329
+ class: [p.e("bottom"), p.e("collapse")]
330
+ }, [f(ae, {
331
+ style: {
332
+ transform: h.value ? "rotateY(180deg)" : ""
333
+ },
334
+ size: 20,
335
+ icon: "ico-iconoir:sidebar-collapse"
336
+ }, null)]) : null, (e = i.default) == null ? void 0 : e.call(i), t.dragWidthCfg ? f("div", {
337
+ ref: D,
338
+ style: z.value,
339
+ class: p.e("drag-bar")
340
+ }, null) : null]);
341
+ };
276
342
  }
277
343
  });
278
344
  export {
279
- Rt as default
345
+ Ft as default
280
346
  };
@@ -1,47 +1,48 @@
1
- import { useDebounceFn as v } from "@vft/use";
2
- import { onMounted as x, nextTick as g, unref as r } from "vue";
3
- function T(l, f, m, s, d) {
4
- x(() => {
5
- g(() => {
6
- v(w, 100)();
1
+ import { useDebounceFn as v, useThrottleFn as T } from "@vft/use";
2
+ import { onMounted as C, nextTick as M, unref as r } from "vue";
3
+ function L(a, l, i) {
4
+ var s, f;
5
+ const h = ((f = (s = i.props) == null ? void 0 : s.dragWidthCfg) == null ? void 0 : f.minWidth) || 200;
6
+ C(() => {
7
+ M(() => {
8
+ v(x, 100)();
7
9
  });
8
10
  });
9
- function i(t) {
10
- var n;
11
+ function c(t) {
12
+ var e;
11
13
  const o = r(t);
12
- return o ? Reflect.has(o, "$el") ? (n = r(t)) == null ? void 0 : n.$el : r(t) : null;
14
+ return o ? Reflect.has(o, "$el") ? (e = r(t)) == null ? void 0 : e.$el : r(t) : null;
13
15
  }
14
- function p(t, o, n) {
16
+ function W(t, o, e) {
15
17
  document.onmousemove = function(u) {
16
- let e = t.left + (u.clientX - n);
18
+ var m, p;
19
+ let n = t.left + (u.clientX - e);
17
20
  u = u || window.event;
18
- const a = 800, c = r(m);
19
- return e < 0 && (e = 0), e > a && (e = a), e <= c && (e = c, s.emit("update:sideWidth", c), s.emit("update:collapse", !0)), t.style.left = e + "px", !1;
21
+ const d = ((p = (m = i.props) == null ? void 0 : m.dragWidthCfg) == null ? void 0 : p.maxWidth) || 800, w = r(h);
22
+ return n <= w ? void 0 : (n < 0 && (n = 0), n > d && (n = d), t.style.left = n + "px", T(() => {
23
+ i.emit("update:width", n);
24
+ }, 150)(), !1);
20
25
  };
21
26
  }
22
- function h(t) {
23
- const o = i(f), n = i(l);
27
+ function g(t) {
24
28
  document.onmouseup = function() {
25
- var e;
26
- document.onmousemove = null, document.onmouseup = null, n.style.transition = "width 0.2s";
27
- const u = parseInt(o.style.left);
28
- u > r(m) && d.value && s.emit("update:collapse", !1), s.emit("update:sideWidth", u), s.emit("dragWidthEnd"), (e = t.releaseCapture) == null || e.call(t);
29
+ var o;
30
+ document.onmousemove = null, document.onmouseup = null, (o = t.releaseCapture) == null || o.call(t);
29
31
  };
30
32
  }
31
- function w() {
32
- const t = i(f);
33
+ function x() {
34
+ const t = c(l);
33
35
  if (!t)
34
36
  return;
35
- const o = i(l);
36
- o && (t.onmousedown = (n) => {
37
- var e;
38
- o.style.transition = "unset";
39
- const u = n == null ? void 0 : n.clientX;
40
- return t.left = t.offsetLeft, p(t, o, u), h(t), (e = t.setCapture) == null || e.call(t), !1;
37
+ const o = c(a);
38
+ o && (t.onmousedown = (e) => {
39
+ var n;
40
+ const u = e == null ? void 0 : e.clientX;
41
+ return t.left = t.offsetLeft, W(t, o, u), g(t), (n = t.setCapture) == null || n.call(t), !1;
41
42
  });
42
43
  }
43
44
  return {};
44
45
  }
45
46
  export {
46
- T as useDragLine
47
+ L as useDragLine
47
48
  };