vft 0.0.142 → 0.0.144

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 (787) hide show
  1. package/attributes.json +1 -1
  2. package/dist/index.css +1 -1
  3. package/es/app-components/base/style/index.d.ts +0 -0
  4. package/es/app-components/button/button-custom.d.ts +5 -0
  5. package/es/app-components/button/constants.d.ts +3 -0
  6. package/es/app-components/button/index.d.ts +5 -0
  7. package/es/app-components/button/style/index.d.ts +0 -0
  8. package/es/app-components/button/types.d.ts +9 -0
  9. package/es/app-components/button/use-button.d.ts +20 -0
  10. package/es/app-components/clamp/index.d.ts +2 -0
  11. package/es/app-components/clamp/style/index.d.ts +0 -0
  12. package/es/app-components/col/index.d.ts +4 -0
  13. package/es/app-components/col/style/index.d.ts +0 -0
  14. package/es/app-components/col/types.d.ts +11 -0
  15. package/es/app-components/form/constants.d.ts +4 -0
  16. package/es/app-components/form/form-label-wrap.d.ts +11 -0
  17. package/es/app-components/form/hooks/index.d.ts +2 -0
  18. package/es/app-components/form/hooks/use-form-common-props.d.ts +7 -0
  19. package/es/app-components/form/hooks/use-form-item.d.ts +18 -0
  20. package/es/app-components/form/index.d.ts +5 -0
  21. package/es/app-components/form/style/index.d.ts +0 -0
  22. package/es/app-components/form/types.d.ts +43 -0
  23. package/es/app-components/form/utils.d.ts +9 -0
  24. package/es/app-components/hooks/index.d.ts +2 -0
  25. package/es/app-components/hooks/use-id.d.ts +9 -0
  26. package/es/app-components/hooks/use-namespace.d.ts +22 -0
  27. package/es/app-components/icon/index.d.ts +3 -0
  28. package/es/app-components/icon/style/index.d.ts +0 -0
  29. package/es/app-components/image/index.d.ts +3 -0
  30. package/es/app-components/image/style/index.d.ts +0 -0
  31. package/es/app-components/image/types.d.ts +13 -0
  32. package/es/app-components/index.d.ts +11 -0
  33. package/es/app-components/input/index.d.ts +3 -0
  34. package/es/app-components/input/style/index.d.ts +0 -0
  35. package/es/app-components/input/utils.d.ts +6 -0
  36. package/es/app-components/overlay/index.d.ts +2 -0
  37. package/es/app-components/overlay/style/index.d.ts +0 -0
  38. package/es/app-components/popup/index.d.ts +3 -0
  39. package/es/app-components/popup/style/index.d.ts +0 -0
  40. package/es/app-components/popup/types.d.ts +1 -0
  41. package/es/app-components/row/constants.d.ts +6 -0
  42. package/es/app-components/row/index.d.ts +5 -0
  43. package/es/app-components/row/style/index.d.ts +0 -0
  44. package/es/app-components/row/types.d.ts +2 -0
  45. package/es/app-components/super-form/component-map.d.ts +14 -0
  46. package/es/app-components/super-form/index.d.ts +5 -0
  47. package/es/app-components/super-form/style/index.d.ts +0 -0
  48. package/es/{components → app-components}/super-form/types.d.ts +67 -27
  49. package/es/app-components/super-form/use/helper.d.ts +17 -0
  50. package/es/app-components/super-form/use/use-auto-focus.d.ts +11 -0
  51. package/es/app-components/super-form/use/use-form-context.d.ts +8 -0
  52. package/{lib/components → es/app-components}/super-form/use/use-form-events.d.ts +1 -0
  53. package/{lib/components → es/app-components}/super-form/use/use-form-values.d.ts +2 -1
  54. package/es/app-components/super-form/use/use-form.d.ts +9 -0
  55. package/es/app-components/types.d.ts +6 -0
  56. package/es/app-components/upload/index.d.ts +3 -0
  57. package/es/app-components/upload/style/index.d.ts +0 -0
  58. package/es/app-components/upload/types.d.ts +33 -0
  59. package/es/app-components/upload/utils.d.ts +26 -0
  60. package/es/app-components/utils/index.d.ts +1 -0
  61. package/es/app-components/utils/interceptor.d.ts +6 -0
  62. package/es/components/affix/affix.js +4 -5
  63. package/es/components/affix/index.js +1 -1
  64. package/es/components/alert/alert.vue2.js +6 -3
  65. package/es/components/alert/index.js +1 -1
  66. package/es/components/autocomplete/autocomplete.vue.d.ts +6 -6
  67. package/es/components/autocomplete/autocomplete.vue2.js +25 -25
  68. package/es/components/autocomplete/index.d.ts +20 -20
  69. package/es/components/autocomplete/index.js +1 -1
  70. package/es/components/avatar/index.js +1 -1
  71. package/es/components/backtop/backtop.vue2.js +20 -20
  72. package/es/components/backtop/index.js +1 -1
  73. package/es/components/button/button-custom.d.ts +1 -0
  74. package/es/components/button/button-group.vue.d.ts +4 -10
  75. package/es/components/button/button-group.vue2.js +17 -16
  76. package/es/components/button/button.vue.d.ts +51 -13
  77. package/es/components/button/button.vue2.js +44 -47
  78. package/es/components/button/constants.d.ts +2 -6
  79. package/es/components/button/index.d.ts +52 -20
  80. package/es/components/button/index.js +1 -1
  81. package/es/components/button/mobile.d.ts +6 -0
  82. package/es/components/button/mobile.js +8 -0
  83. package/es/components/button/types.d.ts +5 -0
  84. package/es/components/button/use-button.d.ts +1 -2
  85. package/es/components/button/use-button.js +31 -29
  86. package/es/components/card/card.vue.d.ts +2 -2
  87. package/es/components/card/card.vue2.js +11 -11
  88. package/es/components/card/index.d.ts +4 -4
  89. package/es/components/card/index.js +1 -1
  90. package/es/components/carousel/carousel.vue.d.ts +12 -12
  91. package/es/components/carousel/carousel.vue2.js +6 -3
  92. package/es/components/carousel/index.d.ts +21 -21
  93. package/es/components/carousel/index.js +1 -1
  94. package/es/components/check-tag/check-tag.vue2.js +8 -8
  95. package/es/components/check-tag/index.js +1 -1
  96. package/es/components/checkbox/checkbox.vue.d.ts +8 -8
  97. package/es/components/checkbox/checkbox.vue2.js +12 -12
  98. package/es/components/checkbox/index.d.ts +19 -19
  99. package/es/components/checkbox/index.js +1 -1
  100. package/es/components/clamp/clamp.vue.d.ts +6 -6
  101. package/es/components/clamp/clamp.vue2.js +2 -2
  102. package/es/components/clamp/index.d.ts +10 -10
  103. package/es/components/clamp/index.js +1 -1
  104. package/es/components/clamp-toggle/clamp-toggle.vue2.js +17 -17
  105. package/es/components/clamp-toggle/index.js +1 -1
  106. package/es/components/col/col.vue.d.ts +12 -14
  107. package/es/components/col/col.vue2.js +21 -19
  108. package/es/components/col/index.d.ts +12 -12
  109. package/es/components/col/index.js +1 -1
  110. package/es/components/col/types.d.ts +4 -0
  111. package/es/components/collapse-transition/src/collapse-transition.vue2.js +8 -5
  112. package/es/components/color-picker/index.js +1 -1
  113. package/es/components/config-provider/config-provider.vue2.js +26 -26
  114. package/es/components/config-provider/index.js +1 -1
  115. package/es/components/container/aside.vue2.js +9 -9
  116. package/es/components/container/container.vue2.js +10 -10
  117. package/es/components/container/footer.vue2.js +5 -5
  118. package/es/components/container/header.vue2.js +15 -15
  119. package/es/components/container/index.js +1 -1
  120. package/es/components/container/main.vue2.js +7 -7
  121. package/es/components/context-menu/context-menu.vue2.js +25 -25
  122. package/es/components/date-picker/date-picker.d.ts +2 -2
  123. package/es/components/date-picker/index.d.ts +4 -4
  124. package/es/components/date-picker/props/basic-cell.js +2 -3
  125. package/es/components/date-picker/props/basic-date-table.js +2 -3
  126. package/es/components/date-picker/props/basic-month-table.js +2 -3
  127. package/es/components/date-picker/props/basic-year-table.js +4 -5
  128. package/es/components/date-picker/props/date-picker.js +2 -3
  129. package/es/components/date-picker/props/panel-date-pick.js +4 -5
  130. package/es/components/date-picker/props/panel-date-range.js +2 -3
  131. package/es/components/date-picker/props/panel-month-range.js +4 -5
  132. package/es/components/date-picker/props/shared.js +13 -14
  133. package/es/components/date-time-select/date-time-select.vue2.js +32 -32
  134. package/es/components/date-time-select/index.js +1 -1
  135. package/es/components/descriptions/description-item.vue2.js +12 -11
  136. package/es/components/descriptions/description.vue2.js +5 -5
  137. package/es/components/descriptions/descriptions-cell.js +5 -5
  138. package/es/components/descriptions/index.js +1 -1
  139. package/es/components/dialog/dialog.vue2.js +19 -19
  140. package/es/components/dialog/index.d.ts +1 -1
  141. package/es/components/dialog/index.js +1 -1
  142. package/es/components/divider/divider.vue.d.ts +5 -0
  143. package/es/components/divider/index.js +1 -1
  144. package/es/components/drawer/drawer.vue2.js +5 -5
  145. package/es/components/drawer/index.d.ts +1 -1
  146. package/es/components/drawer/index.js +1 -1
  147. package/es/components/dropdown/dropdown.vue.d.ts +18 -18
  148. package/es/components/dropdown/dropdown.vue2.js +23 -23
  149. package/es/components/dropdown/index.d.ts +30 -30
  150. package/es/components/dropdown/index.js +1 -1
  151. package/es/components/empty/empty.vue2.js +22 -22
  152. package/es/components/empty/index.js +1 -1
  153. package/es/components/exception/index.js +1 -1
  154. package/es/components/footer-layout/footer-layout.vue2.js +13 -13
  155. package/es/components/footer-layout/index.js +1 -1
  156. package/es/components/form/form-item.vue.d.ts +5 -4
  157. package/es/components/form/form-item.vue2.js +4 -5
  158. package/es/components/form/form.vue2.js +1 -1
  159. package/es/components/form/hooks/use-form-common-props.js +1 -1
  160. package/es/components/form/index.d.ts +12 -12
  161. package/es/components/form/index.js +1 -1
  162. package/es/components/full-screen/full-screen.vue2.js +15 -15
  163. package/es/components/full-screen/index.js +1 -1
  164. package/es/components/header-layout/header-layout.vue2.js +18 -18
  165. package/es/components/header-layout/index.js +1 -1
  166. package/es/components/horizontal-menu/horizontal-menu.vue2.js +46 -46
  167. package/es/components/horizontal-menu/index.js +1 -1
  168. package/es/components/icon/icon.vue2.js +12 -12
  169. package/es/components/icon/index.js +1 -1
  170. package/es/components/icon-text/icon-text.vue2.js +14 -14
  171. package/es/components/icon-text/index.js +1 -1
  172. package/es/components/iframe-layout/iframe-page.vue2.js +7 -7
  173. package/es/components/iframe-layout/index.js +1 -1
  174. package/es/components/image/index.d.ts +1 -1
  175. package/es/components/image/index.js +1 -1
  176. package/es/components/image-viewer/image-viewer.vue2.js +15 -15
  177. package/es/components/image-viewer/index.d.ts +2 -2
  178. package/es/components/image-viewer/index.js +1 -1
  179. package/es/components/input/index.d.ts +3 -3
  180. package/es/components/input/index.js +1 -1
  181. package/es/components/input/input.vue2.js +11 -12
  182. package/es/components/input-number/index.js +1 -1
  183. package/es/components/input-number/input-number.vue2.js +31 -31
  184. package/es/components/link/index.js +1 -1
  185. package/es/components/link/link.vue2.js +20 -20
  186. package/es/components/list-cell/index.js +1 -1
  187. package/es/components/list-cell/list-cell.vue2.js +14 -14
  188. package/es/components/logo/index.js +1 -1
  189. package/es/components/logo/logo.vue2.js +8 -8
  190. package/es/components/md-code-demo/index.js +1 -1
  191. package/es/components/md-code-tabs/index.js +1 -1
  192. package/es/components/md-comment/index.js +1 -1
  193. package/es/components/md-comment/md-comment.vue2.js +10 -10
  194. package/es/components/md-container/index.js +1 -1
  195. package/es/components/md-container/md-container.vue2.js +14 -14
  196. package/es/components/md-tabs/index.js +1 -1
  197. package/es/components/md-vue-playground/index.js +1 -1
  198. package/es/components/menu/index.js +1 -1
  199. package/es/components/menu/menu-item-group.vue2.js +14 -14
  200. package/es/components/menu/menu-item.vue2.js +21 -21
  201. package/es/components/menu/menu.vue2.js +21 -21
  202. package/es/components/menu/sub-menu.vue2.js +43 -43
  203. package/es/components/message/index.js +1 -1
  204. package/es/components/message/method.js +5 -5
  205. package/es/components/modal/index.js +1 -1
  206. package/es/components/modal/use/use-modal.d.ts +1 -1
  207. package/es/components/multiple-tabs/index.js +1 -1
  208. package/es/components/multiple-tabs/multiple-tabs.vue2.js +49 -49
  209. package/es/components/overlay/index.js +1 -1
  210. package/es/components/overlay/overlay.vue2.js +21 -21
  211. package/es/components/page-wrapper/index.js +1 -1
  212. package/es/components/page-wrapper/page-wrapper.vue2.js +17 -17
  213. package/es/components/pagination/components/sizes.vue2.js +3 -1
  214. package/es/components/pagination/index.js +1 -1
  215. package/es/components/pagination/pagination.vue2.js +22 -22
  216. package/es/components/popconfirm/index.d.ts +9 -9
  217. package/es/components/popconfirm/index.js +1 -1
  218. package/es/components/popconfirm/popconfirm.vue.d.ts +5 -5
  219. package/es/components/popover/index.d.ts +5 -5
  220. package/es/components/popover/index.js +1 -1
  221. package/es/components/popover/popover.vue.d.ts +2 -2
  222. package/es/components/popover/popover.vue2.js +7 -7
  223. package/es/components/popper/composables/use-content-dom.d.ts +1 -1
  224. package/es/components/popper/content.vue.d.ts +6 -6
  225. package/es/components/popper/index.js +1 -1
  226. package/es/components/progress/index.d.ts +4 -4
  227. package/es/components/progress/index.js +1 -1
  228. package/es/components/progress/progress.vue.d.ts +2 -2
  229. package/es/components/progress/progress.vue2.js +7 -7
  230. package/es/components/progress-i/index.js +1 -1
  231. package/es/components/qrcode/index.js +1 -1
  232. package/es/components/radio/index.d.ts +2 -2
  233. package/es/components/radio/index.js +1 -1
  234. package/es/components/radio/radio.vue2.js +14 -14
  235. package/es/components/result/index.js +1 -1
  236. package/es/components/result/result.vue2.js +10 -10
  237. package/es/components/router-view-content/index.js +1 -1
  238. package/es/components/row/index.d.ts +15 -37
  239. package/es/components/row/index.js +1 -1
  240. package/es/components/row/row.vue.d.ts +12 -21
  241. package/es/components/row/row.vue2.js +17 -18
  242. package/es/components/scrollbar/index.d.ts +1 -1
  243. package/es/components/scrollbar/index.js +1 -1
  244. package/es/components/scrollbar/scrollbar.vue2.js +23 -23
  245. package/es/components/search/index.d.ts +1 -1
  246. package/es/components/search/index.js +1 -1
  247. package/es/components/search/search.vue2.js +14 -14
  248. package/es/components/select/defaults.js +4 -5
  249. package/es/components/select/index.d.ts +16 -16
  250. package/es/components/select/select.vue.d.ts +8 -8
  251. package/es/components/select/useSelect.d.ts +6 -6
  252. package/es/components/select/useSelect.js +4 -4
  253. package/es/components/side-menu/index.js +1 -1
  254. package/es/components/skeleton/index.js +1 -1
  255. package/es/components/skeleton/skeleton.vue2.js +13 -13
  256. package/es/components/slider/index.js +1 -1
  257. package/es/components/slider/slider.vue2.js +1 -1
  258. package/es/components/space/index.js +1 -1
  259. package/es/components/space/item.js +1 -1
  260. package/es/components/space/space.js +11 -12
  261. package/es/components/super-form/index.d.ts +26 -60
  262. package/es/components/super-form/index.js +1 -1
  263. package/es/components/super-form/super-form-item.vue.d.ts +18 -22
  264. package/es/components/super-form/super-form-item.vue2.js +176 -175
  265. package/es/components/super-form/super-form.vue.d.ts +13 -33
  266. package/es/components/super-form/super-form.vue2.js +108 -116
  267. package/es/components/super-form/use/helper.d.ts +14 -0
  268. package/es/components/super-form/use/use-auto-focus.d.ts +1 -0
  269. package/es/components/super-form/use/use-form-context.d.ts +1 -1
  270. package/es/components/super-form/use/use-form-values.js +43 -47
  271. package/es/components/switch/index.js +1 -1
  272. package/es/components/switch/switch.vue2.js +53 -53
  273. package/es/components/table/index.d.ts +35 -35
  274. package/es/components/table/index.js +1 -1
  275. package/es/components/table/table.vue.d.ts +15 -15
  276. package/es/components/table/table.vue2.js +19 -19
  277. package/es/components/table/use/use-data-source.d.ts +5 -5
  278. package/es/components/tabs/index.js +1 -1
  279. package/es/components/tabs/tab-nav.vue2.js +30 -30
  280. package/es/components/tabs/tab-pane.vue2.js +11 -11
  281. package/es/components/tabs/tabs.vue2.js +6 -6
  282. package/es/components/tag/index.js +1 -1
  283. package/es/components/time-picker/common/picker.vue.d.ts +2 -2
  284. package/es/components/time-picker/common/props.js +2 -3
  285. package/es/components/time-picker/index.d.ts +4 -4
  286. package/es/components/time-picker/props/basic-time-spinner.js +2 -3
  287. package/es/components/time-picker/props/panel-time-picker.js +4 -5
  288. package/es/components/time-picker/props/panel-time-range.js +2 -3
  289. package/es/components/time-picker/props/shared.js +2 -3
  290. package/es/components/time-picker/time-picker.d.ts +2 -2
  291. package/es/components/time-select/time-select.js +2 -3
  292. package/es/components/time-select/time-select.vue.d.ts +1 -1
  293. package/es/components/tooltip/content.vue.d.ts +6 -6
  294. package/es/components/tooltip/index.d.ts +7 -7
  295. package/es/components/tooltip/index.js +1 -1
  296. package/es/components/tooltip/tooltip.vue.d.ts +2 -2
  297. package/es/components/upload/index.d.ts +15 -15
  298. package/es/components/upload/index.js +1 -1
  299. package/es/components/upload/upload-content.vue.d.ts +9 -9
  300. package/es/components/upload/upload.vue.d.ts +9 -9
  301. package/es/components/verify-code/index.js +1 -1
  302. package/es/components/virtual-list/components/scrollbar.js +9 -9
  303. package/es/components/virtual-list/hooks/use-grid-wheel.js +1 -1
  304. package/es/components/virtual-list/hooks/use-wheel.js +1 -1
  305. package/es/components/virtual-list/props.js +6 -7
  306. package/es/hooks/index.d.ts +0 -2
  307. package/es/hooks/index.js +46 -50
  308. package/es/hooks/use-ordered-children/index.js +5 -5
  309. package/es/index.js +286 -292
  310. package/es/package.json.d.ts +1 -1
  311. package/es/package.json.js +1 -1
  312. package/es/utils/index.d.ts +0 -1
  313. package/es/utils/index.js +36 -38
  314. package/es/utils/vue/props/runtime.js +19 -20
  315. package/lib/app-components/base/style/index.d.ts +0 -0
  316. package/lib/app-components/button/button-custom.d.ts +5 -0
  317. package/lib/app-components/button/constants.d.ts +3 -0
  318. package/lib/app-components/button/index.d.ts +5 -0
  319. package/lib/app-components/button/style/index.d.ts +0 -0
  320. package/lib/app-components/button/types.d.ts +9 -0
  321. package/lib/app-components/button/use-button.d.ts +20 -0
  322. package/lib/app-components/clamp/index.d.ts +2 -0
  323. package/lib/app-components/clamp/style/index.d.ts +0 -0
  324. package/lib/app-components/col/index.d.ts +4 -0
  325. package/lib/app-components/col/style/index.d.ts +0 -0
  326. package/lib/app-components/col/types.d.ts +11 -0
  327. package/lib/app-components/form/constants.d.ts +4 -0
  328. package/lib/app-components/form/form-label-wrap.d.ts +11 -0
  329. package/lib/app-components/form/hooks/index.d.ts +2 -0
  330. package/lib/app-components/form/hooks/use-form-common-props.d.ts +7 -0
  331. package/lib/app-components/form/hooks/use-form-item.d.ts +18 -0
  332. package/lib/app-components/form/index.d.ts +5 -0
  333. package/lib/app-components/form/style/index.d.ts +0 -0
  334. package/lib/app-components/form/types.d.ts +43 -0
  335. package/lib/app-components/form/utils.d.ts +9 -0
  336. package/lib/app-components/hooks/index.d.ts +2 -0
  337. package/lib/app-components/hooks/use-id.d.ts +9 -0
  338. package/lib/app-components/hooks/use-namespace.d.ts +22 -0
  339. package/lib/app-components/icon/index.d.ts +3 -0
  340. package/lib/app-components/icon/style/index.d.ts +0 -0
  341. package/lib/app-components/image/index.d.ts +3 -0
  342. package/lib/app-components/image/style/index.d.ts +0 -0
  343. package/lib/app-components/image/types.d.ts +13 -0
  344. package/lib/app-components/index.d.ts +11 -0
  345. package/lib/app-components/input/index.d.ts +3 -0
  346. package/lib/app-components/input/style/index.d.ts +0 -0
  347. package/lib/app-components/input/utils.d.ts +6 -0
  348. package/lib/app-components/overlay/index.d.ts +2 -0
  349. package/lib/app-components/overlay/style/index.d.ts +0 -0
  350. package/lib/app-components/popup/index.d.ts +3 -0
  351. package/lib/app-components/popup/style/index.d.ts +0 -0
  352. package/lib/app-components/popup/types.d.ts +1 -0
  353. package/lib/app-components/row/constants.d.ts +6 -0
  354. package/lib/app-components/row/index.d.ts +5 -0
  355. package/lib/app-components/row/style/index.d.ts +0 -0
  356. package/lib/app-components/row/types.d.ts +2 -0
  357. package/lib/app-components/super-form/component-map.d.ts +14 -0
  358. package/lib/app-components/super-form/index.d.ts +5 -0
  359. package/lib/app-components/super-form/style/index.d.ts +0 -0
  360. package/lib/{components → app-components}/super-form/types.d.ts +67 -27
  361. package/lib/app-components/super-form/use/helper.d.ts +17 -0
  362. package/lib/app-components/super-form/use/use-auto-focus.d.ts +11 -0
  363. package/lib/app-components/super-form/use/use-form-context.d.ts +8 -0
  364. package/{es/components → lib/app-components}/super-form/use/use-form-events.d.ts +1 -0
  365. package/{es/components → lib/app-components}/super-form/use/use-form-values.d.ts +2 -1
  366. package/lib/app-components/super-form/use/use-form.d.ts +9 -0
  367. package/lib/app-components/types.d.ts +6 -0
  368. package/lib/app-components/upload/index.d.ts +3 -0
  369. package/lib/app-components/upload/style/index.d.ts +0 -0
  370. package/lib/app-components/upload/types.d.ts +33 -0
  371. package/lib/app-components/upload/utils.d.ts +26 -0
  372. package/lib/app-components/utils/index.d.ts +1 -0
  373. package/lib/app-components/utils/interceptor.d.ts +6 -0
  374. package/lib/components/affix/affix.cjs +1 -1
  375. package/lib/components/affix/index.cjs +1 -1
  376. package/lib/components/alert/alert.vue2.cjs +1 -1
  377. package/lib/components/alert/index.cjs +1 -1
  378. package/lib/components/autocomplete/autocomplete.vue.d.ts +6 -6
  379. package/lib/components/autocomplete/autocomplete.vue2.cjs +1 -1
  380. package/lib/components/autocomplete/index.cjs +1 -1
  381. package/lib/components/autocomplete/index.d.ts +20 -20
  382. package/lib/components/avatar/index.cjs +1 -1
  383. package/lib/components/backtop/backtop.vue2.cjs +1 -1
  384. package/lib/components/backtop/index.cjs +1 -1
  385. package/lib/components/button/button-custom.d.ts +1 -0
  386. package/lib/components/button/button-group.vue.d.ts +4 -10
  387. package/lib/components/button/button-group.vue2.cjs +1 -1
  388. package/lib/components/button/button.vue.d.ts +51 -13
  389. package/lib/components/button/button.vue2.cjs +1 -1
  390. package/lib/components/button/constants.d.ts +2 -6
  391. package/lib/components/button/index.cjs +1 -1
  392. package/lib/components/button/index.d.ts +52 -20
  393. package/lib/components/button/mobile.cjs +1 -0
  394. package/lib/components/button/mobile.d.ts +6 -0
  395. package/lib/components/button/types.d.ts +5 -0
  396. package/lib/components/button/use-button.cjs +1 -1
  397. package/lib/components/button/use-button.d.ts +1 -2
  398. package/lib/components/card/card.vue.d.ts +2 -2
  399. package/lib/components/card/card.vue2.cjs +1 -1
  400. package/lib/components/card/index.cjs +1 -1
  401. package/lib/components/card/index.d.ts +4 -4
  402. package/lib/components/carousel/carousel.vue.d.ts +12 -12
  403. package/lib/components/carousel/carousel.vue2.cjs +1 -1
  404. package/lib/components/carousel/index.cjs +1 -1
  405. package/lib/components/carousel/index.d.ts +21 -21
  406. package/lib/components/check-tag/check-tag.vue2.cjs +1 -1
  407. package/lib/components/check-tag/index.cjs +1 -1
  408. package/lib/components/checkbox/checkbox.vue.d.ts +8 -8
  409. package/lib/components/checkbox/checkbox.vue2.cjs +1 -1
  410. package/lib/components/checkbox/index.cjs +1 -1
  411. package/lib/components/checkbox/index.d.ts +19 -19
  412. package/lib/components/clamp/clamp.vue.d.ts +6 -6
  413. package/lib/components/clamp/clamp.vue2.cjs +1 -1
  414. package/lib/components/clamp/index.cjs +1 -1
  415. package/lib/components/clamp/index.d.ts +10 -10
  416. package/lib/components/clamp-toggle/clamp-toggle.vue2.cjs +1 -1
  417. package/lib/components/clamp-toggle/index.cjs +1 -1
  418. package/lib/components/col/col.vue.d.ts +12 -14
  419. package/lib/components/col/col.vue2.cjs +1 -1
  420. package/lib/components/col/index.cjs +1 -1
  421. package/lib/components/col/index.d.ts +12 -12
  422. package/lib/components/col/types.d.ts +4 -0
  423. package/lib/components/collapse-transition/src/collapse-transition.vue2.cjs +1 -1
  424. package/lib/components/color-picker/index.cjs +1 -1
  425. package/lib/components/config-provider/config-provider.vue2.cjs +1 -1
  426. package/lib/components/config-provider/index.cjs +1 -1
  427. package/lib/components/container/aside.vue2.cjs +1 -1
  428. package/lib/components/container/container.vue2.cjs +1 -1
  429. package/lib/components/container/footer.vue2.cjs +1 -1
  430. package/lib/components/container/header.vue2.cjs +1 -1
  431. package/lib/components/container/index.cjs +1 -1
  432. package/lib/components/container/main.vue2.cjs +1 -1
  433. package/lib/components/context-menu/context-menu.vue2.cjs +1 -1
  434. package/lib/components/date-picker/date-picker.d.ts +2 -2
  435. package/lib/components/date-picker/index.d.ts +4 -4
  436. package/lib/components/date-picker/props/basic-cell.cjs +1 -1
  437. package/lib/components/date-picker/props/basic-date-table.cjs +1 -1
  438. package/lib/components/date-picker/props/basic-month-table.cjs +1 -1
  439. package/lib/components/date-picker/props/basic-year-table.cjs +1 -1
  440. package/lib/components/date-picker/props/date-picker.cjs +1 -1
  441. package/lib/components/date-picker/props/panel-date-pick.cjs +1 -1
  442. package/lib/components/date-picker/props/panel-date-range.cjs +1 -1
  443. package/lib/components/date-picker/props/panel-month-range.cjs +1 -1
  444. package/lib/components/date-picker/props/shared.cjs +1 -1
  445. package/lib/components/date-time-select/date-time-select.vue2.cjs +1 -1
  446. package/lib/components/date-time-select/index.cjs +1 -1
  447. package/lib/components/descriptions/description-item.vue2.cjs +1 -1
  448. package/lib/components/descriptions/description.vue2.cjs +1 -1
  449. package/lib/components/descriptions/descriptions-cell.cjs +1 -1
  450. package/lib/components/descriptions/index.cjs +1 -1
  451. package/lib/components/dialog/dialog.vue2.cjs +1 -1
  452. package/lib/components/dialog/index.cjs +1 -1
  453. package/lib/components/dialog/index.d.ts +1 -1
  454. package/lib/components/divider/divider.vue.d.ts +5 -0
  455. package/lib/components/divider/index.cjs +1 -1
  456. package/lib/components/drawer/drawer.vue2.cjs +1 -1
  457. package/lib/components/drawer/index.cjs +1 -1
  458. package/lib/components/drawer/index.d.ts +1 -1
  459. package/lib/components/dropdown/dropdown.vue.d.ts +18 -18
  460. package/lib/components/dropdown/dropdown.vue2.cjs +1 -1
  461. package/lib/components/dropdown/index.cjs +1 -1
  462. package/lib/components/dropdown/index.d.ts +30 -30
  463. package/lib/components/empty/empty.vue2.cjs +1 -1
  464. package/lib/components/empty/index.cjs +1 -1
  465. package/lib/components/exception/index.cjs +1 -1
  466. package/lib/components/footer-layout/footer-layout.vue2.cjs +1 -1
  467. package/lib/components/footer-layout/index.cjs +1 -1
  468. package/lib/components/form/form-item.vue.d.ts +5 -4
  469. package/lib/components/form/form-item.vue2.cjs +1 -1
  470. package/lib/components/form/form.vue2.cjs +1 -1
  471. package/lib/components/form/hooks/use-form-common-props.cjs +1 -1
  472. package/lib/components/form/index.cjs +1 -1
  473. package/lib/components/form/index.d.ts +12 -12
  474. package/lib/components/full-screen/full-screen.vue2.cjs +1 -1
  475. package/lib/components/full-screen/index.cjs +1 -1
  476. package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
  477. package/lib/components/header-layout/index.cjs +1 -1
  478. package/lib/components/horizontal-menu/horizontal-menu.vue2.cjs +1 -1
  479. package/lib/components/horizontal-menu/index.cjs +1 -1
  480. package/lib/components/icon/icon.vue2.cjs +1 -1
  481. package/lib/components/icon/index.cjs +1 -1
  482. package/lib/components/icon-text/icon-text.vue2.cjs +1 -1
  483. package/lib/components/icon-text/index.cjs +1 -1
  484. package/lib/components/iframe-layout/iframe-page.vue2.cjs +1 -1
  485. package/lib/components/iframe-layout/index.cjs +1 -1
  486. package/lib/components/image/index.cjs +1 -1
  487. package/lib/components/image/index.d.ts +1 -1
  488. package/lib/components/image-viewer/image-viewer.vue2.cjs +1 -1
  489. package/lib/components/image-viewer/index.cjs +1 -1
  490. package/lib/components/image-viewer/index.d.ts +2 -2
  491. package/lib/components/input/index.cjs +1 -1
  492. package/lib/components/input/index.d.ts +3 -3
  493. package/lib/components/input/input.vue2.cjs +1 -1
  494. package/lib/components/input-number/index.cjs +1 -1
  495. package/lib/components/input-number/input-number.vue2.cjs +1 -1
  496. package/lib/components/link/index.cjs +1 -1
  497. package/lib/components/link/link.vue2.cjs +1 -1
  498. package/lib/components/list-cell/index.cjs +1 -1
  499. package/lib/components/list-cell/list-cell.vue2.cjs +1 -1
  500. package/lib/components/logo/index.cjs +1 -1
  501. package/lib/components/logo/logo.vue2.cjs +1 -1
  502. package/lib/components/md-code-demo/index.cjs +1 -1
  503. package/lib/components/md-code-tabs/index.cjs +1 -1
  504. package/lib/components/md-comment/index.cjs +1 -1
  505. package/lib/components/md-comment/md-comment.vue2.cjs +1 -1
  506. package/lib/components/md-container/index.cjs +1 -1
  507. package/lib/components/md-container/md-container.vue2.cjs +1 -1
  508. package/lib/components/md-tabs/index.cjs +1 -1
  509. package/lib/components/md-vue-playground/index.cjs +1 -1
  510. package/lib/components/menu/index.cjs +1 -1
  511. package/lib/components/menu/menu-item-group.vue2.cjs +1 -1
  512. package/lib/components/menu/menu-item.vue2.cjs +1 -1
  513. package/lib/components/menu/menu.vue2.cjs +1 -1
  514. package/lib/components/menu/sub-menu.vue2.cjs +1 -1
  515. package/lib/components/message/index.cjs +1 -1
  516. package/lib/components/message/method.cjs +1 -1
  517. package/lib/components/modal/index.cjs +1 -1
  518. package/lib/components/modal/use/use-modal.d.ts +1 -1
  519. package/lib/components/multiple-tabs/index.cjs +1 -1
  520. package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
  521. package/lib/components/overlay/index.cjs +1 -1
  522. package/lib/components/overlay/overlay.vue2.cjs +1 -1
  523. package/lib/components/page-wrapper/index.cjs +1 -1
  524. package/lib/components/page-wrapper/page-wrapper.vue2.cjs +1 -1
  525. package/lib/components/pagination/index.cjs +1 -1
  526. package/lib/components/pagination/pagination.vue2.cjs +1 -1
  527. package/lib/components/popconfirm/index.cjs +1 -1
  528. package/lib/components/popconfirm/index.d.ts +9 -9
  529. package/lib/components/popconfirm/popconfirm.vue.d.ts +5 -5
  530. package/lib/components/popover/index.cjs +1 -1
  531. package/lib/components/popover/index.d.ts +5 -5
  532. package/lib/components/popover/popover.vue.d.ts +2 -2
  533. package/lib/components/popover/popover.vue2.cjs +1 -1
  534. package/lib/components/popper/composables/use-content-dom.d.ts +1 -1
  535. package/lib/components/popper/content.vue.d.ts +6 -6
  536. package/lib/components/popper/index.cjs +1 -1
  537. package/lib/components/progress/index.cjs +1 -1
  538. package/lib/components/progress/index.d.ts +4 -4
  539. package/lib/components/progress/progress.vue.d.ts +2 -2
  540. package/lib/components/progress/progress.vue2.cjs +1 -1
  541. package/lib/components/progress-i/index.cjs +1 -1
  542. package/lib/components/qrcode/index.cjs +1 -1
  543. package/lib/components/radio/index.cjs +1 -1
  544. package/lib/components/radio/index.d.ts +2 -2
  545. package/lib/components/radio/radio.vue2.cjs +1 -1
  546. package/lib/components/result/index.cjs +1 -1
  547. package/lib/components/result/result.vue2.cjs +1 -1
  548. package/lib/components/router-view-content/index.cjs +1 -1
  549. package/lib/components/row/index.cjs +1 -1
  550. package/lib/components/row/index.d.ts +15 -37
  551. package/lib/components/row/row.vue.d.ts +12 -21
  552. package/lib/components/row/row.vue2.cjs +1 -1
  553. package/lib/components/scrollbar/index.cjs +1 -1
  554. package/lib/components/scrollbar/index.d.ts +1 -1
  555. package/lib/components/scrollbar/scrollbar.vue2.cjs +1 -1
  556. package/lib/components/search/index.cjs +1 -1
  557. package/lib/components/search/index.d.ts +1 -1
  558. package/lib/components/search/search.vue2.cjs +1 -1
  559. package/lib/components/select/defaults.cjs +1 -1
  560. package/lib/components/select/index.d.ts +16 -16
  561. package/lib/components/select/select.vue.d.ts +8 -8
  562. package/lib/components/select/useSelect.cjs +1 -1
  563. package/lib/components/select/useSelect.d.ts +6 -6
  564. package/lib/components/side-menu/index.cjs +1 -1
  565. package/lib/components/skeleton/index.cjs +1 -1
  566. package/lib/components/skeleton/skeleton.vue2.cjs +1 -1
  567. package/lib/components/slider/index.cjs +1 -1
  568. package/lib/components/slider/slider.vue2.cjs +1 -1
  569. package/lib/components/space/index.cjs +1 -1
  570. package/lib/components/space/item.cjs +1 -1
  571. package/lib/components/space/space.cjs +1 -1
  572. package/lib/components/super-form/index.cjs +1 -1
  573. package/lib/components/super-form/index.d.ts +26 -60
  574. package/lib/components/super-form/super-form-item.vue.d.ts +18 -22
  575. package/lib/components/super-form/super-form-item.vue2.cjs +1 -1
  576. package/lib/components/super-form/super-form.vue.d.ts +13 -33
  577. package/lib/components/super-form/super-form.vue2.cjs +1 -1
  578. package/lib/components/super-form/use/helper.d.ts +14 -0
  579. package/lib/components/super-form/use/use-auto-focus.d.ts +1 -0
  580. package/lib/components/super-form/use/use-form-context.d.ts +1 -1
  581. package/lib/components/super-form/use/use-form-values.cjs +1 -1
  582. package/lib/components/switch/index.cjs +1 -1
  583. package/lib/components/switch/switch.vue2.cjs +1 -1
  584. package/lib/components/table/index.cjs +1 -1
  585. package/lib/components/table/index.d.ts +35 -35
  586. package/lib/components/table/table.vue.d.ts +15 -15
  587. package/lib/components/table/table.vue2.cjs +1 -1
  588. package/lib/components/table/use/use-data-source.d.ts +5 -5
  589. package/lib/components/tabs/index.cjs +1 -1
  590. package/lib/components/tabs/tab-nav.vue2.cjs +1 -1
  591. package/lib/components/tabs/tab-pane.vue2.cjs +1 -1
  592. package/lib/components/tabs/tabs.vue2.cjs +1 -1
  593. package/lib/components/tag/index.cjs +1 -1
  594. package/lib/components/time-picker/common/picker.vue.d.ts +2 -2
  595. package/lib/components/time-picker/common/props.cjs +1 -1
  596. package/lib/components/time-picker/index.d.ts +4 -4
  597. package/lib/components/time-picker/props/basic-time-spinner.cjs +1 -1
  598. package/lib/components/time-picker/props/panel-time-picker.cjs +1 -1
  599. package/lib/components/time-picker/props/panel-time-range.cjs +1 -1
  600. package/lib/components/time-picker/props/shared.cjs +1 -1
  601. package/lib/components/time-picker/time-picker.d.ts +2 -2
  602. package/lib/components/time-select/time-select.cjs +1 -1
  603. package/lib/components/time-select/time-select.vue.d.ts +1 -1
  604. package/lib/components/tooltip/content.vue.d.ts +6 -6
  605. package/lib/components/tooltip/index.cjs +1 -1
  606. package/lib/components/tooltip/index.d.ts +7 -7
  607. package/lib/components/tooltip/tooltip.vue.d.ts +2 -2
  608. package/lib/components/upload/index.cjs +1 -1
  609. package/lib/components/upload/index.d.ts +15 -15
  610. package/lib/components/upload/upload-content.vue.d.ts +9 -9
  611. package/lib/components/upload/upload.vue.d.ts +9 -9
  612. package/lib/components/verify-code/index.cjs +1 -1
  613. package/lib/components/virtual-list/components/scrollbar.cjs +1 -1
  614. package/lib/components/virtual-list/hooks/use-grid-wheel.cjs +1 -1
  615. package/lib/components/virtual-list/hooks/use-wheel.cjs +1 -1
  616. package/lib/components/virtual-list/props.cjs +1 -1
  617. package/lib/hooks/index.cjs +1 -1
  618. package/lib/hooks/index.d.ts +0 -2
  619. package/lib/hooks/use-ordered-children/index.cjs +1 -1
  620. package/lib/index.cjs +1 -1
  621. package/lib/package.json.cjs +1 -1
  622. package/lib/package.json.d.ts +1 -1
  623. package/lib/utils/index.cjs +1 -1
  624. package/lib/utils/index.d.ts +0 -1
  625. package/lib/utils/vue/props/runtime.cjs +1 -1
  626. package/package.json +7 -7
  627. package/theme-style/base.css +1 -1
  628. package/theme-style/dark/css-vars.css +1 -1
  629. package/theme-style/index.css +1 -1
  630. package/theme-style/src/alert.scss +35 -35
  631. package/theme-style/src/avatar.scss +15 -16
  632. package/theme-style/src/backtop.scss +6 -5
  633. package/theme-style/src/button.scss +90 -90
  634. package/theme-style/src/col.scss +0 -1
  635. package/theme-style/src/color-picker.scss +45 -45
  636. package/theme-style/src/common/transition.scss +23 -30
  637. package/theme-style/src/common/var.scss +1137 -1196
  638. package/theme-style/src/dark/css-vars.scss +3 -4
  639. package/theme-style/src/dark/var.scss +56 -60
  640. package/theme-style/src/date-picker/date-picker.scss +29 -26
  641. package/theme-style/src/date-picker/time-spinner.scss +16 -12
  642. package/theme-style/src/date-picker.scss +0 -1
  643. package/theme-style/src/descriptions-item.scss +22 -19
  644. package/theme-style/src/descriptions.scss +35 -41
  645. package/theme-style/src/dialog.scss +16 -11
  646. package/theme-style/src/empty.scss +9 -10
  647. package/theme-style/src/form.scss +42 -39
  648. package/theme-style/src/full-screen.scss +2 -2
  649. package/theme-style/src/header-layout.scss +2 -1
  650. package/theme-style/src/horizontal-menu.scss +11 -11
  651. package/theme-style/src/icon-text.scss +5 -5
  652. package/theme-style/src/icon.scss +1 -1
  653. package/theme-style/src/image-viewer.scss +21 -12
  654. package/theme-style/src/input-number.scss +56 -57
  655. package/theme-style/src/input.scss +156 -145
  656. package/theme-style/src/link.scss +36 -37
  657. package/theme-style/src/list-cell.scss +8 -9
  658. package/theme-style/src/loading.scss +6 -2
  659. package/theme-style/src/logo.scss +0 -3
  660. package/theme-style/src/md/api.scss +2 -1
  661. package/theme-style/src/md/blockquote.scss +3 -3
  662. package/theme-style/src/md/code.scss +13 -15
  663. package/theme-style/src/md/demo-block.scss +6 -3
  664. package/theme-style/src/md/helper.scss +1 -1
  665. package/theme-style/src/md/link.scss +11 -7
  666. package/theme-style/src/md/one-light.scss +3 -3
  667. package/theme-style/src/md/pswp.scss +13 -16
  668. package/theme-style/src/md/svg.scss +10 -1
  669. package/theme-style/src/md/table.scss +0 -1
  670. package/theme-style/src/md/tasklist.scss +10 -21
  671. package/theme-style/src/md/title.scss +2 -1
  672. package/theme-style/src/md/toc.scss +10 -17
  673. package/theme-style/src/md-code-demo.scss +11 -37
  674. package/theme-style/src/md-code-tabs.scss +10 -18
  675. package/theme-style/src/md-comment.scss +384 -333
  676. package/theme-style/src/md-container.scss +66 -56
  677. package/theme-style/src/md-tabs.scss +9 -22
  678. package/theme-style/src/md-vue-playground.scss +234 -128
  679. package/theme-style/src/menu.scss +72 -56
  680. package/theme-style/src/message.scss +52 -37
  681. package/theme-style/src/mixins/_var.scss +18 -7
  682. package/theme-style/src/mixins/function.scss +5 -1
  683. package/theme-style/src/mixins/icon.scss +9 -9
  684. package/theme-style/src/mixins/mixins.scss +57 -21
  685. package/theme-style/src/multiple-tabs.scss +13 -7
  686. package/theme-style/src/pagination.scss +53 -48
  687. package/theme-style/src/popconfirm.scss +3 -1
  688. package/theme-style/src/progress.scss +20 -6
  689. package/theme-style/src/select.scss +75 -72
  690. package/theme-style/src/side-menu.scss +13 -10
  691. package/theme-style/src/skeleton-item.scss +3 -4
  692. package/theme-style/src/super-form.scss +2 -1
  693. package/theme-style/src/switch.scss +59 -63
  694. package/theme-style/src/table.scss +55 -40
  695. package/theme-style/src/tabs.scss +68 -47
  696. package/theme-style/src/tree.scss +15 -10
  697. package/theme-style/src/upload.scss +79 -82
  698. package/theme-style/src/var.scss +8 -5
  699. package/theme-style/vft-alert.css +1 -1
  700. package/theme-style/vft-autocomplete.css +1 -1
  701. package/theme-style/vft-avatar.css +1 -1
  702. package/theme-style/vft-backtop.css +1 -1
  703. package/theme-style/vft-button.css +1 -1
  704. package/theme-style/vft-cascader.css +1 -1
  705. package/theme-style/vft-clamp-toggle.css +1 -1
  706. package/theme-style/vft-collapse.css +1 -1
  707. package/theme-style/vft-color-picker.css +1 -1
  708. package/theme-style/vft-date-picker.css +1 -1
  709. package/theme-style/vft-date-time-select.css +1 -1
  710. package/theme-style/vft-descriptions-item.css +1 -1
  711. package/theme-style/vft-descriptions.css +1 -1
  712. package/theme-style/vft-dialog.css +1 -1
  713. package/theme-style/vft-drawer.css +1 -1
  714. package/theme-style/vft-dropdown.css +1 -1
  715. package/theme-style/vft-empty.css +1 -1
  716. package/theme-style/vft-form.css +1 -1
  717. package/theme-style/vft-full-screen.css +1 -1
  718. package/theme-style/vft-horizontal-menu.css +1 -1
  719. package/theme-style/vft-icon-text.css +1 -1
  720. package/theme-style/vft-image-viewer.css +1 -1
  721. package/theme-style/vft-input-number.css +1 -1
  722. package/theme-style/vft-input.css +1 -1
  723. package/theme-style/vft-link.css +1 -1
  724. package/theme-style/vft-list-cell.css +1 -1
  725. package/theme-style/vft-loading.css +1 -1
  726. package/theme-style/vft-logo.css +1 -1
  727. package/theme-style/vft-md-code-tabs.css +1 -1
  728. package/theme-style/vft-md-comment.css +1 -1
  729. package/theme-style/vft-md-container.css +1 -1
  730. package/theme-style/vft-md-tabs.css +1 -1
  731. package/theme-style/vft-md-vue-playground.css +1 -1
  732. package/theme-style/vft-menu.css +1 -1
  733. package/theme-style/vft-message.css +1 -1
  734. package/theme-style/vft-multiple-tabs.css +1 -1
  735. package/theme-style/vft-pagination.css +1 -1
  736. package/theme-style/vft-popconfirm.css +1 -1
  737. package/theme-style/vft-progress.css +1 -1
  738. package/theme-style/vft-select.css +1 -1
  739. package/theme-style/vft-side-menu.css +1 -1
  740. package/theme-style/vft-skeleton-item.css +1 -1
  741. package/theme-style/vft-switch.css +1 -1
  742. package/theme-style/vft-table.css +1 -1
  743. package/theme-style/vft-tabs.css +1 -1
  744. package/theme-style/vft-tag.css +1 -1
  745. package/theme-style/vft-time-picker.css +1 -1
  746. package/theme-style/vft-time-select.css +1 -1
  747. package/theme-style/vft-transfer.css +1 -1
  748. package/theme-style/vft-tree.css +1 -1
  749. package/theme-style/vft-upload.css +1 -1
  750. package/theme-style/vft-var.css +1 -1
  751. package/web-types.json +1 -1
  752. package/es/components/button/instance.d.ts +0 -4
  753. package/es/components/button/instance.js +0 -1
  754. package/es/components/button/mobile/button.vue.d.ts +0 -2
  755. package/es/components/button/mobile/button.vue.js +0 -10
  756. package/es/components/context-menu/types.d.ts +0 -23
  757. package/es/components/dropdown/types.d.ts +0 -251
  758. package/es/components/popover/types.d.ts +0 -26
  759. package/es/components/popper/types.d.ts +0 -45
  760. package/es/components/qrcode/types.d.ts +0 -31
  761. package/es/components/table/types.d.ts +0 -55
  762. package/es/components/tooltip/types.d.ts +0 -53
  763. package/es/hooks/use-cursor/index.d.ts +0 -2
  764. package/es/hooks/use-cursor/index.js +0 -40
  765. package/es/hooks/use-prop/index.d.ts +0 -2
  766. package/es/hooks/use-prop/index.js +0 -11
  767. package/es/utils/ns-cover.d.ts +0 -16
  768. package/es/utils/objects.d.ts +0 -4
  769. package/es/utils/objects.js +0 -12
  770. package/lib/components/button/instance.cjs +0 -1
  771. package/lib/components/button/instance.d.ts +0 -4
  772. package/lib/components/button/mobile/button.vue.cjs +0 -1
  773. package/lib/components/button/mobile/button.vue.d.ts +0 -2
  774. package/lib/components/context-menu/types.d.ts +0 -23
  775. package/lib/components/dropdown/types.d.ts +0 -251
  776. package/lib/components/popover/types.d.ts +0 -26
  777. package/lib/components/popper/types.d.ts +0 -45
  778. package/lib/components/qrcode/types.d.ts +0 -31
  779. package/lib/components/table/types.d.ts +0 -55
  780. package/lib/components/tooltip/types.d.ts +0 -53
  781. package/lib/hooks/use-cursor/index.cjs +0 -1
  782. package/lib/hooks/use-cursor/index.d.ts +0 -2
  783. package/lib/hooks/use-prop/index.cjs +0 -1
  784. package/lib/hooks/use-prop/index.d.ts +0 -2
  785. package/lib/utils/ns-cover.d.ts +0 -16
  786. package/lib/utils/objects.cjs +0 -1
  787. package/lib/utils/objects.d.ts +0 -4
@@ -1 +1 @@
1
- :root{--vft-full-screen-color:var(--vft-text-primary-color);--vft-full-screen-hover-color:var(--vft-primary-color);--vft-full-screen-font-size:12px}.vft-full-screen{color:var(--vft-full-screen-color);font-size:var(--vft-full-screen-font-size);transition:var(--vft-transition-color);display:flex;align-items:center}.vft-full-screen .vft-icon{margin-right:2px}.vft-full-screen:hover{color:var(--vft-full-screen-hover-color)}.vft-full-screen .icon-full-screen{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="15" height="15" viewBox="0 0 15 15"%3E%3Cpath fill="currentColor" fill-rule="evenodd" d="M2 2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H3v2.5a.5.5 0 0 1-1 0v-3Zm7 0a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0V3H9.5a.5.5 0 0 1-.5-.5ZM2.5 9a.5.5 0 0 1 .5.5V12h2.5a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5Zm10 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1H12V9.5a.5.5 0 0 1 .5-.5Z" clip-rule="evenodd"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="15" height="15" viewBox="0 0 15 15"%3E%3Cpath fill="currentColor" fill-rule="evenodd" d="M2 2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H3v2.5a.5.5 0 0 1-1 0v-3Zm7 0a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0V3H9.5a.5.5 0 0 1-.5-.5ZM2.5 9a.5.5 0 0 1 .5.5V12h2.5a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5Zm10 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1H12V9.5a.5.5 0 0 1 .5-.5Z" clip-rule="evenodd"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-full-screen .icon-exit-full-screen{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="15" height="15" viewBox="0 0 15 15"%3E%3Cpath fill="currentColor" fill-rule="evenodd" d="M5.5 2a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1H5V2.5a.5.5 0 0 1 .5-.5Zm4 0a.5.5 0 0 1 .5.5V5h2.5a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5ZM2 9.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0V10H2.5a.5.5 0 0 1-.5-.5Zm7 0a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H10v2.5a.5.5 0 0 1-1 0v-3Z" clip-rule="evenodd"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="15" height="15" viewBox="0 0 15 15"%3E%3Cpath fill="currentColor" fill-rule="evenodd" d="M5.5 2a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1H5V2.5a.5.5 0 0 1 .5-.5Zm4 0a.5.5 0 0 1 .5.5V5h2.5a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5ZM2 9.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0V10H2.5a.5.5 0 0 1-.5-.5Zm7 0a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H10v2.5a.5.5 0 0 1-1 0v-3Z" clip-rule="evenodd"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}
1
+ :root{--vft-full-screen-color:var(--vft-text-primary-color);--vft-full-screen-hover-color:#2196f3;--vft-full-screen-font-size:12px}.vft-full-screen{color:var(--vft-full-screen-color);font-size:var(--vft-full-screen-font-size);transition:var(--vft-transition-color);display:flex;align-items:center}.vft-full-screen .vft-icon{margin-right:2px}.vft-full-screen:hover{color:var(--vft-full-screen-hover-color)}.vft-full-screen .icon-full-screen{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="15" height="15" viewBox="0 0 15 15"%3E%3Cpath fill="currentColor" fill-rule="evenodd" d="M2 2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H3v2.5a.5.5 0 0 1-1 0v-3Zm7 0a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0V3H9.5a.5.5 0 0 1-.5-.5ZM2.5 9a.5.5 0 0 1 .5.5V12h2.5a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5Zm10 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1H12V9.5a.5.5 0 0 1 .5-.5Z" clip-rule="evenodd"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="15" height="15" viewBox="0 0 15 15"%3E%3Cpath fill="currentColor" fill-rule="evenodd" d="M2 2.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H3v2.5a.5.5 0 0 1-1 0v-3Zm7 0a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0V3H9.5a.5.5 0 0 1-.5-.5ZM2.5 9a.5.5 0 0 1 .5.5V12h2.5a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5Zm10 0a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1H12V9.5a.5.5 0 0 1 .5-.5Z" clip-rule="evenodd"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-full-screen .icon-exit-full-screen{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="15" height="15" viewBox="0 0 15 15"%3E%3Cpath fill="currentColor" fill-rule="evenodd" d="M5.5 2a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1H5V2.5a.5.5 0 0 1 .5-.5Zm4 0a.5.5 0 0 1 .5.5V5h2.5a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5ZM2 9.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0V10H2.5a.5.5 0 0 1-.5-.5Zm7 0a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H10v2.5a.5.5 0 0 1-1 0v-3Z" clip-rule="evenodd"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="15" height="15" viewBox="0 0 15 15"%3E%3Cpath fill="currentColor" fill-rule="evenodd" d="M5.5 2a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1 0-1H5V2.5a.5.5 0 0 1 .5-.5Zm4 0a.5.5 0 0 1 .5.5V5h2.5a.5.5 0 0 1 0 1h-3a.5.5 0 0 1-.5-.5v-3a.5.5 0 0 1 .5-.5ZM2 9.5a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 .5.5v3a.5.5 0 0 1-1 0V10H2.5a.5.5 0 0 1-.5-.5Zm7 0a.5.5 0 0 1 .5-.5h3a.5.5 0 0 1 0 1H10v2.5a.5.5 0 0 1-1 0v-3Z" clip-rule="evenodd"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}
@@ -1 +1 @@
1
- :root{--vft-horizontal-menu-tile-width:90vw;--vft-horizontal-menu-tile-height:400px;--vft-horizontal-menu-tile-padding:24px 10px 24px 24px;--vft-horizontal-menu-tile-content-gap-y:20px;--vft-horizontal-menu-tile-content-col-item-gap:12px 4px;--vft-horizontal-menu-tile-content-col-gap-y:40px}.vft-horizontal-menu{height:100%}.vft-horizontal-menu__normal{border-radius:var(--vft-popper-border-radius)}.vft-horizontal-menu__normal .vft-menu--popup{box-shadow:var(--vft-box-shadow)}.vft-horizontal-menu .vft-menu-no-popup-item.is-active{background-color:var(--vft-menu-no-popup-active-bg-color)!important}.vft-horizontal-menu__tile{border-radius:var(--vft-popper-border-radius);width:var(--vft-horizontal-menu-tile-width);height:var(--vft-horizontal-menu-tile-height);padding:var(--vft-horizontal-menu-tile-padding);box-shadow:var(--vft-box-shadow)}.vft-horizontal-menu__tile .vft-menu{height:100%;overflow:auto;overflow:overlay;display:flex;flex:1 1 0;box-shadow:none}.vft-horizontal-menu__tile .vft-menu .vft-menu-popup-item{line-height:1;height:100%;padding:0}.vft-horizontal-menu__tile .vft-menu .vft-menu-popup-item:hover{background:inherit}.vft-horizontal-menu__tile .vft-menu .content-main:not(:last-child){margin-right:var(--vft-horizontal-menu-tile-content-gap-y)}.vft-horizontal-menu__tile .vft-menu .content-main:last-child{margin-right:15px}.vft-horizontal-menu__tile .vft-menu .content-main .content-col{padding-bottom:var(--vft-horizontal-menu-tile-content-col-gap-y)}.vft-horizontal-menu__tile .vft-menu .content-main .title{font-weight:700;font-size:14px;line-height:14px}.vft-horizontal-menu__tile .vft-menu .content-main .content{margin-top:16px;display:grid;grid-auto-flow:column;gap:var(--vft-horizontal-menu-tile-content-col-item-gap);position:relative;grid-auto-columns:var(--vft-menu-item-min-width)}
1
+ :root{--vft-horizontal-menu-tile-width:90vw;--vft-horizontal-menu-tile-height:400px;--vft-horizontal-menu-tile-padding:24px 10px 24px 24px;--vft-horizontal-menu-tile-content-gap-y:20px;--vft-horizontal-menu-tile-content-col-item-gap:12px 4px;--vft-horizontal-menu-tile-content-col-gap-y:40px}.vft-horizontal-menu{height:100%}.vft-horizontal-menu__normal{border-radius:var(--vft-popper-border-radius)}.vft-horizontal-menu__normal .vft-menu--popup{box-shadow:var(--vft-box-shadow)}.vft-horizontal-menu__tile{border-radius:var(--vft-popper-border-radius);width:var(--vft-horizontal-menu-tile-width);height:var(--vft-horizontal-menu-tile-height);padding:var(--vft-horizontal-menu-tile-padding);box-shadow:var(--vft-box-shadow)}.vft-horizontal-menu__tile .vft-menu{height:100%;display:flex;flex:1 1 0;box-shadow:none;overflow:auto;overflow:overlay}.vft-horizontal-menu__tile .vft-menu .vft-menu-popup-item{line-height:1;height:100%;padding:0}.vft-horizontal-menu__tile .vft-menu .vft-menu-popup-item:hover{background:inherit}.vft-horizontal-menu__tile .vft-menu .content-main:not(:last-child){margin-right:var(--vft-horizontal-menu-tile-content-gap-y)}.vft-horizontal-menu__tile .vft-menu .content-main:last-child{margin-right:15px}.vft-horizontal-menu__tile .vft-menu .content-main .content-col{padding-bottom:var(--vft-horizontal-menu-tile-content-col-gap-y)}.vft-horizontal-menu__tile .vft-menu .content-main .title{font-weight:700;font-size:14px;line-height:14px}.vft-horizontal-menu__tile .vft-menu .content-main .content{margin-top:16px;display:grid;grid-auto-flow:column;gap:var(--vft-horizontal-menu-tile-content-col-item-gap);position:relative;grid-auto-columns:var(--vft-menu-item-min-width)}.vft-horizontal-menu .vft-menu-no-popup-item.is-active{background-color:var(--vft-menu-no-popup-active-bg-color)!important}
@@ -1 +1 @@
1
- :root{--vft-icon-text-color:inherit;--vft-icon-text-font-size:12px;--vft-icon-text-cursor:initial}.vft-icon-text{display:flex;align-items:center;font-size:var(--vft-icon-text-font-size);cursor:var(--vft-icon-text-cursor);line-height:1;width:-moz-fit-content;width:fit-content;color:var(--vft-icon-text-color);transition:var(--vft-transition-color)}.vft-icon-text:hover{color:var(--vft-icon-text-hover-color)}.vft-icon-text:hover i{color:var(--vft-icon-hover-color,var(--vft-icon-text-color))}.vft-icon-text.is-col{flex-direction:column}
1
+ :root{--vft-icon-text-color:inherit;--vft-icon-text-font-size:12px;--vft-icon-text-cursor:initial}.vft-icon-text{display:flex;align-items:center;font-size:var(--vft-icon-text-font-size);cursor:var(--vft-icon-text-cursor);line-height:1;width:-moz-fit-content;width:fit-content;color:var(--vft-icon-text-color);transition:var(--vft-transition-color)}.vft-icon-text.is-col{flex-direction:column}.vft-icon-text:hover{color:var(--vft-icon-text-hover-color)}.vft-icon-text:hover i{color:var(--vft-icon-hover-color,var(--vft-icon-text-color))}
@@ -1 +1 @@
1
- .vft-image-viewer__wrapper{position:fixed;top:0;right:0;bottom:0;left:0}.vft-image-viewer__wrapper i{font-size:inherit!important;cursor:pointer}.vft-image-viewer__btn{position:absolute;z-index:1;display:flex;align-items:center;justify-content:center;border-radius:50%;opacity:.8;cursor:pointer;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-image-viewer__btn .vft-icon{font-size:inherit;cursor:pointer}.vft-image-viewer__close{top:40px;right:40px;width:40px;height:40px;font-size:40px}.vft-image-viewer__canvas{position:static;width:100%;height:100%;display:flex;justify-content:center;align-items:center;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-image-viewer__actions{left:50%;bottom:30px;transform:translateX(-50%);width:282px;height:44px;padding:0 23px;background-color:var(--vft-text-regular-color);border-color:#fff;border-radius:22px}.vft-image-viewer__actions__inner{width:100%;height:100%;text-align:justify;cursor:default;font-size:23px;color:#fff;display:flex;align-items:center;justify-content:space-around}.vft-image-viewer__prev{top:50%;transform:translateY(-50%);left:40px;width:44px;height:44px;font-size:24px;color:#fff;background-color:var(--vft-text-regular-color);border-color:#fff}.vft-image-viewer__next{top:50%;transform:translateY(-50%);right:40px;text-indent:2px;width:44px;height:44px;font-size:24px;color:#fff;background-color:var(--vft-text-regular-color);border-color:#fff}.vft-image-viewer__close{width:44px;height:44px;font-size:24px;color:#fff;background-color:var(--vft-text-regular-color);border-color:#fff}.vft-image-viewer__mask{position:absolute;width:100%;height:100%;top:0;left:0;opacity:.5;background:#000}.viewer-fade-enter-active{animation:viewer-fade-in var(--vft-transition-duration)}.viewer-fade-leave-active{animation:viewer-fade-out var(--vft-transition-duration)}@keyframes viewer-fade-in{0%{transform:translate3d(0,-20px,0);opacity:0}100%{transform:translate3d(0,0,0);opacity:1}}@keyframes viewer-fade-out{0%{transform:translate3d(0,0,0);opacity:1}100%{transform:translate3d(0,-20px,0);opacity:0}}.icon-close{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M764.288 214.592L512 466.88L259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512L214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M764.288 214.592L512 466.88L259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512L214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.icon-arrow-left{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M609.408 149.376L277.76 489.6a32 32 0 0 0 0 44.672l331.648 340.352a29.12 29.12 0 0 0 41.728 0a30.592 30.592 0 0 0 0-42.752L339.264 511.936l311.872-319.872a30.592 30.592 0 0 0 0-42.688a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M609.408 149.376L277.76 489.6a32 32 0 0 0 0 44.672l331.648 340.352a29.12 29.12 0 0 0 41.728 0a30.592 30.592 0 0 0 0-42.752L339.264 511.936l311.872-319.872a30.592 30.592 0 0 0 0-42.688a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.icon-arrow-right{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512L340.864 831.872a30.592 30.592 0 0 0 0 42.752a29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512L340.864 831.872a30.592 30.592 0 0 0 0 42.752a29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.icon-zoom-out{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m795.904 750.72l124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704a352 352 0 0 0 0 704zM352 448h256a32 32 0 0 1 0 64H352a32 32 0 0 1 0-64z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m795.904 750.72l124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704a352 352 0 0 0 0 704zM352 448h256a32 32 0 0 1 0 64H352a32 32 0 0 1 0-64z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.icon-zoom-in{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m795.904 750.72l124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704a352 352 0 0 0 0 704zm-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m795.904 750.72l124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704a352 352 0 0 0 0 704zm-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.icon-scale-to-original{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M813.176 180.706a60.235 60.235 0 0 1 60.236 60.235v481.883a60.235 60.235 0 0 1-60.236 60.235H210.824a60.235 60.235 0 0 1-60.236-60.235V240.94a60.235 60.235 0 0 1 60.236-60.235h602.352zm0-60.235H210.824A120.47 120.47 0 0 0 90.353 240.94v481.883a120.47 120.47 0 0 0 120.47 120.47h602.353a120.47 120.47 0 0 0 120.471-120.47V240.94a120.47 120.47 0 0 0-120.47-120.47zm-120.47 180.705a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 0 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118zm-361.412 0a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 1 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118zM512 361.412a30.118 30.118 0 0 0-30.118 30.117v30.118a30.118 30.118 0 0 0 60.236 0V391.53A30.118 30.118 0 0 0 512 361.412zM512 512a30.118 30.118 0 0 0-30.118 30.118v30.117a30.118 30.118 0 0 0 60.236 0v-30.117A30.118 30.118 0 0 0 512 512z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M813.176 180.706a60.235 60.235 0 0 1 60.236 60.235v481.883a60.235 60.235 0 0 1-60.236 60.235H210.824a60.235 60.235 0 0 1-60.236-60.235V240.94a60.235 60.235 0 0 1 60.236-60.235h602.352zm0-60.235H210.824A120.47 120.47 0 0 0 90.353 240.94v481.883a120.47 120.47 0 0 0 120.47 120.47h602.353a120.47 120.47 0 0 0 120.471-120.47V240.94a120.47 120.47 0 0 0-120.47-120.47zm-120.47 180.705a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 0 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118zm-361.412 0a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 1 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118zM512 361.412a30.118 30.118 0 0 0-30.118 30.117v30.118a30.118 30.118 0 0 0 60.236 0V391.53A30.118 30.118 0 0 0 512 361.412zM512 512a30.118 30.118 0 0 0-30.118 30.118v30.117a30.118 30.118 0 0 0 60.236 0v-30.117A30.118 30.118 0 0 0 512 512z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.icon-refresh-left{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M289.088 296.704h92.992a32 32 0 0 1 0 64H232.96a32 32 0 0 1-32-32V179.712a32 32 0 0 1 64 0v50.56a384 384 0 0 1 643.84 282.88a384 384 0 0 1-383.936 384a384 384 0 0 1-384-384h64a320 320 0 1 0 640 0a320 320 0 0 0-555.712-216.448z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M289.088 296.704h92.992a32 32 0 0 1 0 64H232.96a32 32 0 0 1-32-32V179.712a32 32 0 0 1 64 0v50.56a384 384 0 0 1 643.84 282.88a384 384 0 0 1-383.936 384a384 384 0 0 1-384-384h64a320 320 0 1 0 640 0a320 320 0 0 0-555.712-216.448z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.icon-refresh-right{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M784.512 230.272v-50.56a32 32 0 1 1 64 0v149.056a32 32 0 0 1-32 32H667.52a32 32 0 1 1 0-64h92.992A320 320 0 1 0 524.8 833.152a320 320 0 0 0 320-320h64a384 384 0 0 1-384 384a384 384 0 0 1-384-384a384 384 0 0 1 643.712-282.88z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M784.512 230.272v-50.56a32 32 0 1 1 64 0v149.056a32 32 0 0 1-32 32H667.52a32 32 0 1 1 0-64h92.992A320 320 0 1 0 524.8 833.152a320 320 0 0 0 320-320h64a384 384 0 0 1-384 384a384 384 0 0 1-384-384a384 384 0 0 1 643.712-282.88z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}
1
+ .vft-image-viewer__wrapper{position:fixed;top:0;right:0;bottom:0;left:0}.vft-image-viewer__wrapper i{font-size:inherit!important;cursor:pointer}.vft-image-viewer__btn{position:absolute;z-index:1;display:flex;align-items:center;justify-content:center;border-radius:50%;opacity:.8;cursor:pointer;box-sizing:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-image-viewer__btn .vft-icon{font-size:inherit;cursor:pointer}.vft-image-viewer__close{top:40px;right:40px;width:40px;height:40px;font-size:40px}.vft-image-viewer__canvas{position:static;width:100%;height:100%;display:flex;justify-content:center;align-items:center;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-image-viewer__actions{left:50%;bottom:30px;transform:translateX(-50%);width:282px;height:44px;padding:0 23px;background-color:var(--vft-text-regular-color);border-color:#fff;border-radius:22px}.vft-image-viewer__actions__inner{width:100%;height:100%;text-align:justify;cursor:default;font-size:23px;color:#fff;display:flex;align-items:center;justify-content:space-around}.vft-image-viewer__prev{top:50%;transform:translateY(-50%);left:40px;width:44px;height:44px;font-size:24px;color:#fff;background-color:var(--vft-text-regular-color);border-color:#fff}.vft-image-viewer__next{top:50%;transform:translateY(-50%);right:40px;text-indent:2px;width:44px;height:44px;font-size:24px;color:#fff;background-color:var(--vft-text-regular-color);border-color:#fff}.vft-image-viewer__close{width:44px;height:44px;font-size:24px;color:#fff;background-color:var(--vft-text-regular-color);border-color:#fff}.vft-image-viewer__mask{position:absolute;width:100%;height:100%;top:0;left:0;opacity:.5;background:#000}.viewer-fade-enter-active{animation:viewer-fade-in var(--vft-transition-duration)}.viewer-fade-leave-active{animation:viewer-fade-out var(--vft-transition-duration)}@keyframes viewer-fade-in{0%{transform:translate3d(0,-20px,0);opacity:0}100%{transform:translate3d(0,0,0);opacity:1}}@keyframes viewer-fade-out{0%{transform:translate3d(0,0,0);opacity:1}100%{transform:translate3d(0,-20px,0);opacity:0}}.icon-close{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M764.288 214.592L512 466.88L259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512L214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M764.288 214.592L512 466.88L259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512L214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.icon-arrow-left{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M609.408 149.376L277.76 489.6a32 32 0 0 0 0 44.672l331.648 340.352a29.12 29.12 0 0 0 41.728 0a30.592 30.592 0 0 0 0-42.752L339.264 511.936l311.872-319.872a30.592 30.592 0 0 0 0-42.688a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M609.408 149.376L277.76 489.6a32 32 0 0 0 0 44.672l331.648 340.352a29.12 29.12 0 0 0 41.728 0a30.592 30.592 0 0 0 0-42.752L339.264 511.936l311.872-319.872a30.592 30.592 0 0 0 0-42.688a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.icon-arrow-right{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512L340.864 831.872a30.592 30.592 0 0 0 0 42.752a29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512L340.864 831.872a30.592 30.592 0 0 0 0 42.752a29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.icon-zoom-out{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m795.904 750.72l124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704a352 352 0 0 0 0 704zM352 448h256a32 32 0 0 1 0 64H352a32 32 0 0 1 0-64z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m795.904 750.72l124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704a352 352 0 0 0 0 704zM352 448h256a32 32 0 0 1 0 64H352a32 32 0 0 1 0-64z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.icon-zoom-in{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m795.904 750.72l124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704a352 352 0 0 0 0 704zm-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m795.904 750.72l124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704a352 352 0 0 0 0 704zm-32-384v-96a32 32 0 0 1 64 0v96h96a32 32 0 0 1 0 64h-96v96a32 32 0 0 1-64 0v-96h-96a32 32 0 0 1 0-64h96z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.icon-scale-to-original{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M813.176 180.706a60.235 60.235 0 0 1 60.236 60.235v481.883a60.235 60.235 0 0 1-60.236 60.235H210.824a60.235 60.235 0 0 1-60.236-60.235V240.94a60.235 60.235 0 0 1 60.236-60.235h602.352zm0-60.235H210.824A120.47 120.47 0 0 0 90.353 240.94v481.883a120.47 120.47 0 0 0 120.47 120.47h602.353a120.47 120.47 0 0 0 120.471-120.47V240.94a120.47 120.47 0 0 0-120.47-120.47zm-120.47 180.705a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 0 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118zm-361.412 0a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 1 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118zM512 361.412a30.118 30.118 0 0 0-30.118 30.117v30.118a30.118 30.118 0 0 0 60.236 0V391.53A30.118 30.118 0 0 0 512 361.412zM512 512a30.118 30.118 0 0 0-30.118 30.118v30.117a30.118 30.118 0 0 0 60.236 0v-30.117A30.118 30.118 0 0 0 512 512z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M813.176 180.706a60.235 60.235 0 0 1 60.236 60.235v481.883a60.235 60.235 0 0 1-60.236 60.235H210.824a60.235 60.235 0 0 1-60.236-60.235V240.94a60.235 60.235 0 0 1 60.236-60.235h602.352zm0-60.235H210.824A120.47 120.47 0 0 0 90.353 240.94v481.883a120.47 120.47 0 0 0 120.47 120.47h602.353a120.47 120.47 0 0 0 120.471-120.47V240.94a120.47 120.47 0 0 0-120.47-120.47zm-120.47 180.705a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 0 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118zm-361.412 0a30.118 30.118 0 0 0-30.118 30.118v301.177a30.118 30.118 0 1 0 60.236 0V331.294a30.118 30.118 0 0 0-30.118-30.118zM512 361.412a30.118 30.118 0 0 0-30.118 30.117v30.118a30.118 30.118 0 0 0 60.236 0V391.53A30.118 30.118 0 0 0 512 361.412zM512 512a30.118 30.118 0 0 0-30.118 30.118v30.117a30.118 30.118 0 0 0 60.236 0v-30.117A30.118 30.118 0 0 0 512 512z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.icon-refresh-left{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M289.088 296.704h92.992a32 32 0 0 1 0 64H232.96a32 32 0 0 1-32-32V179.712a32 32 0 0 1 64 0v50.56a384 384 0 0 1 643.84 282.88a384 384 0 0 1-383.936 384a384 384 0 0 1-384-384h64a320 320 0 1 0 640 0a320 320 0 0 0-555.712-216.448z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M289.088 296.704h92.992a32 32 0 0 1 0 64H232.96a32 32 0 0 1-32-32V179.712a32 32 0 0 1 64 0v50.56a384 384 0 0 1 643.84 282.88a384 384 0 0 1-383.936 384a384 384 0 0 1-384-384h64a320 320 0 1 0 640 0a320 320 0 0 0-555.712-216.448z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.icon-refresh-right{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M784.512 230.272v-50.56a32 32 0 1 1 64 0v149.056a32 32 0 0 1-32 32H667.52a32 32 0 1 1 0-64h92.992A320 320 0 1 0 524.8 833.152a320 320 0 0 0 320-320h64a384 384 0 0 1-384 384a384 384 0 0 1-384-384a384 384 0 0 1 643.712-282.88z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M784.512 230.272v-50.56a32 32 0 1 1 64 0v149.056a32 32 0 0 1-32 32H667.52a32 32 0 1 1 0-64h92.992A320 320 0 1 0 524.8 833.152a320 320 0 0 0 320-320h64a384 384 0 0 1-384 384a384 384 0 0 1-384-384a384 384 0 0 1 643.712-282.88z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}
@@ -1 +1 @@
1
- .vft-input-number{position:relative;display:inline-flex;width:150px;line-height:30px}.vft-input-number .vft-input__wrapper{padding-left:42px;padding-right:42px}.vft-input-number .vft-input__inner{-webkit-appearance:none;-moz-appearance:textfield;text-align:center;line-height:1}.vft-input-number .vft-input__inner::-webkit-inner-spin-button,.vft-input-number .vft-input__inner::-webkit-outer-spin-button{margin:0;-webkit-appearance:none}.vft-input-number__decrease,.vft-input-number__increase{display:flex;justify-content:center;align-items:center;height:auto;position:absolute;z-index:1;top:1px;bottom:1px;width:32px;background:var(--vft-fill-color-light);color:var(--vft-text-regular-color);cursor:pointer;font-size:13px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-input-number__decrease:hover,.vft-input-number__increase:hover{color:var(--vft-primary-color)}.vft-input-number__decrease:hover~.vft-input:not(.is-disabled) .vft-input_wrapper,.vft-input-number__increase:hover~.vft-input:not(.is-disabled) .vft-input_wrapper{box-shadow:0 0 0 1px var(--vft-input-focus-border-color,var(--vft-primary-color)) inset}.vft-input-number__decrease.is-disabled,.vft-input-number__increase.is-disabled{color:var(--vft-disabled-text-color);cursor:not-allowed}.vft-input-number__increase{right:1px;border-radius:0 var(--vft-border-radius-base) var(--vft-border-radius-base) 0;border-left:var(--vft-border)}.vft-input-number__decrease{left:1px;border-radius:var(--vft-border-radius-base) 0 0 var(--vft-border-radius-base);border-right:var(--vft-border)}.vft-input-number.is-disabled .vft-input-number__decrease,.vft-input-number.is-disabled .vft-input-number__increase{border-color:var(--vft-disabled-border-color);color:var(--vft-disabled-border-color)}.vft-input-number.is-disabled .vft-input-number__decrease:hover,.vft-input-number.is-disabled .vft-input-number__increase:hover{color:var(--vft-disabled-border-color);cursor:not-allowed}.vft-input-number--large{width:180px;line-height:38px}.vft-input-number--large .vft-input-number__decrease,.vft-input-number--large .vft-input-number__increase{width:40px;font-size:14px}.vft-input-number--large .vft-input__wrapper{padding-left:47px;padding-right:47px}.vft-input-number--small{width:120px;line-height:22px}.vft-input-number--small .vft-input-number__decrease,.vft-input-number--small .vft-input-number__increase{width:24px;font-size:12px}.vft-input-number--small .vft-input__wrapper{padding-left:31px;padding-right:31px}.vft-input-number--small .vft-input-number__decrease [class*=vft-icon],.vft-input-number--small .vft-input-number__increase [class*=vft-icon]{transform:scale(.9)}.vft-input-number.is-without-controls .vft-input__wrapper{padding-left:15px;padding-right:15px}.vft-input-number.is-controls-right .vft-input__wrapper{padding-left:15px;padding-right:42px}.vft-input-number.is-controls-right .vft-input-number__decrease,.vft-input-number.is-controls-right .vft-input-number__increase{--vft-input-number-controls-height:15px;height:var(--vft-input-number-controls-height);line-height:var(--vft-input-number-controls-height)}.vft-input-number.is-controls-right .vft-input-number__decrease [class*=vft-icon],.vft-input-number.is-controls-right .vft-input-number__increase [class*=vft-icon]{transform:scale(.8)}.vft-input-number.is-controls-right .vft-input-number__increase{bottom:auto;left:auto;border-radius:0 var(--vft-border-radius-base) 0 0;border-bottom:var(--vft-border)}.vft-input-number.is-controls-right .vft-input-number__decrease{right:1px;top:auto;left:auto;border-right:none;border-left:var(--vft-border);border-radius:0 0 var(--vft-border-radius-base) 0}.vft-input-number.is-controls-right[class*=large] [class*=decrease],.vft-input-number.is-controls-right[class*=large] [class*=increase]{--vft-input-number-controls-height:19px}.vft-input-number.is-controls-right[class*=small] [class*=decrease],.vft-input-number.is-controls-right[class*=small] [class*=increase]{--vft-input-number-controls-height:11px}.vft-input-number .icon-minus{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M128 544h768a32 32 0 1 0 0-64H128a32 32 0 0 0 0 64z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M128 544h768a32 32 0 1 0 0-64H128a32 32 0 0 0 0 64z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-input-number .icon-plus{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M480 480V128a32 32 0 0 1 64 0v352h352a32 32 0 1 1 0 64H544v352a32 32 0 1 1-64 0V544H128a32 32 0 0 1 0-64h352z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M480 480V128a32 32 0 0 1 64 0v352h352a32 32 0 1 1 0 64H544v352a32 32 0 1 1-64 0V544H128a32 32 0 0 1 0-64h352z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-input-number .icon-arrow-down{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M831.872 340.864L512 652.672L192.128 340.864a30.592 30.592 0 0 0-42.752 0a29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728a30.592 30.592 0 0 0-42.752 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M831.872 340.864L512 652.672L192.128 340.864a30.592 30.592 0 0 0-42.752 0a29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728a30.592 30.592 0 0 0-42.752 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-input-number .icon-arrow-up{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m488.832 344.32l-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872l319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m488.832 344.32l-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872l319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}
1
+ .vft-input-number{position:relative;display:inline-flex;width:150px;line-height:30px}.vft-input-number--large{width:180px;line-height:38px}.vft-input-number--large .vft-input-number__decrease,.vft-input-number--large .vft-input-number__increase{width:40px;font-size:14px}.vft-input-number--large .vft-input__wrapper{padding-left:47px;padding-right:47px}.vft-input-number--small{width:120px;line-height:22px}.vft-input-number--small .vft-input-number__decrease,.vft-input-number--small .vft-input-number__increase{width:24px;font-size:12px}.vft-input-number--small .vft-input__wrapper{padding-left:31px;padding-right:31px}.vft-input-number__decrease,.vft-input-number__increase{display:flex;justify-content:center;align-items:center;height:auto;position:absolute;z-index:1;top:1px;bottom:1px;width:32px;background:var(--vft-fill-color-light);color:var(--vft-text-regular-color);cursor:pointer;font-size:13px;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-input-number__decrease:hover,.vft-input-number__increase:hover{color:var(--vft-primary-color)}.vft-input-number__decrease:hover~.vft-input:not(.is-disabled) .vft-input_wrapper,.vft-input-number__increase:hover~.vft-input:not(.is-disabled) .vft-input_wrapper{box-shadow:0 0 0 1px var(--vft-input-focus-border-color,var(--vft-primary-color)) inset}.vft-input-number__decrease.is-disabled,.vft-input-number__increase.is-disabled{color:var(--vft-disabled-text-color);cursor:not-allowed}.vft-input-number__increase{right:1px;border-radius:0 var(--vft-border-radius-base) var(--vft-border-radius-base) 0;border-left:var(--vft-border)}.vft-input-number__decrease{left:1px;border-radius:var(--vft-border-radius-base) 0 0 var(--vft-border-radius-base);border-right:var(--vft-border)}.vft-input-number.is-disabled .vft-input-number__decrease,.vft-input-number.is-disabled .vft-input-number__increase{border-color:var(--vft-disabled-border-color);color:var(--vft-disabled-border-color)}.vft-input-number.is-disabled .vft-input-number__decrease:hover,.vft-input-number.is-disabled .vft-input-number__increase:hover{color:var(--vft-disabled-border-color);cursor:not-allowed}.vft-input-number--small .vft-input-number__decrease [class*=vft-icon],.vft-input-number--small .vft-input-number__increase [class*=vft-icon]{transform:scale(.9)}.vft-input-number.is-without-controls .vft-input__wrapper{padding-left:15px;padding-right:15px}.vft-input-number.is-controls-right[class*=large] [class*=decrease],.vft-input-number.is-controls-right[class*=large] [class*=increase]{--vft-input-number-controls-height:19px}.vft-input-number.is-controls-right[class*=small] [class*=decrease],.vft-input-number.is-controls-right[class*=small] [class*=increase]{--vft-input-number-controls-height:11px}.vft-input-number.is-controls-right .vft-input-number__decrease,.vft-input-number.is-controls-right .vft-input-number__increase{height:var(--vft-input-number-controls-height);line-height:var(--vft-input-number-controls-height);--vft-input-number-controls-height:15px}.vft-input-number.is-controls-right .vft-input-number__decrease [class*=vft-icon],.vft-input-number.is-controls-right .vft-input-number__increase [class*=vft-icon]{transform:scale(.8)}.vft-input-number.is-controls-right .vft-input-number__increase{bottom:auto;left:auto;border-radius:0 var(--vft-border-radius-base) 0 0;border-bottom:var(--vft-border)}.vft-input-number.is-controls-right .vft-input-number__decrease{right:1px;top:auto;left:auto;border-right:none;border-left:var(--vft-border);border-radius:0 0 var(--vft-border-radius-base) 0}.vft-input-number.is-controls-right .vft-input__wrapper{padding-left:15px;padding-right:42px}.vft-input-number .icon-arrow-down{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M831.872 340.864L512 652.672L192.128 340.864a30.592 30.592 0 0 0-42.752 0a29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728a30.592 30.592 0 0 0-42.752 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M831.872 340.864L512 652.672L192.128 340.864a30.592 30.592 0 0 0-42.752 0a29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728a30.592 30.592 0 0 0-42.752 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-input-number .icon-arrow-up{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m488.832 344.32l-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872l319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m488.832 344.32l-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872l319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-input-number .vft-input__wrapper{padding-left:42px;padding-right:42px}.vft-input-number .vft-input__inner{-webkit-appearance:none;-moz-appearance:textfield;text-align:center;line-height:1}.vft-input-number .vft-input__inner::-webkit-inner-spin-button,.vft-input-number .vft-input__inner::-webkit-outer-spin-button{margin:0;-webkit-appearance:none}.vft-input-number .icon-minus{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M128 544h768a32 32 0 1 0 0-64H128a32 32 0 0 0 0 64z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M128 544h768a32 32 0 1 0 0-64H128a32 32 0 0 0 0 64z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-input-number .icon-plus{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M480 480V128a32 32 0 0 1 64 0v352h352a32 32 0 1 1 0 64H544v352a32 32 0 1 1-64 0V544H128a32 32 0 0 1 0-64h352z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M480 480V128a32 32 0 0 1 64 0v352h352a32 32 0 1 1 0 64H544v352a32 32 0 1 1-64 0V544H128a32 32 0 0 1 0-64h352z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}
@@ -1 +1 @@
1
- :root{--vft-input-width:100%;--vft-input-text-color:var(--vft-text-regular-color);--vft-input-border:var(--vft-border);--vft-input-hover-border:var(--vft-border-color-hover);--vft-input-focus-border:var(--vft-primary-color);--vft-input-transparent-border:0 0 0 1px transparent inset;--vft-input-border-color:var(--vft-border-color);--vft-input-border-radius:var(--vft-border-radius-base);--vft-input-bg-color:var(--vft-fill-color-blank);--vft-input-icon-color:var(--vft-text-placeholder-color);--vft-input-placeholder-color:var(--vft-text-placeholder-color);--vft-input-hover-border-color:var(--vft-border-color-hover);--vft-input-clear-hover-color:var(--vft-text-secondary-color);--vft-input-focus-border-color:var(--vft-primary-color)}.vft-input{--vft-input-height:var(--vft-component-size);position:relative;font-size:var(--vft-font-size-base);display:inline-flex;width:var(--vft-input-width);line-height:var(--vft-input-height);box-sizing:border-box;vertical-align:middle;transition:width .2s ease}.vft-input::-webkit-scrollbar{z-index:11;width:6px}.vft-input::-webkit-scrollbar:horizontal{height:6px}.vft-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#c0c4cc;border:0 solid transparent}.vft-input::-webkit-scrollbar-thumb:hover{background:#c0c4cc}.vft-input::-webkit-scrollbar-corner{background:0 0}.vft-input::-webkit-scrollbar-track{background:0 0}.vft-input::-webkit-scrollbar-track-piece{background:0 0;width:6px}.vft-input .vft-input__clear,.vft-input .vft-input__password{color:var(--vft-input-icon-color);font-size:14px;cursor:pointer;z-index:1}.vft-input .vft-input__clear:hover,.vft-input .vft-input__password:hover{color:var(--vft-input-clear-hover-color)}.vft-input .vft-input__count{height:100%;display:inline-flex;align-items:center;color:var(--vft-info-color);font-size:12px}.vft-input .vft-input__count .vft-input__count-inner{background:var(--vft-fill-color-blank);line-height:initial;display:inline-block;padding-left:8px}.vft-input__wrapper{display:inline-flex;flex-grow:1;align-items:center;justify-content:center;padding:1px 11px;background-color:var(--vft-input-bg-color,var(--vft-fill-color-blank));background-image:none;border-radius:var(--vft-input-border-radius,var(--vft-border-radius-base));border:1px solid var(--vft-input-border-color);transition:var(--vft-transition-all)}.vft-input__wrapper:hover{border:1px solid var(--vft-input-hover-border-color)}.vft-input__wrapper.is-focus{border:1px solid var(--vft-input-focus-border-color)}.vft-input__inner{--vft-input-inner-height:calc(var(--vft-input-height, 32px) - 2px);width:100%;flex-grow:1;-webkit-appearance:none;color:var(--vft-input-text-color,var(--vft-text-regular-color));font-size:inherit;height:var(--vft-input-inner-height);line-height:var(--vft-input-inner-height);padding:0;outline:0;border:none;background:0 0;box-sizing:border-box}.vft-input__inner:focus{outline:0}.vft-input__inner::-moz-placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-input__inner::placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-input__inner[type=password]::-ms-reveal{display:none}.vft-input__inner[type=number]{line-height:1px}.vft-input__prefix{display:inline-flex;white-space:nowrap;flex-shrink:0;flex-wrap:nowrap;height:100%;text-align:center;color:var(--vft-input-icon-color,var(--vft-text-placeholder-color));transition:all var(--vft-transition-duration);pointer-events:none}.vft-input__prefix-inner{pointer-events:all;display:inline-flex;align-items:center;justify-content:center}.vft-input__prefix-inner>:last-child{margin-right:8px}.vft-input__prefix-inner>:first-child,.vft-input__prefix-inner>:first-child.vft-input__icon{margin-left:0}.vft-input__suffix{display:inline-flex;white-space:nowrap;flex-shrink:0;flex-wrap:nowrap;height:100%;text-align:center;color:var(--vft-input-icon-color,var(--vft-text-placeholder-color));transition:all var(--vft-transition-duration);pointer-events:none}.vft-input__suffix-inner{pointer-events:all;display:inline-flex;align-items:center;justify-content:center}.vft-input__suffix-inner>:first-child{margin-left:8px}.vft-input .vft-input__icon{transition:all var(--vft-transition-duration);margin-left:8px}.vft-input__validateIcon{pointer-events:none}.vft-input.is-active .vft-input__wrapper{border:1px solid var(--vft-input-focus-color)}.vft-input.is-disabled{cursor:not-allowed}.vft-input.is-disabled .vft-input__wrapper{background-color:var(--vft-disabled-bg-color);border:1px solid var(--vft-input-disable-color)}.vft-input.is-disabled .vft-input__inner{color:var(--vft-disabled-text-color);-webkit-text-fill-color:var(--vft-disabled-text-color);cursor:not-allowed}.vft-input.is-disabled .vft-input__inner::-moz-placeholder{color:var(--vft-text-placeholder-color)}.vft-input.is-disabled .vft-input__inner::placeholder{color:var(--vft-text-placeholder-color)}.vft-input.is-disabled .vft-input__icon{cursor:not-allowed}.vft-input.is-exceed .vft-input__wrapper{border:1px solid var(--vft-input-danger-color)}.vft-input.is-exceed .vft-input__suffix .vft-input__count{color:var(--vft-danger-color)}.vft-input--large{--vft-input-height:var(--vft-component-size-large);font-size:14px}.vft-input--large .vft-input__wrapper{padding:1px 15px}.vft-input--large .vft-input__inner{--vft-input-inner-height:calc(var(--vft-input-height, 40px) - 2px)}.vft-input--small{--vft-input-height:var(--vft-component-size-small);font-size:12px}.vft-input--small .vft-input__wrapper{padding:1px 7px}.vft-input--small .vft-input__inner{--vft-input-inner-height:calc(var(--vft-input-height, 24px) - 2px)}.vft-input .icon-search{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m795.904 750.72l124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704a352 352 0 0 0 0 704z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m795.904 750.72l124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704a352 352 0 0 0 0 704z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-input .icon-hide{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M876.8 156.8c0-9.6-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6c-9.6 0-16 3.2-22.4 9.6L736 220.8c-64-32-137.6-51.2-224-60.8c-160 16-288 73.6-377.6 176C44.8 438.4 0 496 0 512s48 73.6 134.4 176c22.4 25.6 44.8 48 73.6 67.2l-86.4 89.6c-6.4 6.4-9.6 12.8-9.6 22.4c0 9.6 3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6c9.6 0 16-3.2 22.4-9.6l704-710.4c3.2-6.4 6.4-12.8 6.4-22.4Zm-646.4 528c-76.8-70.4-128-128-153.6-172.8c28.8-48 80-105.6 153.6-172.8C304 272 400 230.4 512 224c64 3.2 124.8 19.2 176 44.8l-54.4 54.4C598.4 300.8 560 288 512 288c-64 0-115.2 22.4-160 64s-64 96-64 160c0 48 12.8 89.6 35.2 124.8L256 707.2c-9.6-6.4-19.2-16-25.6-22.4Zm140.8-96c-12.8-22.4-19.2-48-19.2-76.8c0-44.8 16-83.2 48-112c32-28.8 67.2-48 112-48c28.8 0 54.4 6.4 73.6 19.2L371.2 588.8ZM889.599 336c-12.8-16-28.8-28.8-41.6-41.6l-48 48c73.6 67.2 124.8 124.8 150.4 169.6c-28.8 48-80 105.6-153.6 172.8c-73.6 67.2-172.8 108.8-284.8 115.2c-51.2-3.2-99.2-12.8-140.8-28.8l-48 48c57.6 22.4 118.4 38.4 188.8 44.8c160-16 288-73.6 377.6-176C979.199 585.6 1024 528 1024 512s-48.001-73.6-134.401-176Z"%2F%3E%3Cpath fill="currentColor" d="M511.998 672c-12.8 0-25.6-3.2-38.4-6.4l-51.2 51.2c28.8 12.8 57.6 19.2 89.6 19.2c64 0 115.2-22.4 160-64c41.6-41.6 64-96 64-160c0-32-6.4-64-19.2-89.6l-51.2 51.2c3.2 12.8 6.4 25.6 6.4 38.4c0 44.8-16 83.2-48 112c-32 28.8-67.2 48-112 48Z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M876.8 156.8c0-9.6-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6c-9.6 0-16 3.2-22.4 9.6L736 220.8c-64-32-137.6-51.2-224-60.8c-160 16-288 73.6-377.6 176C44.8 438.4 0 496 0 512s48 73.6 134.4 176c22.4 25.6 44.8 48 73.6 67.2l-86.4 89.6c-6.4 6.4-9.6 12.8-9.6 22.4c0 9.6 3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6c9.6 0 16-3.2 22.4-9.6l704-710.4c3.2-6.4 6.4-12.8 6.4-22.4Zm-646.4 528c-76.8-70.4-128-128-153.6-172.8c28.8-48 80-105.6 153.6-172.8C304 272 400 230.4 512 224c64 3.2 124.8 19.2 176 44.8l-54.4 54.4C598.4 300.8 560 288 512 288c-64 0-115.2 22.4-160 64s-64 96-64 160c0 48 12.8 89.6 35.2 124.8L256 707.2c-9.6-6.4-19.2-16-25.6-22.4Zm140.8-96c-12.8-22.4-19.2-48-19.2-76.8c0-44.8 16-83.2 48-112c32-28.8 67.2-48 112-48c28.8 0 54.4 6.4 73.6 19.2L371.2 588.8ZM889.599 336c-12.8-16-28.8-28.8-41.6-41.6l-48 48c73.6 67.2 124.8 124.8 150.4 169.6c-28.8 48-80 105.6-153.6 172.8c-73.6 67.2-172.8 108.8-284.8 115.2c-51.2-3.2-99.2-12.8-140.8-28.8l-48 48c57.6 22.4 118.4 38.4 188.8 44.8c160-16 288-73.6 377.6-176C979.199 585.6 1024 528 1024 512s-48.001-73.6-134.401-176Z"%2F%3E%3Cpath fill="currentColor" d="M511.998 672c-12.8 0-25.6-3.2-38.4-6.4l-51.2 51.2c28.8 12.8 57.6 19.2 89.6 19.2c64 0 115.2-22.4 160-64c41.6-41.6 64-96 64-160c0-32-6.4-64-19.2-89.6l-51.2 51.2c3.2 12.8 6.4 25.6 6.4 38.4c0 44.8-16 83.2-48 112c-32 28.8-67.2 48-112 48Z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-input .icon-view{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 160c320 0 512 352 512 352S832 864 512 864S0 512 0 512s192-352 512-352zm0 64c-225.28 0-384.128 208.064-436.8 288c52.608 79.872 211.456 288 436.8 288c225.28 0 384.128-208.064 436.8-288c-52.608-79.872-211.456-288-436.8-288zm0 64a224 224 0 1 1 0 448a224 224 0 0 1 0-448zm0 64a160.192 160.192 0 0 0-160 160c0 88.192 71.744 160 160 160s160-71.808 160-160s-71.744-160-160-160z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 160c320 0 512 352 512 352S832 864 512 864S0 512 0 512s192-352 512-352zm0 64c-225.28 0-384.128 208.064-436.8 288c52.608 79.872 211.456 288 436.8 288c225.28 0 384.128-208.064 436.8-288c-52.608-79.872-211.456-288-436.8-288zm0 64a224 224 0 1 1 0 448a224 224 0 0 1 0-448zm0 64a160.192 160.192 0 0 0-160 160c0 88.192 71.744 160 160 160s160-71.808 160-160s-71.744-160-160-160z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-input .icon-loading{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 64a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32zm0 640a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V736a32 32 0 0 1 32-32zm448-192a32 32 0 0 1-32 32H736a32 32 0 1 1 0-64h192a32 32 0 0 1 32 32zm-640 0a32 32 0 0 1-32 32H96a32 32 0 0 1 0-64h192a32 32 0 0 1 32 32zM195.2 195.2a32 32 0 0 1 45.248 0L376.32 331.008a32 32 0 0 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm452.544 452.544a32 32 0 0 1 45.248 0L828.8 783.552a32 32 0 0 1-45.248 45.248L647.744 692.992a32 32 0 0 1 0-45.248zM828.8 195.264a32 32 0 0 1 0 45.184L692.992 376.32a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0zm-452.544 452.48a32 32 0 0 1 0 45.248L240.448 828.8a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 64a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32zm0 640a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V736a32 32 0 0 1 32-32zm448-192a32 32 0 0 1-32 32H736a32 32 0 1 1 0-64h192a32 32 0 0 1 32 32zm-640 0a32 32 0 0 1-32 32H96a32 32 0 0 1 0-64h192a32 32 0 0 1 32 32zM195.2 195.2a32 32 0 0 1 45.248 0L376.32 331.008a32 32 0 0 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm452.544 452.544a32 32 0 0 1 45.248 0L828.8 783.552a32 32 0 0 1-45.248 45.248L647.744 692.992a32 32 0 0 1 0-45.248zM828.8 195.264a32 32 0 0 1 0 45.184L692.992 376.32a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0zm-452.544 452.48a32 32 0 0 1 0 45.248L240.448 828.8a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-input .icon-circle-check{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 896a384 384 0 1 0 0-768a384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896a448 448 0 0 1 0 896z"%2F%3E%3Cpath fill="currentColor" d="M745.344 361.344a32 32 0 0 1 45.312 45.312l-288 288a32 32 0 0 1-45.312 0l-160-160a32 32 0 1 1 45.312-45.312L480 626.752l265.344-265.408z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 896a384 384 0 1 0 0-768a384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896a448 448 0 0 1 0 896z"%2F%3E%3Cpath fill="currentColor" d="M745.344 361.344a32 32 0 0 1 45.312 45.312l-288 288a32 32 0 0 1-45.312 0l-160-160a32 32 0 1 1 45.312-45.312L480 626.752l265.344-265.408z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-input .icon-circle-close{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m466.752 512l-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248L466.752 512z"%2F%3E%3Cpath fill="currentColor" d="M512 896a384 384 0 1 0 0-768a384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896a448 448 0 0 1 0 896z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m466.752 512l-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248L466.752 512z"%2F%3E%3Cpath fill="currentColor" d="M512 896a384 384 0 1 0 0-768a384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896a448 448 0 0 1 0 896z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-input .icon-close{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M764.288 214.592L512 466.88L259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512L214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M764.288 214.592L512 466.88L259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512L214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-input-group{display:inline-flex;width:100%;align-items:stretch}.vft-input-group__append,.vft-input-group__prepend{background-color:var(--vft-fill-color-light);color:var(--vft-info-color);position:relative;display:inline-flex;align-items:center;justify-content:center;min-height:100%;border-radius:var(--vft-input-border-radius);padding:0 20px;white-space:nowrap}.vft-input-group__append:focus,.vft-input-group__prepend:focus{outline:0}.vft-input-group__append .vft-button,.vft-input-group__append .vft-select,.vft-input-group__prepend .vft-button,.vft-input-group__prepend .vft-select{display:inline-block;margin:0 -20px}.vft-input-group__append button.vft-button,.vft-input-group__append button.vft-button:hover,.vft-input-group__append div.vft-select .vft-input__wrapper,.vft-input-group__append div.vft-select:hover .vft-input__wrapper,.vft-input-group__prepend button.vft-button,.vft-input-group__prepend button.vft-button:hover,.vft-input-group__prepend div.vft-select .vft-input__wrapper,.vft-input-group__prepend div.vft-select:hover .vft-input__wrapper{border-color:transparent;background-color:transparent;color:inherit}.vft-input-group__append .vft-button,.vft-input-group__append .vft-input,.vft-input-group__prepend .vft-button,.vft-input-group__prepend .vft-input{font-size:inherit}.vft-input-group__prepend{border-top-right-radius:0;border-bottom-right-radius:0;border:1px solid var(--vft-input-border-color);border-right:0}.vft-input-group__append{border-top-left-radius:0;border-bottom-left-radius:0;border:1px solid var(--vft-input-border-color);border-left:0}.vft-input-group--prepend>.vft-input__wrapper{border-top-left-radius:0;border-bottom-left-radius:0}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input .vft-input__wrapper{border-top-right-radius:0;border-bottom-right-radius:0;border:1px solid var(--vft-input-border-color)}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__wrapper{border:1px solid var(--vft-input-focus-border-color);z-index:2}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__wrapper:focus{outline:0;z-index:2;border:1px solid var(--vft-input-focus-border-color)}.vft-input-group--prepend .vft-input-group__prepend .vft-select:hover .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select:hover .vft-input__wrapper{z-index:1;border:1px solid var(--vft-input-hover-border-color)}.vft-input-group--append>.vft-input__wrapper{border-top-right-radius:0;border-bottom-right-radius:0}.vft-input-group--append .vft-input-group__append .vft-select .vft-input .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select .vft-input .vft-input__wrapper{border-top-left-radius:0;border-bottom-left-radius:0;border:1px solid var(--vft-input-border-color)}.vft-input-group--append .vft-input-group__append .vft-select .vft-input.is-focus .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select .vft-input.is-focus .vft-input__wrapper{z-index:2;border:1px solid var(--vft-input-focus-border-color)}.vft-input-group--append .vft-input-group__append .vft-select:hover .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select:hover .vft-input__wrapper{z-index:1;border:1px solid var(--vft-input-hover-border-color)}.vft-textarea{position:relative;display:inline-block;width:100%;vertical-align:bottom;font-size:var(--vft-font-size-base)}.vft-textarea__inner{position:relative;display:block;resize:vertical;padding:5px 11px;line-height:1.5;box-sizing:border-box;width:100%;color:var(--vft-input-text-color,var(--vft-text-regular-color));background-color:var(--vft-input-bg-color,var(--vft-fill-color-blank));background-image:none;-webkit-appearance:none;border-radius:var(--vft-input-border-radius,var(--vft-border-radius-base));transition:var(--vft-transition-box-shadow);border:1px solid var(--vft-input-border-color)}.vft-textarea__inner::-moz-placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-textarea__inner::placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-textarea__inner:hover{border:1px solid var(--vft-input-hover-border-color)}.vft-textarea__inner:focus{outline:0;border:1px solid var(--vft-input-focus-border-color)}.vft-textarea .vft-input__count{color:var(--vft-info-color);background:var(--vft-fill-color-blank);position:absolute;font-size:12px;line-height:14px;bottom:5px;right:10px}.vft-textarea.is-disabled .vft-textarea__inner{background-color:var(--vft-disabled-bg-color);border-color:var(--vft-disabled-border-color);color:var(--vft-disabled-text-color);cursor:not-allowed}.vft-textarea.is-disabled .vft-textarea__inner::-moz-placeholder{color:var(--vft-text-placeholder-color)}.vft-textarea.is-disabled .vft-textarea__inner::placeholder{color:var(--vft-text-placeholder-color)}.vft-textarea.is-exceed .vft-textarea__inner{border-color:var(--vft-danger-color)}.vft-textarea.is-exceed .vft-input__count{color:var(--vft-danger-color)}
1
+ :root{--vft-input-width:100%;--vft-input-text-color:var(--vft-text-regular-color);--vft-input-border:var(--vft-border);--vft-input-hover-border:var(--vft-border-color-hover);--vft-input-focus-border:var(--vft-primary-color);--vft-input-transparent-border:0 0 0 1px transparent inset;--vft-input-border-color:var(--vft-border-color);--vft-input-border-radius:var(--vft-border-radius-base);--vft-input-bg-color:var(--vft-fill-color-blank);--vft-input-icon-color:var(--vft-text-placeholder-color);--vft-input-placeholder-color:var(--vft-text-placeholder-color);--vft-input-hover-border-color:var(--vft-border-color-hover);--vft-input-clear-hover-color:var(--vft-text-secondary-color);--vft-input-focus-border-color:var(--vft-primary-color)}.vft-input{position:relative;font-size:var(--vft-font-size-base);display:inline-flex;width:var(--vft-input-width);line-height:var(--vft-input-height);box-sizing:border-box;vertical-align:middle;transition:width .2s ease;--vft-input-height:var(--vft-component-size)}.vft-input__prefix{display:inline-flex;white-space:nowrap;flex-shrink:0;flex-wrap:nowrap;height:100%;text-align:center;color:var(--vft-input-icon-color,var(--vft-text-placeholder-color));transition:all var(--vft-transition-duration);pointer-events:none}.vft-input__prefix-inner{pointer-events:all;display:inline-flex;align-items:center;justify-content:center}.vft-input__prefix-inner>:last-child{margin-right:8px}.vft-input__prefix-inner>:first-child,.vft-input__prefix-inner>:first-child.vft-input__icon{margin-left:0}.vft-input__suffix{display:inline-flex;white-space:nowrap;flex-shrink:0;flex-wrap:nowrap;height:100%;text-align:center;color:var(--vft-input-icon-color,var(--vft-text-placeholder-color));transition:all var(--vft-transition-duration);pointer-events:none}.vft-input__suffix-inner{pointer-events:all;display:inline-flex;align-items:center;justify-content:center}.vft-input__suffix-inner>:first-child{margin-left:8px}.vft-input--large{font-size:14px;--vft-input-height:var(--vft-component-size-large)}.vft-input--large .vft-input__wrapper{padding:1px 15px}.vft-input--large .vft-input__inner{--vft-input-inner-height:calc(var(--vft-input-height, 40px) - 2px)}.vft-input--small{font-size:12px;--vft-input-height:var(--vft-component-size-small)}.vft-input--small .vft-input__wrapper{padding:1px 7px}.vft-input--small .vft-input__inner{--vft-input-inner-height:calc(var(--vft-input-height, 24px) - 2px)}.vft-input::-webkit-scrollbar{z-index:11;width:6px}.vft-input::-webkit-scrollbar:horizontal{height:6px}.vft-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#c0c4cc;border:0 solid transparent}.vft-input::-webkit-scrollbar-thumb:hover{background:#c0c4cc}.vft-input::-webkit-scrollbar-corner{background:0 0}.vft-input::-webkit-scrollbar-track{background:0 0}.vft-input::-webkit-scrollbar-track-piece{background:0 0;width:6px}.vft-input__wrapper{display:inline-flex;flex-grow:1;align-items:center;justify-content:center;padding:1px 11px;background-color:var(--vft-input-bg-color,var(--vft-fill-color-blank));background-image:none;border-radius:var(--vft-input-border-radius,var(--vft-border-radius-base));border:1px solid var(--vft-input-border-color);transition:var(--vft-transition-all)}.vft-input__wrapper.is-focus{border:1px solid var(--vft-input-focus-border-color)}.vft-input__wrapper:hover{border:1px solid var(--vft-input-hover-border-color)}.vft-input__inner{width:100%;flex-grow:1;-webkit-appearance:none;color:var(--vft-input-text-color,var(--vft-text-regular-color));font-size:inherit;height:var(--vft-input-inner-height);line-height:var(--vft-input-inner-height);padding:0;outline:0;border:none;background:0 0;box-sizing:border-box;--vft-input-inner-height:calc(var(--vft-input-height, 32px) - 2px)}.vft-input__inner:focus{outline:0}.vft-input__inner::-moz-placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-input__inner::placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-input__inner[type=password]::-ms-reveal{display:none}.vft-input__inner[type=number]{line-height:1px}.vft-input__validateIcon{pointer-events:none}.vft-input.is-active .vft-input__wrapper{border:1px solid var(--vft-input-focus-color)}.vft-input.is-disabled{cursor:not-allowed}.vft-input.is-disabled .vft-input__wrapper{background-color:var(--vft-disabled-bg-color);border:1px solid var(--vft-input-disable-color)}.vft-input.is-disabled .vft-input__inner{color:var(--vft-disabled-text-color);-webkit-text-fill-color:var(--vft-disabled-text-color);cursor:not-allowed}.vft-input.is-disabled .vft-input__inner::-moz-placeholder{color:var(--vft-text-placeholder-color)}.vft-input.is-disabled .vft-input__inner::placeholder{color:var(--vft-text-placeholder-color)}.vft-input.is-disabled .vft-input__icon{cursor:not-allowed}.vft-input.is-exceed .vft-input__wrapper{border:1px solid var(--vft-input-danger-color)}.vft-input.is-exceed .vft-input__suffix .vft-input__count{color:var(--vft-danger-color)}.vft-input .icon-close{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M764.288 214.592L512 466.88L259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512L214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M764.288 214.592L512 466.88L259.712 214.592a31.936 31.936 0 0 0-45.12 45.12L466.752 512L214.528 764.224a31.936 31.936 0 1 0 45.12 45.184L512 557.184l252.288 252.288a31.936 31.936 0 0 0 45.12-45.12L557.12 512.064l252.288-252.352a31.936 31.936 0 1 0-45.12-45.184z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-input .vft-input__clear,.vft-input .vft-input__password{color:var(--vft-input-icon-color);font-size:14px;cursor:pointer;z-index:1}.vft-input .vft-input__clear:hover,.vft-input .vft-input__password:hover{color:var(--vft-input-clear-hover-color)}.vft-input .vft-input__count{height:100%;display:inline-flex;align-items:center;color:var(--vft-info-color);font-size:12px}.vft-input .vft-input__count .vft-input__count-inner{background:var(--vft-fill-color-blank);line-height:initial;display:inline-block;padding-left:8px}.vft-input .vft-input__icon{transition:all var(--vft-transition-duration);margin-left:8px}.vft-input .icon-search{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m795.904 750.72l124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704a352 352 0 0 0 0 704z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m795.904 750.72l124.992 124.928a32 32 0 0 1-45.248 45.248L750.656 795.904a416 416 0 1 1 45.248-45.248zM480 832a352 352 0 1 0 0-704a352 352 0 0 0 0 704z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-input .icon-hide{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M876.8 156.8c0-9.6-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6c-9.6 0-16 3.2-22.4 9.6L736 220.8c-64-32-137.6-51.2-224-60.8c-160 16-288 73.6-377.6 176C44.8 438.4 0 496 0 512s48 73.6 134.4 176c22.4 25.6 44.8 48 73.6 67.2l-86.4 89.6c-6.4 6.4-9.6 12.8-9.6 22.4c0 9.6 3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6c9.6 0 16-3.2 22.4-9.6l704-710.4c3.2-6.4 6.4-12.8 6.4-22.4Zm-646.4 528c-76.8-70.4-128-128-153.6-172.8c28.8-48 80-105.6 153.6-172.8C304 272 400 230.4 512 224c64 3.2 124.8 19.2 176 44.8l-54.4 54.4C598.4 300.8 560 288 512 288c-64 0-115.2 22.4-160 64s-64 96-64 160c0 48 12.8 89.6 35.2 124.8L256 707.2c-9.6-6.4-19.2-16-25.6-22.4Zm140.8-96c-12.8-22.4-19.2-48-19.2-76.8c0-44.8 16-83.2 48-112c32-28.8 67.2-48 112-48c28.8 0 54.4 6.4 73.6 19.2L371.2 588.8ZM889.599 336c-12.8-16-28.8-28.8-41.6-41.6l-48 48c73.6 67.2 124.8 124.8 150.4 169.6c-28.8 48-80 105.6-153.6 172.8c-73.6 67.2-172.8 108.8-284.8 115.2c-51.2-3.2-99.2-12.8-140.8-28.8l-48 48c57.6 22.4 118.4 38.4 188.8 44.8c160-16 288-73.6 377.6-176C979.199 585.6 1024 528 1024 512s-48.001-73.6-134.401-176Z"%2F%3E%3Cpath fill="currentColor" d="M511.998 672c-12.8 0-25.6-3.2-38.4-6.4l-51.2 51.2c28.8 12.8 57.6 19.2 89.6 19.2c64 0 115.2-22.4 160-64c41.6-41.6 64-96 64-160c0-32-6.4-64-19.2-89.6l-51.2 51.2c3.2 12.8 6.4 25.6 6.4 38.4c0 44.8-16 83.2-48 112c-32 28.8-67.2 48-112 48Z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M876.8 156.8c0-9.6-3.2-16-9.6-22.4c-6.4-6.4-12.8-9.6-22.4-9.6c-9.6 0-16 3.2-22.4 9.6L736 220.8c-64-32-137.6-51.2-224-60.8c-160 16-288 73.6-377.6 176C44.8 438.4 0 496 0 512s48 73.6 134.4 176c22.4 25.6 44.8 48 73.6 67.2l-86.4 89.6c-6.4 6.4-9.6 12.8-9.6 22.4c0 9.6 3.2 16 9.6 22.4c6.4 6.4 12.8 9.6 22.4 9.6c9.6 0 16-3.2 22.4-9.6l704-710.4c3.2-6.4 6.4-12.8 6.4-22.4Zm-646.4 528c-76.8-70.4-128-128-153.6-172.8c28.8-48 80-105.6 153.6-172.8C304 272 400 230.4 512 224c64 3.2 124.8 19.2 176 44.8l-54.4 54.4C598.4 300.8 560 288 512 288c-64 0-115.2 22.4-160 64s-64 96-64 160c0 48 12.8 89.6 35.2 124.8L256 707.2c-9.6-6.4-19.2-16-25.6-22.4Zm140.8-96c-12.8-22.4-19.2-48-19.2-76.8c0-44.8 16-83.2 48-112c32-28.8 67.2-48 112-48c28.8 0 54.4 6.4 73.6 19.2L371.2 588.8ZM889.599 336c-12.8-16-28.8-28.8-41.6-41.6l-48 48c73.6 67.2 124.8 124.8 150.4 169.6c-28.8 48-80 105.6-153.6 172.8c-73.6 67.2-172.8 108.8-284.8 115.2c-51.2-3.2-99.2-12.8-140.8-28.8l-48 48c57.6 22.4 118.4 38.4 188.8 44.8c160-16 288-73.6 377.6-176C979.199 585.6 1024 528 1024 512s-48.001-73.6-134.401-176Z"%2F%3E%3Cpath fill="currentColor" d="M511.998 672c-12.8 0-25.6-3.2-38.4-6.4l-51.2 51.2c28.8 12.8 57.6 19.2 89.6 19.2c64 0 115.2-22.4 160-64c41.6-41.6 64-96 64-160c0-32-6.4-64-19.2-89.6l-51.2 51.2c3.2 12.8 6.4 25.6 6.4 38.4c0 44.8-16 83.2-48 112c-32 28.8-67.2 48-112 48Z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-input .icon-view{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 160c320 0 512 352 512 352S832 864 512 864S0 512 0 512s192-352 512-352zm0 64c-225.28 0-384.128 208.064-436.8 288c52.608 79.872 211.456 288 436.8 288c225.28 0 384.128-208.064 436.8-288c-52.608-79.872-211.456-288-436.8-288zm0 64a224 224 0 1 1 0 448a224 224 0 0 1 0-448zm0 64a160.192 160.192 0 0 0-160 160c0 88.192 71.744 160 160 160s160-71.808 160-160s-71.744-160-160-160z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 160c320 0 512 352 512 352S832 864 512 864S0 512 0 512s192-352 512-352zm0 64c-225.28 0-384.128 208.064-436.8 288c52.608 79.872 211.456 288 436.8 288c225.28 0 384.128-208.064 436.8-288c-52.608-79.872-211.456-288-436.8-288zm0 64a224 224 0 1 1 0 448a224 224 0 0 1 0-448zm0 64a160.192 160.192 0 0 0-160 160c0 88.192 71.744 160 160 160s160-71.808 160-160s-71.744-160-160-160z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-input .icon-loading{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 64a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32zm0 640a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V736a32 32 0 0 1 32-32zm448-192a32 32 0 0 1-32 32H736a32 32 0 1 1 0-64h192a32 32 0 0 1 32 32zm-640 0a32 32 0 0 1-32 32H96a32 32 0 0 1 0-64h192a32 32 0 0 1 32 32zM195.2 195.2a32 32 0 0 1 45.248 0L376.32 331.008a32 32 0 0 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm452.544 452.544a32 32 0 0 1 45.248 0L828.8 783.552a32 32 0 0 1-45.248 45.248L647.744 692.992a32 32 0 0 1 0-45.248zM828.8 195.264a32 32 0 0 1 0 45.184L692.992 376.32a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0zm-452.544 452.48a32 32 0 0 1 0 45.248L240.448 828.8a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 64a32 32 0 0 1 32 32v192a32 32 0 0 1-64 0V96a32 32 0 0 1 32-32zm0 640a32 32 0 0 1 32 32v192a32 32 0 1 1-64 0V736a32 32 0 0 1 32-32zm448-192a32 32 0 0 1-32 32H736a32 32 0 1 1 0-64h192a32 32 0 0 1 32 32zm-640 0a32 32 0 0 1-32 32H96a32 32 0 0 1 0-64h192a32 32 0 0 1 32 32zM195.2 195.2a32 32 0 0 1 45.248 0L376.32 331.008a32 32 0 0 1-45.248 45.248L195.2 240.448a32 32 0 0 1 0-45.248zm452.544 452.544a32 32 0 0 1 45.248 0L828.8 783.552a32 32 0 0 1-45.248 45.248L647.744 692.992a32 32 0 0 1 0-45.248zM828.8 195.264a32 32 0 0 1 0 45.184L692.992 376.32a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0zm-452.544 452.48a32 32 0 0 1 0 45.248L240.448 828.8a32 32 0 0 1-45.248-45.248l135.808-135.808a32 32 0 0 1 45.248 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-input .icon-circle-check{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 896a384 384 0 1 0 0-768a384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896a448 448 0 0 1 0 896z"%2F%3E%3Cpath fill="currentColor" d="M745.344 361.344a32 32 0 0 1 45.312 45.312l-288 288a32 32 0 0 1-45.312 0l-160-160a32 32 0 1 1 45.312-45.312L480 626.752l265.344-265.408z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 896a384 384 0 1 0 0-768a384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896a448 448 0 0 1 0 896z"%2F%3E%3Cpath fill="currentColor" d="M745.344 361.344a32 32 0 0 1 45.312 45.312l-288 288a32 32 0 0 1-45.312 0l-160-160a32 32 0 1 1 45.312-45.312L480 626.752l265.344-265.408z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-input .icon-circle-close{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m466.752 512l-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248L466.752 512z"%2F%3E%3Cpath fill="currentColor" d="M512 896a384 384 0 1 0 0-768a384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896a448 448 0 0 1 0 896z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m466.752 512l-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248L466.752 512z"%2F%3E%3Cpath fill="currentColor" d="M512 896a384 384 0 1 0 0-768a384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896a448 448 0 0 1 0 896z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-input-group{display:inline-flex;width:100%;align-items:stretch}.vft-input-group__append,.vft-input-group__prepend{background-color:var(--vft-fill-color-light);color:var(--vft-info-color);position:relative;display:inline-flex;align-items:center;justify-content:center;min-height:100%;border-radius:var(--vft-input-border-radius);padding:0 20px;white-space:nowrap}.vft-input-group__append:focus,.vft-input-group__prepend:focus{outline:0}.vft-input-group__append .vft-button,.vft-input-group__append .vft-select,.vft-input-group__prepend .vft-button,.vft-input-group__prepend .vft-select{display:inline-block;margin:0 -20px}.vft-input-group__append button.vft-button,.vft-input-group__append button.vft-button:hover,.vft-input-group__append div.vft-select .vft-input__wrapper,.vft-input-group__append div.vft-select:hover .vft-input__wrapper,.vft-input-group__prepend button.vft-button,.vft-input-group__prepend button.vft-button:hover,.vft-input-group__prepend div.vft-select .vft-input__wrapper,.vft-input-group__prepend div.vft-select:hover .vft-input__wrapper{border-color:transparent;background-color:transparent;color:inherit}.vft-input-group__append .vft-button,.vft-input-group__append .vft-input,.vft-input-group__prepend .vft-button,.vft-input-group__prepend .vft-input{font-size:inherit}.vft-input-group__prepend{border-top-right-radius:0;border-bottom-right-radius:0;border:1px solid var(--vft-input-border-color);border-right:0}.vft-input-group__append{border-top-left-radius:0;border-bottom-left-radius:0;border:1px solid var(--vft-input-border-color);border-left:0}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input .vft-input__wrapper{border-top-right-radius:0;border-bottom-right-radius:0;border:1px solid var(--vft-input-border-color)}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__wrapper{border:1px solid var(--vft-input-focus-border-color);z-index:2}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__wrapper:focus{outline:0;z-index:2;border:1px solid var(--vft-input-focus-border-color)}.vft-input-group--prepend .vft-input-group__prepend .vft-select:hover .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select:hover .vft-input__wrapper{z-index:1;border:1px solid var(--vft-input-hover-border-color)}.vft-input-group--prepend>.vft-input__wrapper{border-top-left-radius:0;border-bottom-left-radius:0}.vft-input-group--append .vft-input-group__append .vft-select .vft-input .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select .vft-input .vft-input__wrapper{border-top-left-radius:0;border-bottom-left-radius:0;border:1px solid var(--vft-input-border-color)}.vft-input-group--append .vft-input-group__append .vft-select .vft-input.is-focus .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select .vft-input.is-focus .vft-input__wrapper{z-index:2;border:1px solid var(--vft-input-focus-border-color)}.vft-input-group--append .vft-input-group__append .vft-select:hover .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select:hover .vft-input__wrapper{z-index:1;border:1px solid var(--vft-input-hover-border-color)}.vft-input-group--append>.vft-input__wrapper{border-top-right-radius:0;border-bottom-right-radius:0}.vft-textarea{position:relative;display:inline-block;width:100%;vertical-align:bottom;font-size:var(--vft-font-size-base)}.vft-textarea__inner{position:relative;display:block;resize:vertical;padding:5px 11px;line-height:1.5;box-sizing:border-box;width:100%;color:var(--vft-input-text-color,var(--vft-text-regular-color));background-color:var(--vft-input-bg-color,var(--vft-fill-color-blank));background-image:none;-webkit-appearance:none;border-radius:var(--vft-input-border-radius,var(--vft-border-radius-base));transition:var(--vft-transition-box-shadow);border:1px solid var(--vft-input-border-color)}.vft-textarea__inner::-moz-placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-textarea__inner::placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-textarea__inner:hover{border:1px solid var(--vft-input-hover-border-color)}.vft-textarea__inner:focus{outline:0;border:1px solid var(--vft-input-focus-border-color)}.vft-textarea.is-disabled .vft-textarea__inner{background-color:var(--vft-disabled-bg-color);border-color:var(--vft-disabled-border-color);color:var(--vft-disabled-text-color);cursor:not-allowed}.vft-textarea.is-disabled .vft-textarea__inner::-moz-placeholder{color:var(--vft-text-placeholder-color)}.vft-textarea.is-disabled .vft-textarea__inner::placeholder{color:var(--vft-text-placeholder-color)}.vft-textarea.is-exceed .vft-textarea__inner{border-color:var(--vft-danger-color)}.vft-textarea.is-exceed .vft-input__count{color:var(--vft-danger-color)}.vft-textarea .vft-input__count{color:var(--vft-info-color);background:var(--vft-fill-color-blank);position:absolute;font-size:12px;line-height:14px;bottom:5px;right:10px}
@@ -1 +1 @@
1
- :root{--vft-link-font-size:var(--vft-font-size-base);--vft-link-font-weight:var(--vft-font-weight-primary);--vft-link-text-color:var(--vft-text-regular-color);--vft-link-hover-text-color:var(--vft-primary-color);--vft-link-disabled-text-color:var(--vft-text-placeholder-color)}.vft-link{display:inline-flex;flex-direction:row;align-items:center;justify-content:center;vertical-align:middle;position:relative;text-decoration:none;outline:0;cursor:pointer;padding:0;font-size:var(--vft-link-font-size);font-weight:var(--vft-link-font-weight);color:var(--vft-link-text-color)}.vft-link:hover{color:var(--vft-link-hover-text-color)}.vft-link.is-underline:hover:after{content:"";position:absolute;left:0;right:0;height:0;bottom:0;border-bottom:1px solid var(--vft-link-hover-text-color)}.vft-link.is-disabled{color:var(--vft-link-disabled-text-color);cursor:not-allowed}.vft-link [class*=vft-icon-]+span{margin-left:5px}.vft-link.vft-link--default:after{border-color:var(--vft-link-hover-text-color)}.vft-link__inner{display:inline-flex;justify-content:center;align-items:center}.vft-link.vft-link--primary{--vft-link-text-color:var(--vft-primary-color);--vft-link-hover-text-color:var(--vft-primary-color-light-3);--vft-link-disabled-text-color:var(--vft-primary-color-light-5)}.vft-link.vft-link--primary:after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--primary.is-underline:hover:after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--success{--vft-link-text-color:var(--vft-success-color);--vft-link-hover-text-color:var(--vft-success-color-light-3);--vft-link-disabled-text-color:var(--vft-success-color-light-5)}.vft-link.vft-link--success:after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--success.is-underline:hover:after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--warning{--vft-link-text-color:var(--vft-warning-color);--vft-link-hover-text-color:var(--vft-warning-color-light-3);--vft-link-disabled-text-color:var(--vft-warning-color-light-5)}.vft-link.vft-link--warning:after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--warning.is-underline:hover:after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--danger{--vft-link-text-color:var(--vft-danger-color);--vft-link-hover-text-color:var(--vft-danger-color-light-3);--vft-link-disabled-text-color:var(--vft-danger-color-light-5)}.vft-link.vft-link--danger:after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--danger.is-underline:hover:after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--error{--vft-link-text-color:var(--vft-error-color);--vft-link-hover-text-color:var(--vft-error-color-light-3);--vft-link-disabled-text-color:var(--vft-error-color-light-5)}.vft-link.vft-link--error:after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--error.is-underline:hover:after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--info{--vft-link-text-color:var(--vft-info-color);--vft-link-hover-text-color:var(--vft-info-color-light-3);--vft-link-disabled-text-color:var(--vft-info-color-light-5)}.vft-link.vft-link--info:after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--info.is-underline:hover:after{border-color:var(--vft-link-text-color)}
1
+ :root{--vft-link-font-size:var(--vft-font-size-base);--vft-link-font-weight:var(--vft-font-weight-primary);--vft-link-text-color:var(--vft-text-regular-color);--vft-link-hover-text-color:var(--vft-primary-color);--vft-link-disabled-text-color:var(--vft-text-placeholder-color)}.vft-link{display:inline-flex;flex-direction:row;align-items:center;justify-content:center;vertical-align:middle;position:relative;text-decoration:none;outline:0;cursor:pointer;padding:0;font-size:var(--vft-link-font-size);font-weight:var(--vft-link-font-weight);color:var(--vft-link-text-color)}.vft-link.vft-link--primary{--vft-link-text-color:var(--vft-primary-color);--vft-link-hover-text-color:var(--vft-primary-color-light-3);--vft-link-disabled-text-color:var(--vft-primary-color-light-5)}.vft-link.vft-link--primary.is-underline:hover::after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--primary::after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--success{--vft-link-text-color:var(--vft-success-color);--vft-link-hover-text-color:var(--vft-success-color-light-3);--vft-link-disabled-text-color:var(--vft-success-color-light-5)}.vft-link.vft-link--success.is-underline:hover::after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--success::after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--warning{--vft-link-text-color:var(--vft-warning-color);--vft-link-hover-text-color:var(--vft-warning-color-light-3);--vft-link-disabled-text-color:var(--vft-warning-color-light-5)}.vft-link.vft-link--warning.is-underline:hover::after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--warning::after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--danger{--vft-link-text-color:var(--vft-danger-color);--vft-link-hover-text-color:var(--vft-danger-color-light-3);--vft-link-disabled-text-color:var(--vft-danger-color-light-5)}.vft-link.vft-link--danger.is-underline:hover::after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--danger::after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--error{--vft-link-text-color:var(--vft-error-color);--vft-link-hover-text-color:var(--vft-error-color-light-3);--vft-link-disabled-text-color:var(--vft-error-color-light-5)}.vft-link.vft-link--error.is-underline:hover::after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--error::after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--info{--vft-link-text-color:var(--vft-info-color);--vft-link-hover-text-color:var(--vft-info-color-light-3);--vft-link-disabled-text-color:var(--vft-info-color-light-5)}.vft-link.vft-link--info.is-underline:hover::after{border-color:var(--vft-link-text-color)}.vft-link.vft-link--info::after{border-color:var(--vft-link-text-color)}.vft-link.is-underline:hover::after{content:"";position:absolute;left:0;right:0;height:0;bottom:0;border-bottom:1px solid var(--vft-link-hover-text-color)}.vft-link.is-disabled{color:var(--vft-link-disabled-text-color);cursor:not-allowed}.vft-link__inner{display:inline-flex;justify-content:center;align-items:center}.vft-link:hover{color:var(--vft-link-hover-text-color)}.vft-link [class*=vft-icon-]+span{margin-left:5px}.vft-link.vft-link--default::after{border-color:var(--vft-link-hover-text-color)}
@@ -1 +1 @@
1
- :root{--vft-list-cell-height:40px;--vft-list-cell-hover-bg-color:transparent;--vft-list-cell-active-color:var(--vft-primary-color);--vft-list-cell-text-size:13px;--vft-list-cell-left-text-distance:6px;--vft-list-cell-padding:0px}.vft-list-cell__item{display:flex;justify-content:space-between;align-items:center;border-bottom:none;height:var(--vft-list-cell-height);cursor:pointer;transition:var(--vft-transition-all);padding:var(--vft-list-cell-padding)}.vft-list-cell__item:hover{background-color:var(--vft-list-cell-hover-bg-color)}.vft-list-cell__item.is-active .vft-list-cell__text{color:var(--vft-list-cell-active-color)}.vft-list-cell__item.is-active .vft-list-cell--right i{color:var(--vft-list-cell-active-color)}.vft-list-cell--left{display:flex;align-items:center;justify-content:flex-start}.vft-list-cell--left i{color:var(--vft-list-cell-active-color)}.vft-list-cell--left .vft-list-cell__text{font-size:var(--vft-list-cell-text-size);margin-left:var(--vft-list-cell-left-text-distance)}.vft-list-cell .icon-arrow-right{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512L340.864 831.872a30.592 30.592 0 0 0 0 42.752a29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512L340.864 831.872a30.592 30.592 0 0 0 0 42.752a29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}
1
+ :root{--vft-list-cell-height:40px;--vft-list-cell-hover-bg-color:transparent;--vft-list-cell-active-color:#2196f3;--vft-list-cell-text-size:13px;--vft-list-cell-left-text-distance:6px;--vft-list-cell-padding:0}.vft-list-cell__item{display:flex;justify-content:space-between;align-items:center;border-bottom:none;height:var(--vft-list-cell-height);cursor:pointer;transition:var(--vft-transition-all);padding:var(--vft-list-cell-padding)}.vft-list-cell__item.is-active .vft-list-cell__text{color:var(--vft-list-cell-active-color)}.vft-list-cell__item.is-active .vft-list-cell--right i{color:var(--vft-list-cell-active-color)}.vft-list-cell__item:hover{background-color:var(--vft-list-cell-hover-bg-color)}.vft-list-cell--left{display:flex;align-items:center;justify-content:flex-start}.vft-list-cell--left .vft-list-cell__text{font-size:var(--vft-list-cell-text-size);margin-left:var(--vft-list-cell-left-text-distance)}.vft-list-cell--left i{color:var(--vft-list-cell-active-color)}.vft-list-cell .icon-arrow-right{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512L340.864 831.872a30.592 30.592 0 0 0 0 42.752a29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512L340.864 831.872a30.592 30.592 0 0 0 0 42.752a29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}
@@ -1 +1 @@
1
- :root{--vft-loading-spinner-size:20px;--vft-loading-fullscreen-spinner-size:50px;--vft-loading-rotate-animation:loading-rotate 2s linear infinite;--vft-loading-color:var(--vft-primary-color);--vft-loading-text-size:14px;--vft-loading-margin:3px 0}.vft-loading-parent--relative{position:relative!important;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-loading-parent--hidden{overflow:hidden!important}.vft-loading-mask{position:absolute;z-index:2000;background-color:var(--vft-mask-color);margin:0;top:0;right:0;bottom:0;left:0;transition:opacity var(--vft-transition-duration)}.vft-loading-mask.is-fullscreen{position:fixed}.vft-loading-mask.is-fullscreen .vft-loading-spinner{margin-top:calc((0px - var(--vft-loading-fullscreen-spinner-size))/ 2)}.vft-loading-mask.is-fullscreen .vft-loading-spinner .circular{height:var(--vft-loading-fullscreen-spinner-size);width:var(--vft-loading-fullscreen-spinner-size)}.vft-loading-spinner{top:50%;margin-top:calc((0px - var(--vft-loading-spinner-size))/ 2);width:100%;text-align:center;position:absolute}.vft-loading-spinner .vft-loading-text{color:var(--vft-loading-color);margin:var(--vft-loading-margin);font-size:var(--vft-loading-text-size)}.vft-loading-spinner .circular{display:inline;height:var(--vft-loading-spinner-size);width:var(--vft-loading-spinner-size);animation:var(--vft-loading-rotate-animation)}.vft-loading-spinner .circular-no-rotate{animation:none}.vft-loading-spinner .path{animation:loading-dash 1.5s ease-in-out infinite;stroke-dasharray:90,150;stroke-dashoffset:0;stroke-width:2;stroke:var(--vft-primary-color);stroke-linecap:round}.vft-loading-spinner i{color:var(--vft-primary-color)}.vft-loading-fade-enter-from,.vft-loading-fade-leave-to{opacity:0}@keyframes loading-rotate{100%{transform:rotate(360deg)}}@keyframes loading-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-40px}100%{stroke-dasharray:90,150;stroke-dashoffset:-120px}}
1
+ :root{--vft-loading-spinner-size:20px;--vft-loading-fullscreen-spinner-size:50px;--vft-loading-rotate-animation:loading-rotate 2s linear infinite;--vft-loading-color:#2196f3;--vft-loading-text-size:14px;--vft-loading-margin:3px 0}.vft-loading-parent--relative{position:relative!important;pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-loading-parent--hidden{overflow:hidden!important}.vft-loading-mask{position:absolute;z-index:2000;background-color:var(--vft-mask-color);margin:0;top:0;right:0;bottom:0;left:0;transition:opacity var(--vft-transition-duration)}.vft-loading-mask.is-fullscreen{position:fixed}.vft-loading-mask.is-fullscreen .vft-loading-spinner{margin-top:calc((0px - var(--vft-loading-fullscreen-spinner-size))/ 2)}.vft-loading-mask.is-fullscreen .vft-loading-spinner .circular{height:var(--vft-loading-fullscreen-spinner-size);width:var(--vft-loading-fullscreen-spinner-size)}.vft-loading-spinner{top:50%;margin-top:calc((0px - var(--vft-loading-spinner-size))/ 2);width:100%;text-align:center;position:absolute}.vft-loading-spinner .vft-loading-text{color:var(--vft-loading-color);margin:var(--vft-loading-margin);font-size:var(--vft-loading-text-size)}.vft-loading-spinner .circular{display:inline;height:var(--vft-loading-spinner-size);width:var(--vft-loading-spinner-size);animation:var(--vft-loading-rotate-animation)}.vft-loading-spinner .circular-no-rotate{animation:none}.vft-loading-spinner .path{animation:loading-dash 1.5s ease-in-out infinite;stroke-dasharray:90,150;stroke-dashoffset:0;stroke-width:2;stroke:var(--vft-primary-color);stroke-linecap:round}.vft-loading-spinner i{color:var(--vft-primary-color)}.vft-loading-fade-enter-from,.vft-loading-fade-leave-to{opacity:0}@keyframes loading-rotate{100%{transform:rotate(360deg)}}@keyframes loading-dash{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-40px}100%{stroke-dasharray:90,150;stroke-dashoffset:-120px}}
@@ -1 +1 @@
1
- :root{--vft-logo-img-width:30px;--vft-logo-img-height:30px;--vft-logo-color:var(--vft-primary-color);--vft-logo-font-size:16px;--vft-logo-font-weight:400;--vft-logo-cursor:pointer}.vft-logo{display:flex;align-items:center;padding-left:20px;cursor:var(--vft-logo-cursor);transition:all .2s ease}.vft-logo__img{width:var(--vft-logo-img-width);height:var(--vft-logo-img-height)}.vft-logo__title{font-size:var(--vft-logo-font-size);font-weight:var(--vft-logo-font-weight);transition:all .5s;line-height:1;margin-left:5px;color:var(--vft-logo-color)}
1
+ :root{--vft-logo-img-width:30px;--vft-logo-img-height:30px;--vft-logo-color:#2196f3;--vft-logo-font-size:16px;--vft-logo-font-weight:400;--vft-logo-cursor:pointer}.vft-logo{display:flex;align-items:center;padding-left:20px;cursor:var(--vft-logo-cursor);transition:all .2s ease}.vft-logo__img{width:var(--vft-logo-img-width);height:var(--vft-logo-img-height)}.vft-logo__title{font-size:var(--vft-logo-font-size);font-weight:var(--vft-logo-font-weight);transition:all .5s;line-height:1;margin-left:5px;color:var(--vft-logo-color)}
@@ -1 +1 @@
1
- .vft-md-code-tabs .code-tabs-nav{overflow-x:auto;margin:.85rem 0 -.85rem;padding:0;border-radius:6px 6px 0 0;background:#c3def3;list-style:none;white-space:nowrap;transition:var(--vft-transition-all)}.vft-md-code-tabs .code-tabs-nav-tab{border-width:0;background:0 0;cursor:pointer;position:relative;min-width:3rem;margin:0;padding:6px 10px;border-radius:6px 6px 0 0;background:0 0;color:#2c3e50;font-weight:600;font-size:.85em;line-height:1.4;cursor:pointer;transition:var(--vft-transition-all)}.vft-md-code-tabs .code-tabs-nav-tab:hover{background:#d8e9f6}.vft-md-code-tabs .code-tabs-nav-tab::after,.vft-md-code-tabs .code-tabs-nav-tab::before{content:" ";position:absolute;bottom:0;z-index:1;width:6px;height:6px}.vft-md-code-tabs .code-tabs-nav-tab::before{right:100%}.vft-md-code-tabs .code-tabs-nav-tab::after{left:100%}.vft-md-code-tabs .code-tabs-nav-tab.active{background:#ecf4fa}.vft-md-code-tabs .code-tabs-nav-tab.active::before{background:radial-gradient(12px at left top,transparent 50%,#c3def3 50%)}.vft-md-code-tabs .code-tabs-nav-tab.active::after{background:radial-gradient(12px at right top,transparent 50%,#c3def3 50%)}.vft-md-code-tabs .code-tabs-nav-tab:first-child::before{display:none}.vft-md-code-tabs .code-tab{display:none}.vft-md-code-tabs .code-tab.active{display:block}.vft-md-code-tabs .code-tab div[class*=language-]{border-top-left-radius:0;border-top-right-radius:0}@media print{.vft-md-code-tabs .code-tab div[class*=language-] code{white-space:pre-wrap}}
1
+ .vft-md-code-tabs .code-tabs-nav{overflow-x:auto;margin:.85rem 0 -.85rem;padding:0;border-radius:6px 6px 0 0;background:#c3def3;list-style:none;white-space:nowrap;transition:var(--vft-transition-all)}.vft-md-code-tabs .code-tabs-nav-tab{position:relative;min-width:3rem;margin:0;padding:6px 10px;border-radius:6px 6px 0 0;background:0 0;color:#2c3e50;font-weight:600;font-size:.85em;line-height:1.4;cursor:pointer;transition:var(--vft-transition-all);border-width:0;background:0 0;cursor:pointer}.vft-md-code-tabs .code-tabs-nav-tab:hover{background:#d8e9f6}.vft-md-code-tabs .code-tabs-nav-tab::after,.vft-md-code-tabs .code-tabs-nav-tab::before{content:" ";position:absolute;bottom:0;z-index:1;width:6px;height:6px}.vft-md-code-tabs .code-tabs-nav-tab::before{right:100%}.vft-md-code-tabs .code-tabs-nav-tab::after{left:100%}.vft-md-code-tabs .code-tabs-nav-tab.active{background:#ecf4fa}.vft-md-code-tabs .code-tabs-nav-tab.active::before{background:radial-gradient(12px at left top,transparent 50%,#c3def3 50%)}.vft-md-code-tabs .code-tabs-nav-tab.active::after{background:radial-gradient(12px at right top,transparent 50%,#c3def3 50%)}.vft-md-code-tabs .code-tabs-nav-tab:first-child::before{display:none}.vft-md-code-tabs .code-tab{display:none}.vft-md-code-tabs .code-tab.active{display:block}.vft-md-code-tabs .code-tab div[class*=language-]{border-top-left-radius:0;border-top-right-radius:0}@media print{.vft-md-code-tabs .code-tab div[class*=language-] code{white-space:pre-wrap}}
@@ -1 +1 @@
1
- :root{--waline-font-size:1rem;--waline-white:#fff;--waline-light-grey:#999;--waline-dark-grey:#666;--waline-theme-color:#27ae60;--waline-active-color:#2ecc71;--waline-color:#444;--waline-bgcolor:#fff;--waline-bgcolor-light:#f8f8f8;--waline-bgcolor-hover:#f0f0f0;--waline-border-color:#ddd;--waline-disable-bgcolor:#f8f8f8;--waline-disable-color:#000;--waline-code-bgcolor:#282c34;--waline-bq-color:#f0f0f0;--waline-avatar-size:3.25rem;--waline-m-avatar-size:calc(var(--waline-avatar-size) * 9 / 13);--waline-badge-color:#3498db;--waline-badge-font-size:0.75em;--waline-info-bgcolor:#f8f8f8;--waline-info-color:#999;--waline-info-font-size:0.625em;--waline-border:1px solid var(--waline-border-color);--waline-avatar-radius:50%;--waline-box-shadow:none}.vft-md-comment #vft-md-comment__waline{max-width:var(--vft-md-container-content-max-width);min-width:300px}.vft-md-comment #vft-md-comment__waline a::after{content:"";display:none!important}.vft-md-comment #vft-md-comment__waline li{display:block}.vft-md-comment #vft-md-comment__waline .wl-like,.vft-md-comment #vft-md-comment__waline .wl-power{display:none}.vft-md-comment [data-waline]{font-size:var(--waline-font-size);text-align:start}.vft-md-comment [dir=rtl] [data-waline]{direction:rtl}.vft-md-comment [data-waline] *{box-sizing:content-box;line-height:1.75}.vft-md-comment [data-waline] p{color:var(--waline-color)}.vft-md-comment [data-waline] a{position:relative;display:inline-block;color:var(--waline-theme-color);text-decoration:none;word-break:break-word;cursor:pointer}.vft-md-comment [data-waline] a:hover{color:var(--waline-active-color)}.vft-md-comment [data-waline] img{max-width:100%;max-height:400px;border:none}.vft-md-comment [data-waline] hr{margin:.825em 0;border-style:dashed;border-color:var(--waline-bgcolor-light)}.vft-md-comment [data-waline] code,.vft-md-comment [data-waline] pre{margin:0;padding:.2em .4em;border-radius:3px;background:var(--waline-bgcolor-light);font-size:85%}.vft-md-comment [data-waline] pre{overflow:auto;padding:10px;line-height:1.45}.vft-md-comment [data-waline] pre::-webkit-scrollbar{width:6px;height:6px}.vft-md-comment [data-waline] pre::-webkit-scrollbar-track-piece:horizontal{border-radius:6px;background:rgba(0,0,0,.1)}.vft-md-comment [data-waline] pre::-webkit-scrollbar-thumb:horizontal{width:6px;border-radius:6px;background:var(--waline-theme-color)}.vft-md-comment [data-waline] pre code{padding:0;background:rgba(0,0,0,0);color:var(--waline-color);white-space:pre-wrap;word-break:keep-all}.vft-md-comment [data-waline] blockquote{margin:.5em 0;padding:.5em 0 .5em 1em;border-inline-start:8px solid var(--waline-bq-color);color:var(--waline-dark-grey)}.vft-md-comment [data-waline] blockquote>p{margin:0}.vft-md-comment [data-waline] ol,.vft-md-comment [data-waline] ul{margin-inline-start:1.25em;padding:0}.vft-md-comment [data-waline] input[type=checkbox],.vft-md-comment [data-waline] input[type=radio]{display:inline-block;vertical-align:middle;margin-top:-2px}.vft-md-comment .wl-btn{display:inline-block;vertical-align:middle;min-width:2.5em;margin-bottom:0;padding:.5em 1em;border:1px solid var(--waline-border-color);border-radius:.5em;background:rgba(0,0,0,0);color:var(--waline-color);font-weight:400;font-size:.75em;line-height:1.5;text-align:center;white-space:nowrap;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;transition-duration:.4s;touch-action:manipulation}.vft-md-comment .wl-btn:active,.vft-md-comment .wl-btn:hover{border-color:var(--waline-theme-color);color:var(--waline-theme-color)}.vft-md-comment .wl-btn:disabled{border-color:var(--waline-border-color);background:var(--waline-disable-bgcolor);color:var(--waline-disable-color);cursor:not-allowed}.vft-md-comment .wl-btn.primary{border-color:var(--waline-theme-color);background:var(--waline-theme-color);color:var(--waline-white)}.vft-md-comment .wl-btn.primary:active,.vft-md-comment .wl-btn.primary:hover{border-color:var(--waline-active-color);background:var(--waline-active-color);color:var(--waline-white)}.vft-md-comment .wl-btn.primary:disabled{border-color:var(--waline-border-color);background:var(--waline-disable-bgcolor);color:var(--waline-disable-color);cursor:not-allowed}.vft-md-comment .wl-loading{text-align:center}.vft-md-comment .wl-loading svg{margin:0 auto}.vft-md-comment .wl-comment{position:relative;display:flex;margin-bottom:.75em}.vft-md-comment .wl-close{position:absolute;top:-4px;inset-inline-end:-4px;padding:0;border:none;background:rgba(0,0,0,0);line-height:1;cursor:pointer}.vft-md-comment .wl-login-info{max-width:80px;margin-top:.75em;text-align:center}.vft-md-comment .wl-logout-btn{position:absolute;top:-10px;inset-inline-end:-10px;padding:3px;border:none;background:rgba(0,0,0,0);line-height:0;cursor:pointer}.vft-md-comment .wl-avatar{position:relative;width:var(--waline-avatar-size);height:var(--waline-avatar-size);margin:0 auto;border:var(--waline-border);border-radius:var(--waline-avatar-radius)}@media (max-width:720px){.vft-md-comment .wl-avatar{width:var(--waline-m-avatar-size);height:var(--waline-m-avatar-size)}}.vft-md-comment .wl-avatar img{width:100%;height:100%;border-radius:var(--waline-avatar-radius)}.vft-md-comment .wl-login-nick{display:block;color:var(--waline-theme-color);font-size:.75em;word-break:break-all}.vft-md-comment .wl-panel{position:relative;flex-shrink:1;width:100%;margin:.5em;border:var(--waline-border);border-radius:.75em;background:var(--waline-bgcolor);box-shadow:var(--waline-box-shadow)}.vft-md-comment .wl-header{display:flex;overflow:hidden;padding:0 4px;border-bottom:2px dashed var(--waline-border-color);border-top-left-radius:.75em;border-top-right-radius:.75em}@media (max-width:580px){.vft-md-comment .wl-header{display:block}}.vft-md-comment .wl-header label{min-width:40px;padding:.75em .5em;color:var(--waline-color);font-size:.75em;text-align:center}.vft-md-comment .wl-header input{flex:1;width:0;padding:.5em;background:rgba(0,0,0,0);font-size:.625em;resize:none}.vft-md-comment .wl-header-item{display:flex;flex:1}@media (max-width:580px){.vft-md-comment .wl-header-item:not(:last-child){border-bottom:2px dashed var(--waline-border-color)}}.vft-md-comment .wl-header-1 .wl-header-item{width:100%}.vft-md-comment .wl-header-2 .wl-header-item{width:50%}@media (max-width:580px){.vft-md-comment .wl-header-2 .wl-header-item{flex:0;width:100%}}.vft-md-comment .wl-header-3 .wl-header-item{width:33.33%}@media (max-width:580px){.vft-md-comment .wl-header-3 .wl-header-item{width:100%}}.vft-md-comment .wl-editor{position:relative;width:calc(100% - 1em);min-height:8.75em;margin:.75em .5em;border-radius:.5em;background:rgba(0,0,0,0);font-size:.875em;resize:vertical}.vft-md-comment .wl-editor,.vft-md-comment .wl-input{max-width:100%;border:none;color:var(--waline-color);outline:0;transition:all .25s ease}.vft-md-comment .wl-editor:focus,.vft-md-comment .wl-input:focus{background:var(--waline-bgcolor-light)}.vft-md-comment .wl-preview{padding:0 .5em .5em}.vft-md-comment .wl-preview h4{margin:.25em;font-weight:700;font-size:.9375em}.vft-md-comment .wl-preview .wl-content{min-height:1.25em;padding:.25em;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.vft-md-comment .wl-preview .wl-content>:first-child{margin-top:0}.vft-md-comment .wl-preview .wl-content>:last-child{margin-bottom:0}.vft-md-comment .wl-footer{position:relative;display:flex;flex-wrap:wrap;margin:.5em .75em}.vft-md-comment .wl-actions{display:flex;flex:2;align-items:center}.vft-md-comment .wl-action{display:inline-flex;align-items:center;justify-content:center;width:1.5em;height:1.5em;margin:2px;padding:0;border:none;background:rgba(0,0,0,0);color:var(--waline-color);font-size:16px;cursor:pointer}.vft-md-comment .wl-action:hover{color:var(--waline-theme-color)}.vft-md-comment .wl-action.active{color:var(--waline-active-color)}.vft-md-comment #wl-image-upload{display:none}.vft-md-comment #wl-image-upload:focus+label{color:var(--waline-color)}.vft-md-comment #wl-image-upload:focus-visible+label{outline:-webkit-focus-ring-color auto 1px}.vft-md-comment .wl-info{display:flex;flex:3;align-items:center;justify-content:flex-end}.vft-md-comment .wl-info .wl-text-number{color:var(--waline-info-color);font-size:.75em}.vft-md-comment .wl-info .wl-text-number .illegal{color:red}.vft-md-comment .wl-info button{margin-inline-start:.75em}.vft-md-comment .wl-info button svg{display:block;margin:0 auto;line-height:18px}.vft-md-comment .wl-emoji-popup{position:absolute;top:100%;inset-inline-start:1.25em;z-index:10;max-width:526px;border:var(--waline-border);border-radius:6px;background:var(--waline-bgcolor);box-shadow:var(--waline-box-shadow);opacity:0;visibility:hidden;transition:transform .2s ease-out,opacity .2s ease-out;transform:scale(.9,.9);transform-origin:0 0}.vft-md-comment .wl-emoji-popup.display{opacity:1;visibility:visible;transform:none}.vft-md-comment .wl-emoji-popup button{display:inline-block;vertical-align:middle;width:2em;margin:.125em;padding:0;border-width:0;background:rgba(0,0,0,0);font-size:inherit;line-height:2;text-align:center;cursor:pointer}.vft-md-comment .wl-emoji-popup button:hover{background:var(--waline-bgcolor-hover)}.vft-md-comment .wl-emoji-popup .wl-emoji{display:inline-block;vertical-align:middle;max-width:1.5em;max-height:1.5em}.vft-md-comment .wl-emoji-popup .wl-tab-wrapper{overflow-y:auto;max-height:145px;padding:.5em}.vft-md-comment .wl-emoji-popup .wl-tab-wrapper::-webkit-scrollbar{width:6px;height:6px}.vft-md-comment .wl-emoji-popup .wl-tab-wrapper::-webkit-scrollbar-track-piece:vertical{border-radius:6px;background:rgba(0,0,0,.1)}.vft-md-comment .wl-emoji-popup .wl-tab-wrapper::-webkit-scrollbar-thumb:vertical{width:6px;border-radius:6px;background:var(--waline-theme-color)}.vft-md-comment .wl-emoji-popup .wl-tabs{position:relative;overflow-x:auto;padding:0 6px;white-space:nowrap}.vft-md-comment .wl-emoji-popup .wl-tabs::before{content:" ";position:absolute;top:0;right:0;left:0;z-index:2;height:1px;background:var(--waline-border-color)}.vft-md-comment .wl-emoji-popup .wl-tabs::-webkit-scrollbar{width:6px;height:6px}.vft-md-comment .wl-emoji-popup .wl-tabs::-webkit-scrollbar-track-piece:horizontal{border-radius:6px;background:rgba(0,0,0,.1)}.vft-md-comment .wl-emoji-popup .wl-tabs::-webkit-scrollbar-thumb:horizontal{height:6px;border-radius:6px;background:var(--waline-theme-color)}.vft-md-comment .wl-emoji-popup .wl-tab{position:relative;margin:0;padding:0 .5em}.vft-md-comment .wl-emoji-popup .wl-tab.active{z-index:3;border:1px solid var(--waline-border-color);border-top-width:0;border-bottom-right-radius:6px;border-bottom-left-radius:6px;background:var(--waline-bgcolor)}.vft-md-comment .wl-gif-popup{position:absolute;top:100%;inset-inline-start:1.25em;z-index:10;width:calc(100% - 3em);padding:.75em .75em .25em;border:var(--waline-border);border-radius:6px;background:var(--waline-bgcolor);box-shadow:var(--waline-box-shadow);opacity:0;visibility:hidden;transition:transform .2s ease-out,opacity .2s ease-out;transform:scale(.9,.9);transform-origin:0 0}.vft-md-comment .wl-gif-popup.display{opacity:1;visibility:visible;transform:none}.vft-md-comment .wl-gif-popup input{box-sizing:border-box;width:100%;margin-bottom:10px;padding:3px 5px;border:var(--waline-border)}.vft-md-comment .wl-gif-popup img{display:block;box-sizing:border-box;width:100%;border-width:2px;border-style:solid;border-color:#fff;cursor:pointer}.vft-md-comment .wl-gif-popup img:hover{border-color:var(--waline-theme-color);border-radius:2px}.vft-md-comment .wl-gallery{display:flex;overflow-y:auto;max-height:80vh}.vft-md-comment .wl-gallery-column{display:flex;flex:1;flex-direction:column;height:-moz-max-content;height:max-content}.vft-md-comment .wl-cards .wl-user{--avatar-size:var(--waline-avatar-size);position:relative;margin-inline-end:.75em}@media (max-width:720px){.vft-md-comment .wl-cards .wl-user{--avatar-size:var(--waline-m-avatar-size)}}.vft-md-comment .wl-cards .wl-user img{width:var(--avatar-size);height:var(--avatar-size);border-radius:var(--waline-avatar-radius);box-shadow:var(--waline-box-shadow)}.vft-md-comment .wl-cards .wl-user .verified-icon{position:absolute;top:calc(var(--avatar-size) * 3 / 4);inset-inline-start:calc(var(--avatar-size) * 3 / 4);border-radius:50%;background:var(--waline-bgcolor);box-shadow:var(--waline-box-shadow)}.vft-md-comment .wl-card-item{position:relative;display:flex;padding:.5em}.vft-md-comment .wl-card-item .wl-card-item{padding-inline-end:0}.vft-md-comment .wl-card{flex:1;width:0;padding-bottom:.5em;border-bottom:1px dashed var(--waline-border-color)}.vft-md-comment .wl-card:first-child{margin-inline-start:1em}.vft-md-comment .wl-card-item:last-child>.wl-card{border-bottom:none}.vft-md-comment .wl-card .wl-nick svg{position:relative;bottom:-.125em;line-height:1}.vft-md-comment .wl-card .wl-head{overflow:hidden;line-height:1.5}.vft-md-comment .wl-card .wl-head .wl-nick{position:relative;display:inline-block;margin-inline-end:.5em;font-weight:700;font-size:.875em;line-height:1;text-decoration:none}.vft-md-comment .wl-card span.wl-nick{color:var(--waline-dark-grey)}.vft-md-comment .wl-card .wl-badge{display:inline-block;margin-inline-end:1em;padding:0 .3em;border:1px solid var(--waline-badge-color);border-radius:4px;color:var(--waline-badge-color);font-size:var(--waline-badge-font-size)}.vft-md-comment .wl-card .wl-time{margin-inline-end:.875em;color:var(--waline-info-color);font-size:.75em}.vft-md-comment .wl-card .wl-meta{position:relative;line-height:1}.vft-md-comment .wl-card .wl-meta>span{display:inline-block;margin-inline-end:.25em;padding:2px 4px;border-radius:.2em;background:var(--waline-info-bgcolor);color:var(--waline-info-color);font-size:var(--waline-info-font-size);line-height:1.5}.vft-md-comment .wl-card .wl-meta>span:empty{display:none}.vft-md-comment .wl-card .wl-comment-actions{float:right;line-height:1}.vft-md-comment [dir=rtl] .wl-card .wl-comment-actions{float:left}.vft-md-comment .wl-card .wl-delete,.vft-md-comment .wl-card .wl-edit,.vft-md-comment .wl-card .wl-like,.vft-md-comment .wl-card .wl-reply{display:inline-flex;align-items:center;border:none;background:rgba(0,0,0,0);color:var(--waline-color);line-height:1;cursor:pointer;transition:color .2s ease}.vft-md-comment .wl-card .wl-delete:hover,.vft-md-comment .wl-card .wl-edit:hover,.vft-md-comment .wl-card .wl-like:hover,.vft-md-comment .wl-card .wl-reply:hover{color:var(--waline-theme-color)}.vft-md-comment .wl-card .wl-delete.active,.vft-md-comment .wl-card .wl-edit.active,.vft-md-comment .wl-card .wl-like.active,.vft-md-comment .wl-card .wl-reply.active{color:var(--waline-active-color)}.vft-md-comment .wl-card .wl-content{position:relative;margin-bottom:.75em;padding-top:.625em;font-size:.875em;line-height:2;word-wrap:break-word}.vft-md-comment .wl-card .wl-content.expand{overflow:hidden;max-height:8em;cursor:pointer}.vft-md-comment .wl-card .wl-content.expand::before{content:"";position:absolute;top:0;bottom:3.15em;inset-inline-start:0;z-index:999;display:block;width:100%;background:linear-gradient(180deg,#000,rgba(255,255,255,.9))}.vft-md-comment .wl-card .wl-content.expand::after{content:attr(data-expand);position:absolute;bottom:0;inset-inline-start:0;z-index:999;display:block;width:100%;height:3.15em;background:rgba(255,255,255,.9);color:#828586;line-height:3.15em;text-align:center}.vft-md-comment .wl-card .wl-content>:first-child{margin-top:0}.vft-md-comment .wl-card .wl-content>:last-child{margin-bottom:0}.vft-md-comment .wl-card .wl-admin-actions{margin:8px 0;font-size:12px;text-align:right}.vft-md-comment .wl-card .wl-comment-status{margin:0 8px}.vft-md-comment .wl-card .wl-comment-status .wl-btn{border-radius:0}.vft-md-comment .wl-card .wl-comment-status .wl-btn:first-child{border-inline-end:0;border-radius:.5em 0 0 .5em}.vft-md-comment .wl-card .wl-comment-status .wl-btn:last-child{border-inline-start:0;border-radius:0 .5em .5em 0}.vft-md-comment .wl-card .wl-quote{border-inline-start:1px dashed rgba(237,237,237,.5)}.vft-md-comment .wl-card .wl-quote .wl-user{--avatar-size:var(--waline-m-avatar-size)}.vft-md-comment .wl-close-icon{color:var(--waline-border-color)}.vft-md-comment .wl-content .vemoji,.vft-md-comment .wl-content .wl-emoji{display:inline-block;vertical-align:baseline;height:1.25em;margin:-.125em .25em}.vft-md-comment .wl-content .wl-tex{background:var(--waline-info-bgcolor);color:var(--waline-info-color)}.vft-md-comment .wl-content span.wl-tex{display:inline-block;margin-inline-end:.25em;padding:2px 4px;border-radius:.2em;font-size:var(--waline-info-font-size);line-height:1.5}.vft-md-comment .wl-content p.wl-tex{text-align:center}.vft-md-comment .wl-content .katex-display{overflow:auto hidden;-webkit-overflow-scrolling:touch;padding-top:.2em;padding-bottom:.2em}.vft-md-comment .wl-content .katex-display::-webkit-scrollbar{height:3px}.vft-md-comment .wl-content .katex-error{color:red}.vft-md-comment .wl-count{flex:1;font-weight:700;font-size:1.25em}.vft-md-comment .wl-empty{overflow:auto;padding:1.25em;color:var(--waline-color);text-align:center}.vft-md-comment .wl-operation{text-align:center}.vft-md-comment .wl-operation button{margin:1em 0}.vft-md-comment .wl-power{padding:.5em 0;color:var(--waline-light-grey);font-size:var(--waline-info-font-size);text-align:end}.vft-md-comment .wl-meta-head{display:flex;flex-direction:row;align-items:center;padding:.375em}.vft-md-comment .wl-sort{margin:0;list-style-type:none}.vft-md-comment .wl-sort li{display:inline-block;color:var(--waline-info-color);font-size:.75em;cursor:pointer}.vft-md-comment .wl-sort li.active{color:var(--waline-theme-color)}.vft-md-comment .wl-sort li+li{margin-inline-start:1em}.vft-md-comment .wl-reaction{overflow:auto hidden;margin-bottom:1.75em;text-align:center}.vft-md-comment .wl-reaction img{width:100%;height:100%;transition:all 250ms ease-in-out}.vft-md-comment .wl-reaction-title{margin:16px auto;font-weight:700;font-size:18px}.vft-md-comment .wl-reaction-list{display:flex;flex-direction:row;gap:16px;justify-content:center;margin:0;padding:8px;list-style-type:none}@media (max-width:580px){.vft-md-comment .wl-reaction-list{gap:12px}}.vft-md-comment [data-waline] .wl-reaction-list{margin-inline-start:0}.vft-md-comment .wl-reaction-item{display:flex;flex-direction:column;align-items:center;cursor:pointer}.vft-md-comment .wl-reaction-item.active img,.vft-md-comment .wl-reaction-item:hover img{transform:scale(1.15)}.vft-md-comment .wl-reaction-img{position:relative;width:42px;height:42px}@media (max-width:580px){.vft-md-comment .wl-reaction-img{width:32px;height:32px}}.vft-md-comment .wl-reaction-loading{position:absolute;top:-4px;inset-inline-end:-5px;width:18px;height:18px;color:var(--waline-theme-color)}.vft-md-comment .wl-reaction-votes{position:absolute;top:-9px;inset-inline-end:-9px;min-width:1em;padding:2px;border:1px solid var(--waline-theme-color);border-radius:1em;background:var(--waline-bgcolor);color:var(--waline-theme-color);font-weight:700;font-size:.75em;line-height:1}.vft-md-comment .wl-reaction-item.active .wl-reaction-votes{background:var(--waline-theme-color);color:var(--waline-bgcolor)}.vft-md-comment .wl-reaction-text{font-size:.875em}.vft-md-comment .wl-reaction-item.active .wl-reaction-text{color:var(--waline-theme-color)}.vft-md-comment .wl-content pre,.vft-md-comment .wl-content pre[class*=language-]{overflow:auto;margin:.75rem 0;padding:1rem 1.25rem;border-radius:6px;background:var(--waline-code-bgcolor);line-height:1.4}.vft-md-comment .wl-content pre code,.vft-md-comment .wl-content pre[class*=language-] code{padding:0;border-radius:0;background:rgba(0,0,0,0)!important;color:#bbb;direction:ltr}.vft-md-comment .wl-content code[class*=language-],.vft-md-comment .wl-content pre[class*=language-]{background:0 0;color:#ccc;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-wrap:normal;word-break:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}.vft-md-comment .wl-content pre[class*=language-]{overflow:auto}.vft-md-comment .wl-content :not(pre)>code[class*=language-],.vft-md-comment .wl-content pre[class*=language-]{background:#2d2d2d}.vft-md-comment .wl-content :not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.vft-md-comment .wl-content .token.block-comment,.vft-md-comment .wl-content .token.cdata,.vft-md-comment .wl-content .token.comment,.vft-md-comment .wl-content .token.doctype,.vft-md-comment .wl-content .token.prolog{color:#999}.vft-md-comment .wl-content .token.punctuation{color:#ccc}.vft-md-comment .wl-content .token.attr-name,.vft-md-comment .wl-content .token.deleted,.vft-md-comment .wl-content .token.namespace,.vft-md-comment .wl-content .token.tag{color:#e2777a}.vft-md-comment .wl-content .token.function-name{color:#6196cc}.vft-md-comment .wl-content .token.boolean,.vft-md-comment .wl-content .token.function,.vft-md-comment .wl-content .token.number{color:#f08d49}.vft-md-comment .wl-content .token.class-name,.vft-md-comment .wl-content .token.constant,.vft-md-comment .wl-content .token.property,.vft-md-comment .wl-content .token.symbol{color:#f8c555}.vft-md-comment .wl-content .token.atrule,.vft-md-comment .wl-content .token.builtin,.vft-md-comment .wl-content .token.important,.vft-md-comment .wl-content .token.keyword,.vft-md-comment .wl-content .token.selector{color:#cc99cd}.vft-md-comment .wl-content .token.attr-value,.vft-md-comment .wl-content .token.char,.vft-md-comment .wl-content .token.regex,.vft-md-comment .wl-content .token.string,.vft-md-comment .wl-content .token.variable{color:#7ec699}.vft-md-comment .wl-content .token.entity,.vft-md-comment .wl-content .token.operator,.vft-md-comment .wl-content .token.url{color:#67cdcc}.vft-md-comment .wl-content .token.bold,.vft-md-comment .wl-content .token.important{font-weight:700}.vft-md-comment .wl-content .token.italic{font-style:italic}.vft-md-comment .wl-content .token.entity{cursor:help}.vft-md-comment .wl-content .token.inserted{color:green}.vft-md-comment .wl-recent-item p{display:inline}.vft-md-comment .wl-user-list{padding:0;list-style:none}.vft-md-comment .wl-user-list a,.vft-md-comment .wl-user-list a:hover,.vft-md-comment .wl-user-list a:visited{color:var(--waline-color);text-decoration:none}.vft-md-comment .wl-user-list .wl-user-avatar{position:relative;display:inline-block;overflow:hidden;margin-inline-end:10px;border-radius:4px;line-height:0}.vft-md-comment .wl-user-list .wl-user-avatar>img{width:var(--waline-user-avatar-size,48px);height:var(--waline-user-avatar-size,48px)}.vft-md-comment .wl-user-list .wl-user-badge{position:absolute;bottom:0;inset-inline-end:0;min-width:.7em;height:1.5em;padding:0 .4em;border-radius:4px;background:var(--waline-info-bgcolor);color:var(--waline-info-color);font-weight:700;font-size:10px;line-height:1.5em;text-align:center}.vft-md-comment .wl-user-list .wl-user-item{margin:10px 0}.vft-md-comment .wl-user-list .wl-user-item:nth-child(1) .wl-user-badge{background:var(--waline-rank-gold-bgcolor,#fa3939);color:var(--waline-white);font-weight:700}.vft-md-comment .wl-user-list .wl-user-item:nth-child(2) .wl-user-badge{background:var(--waline-rank-silver-bgcolor,#fb811c);color:var(--waline-white);font-weight:700}.vft-md-comment .wl-user-list .wl-user-item:nth-child(3) .wl-user-badge{background:var(--waline-rank-copper-bgcolor,#feb207);color:var(--waline-white)}.vft-md-comment .wl-user-list .wl-user-meta{display:inline-block;vertical-align:top}.vft-md-comment .wl-user-list .wl-badge{display:inline-block;vertical-align:text-top;margin-inline-start:.5em;padding:0 .3em;border:1px solid var(--waline-badge-color);border-radius:4px;color:var(--waline-badge-color);font-size:var(--waline-badge-font-size)}.vft-md-comment .wl-user-wall{padding:0;list-style:none}.vft-md-comment .wl-user-wall .wl-user-badge,.vft-md-comment .wl-user-wall .wl-user-meta{display:none}.vft-md-comment .wl-user-wall .wl-user-item{position:relative;display:inline-block;transition:transform ease-in-out .2s}.vft-md-comment .wl-user-wall .wl-user-item::after,.vft-md-comment .wl-user-wall .wl-user-item::before{position:absolute;bottom:100%;left:50%;z-index:10;opacity:0;pointer-events:none;transition:all .18s ease-out .18s;transform:translate(-50%,4px);transform-origin:top}.vft-md-comment .wl-user-wall .wl-user-item::before{content:"";width:0;height:0;border:5px solid transparent;border-top-color:rgba(16,16,16,.95)}.vft-md-comment .wl-user-wall .wl-user-item::after{content:attr(aria-label);margin-bottom:10px;padding:.5em 1em;border-radius:2px;background:rgba(16,16,16,.95);color:#fff;font-size:12px;white-space:nowrap}.vft-md-comment .wl-user-wall .wl-user-item:hover{transform:scale(1.1)}.vft-md-comment .wl-user-wall .wl-user-item:hover::after,.vft-md-comment .wl-user-wall .wl-user-item:hover::before{opacity:1;pointer-events:none;transform:translate(-50%,0)}.vft-md-comment .wl-user-wall .wl-user-item img{width:var(--waline-user-avatar-size,48px);height:var(--waline-user-avatar-size,48px)}
1
+ :root{--waline-font-size:1rem;--waline-white:#fff;--waline-light-grey:#999;--waline-dark-grey:#666;--waline-theme-color:#27ae60;--waline-active-color:#2ecc71;--waline-color:#444;--waline-bgcolor:#fff;--waline-bgcolor-light:#f8f8f8;--waline-bgcolor-hover:#f0f0f0;--waline-border-color:#ddd;--waline-disable-bgcolor:#f8f8f8;--waline-disable-color:#000;--waline-code-bgcolor:#282c34;--waline-bq-color:#f0f0f0;--waline-avatar-size:3.25rem;--waline-m-avatar-size:calc(var(--waline-avatar-size) * 9 / 13);--waline-badge-color:#3498db;--waline-badge-font-size:0.75em;--waline-info-bgcolor:#f8f8f8;--waline-info-color:#999;--waline-info-font-size:0.625em;--waline-border:1px solid var(--waline-border-color);--waline-avatar-radius:50%;--waline-box-shadow:none}@media (width <= 720px){.vft-md-comment .wl-avatar{width:var(--waline-m-avatar-size);height:var(--waline-m-avatar-size)}}@media (width <= 580px){.vft-md-comment .wl-header{display:block}}@media (width <= 580px){.vft-md-comment .wl-header-item:not(:last-child){border-bottom:2px dashed var(--waline-border-color)}}@media (width <= 580px){.vft-md-comment .wl-header-2 .wl-header-item{flex:0;width:100%}}@media (width <= 580px){.vft-md-comment .wl-header-3 .wl-header-item{width:100%}}@media (width <= 720px){.vft-md-comment .wl-cards .wl-user{--avatar-size:var(--waline-m-avatar-size)}}@media (width <= 580px){.vft-md-comment .wl-reaction-list{gap:12px}}@media (width <= 580px){.vft-md-comment .wl-reaction-img{width:32px;height:32px}}.vft-md-comment #vft-md-comment__waline{max-width:var(--vft-md-container-content-max-width);min-width:300px}.vft-md-comment #vft-md-comment__waline a::after{content:"";display:none!important}.vft-md-comment #vft-md-comment__waline li{display:block}.vft-md-comment #vft-md-comment__waline .wl-like,.vft-md-comment #vft-md-comment__waline .wl-power{display:none}.vft-md-comment [data-waline]{font-size:var(--waline-font-size);text-align:start}.vft-md-comment [dir=rtl] [data-waline]{direction:rtl}.vft-md-comment [data-waline] *{box-sizing:content-box;line-height:1.75}.vft-md-comment [data-waline] p{color:var(--waline-color)}.vft-md-comment [data-waline] a{position:relative;display:inline-block;color:var(--waline-theme-color);text-decoration:none;word-break:break-word;cursor:pointer}.vft-md-comment [data-waline] a:hover{color:var(--waline-active-color)}.vft-md-comment [data-waline] img{max-width:100%;max-height:400px;border:none}.vft-md-comment [data-waline] hr{margin:.825em 0;border-style:dashed;border-color:var(--waline-bgcolor-light)}.vft-md-comment [data-waline] code,.vft-md-comment [data-waline] pre{margin:0;padding:.2em .4em;border-radius:3px;background:var(--waline-bgcolor-light);font-size:85%}.vft-md-comment [data-waline] pre{overflow:auto;padding:10px;line-height:1.45}.vft-md-comment [data-waline] pre::-webkit-scrollbar{width:6px;height:6px}.vft-md-comment [data-waline] pre::-webkit-scrollbar-track-piece:horizontal{border-radius:6px;background:rgba(0,0,0,.1)}.vft-md-comment [data-waline] pre::-webkit-scrollbar-thumb:horizontal{width:6px;border-radius:6px;background:var(--waline-theme-color)}.vft-md-comment [data-waline] pre code{padding:0;background:rgba(0,0,0,0);color:var(--waline-color);white-space:pre-wrap;word-break:keep-all}.vft-md-comment [data-waline] blockquote{margin:.5em 0;padding:.5em 0 .5em 1em;border-inline-start:8px solid var(--waline-bq-color);color:var(--waline-dark-grey)}.vft-md-comment [data-waline] blockquote>p{margin:0}.vft-md-comment [data-waline] ol,.vft-md-comment [data-waline] ul{margin-inline-start:1.25em;padding:0}.vft-md-comment [data-waline] input[type=checkbox],.vft-md-comment [data-waline] input[type=radio]{display:inline-block;vertical-align:middle;margin-top:-2px}.vft-md-comment .wl-btn{display:inline-block;vertical-align:middle;min-width:2.5em;margin-bottom:0;padding:.5em 1em;border:1px solid var(--waline-border-color);border-radius:.5em;background:rgba(0,0,0,0);color:var(--waline-color);font-weight:400;font-size:.75em;line-height:1.5;text-align:center;white-space:nowrap;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;transition-duration:.4s;touch-action:manipulation}.vft-md-comment .wl-btn:active,.vft-md-comment .wl-btn:hover{border-color:var(--waline-theme-color);color:var(--waline-theme-color)}.vft-md-comment .wl-btn:disabled{border-color:var(--waline-border-color);background:var(--waline-disable-bgcolor);color:var(--waline-disable-color);cursor:not-allowed}.vft-md-comment .wl-btn.primary{border-color:var(--waline-theme-color);background:var(--waline-theme-color);color:var(--waline-white)}.vft-md-comment .wl-btn.primary:active,.vft-md-comment .wl-btn.primary:hover{border-color:var(--waline-active-color);background:var(--waline-active-color);color:var(--waline-white)}.vft-md-comment .wl-btn.primary:disabled{border-color:var(--waline-border-color);background:var(--waline-disable-bgcolor);color:var(--waline-disable-color);cursor:not-allowed}.vft-md-comment .wl-loading{text-align:center}.vft-md-comment .wl-loading svg{margin:0 auto}.vft-md-comment .wl-comment{position:relative;display:flex;margin-bottom:.75em}.vft-md-comment .wl-close{position:absolute;top:-4px;inset-inline-end:-4px;padding:0;border:none;background:rgba(0,0,0,0);line-height:1;cursor:pointer}.vft-md-comment .wl-login-info{max-width:80px;margin-top:.75em;text-align:center}.vft-md-comment .wl-logout-btn{position:absolute;top:-10px;inset-inline-end:-10px;padding:3px;border:none;background:rgba(0,0,0,0);line-height:0;cursor:pointer}.vft-md-comment .wl-avatar{position:relative;width:var(--waline-avatar-size);height:var(--waline-avatar-size);margin:0 auto;border:var(--waline-border);border-radius:var(--waline-avatar-radius)}.vft-md-comment .wl-avatar img{width:100%;height:100%;border-radius:var(--waline-avatar-radius)}.vft-md-comment .wl-login-nick{display:block;color:var(--waline-theme-color);font-size:.75em;word-break:break-all}.vft-md-comment .wl-panel{position:relative;flex-shrink:1;width:100%;margin:.5em;border:var(--waline-border);border-radius:.75em;background:var(--waline-bgcolor);box-shadow:var(--waline-box-shadow)}.vft-md-comment .wl-header{display:flex;overflow:hidden;padding:0 4px;border-bottom:2px dashed var(--waline-border-color);border-top-left-radius:.75em;border-top-right-radius:.75em}.vft-md-comment .wl-header label{min-width:40px;padding:.75em .5em;color:var(--waline-color);font-size:.75em;text-align:center}.vft-md-comment .wl-header input{flex:1;width:0;padding:.5em;background:rgba(0,0,0,0);font-size:.625em;resize:none}.vft-md-comment .wl-header-item{display:flex;flex:1}.vft-md-comment .wl-header-1 .wl-header-item{width:100%}.vft-md-comment .wl-header-2 .wl-header-item{width:50%}.vft-md-comment .wl-header-3 .wl-header-item{width:33.33%}.vft-md-comment .wl-editor{position:relative;width:calc(100% - 1em);min-height:8.75em;margin:.75em .5em;border-radius:.5em;background:rgba(0,0,0,0);font-size:.875em;resize:vertical}.vft-md-comment .wl-editor,.vft-md-comment .wl-input{max-width:100%;border:none;color:var(--waline-color);outline:0;transition:all .25s ease}.vft-md-comment .wl-editor:focus,.vft-md-comment .wl-input:focus{background:var(--waline-bgcolor-light)}.vft-md-comment .wl-preview{padding:0 .5em .5em}.vft-md-comment .wl-preview h4{margin:.25em;font-weight:700;font-size:.9375em}.vft-md-comment .wl-preview .wl-content{min-height:1.25em;padding:.25em;word-break:break-word;-webkit-hyphens:auto;hyphens:auto}.vft-md-comment .wl-preview .wl-content>:first-child{margin-top:0}.vft-md-comment .wl-preview .wl-content>:last-child{margin-bottom:0}.vft-md-comment .wl-footer{position:relative;display:flex;flex-wrap:wrap;margin:.5em .75em}.vft-md-comment .wl-actions{display:flex;flex:2;align-items:center}.vft-md-comment .wl-action{display:inline-flex;align-items:center;justify-content:center;width:1.5em;height:1.5em;margin:2px;padding:0;border:none;background:rgba(0,0,0,0);color:var(--waline-color);font-size:16px;cursor:pointer}.vft-md-comment .wl-action:hover{color:var(--waline-theme-color)}.vft-md-comment .wl-action.active{color:var(--waline-active-color)}.vft-md-comment #wl-image-upload{display:none}.vft-md-comment #wl-image-upload:focus+label{color:var(--waline-color)}.vft-md-comment #wl-image-upload:focus-visible+label{outline:-webkit-focus-ring-color auto 1px}.vft-md-comment .wl-info{display:flex;flex:3;align-items:center;justify-content:flex-end}.vft-md-comment .wl-info .wl-text-number{color:var(--waline-info-color);font-size:.75em}.vft-md-comment .wl-info .wl-text-number .illegal{color:red}.vft-md-comment .wl-info button{margin-inline-start:.75em}.vft-md-comment .wl-info button svg{display:block;margin:0 auto;line-height:18px}.vft-md-comment .wl-emoji-popup{position:absolute;top:100%;inset-inline-start:1.25em;z-index:10;max-width:526px;border:var(--waline-border);border-radius:6px;background:var(--waline-bgcolor);box-shadow:var(--waline-box-shadow);opacity:0;visibility:hidden;transition:transform .2s ease-out,opacity .2s ease-out;transform:scale(.9,.9);transform-origin:0 0}.vft-md-comment .wl-emoji-popup.display{opacity:1;visibility:visible;transform:none}.vft-md-comment .wl-emoji-popup button{display:inline-block;vertical-align:middle;width:2em;margin:.125em;padding:0;border-width:0;background:rgba(0,0,0,0);font-size:inherit;line-height:2;text-align:center;cursor:pointer}.vft-md-comment .wl-emoji-popup button:hover{background:var(--waline-bgcolor-hover)}.vft-md-comment .wl-emoji-popup .wl-emoji{display:inline-block;vertical-align:middle;max-width:1.5em;max-height:1.5em}.vft-md-comment .wl-emoji-popup .wl-tab-wrapper{overflow-y:auto;max-height:145px;padding:.5em}.vft-md-comment .wl-emoji-popup .wl-tab-wrapper::-webkit-scrollbar{width:6px;height:6px}.vft-md-comment .wl-emoji-popup .wl-tab-wrapper::-webkit-scrollbar-track-piece:vertical{border-radius:6px;background:rgba(0,0,0,.1)}.vft-md-comment .wl-emoji-popup .wl-tab-wrapper::-webkit-scrollbar-thumb:vertical{width:6px;border-radius:6px;background:var(--waline-theme-color)}.vft-md-comment .wl-emoji-popup .wl-tabs{position:relative;overflow-x:auto;padding:0 6px;white-space:nowrap}.vft-md-comment .wl-emoji-popup .wl-tabs::before{content:" ";position:absolute;top:0;right:0;left:0;z-index:2;height:1px;background:var(--waline-border-color)}.vft-md-comment .wl-emoji-popup .wl-tabs::-webkit-scrollbar{width:6px;height:6px}.vft-md-comment .wl-emoji-popup .wl-tabs::-webkit-scrollbar-track-piece:horizontal{border-radius:6px;background:rgba(0,0,0,.1)}.vft-md-comment .wl-emoji-popup .wl-tabs::-webkit-scrollbar-thumb:horizontal{height:6px;border-radius:6px;background:var(--waline-theme-color)}.vft-md-comment .wl-emoji-popup .wl-tab{position:relative;margin:0;padding:0 .5em}.vft-md-comment .wl-emoji-popup .wl-tab.active{z-index:3;border:1px solid var(--waline-border-color);border-top-width:0;border-bottom-right-radius:6px;border-bottom-left-radius:6px;background:var(--waline-bgcolor)}.vft-md-comment .wl-gif-popup{position:absolute;top:100%;inset-inline-start:1.25em;z-index:10;width:calc(100% - 3em);padding:.75em .75em .25em;border:var(--waline-border);border-radius:6px;background:var(--waline-bgcolor);box-shadow:var(--waline-box-shadow);opacity:0;visibility:hidden;transition:transform .2s ease-out,opacity .2s ease-out;transform:scale(.9,.9);transform-origin:0 0}.vft-md-comment .wl-gif-popup.display{opacity:1;visibility:visible;transform:none}.vft-md-comment .wl-gif-popup input{box-sizing:border-box;width:100%;margin-bottom:10px;padding:3px 5px;border:var(--waline-border)}.vft-md-comment .wl-gif-popup img{display:block;box-sizing:border-box;width:100%;border-width:2px;border-style:solid;border-color:#fff;cursor:pointer}.vft-md-comment .wl-gif-popup img:hover{border-color:var(--waline-theme-color);border-radius:2px}.vft-md-comment .wl-gallery{display:flex;overflow-y:auto;max-height:80vh}.vft-md-comment .wl-gallery-column{display:flex;flex:1;flex-direction:column;height:-moz-max-content;height:max-content}.vft-md-comment .wl-cards .wl-user{--avatar-size:var(--waline-avatar-size);position:relative;margin-inline-end:.75em}.vft-md-comment .wl-cards .wl-user img{width:var(--avatar-size);height:var(--avatar-size);border-radius:var(--waline-avatar-radius);box-shadow:var(--waline-box-shadow)}.vft-md-comment .wl-cards .wl-user .verified-icon{position:absolute;top:calc(var(--avatar-size) * 3 / 4);inset-inline-start:calc(var(--avatar-size) * 3 / 4);border-radius:50%;background:var(--waline-bgcolor);box-shadow:var(--waline-box-shadow)}.vft-md-comment .wl-card-item{position:relative;display:flex;padding:.5em}.vft-md-comment .wl-card-item .wl-card-item{padding-inline-end:0}.vft-md-comment .wl-card{flex:1;width:0;padding-bottom:.5em;border-bottom:1px dashed var(--waline-border-color)}.vft-md-comment .wl-card:first-child{margin-inline-start:1em}.vft-md-comment .wl-card-item:last-child>.wl-card{border-bottom:none}.vft-md-comment .wl-card .wl-nick svg{position:relative;bottom:-.125em;line-height:1}.vft-md-comment .wl-card .wl-head{overflow:hidden;line-height:1.5}.vft-md-comment .wl-card .wl-head .wl-nick{position:relative;display:inline-block;margin-inline-end:.5em;font-weight:700;font-size:.875em;line-height:1;text-decoration:none}.vft-md-comment .wl-card span.wl-nick{color:var(--waline-dark-grey)}.vft-md-comment .wl-card .wl-badge{display:inline-block;margin-inline-end:1em;padding:0 .3em;border:1px solid var(--waline-badge-color);border-radius:4px;color:var(--waline-badge-color);font-size:var(--waline-badge-font-size)}.vft-md-comment .wl-card .wl-time{margin-inline-end:.875em;color:var(--waline-info-color);font-size:.75em}.vft-md-comment .wl-card .wl-meta{position:relative;line-height:1}.vft-md-comment .wl-card .wl-meta>span{display:inline-block;margin-inline-end:.25em;padding:2px 4px;border-radius:.2em;background:var(--waline-info-bgcolor);color:var(--waline-info-color);font-size:var(--waline-info-font-size);line-height:1.5}.vft-md-comment .wl-card .wl-meta>span:empty{display:none}.vft-md-comment .wl-card .wl-comment-actions{float:right;line-height:1}.vft-md-comment [dir=rtl] .wl-card .wl-comment-actions{float:left}.vft-md-comment .wl-card .wl-delete,.vft-md-comment .wl-card .wl-edit,.vft-md-comment .wl-card .wl-like,.vft-md-comment .wl-card .wl-reply{display:inline-flex;align-items:center;border:none;background:rgba(0,0,0,0);color:var(--waline-color);line-height:1;cursor:pointer;transition:color .2s ease}.vft-md-comment .wl-card .wl-delete:hover,.vft-md-comment .wl-card .wl-edit:hover,.vft-md-comment .wl-card .wl-like:hover,.vft-md-comment .wl-card .wl-reply:hover{color:var(--waline-theme-color)}.vft-md-comment .wl-card .wl-delete.active,.vft-md-comment .wl-card .wl-edit.active,.vft-md-comment .wl-card .wl-like.active,.vft-md-comment .wl-card .wl-reply.active{color:var(--waline-active-color)}.vft-md-comment .wl-card .wl-content{position:relative;margin-bottom:.75em;padding-top:.625em;font-size:.875em;line-height:2;word-wrap:break-word}.vft-md-comment .wl-card .wl-content.expand{overflow:hidden;max-height:8em;cursor:pointer}.vft-md-comment .wl-card .wl-content.expand::before{content:"";position:absolute;top:0;bottom:3.15em;inset-inline-start:0;z-index:999;display:block;width:100%;background:linear-gradient(180deg,#000,rgba(255,255,255,.9))}.vft-md-comment .wl-card .wl-content.expand::after{content:attr(data-expand);position:absolute;bottom:0;inset-inline-start:0;z-index:999;display:block;width:100%;height:3.15em;background:rgba(255,255,255,.9);color:#828586;line-height:3.15em;text-align:center}.vft-md-comment .wl-card .wl-content>:first-child{margin-top:0}.vft-md-comment .wl-card .wl-content>:last-child{margin-bottom:0}.vft-md-comment .wl-card .wl-admin-actions{margin:8px 0;font-size:12px;text-align:right}.vft-md-comment .wl-card .wl-comment-status{margin:0 8px}.vft-md-comment .wl-card .wl-comment-status .wl-btn{border-radius:0}.vft-md-comment .wl-card .wl-comment-status .wl-btn:first-child{border-inline-end:0;border-radius:.5em 0 0 .5em}.vft-md-comment .wl-card .wl-comment-status .wl-btn:last-child{border-inline-start:0;border-radius:0 .5em .5em 0}.vft-md-comment .wl-card .wl-quote{border-inline-start:1px dashed rgba(237,237,237,.5)}.vft-md-comment .wl-card .wl-quote .wl-user{--avatar-size:var(--waline-m-avatar-size)}.vft-md-comment .wl-close-icon{color:var(--waline-border-color)}.vft-md-comment .wl-content .vemoji,.vft-md-comment .wl-content .wl-emoji{display:inline-block;vertical-align:baseline;height:1.25em;margin:-.125em .25em}.vft-md-comment .wl-content .wl-tex{background:var(--waline-info-bgcolor);color:var(--waline-info-color)}.vft-md-comment .wl-content span.wl-tex{display:inline-block;margin-inline-end:.25em;padding:2px 4px;border-radius:.2em;font-size:var(--waline-info-font-size);line-height:1.5}.vft-md-comment .wl-content p.wl-tex{text-align:center}.vft-md-comment .wl-content .katex-display{overflow:auto hidden;-webkit-overflow-scrolling:touch;padding-top:.2em;padding-bottom:.2em}.vft-md-comment .wl-content .katex-display::-webkit-scrollbar{height:3px}.vft-md-comment .wl-content .katex-error{color:red}.vft-md-comment .wl-count{flex:1;font-weight:700;font-size:1.25em}.vft-md-comment .wl-empty{overflow:auto;padding:1.25em;color:var(--waline-color);text-align:center}.vft-md-comment .wl-operation{text-align:center}.vft-md-comment .wl-operation button{margin:1em 0}.vft-md-comment .wl-power{padding:.5em 0;color:var(--waline-light-grey);font-size:var(--waline-info-font-size);text-align:end}.vft-md-comment .wl-meta-head{display:flex;flex-direction:row;align-items:center;padding:.375em}.vft-md-comment .wl-sort{margin:0;list-style-type:none}.vft-md-comment .wl-sort li{display:inline-block;color:var(--waline-info-color);font-size:.75em;cursor:pointer}.vft-md-comment .wl-sort li.active{color:var(--waline-theme-color)}.vft-md-comment .wl-sort li+li{margin-inline-start:1em}.vft-md-comment .wl-reaction{overflow:auto hidden;margin-bottom:1.75em;text-align:center}.vft-md-comment .wl-reaction img{width:100%;height:100%;transition:all 250ms ease-in-out}.vft-md-comment .wl-reaction-title{margin:16px auto;font-weight:700;font-size:18px}.vft-md-comment .wl-reaction-list{display:flex;flex-direction:row;gap:16px;justify-content:center;margin:0;padding:8px;list-style-type:none}.vft-md-comment [data-waline] .wl-reaction-list{margin-inline-start:0}.vft-md-comment .wl-reaction-item{display:flex;flex-direction:column;align-items:center;cursor:pointer}.vft-md-comment .wl-reaction-item.active img,.vft-md-comment .wl-reaction-item:hover img{transform:scale(1.15)}.vft-md-comment .wl-reaction-img{position:relative;width:42px;height:42px}.vft-md-comment .wl-reaction-loading{position:absolute;top:-4px;inset-inline-end:-5px;width:18px;height:18px;color:var(--waline-theme-color)}.vft-md-comment .wl-reaction-votes{position:absolute;top:-9px;inset-inline-end:-9px;min-width:1em;padding:2px;border:1px solid var(--waline-theme-color);border-radius:1em;background:var(--waline-bgcolor);color:var(--waline-theme-color);font-weight:700;font-size:.75em;line-height:1}.vft-md-comment .wl-reaction-item.active .wl-reaction-votes{background:var(--waline-theme-color);color:var(--waline-bgcolor)}.vft-md-comment .wl-reaction-text{font-size:.875em}.vft-md-comment .wl-reaction-item.active .wl-reaction-text{color:var(--waline-theme-color)}.vft-md-comment .wl-content pre,.vft-md-comment .wl-content pre[class*=language-]{overflow:auto;margin:.75rem 0;padding:1rem 1.25rem;border-radius:6px;background:var(--waline-code-bgcolor);line-height:1.4}.vft-md-comment .wl-content pre code,.vft-md-comment .wl-content pre[class*=language-] code{padding:0;border-radius:0;background:rgba(0,0,0,0)!important;color:#bbb;direction:ltr}.vft-md-comment .wl-content code[class*=language-],.vft-md-comment .wl-content pre[class*=language-]{background:0 0;color:#ccc;font-size:1em;text-align:left;white-space:pre;word-spacing:normal;word-wrap:normal;word-break:normal;-moz-tab-size:4;-o-tab-size:4;tab-size:4;-webkit-hyphens:none;hyphens:none}.vft-md-comment .wl-content pre[class*=language-]{overflow:auto}.vft-md-comment .wl-content :not(pre)>code[class*=language-],.vft-md-comment .wl-content pre[class*=language-]{background:#2d2d2d}.vft-md-comment .wl-content :not(pre)>code[class*=language-]{padding:.1em;border-radius:.3em;white-space:normal}.vft-md-comment .wl-content .token.block-comment,.vft-md-comment .wl-content .token.cdata,.vft-md-comment .wl-content .token.comment,.vft-md-comment .wl-content .token.doctype,.vft-md-comment .wl-content .token.prolog{color:#999}.vft-md-comment .wl-content .token.punctuation{color:#ccc}.vft-md-comment .wl-content .token.attr-name,.vft-md-comment .wl-content .token.deleted,.vft-md-comment .wl-content .token.namespace,.vft-md-comment .wl-content .token.tag{color:#e2777a}.vft-md-comment .wl-content .token.function-name{color:#6196cc}.vft-md-comment .wl-content .token.boolean,.vft-md-comment .wl-content .token.function,.vft-md-comment .wl-content .token.number{color:#f08d49}.vft-md-comment .wl-content .token.class-name,.vft-md-comment .wl-content .token.constant,.vft-md-comment .wl-content .token.property,.vft-md-comment .wl-content .token.symbol{color:#f8c555}.vft-md-comment .wl-content .token.atrule,.vft-md-comment .wl-content .token.builtin,.vft-md-comment .wl-content .token.important,.vft-md-comment .wl-content .token.keyword,.vft-md-comment .wl-content .token.selector{color:#cc99cd}.vft-md-comment .wl-content .token.attr-value,.vft-md-comment .wl-content .token.char,.vft-md-comment .wl-content .token.regex,.vft-md-comment .wl-content .token.string,.vft-md-comment .wl-content .token.variable{color:#7ec699}.vft-md-comment .wl-content .token.entity,.vft-md-comment .wl-content .token.operator,.vft-md-comment .wl-content .token.url{color:#67cdcc}.vft-md-comment .wl-content .token.bold,.vft-md-comment .wl-content .token.important{font-weight:700}.vft-md-comment .wl-content .token.italic{font-style:italic}.vft-md-comment .wl-content .token.entity{cursor:help}.vft-md-comment .wl-content .token.inserted{color:green}.vft-md-comment .wl-recent-item p{display:inline}.vft-md-comment .wl-user-list{padding:0;list-style:none}.vft-md-comment .wl-user-list a,.vft-md-comment .wl-user-list a:hover,.vft-md-comment .wl-user-list a:visited{color:var(--waline-color);text-decoration:none}.vft-md-comment .wl-user-list .wl-user-avatar{position:relative;display:inline-block;overflow:hidden;margin-inline-end:10px;border-radius:4px;line-height:0}.vft-md-comment .wl-user-list .wl-user-avatar>img{width:var(--waline-user-avatar-size,48px);height:var(--waline-user-avatar-size,48px)}.vft-md-comment .wl-user-list .wl-user-badge{position:absolute;bottom:0;inset-inline-end:0;min-width:.7em;height:1.5em;padding:0 .4em;border-radius:4px;background:var(--waline-info-bgcolor);color:var(--waline-info-color);font-weight:700;font-size:10px;line-height:1.5em;text-align:center}.vft-md-comment .wl-user-list .wl-user-item{margin:10px 0}.vft-md-comment .wl-user-list .wl-user-item:nth-child(1) .wl-user-badge{background:var(--waline-rank-gold-bgcolor,#fa3939);color:var(--waline-white);font-weight:700}.vft-md-comment .wl-user-list .wl-user-item:nth-child(2) .wl-user-badge{background:var(--waline-rank-silver-bgcolor,#fb811c);color:var(--waline-white);font-weight:700}.vft-md-comment .wl-user-list .wl-user-item:nth-child(3) .wl-user-badge{background:var(--waline-rank-copper-bgcolor,#feb207);color:var(--waline-white)}.vft-md-comment .wl-user-list .wl-user-meta{display:inline-block;vertical-align:top}.vft-md-comment .wl-user-list .wl-badge{display:inline-block;vertical-align:text-top;margin-inline-start:.5em;padding:0 .3em;border:1px solid var(--waline-badge-color);border-radius:4px;color:var(--waline-badge-color);font-size:var(--waline-badge-font-size)}.vft-md-comment .wl-user-wall{padding:0;list-style:none}.vft-md-comment .wl-user-wall .wl-user-badge,.vft-md-comment .wl-user-wall .wl-user-meta{display:none}.vft-md-comment .wl-user-wall .wl-user-item{position:relative;display:inline-block;transition:transform ease-in-out .2s}.vft-md-comment .wl-user-wall .wl-user-item::after,.vft-md-comment .wl-user-wall .wl-user-item::before{position:absolute;bottom:100%;left:50%;z-index:10;opacity:0;pointer-events:none;transition:all .18s ease-out .18s;transform:translate(-50%,4px);transform-origin:top}.vft-md-comment .wl-user-wall .wl-user-item::before{content:"";width:0;height:0;border:5px solid transparent;border-top-color:rgba(16,16,16,.95)}.vft-md-comment .wl-user-wall .wl-user-item::after{content:attr(aria-label);margin-bottom:10px;padding:.5em 1em;border-radius:2px;background:rgba(16,16,16,.95);color:#fff;font-size:12px;white-space:nowrap}.vft-md-comment .wl-user-wall .wl-user-item:hover{transform:scale(1.1)}.vft-md-comment .wl-user-wall .wl-user-item:hover::after,.vft-md-comment .wl-user-wall .wl-user-item:hover::before{opacity:1;pointer-events:none;transform:translate(-50%,0)}.vft-md-comment .wl-user-wall .wl-user-item img{width:var(--waline-user-avatar-size,48px);height:var(--waline-user-avatar-size,48px)}