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
@@ -0,0 +1,7 @@
1
+ @use 'mixins/mixins' as *;
2
+
3
+ @include b(affix) {
4
+ @include m(fixed) {
5
+ position: fixed;
6
+ }
7
+ }
@@ -0,0 +1,8 @@
1
+ @use 'mixins/mixins' as *;
2
+
3
+ @include b(aside) {
4
+ overflow: auto;
5
+ box-sizing: border-box;
6
+ flex-shrink: 0;
7
+ width: var(#{getCssVarName('aside', 'width')}, 300px);
8
+ }
@@ -0,0 +1,83 @@
1
+ @use 'sass:map';
2
+
3
+ @use 'mixins/mixins' as *;
4
+ @use 'common/var' as *;
5
+
6
+ @include b(autocomplete) {
7
+ position: relative;
8
+ display: inline-block;
9
+
10
+ @include e(popper) {
11
+ @include picker-popper(
12
+ getCssVar('bg-color', 'overlay'),
13
+ 1px solid getCssVar('border-color', 'light'),
14
+ getCssVar('box-shadow', 'light')
15
+ );
16
+ }
17
+ }
18
+
19
+ @include b(autocomplete-suggestion) {
20
+ border-radius: getCssVar('border-radius', 'base');
21
+ box-sizing: border-box;
22
+
23
+ @include e(wrap) {
24
+ max-height: 280px;
25
+ padding: 10px 0;
26
+ box-sizing: border-box;
27
+ }
28
+
29
+ @include e(list) {
30
+ margin: 0;
31
+ padding: 0;
32
+ }
33
+
34
+ & li {
35
+ padding: 0 20px;
36
+ margin: 0;
37
+ line-height: 34px;
38
+ cursor: pointer;
39
+ color: getCssVar('text-color', 'regular');
40
+ font-size: getCssVar('font-size', 'base');
41
+ list-style: none;
42
+ text-align: left;
43
+ white-space: nowrap;
44
+ overflow: hidden;
45
+ text-overflow: ellipsis;
46
+
47
+ &:hover {
48
+ background-color: map.get($select-option, 'hover-background');
49
+ }
50
+
51
+ &.highlighted {
52
+ background-color: map.get($select-option, 'hover-background');
53
+ }
54
+
55
+ &.divider {
56
+ margin-top: 6px;
57
+ border-top: 1px solid getCssVar('color', 'black');
58
+ }
59
+
60
+ &.divider:last-child {
61
+ margin-bottom: -6px;
62
+ }
63
+ }
64
+
65
+ @include when(loading) {
66
+ li {
67
+ text-align: center;
68
+ height: 100px;
69
+ line-height: 100px;
70
+ font-size: 20px;
71
+ color: getCssVar('text-color', 'secondary');
72
+ @include utils-vertical-center;
73
+
74
+ &:hover {
75
+ background-color: getCssVar('bg-color', 'overlay');
76
+ }
77
+ }
78
+
79
+ & .#{$namespace}-icon-loading {
80
+ vertical-align: middle;
81
+ }
82
+ }
83
+ }
@@ -3,22 +3,25 @@
3
3
 
4
4
  $name: back-top;
5
5
 
6
+ @function getCompCssVar($value) {
7
+ @return getCssVar($name, $value);
8
+ }
9
+
6
10
  @include b($name) {
7
11
  @include set-component-css-var('backtop', $back-top);
8
-
9
12
  position: fixed;
10
- background-color: getCssVar('backtop', 'bg-color');
13
+ background-color: getCompCssVar('bg-color');
11
14
  width: 40px;
12
15
  height: 40px;
13
16
  border-radius: 50%;
14
- color: getCssVar('backtop', 'text-color');
17
+ color: getCompCssVar('text-color');
15
18
  display: flex;
16
19
  align-items: center;
17
20
  justify-content: center;
18
21
  font-size: 20px;
19
22
  box-shadow: getCssVar('box-shadow', 'lighter');
20
23
  cursor: pointer;
21
- z-index: 5;
24
+ z-index: getCssVar('z-index-back-top');
22
25
 
23
26
  &:hover {
24
27
  background-color: getCssVar('backtop', 'hover-bg-color');
@@ -28,5 +31,3 @@ $name: back-top;
28
31
  font-size: 20px;
29
32
  }
30
33
  }
31
-
32
-
@@ -0,0 +1,57 @@
1
+ @use 'sass:math';
2
+ @use 'sass:map';
3
+
4
+ @use 'mixins/mixins' as *;
5
+ @use 'mixins/var' as *;
6
+ @use 'common/var' as *;
7
+
8
+ @include b(badge) {
9
+ @include set-component-css-var('badge', $badge);
10
+
11
+ position: relative;
12
+ vertical-align: middle;
13
+ display: inline-block;
14
+ width: fit-content;
15
+
16
+ @include e(content) {
17
+ background-color: getCssVar('badge', 'bg-color');
18
+ border-radius: getCssVar('badge', 'radius');
19
+ color: getCssVar('color', 'white');
20
+
21
+ display: inline-flex;
22
+ justify-content: center;
23
+ align-items: center;
24
+
25
+ font-size: getCssVar('badge', 'font-size');
26
+ height: getCssVar('badge', 'size');
27
+ padding: 0 getCssVar('badge', 'padding');
28
+ white-space: nowrap;
29
+ border: 1px solid getCssVar('bg-color');
30
+
31
+ @include when(fixed) {
32
+ position: absolute;
33
+ top: 0;
34
+ right: calc(1px + #{getCssVar('badge', 'size')} / 2);
35
+ transform: translateY(-50%) translateX(100%);
36
+ z-index: getCssVar('index', 'normal');
37
+
38
+ @include when(dot) {
39
+ right: 5px;
40
+ }
41
+ }
42
+
43
+ @include when(dot) {
44
+ height: 8px;
45
+ width: 8px;
46
+ padding: 0;
47
+ right: 0;
48
+ border-radius: 50%;
49
+ }
50
+
51
+ @each $type in (primary, success, warning, info, danger) {
52
+ @include m($type) {
53
+ background-color: getCssVar('color', $type);
54
+ }
55
+ }
56
+ }
57
+ }
File without changes
@@ -0,0 +1,61 @@
1
+ @use 'mixins/mixins' as *;
2
+ @use 'common/var' as *;
3
+
4
+ @include b(breadcrumb) {
5
+ font-size: 14px;
6
+ line-height: 1;
7
+ @include utils-clearfix;
8
+
9
+ @include e(separator) {
10
+ margin: 0 9px;
11
+ font-weight: bold;
12
+ color: getCssVar('text-color', 'placeholder');
13
+
14
+ &.#{$namespace}-icon {
15
+ margin: 0 6px;
16
+ font-weight: normal;
17
+ svg {
18
+ vertical-align: middle;
19
+ }
20
+ }
21
+ }
22
+
23
+ @include e(item) {
24
+ float: left;
25
+ display: inline-flex;
26
+ align-items: center;
27
+
28
+ @include e(inner) {
29
+ color: getCssVar('text-color', 'regular');
30
+
31
+ &.is-link,
32
+ & a {
33
+ font-weight: bold;
34
+ text-decoration: none;
35
+ transition: getCssVar('transition', 'color');
36
+ color: getCssVar('text-color', 'primary');
37
+
38
+ &:hover {
39
+ color: getCssVar('primary-color');
40
+ cursor: pointer;
41
+ }
42
+ }
43
+ }
44
+
45
+ &:last-child {
46
+ .#{$namespace}-breadcrumb__inner,
47
+ .#{$namespace}-breadcrumb__inner a {
48
+ &,
49
+ &:hover {
50
+ font-weight: normal;
51
+ color: getCssVar('text-color', 'regular');
52
+ cursor: text;
53
+ }
54
+ }
55
+
56
+ .#{$namespace}-breadcrumb__separator {
57
+ display: none;
58
+ }
59
+ }
60
+ }
61
+ }
@@ -0,0 +1,80 @@
1
+ @use 'mixins/mixins' as *;
2
+ @use 'mixins/var' as *;
3
+ @use 'common/var' as *;
4
+
5
+ @include b(calendar) {
6
+ @include set-component-css-var('calendar', $calendar);
7
+
8
+ background-color: getCssVar('fill-color', 'blank');
9
+
10
+ @include e(header) {
11
+ display: flex;
12
+ justify-content: space-between;
13
+ padding: 12px 20px;
14
+ border-bottom: getCssVar('calendar', 'header-border-bottom');
15
+ }
16
+
17
+ @include e(title) {
18
+ color: getCssVar('text-color');
19
+ align-self: center;
20
+ }
21
+
22
+ @include e(body) {
23
+ padding: 12px 20px 35px;
24
+ }
25
+ }
26
+
27
+ @include b(calendar-table) {
28
+ table-layout: fixed;
29
+ width: 100%;
30
+
31
+ thead th {
32
+ padding: 12px 0;
33
+ color: getCssVar('text-color', 'regular');
34
+ font-weight: normal;
35
+ }
36
+
37
+ &:not(.is-range) {
38
+ td.prev,
39
+ td.next {
40
+ color: getCssVar('text-color', 'placeholder');
41
+ }
42
+ }
43
+
44
+ td {
45
+ border-bottom: getCssVar('calendar', 'border');
46
+ border-right: getCssVar('calendar', 'border');
47
+ vertical-align: top;
48
+ transition: background-color getCssVar('transition-duration', 'fast') ease;
49
+
50
+ @include when(selected) {
51
+ background-color: getCssVar('calendar', 'selected-bg-color');
52
+ }
53
+
54
+ @include when(today) {
55
+ color: getCssVar('primary-color');
56
+ }
57
+ }
58
+
59
+ tr:first-child td {
60
+ border-top: getCssVar('calendar', 'border');
61
+ }
62
+
63
+ tr td:first-child {
64
+ border-left: getCssVar('calendar', 'border');
65
+ }
66
+
67
+ tr.#{$namespace}-calendar-table__row--hide-border td {
68
+ border-top: none;
69
+ }
70
+
71
+ @include b(calendar-day) {
72
+ box-sizing: border-box;
73
+ padding: 8px;
74
+ height: getCssVar('calendar', 'cell-width');
75
+ &:hover {
76
+ cursor: pointer;
77
+ background-color: getCssVar('calendar', 'selected-bg-color');
78
+ }
79
+ }
80
+ }
@@ -0,0 +1,38 @@
1
+ @use 'mixins/mixins' as *;
2
+ @use 'mixins/var' as *;
3
+ @use 'common/var' as *;
4
+
5
+ @include b(card) {
6
+ @include set-component-css-var('card', $card);
7
+ }
8
+
9
+ @include b(card) {
10
+ border-radius: getCssVar('card', 'border-radius');
11
+ border: 1px solid getCssVar('card', 'border-color');
12
+ background-color: getCssVar('card', 'bg-color');
13
+ overflow: hidden;
14
+ color: getCssVar('text-color', 'primary');
15
+ transition: getCssVar('transition-duration');
16
+
17
+ @include when(always-shadow) {
18
+ box-shadow: getCssVar('box-shadow', 'light');
19
+ }
20
+
21
+ @include when(hover-shadow) {
22
+ &:hover,
23
+ &:focus {
24
+ box-shadow: getCssVar('box-shadow', 'light');
25
+ }
26
+ }
27
+
28
+ @include e(header) {
29
+ padding: calc(#{getCssVar('card', 'padding')} - 2px)
30
+ getCssVar('card', 'padding');
31
+ border-bottom: 1px solid getCssVar('card', 'border-color');
32
+ box-sizing: border-box;
33
+ }
34
+
35
+ @include e(body) {
36
+ padding: getCssVar('card', 'padding');
37
+ }
38
+ }
@@ -0,0 +1,50 @@
1
+ @use 'mixins/mixins' as *;
2
+ @use 'common/var' as *;
3
+
4
+ @include b(carousel) {
5
+ @include e(item) {
6
+ position: absolute;
7
+ top: 0;
8
+ left: 0;
9
+ width: 100%;
10
+ height: 100%;
11
+ display: inline-block;
12
+ overflow: hidden;
13
+ z-index: calc(getCssVar('index', 'normal') - 1);
14
+
15
+ @include when(active) {
16
+ z-index: calc(getCssVar('index', 'normal') - 1);
17
+ }
18
+
19
+ @include when(animating) {
20
+ transition: transform 0.4s ease-in-out;
21
+ }
22
+
23
+ @include m(card) {
24
+ width: 50%;
25
+ transition: transform 0.4s ease-in-out;
26
+ &.is-in-stage {
27
+ cursor: pointer;
28
+ z-index: getCssVar('index', 'normal');
29
+ &:hover .#{$namespace}-carousel__mask,
30
+ &.is-hover .#{$namespace}-carousel__mask {
31
+ opacity: 0.12;
32
+ }
33
+ }
34
+ &.is-active {
35
+ z-index: calc(getCssVar('index', 'normal') + 1);
36
+ }
37
+ }
38
+ }
39
+
40
+ @include e(mask) {
41
+ position: absolute;
42
+ width: 100%;
43
+ height: 100%;
44
+ top: 0;
45
+ left: 0;
46
+ background-color: getCssVar('color', 'white');
47
+ opacity: 0.24;
48
+ transition: getCssVar('transition-duration', 'fast');
49
+ }
50
+ }
@@ -0,0 +1,174 @@
1
+ @use 'sass:math';
2
+
3
+ @use 'mixins/mixins' as *;
4
+ @use 'mixins/var' as *;
5
+ @use 'common/var' as *;
6
+
7
+ @include b(carousel) {
8
+ @include set-component-css-var('carousel', $carousel);
9
+
10
+ position: relative;
11
+
12
+ @include m(horizontal) {
13
+ overflow-x: hidden;
14
+ }
15
+
16
+ @include m(vertical) {
17
+ overflow-y: hidden;
18
+ }
19
+
20
+ @include e(container) {
21
+ position: relative;
22
+ height: 300px;
23
+ }
24
+
25
+ @include e(arrow) {
26
+ border: none;
27
+ outline: none;
28
+ padding: 0;
29
+ margin: 0;
30
+ height: getCssVar('carousel', 'arrow-size');
31
+ width: getCssVar('carousel', 'arrow-size');
32
+ cursor: pointer;
33
+ transition: getCssVar('transition', 'duration');
34
+ border-radius: 50%;
35
+ background-color: getCssVar('carousel', 'arrow-background');
36
+ color: $color-white;
37
+ position: absolute;
38
+ top: 50%;
39
+ z-index: 10;
40
+ transform: translateY(-50%);
41
+ text-align: center;
42
+ font-size: getCssVar('carousel', 'arrow-font-size');
43
+
44
+ @include flex-center(true);
45
+
46
+ @include m(left) {
47
+ left: 16px;
48
+ }
49
+
50
+ @include m(right) {
51
+ right: 16px;
52
+ }
53
+
54
+ &:hover {
55
+ background-color: getCssVar('carousel', 'arrow-hover-background');
56
+ }
57
+
58
+ & i {
59
+ cursor: pointer;
60
+ }
61
+ }
62
+
63
+ @include e(indicators) {
64
+ position: absolute;
65
+ list-style: none;
66
+ margin: 0;
67
+ padding: 0;
68
+ z-index: calc(#{getCssVar('index-normal')} + 1);
69
+
70
+ @include m(horizontal) {
71
+ bottom: 0;
72
+ left: 50%;
73
+ transform: translateX(-50%);
74
+ }
75
+
76
+ @include m(vertical) {
77
+ right: 0;
78
+ top: 50%;
79
+ transform: translateY(-50%);
80
+ }
81
+
82
+ @include m(outside) {
83
+ bottom: calc(
84
+ getCssVar('carousel-indicator-height') +
85
+ getCssVar('carousel-indicator-padding-vertical') * 2
86
+ );
87
+ text-align: center;
88
+ position: static;
89
+ transform: none;
90
+ .#{$namespace}-carousel__indicator:hover button {
91
+ opacity: 0.64;
92
+ }
93
+ button {
94
+ background-color: getCssVar('carousel', 'indicator-out-color');
95
+ opacity: 0.24;
96
+ }
97
+ }
98
+
99
+ @include m(labels) {
100
+ left: 0;
101
+ right: 0;
102
+ transform: none;
103
+ text-align: center;
104
+
105
+ .#{$namespace}-carousel__button {
106
+ height: auto;
107
+ width: auto;
108
+ padding: 2px 18px;
109
+ font-size: 12px;
110
+ color: $color-black;
111
+ }
112
+
113
+ .#{$namespace}-carousel__indicator {
114
+ padding: 6px 4px;
115
+ }
116
+ }
117
+ }
118
+
119
+ @include e(indicator) {
120
+ background-color: transparent;
121
+ cursor: pointer;
122
+
123
+ &:hover button {
124
+ opacity: 0.72;
125
+ }
126
+
127
+ @include m(horizontal) {
128
+ display: inline-block;
129
+ padding: getCssVar('carousel-indicator-padding-vertical')
130
+ getCssVar('carousel-indicator-padding-horizontal');
131
+ }
132
+
133
+ @include m(vertical) {
134
+ padding: getCssVar('carousel-indicator-padding-horizontal')
135
+ getCssVar('carousel-indicator-padding-vertical');
136
+ .#{$namespace}-carousel__button {
137
+ width: getCssVar('carousel-indicator-height');
138
+ height: calc(#{getCssVar('carousel-indicator-width')} / 2);
139
+ }
140
+ }
141
+
142
+ @include when(active) {
143
+ button {
144
+ opacity: 1;
145
+ }
146
+ }
147
+ }
148
+
149
+ @include e(button) {
150
+ display: block;
151
+ opacity: 0.48;
152
+ width: getCssVar('carousel-indicator-width');
153
+ height: getCssVar('carousel-indicator-height');
154
+ background-color: $color-white;
155
+ border: none;
156
+ outline: none;
157
+ padding: 0;
158
+ margin: 0;
159
+ cursor: pointer;
160
+ transition: getCssVar('transition-duration');
161
+ }
162
+ }
163
+
164
+ .carousel-arrow-left-enter-from,
165
+ .carousel-arrow-left-leave-active {
166
+ transform: translateY(-50%) translateX(-10px);
167
+ opacity: 0;
168
+ }
169
+
170
+ .carousel-arrow-right-enter-from,
171
+ .carousel-arrow-right-leave-active {
172
+ transform: translateY(-50%) translateX(10px);
173
+ opacity: 0;
174
+ }