vft 0.0.70 → 0.0.72

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1631) hide show
  1. package/attributes.json +1 -1
  2. package/dist/index.css +1 -1
  3. package/es/component.js +56 -40
  4. package/es/components/alert/alert.vue2.js +22 -24
  5. package/es/components/aside/style/css.js +2 -0
  6. package/es/components/aside/style/index.js +2 -0
  7. package/es/components/avatar/avatar.vue2.js +14 -16
  8. package/es/components/back-top/back-top.vue2.js +7 -7
  9. package/es/components/button/button-custom.js +2 -4
  10. package/es/components/button/button-group.vue2.js +6 -8
  11. package/es/components/button/button.vue2.js +14 -16
  12. package/es/components/checkbox/checkbox-button.vue2.js +27 -29
  13. package/es/components/checkbox/checkbox-group.vue2.js +5 -7
  14. package/es/components/checkbox/checkbox.vue2.js +30 -32
  15. package/es/components/clamp/clamp.vue2.js +10 -12
  16. package/es/components/clamp-toggle/clamp-toggle.vue2.js +8 -10
  17. package/es/components/col/col.vue.js +4 -0
  18. package/es/components/col/col.vue2.js +60 -0
  19. package/es/components/col/index.js +12 -0
  20. package/es/components/col/style/css.js +2 -0
  21. package/es/components/col/style/index.js +2 -0
  22. package/es/components/col/types.js +1 -0
  23. package/es/components/collapse-transition/src/collapse-transition.vue2.js +5 -7
  24. package/es/components/color-picker/color-picker.vue2.js +2 -4
  25. package/es/components/color-picker/components/hue-slider.vue2.js +2 -4
  26. package/es/components/color-picker/components/predefine.vue2.js +7 -9
  27. package/es/components/color-picker/components/sv-panel.vue2.js +15 -17
  28. package/es/components/color-picker/composables/use-alpha-slider.js +4 -6
  29. package/es/components/config-provider/config-provider.vue2.js +11 -13
  30. package/es/components/config-provider/hooks/use-global-config.js +7 -9
  31. package/es/components/container/aside.vue.js +4 -0
  32. package/es/components/container/aside.vue2.js +37 -0
  33. package/es/components/container/container.vue.js +4 -0
  34. package/es/components/container/container.vue2.js +33 -0
  35. package/es/components/container/footer.vue.js +4 -0
  36. package/es/components/container/footer.vue2.js +39 -0
  37. package/es/components/container/header.vue.js +4 -0
  38. package/es/components/container/header.vue2.js +39 -0
  39. package/es/components/container/index.js +25 -0
  40. package/es/components/container/main.vue.js +4 -0
  41. package/es/components/container/main.vue2.js +26 -0
  42. package/es/components/container/style/css.js +6 -0
  43. package/es/components/container/style/index.js +6 -0
  44. package/es/components/context-menu/context-menu.vue2.js +9 -8
  45. package/es/components/date-picker/composables/use-month-range-header.js +29 -0
  46. package/es/components/date-picker/composables/use-range-picker.js +68 -0
  47. package/es/components/date-picker/composables/use-shortcut.js +24 -0
  48. package/es/components/date-picker/constants.js +4 -0
  49. package/es/components/date-picker/date-picker-com/basic-cell-render.js +37 -0
  50. package/es/components/date-picker/date-picker-com/basic-date-table.vue.js +4 -0
  51. package/es/components/date-picker/date-picker-com/basic-date-table.vue2.js +206 -0
  52. package/es/components/date-picker/date-picker-com/basic-month-table.vue.js +4 -0
  53. package/es/components/date-picker/date-picker-com/basic-month-table.vue2.js +131 -0
  54. package/es/components/date-picker/date-picker-com/basic-year-table.vue.js +4 -0
  55. package/es/components/date-picker/date-picker-com/basic-year-table.vue2.js +85 -0
  56. package/es/components/date-picker/date-picker-com/panel-date-pick.vue.js +4 -0
  57. package/es/components/date-picker/date-picker-com/panel-date-pick.vue2.js +455 -0
  58. package/es/components/date-picker/date-picker-com/panel-date-range.vue.js +4 -0
  59. package/es/components/date-picker/date-picker-com/panel-date-range.vue2.js +383 -0
  60. package/es/components/date-picker/date-picker-com/panel-month-range.vue.js +4 -0
  61. package/es/components/date-picker/date-picker-com/panel-month-range.vue2.js +170 -0
  62. package/es/components/date-picker/date-picker.js +81 -0
  63. package/es/components/date-picker/date-picker.type.js +1 -0
  64. package/es/components/date-picker/index.js +14 -0
  65. package/es/components/date-picker/panel-utils.js +17 -0
  66. package/es/components/date-picker/props/basic-cell.js +14 -0
  67. package/es/components/date-picker/props/basic-date-table.js +18 -0
  68. package/es/components/date-picker/props/basic-month-table.js +14 -0
  69. package/es/components/date-picker/props/basic-year-table.js +15 -0
  70. package/es/components/date-picker/props/date-picker.js +18 -0
  71. package/es/components/date-picker/props/panel-date-pick.js +23 -0
  72. package/es/components/date-picker/props/panel-date-range.js +14 -0
  73. package/es/components/date-picker/props/panel-month-range.js +14 -0
  74. package/es/components/date-picker/props/shared.js +56 -0
  75. package/es/components/date-picker/style/css.js +2 -0
  76. package/es/components/date-picker/style/index.js +7 -0
  77. package/es/components/date-picker/utils.js +49 -0
  78. package/es/components/date-time-select/date-time-select.vue2.js +97 -111
  79. package/es/components/date-time-select/style/index.js +6 -0
  80. package/es/components/descriptions/description-item.vue2.js +6 -8
  81. package/es/components/descriptions/description.vue2.js +23 -25
  82. package/es/components/descriptions/descriptions-cell.js +11 -13
  83. package/es/components/descriptions/descriptions-row.vue2.js +13 -15
  84. package/es/components/dialog/dialog-content.vue2.js +9 -11
  85. package/es/components/dialog/dialog.vue2.js +2 -3
  86. package/es/components/dialog/hooks/use-dialog.js +2 -3
  87. package/es/components/divider/divider.vue2.js +7 -9
  88. package/es/components/dropdown/dropdown-item-impl.vue2.js +2 -4
  89. package/es/components/dropdown/dropdown-menu.vue2.js +2 -4
  90. package/es/components/dropdown/dropdown.vue2.js +2 -4
  91. package/es/components/dropdown/useDropdown.js +13 -15
  92. package/es/components/empty/empty.vue2.js +9 -11
  93. package/es/components/footer/style/css.js +2 -0
  94. package/es/components/footer/style/index.js +2 -0
  95. package/es/components/footer-layout/footer-layout.vue2.js +105 -37
  96. package/es/components/form/form-item.vue2.js +2 -4
  97. package/es/components/form/form-label-wrap.js +13 -15
  98. package/es/components/form/form.vue2.js +8 -10
  99. package/es/components/form/hooks/use-form-common-props.js +3 -5
  100. package/es/components/form/hooks/use-form-item.js +14 -16
  101. package/es/components/full-screen/full-screen.vue2.js +5 -7
  102. package/es/components/header/style/css.js +2 -0
  103. package/es/components/header/style/index.js +2 -0
  104. package/es/components/header-layout/header-layout.vue2.js +122 -39
  105. package/es/components/horizontal-menu/horizontal-menu.vue.js +4 -0
  106. package/es/components/horizontal-menu/horizontal-menu.vue2.js +115 -0
  107. package/es/components/horizontal-menu/index.js +12 -0
  108. package/es/components/horizontal-menu/style/css.js +6 -0
  109. package/es/components/horizontal-menu/style/index.js +6 -0
  110. package/es/components/icon/icon.vue2.js +13 -15
  111. package/es/components/icon-text/icon-text.vue2.js +2 -4
  112. package/es/components/iframe-layout/iframe-layout.vue2.js +6 -8
  113. package/es/components/iframe-layout/iframe-page.vue2.js +11 -13
  114. package/es/components/image/image.vue2.js +10 -12
  115. package/es/components/image-viewer/image-viewer.vue2.js +2 -4
  116. package/es/components/index.js +254 -209
  117. package/es/components/input/input.vue2.js +191 -192
  118. package/es/components/link/link.vue2.js +25 -27
  119. package/es/components/list-cell/list-cell.vue2.js +18 -20
  120. package/es/components/loading/loading.js +6 -8
  121. package/es/components/loading/service.js +2 -4
  122. package/es/components/logo/logo.vue2.js +23 -25
  123. package/es/components/main/style/css.js +2 -0
  124. package/es/components/main/style/index.js +2 -0
  125. package/es/components/md-code-demo/md-code-demo.js +2 -4
  126. package/es/components/md-comment/md-comment.vue2.js +8 -10
  127. package/es/components/md-container/md-container.vue2.js +67 -64
  128. package/es/components/md-container/toc.js +1 -1
  129. package/es/components/md-tabs/md-tabs.js +0 -1
  130. package/es/components/md-vue-playground/md-vue-playground.vue2.js +10 -12
  131. package/es/components/menu/menu-collapse-transition.vue2.js +2 -4
  132. package/es/components/menu/menu-item-group.vue2.js +13 -15
  133. package/es/components/menu/menu-item.vue2.js +94 -73
  134. package/es/components/menu/menu.vue2.js +100 -108
  135. package/es/components/menu/sub-menu.vue2.js +83 -82
  136. package/es/components/menu/use-menu-css-var.js +2 -4
  137. package/es/components/multiple-tabs/index.js +15 -9
  138. package/es/components/multiple-tabs/multiple-tabs.vue2.js +50 -45
  139. package/es/components/overlay/overlay.vue2.js +15 -17
  140. package/es/components/page-wrapper/page-wrapper.vue2.js +8 -10
  141. package/es/components/pagination/components/jumper.vue2.js +14 -16
  142. package/es/components/pagination/components/pager.vue2.js +2 -4
  143. package/es/components/pagination/components/sizes.vue2.js +2 -4
  144. package/es/components/pagination/components/total.vue2.js +4 -6
  145. package/es/components/pagination/pagination.vue2.js +7 -9
  146. package/es/components/popover/popover.vue2.js +2 -4
  147. package/es/components/popper/arrow.vue2.js +2 -4
  148. package/es/components/popper/composables/use-content-dom.js +7 -9
  149. package/es/components/popper/composables/use-content.js +2 -4
  150. package/es/components/popper/trigger.vue2.js +2 -4
  151. package/es/components/qrcode/qrcode.vue2.js +8 -10
  152. package/es/components/radio/radio-button.vue2.js +12 -14
  153. package/es/components/radio/radio-group.vue2.js +11 -13
  154. package/es/components/radio/radio.vue2.js +7 -9
  155. package/es/components/result/result.vue2.js +7 -7
  156. package/es/components/router-view-content/router-view-content.vue2.js +6 -8
  157. package/es/components/roving-focus-group/roving-focus-item.vue2.js +10 -12
  158. package/es/components/row/constants.js +4 -0
  159. package/es/components/row/index.js +14 -0
  160. package/es/components/row/row.vue.js +4 -0
  161. package/es/components/row/row.vue2.js +49 -0
  162. package/es/components/row/style/css.js +2 -0
  163. package/es/components/row/style/index.js +2 -0
  164. package/es/components/row/types.js +1 -0
  165. package/es/components/scrollbar/index.js +9 -11
  166. package/es/components/scrollbar/scrollbar.vue2.js +12 -14
  167. package/es/components/scrollbar/thumb.vue2.js +2 -4
  168. package/es/components/search/search.vue2.js +136 -159
  169. package/es/components/select-v2/group-item.vue2.js +2 -4
  170. package/es/components/select-v2/option-item.vue2.js +6 -8
  171. package/es/components/select-v2/select-dropdown.js +2 -4
  172. package/es/components/select-v2/useInput.js +5 -6
  173. package/es/components/select-v2/useSelect.js +19 -21
  174. package/es/components/select-v2/util.js +1 -1
  175. package/es/components/side-menu/side-menu.vue2.js +213 -150
  176. package/es/components/side-menu/use-drag-line.js +29 -28
  177. package/es/components/slot/only-child.js +11 -13
  178. package/es/components/switch/switch.vue2.js +8 -10
  179. package/es/components/table/table.vue2.js +13 -15
  180. package/es/components/tabs/tab-bar.vue2.js +2 -4
  181. package/es/components/tabs/tab-nav.vue2.js +7 -7
  182. package/es/components/tabs/tab-pane.vue2.js +10 -12
  183. package/es/components/tabs/tabs.vue2.js +38 -40
  184. package/es/components/tag/tag.vue2.js +7 -9
  185. package/es/components/time-picker/common/picker.vue.js +4 -0
  186. package/es/components/time-picker/common/picker.vue2.js +438 -0
  187. package/es/components/time-picker/common/props.js +201 -0
  188. package/es/components/time-picker/composables/use-time-panel.js +60 -0
  189. package/es/components/time-picker/composables/use-time-picker.js +40 -0
  190. package/es/components/time-picker/constants.js +17 -0
  191. package/es/components/time-picker/index.js +31 -0
  192. package/es/components/time-picker/props/basic-time-spinner.js +31 -0
  193. package/es/components/time-picker/props/panel-time-picker.js +17 -0
  194. package/es/components/time-picker/props/panel-time-range.js +16 -0
  195. package/es/components/time-picker/props/shared.js +40 -0
  196. package/es/components/time-picker/style/css.js +2 -0
  197. package/es/components/time-picker/style/index.js +2 -0
  198. package/es/components/time-picker/time-picker-com/basic-time-spinner.vue.js +4 -0
  199. package/es/components/time-picker/time-picker-com/basic-time-spinner.vue2.js +227 -0
  200. package/es/components/time-picker/time-picker-com/panel-time-pick.vue.js +4 -0
  201. package/es/components/time-picker/time-picker-com/panel-time-pick.vue2.js +107 -0
  202. package/es/components/time-picker/time-picker-com/panel-time-range.vue.js +4 -0
  203. package/es/components/time-picker/time-picker-com/panel-time-range.vue2.js +190 -0
  204. package/es/components/time-picker/time-picker.js +70 -0
  205. package/es/components/time-picker/types.js +1 -0
  206. package/es/components/time-picker/utils.js +35 -0
  207. package/es/components/time-select/style/css.js +2 -0
  208. package/es/components/time-select/style/index.js +2 -0
  209. package/es/components/time-select/time-select.js +54 -0
  210. package/es/components/time-select/time-select.vue.js +4 -0
  211. package/es/components/time-select/time-select.vue2.js +104 -0
  212. package/es/components/time-select/utils.js +40 -0
  213. package/es/components/tooltip/content.vue2.js +16 -18
  214. package/es/components/tooltip/index.js +5 -3
  215. package/es/components/tooltip/tooltip.vue2.js +20 -22
  216. package/es/components/tooltip/trigger.vue2.js +8 -10
  217. package/es/components/tooltip/utils.js +4 -6
  218. package/es/components/verify-code/verify-code.vue2.js +5 -7
  219. package/es/components/virtual-list/builders/build-grid.js +2 -4
  220. package/es/components/virtual-list/builders/build-list.js +34 -36
  221. package/es/components/virtual-list/components/dynamic-size-grid.js +47 -48
  222. package/es/components/virtual-list/components/scrollbar.js +10 -12
  223. package/es/hooks/use-lockscreen/index.js +16 -17
  224. package/es/hooks/use-namespace/index.js +22 -22
  225. package/es/hooks/use-same-target/index.js +5 -5
  226. package/es/index.js +381 -336
  227. package/es/package.json.js +1 -1
  228. package/global.d.ts +73 -2
  229. package/lib/component.cjs +1 -1
  230. package/lib/components/alert/alert.vue2.cjs +1 -1
  231. package/lib/components/aside/style/css.cjs +1 -0
  232. package/lib/components/aside/style/index.cjs +1 -0
  233. package/lib/components/avatar/avatar.vue2.cjs +1 -1
  234. package/lib/components/back-top/back-top.vue2.cjs +1 -1
  235. package/lib/components/button/button-custom.cjs +1 -1
  236. package/lib/components/button/button-group.vue2.cjs +1 -1
  237. package/lib/components/button/button.vue2.cjs +1 -1
  238. package/lib/components/checkbox/checkbox-button.vue2.cjs +1 -1
  239. package/lib/components/checkbox/checkbox-group.vue2.cjs +1 -1
  240. package/lib/components/checkbox/checkbox.vue2.cjs +1 -1
  241. package/lib/components/clamp/clamp.vue2.cjs +1 -1
  242. package/lib/components/clamp-toggle/clamp-toggle.vue2.cjs +1 -1
  243. package/lib/components/col/col.vue.cjs +1 -0
  244. package/lib/components/col/col.vue2.cjs +1 -0
  245. package/lib/components/col/index.cjs +1 -0
  246. package/lib/components/col/style/css.cjs +1 -0
  247. package/lib/components/col/style/index.cjs +1 -0
  248. package/lib/components/col/types.cjs +1 -0
  249. package/lib/components/collapse-transition/src/collapse-transition.vue2.cjs +1 -1
  250. package/lib/components/color-picker/color-picker.vue2.cjs +1 -1
  251. package/lib/components/color-picker/components/hue-slider.vue2.cjs +1 -1
  252. package/lib/components/color-picker/components/predefine.vue2.cjs +1 -1
  253. package/lib/components/color-picker/components/sv-panel.vue2.cjs +1 -1
  254. package/lib/components/color-picker/composables/use-alpha-slider.cjs +1 -1
  255. package/lib/components/config-provider/config-provider.vue2.cjs +1 -1
  256. package/lib/components/config-provider/hooks/use-global-config.cjs +1 -1
  257. package/lib/components/container/aside.vue.cjs +1 -0
  258. package/lib/components/container/aside.vue2.cjs +1 -0
  259. package/lib/components/container/container.vue.cjs +1 -0
  260. package/lib/components/container/container.vue2.cjs +1 -0
  261. package/lib/components/container/footer.vue.cjs +1 -0
  262. package/lib/components/container/footer.vue2.cjs +1 -0
  263. package/lib/components/container/header.vue.cjs +1 -0
  264. package/lib/components/container/header.vue2.cjs +1 -0
  265. package/lib/components/container/index.cjs +1 -0
  266. package/lib/components/container/main.vue.cjs +1 -0
  267. package/lib/components/container/main.vue2.cjs +1 -0
  268. package/lib/components/container/style/css.cjs +1 -0
  269. package/lib/components/container/style/index.cjs +1 -0
  270. package/lib/components/context-menu/context-menu.vue2.cjs +1 -1
  271. package/lib/components/date-picker/composables/use-month-range-header.cjs +1 -0
  272. package/lib/components/date-picker/composables/use-range-picker.cjs +1 -0
  273. package/lib/components/date-picker/composables/use-shortcut.cjs +1 -0
  274. package/lib/components/date-picker/constants.cjs +1 -0
  275. package/lib/components/date-picker/date-picker-com/basic-cell-render.cjs +1 -0
  276. package/lib/components/date-picker/date-picker-com/basic-date-table.vue.cjs +1 -0
  277. package/lib/components/date-picker/date-picker-com/basic-date-table.vue2.cjs +1 -0
  278. package/lib/components/date-picker/date-picker-com/basic-month-table.vue.cjs +1 -0
  279. package/lib/components/date-picker/date-picker-com/basic-month-table.vue2.cjs +1 -0
  280. package/lib/components/date-picker/date-picker-com/basic-year-table.vue.cjs +1 -0
  281. package/lib/components/date-picker/date-picker-com/basic-year-table.vue2.cjs +1 -0
  282. package/lib/components/date-picker/date-picker-com/panel-date-pick.vue.cjs +1 -0
  283. package/lib/components/date-picker/date-picker-com/panel-date-pick.vue2.cjs +1 -0
  284. package/lib/components/date-picker/date-picker-com/panel-date-range.vue.cjs +1 -0
  285. package/lib/components/date-picker/date-picker-com/panel-date-range.vue2.cjs +1 -0
  286. package/lib/components/date-picker/date-picker-com/panel-month-range.vue.cjs +1 -0
  287. package/lib/components/date-picker/date-picker-com/panel-month-range.vue2.cjs +1 -0
  288. package/lib/components/date-picker/date-picker.cjs +1 -0
  289. package/lib/components/date-picker/date-picker.type.cjs +1 -0
  290. package/lib/components/date-picker/index.cjs +1 -0
  291. package/lib/components/date-picker/panel-utils.cjs +1 -0
  292. package/lib/components/date-picker/props/basic-cell.cjs +1 -0
  293. package/lib/components/date-picker/props/basic-date-table.cjs +1 -0
  294. package/lib/components/date-picker/props/basic-month-table.cjs +1 -0
  295. package/lib/components/date-picker/props/basic-year-table.cjs +1 -0
  296. package/lib/components/date-picker/props/date-picker.cjs +1 -0
  297. package/lib/components/date-picker/props/panel-date-pick.cjs +1 -0
  298. package/lib/components/date-picker/props/panel-date-range.cjs +1 -0
  299. package/lib/components/date-picker/props/panel-month-range.cjs +1 -0
  300. package/lib/components/date-picker/props/shared.cjs +1 -0
  301. package/lib/components/date-picker/style/css.cjs +1 -0
  302. package/lib/components/date-picker/style/index.cjs +1 -0
  303. package/lib/components/date-picker/utils.cjs +1 -0
  304. package/lib/components/date-time-select/date-time-select.vue2.cjs +1 -1
  305. package/lib/components/date-time-select/style/index.cjs +1 -1
  306. package/lib/components/descriptions/description-item.vue2.cjs +1 -1
  307. package/lib/components/descriptions/description.vue2.cjs +1 -1
  308. package/lib/components/descriptions/descriptions-cell.cjs +1 -1
  309. package/lib/components/descriptions/descriptions-row.vue2.cjs +1 -1
  310. package/lib/components/dialog/dialog-content.vue2.cjs +1 -1
  311. package/lib/components/dialog/dialog.vue2.cjs +1 -1
  312. package/lib/components/dialog/hooks/use-dialog.cjs +1 -1
  313. package/lib/components/divider/divider.vue2.cjs +1 -1
  314. package/lib/components/dropdown/dropdown-item-impl.vue2.cjs +1 -1
  315. package/lib/components/dropdown/dropdown-menu.vue2.cjs +1 -1
  316. package/lib/components/dropdown/dropdown.vue2.cjs +1 -1
  317. package/lib/components/dropdown/useDropdown.cjs +1 -1
  318. package/lib/components/empty/empty.vue2.cjs +1 -1
  319. package/lib/components/footer/style/css.cjs +1 -0
  320. package/lib/components/footer/style/index.cjs +1 -0
  321. package/lib/components/footer-layout/footer-layout.vue2.cjs +1 -1
  322. package/lib/components/form/form-item.vue2.cjs +1 -1
  323. package/lib/components/form/form-label-wrap.cjs +1 -1
  324. package/lib/components/form/form.vue2.cjs +1 -1
  325. package/lib/components/form/hooks/use-form-common-props.cjs +1 -1
  326. package/lib/components/form/hooks/use-form-item.cjs +1 -1
  327. package/lib/components/full-screen/full-screen.vue2.cjs +1 -1
  328. package/lib/components/header/style/css.cjs +1 -0
  329. package/lib/components/header/style/index.cjs +1 -0
  330. package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
  331. package/lib/components/horizontal-menu/horizontal-menu.vue.cjs +1 -0
  332. package/lib/components/horizontal-menu/horizontal-menu.vue2.cjs +1 -0
  333. package/lib/components/horizontal-menu/index.cjs +1 -0
  334. package/lib/components/horizontal-menu/style/css.cjs +1 -0
  335. package/lib/components/horizontal-menu/style/index.cjs +1 -0
  336. package/lib/components/icon/icon.vue2.cjs +1 -1
  337. package/lib/components/icon-text/icon-text.vue2.cjs +1 -1
  338. package/lib/components/iframe-layout/iframe-layout.vue2.cjs +1 -1
  339. package/lib/components/iframe-layout/iframe-page.vue2.cjs +1 -1
  340. package/lib/components/image/image.vue2.cjs +1 -1
  341. package/lib/components/image-viewer/image-viewer.vue2.cjs +1 -1
  342. package/lib/components/index.cjs +1 -1
  343. package/lib/components/input/input.vue2.cjs +1 -1
  344. package/lib/components/link/link.vue2.cjs +1 -1
  345. package/lib/components/list-cell/list-cell.vue2.cjs +1 -1
  346. package/lib/components/loading/loading.cjs +1 -1
  347. package/lib/components/loading/service.cjs +1 -1
  348. package/lib/components/logo/logo.vue2.cjs +1 -1
  349. package/lib/components/main/style/css.cjs +1 -0
  350. package/lib/components/main/style/index.cjs +1 -0
  351. package/lib/components/md-code-demo/md-code-demo.cjs +1 -1
  352. package/lib/components/md-comment/md-comment.vue2.cjs +1 -1
  353. package/lib/components/md-container/md-container.vue2.cjs +1 -1
  354. package/lib/components/md-container/toc.cjs +1 -1
  355. package/lib/components/md-vue-playground/md-vue-playground.vue2.cjs +1 -1
  356. package/lib/components/menu/menu-collapse-transition.vue2.cjs +1 -1
  357. package/lib/components/menu/menu-item-group.vue2.cjs +1 -1
  358. package/lib/components/menu/menu-item.vue2.cjs +1 -1
  359. package/lib/components/menu/menu.vue2.cjs +1 -1
  360. package/lib/components/menu/sub-menu.vue2.cjs +1 -1
  361. package/lib/components/menu/use-menu-css-var.cjs +1 -1
  362. package/lib/components/multiple-tabs/index.cjs +1 -1
  363. package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
  364. package/lib/components/overlay/overlay.vue2.cjs +1 -1
  365. package/lib/components/page-wrapper/page-wrapper.vue2.cjs +1 -1
  366. package/lib/components/pagination/components/jumper.vue2.cjs +1 -1
  367. package/lib/components/pagination/components/pager.vue2.cjs +1 -1
  368. package/lib/components/pagination/components/sizes.vue2.cjs +1 -1
  369. package/lib/components/pagination/components/total.vue2.cjs +1 -1
  370. package/lib/components/pagination/pagination.vue2.cjs +1 -1
  371. package/lib/components/popover/popover.vue2.cjs +1 -1
  372. package/lib/components/popper/arrow.vue2.cjs +1 -1
  373. package/lib/components/popper/composables/use-content-dom.cjs +1 -1
  374. package/lib/components/popper/composables/use-content.cjs +1 -1
  375. package/lib/components/popper/trigger.vue2.cjs +1 -1
  376. package/lib/components/qrcode/qrcode.vue2.cjs +1 -1
  377. package/lib/components/radio/radio-button.vue2.cjs +1 -1
  378. package/lib/components/radio/radio-group.vue2.cjs +1 -1
  379. package/lib/components/radio/radio.vue2.cjs +1 -1
  380. package/lib/components/result/result.vue2.cjs +1 -1
  381. package/lib/components/router-view-content/router-view-content.vue2.cjs +1 -1
  382. package/lib/components/roving-focus-group/roving-focus-item.vue2.cjs +1 -1
  383. package/lib/components/row/constants.cjs +1 -0
  384. package/lib/components/row/index.cjs +1 -0
  385. package/lib/components/row/row.vue.cjs +1 -0
  386. package/lib/components/row/row.vue2.cjs +1 -0
  387. package/lib/components/row/style/css.cjs +1 -0
  388. package/lib/components/row/style/index.cjs +1 -0
  389. package/lib/components/row/types.cjs +1 -0
  390. package/lib/components/scrollbar/index.cjs +1 -1
  391. package/lib/components/scrollbar/scrollbar.vue2.cjs +1 -1
  392. package/lib/components/scrollbar/thumb.vue2.cjs +1 -1
  393. package/lib/components/search/search.vue2.cjs +1 -1
  394. package/lib/components/select-v2/group-item.vue2.cjs +1 -1
  395. package/lib/components/select-v2/option-item.vue2.cjs +1 -1
  396. package/lib/components/select-v2/select-dropdown.cjs +1 -1
  397. package/lib/components/select-v2/useInput.cjs +1 -1
  398. package/lib/components/select-v2/useSelect.cjs +1 -1
  399. package/lib/components/select-v2/util.cjs +1 -1
  400. package/lib/components/side-menu/side-menu.vue2.cjs +1 -1
  401. package/lib/components/side-menu/use-drag-line.cjs +1 -1
  402. package/lib/components/slot/only-child.cjs +1 -1
  403. package/lib/components/switch/switch.vue2.cjs +1 -1
  404. package/lib/components/table/table.vue2.cjs +1 -1
  405. package/lib/components/tabs/tab-bar.vue2.cjs +1 -1
  406. package/lib/components/tabs/tab-nav.vue2.cjs +1 -1
  407. package/lib/components/tabs/tab-pane.vue2.cjs +1 -1
  408. package/lib/components/tabs/tabs.vue2.cjs +1 -1
  409. package/lib/components/tag/tag.vue2.cjs +1 -1
  410. package/lib/components/time-picker/common/picker.vue.cjs +1 -0
  411. package/lib/components/time-picker/common/picker.vue2.cjs +1 -0
  412. package/lib/components/time-picker/common/props.cjs +1 -0
  413. package/lib/components/time-picker/composables/use-time-panel.cjs +1 -0
  414. package/lib/components/time-picker/composables/use-time-picker.cjs +1 -0
  415. package/lib/components/time-picker/constants.cjs +1 -0
  416. package/lib/components/time-picker/index.cjs +1 -0
  417. package/lib/components/time-picker/props/basic-time-spinner.cjs +1 -0
  418. package/lib/components/time-picker/props/panel-time-picker.cjs +1 -0
  419. package/lib/components/time-picker/props/panel-time-range.cjs +1 -0
  420. package/lib/components/time-picker/props/shared.cjs +1 -0
  421. package/lib/components/time-picker/style/css.cjs +1 -0
  422. package/lib/components/time-picker/style/index.cjs +1 -0
  423. package/lib/components/time-picker/time-picker-com/basic-time-spinner.vue.cjs +1 -0
  424. package/lib/components/time-picker/time-picker-com/basic-time-spinner.vue2.cjs +1 -0
  425. package/lib/components/time-picker/time-picker-com/panel-time-pick.vue.cjs +1 -0
  426. package/lib/components/time-picker/time-picker-com/panel-time-pick.vue2.cjs +1 -0
  427. package/lib/components/time-picker/time-picker-com/panel-time-range.vue.cjs +1 -0
  428. package/lib/components/time-picker/time-picker-com/panel-time-range.vue2.cjs +1 -0
  429. package/lib/components/time-picker/time-picker.cjs +1 -0
  430. package/lib/components/time-picker/types.cjs +1 -0
  431. package/lib/components/time-picker/utils.cjs +1 -0
  432. package/lib/components/time-select/style/css.cjs +1 -0
  433. package/lib/components/time-select/style/index.cjs +1 -0
  434. package/lib/components/time-select/time-select.cjs +1 -0
  435. package/lib/components/time-select/time-select.vue.cjs +1 -0
  436. package/lib/components/time-select/time-select.vue2.cjs +1 -0
  437. package/lib/components/time-select/utils.cjs +1 -0
  438. package/lib/components/tooltip/content.vue2.cjs +1 -1
  439. package/lib/components/tooltip/index.cjs +1 -1
  440. package/lib/components/tooltip/tooltip.vue2.cjs +1 -1
  441. package/lib/components/tooltip/trigger.vue2.cjs +1 -1
  442. package/lib/components/tooltip/utils.cjs +1 -1
  443. package/lib/components/verify-code/verify-code.vue2.cjs +1 -1
  444. package/lib/components/virtual-list/builders/build-grid.cjs +1 -1
  445. package/lib/components/virtual-list/builders/build-list.cjs +1 -1
  446. package/lib/components/virtual-list/components/dynamic-size-grid.cjs +3 -3
  447. package/lib/components/virtual-list/components/scrollbar.cjs +1 -1
  448. package/lib/hooks/use-lockscreen/index.cjs +1 -1
  449. package/lib/hooks/use-namespace/index.cjs +1 -1
  450. package/lib/hooks/use-same-target/index.cjs +1 -1
  451. package/lib/index.cjs +1 -1
  452. package/lib/package.json.cjs +1 -1
  453. package/package.json +7 -7
  454. package/tags.json +1 -1
  455. package/theme-style/base.css +1 -1
  456. package/theme-style/display.css +1 -0
  457. package/theme-style/index.css +1 -1
  458. package/theme-style/src/affix.scss +7 -0
  459. package/theme-style/src/aside.scss +8 -0
  460. package/theme-style/src/autocomplete.scss +83 -0
  461. package/theme-style/src/back-top.scss +7 -6
  462. package/theme-style/src/badge.scss +57 -0
  463. package/theme-style/src/breadcrumb.scss +61 -0
  464. package/theme-style/src/calendar.scss +80 -0
  465. package/theme-style/src/card.scss +38 -0
  466. package/theme-style/src/carousel-item.scss +50 -0
  467. package/theme-style/src/carousel.scss +174 -0
  468. package/theme-style/src/cascader-panel.scss +138 -0
  469. package/theme-style/src/cascader.scss +216 -0
  470. package/theme-style/src/check-tag.scss +29 -0
  471. package/theme-style/src/col.scss +52 -0
  472. package/theme-style/src/collapse.scss +67 -0
  473. package/theme-style/src/color-picker.scss +2 -2
  474. package/theme-style/src/common/popup.scss +47 -0
  475. package/theme-style/src/common/transition.scss +21 -3
  476. package/theme-style/src/common/var.scss +388 -6
  477. package/theme-style/src/container.scss +14 -0
  478. package/theme-style/src/date-picker/date-picker.scss +110 -0
  479. package/theme-style/src/date-picker/date-range-picker.scss +113 -0
  480. package/theme-style/src/date-picker/date-table.scss +162 -0
  481. package/theme-style/src/date-picker/month-table.scss +90 -0
  482. package/theme-style/src/date-picker/picker-panel.scss +131 -0
  483. package/theme-style/src/date-picker/picker.scss +210 -0
  484. package/theme-style/src/date-picker/time-picker.scss +90 -0
  485. package/theme-style/src/date-picker/time-range-picker.scss +33 -0
  486. package/theme-style/src/date-picker/time-spinner.scss +111 -0
  487. package/theme-style/src/date-picker/year-table.scss +60 -0
  488. package/theme-style/src/date-picker.scss +9 -0
  489. package/theme-style/src/date-time-select.scss +46 -20
  490. package/theme-style/src/display.scss +12 -0
  491. package/theme-style/src/drawer.scss +160 -0
  492. package/theme-style/src/footer-layout.scss +4 -9
  493. package/theme-style/src/footer.scss +11 -0
  494. package/theme-style/src/header-layout.scss +26 -15
  495. package/theme-style/src/header.scss +11 -0
  496. package/theme-style/src/horizontal-menu.scss +90 -0
  497. package/theme-style/src/icon.scss +6 -6
  498. package/theme-style/src/index.scss +123 -76
  499. package/theme-style/src/input-number.scss +175 -0
  500. package/theme-style/src/input.scss +3 -6
  501. package/theme-style/src/list-cell.scss +3 -3
  502. package/theme-style/src/loading.scss +1 -1
  503. package/theme-style/src/main.scss +10 -0
  504. package/theme-style/src/md/code.scss +3 -6
  505. package/theme-style/src/md/demo-block.scss +2 -2
  506. package/theme-style/src/md/pswp.scss +4 -4
  507. package/theme-style/src/md/scroll-bar.scss +1 -1
  508. package/theme-style/src/md/table.scss +3 -3
  509. package/theme-style/src/md/toc.scss +3 -3
  510. package/theme-style/src/md-comment.scss +1086 -200
  511. package/theme-style/src/md-container.scss +6 -9
  512. package/theme-style/src/md-vue-playground.scss +0 -15
  513. package/theme-style/src/menu.scss +43 -17
  514. package/theme-style/src/message-box.scss +258 -0
  515. package/theme-style/src/mixins/_col.scss +38 -0
  516. package/theme-style/src/mixins/mixins.scss +25 -0
  517. package/theme-style/src/notification.scss +105 -0
  518. package/theme-style/src/option.scss +36 -0
  519. package/theme-style/src/pagination.scss +0 -2
  520. package/theme-style/src/progress.scss +169 -0
  521. package/theme-style/src/rate.scss +101 -0
  522. package/theme-style/src/reset.scss +92 -0
  523. package/theme-style/src/row.scss +31 -0
  524. package/theme-style/src/search.scss +28 -0
  525. package/theme-style/src/select-dropdown.scss +2 -2
  526. package/theme-style/src/side-menu.scss +9 -3
  527. package/theme-style/src/slider.scss +211 -0
  528. package/theme-style/src/space.scss +20 -0
  529. package/theme-style/src/spinner.scss +43 -0
  530. package/theme-style/src/statistic.scss +35 -0
  531. package/theme-style/src/step.scss +316 -0
  532. package/theme-style/src/steps.scss +21 -0
  533. package/theme-style/src/tabs.scss +2 -2
  534. package/theme-style/src/time-picker.scss +5 -0
  535. package/theme-style/src/time-select.scss +37 -0
  536. package/theme-style/src/timeline-item.scss +85 -0
  537. package/theme-style/src/timeline.scss +46 -0
  538. package/theme-style/src/transfer.scss +206 -0
  539. package/theme-style/src/tree-select.scss +36 -0
  540. package/theme-style/src/tree.scss +131 -0
  541. package/theme-style/src/upload.scss +621 -0
  542. package/theme-style/vft-affix.css +1 -0
  543. package/theme-style/vft-aside.css +1 -0
  544. package/theme-style/vft-autocomplete.css +1 -0
  545. package/theme-style/vft-back-top.css +1 -1
  546. package/theme-style/vft-badge.css +1 -0
  547. package/theme-style/vft-breadcrumb.css +1 -0
  548. package/theme-style/vft-calendar.css +1 -0
  549. package/theme-style/vft-card.css +1 -0
  550. package/theme-style/vft-carousel-item.css +1 -0
  551. package/theme-style/vft-carousel.css +1 -0
  552. package/theme-style/vft-cascader-panel.css +1 -0
  553. package/theme-style/vft-cascader.css +1 -0
  554. package/theme-style/vft-check-tag.css +1 -0
  555. package/theme-style/vft-col.css +1 -0
  556. package/theme-style/vft-collapse.css +1 -0
  557. package/theme-style/vft-color-picker.css +1 -1
  558. package/theme-style/vft-container.css +1 -0
  559. package/theme-style/vft-date-picker.css +1 -0
  560. package/theme-style/vft-date-time-select.css +1 -1
  561. package/theme-style/vft-drawer.css +1 -0
  562. package/theme-style/vft-footer-layout.css +1 -1
  563. package/theme-style/vft-footer.css +1 -0
  564. package/theme-style/vft-header-layout.css +1 -1
  565. package/theme-style/vft-header.css +1 -0
  566. package/theme-style/vft-horizontal-menu.css +1 -0
  567. package/theme-style/vft-input-number.css +1 -0
  568. package/theme-style/vft-input.css +1 -1
  569. package/theme-style/vft-main.css +1 -0
  570. package/theme-style/vft-md-comment.css +1 -1
  571. package/theme-style/vft-md-container.css +1 -1
  572. package/theme-style/vft-md-vue-playground.css +1 -1
  573. package/theme-style/vft-menu.css +1 -1
  574. package/theme-style/vft-message-box.css +1 -0
  575. package/theme-style/vft-notification.css +1 -0
  576. package/theme-style/vft-option.css +1 -0
  577. package/theme-style/vft-pagination.css +1 -1
  578. package/theme-style/vft-progress.css +1 -0
  579. package/theme-style/vft-rate.css +1 -0
  580. package/theme-style/vft-reset.css +1 -0
  581. package/theme-style/vft-row.css +1 -0
  582. package/theme-style/vft-search.css +1 -1
  583. package/theme-style/vft-select-dropdown.css +1 -1
  584. package/theme-style/vft-select.css +1 -1
  585. package/theme-style/vft-side-menu.css +1 -1
  586. package/theme-style/vft-slider.css +1 -0
  587. package/theme-style/vft-space.css +1 -0
  588. package/theme-style/vft-spinner.css +1 -0
  589. package/theme-style/vft-statistic.css +1 -0
  590. package/theme-style/vft-step.css +1 -0
  591. package/theme-style/vft-steps.css +1 -0
  592. package/theme-style/vft-tabs.css +1 -1
  593. package/theme-style/vft-time-picker.css +1 -0
  594. package/theme-style/vft-time-select.css +1 -0
  595. package/theme-style/vft-timeline-item.css +1 -0
  596. package/theme-style/vft-timeline.css +1 -0
  597. package/theme-style/vft-transfer.css +1 -0
  598. package/theme-style/vft-tree-select.css +1 -0
  599. package/theme-style/vft-tree.css +1 -0
  600. package/theme-style/vft-upload.css +1 -0
  601. package/theme-style/vft-var.css +1 -1
  602. package/web-types.json +1 -1
  603. package/es/comp-resolver.d.ts +0 -49
  604. package/es/component.d.ts +0 -3
  605. package/es/components/alert/alert.vue.d.ts +0 -102
  606. package/es/components/alert/index.d.ts +0 -73
  607. package/es/components/alert/types.d.ts +0 -4
  608. package/es/components/avatar/avatar.vue.d.ts +0 -56
  609. package/es/components/avatar/index.d.ts +0 -54
  610. package/es/components/back-top/back-top.vue.d.ts +0 -69
  611. package/es/components/back-top/index.d.ts +0 -54
  612. package/es/components/back-top/use-back-top.d.ts +0 -5
  613. package/es/components/base/style/css.d.ts +0 -0
  614. package/es/components/base/style/index.d.ts +0 -0
  615. package/es/components/button/button-custom.d.ts +0 -4
  616. package/es/components/button/button-group.vue.d.ts +0 -23
  617. package/es/components/button/button.vue.d.ts +0 -189
  618. package/es/components/button/constants.d.ts +0 -7
  619. package/es/components/button/index.d.ts +0 -203
  620. package/es/components/button/instance.d.ts +0 -4
  621. package/es/components/button/style/css.d.ts +0 -0
  622. package/es/components/button/style/index.d.ts +0 -0
  623. package/es/components/button/types.d.ts +0 -4
  624. package/es/components/button/use-button.d.ts +0 -10
  625. package/es/components/button-group/style/css.d.ts +0 -0
  626. package/es/components/button-group/style/index.d.ts +0 -0
  627. package/es/components/checkbox/checkbox-button.vue.d.ts +0 -137
  628. package/es/components/checkbox/checkbox-group.vue.d.ts +0 -112
  629. package/es/components/checkbox/checkbox.vue.d.ts +0 -141
  630. package/es/components/checkbox/composables/index.d.ts +0 -5
  631. package/es/components/checkbox/composables/use-checkbox-disabled.d.ts +0 -6
  632. package/es/components/checkbox/composables/use-checkbox-event.d.ts +0 -7
  633. package/es/components/checkbox/composables/use-checkbox-model.d.ts +0 -7
  634. package/es/components/checkbox/composables/use-checkbox-status.d.ts +0 -11
  635. package/es/components/checkbox/composables/use-checkbox.d.ts +0 -15
  636. package/es/components/checkbox/constants.d.ts +0 -8
  637. package/es/components/checkbox/index.d.ts +0 -556
  638. package/es/components/checkbox/style/css.d.ts +0 -0
  639. package/es/components/checkbox/style/index.d.ts +0 -0
  640. package/es/components/checkbox/types.d.ts +0 -2
  641. package/es/components/checkbox-button/style/css.d.ts +0 -0
  642. package/es/components/checkbox-button/style/index.d.ts +0 -0
  643. package/es/components/checkbox-group/style/css.d.ts +0 -0
  644. package/es/components/checkbox-group/style/index.d.ts +0 -0
  645. package/es/components/clamp/clamp.vue.d.ts +0 -64
  646. package/es/components/clamp/index.d.ts +0 -63
  647. package/es/components/clamp/style/css.d.ts +0 -0
  648. package/es/components/clamp/style/index.d.ts +0 -0
  649. package/es/components/clamp-toggle/clamp-toggle.vue.d.ts +0 -101
  650. package/es/components/clamp-toggle/index.d.ts +0 -100
  651. package/es/components/clamp-toggle/style/css.d.ts +0 -0
  652. package/es/components/clamp-toggle/style/index.d.ts +0 -0
  653. package/es/components/collapse-transition/index.d.ts +0 -4
  654. package/es/components/collapse-transition/src/collapse-transition.vue.d.ts +0 -2
  655. package/es/components/collapse-transition/style/css.d.ts +0 -0
  656. package/es/components/collapse-transition/style/index.d.ts +0 -0
  657. package/es/components/collection/collection-item.vue.d.ts +0 -2
  658. package/es/components/collection/collection.d.ts +0 -242
  659. package/es/components/collection/collection.vue.d.ts +0 -2
  660. package/es/components/collection/index.d.ts +0 -2
  661. package/es/components/collection/tokens.d.ts +0 -12
  662. package/es/components/color-picker/color-picker.vue.d.ts +0 -126
  663. package/es/components/color-picker/components/alpha-slider.vue.d.ts +0 -42
  664. package/es/components/color-picker/components/hue-slider.vue.d.ts +0 -44
  665. package/es/components/color-picker/components/predefine.vue.d.ts +0 -43
  666. package/es/components/color-picker/components/sv-panel.vue.d.ts +0 -42
  667. package/es/components/color-picker/composables/use-alpha-slider.d.ts +0 -20
  668. package/es/components/color-picker/contants.d.ts +0 -5
  669. package/es/components/color-picker/index.d.ts +0 -108
  670. package/es/components/color-picker/style/css.d.ts +0 -0
  671. package/es/components/color-picker/style/index.d.ts +0 -0
  672. package/es/components/color-picker/utils/color.d.ts +0 -29
  673. package/es/components/color-picker/utils/draggable.d.ts +0 -6
  674. package/es/components/config-provider/config-provider.vue.d.ts +0 -107
  675. package/es/components/config-provider/constants.d.ts +0 -6
  676. package/es/components/config-provider/hooks/use-global-config.d.ts +0 -31
  677. package/es/components/config-provider/index.d.ts +0 -86
  678. package/es/components/config-provider/style/css.d.ts +0 -0
  679. package/es/components/config-provider/style/index.d.ts +0 -0
  680. package/es/components/context-menu/context-menu.vue.d.ts +0 -39
  681. package/es/components/context-menu/createContextMenu.d.ts +0 -3
  682. package/es/components/context-menu/index.d.ts +0 -3
  683. package/es/components/context-menu/style/css.d.ts +0 -0
  684. package/es/components/context-menu/style/index.d.ts +0 -0
  685. package/es/components/context-menu/types.d.ts +0 -23
  686. package/es/components/context-menu/useContextMenu.d.ts +0 -3
  687. package/es/components/date-time-select/date-time-select.vue.d.ts +0 -38
  688. package/es/components/date-time-select/index.d.ts +0 -30
  689. package/es/components/date-time-select/style/css.d.ts +0 -0
  690. package/es/components/date-time-select/style/index.d.ts +0 -0
  691. package/es/components/date-time-select/types.d.ts +0 -10
  692. package/es/components/descriptions/description-item.vue.d.ts +0 -69
  693. package/es/components/descriptions/description.vue.d.ts +0 -53
  694. package/es/components/descriptions/descriptions-cell.d.ts +0 -25
  695. package/es/components/descriptions/descriptions-row.vue.d.ts +0 -13
  696. package/es/components/descriptions/descriptions.type.d.ts +0 -18
  697. package/es/components/descriptions/index.d.ts +0 -187
  698. package/es/components/descriptions/style/css.d.ts +0 -0
  699. package/es/components/descriptions/style/index.d.ts +0 -0
  700. package/es/components/descriptions/token.d.ts +0 -3
  701. package/es/components/descriptions-item/style/css.d.ts +0 -0
  702. package/es/components/descriptions-item/style/index.d.ts +0 -0
  703. package/es/components/dialog/constants.d.ts +0 -11
  704. package/es/components/dialog/dialog-content.vue.d.ts +0 -81
  705. package/es/components/dialog/dialog.vue.d.ts +0 -164
  706. package/es/components/dialog/hooks/use-dialog.d.ts +0 -23
  707. package/es/components/dialog/index.d.ts +0 -146
  708. package/es/components/dialog/style/css.d.ts +0 -0
  709. package/es/components/dialog/style/index.d.ts +0 -0
  710. package/es/components/dialog/types.d.ts +0 -10
  711. package/es/components/divider/divider.vue.d.ts +0 -53
  712. package/es/components/divider/index.d.ts +0 -52
  713. package/es/components/divider/style/css.d.ts +0 -0
  714. package/es/components/divider/style/index.d.ts +0 -0
  715. package/es/components/divider/types.d.ts +0 -2
  716. package/es/components/docs-layout/style/css.d.ts +0 -0
  717. package/es/components/docs-layout/style/index.d.ts +0 -0
  718. package/es/components/dropdown/dropdown-item-impl.vue.d.ts +0 -57
  719. package/es/components/dropdown/dropdown-item.vue.d.ts +0 -43
  720. package/es/components/dropdown/dropdown-menu.vue.d.ts +0 -22
  721. package/es/components/dropdown/dropdown.vue.d.ts +0 -828
  722. package/es/components/dropdown/index.d.ts +0 -959
  723. package/es/components/dropdown/style/css.d.ts +0 -0
  724. package/es/components/dropdown/style/index.d.ts +0 -0
  725. package/es/components/dropdown/tokens.d.ts +0 -10
  726. package/es/components/dropdown/types.d.ts +0 -267
  727. package/es/components/dropdown/useDropdown.d.ts +0 -6
  728. package/es/components/dropdown-item/style/css.d.ts +0 -0
  729. package/es/components/dropdown-item/style/index.d.ts +0 -0
  730. package/es/components/dropdown-menu/style/css.d.ts +0 -0
  731. package/es/components/dropdown-menu/style/index.d.ts +0 -0
  732. package/es/components/empty/constants.d.ts +0 -12
  733. package/es/components/empty/empty.vue.d.ts +0 -48
  734. package/es/components/empty/index.d.ts +0 -37
  735. package/es/components/empty/style/css.d.ts +0 -0
  736. package/es/components/empty/style/index.d.ts +0 -0
  737. package/es/components/exception/exception.vue.d.ts +0 -29
  738. package/es/components/exception/index.d.ts +0 -28
  739. package/es/components/exception/style/css.d.ts +0 -0
  740. package/es/components/exception/style/index.d.ts +0 -0
  741. package/es/components/focus-trap/focus-trap.vue.d.ts +0 -32
  742. package/es/components/focus-trap/index.d.ts +0 -5
  743. package/es/components/focus-trap/tokens.d.ts +0 -13
  744. package/es/components/focus-trap/utils.d.ts +0 -29
  745. package/es/components/footer-layout/footer-layout.vue.d.ts +0 -13
  746. package/es/components/footer-layout/index.d.ts +0 -12
  747. package/es/components/footer-layout/style/css.d.ts +0 -0
  748. package/es/components/footer-layout/style/index.d.ts +0 -0
  749. package/es/components/form/constants.d.ts +0 -4
  750. package/es/components/form/form-item.vue.d.ts +0 -146
  751. package/es/components/form/form-label-wrap.d.ts +0 -11
  752. package/es/components/form/form.vue.d.ts +0 -168
  753. package/es/components/form/hooks/index.d.ts +0 -2
  754. package/es/components/form/hooks/use-form-common-props.d.ts +0 -6
  755. package/es/components/form/hooks/use-form-item.d.ts +0 -18
  756. package/es/components/form/index.d.ts +0 -364
  757. package/es/components/form/style/css.d.ts +0 -0
  758. package/es/components/form/style/index.d.ts +0 -0
  759. package/es/components/form/types.d.ts +0 -43
  760. package/es/components/form/utils.d.ts +0 -9
  761. package/es/components/form-item/style/css.d.ts +0 -0
  762. package/es/components/form-item/style/index.d.ts +0 -0
  763. package/es/components/full-screen/full-screen.vue.d.ts +0 -5
  764. package/es/components/full-screen/index.d.ts +0 -2
  765. package/es/components/full-screen/style/css.d.ts +0 -0
  766. package/es/components/full-screen/style/index.d.ts +0 -0
  767. package/es/components/header-layout/header-layout.vue.d.ts +0 -14
  768. package/es/components/header-layout/index.d.ts +0 -12
  769. package/es/components/header-layout/style/css.d.ts +0 -0
  770. package/es/components/header-layout/style/index.d.ts +0 -0
  771. package/es/components/icon/icon.vue.d.ts +0 -73
  772. package/es/components/icon/index.d.ts +0 -63
  773. package/es/components/icon/style/css.d.ts +0 -0
  774. package/es/components/icon/style/index.d.ts +0 -0
  775. package/es/components/icon-text/icon-text.vue.d.ts +0 -98
  776. package/es/components/icon-text/index.d.ts +0 -85
  777. package/es/components/icon-text/style/css.d.ts +0 -0
  778. package/es/components/icon-text/style/index.d.ts +0 -0
  779. package/es/components/iframe-layout/iframe-layout.vue.d.ts +0 -14
  780. package/es/components/iframe-layout/iframe-page.vue.d.ts +0 -13
  781. package/es/components/iframe-layout/index.d.ts +0 -12
  782. package/es/components/iframe-layout/style/css.d.ts +0 -0
  783. package/es/components/iframe-layout/style/index.d.ts +0 -0
  784. package/es/components/image/image.vue.d.ts +0 -122
  785. package/es/components/image/index.d.ts +0 -108
  786. package/es/components/image/style/css.d.ts +0 -0
  787. package/es/components/image/style/index.d.ts +0 -0
  788. package/es/components/image/types.d.ts +0 -1
  789. package/es/components/image-viewer/image-viewer.vue.d.ts +0 -88
  790. package/es/components/image-viewer/index.d.ts +0 -77
  791. package/es/components/image-viewer/style/css.d.ts +0 -0
  792. package/es/components/image-viewer/style/index.d.ts +0 -0
  793. package/es/components/image-viewer/types.d.ts +0 -1
  794. package/es/components/index.d.ts +0 -60
  795. package/es/components/input/index.d.ts +0 -252
  796. package/es/components/input/input.vue.d.ts +0 -265
  797. package/es/components/input/style/css.d.ts +0 -0
  798. package/es/components/input/style/index.d.ts +0 -0
  799. package/es/components/input/utils.d.ts +0 -6
  800. package/es/components/link/index.d.ts +0 -54
  801. package/es/components/link/link.vue.d.ts +0 -58
  802. package/es/components/link/style/css.d.ts +0 -0
  803. package/es/components/link/style/index.d.ts +0 -0
  804. package/es/components/list-cell/index.d.ts +0 -38
  805. package/es/components/list-cell/list-cell.vue.d.ts +0 -53
  806. package/es/components/list-cell/style/css.d.ts +0 -0
  807. package/es/components/list-cell/style/index.d.ts +0 -0
  808. package/es/components/loading/directive.d.ts +0 -18
  809. package/es/components/loading/index.d.ts +0 -48
  810. package/es/components/loading/loading.d.ts +0 -36
  811. package/es/components/loading/service.d.ts +0 -3
  812. package/es/components/loading/style/css.d.ts +0 -0
  813. package/es/components/loading/style/index.d.ts +0 -0
  814. package/es/components/loading/types.d.ts +0 -27
  815. package/es/components/logo/index.d.ts +0 -29
  816. package/es/components/logo/logo.vue.d.ts +0 -29
  817. package/es/components/logo/style/css.d.ts +0 -0
  818. package/es/components/logo/style/index.d.ts +0 -0
  819. package/es/components/logo/types.d.ts +0 -6
  820. package/es/components/md-code-demo/code-demo/code.d.ts +0 -13
  821. package/es/components/md-code-demo/code-demo/index.d.ts +0 -2
  822. package/es/components/md-code-demo/code-demo/loadScript.d.ts +0 -5
  823. package/es/components/md-code-demo/code-demo/typings.d.ts +0 -15
  824. package/es/components/md-code-demo/code-demo/utils.d.ts +0 -13
  825. package/es/components/md-code-demo/index.d.ts +0 -50
  826. package/es/components/md-code-demo/md-code-demo.d.ts +0 -99
  827. package/es/components/md-code-demo/style/css.d.ts +0 -0
  828. package/es/components/md-code-demo/style/index.d.ts +0 -0
  829. package/es/components/md-code-demo/type.d.ts +0 -89
  830. package/es/components/md-code-demo/utils.d.ts +0 -5
  831. package/es/components/md-code-tabs/index.d.ts +0 -41
  832. package/es/components/md-code-tabs/md-code-tabs.d.ts +0 -81
  833. package/es/components/md-code-tabs/style/css.d.ts +0 -0
  834. package/es/components/md-code-tabs/style/index.d.ts +0 -0
  835. package/es/components/md-comment/index.d.ts +0 -2
  836. package/es/components/md-comment/md-comment.vue.d.ts +0 -2
  837. package/es/components/md-comment/style/css.d.ts +0 -0
  838. package/es/components/md-comment/style/index.d.ts +0 -0
  839. package/es/components/md-container/index.d.ts +0 -4
  840. package/es/components/md-container/md-container.vue.d.ts +0 -4
  841. package/es/components/md-container/style/css.d.ts +0 -0
  842. package/es/components/md-container/style/index.d.ts +0 -0
  843. package/es/components/md-container/toc.d.ts +0 -44
  844. package/es/components/md-container/use/index.d.ts +0 -2
  845. package/es/components/md-container/use/useActiveHeaderLinks.d.ts +0 -7
  846. package/es/components/md-container/use/useCopyCode.d.ts +0 -1
  847. package/es/components/md-container/utils.d.ts +0 -11
  848. package/es/components/md-tabs/index.d.ts +0 -42
  849. package/es/components/md-tabs/md-tabs.d.ts +0 -84
  850. package/es/components/md-tabs/style/css.d.ts +0 -0
  851. package/es/components/md-tabs/style/index.d.ts +0 -0
  852. package/es/components/md-vue-playground/index.d.ts +0 -28
  853. package/es/components/md-vue-playground/md-vue-playground.vue.d.ts +0 -29
  854. package/es/components/md-vue-playground/playground.d.ts +0 -97
  855. package/es/components/md-vue-playground/style/css.d.ts +0 -0
  856. package/es/components/md-vue-playground/style/index.d.ts +0 -0
  857. package/es/components/menu/index.d.ts +0 -504
  858. package/es/components/menu/menu-collapse-transition.vue.d.ts +0 -5
  859. package/es/components/menu/menu-item-group.vue.d.ts +0 -13
  860. package/es/components/menu/menu-item.vue.d.ts +0 -81
  861. package/es/components/menu/menu.vue.d.ts +0 -109
  862. package/es/components/menu/style/css.d.ts +0 -0
  863. package/es/components/menu/style/index.d.ts +0 -0
  864. package/es/components/menu/sub-menu.vue.d.ts +0 -112
  865. package/es/components/menu/types.d.ts +0 -59
  866. package/es/components/menu/use-menu-css-var.d.ts +0 -1
  867. package/es/components/menu/use-menu.d.ts +0 -14
  868. package/es/components/menu/utils/menu-bar.d.ts +0 -7
  869. package/es/components/menu/utils/menu-item.d.ts +0 -9
  870. package/es/components/menu/utils/submenu.d.ts +0 -12
  871. package/es/components/menu-item/style/css.d.ts +0 -0
  872. package/es/components/menu-item/style/index.d.ts +0 -0
  873. package/es/components/menu-item-group/style/css.d.ts +0 -0
  874. package/es/components/menu-item-group/style/index.d.ts +0 -0
  875. package/es/components/message/index.d.ts +0 -4
  876. package/es/components/message/instance.d.ts +0 -17
  877. package/es/components/message/message.vue.d.ts +0 -145
  878. package/es/components/message/method.d.ts +0 -4
  879. package/es/components/message/style/css.d.ts +0 -0
  880. package/es/components/message/style/index.d.ts +0 -0
  881. package/es/components/message/types.d.ts +0 -63
  882. package/es/components/multiple-tabs/index.d.ts +0 -30
  883. package/es/components/multiple-tabs/multiple-tabs.vue.d.ts +0 -29
  884. package/es/components/multiple-tabs/style/css.d.ts +0 -0
  885. package/es/components/multiple-tabs/style/index.d.ts +0 -0
  886. package/es/components/multiple-tabs/tab-content.vue.d.ts +0 -40
  887. package/es/components/multiple-tabs/types.d.ts +0 -3
  888. package/es/components/multiple-tabs/use/index.d.ts +0 -2
  889. package/es/components/multiple-tabs/use/use-multiple-tabs.d.ts +0 -9
  890. package/es/components/multiple-tabs/use/use-tab-dropdown.d.ts +0 -6
  891. package/es/components/overlay/index.d.ts +0 -46
  892. package/es/components/overlay/overlay.vue.d.ts +0 -47
  893. package/es/components/overlay/style/css.d.ts +0 -0
  894. package/es/components/overlay/style/index.d.ts +0 -0
  895. package/es/components/page-wrapper/index.d.ts +0 -12
  896. package/es/components/page-wrapper/page-wrapper.vue.d.ts +0 -13
  897. package/es/components/page-wrapper/style/css.d.ts +0 -0
  898. package/es/components/page-wrapper/style/index.d.ts +0 -0
  899. package/es/components/pagination/components/jumper.vue.d.ts +0 -14
  900. package/es/components/pagination/components/next.vue.d.ts +0 -39
  901. package/es/components/pagination/components/pager.vue.d.ts +0 -39
  902. package/es/components/pagination/components/prev.vue.d.ts +0 -31
  903. package/es/components/pagination/components/sizes.vue.d.ts +0 -47
  904. package/es/components/pagination/components/total.vue.d.ts +0 -13
  905. package/es/components/pagination/index.d.ts +0 -164
  906. package/es/components/pagination/pagination.vue.d.ts +0 -185
  907. package/es/components/pagination/style/css.d.ts +0 -0
  908. package/es/components/pagination/style/index.d.ts +0 -0
  909. package/es/components/pagination/usePagination.d.ts +0 -10
  910. package/es/components/popover/directive.d.ts +0 -4
  911. package/es/components/popover/index.d.ts +0 -182
  912. package/es/components/popover/popover.vue.d.ts +0 -187
  913. package/es/components/popover/style/css.d.ts +0 -0
  914. package/es/components/popover/style/index.d.ts +0 -0
  915. package/es/components/popover/types.d.ts +0 -26
  916. package/es/components/popper/arrow.vue.d.ts +0 -18
  917. package/es/components/popper/composables/index.d.ts +0 -3
  918. package/es/components/popper/composables/use-content-dom.d.ts +0 -16
  919. package/es/components/popper/composables/use-content.d.ts +0 -77
  920. package/es/components/popper/composables/use-focus-trap.d.ts +0 -11
  921. package/es/components/popper/constants.d.ts +0 -24
  922. package/es/components/popper/content.vue.d.ts +0 -222
  923. package/es/components/popper/index.d.ts +0 -18
  924. package/es/components/popper/popper.vue.d.ts +0 -13
  925. package/es/components/popper/style/css.d.ts +0 -0
  926. package/es/components/popper/style/index.d.ts +0 -0
  927. package/es/components/popper/trigger.vue.d.ts +0 -99
  928. package/es/components/popper/types.d.ts +0 -45
  929. package/es/components/popper/utils.d.ts +0 -49
  930. package/es/components/qrcode/drawCanvas.d.ts +0 -2
  931. package/es/components/qrcode/drawLogo.d.ts +0 -2
  932. package/es/components/qrcode/index.d.ts +0 -50
  933. package/es/components/qrcode/qrcode.vue.d.ts +0 -51
  934. package/es/components/qrcode/qrcodePlus.d.ts +0 -3
  935. package/es/components/qrcode/style/css.d.ts +0 -0
  936. package/es/components/qrcode/style/index.d.ts +0 -0
  937. package/es/components/qrcode/toCanvas.d.ts +0 -2
  938. package/es/components/qrcode/types.d.ts +0 -31
  939. package/es/components/radio/constants.d.ts +0 -6
  940. package/es/components/radio/index.d.ts +0 -294
  941. package/es/components/radio/radio-button.vue.d.ts +0 -44
  942. package/es/components/radio/radio-group.vue.d.ts +0 -96
  943. package/es/components/radio/radio.vue.d.ts +0 -65
  944. package/es/components/radio/style/css.d.ts +0 -0
  945. package/es/components/radio/style/index.d.ts +0 -0
  946. package/es/components/radio/use-radio.d.ts +0 -15
  947. package/es/components/radio-button/style/css.d.ts +0 -0
  948. package/es/components/radio-button/style/index.d.ts +0 -0
  949. package/es/components/radio-group/style/css.d.ts +0 -0
  950. package/es/components/radio-group/style/index.d.ts +0 -0
  951. package/es/components/result/index.d.ts +0 -28
  952. package/es/components/result/result.vue.d.ts +0 -30
  953. package/es/components/result/style/css.d.ts +0 -0
  954. package/es/components/result/style/index.d.ts +0 -0
  955. package/es/components/router-view-content/index.d.ts +0 -52
  956. package/es/components/router-view-content/router-view-content.vue.d.ts +0 -54
  957. package/es/components/router-view-content/style/css.d.ts +0 -0
  958. package/es/components/router-view-content/style/index.d.ts +0 -0
  959. package/es/components/roving-focus-group/index.d.ts +0 -10
  960. package/es/components/roving-focus-group/roving-focus-group-impl.vue.d.ts +0 -48
  961. package/es/components/roving-focus-group/roving-focus-group.vue.d.ts +0 -2
  962. package/es/components/roving-focus-group/roving-focus-item.vue.d.ts +0 -32
  963. package/es/components/roving-focus-group/tokens.d.ts +0 -37
  964. package/es/components/roving-focus-group/types.d.ts +0 -252
  965. package/es/components/roving-focus-group/utils.d.ts +0 -8
  966. package/es/components/scrollbar/bar.vue.d.ts +0 -54
  967. package/es/components/scrollbar/constants.d.ts +0 -6
  968. package/es/components/scrollbar/index.d.ts +0 -113
  969. package/es/components/scrollbar/scrollbar.vue.d.ts +0 -163
  970. package/es/components/scrollbar/style/css.d.ts +0 -0
  971. package/es/components/scrollbar/style/index.d.ts +0 -0
  972. package/es/components/scrollbar/thumb.vue.d.ts +0 -52
  973. package/es/components/scrollbar/types.d.ts +0 -2
  974. package/es/components/scrollbar/util.d.ts +0 -28
  975. package/es/components/search/index.d.ts +0 -98
  976. package/es/components/search/search.vue.d.ts +0 -100
  977. package/es/components/search/style/css.d.ts +0 -0
  978. package/es/components/search/style/index.d.ts +0 -0
  979. package/es/components/select-v2/defaults.d.ts +0 -113
  980. package/es/components/select-v2/group-item.vue.d.ts +0 -35
  981. package/es/components/select-v2/index.d.ts +0 -2025
  982. package/es/components/select-v2/option-item.vue.d.ts +0 -49
  983. package/es/components/select-v2/select-dropdown.d.ts +0 -16
  984. package/es/components/select-v2/select.types.d.ts +0 -18
  985. package/es/components/select-v2/select.vue.d.ts +0 -1012
  986. package/es/components/select-v2/style/css.d.ts +0 -0
  987. package/es/components/select-v2/style/index.d.ts +0 -0
  988. package/es/components/select-v2/token.d.ts +0 -16
  989. package/es/components/select-v2/useAllowCreate.d.ts +0 -8
  990. package/es/components/select-v2/useInput.d.ts +0 -5
  991. package/es/components/select-v2/useOption.d.ts +0 -7
  992. package/es/components/select-v2/useSelect.d.ts +0 -782
  993. package/es/components/select-v2/util.d.ts +0 -2
  994. package/es/components/side-menu/index.d.ts +0 -155
  995. package/es/components/side-menu/side-menu.vue.d.ts +0 -156
  996. package/es/components/side-menu/style/css.d.ts +0 -0
  997. package/es/components/side-menu/style/index.d.ts +0 -0
  998. package/es/components/side-menu/types.d.ts +0 -19
  999. package/es/components/side-menu/use-drag-line.d.ts +0 -10
  1000. package/es/components/slot/index.d.ts +0 -2
  1001. package/es/components/slot/only-child.d.ts +0 -7
  1002. package/es/components/sub-menu/style/css.d.ts +0 -0
  1003. package/es/components/sub-menu/style/index.d.ts +0 -0
  1004. package/es/components/switch/index.d.ts +0 -205
  1005. package/es/components/switch/style/css.d.ts +0 -0
  1006. package/es/components/switch/style/index.d.ts +0 -0
  1007. package/es/components/switch/switch.vue.d.ts +0 -236
  1008. package/es/components/tab-pane/style/css.d.ts +0 -0
  1009. package/es/components/tab-pane/style/index.d.ts +0 -0
  1010. package/es/components/table/style/css.d.ts +0 -0
  1011. package/es/components/table/style/index.d.ts +0 -0
  1012. package/es/components/table/table.vue.d.ts +0 -121
  1013. package/es/components/table/type.d.ts +0 -21
  1014. package/es/components/tabs/index.d.ts +0 -274
  1015. package/es/components/tabs/style/css.d.ts +0 -0
  1016. package/es/components/tabs/style/index.d.ts +0 -0
  1017. package/es/components/tabs/tab-bar.vue.d.ts +0 -51
  1018. package/es/components/tabs/tab-nav.vue.d.ts +0 -120
  1019. package/es/components/tabs/tab-pane.vue.d.ts +0 -45
  1020. package/es/components/tabs/tabs.vue.d.ts +0 -159
  1021. package/es/components/tabs/types.d.ts +0 -59
  1022. package/es/components/tag/index.d.ts +0 -71
  1023. package/es/components/tag/style/css.d.ts +0 -0
  1024. package/es/components/tag/style/index.d.ts +0 -0
  1025. package/es/components/tag/tag.vue.d.ts +0 -74
  1026. package/es/components/tag/types.d.ts +0 -1
  1027. package/es/components/time-select-extend/style/css.d.ts +0 -0
  1028. package/es/components/time-select-extend/style/css.js +0 -2
  1029. package/es/components/time-select-extend/style/index.d.ts +0 -0
  1030. package/es/components/time-select-extend/style/index.js +0 -2
  1031. package/es/components/tooltip/constants.d.ts +0 -18
  1032. package/es/components/tooltip/content.vue.d.ts +0 -268
  1033. package/es/components/tooltip/index.d.ts +0 -398
  1034. package/es/components/tooltip/style/css.d.ts +0 -0
  1035. package/es/components/tooltip/style/index.d.ts +0 -0
  1036. package/es/components/tooltip/tooltip.vue.d.ts +0 -470
  1037. package/es/components/tooltip/trigger.vue.d.ts +0 -54
  1038. package/es/components/tooltip/types.d.ts +0 -53
  1039. package/es/components/tooltip/utils.d.ts +0 -11
  1040. package/es/components/types.d.ts +0 -1
  1041. package/es/components/verify-code/index.d.ts +0 -23
  1042. package/es/components/verify-code/style/css.d.ts +0 -0
  1043. package/es/components/verify-code/style/index.d.ts +0 -0
  1044. package/es/components/verify-code/useImageVerify.d.ts +0 -11
  1045. package/es/components/verify-code/verify-code.vue.d.ts +0 -24
  1046. package/es/components/virtual-list/builders/build-grid.d.ts +0 -214
  1047. package/es/components/virtual-list/builders/build-list.d.ts +0 -167
  1048. package/es/components/virtual-list/components/dynamic-size-grid.d.ts +0 -206
  1049. package/es/components/virtual-list/components/dynamic-size-list.d.ts +0 -165
  1050. package/es/components/virtual-list/components/fixed-size-grid.d.ts +0 -193
  1051. package/es/components/virtual-list/components/fixed-size-list.d.ts +0 -164
  1052. package/es/components/virtual-list/components/scrollbar.d.ts +0 -79
  1053. package/es/components/virtual-list/defaults.d.ts +0 -30
  1054. package/es/components/virtual-list/hooks/use-cache.d.ts +0 -1
  1055. package/es/components/virtual-list/hooks/use-grid-wheel.d.ts +0 -13
  1056. package/es/components/virtual-list/hooks/use-wheel.d.ts +0 -13
  1057. package/es/components/virtual-list/index.d.ts +0 -8
  1058. package/es/components/virtual-list/props.d.ts +0 -201
  1059. package/es/components/virtual-list/style/css.d.ts +0 -0
  1060. package/es/components/virtual-list/style/index.d.ts +0 -0
  1061. package/es/components/virtual-list/types.d.ts +0 -137
  1062. package/es/components/virtual-list/utils.d.ts +0 -17
  1063. package/es/constants/aria.d.ts +0 -17
  1064. package/es/constants/date.d.ts +0 -3
  1065. package/es/constants/event.d.ts +0 -3
  1066. package/es/constants/index.d.ts +0 -5
  1067. package/es/constants/key.d.ts +0 -1
  1068. package/es/constants/size.d.ts +0 -7
  1069. package/es/defaults.d.ts +0 -5
  1070. package/es/hooks/index.d.ts +0 -16
  1071. package/es/hooks/use-cursor/index.d.ts +0 -2
  1072. package/es/hooks/use-delayed-toggle/index.d.ts +0 -10
  1073. package/es/hooks/use-draggable/index.d.ts +0 -2
  1074. package/es/hooks/use-forward-ref/index.d.ts +0 -9
  1075. package/es/hooks/use-id/index.d.ts +0 -9
  1076. package/es/hooks/use-lockscreen/index.d.ts +0 -11
  1077. package/es/hooks/use-model-toggle/index.d.ts +0 -25
  1078. package/es/hooks/use-namespace/index.d.ts +0 -24
  1079. package/es/hooks/use-ordered-children/index.d.ts +0 -8
  1080. package/es/hooks/use-popper/index.d.ts +0 -78
  1081. package/es/hooks/use-popper-container/index.d.ts +0 -5
  1082. package/es/hooks/use-prop/index.d.ts +0 -2
  1083. package/es/hooks/use-same-target/index.d.ts +0 -5
  1084. package/es/hooks/use-size/index.d.ts +0 -7
  1085. package/es/hooks/use-timeout/index.d.ts +0 -4
  1086. package/es/hooks/use-z-index/index.d.ts +0 -9
  1087. package/es/index.d.ts +0 -11
  1088. package/es/make-installer.d.ts +0 -6
  1089. package/es/plugin.d.ts +0 -3
  1090. package/es/utils/dom/index.d.ts +0 -2
  1091. package/es/utils/dom/position.d.ts +0 -7
  1092. package/es/utils/dom/scroll.d.ts +0 -8
  1093. package/es/utils/error.d.ts +0 -3
  1094. package/es/utils/event.d.ts +0 -6
  1095. package/es/utils/helper.d.ts +0 -1
  1096. package/es/utils/index.d.ts +0 -8
  1097. package/es/utils/ns-cover.d.ts +0 -16
  1098. package/es/utils/objects.d.ts +0 -4
  1099. package/es/utils/typescript.d.ts +0 -12
  1100. package/es/utils/vue/data-helper.d.ts +0 -1
  1101. package/es/utils/vue/index.d.ts +0 -7
  1102. package/es/utils/vue/install.d.ts +0 -6
  1103. package/es/utils/vue/props/index.d.ts +0 -3
  1104. package/es/utils/vue/props/runtime.d.ts +0 -28
  1105. package/es/utils/vue/props/types.d.ts +0 -120
  1106. package/es/utils/vue/props/util.d.ts +0 -8
  1107. package/es/utils/vue/raf.d.ts +0 -2
  1108. package/es/utils/vue/refs.d.ts +0 -3
  1109. package/es/utils/vue/typescript.d.ts +0 -5
  1110. package/es/utils/vue/vnode.d.ts +0 -51
  1111. package/lib/comp-resolver.d.ts +0 -49
  1112. package/lib/component.d.ts +0 -3
  1113. package/lib/components/alert/alert.vue.d.ts +0 -102
  1114. package/lib/components/alert/index.d.ts +0 -73
  1115. package/lib/components/alert/style/css.d.ts +0 -0
  1116. package/lib/components/alert/style/index.d.ts +0 -0
  1117. package/lib/components/alert/types.d.ts +0 -4
  1118. package/lib/components/avatar/avatar.vue.d.ts +0 -56
  1119. package/lib/components/avatar/index.d.ts +0 -54
  1120. package/lib/components/avatar/style/css.d.ts +0 -0
  1121. package/lib/components/avatar/style/index.d.ts +0 -0
  1122. package/lib/components/back-top/back-top.vue.d.ts +0 -69
  1123. package/lib/components/back-top/index.d.ts +0 -54
  1124. package/lib/components/back-top/style/css.d.ts +0 -0
  1125. package/lib/components/back-top/style/index.d.ts +0 -0
  1126. package/lib/components/back-top/use-back-top.d.ts +0 -5
  1127. package/lib/components/base/style/css.d.ts +0 -0
  1128. package/lib/components/base/style/index.d.ts +0 -0
  1129. package/lib/components/button/button-custom.d.ts +0 -4
  1130. package/lib/components/button/button-group.vue.d.ts +0 -23
  1131. package/lib/components/button/button.vue.d.ts +0 -189
  1132. package/lib/components/button/constants.d.ts +0 -7
  1133. package/lib/components/button/index.d.ts +0 -203
  1134. package/lib/components/button/instance.d.ts +0 -4
  1135. package/lib/components/button/style/css.d.ts +0 -0
  1136. package/lib/components/button/style/index.d.ts +0 -0
  1137. package/lib/components/button/types.d.ts +0 -4
  1138. package/lib/components/button/use-button.d.ts +0 -10
  1139. package/lib/components/button-group/style/css.d.ts +0 -0
  1140. package/lib/components/button-group/style/index.d.ts +0 -0
  1141. package/lib/components/checkbox/checkbox-button.vue.d.ts +0 -137
  1142. package/lib/components/checkbox/checkbox-group.vue.d.ts +0 -112
  1143. package/lib/components/checkbox/checkbox.vue.d.ts +0 -141
  1144. package/lib/components/checkbox/composables/index.d.ts +0 -5
  1145. package/lib/components/checkbox/composables/use-checkbox-disabled.d.ts +0 -6
  1146. package/lib/components/checkbox/composables/use-checkbox-event.d.ts +0 -7
  1147. package/lib/components/checkbox/composables/use-checkbox-model.d.ts +0 -7
  1148. package/lib/components/checkbox/composables/use-checkbox-status.d.ts +0 -11
  1149. package/lib/components/checkbox/composables/use-checkbox.d.ts +0 -15
  1150. package/lib/components/checkbox/constants.d.ts +0 -8
  1151. package/lib/components/checkbox/index.d.ts +0 -556
  1152. package/lib/components/checkbox/style/css.d.ts +0 -0
  1153. package/lib/components/checkbox/style/index.d.ts +0 -0
  1154. package/lib/components/checkbox/types.d.ts +0 -2
  1155. package/lib/components/checkbox-button/style/css.d.ts +0 -0
  1156. package/lib/components/checkbox-button/style/index.d.ts +0 -0
  1157. package/lib/components/checkbox-group/style/css.d.ts +0 -0
  1158. package/lib/components/checkbox-group/style/index.d.ts +0 -0
  1159. package/lib/components/clamp/clamp.vue.d.ts +0 -64
  1160. package/lib/components/clamp/index.d.ts +0 -63
  1161. package/lib/components/clamp/style/css.d.ts +0 -0
  1162. package/lib/components/clamp/style/index.d.ts +0 -0
  1163. package/lib/components/clamp-toggle/clamp-toggle.vue.d.ts +0 -101
  1164. package/lib/components/clamp-toggle/index.d.ts +0 -100
  1165. package/lib/components/clamp-toggle/style/css.d.ts +0 -0
  1166. package/lib/components/clamp-toggle/style/index.d.ts +0 -0
  1167. package/lib/components/collapse-transition/index.d.ts +0 -4
  1168. package/lib/components/collapse-transition/src/collapse-transition.vue.d.ts +0 -2
  1169. package/lib/components/collapse-transition/style/css.d.ts +0 -0
  1170. package/lib/components/collapse-transition/style/index.d.ts +0 -0
  1171. package/lib/components/collection/collection-item.vue.d.ts +0 -2
  1172. package/lib/components/collection/collection.d.ts +0 -242
  1173. package/lib/components/collection/collection.vue.d.ts +0 -2
  1174. package/lib/components/collection/index.d.ts +0 -2
  1175. package/lib/components/collection/tokens.d.ts +0 -12
  1176. package/lib/components/color-picker/color-picker.vue.d.ts +0 -126
  1177. package/lib/components/color-picker/components/alpha-slider.vue.d.ts +0 -42
  1178. package/lib/components/color-picker/components/hue-slider.vue.d.ts +0 -44
  1179. package/lib/components/color-picker/components/predefine.vue.d.ts +0 -43
  1180. package/lib/components/color-picker/components/sv-panel.vue.d.ts +0 -42
  1181. package/lib/components/color-picker/composables/use-alpha-slider.d.ts +0 -20
  1182. package/lib/components/color-picker/contants.d.ts +0 -5
  1183. package/lib/components/color-picker/index.d.ts +0 -108
  1184. package/lib/components/color-picker/style/css.d.ts +0 -0
  1185. package/lib/components/color-picker/style/index.d.ts +0 -0
  1186. package/lib/components/color-picker/utils/color.d.ts +0 -29
  1187. package/lib/components/color-picker/utils/draggable.d.ts +0 -6
  1188. package/lib/components/config-provider/config-provider.vue.d.ts +0 -107
  1189. package/lib/components/config-provider/constants.d.ts +0 -6
  1190. package/lib/components/config-provider/hooks/use-global-config.d.ts +0 -31
  1191. package/lib/components/config-provider/index.d.ts +0 -86
  1192. package/lib/components/config-provider/style/css.d.ts +0 -0
  1193. package/lib/components/config-provider/style/index.d.ts +0 -0
  1194. package/lib/components/context-menu/context-menu.vue.d.ts +0 -39
  1195. package/lib/components/context-menu/createContextMenu.d.ts +0 -3
  1196. package/lib/components/context-menu/index.d.ts +0 -3
  1197. package/lib/components/context-menu/style/css.d.ts +0 -0
  1198. package/lib/components/context-menu/style/index.d.ts +0 -0
  1199. package/lib/components/context-menu/types.d.ts +0 -23
  1200. package/lib/components/context-menu/useContextMenu.d.ts +0 -3
  1201. package/lib/components/date-time-select/date-time-select.vue.d.ts +0 -38
  1202. package/lib/components/date-time-select/index.d.ts +0 -30
  1203. package/lib/components/date-time-select/style/css.d.ts +0 -0
  1204. package/lib/components/date-time-select/style/index.d.ts +0 -0
  1205. package/lib/components/date-time-select/types.d.ts +0 -10
  1206. package/lib/components/descriptions/description-item.vue.d.ts +0 -69
  1207. package/lib/components/descriptions/description.vue.d.ts +0 -53
  1208. package/lib/components/descriptions/descriptions-cell.d.ts +0 -25
  1209. package/lib/components/descriptions/descriptions-row.vue.d.ts +0 -13
  1210. package/lib/components/descriptions/descriptions.type.d.ts +0 -18
  1211. package/lib/components/descriptions/index.d.ts +0 -187
  1212. package/lib/components/descriptions/style/css.d.ts +0 -0
  1213. package/lib/components/descriptions/style/index.d.ts +0 -0
  1214. package/lib/components/descriptions/token.d.ts +0 -3
  1215. package/lib/components/descriptions-item/style/css.d.ts +0 -0
  1216. package/lib/components/descriptions-item/style/index.d.ts +0 -0
  1217. package/lib/components/dialog/constants.d.ts +0 -11
  1218. package/lib/components/dialog/dialog-content.vue.d.ts +0 -81
  1219. package/lib/components/dialog/dialog.vue.d.ts +0 -164
  1220. package/lib/components/dialog/hooks/use-dialog.d.ts +0 -23
  1221. package/lib/components/dialog/index.d.ts +0 -146
  1222. package/lib/components/dialog/style/css.d.ts +0 -0
  1223. package/lib/components/dialog/style/index.d.ts +0 -0
  1224. package/lib/components/dialog/types.d.ts +0 -10
  1225. package/lib/components/divider/divider.vue.d.ts +0 -53
  1226. package/lib/components/divider/index.d.ts +0 -52
  1227. package/lib/components/divider/style/css.d.ts +0 -0
  1228. package/lib/components/divider/style/index.d.ts +0 -0
  1229. package/lib/components/divider/types.d.ts +0 -2
  1230. package/lib/components/docs-layout/style/css.d.ts +0 -0
  1231. package/lib/components/docs-layout/style/index.d.ts +0 -0
  1232. package/lib/components/dropdown/dropdown-item-impl.vue.d.ts +0 -57
  1233. package/lib/components/dropdown/dropdown-item.vue.d.ts +0 -43
  1234. package/lib/components/dropdown/dropdown-menu.vue.d.ts +0 -22
  1235. package/lib/components/dropdown/dropdown.vue.d.ts +0 -828
  1236. package/lib/components/dropdown/index.d.ts +0 -959
  1237. package/lib/components/dropdown/style/css.d.ts +0 -0
  1238. package/lib/components/dropdown/style/index.d.ts +0 -0
  1239. package/lib/components/dropdown/tokens.d.ts +0 -10
  1240. package/lib/components/dropdown/types.d.ts +0 -267
  1241. package/lib/components/dropdown/useDropdown.d.ts +0 -6
  1242. package/lib/components/dropdown-item/style/css.d.ts +0 -0
  1243. package/lib/components/dropdown-item/style/index.d.ts +0 -0
  1244. package/lib/components/dropdown-menu/style/css.d.ts +0 -0
  1245. package/lib/components/dropdown-menu/style/index.d.ts +0 -0
  1246. package/lib/components/empty/constants.d.ts +0 -12
  1247. package/lib/components/empty/empty.vue.d.ts +0 -48
  1248. package/lib/components/empty/index.d.ts +0 -37
  1249. package/lib/components/empty/style/css.d.ts +0 -0
  1250. package/lib/components/empty/style/index.d.ts +0 -0
  1251. package/lib/components/exception/exception.vue.d.ts +0 -29
  1252. package/lib/components/exception/index.d.ts +0 -28
  1253. package/lib/components/exception/style/css.d.ts +0 -0
  1254. package/lib/components/exception/style/index.d.ts +0 -0
  1255. package/lib/components/focus-trap/focus-trap.vue.d.ts +0 -32
  1256. package/lib/components/focus-trap/index.d.ts +0 -5
  1257. package/lib/components/focus-trap/tokens.d.ts +0 -13
  1258. package/lib/components/focus-trap/utils.d.ts +0 -29
  1259. package/lib/components/footer-layout/footer-layout.vue.d.ts +0 -13
  1260. package/lib/components/footer-layout/index.d.ts +0 -12
  1261. package/lib/components/footer-layout/style/css.d.ts +0 -0
  1262. package/lib/components/footer-layout/style/index.d.ts +0 -0
  1263. package/lib/components/form/constants.d.ts +0 -4
  1264. package/lib/components/form/form-item.vue.d.ts +0 -146
  1265. package/lib/components/form/form-label-wrap.d.ts +0 -11
  1266. package/lib/components/form/form.vue.d.ts +0 -168
  1267. package/lib/components/form/hooks/index.d.ts +0 -2
  1268. package/lib/components/form/hooks/use-form-common-props.d.ts +0 -6
  1269. package/lib/components/form/hooks/use-form-item.d.ts +0 -18
  1270. package/lib/components/form/index.d.ts +0 -364
  1271. package/lib/components/form/style/css.d.ts +0 -0
  1272. package/lib/components/form/style/index.d.ts +0 -0
  1273. package/lib/components/form/types.d.ts +0 -43
  1274. package/lib/components/form/utils.d.ts +0 -9
  1275. package/lib/components/form-item/style/css.d.ts +0 -0
  1276. package/lib/components/form-item/style/index.d.ts +0 -0
  1277. package/lib/components/full-screen/full-screen.vue.d.ts +0 -5
  1278. package/lib/components/full-screen/index.d.ts +0 -2
  1279. package/lib/components/full-screen/style/css.d.ts +0 -0
  1280. package/lib/components/full-screen/style/index.d.ts +0 -0
  1281. package/lib/components/header-layout/header-layout.vue.d.ts +0 -14
  1282. package/lib/components/header-layout/index.d.ts +0 -12
  1283. package/lib/components/header-layout/style/css.d.ts +0 -0
  1284. package/lib/components/header-layout/style/index.d.ts +0 -0
  1285. package/lib/components/icon/icon.vue.d.ts +0 -73
  1286. package/lib/components/icon/index.d.ts +0 -63
  1287. package/lib/components/icon/style/css.d.ts +0 -0
  1288. package/lib/components/icon/style/index.d.ts +0 -0
  1289. package/lib/components/icon-text/icon-text.vue.d.ts +0 -98
  1290. package/lib/components/icon-text/index.d.ts +0 -85
  1291. package/lib/components/icon-text/style/css.d.ts +0 -0
  1292. package/lib/components/icon-text/style/index.d.ts +0 -0
  1293. package/lib/components/iframe-layout/iframe-layout.vue.d.ts +0 -14
  1294. package/lib/components/iframe-layout/iframe-page.vue.d.ts +0 -13
  1295. package/lib/components/iframe-layout/index.d.ts +0 -12
  1296. package/lib/components/iframe-layout/style/css.d.ts +0 -0
  1297. package/lib/components/iframe-layout/style/index.d.ts +0 -0
  1298. package/lib/components/image/image.vue.d.ts +0 -122
  1299. package/lib/components/image/index.d.ts +0 -108
  1300. package/lib/components/image/style/css.d.ts +0 -0
  1301. package/lib/components/image/style/index.d.ts +0 -0
  1302. package/lib/components/image/types.d.ts +0 -1
  1303. package/lib/components/image-viewer/image-viewer.vue.d.ts +0 -88
  1304. package/lib/components/image-viewer/index.d.ts +0 -77
  1305. package/lib/components/image-viewer/style/css.d.ts +0 -0
  1306. package/lib/components/image-viewer/style/index.d.ts +0 -0
  1307. package/lib/components/image-viewer/types.d.ts +0 -1
  1308. package/lib/components/index.d.ts +0 -60
  1309. package/lib/components/input/index.d.ts +0 -252
  1310. package/lib/components/input/input.vue.d.ts +0 -265
  1311. package/lib/components/input/style/css.d.ts +0 -0
  1312. package/lib/components/input/style/index.d.ts +0 -0
  1313. package/lib/components/input/utils.d.ts +0 -6
  1314. package/lib/components/link/index.d.ts +0 -54
  1315. package/lib/components/link/link.vue.d.ts +0 -58
  1316. package/lib/components/link/style/css.d.ts +0 -0
  1317. package/lib/components/link/style/index.d.ts +0 -0
  1318. package/lib/components/list-cell/index.d.ts +0 -38
  1319. package/lib/components/list-cell/list-cell.vue.d.ts +0 -53
  1320. package/lib/components/list-cell/style/css.d.ts +0 -0
  1321. package/lib/components/list-cell/style/index.d.ts +0 -0
  1322. package/lib/components/loading/directive.d.ts +0 -18
  1323. package/lib/components/loading/index.d.ts +0 -48
  1324. package/lib/components/loading/loading.d.ts +0 -36
  1325. package/lib/components/loading/service.d.ts +0 -3
  1326. package/lib/components/loading/style/css.d.ts +0 -0
  1327. package/lib/components/loading/style/index.d.ts +0 -0
  1328. package/lib/components/loading/types.d.ts +0 -27
  1329. package/lib/components/logo/index.d.ts +0 -29
  1330. package/lib/components/logo/logo.vue.d.ts +0 -29
  1331. package/lib/components/logo/style/css.d.ts +0 -0
  1332. package/lib/components/logo/style/index.d.ts +0 -0
  1333. package/lib/components/logo/types.d.ts +0 -6
  1334. package/lib/components/md-code-demo/code-demo/code.d.ts +0 -13
  1335. package/lib/components/md-code-demo/code-demo/index.d.ts +0 -2
  1336. package/lib/components/md-code-demo/code-demo/loadScript.d.ts +0 -5
  1337. package/lib/components/md-code-demo/code-demo/typings.d.ts +0 -15
  1338. package/lib/components/md-code-demo/code-demo/utils.d.ts +0 -13
  1339. package/lib/components/md-code-demo/index.d.ts +0 -50
  1340. package/lib/components/md-code-demo/md-code-demo.d.ts +0 -99
  1341. package/lib/components/md-code-demo/style/css.d.ts +0 -0
  1342. package/lib/components/md-code-demo/style/index.d.ts +0 -0
  1343. package/lib/components/md-code-demo/type.d.ts +0 -89
  1344. package/lib/components/md-code-demo/utils.d.ts +0 -5
  1345. package/lib/components/md-code-tabs/index.d.ts +0 -41
  1346. package/lib/components/md-code-tabs/md-code-tabs.d.ts +0 -81
  1347. package/lib/components/md-code-tabs/style/css.d.ts +0 -0
  1348. package/lib/components/md-code-tabs/style/index.d.ts +0 -0
  1349. package/lib/components/md-comment/index.d.ts +0 -2
  1350. package/lib/components/md-comment/md-comment.vue.d.ts +0 -2
  1351. package/lib/components/md-comment/style/css.d.ts +0 -0
  1352. package/lib/components/md-comment/style/index.d.ts +0 -0
  1353. package/lib/components/md-container/index.d.ts +0 -4
  1354. package/lib/components/md-container/md-container.vue.d.ts +0 -4
  1355. package/lib/components/md-container/style/css.d.ts +0 -0
  1356. package/lib/components/md-container/style/index.d.ts +0 -0
  1357. package/lib/components/md-container/toc.d.ts +0 -44
  1358. package/lib/components/md-container/use/index.d.ts +0 -2
  1359. package/lib/components/md-container/use/useActiveHeaderLinks.d.ts +0 -7
  1360. package/lib/components/md-container/use/useCopyCode.d.ts +0 -1
  1361. package/lib/components/md-container/utils.d.ts +0 -11
  1362. package/lib/components/md-tabs/index.d.ts +0 -42
  1363. package/lib/components/md-tabs/md-tabs.d.ts +0 -84
  1364. package/lib/components/md-tabs/style/css.d.ts +0 -0
  1365. package/lib/components/md-tabs/style/index.d.ts +0 -0
  1366. package/lib/components/md-vue-playground/index.d.ts +0 -28
  1367. package/lib/components/md-vue-playground/md-vue-playground.vue.d.ts +0 -29
  1368. package/lib/components/md-vue-playground/playground.d.ts +0 -97
  1369. package/lib/components/md-vue-playground/style/css.d.ts +0 -0
  1370. package/lib/components/md-vue-playground/style/index.d.ts +0 -0
  1371. package/lib/components/menu/index.d.ts +0 -504
  1372. package/lib/components/menu/menu-collapse-transition.vue.d.ts +0 -5
  1373. package/lib/components/menu/menu-item-group.vue.d.ts +0 -13
  1374. package/lib/components/menu/menu-item.vue.d.ts +0 -81
  1375. package/lib/components/menu/menu.vue.d.ts +0 -109
  1376. package/lib/components/menu/style/css.d.ts +0 -0
  1377. package/lib/components/menu/style/index.d.ts +0 -0
  1378. package/lib/components/menu/sub-menu.vue.d.ts +0 -112
  1379. package/lib/components/menu/types.d.ts +0 -59
  1380. package/lib/components/menu/use-menu-css-var.d.ts +0 -1
  1381. package/lib/components/menu/use-menu.d.ts +0 -14
  1382. package/lib/components/menu/utils/menu-bar.d.ts +0 -7
  1383. package/lib/components/menu/utils/menu-item.d.ts +0 -9
  1384. package/lib/components/menu/utils/submenu.d.ts +0 -12
  1385. package/lib/components/menu-item/style/css.d.ts +0 -0
  1386. package/lib/components/menu-item/style/index.d.ts +0 -0
  1387. package/lib/components/menu-item-group/style/css.d.ts +0 -0
  1388. package/lib/components/menu-item-group/style/index.d.ts +0 -0
  1389. package/lib/components/message/index.d.ts +0 -4
  1390. package/lib/components/message/instance.d.ts +0 -17
  1391. package/lib/components/message/message.vue.d.ts +0 -145
  1392. package/lib/components/message/method.d.ts +0 -4
  1393. package/lib/components/message/style/css.d.ts +0 -0
  1394. package/lib/components/message/style/index.d.ts +0 -0
  1395. package/lib/components/message/types.d.ts +0 -63
  1396. package/lib/components/multiple-tabs/index.d.ts +0 -30
  1397. package/lib/components/multiple-tabs/multiple-tabs.vue.d.ts +0 -29
  1398. package/lib/components/multiple-tabs/style/css.d.ts +0 -0
  1399. package/lib/components/multiple-tabs/style/index.d.ts +0 -0
  1400. package/lib/components/multiple-tabs/tab-content.vue.d.ts +0 -40
  1401. package/lib/components/multiple-tabs/types.d.ts +0 -3
  1402. package/lib/components/multiple-tabs/use/index.d.ts +0 -2
  1403. package/lib/components/multiple-tabs/use/use-multiple-tabs.d.ts +0 -9
  1404. package/lib/components/multiple-tabs/use/use-tab-dropdown.d.ts +0 -6
  1405. package/lib/components/overlay/index.d.ts +0 -46
  1406. package/lib/components/overlay/overlay.vue.d.ts +0 -47
  1407. package/lib/components/overlay/style/css.d.ts +0 -0
  1408. package/lib/components/overlay/style/index.d.ts +0 -0
  1409. package/lib/components/page-wrapper/index.d.ts +0 -12
  1410. package/lib/components/page-wrapper/page-wrapper.vue.d.ts +0 -13
  1411. package/lib/components/page-wrapper/style/css.d.ts +0 -0
  1412. package/lib/components/page-wrapper/style/index.d.ts +0 -0
  1413. package/lib/components/pagination/components/jumper.vue.d.ts +0 -14
  1414. package/lib/components/pagination/components/next.vue.d.ts +0 -39
  1415. package/lib/components/pagination/components/pager.vue.d.ts +0 -39
  1416. package/lib/components/pagination/components/prev.vue.d.ts +0 -31
  1417. package/lib/components/pagination/components/sizes.vue.d.ts +0 -47
  1418. package/lib/components/pagination/components/total.vue.d.ts +0 -13
  1419. package/lib/components/pagination/index.d.ts +0 -164
  1420. package/lib/components/pagination/pagination.vue.d.ts +0 -185
  1421. package/lib/components/pagination/style/css.d.ts +0 -0
  1422. package/lib/components/pagination/style/index.d.ts +0 -0
  1423. package/lib/components/pagination/usePagination.d.ts +0 -10
  1424. package/lib/components/popover/directive.d.ts +0 -4
  1425. package/lib/components/popover/index.d.ts +0 -182
  1426. package/lib/components/popover/popover.vue.d.ts +0 -187
  1427. package/lib/components/popover/style/css.d.ts +0 -0
  1428. package/lib/components/popover/style/index.d.ts +0 -0
  1429. package/lib/components/popover/types.d.ts +0 -26
  1430. package/lib/components/popper/arrow.vue.d.ts +0 -18
  1431. package/lib/components/popper/composables/index.d.ts +0 -3
  1432. package/lib/components/popper/composables/use-content-dom.d.ts +0 -16
  1433. package/lib/components/popper/composables/use-content.d.ts +0 -77
  1434. package/lib/components/popper/composables/use-focus-trap.d.ts +0 -11
  1435. package/lib/components/popper/constants.d.ts +0 -24
  1436. package/lib/components/popper/content.vue.d.ts +0 -222
  1437. package/lib/components/popper/index.d.ts +0 -18
  1438. package/lib/components/popper/popper.vue.d.ts +0 -13
  1439. package/lib/components/popper/style/css.d.ts +0 -0
  1440. package/lib/components/popper/style/index.d.ts +0 -0
  1441. package/lib/components/popper/trigger.vue.d.ts +0 -99
  1442. package/lib/components/popper/types.d.ts +0 -45
  1443. package/lib/components/popper/utils.d.ts +0 -49
  1444. package/lib/components/qrcode/drawCanvas.d.ts +0 -2
  1445. package/lib/components/qrcode/drawLogo.d.ts +0 -2
  1446. package/lib/components/qrcode/index.d.ts +0 -50
  1447. package/lib/components/qrcode/qrcode.vue.d.ts +0 -51
  1448. package/lib/components/qrcode/qrcodePlus.d.ts +0 -3
  1449. package/lib/components/qrcode/style/css.d.ts +0 -0
  1450. package/lib/components/qrcode/style/index.d.ts +0 -0
  1451. package/lib/components/qrcode/toCanvas.d.ts +0 -2
  1452. package/lib/components/qrcode/types.d.ts +0 -31
  1453. package/lib/components/radio/constants.d.ts +0 -6
  1454. package/lib/components/radio/index.d.ts +0 -294
  1455. package/lib/components/radio/radio-button.vue.d.ts +0 -44
  1456. package/lib/components/radio/radio-group.vue.d.ts +0 -96
  1457. package/lib/components/radio/radio.vue.d.ts +0 -65
  1458. package/lib/components/radio/style/css.d.ts +0 -0
  1459. package/lib/components/radio/style/index.d.ts +0 -0
  1460. package/lib/components/radio/use-radio.d.ts +0 -15
  1461. package/lib/components/radio-button/style/css.d.ts +0 -0
  1462. package/lib/components/radio-button/style/index.d.ts +0 -0
  1463. package/lib/components/radio-group/style/css.d.ts +0 -0
  1464. package/lib/components/radio-group/style/index.d.ts +0 -0
  1465. package/lib/components/result/index.d.ts +0 -28
  1466. package/lib/components/result/result.vue.d.ts +0 -30
  1467. package/lib/components/result/style/css.d.ts +0 -0
  1468. package/lib/components/result/style/index.d.ts +0 -0
  1469. package/lib/components/router-view-content/index.d.ts +0 -52
  1470. package/lib/components/router-view-content/router-view-content.vue.d.ts +0 -54
  1471. package/lib/components/router-view-content/style/css.d.ts +0 -0
  1472. package/lib/components/router-view-content/style/index.d.ts +0 -0
  1473. package/lib/components/roving-focus-group/index.d.ts +0 -10
  1474. package/lib/components/roving-focus-group/roving-focus-group-impl.vue.d.ts +0 -48
  1475. package/lib/components/roving-focus-group/roving-focus-group.vue.d.ts +0 -2
  1476. package/lib/components/roving-focus-group/roving-focus-item.vue.d.ts +0 -32
  1477. package/lib/components/roving-focus-group/tokens.d.ts +0 -37
  1478. package/lib/components/roving-focus-group/types.d.ts +0 -252
  1479. package/lib/components/roving-focus-group/utils.d.ts +0 -8
  1480. package/lib/components/scrollbar/bar.vue.d.ts +0 -54
  1481. package/lib/components/scrollbar/constants.d.ts +0 -6
  1482. package/lib/components/scrollbar/index.d.ts +0 -113
  1483. package/lib/components/scrollbar/scrollbar.vue.d.ts +0 -163
  1484. package/lib/components/scrollbar/style/css.d.ts +0 -0
  1485. package/lib/components/scrollbar/style/index.d.ts +0 -0
  1486. package/lib/components/scrollbar/thumb.vue.d.ts +0 -52
  1487. package/lib/components/scrollbar/types.d.ts +0 -2
  1488. package/lib/components/scrollbar/util.d.ts +0 -28
  1489. package/lib/components/search/index.d.ts +0 -98
  1490. package/lib/components/search/search.vue.d.ts +0 -100
  1491. package/lib/components/search/style/css.d.ts +0 -0
  1492. package/lib/components/search/style/index.d.ts +0 -0
  1493. package/lib/components/select-v2/defaults.d.ts +0 -113
  1494. package/lib/components/select-v2/group-item.vue.d.ts +0 -35
  1495. package/lib/components/select-v2/index.d.ts +0 -2025
  1496. package/lib/components/select-v2/option-item.vue.d.ts +0 -49
  1497. package/lib/components/select-v2/select-dropdown.d.ts +0 -16
  1498. package/lib/components/select-v2/select.types.d.ts +0 -18
  1499. package/lib/components/select-v2/select.vue.d.ts +0 -1012
  1500. package/lib/components/select-v2/style/css.d.ts +0 -0
  1501. package/lib/components/select-v2/style/index.d.ts +0 -0
  1502. package/lib/components/select-v2/token.d.ts +0 -16
  1503. package/lib/components/select-v2/useAllowCreate.d.ts +0 -8
  1504. package/lib/components/select-v2/useInput.d.ts +0 -5
  1505. package/lib/components/select-v2/useOption.d.ts +0 -7
  1506. package/lib/components/select-v2/useSelect.d.ts +0 -782
  1507. package/lib/components/select-v2/util.d.ts +0 -2
  1508. package/lib/components/side-menu/index.d.ts +0 -155
  1509. package/lib/components/side-menu/side-menu.vue.d.ts +0 -156
  1510. package/lib/components/side-menu/style/css.d.ts +0 -0
  1511. package/lib/components/side-menu/style/index.d.ts +0 -0
  1512. package/lib/components/side-menu/types.d.ts +0 -19
  1513. package/lib/components/side-menu/use-drag-line.d.ts +0 -10
  1514. package/lib/components/slot/index.d.ts +0 -2
  1515. package/lib/components/slot/only-child.d.ts +0 -7
  1516. package/lib/components/sub-menu/style/css.d.ts +0 -0
  1517. package/lib/components/sub-menu/style/index.d.ts +0 -0
  1518. package/lib/components/switch/index.d.ts +0 -205
  1519. package/lib/components/switch/style/css.d.ts +0 -0
  1520. package/lib/components/switch/style/index.d.ts +0 -0
  1521. package/lib/components/switch/switch.vue.d.ts +0 -236
  1522. package/lib/components/tab-pane/style/css.d.ts +0 -0
  1523. package/lib/components/tab-pane/style/index.d.ts +0 -0
  1524. package/lib/components/table/style/css.d.ts +0 -0
  1525. package/lib/components/table/style/index.d.ts +0 -0
  1526. package/lib/components/table/table.vue.d.ts +0 -121
  1527. package/lib/components/table/type.d.ts +0 -21
  1528. package/lib/components/tabs/index.d.ts +0 -274
  1529. package/lib/components/tabs/style/css.d.ts +0 -0
  1530. package/lib/components/tabs/style/index.d.ts +0 -0
  1531. package/lib/components/tabs/tab-bar.vue.d.ts +0 -51
  1532. package/lib/components/tabs/tab-nav.vue.d.ts +0 -120
  1533. package/lib/components/tabs/tab-pane.vue.d.ts +0 -45
  1534. package/lib/components/tabs/tabs.vue.d.ts +0 -159
  1535. package/lib/components/tabs/types.d.ts +0 -59
  1536. package/lib/components/tag/index.d.ts +0 -71
  1537. package/lib/components/tag/style/css.d.ts +0 -0
  1538. package/lib/components/tag/style/index.d.ts +0 -0
  1539. package/lib/components/tag/tag.vue.d.ts +0 -74
  1540. package/lib/components/tag/types.d.ts +0 -1
  1541. package/lib/components/time-select-extend/style/css.cjs +0 -1
  1542. package/lib/components/time-select-extend/style/css.d.ts +0 -0
  1543. package/lib/components/time-select-extend/style/index.cjs +0 -1
  1544. package/lib/components/time-select-extend/style/index.d.ts +0 -0
  1545. package/lib/components/tooltip/constants.d.ts +0 -18
  1546. package/lib/components/tooltip/content.vue.d.ts +0 -268
  1547. package/lib/components/tooltip/index.d.ts +0 -398
  1548. package/lib/components/tooltip/style/css.d.ts +0 -0
  1549. package/lib/components/tooltip/style/index.d.ts +0 -0
  1550. package/lib/components/tooltip/tooltip.vue.d.ts +0 -470
  1551. package/lib/components/tooltip/trigger.vue.d.ts +0 -54
  1552. package/lib/components/tooltip/types.d.ts +0 -53
  1553. package/lib/components/tooltip/utils.d.ts +0 -11
  1554. package/lib/components/types.d.ts +0 -1
  1555. package/lib/components/verify-code/index.d.ts +0 -23
  1556. package/lib/components/verify-code/style/css.d.ts +0 -0
  1557. package/lib/components/verify-code/style/index.d.ts +0 -0
  1558. package/lib/components/verify-code/useImageVerify.d.ts +0 -11
  1559. package/lib/components/verify-code/verify-code.vue.d.ts +0 -24
  1560. package/lib/components/virtual-list/builders/build-grid.d.ts +0 -214
  1561. package/lib/components/virtual-list/builders/build-list.d.ts +0 -167
  1562. package/lib/components/virtual-list/components/dynamic-size-grid.d.ts +0 -206
  1563. package/lib/components/virtual-list/components/dynamic-size-list.d.ts +0 -165
  1564. package/lib/components/virtual-list/components/fixed-size-grid.d.ts +0 -193
  1565. package/lib/components/virtual-list/components/fixed-size-list.d.ts +0 -164
  1566. package/lib/components/virtual-list/components/scrollbar.d.ts +0 -79
  1567. package/lib/components/virtual-list/defaults.d.ts +0 -30
  1568. package/lib/components/virtual-list/hooks/use-cache.d.ts +0 -1
  1569. package/lib/components/virtual-list/hooks/use-grid-wheel.d.ts +0 -13
  1570. package/lib/components/virtual-list/hooks/use-wheel.d.ts +0 -13
  1571. package/lib/components/virtual-list/index.d.ts +0 -8
  1572. package/lib/components/virtual-list/props.d.ts +0 -201
  1573. package/lib/components/virtual-list/style/css.d.ts +0 -0
  1574. package/lib/components/virtual-list/style/index.d.ts +0 -0
  1575. package/lib/components/virtual-list/types.d.ts +0 -137
  1576. package/lib/components/virtual-list/utils.d.ts +0 -17
  1577. package/lib/constants/aria.d.ts +0 -17
  1578. package/lib/constants/date.d.ts +0 -3
  1579. package/lib/constants/event.d.ts +0 -3
  1580. package/lib/constants/index.d.ts +0 -5
  1581. package/lib/constants/key.d.ts +0 -1
  1582. package/lib/constants/size.d.ts +0 -7
  1583. package/lib/defaults.d.ts +0 -5
  1584. package/lib/hooks/index.d.ts +0 -16
  1585. package/lib/hooks/use-cursor/index.d.ts +0 -2
  1586. package/lib/hooks/use-delayed-toggle/index.d.ts +0 -10
  1587. package/lib/hooks/use-draggable/index.d.ts +0 -2
  1588. package/lib/hooks/use-forward-ref/index.d.ts +0 -9
  1589. package/lib/hooks/use-id/index.d.ts +0 -9
  1590. package/lib/hooks/use-lockscreen/index.d.ts +0 -11
  1591. package/lib/hooks/use-model-toggle/index.d.ts +0 -25
  1592. package/lib/hooks/use-namespace/index.d.ts +0 -24
  1593. package/lib/hooks/use-ordered-children/index.d.ts +0 -8
  1594. package/lib/hooks/use-popper/index.d.ts +0 -78
  1595. package/lib/hooks/use-popper-container/index.d.ts +0 -5
  1596. package/lib/hooks/use-prop/index.d.ts +0 -2
  1597. package/lib/hooks/use-same-target/index.d.ts +0 -5
  1598. package/lib/hooks/use-size/index.d.ts +0 -7
  1599. package/lib/hooks/use-timeout/index.d.ts +0 -4
  1600. package/lib/hooks/use-z-index/index.d.ts +0 -9
  1601. package/lib/index.d.ts +0 -11
  1602. package/lib/make-installer.d.ts +0 -6
  1603. package/lib/plugin.d.ts +0 -3
  1604. package/lib/utils/dom/index.d.ts +0 -2
  1605. package/lib/utils/dom/position.d.ts +0 -7
  1606. package/lib/utils/dom/scroll.d.ts +0 -8
  1607. package/lib/utils/error.d.ts +0 -3
  1608. package/lib/utils/event.d.ts +0 -6
  1609. package/lib/utils/helper.d.ts +0 -1
  1610. package/lib/utils/index.d.ts +0 -8
  1611. package/lib/utils/ns-cover.d.ts +0 -16
  1612. package/lib/utils/objects.d.ts +0 -4
  1613. package/lib/utils/typescript.d.ts +0 -12
  1614. package/lib/utils/vue/data-helper.d.ts +0 -1
  1615. package/lib/utils/vue/index.d.ts +0 -7
  1616. package/lib/utils/vue/install.d.ts +0 -6
  1617. package/lib/utils/vue/props/index.d.ts +0 -3
  1618. package/lib/utils/vue/props/runtime.d.ts +0 -28
  1619. package/lib/utils/vue/props/types.d.ts +0 -120
  1620. package/lib/utils/vue/props/util.d.ts +0 -8
  1621. package/lib/utils/vue/raf.d.ts +0 -2
  1622. package/lib/utils/vue/refs.d.ts +0 -3
  1623. package/lib/utils/vue/typescript.d.ts +0 -5
  1624. package/lib/utils/vue/vnode.d.ts +0 -51
  1625. package/theme-style/src/md/list.scss +0 -21
  1626. /package/{es/components/alert/style/css.d.ts → theme-style/src/breadcrumb-item.scss} +0 -0
  1627. /package/{es/components/alert/style/index.d.ts → theme-style/src/collapse-item.scss} +0 -0
  1628. /package/{es/components/avatar/style/css.d.ts → theme-style/src/infinite-scroll.scss} +0 -0
  1629. /package/{es/components/avatar/style/index.d.ts → theme-style/vft-breadcrumb-item.css} +0 -0
  1630. /package/{es/components/back-top/style/css.d.ts → theme-style/vft-collapse-item.css} +0 -0
  1631. /package/{es/components/back-top/style/index.d.ts → theme-style/vft-infinite-scroll.css} +0 -0
@@ -1 +1 @@
1
- .fade-in-linear-enter-active,.fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.fade-in-linear-enter-from,.fade-in-linear-leave-to{opacity:0}.vft-fade-in-linear-enter-active,.vft-fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.vft-fade-in-linear-enter-from,.vft-fade-in-linear-leave-to{opacity:0}.vft-fade-in-enter-active,.vft-fade-in-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-fade-in-enter-from,.vft-fade-in-leave-active{opacity:0}.vft-zoom-in-center-enter-active,.vft-zoom-in-center-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-zoom-in-center-enter-from,.vft-zoom-in-center-leave-active{opacity:0;transform:scaleX(0)}.vft-zoom-in-top-enter-active,.vft-zoom-in-top-leave-active{opacity:1;transform:scaleY(1);transition:var(--vft-transition-md-fade);transform-origin:center top}.vft-zoom-in-top-enter-active[data-popper-placement^=top],.vft-zoom-in-top-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-enter-from,.vft-zoom-in-top-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-bottom-enter-active,.vft-zoom-in-bottom-leave-active{opacity:1;transform:scaleY(1);transition:var(--vft-transition-md-fade);transform-origin:center bottom}.vft-zoom-in-bottom-enter-from,.vft-zoom-in-bottom-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-left-enter-active,.vft-zoom-in-left-leave-active{opacity:1;transform:scale(1,1);transition:var(--vft-transition-md-fade);transform-origin:top left}.vft-zoom-in-left-enter-from,.vft-zoom-in-left-leave-active{opacity:0;transform:scale(.45,.45)}.collapse-transition{transition:var(--vft-transition-duration) height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.vft-collapse-transition-enter-active,.vft-collapse-transition-leave-active{transition:var(--vft-transition-duration) max-height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.horizontal-collapse-transition{transition:var(--vft-transition-duration) width ease-in-out,var(--vft-transition-duration) padding-left ease-in-out,var(--vft-transition-duration) padding-right ease-in-out}.vft-list-enter-active,.vft-list-leave-active{transition:all 1s}.vft-list-enter-from,.vft-list-leave-to{opacity:0;transform:translateY(-30px)}.vft-list-leave-active{position:absolute!important}.vft-opacity-transition{transition:opacity var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}@keyframes vft-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}.pswp{--pswp-bg:#000;--pswp-placeholder-bg:#222;--pswp-root-z-index:100000;--pswp-preloader-color:rgba(79, 79, 79, 0.4);--pswp-preloader-color-secondary:rgba(255, 255, 255, 0.9);--pswp-icon-color:#fff;--pswp-icon-color-secondary:#4f4f4f;--pswp-icon-stroke-color:#4f4f4f;--pswp-icon-stroke-width:2px;--pswp-error-text-color:var(--pswp-icon-color)}.pswp{position:fixed;top:0;left:0;width:100%;height:100%;z-index:var(--pswp-root-z-index);display:none;touch-action:none;outline:0;opacity:.003;contain:layout style size;-webkit-tap-highlight-color:transparent}.pswp:focus{outline:0}.pswp *{box-sizing:border-box}.pswp img{max-width:none}.pswp--open{display:block}.pswp,.pswp__bg{transform:translateZ(0);will-change:opacity}.pswp__bg{opacity:.005;background:var(--pswp-bg)}.pswp,.pswp__scroll-wrap{overflow:hidden}.pswp__bg,.pswp__container,.pswp__content,.pswp__img,.pswp__item,.pswp__scroll-wrap,.pswp__zoom-wrap{position:absolute;top:0;left:0;width:100%;height:100%}.pswp__img,.pswp__zoom-wrap{width:auto;height:auto}.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img{cursor:zoom-in}.pswp--click-to-zoom.pswp--zoomed-in .pswp__img{cursor:move;cursor:grab}.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active{cursor:grabbing}.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,.pswp__img{cursor:zoom-out}.pswp__button,.pswp__container,.pswp__counter,.pswp__img{-webkit-user-select:none;-moz-user-select:none;user-select:none}.pswp__item{z-index:1;overflow:hidden}.pswp__hidden{display:none!important}.pswp__content{pointer-events:none}.pswp__content>*{pointer-events:auto}.pswp__error-msg-container{display:grid}.pswp__error-msg{margin:auto;font-size:1em;line-height:1;color:var(--pswp-error-text-color)}.pswp .pswp__hide-on-close{opacity:.005;will-change:opacity;transition:opacity var(--pswp-transition-duration) cubic-bezier(.4,0,.22,1);z-index:10;pointer-events:none}.pswp--ui-visible .pswp__hide-on-close{opacity:1;pointer-events:auto}.pswp__button{position:relative;display:block;width:50px;height:60px;padding:0;margin:0;overflow:hidden;cursor:pointer;background:0 0;border:0;box-shadow:none;opacity:.85;-webkit-appearance:none;-webkit-touch-callout:none}.pswp__button:active,.pswp__button:focus,.pswp__button:hover{transition:none;padding:0;background:0 0;border:0;box-shadow:none;opacity:1}.pswp__button:disabled{opacity:.3;cursor:auto}.pswp__icn{fill:var(--pswp-icon-color);color:var(--pswp-icon-color-secondary)}.pswp__icn{position:absolute;top:14px;left:9px;width:32px;height:32px;overflow:hidden;pointer-events:none}.pswp__icn-shadow{stroke:var(--pswp-icon-stroke-color);stroke-width:var(--pswp-icon-stroke-width);fill:none}.pswp__icn:focus{outline:0}.pswp__img--with-bg,div.pswp__img--placeholder{background:var(--pswp-placeholder-bg)}.pswp__top-bar{position:absolute;left:0;top:0;width:100%;height:60px;display:flex;flex-direction:row;justify-content:flex-end;z-index:10;pointer-events:none!important}.pswp__top-bar>*{pointer-events:auto;will-change:opacity}.pswp__button--close{margin-right:6px}.pswp__button--arrow{position:absolute;top:0;width:75px;height:100px;top:50%;margin-top:-50px}.pswp__button--arrow:disabled{display:none;cursor:default}.pswp__button--arrow .pswp__icn{top:50%;margin-top:-30px;width:60px;height:60px;background:0 0;border-radius:0}.pswp--one-slide .pswp__button--arrow{display:none}.pswp--touch .pswp__button--arrow{visibility:hidden}.pswp--has_mouse .pswp__button--arrow{visibility:visible}.pswp__button--arrow--prev{right:auto;left:0}.pswp__button--arrow--next{right:0}.pswp__button--arrow--next .pswp__icn{left:auto;right:14px;transform:scale(-1,1)}.pswp__button--zoom{display:none}.pswp--zoom-allowed .pswp__button--zoom{display:block}.pswp--zoomed-in .pswp__zoom-icn-bar-v{display:none}.pswp__preloader{position:relative;overflow:hidden;width:50px;height:60px;margin-right:auto}.pswp__preloader .pswp__icn{opacity:0;transition:opacity .2s linear;animation:pswp-clockwise .6s linear infinite}.pswp__preloader--active .pswp__icn{opacity:.85}@keyframes pswp-clockwise{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.pswp__counter{height:30px;margin-top:15px;-webkit-margin-start:20px;margin-inline-start:20px;font-size:14px;line-height:30px;color:var(--pswp-icon-color);text-shadow:1px 1px 3px var(--pswp-icon-color-secondary);opacity:.85}.pswp--one-slide .pswp__counter{display:none}:root{--vft-md-container-primary-color:var(--vft-primary-color);--vft-md-container-content-max-width:800px;--vft-md-container-code-bg-color:#fff5f5;--vft-md-container-line-numbers-width:2.5rem;--vft-md-container-icon-copy:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' height='20' width='20' stroke='rgba(128,128,128,1)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2M9 5a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2'/%3E%3C/svg%3E");--vft-md-container-icon-copied:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' height='20' width='20' stroke='rgba(128,128,128,1)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2M9 5a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2m-6 9 2 2 4-4'/%3E%3C/svg%3E");--vft-md-container-info-title-color:#193c47;--vft-md-container-info-bg-color:#eef9fd;--vft-md-container-info-border-color:#4cb3d4;--vft-md-container-info-code-bg-color:rgba(76, 179, 212, 0.1);--vft-md-container-note-title-color:#474748;--vft-md-container-note-bg-color:#fdfdfe;--vft-md-container-note-border-color:#ccc;--vft-md-container-note-code-bg-color:rgba(212, 213, 216, 0.2);--vft-md-container-tip-title-color:#003100;--vft-md-container-tip-bg-color:#e6f6e6;--vft-md-container-tip-border-color:#009400;--vft-md-container-tip-code-bg-color:rgba(0, 148, 0, 0.15);--vft-md-container-warning-title-color:#4d3800;--vft-md-container-warning-bg-color:#fff8e6;--vft-md-container-warning-border-color:#e6a700;--vft-md-container-warning-code-bg-color:rgba(230, 167, 0, 0.15);--vft-md-container-danger-title-color:#4b1113;--vft-md-container-danger-bg-color:#ffebec;--vft-md-container-danger-border-color:#e13238;--vft-md-container-danger-code-bg-color:rgba(225, 50, 56, 0.15);--vft-md-container-detail-bg-color:#eee;--vft-md-container-detail-text-color:inherit;--vft-md-container-detail-code-bg-color:rgba(127, 127, 127, 0.15)}.vft-md-container{-webkit-font-smoothing:antialiased;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",STHeiti,"Microsoft YaHei",SimSun,sans-serif;padding:20px 30px;height:100%;overflow:auto;overflow:overlay}.vft-md-container a{color:var(--vft-md-container-primary-color);font-weight:500;overflow-wrap:break-word}.vft-md-container a:hover{text-decoration:underline}.vft-md-container a::after{content:"";display:inline-block;height:12px;width:12px;margin-left:5px;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjc0NTU1ODY1NjQyIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjU2NjIiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCI+PHBhdGggZD0iTTkxMiAxMDA4LjUxMkgxNS40ODhWMTEyaDQ0OC4yNTZ2OTZIMTExLjQ4OHY3MDQuNTEySDgxNlY1NjAuMjU2aDk2eiIgcC1pZD0iNTY2MyIgZmlsbD0iIzk5OTk5OSI+PC9wYXRoPjxwYXRoIGQ9Ik05MTguMjA4IDM3Ljg4OGw2Ny45MDQgNjcuOTA0TDU0NS45ODQgNTQ1LjkybC02Ny45MDQtNjcuODR6IiBwLWlkPSI1NjY0IiBmaWxsPSIjOTk5OTk5Ij48L3BhdGg+PHBhdGggZD0iTTEwMDcuMTY4IDMxMC42NTZoLTk2VjExMmgtMjA4VjE2aDMwNHoiIHAtaWQ9IjU2NjUiIGZpbGw9IiM5OTk5OTkiPjwvcGF0aD48L3N2Zz4=);background-size:100% 100%}.vft-md-container a.header-anchor::after,.vft-md-container a:has(>img)::after{content:"";display:none}.vft-md-container a img{display:inline-block}.vft-md-container a.header-anchor{float:left;margin-top:.125em;margin-left:-.87em;padding-right:.23em;font-size:.85em;opacity:0;transition:opacity .2s}.vft-md-container h1:hover .header-anchor,.vft-md-container h2:hover .header-anchor,.vft-md-container h3:hover .header-anchor,.vft-md-container h4:hover .header-anchor,.vft-md-container h5:hover .header-anchor,.vft-md-container h6:hover .header-anchor{opacity:1}.vft-md-container .toc-place-holder{position:sticky;top:50px;z-index:1;max-width:var(--vft-md-container-content-max-width)}.vft-md-container #toc{position:absolute;left:calc(100% + 1rem);min-width:10rem;max-width:15rem}@media print{.vft-md-container #toc{display:none!important}}.vft-md-container #toc a::after{content:"";display:none}.vft-md-container #toc .toc-header{margin-bottom:.75rem;-webkit-margin-start:.5rem;margin-inline-start:.5rem;font-weight:600;font-size:.875rem}.vft-md-container #toc .print-button{box-sizing:content-box;width:1rem;height:1rem;padding:.5rem;border-radius:.25em;color:inherit;font-size:1rem;transform:translateY(.25rem)}.vft-md-container #toc .toc-wrapper{position:relative;overflow-x:hidden;overflow-y:auto;max-height:70vh;margin:0 .5rem;-webkit-padding-start:8px;padding-inline-start:8px;text-overflow:ellipsis;white-space:nowrap}.vft-md-container #toc .toc-wrapper::-webkit-scrollbar{width:3px}.vft-md-container #toc .toc-list{position:relative;margin:0;padding:0}.vft-md-container #toc .toc-list::before{content:" ";position:absolute;top:0;bottom:0;left:-8px;inset-inline-start:-8px;z-index:-1;width:2px;background:var(--vft-info-color-light-7)}.vft-md-container #toc .toc-link{position:relative;display:block;overflow:hidden;max-width:100%;color:var(--vft-text-primary-color);line-height:inherit;text-overflow:ellipsis;white-space:nowrap}.vft-md-container #toc .toc-link.level2{-webkit-padding-start:0;padding-inline-start:0;font-size:14px}.vft-md-container #toc .toc-link.level3{-webkit-padding-start:8px;padding-inline-start:8px;font-size:13px}.vft-md-container #toc .toc-link.level4{-webkit-padding-start:16px;padding-inline-start:16px;font-size:12px}.vft-md-container #toc .toc-link.level5{-webkit-padding-start:24px;padding-inline-start:24px;font-size:11px}.vft-md-container #toc .toc-link.level6{-webkit-padding-start:32px;padding-inline-start:32px;font-size:10px}.vft-md-container #toc .toc-item{position:relative;box-sizing:border-box;height:1.7rem;padding:0 .5rem;list-style:none;line-height:1.7rem}.vft-md-container #toc .toc-item::before{content:" ";position:absolute;top:0;bottom:0;left:-8px;inset-inline-start:-8px;z-index:2;width:2px;background:0 0}.vft-md-container #toc .toc-item:hover>.toc-link{color:var(--vft-md-container-primary-color)}.vft-md-container #toc .toc-item.active>.toc-link{color:var(--vft-md-container-primary-color);font-weight:700}.vft-md-container #toc .toc-item.active::before{background:var(--vft-md-container-primary-color)}.vft-md-container code[class*=language-],.vft-md-container pre[class*=language-]{-moz-tab-size:2;-o-tab-size:2;tab-size:2}.vft-md-container code[class*=language-] ::-moz-selection,.vft-md-container code[class*=language-]::-moz-selection,.vft-md-container pre[class*=language-] ::-moz-selection,.vft-md-container pre[class*=language-]::-moz-selection{background:#e5e5e6;color:inherit}.vft-md-container code[class*=language-] ::selection,.vft-md-container code[class*=language-]::selection,.vft-md-container pre[class*=language-] ::selection,.vft-md-container pre[class*=language-]::selection{background:#e5e5e6;color:inherit}.vft-md-container .token.cdata,.vft-md-container .token.comment,.vft-md-container .token.prolog{color:#a0a1a7}.vft-md-container .token.doctype,.vft-md-container .token.entity,.vft-md-container .token.punctuation{color:#383a42}.vft-md-container .token.atrule,.vft-md-container .token.attr-name,.vft-md-container .token.boolean,.vft-md-container .token.class-name,.vft-md-container .token.constant,.vft-md-container .token.number{color:#b76b01}.vft-md-container .token.keyword{color:#a626a4}.vft-md-container .token.deleted,.vft-md-container .token.important,.vft-md-container .token.property,.vft-md-container .token.symbol,.vft-md-container .token.tag{color:#e45649}.vft-md-container .token.attr-value,.vft-md-container .token.attr-value>.token.punctuation,.vft-md-container .token.builtin,.vft-md-container .token.char,.vft-md-container .token.inserted,.vft-md-container .token.regex,.vft-md-container .token.selector,.vft-md-container .token.string{color:#50a14f}.vft-md-container .token.function,.vft-md-container .token.operator,.vft-md-container .token.variable{color:#4078f2}.vft-md-container .token.url{color:#0184bc}.vft-md-container .token.attr-value>.token.punctuation.attr-equals,.vft-md-container .token.special-attr>.token.attr-value>.token.value.css{color:#383a42}.vft-md-container .language-css .token.selector{color:#e45649}.vft-md-container .language-css .token.property{color:#383a42}.vft-md-container .language-css .token.function,.vft-md-container .language-css .token.url>.token.function{color:#0184bc}.vft-md-container .language-css .token.url>.token.string.url{color:#50a14f}.vft-md-container .language-css .token.atrule .token.rule,.vft-md-container .language-css .token.important{color:#a626a4}.vft-md-container .language-javascript .token.operator{color:#a626a4}.vft-md-container .language-javascript .token.template-string>.token.interpolation>.token.interpolation-punctuation.punctuation{color:#ca1243}.vft-md-container .language-json .token.operator{color:#383a42}.vft-md-container .language-json .token.null.keyword{color:#b76b01}.vft-md-container .language-markdown .token.url,.vft-md-container .language-markdown .token.url-reference.url>.token.string,.vft-md-container .language-markdown .token.url>.token.operator{color:#383a42}.vft-md-container .language-markdown .token.url>.token.content{color:#4078f2}.vft-md-container .language-markdown .token.url-reference.url,.vft-md-container .language-markdown .token.url>.token.url{color:#0184bc}.vft-md-container .language-markdown .token.blockquote.punctuation,.vft-md-container .language-markdown .token.hr.punctuation{color:#a0a1a7;font-style:italic}.vft-md-container .language-markdown .token.code-snippet{color:#50a14f}.vft-md-container .language-markdown .token.bold .token.content{color:#b76b01}.vft-md-container .language-markdown .token.italic .token.content{color:#a626a4}.vft-md-container .language-markdown .token.list.punctuation,.vft-md-container .language-markdown .token.strike .token.content,.vft-md-container .language-markdown .token.strike .token.punctuation,.vft-md-container .language-markdown .token.title.important>.token.punctuation{color:#e45649}.vft-md-container .token.bold{font-weight:700}.vft-md-container .token.comment,.vft-md-container .token.italic{font-style:italic}.vft-md-container .token.entity{cursor:help}.vft-md-container .token.namespace{opacity:.8}.vft-md-container ol,.vft-md-container ul{-webkit-padding-start:1.2em;padding-inline-start:1.2em;list-style-type:revert}@media print{.vft-md-container ol,.vft-md-container ul{line-height:1.5}}.vft-md-container ol li,.vft-md-container ul li{display:list-item;text-align:-webkit-match-parent}.vft-md-container ol,.vft-md-container p,.vft-md-container ul{line-height:1.7;overflow-wrap:break-word}.vft-md-container table{width:100%;background-color:#fff;color:#000;border-radius:6px;border-collapse:collapse;overflow:hidden;margin:16px 0;box-shadow:var(--vft-box-shadow)}.vft-md-container table thead{background-color:var(--vft-primary-color-light-7);font-weight:400}.vft-md-container table thead th{border:0}.vft-md-container table tr{transition:all .2s}.vft-md-container table tbody tr:hover{background-color:var(--vft-primary-color-light-9)}.vft-md-container table td:first-child{font-weight:700}.vft-md-container table td:nth-child(1){font-weight:700}.vft-md-container table td:nth-child(4){word-break:break-all}.vft-md-container table td,.vft-md-container table th{padding:16px;line-height:22px;text-align:left;font-size:14px;border-bottom:var(--vft-border)}.vft-md-container table th{white-space:nowrap}.vft-md-container table em{font-style:normal;font-size:14px;color:var(--vft-danger-color)}.vft-md-container h2,.vft-md-container h3{border-bottom:1px solid rgba(0,0,0,.15)}.vft-md-container h1,.vft-md-container h2,.vft-md-container h3,.vft-md-container h4,.vft-md-container h5,.vft-md-container h6{font-weight:500;line-height:1.25;overflow-wrap:break-word}.vft-md-container h1:hover .header-anchor,.vft-md-container h2:hover .header-anchor,.vft-md-container h3:hover .header-anchor,.vft-md-container h4:hover .header-anchor,.vft-md-container h5:hover .header-anchor,.vft-md-container h6:hover .header-anchor{opacity:1}.vft-md-container h1{font-size:2rem}.vft-md-container h2{padding-bottom:.3rem;font-size:1.65rem}.vft-md-container h3{font-size:1.35rem}.vft-md-container h4{font-size:1.15rem}.vft-md-container h5{font-size:1.05rem}.vft-md-container h6{font-size:1rem}.vft-md-container h1,.vft-md-container h2,.vft-md-container h3,.vft-md-container h4,.vft-md-container h5,.vft-md-container h6{margin-bottom:.5rem;padding-top:30px;outline:0}.no-navbar .vft-md-container h1,.no-navbar .vft-md-container h2,.no-navbar .vft-md-container h3,.no-navbar .vft-md-container h4,.no-navbar .vft-md-container h5,.no-navbar .vft-md-container h6{margin-top:1.5rem;padding-top:0}.vft-md-container blockquote{margin:16px 0;padding:4px 0 4px 16px;-webkit-border-start:3px solid #ddd;border-inline-start:3px solid #ddd;border-color:#eee;color:#666;font-size:1rem;overflow-wrap:break-word}.vft-md-container blockquote p{margin:0}.vft-md-container code{font-family:Menlo,Monaco,Consolas,Courier New,monospace;padding:0 5px;color:#ff502c;background-color:var(--vft-md-container-code-bg-color);border-radius:3px;font-size:13.5px;word-break:break-word}.vft-md-container .line-numbers-mode pre{vertical-align:middle;padding-left:.5rem;margin-left:var(--vft-md-container-line-numbers-width)!important}.vft-md-container .line-numbers-mode::after{content:"";position:absolute;top:0;left:0;z-index:2;width:var(--vft-md-container-line-numbers-width);height:100%;border-right:var(--vft-border);border-radius:6px 0 0 6px;transition:border-color var(--vft-color-transition)}.vft-md-container .line-numbers-mode .line-numbers{position:absolute;top:0;left:0;width:var(--vft-md-container-line-numbers-width);padding:1rem 0;color:var(--vft-text-regular-color);line-height:1.375;counter-reset:line-number;text-align:center;transition:color var(--vft-color-transition);transform:translateY(1px)}@media print{.vft-md-container .line-numbers-mode .line-numbers{display:none}}.vft-md-container .line-numbers-mode .line-number{position:relative;z-index:4;display:flex;align-items:center;justify-content:center;height:1.375em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-md-container .line-numbers-mode .line-number::before{content:counter(line-number);font-size:.85em;counter-increment:line-number}.vft-md-container .line-numbers-mode .highlight-lines{position:absolute;top:0;left:0;width:100%;padding-top:1rem;line-height:1.375;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-md-container .line-numbers-mode .highlight-line{position:relative;background:var(--vft-md-container-highlight-line-color);transition:background var(--vft-md-container-color-transition)}.vft-md-container .line-numbers-mode .highlight-line::before{content:" ";position:absolute;top:0;left:0;z-index:3;display:block;width:var(--vft-md-container-line-numbers-width);height:100%}.vft-md-container div[class*=language-]{position:relative;border-radius:6px;background:#ecf4fa;transition:background .3s ease}.vft-md-container div[class*=language-]::before{content:attr(data-ext);position:absolute;top:.8em;right:1em;z-index:3;color:#004050;font-size:.75rem;transition:color .3s ease}.vft-md-container div[class*=language-] pre,.vft-md-container div[class*=language-] pre[class*=language-]{position:relative;z-index:1;direction:ltr;background:0 0!important;font-size:16px;overflow:auto;padding:1rem;border-radius:6px;line-height:1.375;display:block;font-family:monospace;white-space:pre;margin:14px 0 14px 0}.vft-md-container div[class*=language-] pre code,.vft-md-container div[class*=language-] pre[class*=language-] code{background:0 0;color:#383a42;padding:0;font-family:Consolas,Monaco,"Andale Mono","Ubuntu Mono",monospace;text-align:left;overflow-wrap:unset;white-space:pre;word-spacing:normal;word-wrap:normal;word-break:normal;-webkit-hyphens:none;font-size:.85em;-webkit-font-smoothing:auto;hyphens:none;transition:color .3s ease}.vft-md-container div[class*=language-] pre{vertical-align:middle;margin-left:var(--vft-md-container-line-numbers-width);padding-left:.5rem}.vft-md-container div[class*=language-] button.copy{border:none;position:absolute;top:0;right:40px;z-index:3;display:block;justify-content:center;align-items:center;border-radius:4px;width:40px;height:40px;background-color:transparent;opacity:0;cursor:pointer;background-image:var(--vft-md-container-icon-copy);background-position:50%;background-size:20px;background-repeat:no-repeat;transition:opacity .4s}.vft-md-container div[class*=language-] button.copy.copied::before,.vft-md-container div[class*=language-] button.copy:hover.copied::before{position:relative;left:-45px;font-size:12px;font-weight:500;color:rgba(56,58,66,.67);background-color:transparent;white-space:nowrap;content:"Copied"}.vft-md-container div[class*=language-] button.copy.copied,.vft-md-container div[class*=language-] button.copy:hover.copied{background-color:#c3def3;background-image:var(--vft-md-container-icon-copied)}.vft-md-container div[class*=language-] button.copy:focus,.vft-md-container div[class*=language-]:hover>button.copy{opacity:1}.vft-md-container div[class*=language-] button.copy:hover{background-color:#c3def3}.vft-md-container .language-markdown .token.url,.vft-md-container .language-markdown .token.url-reference.url>.token.string,.vft-md-container .language-markdown .token.url>.token.operator{color:#383a42}.vft-md-container .language-markdown .token.url>.token.content{color:#4078f2}.vft-md-container .language-markdown .token.url-reference.url,.vft-md-container .language-markdown .token.url>.token.url{color:#0184bc}.vft-md-container .language-markdown .token.blockquote.punctuation,.vft-md-container .language-markdown .token.hr.punctuation{color:#a0a1a7;font-style:italic}.vft-md-container .language-markdown .token.code-snippet{color:#50a14f}.vft-md-container .language-markdown .token.bold .token.content{color:#b76b01}.vft-md-container .language-markdown .token.italic .token.content{color:#a626a4}.vft-md-container .language-markdown .token.list.punctuation,.vft-md-container .language-markdown .token.strike .token.content,.vft-md-container .language-markdown .token.strike .token.punctuation,.vft-md-container .language-markdown .token.title.important>.token.punctuation{color:#e45649}.vft-md-container .hint-container{position:relative;transition:background var(--vft-transition-color),border-color var(--vft-transition-color),color var(--vft-transition-color)}@media print{.vft-md-container .hint-container{page-break-inside:avoid}}.vft-md-container .hint-container .hint-container-title{position:relative;font-weight:600;line-height:1.25}.vft-md-container .hint-container.danger,.vft-md-container .hint-container.info,.vft-md-container .hint-container.note,.vft-md-container .hint-container.tip,.vft-md-container .hint-container.warning{margin:1rem 0;padding:.25rem 1rem;border-inline-start-width:.3rem;border-inline-start-style:solid;border-radius:.5rem;color:inherit}.vft-md-container .hint-container.danger .hint-container-title,.vft-md-container .hint-container.info .hint-container-title,.vft-md-container .hint-container.note .hint-container-title,.vft-md-container .hint-container.tip .hint-container-title,.vft-md-container .hint-container.warning .hint-container-title{-webkit-padding-start:1.75rem;padding-inline-start:1.75rem}@media print{.vft-md-container .hint-container.danger .hint-container-title,.vft-md-container .hint-container.info .hint-container-title,.vft-md-container .hint-container.note .hint-container-title,.vft-md-container .hint-container.tip .hint-container-title,.vft-md-container .hint-container.warning .hint-container-title{-webkit-padding-start:0;padding-inline-start:0}}.vft-md-container .hint-container.danger .hint-container-title::before,.vft-md-container .hint-container.info .hint-container-title::before,.vft-md-container .hint-container.note .hint-container-title::before,.vft-md-container .hint-container.tip .hint-container-title::before,.vft-md-container .hint-container.warning .hint-container-title::before{content:" ";position:absolute;top:calc(50% - .6125em);left:0;inset-inline-start:0;width:1.25em;height:1.25em;background-position:left;background-repeat:no-repeat}@media print{.vft-md-container .hint-container.danger .hint-container-title::before,.vft-md-container .hint-container.info .hint-container-title::before,.vft-md-container .hint-container.note .hint-container-title::before,.vft-md-container .hint-container.tip .hint-container-title::before,.vft-md-container .hint-container.warning .hint-container-title::before{display:none}}.vft-md-container .hint-container.danger p,.vft-md-container .hint-container.info p,.vft-md-container .hint-container.note p,.vft-md-container .hint-container.tip p,.vft-md-container .hint-container.warning p{line-height:1.5}.vft-md-container .hint-container.danger a,.vft-md-container .hint-container.info a,.vft-md-container .hint-container.note a,.vft-md-container .hint-container.tip a,.vft-md-container .hint-container.warning a{color:var(--vft-md-container-primary-color)}.vft-md-container .hint-container.info{border-color:var(--vft-md-container-info-border-color);background:var(--vft-md-container-info-bg-color)}.vft-md-container .hint-container.info>.hint-container-title{color:var(--vft-md-container-info-title-color)}.vft-md-container .hint-container.info>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-1-11v6h2v-6h-2zm0-4v2h2V7h-2z' fill='%234cb3d4'/%3E%3C/svg%3E")}.vft-md-container .hint-container.info code{background:var(--vft-md-container-info-code-bg-color)}.vft-md-container .hint-container.note{border-color:var(--vft-md-container-note-border-color);background:var(--vft-md-container-note-bg-color)}.vft-md-container .hint-container.note>.hint-container-title{color:var(--vft-md-container-note-title-color)}.vft-md-container .hint-container.note>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-1-11v6h2v-6h-2zm0-4v2h2V7h-2z' fill='%23ccc'/%3E%3C/svg%3E")}.vft-md-container .hint-container.note code{background:var(--vft-md-container-note-code-bg-color)}.vft-md-container .hint-container.tip{border-color:var(--vft-md-container-tip-border-color);background:var(--vft-md-container-tip-bg-color)}.vft-md-container .hint-container.tip>.hint-container-title{color:var(--vft-md-container-tip-title-color)}.vft-md-container .hint-container.tip>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23009400' d='M7.941 18c-.297-1.273-1.637-2.314-2.187-3a8 8 0 1 1 12.49.002c-.55.685-1.888 1.726-2.185 2.998H7.94zM16 20v1a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-1h8zm-3-9.995V6l-4.5 6.005H11v4l4.5-6H13z'/%3E%3C/svg%3E")}.vft-md-container .hint-container.tip code{background:var(--vft-md-container-tip-code-bg-color)}.vft-md-container .hint-container.warning{border-color:var(--vft-md-container-warning-border-color);background:var(--vft-md-container-warning-bg-color)}.vft-md-container .hint-container.warning>.hint-container-title{color:var(--vft-md-container-warning-title-color)}.vft-md-container .hint-container.warning>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath d='M576.286 752.57v-95.425q0-7.031-4.771-11.802t-11.3-4.772h-96.43q-6.528 0-11.3 4.772t-4.77 11.802v95.424q0 7.031 4.77 11.803t11.3 4.77h96.43q6.528 0 11.3-4.77t4.77-11.803zm-1.005-187.836 9.04-230.524q0-6.027-5.022-9.543-6.529-5.524-12.053-5.524H456.754q-5.524 0-12.053 5.524-5.022 3.516-5.022 10.547l8.538 229.52q0 5.023 5.022 8.287t12.053 3.265h92.913q7.032 0 11.803-3.265t5.273-8.287zM568.25 95.65l385.714 707.142q17.578 31.641-1.004 63.282-8.538 14.564-23.354 23.102t-31.892 8.538H126.286q-17.076 0-31.892-8.538T71.04 866.074q-18.582-31.641-1.004-63.282L455.75 95.65q8.538-15.57 23.605-24.61T512 62t32.645 9.04 23.605 24.61z' fill='%23e6a700'/%3E%3C/svg%3E")}.vft-md-container .hint-container.warning code{background:var(--vft-md-container-warning-code-bg-color)}.vft-md-container .hint-container.danger{border-color:var(--vft-md-container-danger-border-color);background:var(--vft-md-container-danger-bg-color)}.vft-md-container .hint-container.danger>.hint-container-title{color:var(--vft-md-container-danger-title-color)}.vft-md-container .hint-container.danger>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10v3.764a2 2 0 0 1-1.106 1.789L18 19v1a3 3 0 0 1-2.824 2.995L14.95 23a2.5 2.5 0 0 0 .044-.33L15 22.5V22a2 2 0 0 0-1.85-1.995L13 20h-2a2 2 0 0 0-1.995 1.85L9 22v.5c0 .171.017.339.05.5H9a3 3 0 0 1-3-3v-1l-2.894-1.447A2 2 0 0 1 2 15.763V12C2 6.477 6.477 2 12 2zm-4 9a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm8 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4z' fill='%23e13238'/%3E%3C/svg%3E")}.vft-md-container .hint-container.danger code{background:var(--vft-md-container-danger-code-bg-color)}.vft-md-container .hint-container.details{position:relative;display:block;margin:1.6em 0;padding:1.5rem;border-radius:.5rem;background:var(--vft-md-container-detail-bg-color);color:var(--vft-md-container-detail-text-color);transition:background var(--vft-transition-color),color var(--vft-transition-color)}@media print{.vft-md-container .hint-container.details{display:none}}.vft-md-container .hint-container.details h4{margin-top:0}.vft-md-container .hint-container.details figure:last-child,.vft-md-container .hint-container.details p:last-child{margin-bottom:0;padding-bottom:0}.vft-md-container .hint-container.details a{color:var(--vft-md-container-primary-color)}.vft-md-container .hint-container.details code{background:var(--vft-md-container-detail-code-bg-color)}.vft-md-container .hint-container.details summary{position:relative;margin:-1.5rem;padding-top:1.5rem;padding-bottom:1.5rem;-webkit-padding-start:4rem;padding-inline-start:4rem;-webkit-padding-end:1.5rem;padding-inline-end:1.5rem;list-style:none;cursor:pointer}.vft-md-container .hint-container.details summary::-webkit-details-marker,.vft-md-container .hint-container.details summary::marker{color:transparent;font-size:0}.vft-md-container .hint-container.details summary::after,.vft-md-container .hint-container.details summary::before{content:" ";position:absolute;top:calc(50% - .75rem);left:1.5rem;inset-inline-start:1.5rem;width:1.5rem;height:1.5rem}@media print{.vft-md-container .hint-container.details summary::after,.vft-md-container .hint-container.details summary::before{display:block}}.vft-md-container .hint-container.details summary::before{border-radius:50%;background:#ccc;transition:background var(--vft-transition-color),transform var(--vft-transition-color)}.vft-md-container .hint-container.details summary::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='rgba(0,0,0,0.5)' d='M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z'/%3E%3C/svg%3E");line-height:normal;transition:transform var(--vft-transition-color);transform:rotate(90deg)}.vft-md-container .hint-container.details[open] summary{margin-bottom:.5em}.vft-md-container .hint-container.details[open] summary::after{transform:rotate(180deg)}.vft-md-container input[type=checkbox].task-list-item-checkbox{position:relative;width:0;-webkit-margin-end:1.5em;margin-inline-end:1.5em;cursor:pointer}.vft-md-container input[type=checkbox].task-list-item-checkbox::after{content:" ";position:absolute;top:0;display:inline-block;box-sizing:border-box;width:1em;height:1em;-webkit-padding-start:0;padding-inline-start:0;border:1px solid #ddd;border-radius:2px;background:#fff;text-align:center;visibility:visible;transition:background var(--t-color,.3s ease),border-color var(--t-color,.3s ease)}.vft-md-container input[type=checkbox].task-list-item-checkbox:checked::after{content:"";border-color:#3eaf7c;background:#3eaf7c}.vft-md-container input[type=checkbox].task-list-item-checkbox:checked::before{content:"";position:absolute;top:3px;left:.4em;inset-inline-start:.4em;z-index:1;width:4px;height:9px;border:solid #fff;border-width:0 .15em .15em 0;transform:rotate(45deg)}.vft-md-container input[type=checkbox i]{background-color:initial;cursor:default;margin:3px 3px 3px 4px;padding:initial;border:initial}.vft-md-container figure{position:relative;display:flex;flex-direction:column;width:auto;margin:1rem auto;text-align:center;transition:transform var(--t-transform,.3s ease)}.vft-md-container figure img{overflow:hidden;margin:0 auto;border-radius:8px}.vft-md-container figure img[tabindex]:focus,.vft-md-container figure img[tabindex]:hover{box-shadow:2px 2px 10px 0 var(--card-shadow)}.vft-md-container figure>a .external-link-icon{display:none}.vft-md-container figure figcaption{display:inline-block;margin:6px auto;font-size:.8rem}.vft-md-container__content h1{display:none}.vft-md-container h2,.vft-md-container h3{border-bottom:none}.vft-md-container h2{font-size:22px}.vft-md-container h3{font-size:18px}.vft-md-container .demo-container{border:var(--vft-border)}.vft-md-container .demo-container .demo{padding:20px 20px 30px}.vft-md-container .demo-container .demo .action{position:relative}.vft-md-container .demo-container .demo .action .expand{cursor:pointer;position:absolute;right:-5px;bottom:-28px;height:40px;width:40px;border-radius:4px;display:flex;align-items:center;justify-content:center}.vft-md-container .demo-container .demo .action .expand:hover{background-color:#c3def3}.vft-md-container .demo-container div.language-vue{transition:opacity .3s ease;height:0;visibility:hidden}.vft-md-container .demo-container div.language-vue pre{margin:0 0 0 var(--vft-md-container-line-numbers-width)!important}.vft-md-container .demo-container div.language-vue .copy{visibility:visible;opacity:1;top:-42px;right:60px}.vft-md-container p{font-size:16px;line-height:22px;margin:16px 0}.vft-md-container hr{transition:border-top-color .3s ease;border:0;border-top:1px solid #eaecef;margin:8px 0}.vft-md-container .header-anchor{text-decoration:none;transition:opacity .3s;opacity:0}.vft-md-container img{display:block;border-radius:4px;max-width:100%;margin:8px 0}.vft-md-container em{font-size:12px;line-height:20px}.vft-md-container pre{overflow:auto;margin:13px 0;padding:16px;border-radius:6px;line-height:1.375}.vft-md-container summary{cursor:pointer}.vft-md-container::-webkit-scrollbar{z-index:11;width:6px}.vft-md-container::-webkit-scrollbar:horizontal{height:6px}.vft-md-container::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:var(--vft-md-container-primary-color);border:0 solid transparent}.vft-md-container::-webkit-scrollbar-thumb:hover{background:var(--vft-md-container-primary-color)}.vft-md-container::-webkit-scrollbar-corner{background:0 0}.vft-md-container::-webkit-scrollbar-track{background:0 0}.vft-md-container::-webkit-scrollbar-track-piece{background:0 0;width:6px}.vft-md-container__header{max-width:var(--vft-md-container-content-max-width);min-width:300px}.vft-md-container__title{padding-top:10px!important}.vft-md-container__header .info-container{display:flex;align-items:center;justify-content:space-between;margin:20px 0}.vft-md-container__header .info-container .infos{display:flex;justify-content:flex-start;font-size:12px;color:var(--vft-info-color-light)}.vft-md-container__header .info-container .infos .vft-icon{color:inherit;font-size:inherit!important}.vft-md-container .reading{display:flex;align-items:center;font-size:14px}.vft-md-container__content{max-width:var(--vft-md-container-content-max-width);min-width:300px}
1
+ .fade-in-linear-enter-active,.fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.fade-in-linear-enter-from,.fade-in-linear-leave-to{opacity:0}.vft-fade-in-linear-enter-active,.vft-fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.vft-fade-in-linear-enter-from,.vft-fade-in-linear-leave-to{opacity:0}.vft-fade-in-enter-active,.vft-fade-in-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-fade-in-enter-from,.vft-fade-in-leave-active{opacity:0}.vft-zoom-in-center-enter-active,.vft-zoom-in-center-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-zoom-in-center-enter-from,.vft-zoom-in-center-leave-active{opacity:0;transform:scaleX(0)}.vft-zoom-in-top-enter-active,.vft-zoom-in-top-leave-active{opacity:1;transform:scaleY(1);transform-origin:center top;transition:var(--vft-transition-md-fade)}.vft-zoom-in-top-enter-active[data-popper-placement^=top],.vft-zoom-in-top-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-enter-from,.vft-zoom-in-top-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-top-fast-enter-active{opacity:1;transform:scaleY(1);transform-origin:center top;transition:var(--vft-transition-md-fade)}.vft-zoom-in-top-fast-enter-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-fast-leave-active{opacity:1;transform:scaleY(1);transform-origin:center top}.vft-zoom-in-top-fast-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-fast-enter-from,.vft-zoom-in-top-fast-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-bottom-enter-active,.vft-zoom-in-bottom-leave-active{opacity:1;transform:scaleY(1);transition:var(--vft-transition-md-fade);transform-origin:center bottom}.vft-zoom-in-bottom-enter-from,.vft-zoom-in-bottom-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-left-enter-active,.vft-zoom-in-left-leave-active{opacity:1;transform:scale(1,1);transition:var(--vft-transition-md-fade);transform-origin:top left}.vft-zoom-in-left-enter-from,.vft-zoom-in-left-leave-active{opacity:0;transform:scale(.45,.45)}.collapse-transition{transition:var(--vft-transition-duration) height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.vft-collapse-transition-enter-active,.vft-collapse-transition-leave-active{transition:var(--vft-transition-duration) max-height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.horizontal-collapse-transition{transition:var(--vft-transition-duration) width ease-in-out,var(--vft-transition-duration) padding-left ease-in-out,var(--vft-transition-duration) padding-right ease-in-out}.vft-list-enter-active,.vft-list-leave-active{transition:all 1s}.vft-list-enter-from,.vft-list-leave-to{opacity:0;transform:translateY(-30px)}.vft-list-leave-active{position:absolute!important}.vft-opacity-transition{transition:opacity var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}@keyframes vft-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}.pswp{--pswp-bg:#000;--pswp-placeholder-bg:#222;--pswp-root-z-index:100000;--pswp-preloader-color:rgba(79, 79, 79, 0.4);--pswp-preloader-secondary-color:rgba(255, 255, 255, 0.9);--pswp-icon-color:#fff;--pswp-icon-secondary-color:#4f4f4f;--pswp-icon-stroke-color:#4f4f4f;--pswp-icon-stroke-width:2px;--pswp-error-text-color:var(--pswp-icon-color)}.pswp{position:fixed;top:0;left:0;width:100%;height:100%;z-index:var(--pswp-root-z-index);display:none;touch-action:none;outline:0;opacity:.003;contain:layout style size;-webkit-tap-highlight-color:transparent}.pswp:focus{outline:0}.pswp *{box-sizing:border-box}.pswp img{max-width:none}.pswp--open{display:block}.pswp,.pswp__bg{transform:translateZ(0);will-change:opacity}.pswp__bg{opacity:.005;background:var(--pswp-bg)}.pswp,.pswp__scroll-wrap{overflow:hidden}.pswp__bg,.pswp__container,.pswp__content,.pswp__img,.pswp__item,.pswp__scroll-wrap,.pswp__zoom-wrap{position:absolute;top:0;left:0;width:100%;height:100%}.pswp__img,.pswp__zoom-wrap{width:auto;height:auto}.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img{cursor:zoom-in}.pswp--click-to-zoom.pswp--zoomed-in .pswp__img{cursor:move;cursor:grab}.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active{cursor:grabbing}.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,.pswp__img{cursor:zoom-out}.pswp__button,.pswp__container,.pswp__counter,.pswp__img{-webkit-user-select:none;-moz-user-select:none;user-select:none}.pswp__item{z-index:1;overflow:hidden}.pswp__hidden{display:none!important}.pswp__content{pointer-events:none}.pswp__content>*{pointer-events:auto}.pswp__error-msg-container{display:grid}.pswp__error-msg{margin:auto;font-size:1em;line-height:1;color:var(--pswp-error-text-color)}.pswp .pswp__hide-on-close{opacity:.005;will-change:opacity;transition:opacity var(--pswp-transition-duration) cubic-bezier(.4,0,.22,1);z-index:10;pointer-events:none}.pswp--ui-visible .pswp__hide-on-close{opacity:1;pointer-events:auto}.pswp__button{position:relative;display:block;width:50px;height:60px;padding:0;margin:0;overflow:hidden;cursor:pointer;background:0 0;border:0;box-shadow:none;opacity:.85;-webkit-appearance:none;-webkit-touch-callout:none}.pswp__button:active,.pswp__button:focus,.pswp__button:hover{transition:none;padding:0;background:0 0;border:0;box-shadow:none;opacity:1}.pswp__button:disabled{opacity:.3;cursor:auto}.pswp__icn{fill:var(--pswp-icon-color);color:var(--pswp-icon-secondary-color)}.pswp__icn{position:absolute;top:14px;left:9px;width:32px;height:32px;overflow:hidden;pointer-events:none}.pswp__icn-shadow{stroke:var(--pswp-icon-stroke-color);stroke-width:var(--pswp-icon-stroke-width);fill:none}.pswp__icn:focus{outline:0}.pswp__img--with-bg,div.pswp__img--placeholder{background:var(--pswp-placeholder-bg)}.pswp__top-bar{position:absolute;left:0;top:0;width:100%;height:60px;display:flex;flex-direction:row;justify-content:flex-end;z-index:10;pointer-events:none!important}.pswp__top-bar>*{pointer-events:auto;will-change:opacity}.pswp__button--close{margin-right:6px}.pswp__button--arrow{position:absolute;top:0;width:75px;height:100px;top:50%;margin-top:-50px}.pswp__button--arrow:disabled{display:none;cursor:default}.pswp__button--arrow .pswp__icn{top:50%;margin-top:-30px;width:60px;height:60px;background:0 0;border-radius:0}.pswp--one-slide .pswp__button--arrow{display:none}.pswp--touch .pswp__button--arrow{visibility:hidden}.pswp--has_mouse .pswp__button--arrow{visibility:visible}.pswp__button--arrow--prev{right:auto;left:0}.pswp__button--arrow--next{right:0}.pswp__button--arrow--next .pswp__icn{left:auto;right:14px;transform:scale(-1,1)}.pswp__button--zoom{display:none}.pswp--zoom-allowed .pswp__button--zoom{display:block}.pswp--zoomed-in .pswp__zoom-icn-bar-v{display:none}.pswp__preloader{position:relative;overflow:hidden;width:50px;height:60px;margin-right:auto}.pswp__preloader .pswp__icn{opacity:0;transition:opacity .2s linear;animation:pswp-clockwise .6s linear infinite}.pswp__preloader--active .pswp__icn{opacity:.85}@keyframes pswp-clockwise{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.pswp__counter{height:30px;margin-top:15px;-webkit-margin-start:20px;margin-inline-start:20px;font-size:14px;line-height:30px;color:var(--pswp-icon-color);text-shadow:1px 1px 3px var(--pswp-icon-secondary-color);opacity:.85}.pswp--one-slide .pswp__counter{display:none}:root{--vft-md-container-primary-color:var(--vft-primary-color);--vft-md-container-content-max-width:800px;--vft-md-container-code-bg-color:#fff5f5;--vft-md-container-line-numbers-width:2.5rem;--vft-md-container-icon-copy:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' height='20' width='20' stroke='rgba(128,128,128,1)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2M9 5a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2'/%3E%3C/svg%3E");--vft-md-container-icon-copied:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' height='20' width='20' stroke='rgba(128,128,128,1)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2M9 5a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2m-6 9 2 2 4-4'/%3E%3C/svg%3E");--vft-md-container-info-title-color:#193c47;--vft-md-container-info-bg-color:#eef9fd;--vft-md-container-info-border-color:#4cb3d4;--vft-md-container-info-code-bg-color:rgba(76, 179, 212, 0.1);--vft-md-container-note-title-color:#474748;--vft-md-container-note-bg-color:#fdfdfe;--vft-md-container-note-border-color:#ccc;--vft-md-container-note-code-bg-color:rgba(212, 213, 216, 0.2);--vft-md-container-tip-title-color:#003100;--vft-md-container-tip-bg-color:#e6f6e6;--vft-md-container-tip-border-color:#009400;--vft-md-container-tip-code-bg-color:rgba(0, 148, 0, 0.15);--vft-md-container-warning-title-color:#4d3800;--vft-md-container-warning-bg-color:#fff8e6;--vft-md-container-warning-border-color:#e6a700;--vft-md-container-warning-code-bg-color:rgba(230, 167, 0, 0.15);--vft-md-container-danger-title-color:#4b1113;--vft-md-container-danger-bg-color:#ffebec;--vft-md-container-danger-border-color:#e13238;--vft-md-container-danger-code-bg-color:rgba(225, 50, 56, 0.15);--vft-md-container-detail-bg-color:#eee;--vft-md-container-detail-text-color:inherit;--vft-md-container-detail-code-bg-color:rgba(127, 127, 127, 0.15)}.vft-md-container{-webkit-font-smoothing:antialiased;padding:20px 30px;height:100%;overflow:auto;overflow:overlay}.vft-md-container a{color:var(--vft-md-container-primary-color);font-weight:500;overflow-wrap:break-word}.vft-md-container a:hover{text-decoration:underline}.vft-md-container a::after{content:"";display:inline-block;height:12px;width:12px;margin-left:5px;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjc0NTU1ODY1NjQyIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjU2NjIiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCI+PHBhdGggZD0iTTkxMiAxMDA4LjUxMkgxNS40ODhWMTEyaDQ0OC4yNTZ2OTZIMTExLjQ4OHY3MDQuNTEySDgxNlY1NjAuMjU2aDk2eiIgcC1pZD0iNTY2MyIgZmlsbD0iIzk5OTk5OSI+PC9wYXRoPjxwYXRoIGQ9Ik05MTguMjA4IDM3Ljg4OGw2Ny45MDQgNjcuOTA0TDU0NS45ODQgNTQ1LjkybC02Ny45MDQtNjcuODR6IiBwLWlkPSI1NjY0IiBmaWxsPSIjOTk5OTk5Ij48L3BhdGg+PHBhdGggZD0iTTEwMDcuMTY4IDMxMC42NTZoLTk2VjExMmgtMjA4VjE2aDMwNHoiIHAtaWQ9IjU2NjUiIGZpbGw9IiM5OTk5OTkiPjwvcGF0aD48L3N2Zz4=);background-size:100% 100%}.vft-md-container a.header-anchor::after,.vft-md-container a:has(>img)::after{content:"";display:none}.vft-md-container a img{display:inline-block}.vft-md-container a.header-anchor{float:left;margin-top:.125em;margin-left:-.87em;padding-right:.23em;font-size:.85em;opacity:0;transition:opacity .2s}.vft-md-container h1:hover .header-anchor,.vft-md-container h2:hover .header-anchor,.vft-md-container h3:hover .header-anchor,.vft-md-container h4:hover .header-anchor,.vft-md-container h5:hover .header-anchor,.vft-md-container h6:hover .header-anchor{opacity:1}.vft-md-container .toc-place-holder{position:sticky;top:50px;z-index:1;max-width:var(--vft-md-container-content-max-width)}.vft-md-container #toc{position:absolute;left:calc(100% + 1rem);min-width:10rem;max-width:15rem}@media print{.vft-md-container #toc{display:none!important}}.vft-md-container #toc a::after{content:"";display:none}.vft-md-container #toc .toc-header{margin-bottom:.75rem;-webkit-margin-start:.5rem;margin-inline-start:.5rem;font-weight:600;font-size:.875rem}.vft-md-container #toc .print-button{box-sizing:content-box;width:1rem;height:1rem;padding:.5rem;border-radius:.25em;color:inherit;font-size:1rem;transform:translateY(.25rem)}.vft-md-container #toc .toc-wrapper{position:relative;overflow-x:hidden;overflow-y:auto;max-height:70vh;margin:0 .5rem;-webkit-padding-start:8px;padding-inline-start:8px;text-overflow:ellipsis;white-space:nowrap}.vft-md-container #toc .toc-wrapper::-webkit-scrollbar{width:3px}.vft-md-container #toc .toc-list{position:relative;margin:0;padding:0}.vft-md-container #toc .toc-list::before{content:" ";position:absolute;top:0;bottom:0;left:-8px;inset-inline-start:-8px;z-index:-1;width:2px;background:var(--vft-info-color-light-7)}.vft-md-container #toc .toc-link{position:relative;display:block;overflow:hidden;max-width:100%;color:var(--vft-text-primary-color);line-height:inherit;text-overflow:ellipsis;white-space:nowrap}.vft-md-container #toc .toc-link.level2{-webkit-padding-start:0;padding-inline-start:0;font-size:14px}.vft-md-container #toc .toc-link.level3{-webkit-padding-start:8px;padding-inline-start:8px;font-size:13px}.vft-md-container #toc .toc-link.level4{-webkit-padding-start:16px;padding-inline-start:16px;font-size:12px}.vft-md-container #toc .toc-link.level5{-webkit-padding-start:24px;padding-inline-start:24px;font-size:11px}.vft-md-container #toc .toc-link.level6{-webkit-padding-start:32px;padding-inline-start:32px;font-size:10px}.vft-md-container #toc .toc-item{position:relative;box-sizing:border-box;height:1.7rem;padding:0 .5rem;list-style:none;line-height:1.7rem}.vft-md-container #toc .toc-item::before{content:" ";position:absolute;top:0;bottom:0;left:-8px;inset-inline-start:-8px;z-index:2;width:2px;background:0 0}.vft-md-container #toc .toc-item:hover>.toc-link{color:var(--vft-md-container-primary-color)}.vft-md-container #toc .toc-item.active>.toc-link{color:var(--vft-md-container-primary-color);font-weight:700}.vft-md-container #toc .toc-item.active::before{background:var(--vft-md-container-primary-color)}.vft-md-container code[class*=language-],.vft-md-container pre[class*=language-]{-moz-tab-size:2;-o-tab-size:2;tab-size:2}.vft-md-container code[class*=language-] ::-moz-selection,.vft-md-container code[class*=language-]::-moz-selection,.vft-md-container pre[class*=language-] ::-moz-selection,.vft-md-container pre[class*=language-]::-moz-selection{background:#e5e5e6;color:inherit}.vft-md-container code[class*=language-] ::selection,.vft-md-container code[class*=language-]::selection,.vft-md-container pre[class*=language-] ::selection,.vft-md-container pre[class*=language-]::selection{background:#e5e5e6;color:inherit}.vft-md-container .token.cdata,.vft-md-container .token.comment,.vft-md-container .token.prolog{color:#a0a1a7}.vft-md-container .token.doctype,.vft-md-container .token.entity,.vft-md-container .token.punctuation{color:#383a42}.vft-md-container .token.atrule,.vft-md-container .token.attr-name,.vft-md-container .token.boolean,.vft-md-container .token.class-name,.vft-md-container .token.constant,.vft-md-container .token.number{color:#b76b01}.vft-md-container .token.keyword{color:#a626a4}.vft-md-container .token.deleted,.vft-md-container .token.important,.vft-md-container .token.property,.vft-md-container .token.symbol,.vft-md-container .token.tag{color:#e45649}.vft-md-container .token.attr-value,.vft-md-container .token.attr-value>.token.punctuation,.vft-md-container .token.builtin,.vft-md-container .token.char,.vft-md-container .token.inserted,.vft-md-container .token.regex,.vft-md-container .token.selector,.vft-md-container .token.string{color:#50a14f}.vft-md-container .token.function,.vft-md-container .token.operator,.vft-md-container .token.variable{color:#4078f2}.vft-md-container .token.url{color:#0184bc}.vft-md-container .token.attr-value>.token.punctuation.attr-equals,.vft-md-container .token.special-attr>.token.attr-value>.token.value.css{color:#383a42}.vft-md-container .language-css .token.selector{color:#e45649}.vft-md-container .language-css .token.property{color:#383a42}.vft-md-container .language-css .token.function,.vft-md-container .language-css .token.url>.token.function{color:#0184bc}.vft-md-container .language-css .token.url>.token.string.url{color:#50a14f}.vft-md-container .language-css .token.atrule .token.rule,.vft-md-container .language-css .token.important{color:#a626a4}.vft-md-container .language-javascript .token.operator{color:#a626a4}.vft-md-container .language-javascript .token.template-string>.token.interpolation>.token.interpolation-punctuation.punctuation{color:#ca1243}.vft-md-container .language-json .token.operator{color:#383a42}.vft-md-container .language-json .token.null.keyword{color:#b76b01}.vft-md-container .language-markdown .token.url,.vft-md-container .language-markdown .token.url-reference.url>.token.string,.vft-md-container .language-markdown .token.url>.token.operator{color:#383a42}.vft-md-container .language-markdown .token.url>.token.content{color:#4078f2}.vft-md-container .language-markdown .token.url-reference.url,.vft-md-container .language-markdown .token.url>.token.url{color:#0184bc}.vft-md-container .language-markdown .token.blockquote.punctuation,.vft-md-container .language-markdown .token.hr.punctuation{color:#a0a1a7;font-style:italic}.vft-md-container .language-markdown .token.code-snippet{color:#50a14f}.vft-md-container .language-markdown .token.bold .token.content{color:#b76b01}.vft-md-container .language-markdown .token.italic .token.content{color:#a626a4}.vft-md-container .language-markdown .token.list.punctuation,.vft-md-container .language-markdown .token.strike .token.content,.vft-md-container .language-markdown .token.strike .token.punctuation,.vft-md-container .language-markdown .token.title.important>.token.punctuation{color:#e45649}.vft-md-container .token.bold{font-weight:700}.vft-md-container .token.comment,.vft-md-container .token.italic{font-style:italic}.vft-md-container .token.entity{cursor:help}.vft-md-container .token.namespace{opacity:.8}.vft-md-container table{width:100%;background-color:#fff;color:#000;border-radius:6px;border-collapse:collapse;overflow:hidden;margin:16px 0;box-shadow:var(--vft-box-shadow)}.vft-md-container table thead{background-color:var(--vft-primary-color-light-7);font-weight:400}.vft-md-container table thead th{border:0}.vft-md-container table tr{transition:all .2s}.vft-md-container table tbody tr:hover{background-color:var(--vft-primary-color-light-9)}.vft-md-container table td:first-child{font-weight:700}.vft-md-container table td:nth-child(1){font-weight:700}.vft-md-container table td:nth-child(4){word-break:break-all}.vft-md-container table td,.vft-md-container table th{padding:16px;line-height:22px;text-align:left;font-size:14px;border-bottom:var(--vft-border)}.vft-md-container table th{white-space:nowrap}.vft-md-container table em{font-style:normal;font-size:14px;color:var(--vft-danger-color)}.vft-md-container h2,.vft-md-container h3{border-bottom:1px solid rgba(0,0,0,.15)}.vft-md-container h1,.vft-md-container h2,.vft-md-container h3,.vft-md-container h4,.vft-md-container h5,.vft-md-container h6{font-weight:500;line-height:1.25;overflow-wrap:break-word}.vft-md-container h1:hover .header-anchor,.vft-md-container h2:hover .header-anchor,.vft-md-container h3:hover .header-anchor,.vft-md-container h4:hover .header-anchor,.vft-md-container h5:hover .header-anchor,.vft-md-container h6:hover .header-anchor{opacity:1}.vft-md-container h1{font-size:2rem}.vft-md-container h2{padding-bottom:.3rem;font-size:1.65rem}.vft-md-container h3{font-size:1.35rem}.vft-md-container h4{font-size:1.15rem}.vft-md-container h5{font-size:1.05rem}.vft-md-container h6{font-size:1rem}.vft-md-container h1,.vft-md-container h2,.vft-md-container h3,.vft-md-container h4,.vft-md-container h5,.vft-md-container h6{margin-bottom:.5rem;padding-top:30px;outline:0}.no-navbar .vft-md-container h1,.no-navbar .vft-md-container h2,.no-navbar .vft-md-container h3,.no-navbar .vft-md-container h4,.no-navbar .vft-md-container h5,.no-navbar .vft-md-container h6{margin-top:1.5rem;padding-top:0}.vft-md-container blockquote{margin:16px 0;padding:4px 0 4px 16px;-webkit-border-start:3px solid #ddd;border-inline-start:3px solid #ddd;border-color:#eee;color:#666;font-size:1rem;overflow-wrap:break-word}.vft-md-container blockquote p{margin:0}.vft-md-container code{padding:0 5px;color:#ff502c;background-color:var(--vft-md-container-code-bg-color);border-radius:3px;font-size:13.5px;word-break:break-word}.vft-md-container .line-numbers-mode pre{vertical-align:middle;padding-left:.5rem;margin-left:var(--vft-md-container-line-numbers-width)!important}.vft-md-container .line-numbers-mode::after{content:"";position:absolute;top:0;left:0;z-index:2;width:var(--vft-md-container-line-numbers-width);height:100%;border-right:var(--vft-border);border-radius:6px 0 0 6px;transition:border-color var(--vft-color-transition)}.vft-md-container .line-numbers-mode .line-numbers{position:absolute;top:0;left:0;width:var(--vft-md-container-line-numbers-width);padding:1rem 0;color:var(--vft-text-regular-color);line-height:1.375;counter-reset:line-number;text-align:center;transition:color var(--vft-color-transition);transform:translateY(1px)}@media print{.vft-md-container .line-numbers-mode .line-numbers{display:none}}.vft-md-container .line-numbers-mode .line-number{position:relative;z-index:4;display:flex;align-items:center;justify-content:center;height:1.375em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-md-container .line-numbers-mode .line-number::before{content:counter(line-number);font-size:.85em;counter-increment:line-number}.vft-md-container .line-numbers-mode .highlight-lines{position:absolute;top:0;left:0;width:100%;padding-top:1rem;line-height:1.375;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-md-container .line-numbers-mode .highlight-line{position:relative;background:var(--vft-md-container-highlight-line-color);transition:background var(--vft-md-container-color-transition)}.vft-md-container .line-numbers-mode .highlight-line::before{content:" ";position:absolute;top:0;left:0;z-index:3;display:block;width:var(--vft-md-container-line-numbers-width);height:100%}.vft-md-container div[class*=language-]{position:relative;border-radius:6px;background:#ecf4fa;transition:background .3s ease}.vft-md-container div[class*=language-]::before{content:attr(data-ext);position:absolute;top:.8em;right:1em;z-index:3;color:#004050;font-size:.75rem;transition:color .3s ease}.vft-md-container div[class*=language-] pre,.vft-md-container div[class*=language-] pre[class*=language-]{position:relative;z-index:1;direction:ltr;background:0 0!important;font-size:16px;overflow:auto;padding:1rem;border-radius:6px;line-height:1.375;display:block;white-space:pre;margin:14px 0 14px 0}.vft-md-container div[class*=language-] pre code,.vft-md-container div[class*=language-] pre[class*=language-] code{background:0 0;color:#383a42;padding:0;text-align:left;overflow-wrap:unset;white-space:pre;word-spacing:normal;word-wrap:normal;word-break:normal;-webkit-hyphens:none;font-size:.85em;-webkit-font-smoothing:auto;hyphens:none;transition:color .3s ease}.vft-md-container div[class*=language-] pre{vertical-align:middle;margin-left:var(--vft-md-container-line-numbers-width);padding-left:.5rem}.vft-md-container div[class*=language-] button.copy{border:none;position:absolute;top:0;right:40px;z-index:3;display:block;justify-content:center;align-items:center;border-radius:4px;width:40px;height:40px;background-color:transparent;opacity:0;cursor:pointer;background-image:var(--vft-md-container-icon-copy);background-position:50%;background-size:20px;background-repeat:no-repeat;transition:opacity .4s}.vft-md-container div[class*=language-] button.copy.copied::before,.vft-md-container div[class*=language-] button.copy:hover.copied::before{position:relative;left:-45px;font-size:12px;font-weight:500;color:rgba(56,58,66,.67);background-color:transparent;white-space:nowrap;content:"Copied"}.vft-md-container div[class*=language-] button.copy.copied,.vft-md-container div[class*=language-] button.copy:hover.copied{background-color:#c3def3;background-image:var(--vft-md-container-icon-copied)}.vft-md-container div[class*=language-] button.copy:focus,.vft-md-container div[class*=language-]:hover>button.copy{opacity:1}.vft-md-container div[class*=language-] button.copy:hover{background-color:#c3def3}.vft-md-container .language-markdown .token.url,.vft-md-container .language-markdown .token.url-reference.url>.token.string,.vft-md-container .language-markdown .token.url>.token.operator{color:#383a42}.vft-md-container .language-markdown .token.url>.token.content{color:#4078f2}.vft-md-container .language-markdown .token.url-reference.url,.vft-md-container .language-markdown .token.url>.token.url{color:#0184bc}.vft-md-container .language-markdown .token.blockquote.punctuation,.vft-md-container .language-markdown .token.hr.punctuation{color:#a0a1a7;font-style:italic}.vft-md-container .language-markdown .token.code-snippet{color:#50a14f}.vft-md-container .language-markdown .token.bold .token.content{color:#b76b01}.vft-md-container .language-markdown .token.italic .token.content{color:#a626a4}.vft-md-container .language-markdown .token.list.punctuation,.vft-md-container .language-markdown .token.strike .token.content,.vft-md-container .language-markdown .token.strike .token.punctuation,.vft-md-container .language-markdown .token.title.important>.token.punctuation{color:#e45649}.vft-md-container .hint-container{position:relative;transition:background var(--vft-transition-color),border-color var(--vft-transition-color),color var(--vft-transition-color)}@media print{.vft-md-container .hint-container{page-break-inside:avoid}}.vft-md-container .hint-container .hint-container-title{position:relative;font-weight:600;line-height:1.25}.vft-md-container .hint-container.danger,.vft-md-container .hint-container.info,.vft-md-container .hint-container.note,.vft-md-container .hint-container.tip,.vft-md-container .hint-container.warning{margin:1rem 0;padding:.25rem 1rem;border-inline-start-width:.3rem;border-inline-start-style:solid;border-radius:.5rem;color:inherit}.vft-md-container .hint-container.danger .hint-container-title,.vft-md-container .hint-container.info .hint-container-title,.vft-md-container .hint-container.note .hint-container-title,.vft-md-container .hint-container.tip .hint-container-title,.vft-md-container .hint-container.warning .hint-container-title{-webkit-padding-start:1.75rem;padding-inline-start:1.75rem}@media print{.vft-md-container .hint-container.danger .hint-container-title,.vft-md-container .hint-container.info .hint-container-title,.vft-md-container .hint-container.note .hint-container-title,.vft-md-container .hint-container.tip .hint-container-title,.vft-md-container .hint-container.warning .hint-container-title{-webkit-padding-start:0;padding-inline-start:0}}.vft-md-container .hint-container.danger .hint-container-title::before,.vft-md-container .hint-container.info .hint-container-title::before,.vft-md-container .hint-container.note .hint-container-title::before,.vft-md-container .hint-container.tip .hint-container-title::before,.vft-md-container .hint-container.warning .hint-container-title::before{content:" ";position:absolute;top:calc(50% - .6125em);left:0;inset-inline-start:0;width:1.25em;height:1.25em;background-position:left;background-repeat:no-repeat}@media print{.vft-md-container .hint-container.danger .hint-container-title::before,.vft-md-container .hint-container.info .hint-container-title::before,.vft-md-container .hint-container.note .hint-container-title::before,.vft-md-container .hint-container.tip .hint-container-title::before,.vft-md-container .hint-container.warning .hint-container-title::before{display:none}}.vft-md-container .hint-container.danger p,.vft-md-container .hint-container.info p,.vft-md-container .hint-container.note p,.vft-md-container .hint-container.tip p,.vft-md-container .hint-container.warning p{line-height:1.5}.vft-md-container .hint-container.danger a,.vft-md-container .hint-container.info a,.vft-md-container .hint-container.note a,.vft-md-container .hint-container.tip a,.vft-md-container .hint-container.warning a{color:var(--vft-md-container-primary-color)}.vft-md-container .hint-container.info{border-color:var(--vft-md-container-info-border-color);background:var(--vft-md-container-info-bg-color)}.vft-md-container .hint-container.info>.hint-container-title{color:var(--vft-md-container-info-title-color)}.vft-md-container .hint-container.info>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-1-11v6h2v-6h-2zm0-4v2h2V7h-2z' fill='%234cb3d4'/%3E%3C/svg%3E")}.vft-md-container .hint-container.info code{background:var(--vft-md-container-info-code-bg-color)}.vft-md-container .hint-container.note{border-color:var(--vft-md-container-note-border-color);background:var(--vft-md-container-note-bg-color)}.vft-md-container .hint-container.note>.hint-container-title{color:var(--vft-md-container-note-title-color)}.vft-md-container .hint-container.note>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-1-11v6h2v-6h-2zm0-4v2h2V7h-2z' fill='%23ccc'/%3E%3C/svg%3E")}.vft-md-container .hint-container.note code{background:var(--vft-md-container-note-code-bg-color)}.vft-md-container .hint-container.tip{border-color:var(--vft-md-container-tip-border-color);background:var(--vft-md-container-tip-bg-color)}.vft-md-container .hint-container.tip>.hint-container-title{color:var(--vft-md-container-tip-title-color)}.vft-md-container .hint-container.tip>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23009400' d='M7.941 18c-.297-1.273-1.637-2.314-2.187-3a8 8 0 1 1 12.49.002c-.55.685-1.888 1.726-2.185 2.998H7.94zM16 20v1a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-1h8zm-3-9.995V6l-4.5 6.005H11v4l4.5-6H13z'/%3E%3C/svg%3E")}.vft-md-container .hint-container.tip code{background:var(--vft-md-container-tip-code-bg-color)}.vft-md-container .hint-container.warning{border-color:var(--vft-md-container-warning-border-color);background:var(--vft-md-container-warning-bg-color)}.vft-md-container .hint-container.warning>.hint-container-title{color:var(--vft-md-container-warning-title-color)}.vft-md-container .hint-container.warning>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath d='M576.286 752.57v-95.425q0-7.031-4.771-11.802t-11.3-4.772h-96.43q-6.528 0-11.3 4.772t-4.77 11.802v95.424q0 7.031 4.77 11.803t11.3 4.77h96.43q6.528 0 11.3-4.77t4.77-11.803zm-1.005-187.836 9.04-230.524q0-6.027-5.022-9.543-6.529-5.524-12.053-5.524H456.754q-5.524 0-12.053 5.524-5.022 3.516-5.022 10.547l8.538 229.52q0 5.023 5.022 8.287t12.053 3.265h92.913q7.032 0 11.803-3.265t5.273-8.287zM568.25 95.65l385.714 707.142q17.578 31.641-1.004 63.282-8.538 14.564-23.354 23.102t-31.892 8.538H126.286q-17.076 0-31.892-8.538T71.04 866.074q-18.582-31.641-1.004-63.282L455.75 95.65q8.538-15.57 23.605-24.61T512 62t32.645 9.04 23.605 24.61z' fill='%23e6a700'/%3E%3C/svg%3E")}.vft-md-container .hint-container.warning code{background:var(--vft-md-container-warning-code-bg-color)}.vft-md-container .hint-container.danger{border-color:var(--vft-md-container-danger-border-color);background:var(--vft-md-container-danger-bg-color)}.vft-md-container .hint-container.danger>.hint-container-title{color:var(--vft-md-container-danger-title-color)}.vft-md-container .hint-container.danger>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10v3.764a2 2 0 0 1-1.106 1.789L18 19v1a3 3 0 0 1-2.824 2.995L14.95 23a2.5 2.5 0 0 0 .044-.33L15 22.5V22a2 2 0 0 0-1.85-1.995L13 20h-2a2 2 0 0 0-1.995 1.85L9 22v.5c0 .171.017.339.05.5H9a3 3 0 0 1-3-3v-1l-2.894-1.447A2 2 0 0 1 2 15.763V12C2 6.477 6.477 2 12 2zm-4 9a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm8 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4z' fill='%23e13238'/%3E%3C/svg%3E")}.vft-md-container .hint-container.danger code{background:var(--vft-md-container-danger-code-bg-color)}.vft-md-container .hint-container.details{position:relative;display:block;margin:1.6em 0;padding:1.5rem;border-radius:.5rem;background:var(--vft-md-container-detail-bg-color);color:var(--vft-md-container-detail-text-color);transition:background var(--vft-transition-color),color var(--vft-transition-color)}@media print{.vft-md-container .hint-container.details{display:none}}.vft-md-container .hint-container.details h4{margin-top:0}.vft-md-container .hint-container.details figure:last-child,.vft-md-container .hint-container.details p:last-child{margin-bottom:0;padding-bottom:0}.vft-md-container .hint-container.details a{color:var(--vft-md-container-primary-color)}.vft-md-container .hint-container.details code{background:var(--vft-md-container-detail-code-bg-color)}.vft-md-container .hint-container.details summary{position:relative;margin:-1.5rem;padding-top:1.5rem;padding-bottom:1.5rem;-webkit-padding-start:4rem;padding-inline-start:4rem;-webkit-padding-end:1.5rem;padding-inline-end:1.5rem;list-style:none;cursor:pointer}.vft-md-container .hint-container.details summary::-webkit-details-marker,.vft-md-container .hint-container.details summary::marker{color:transparent;font-size:0}.vft-md-container .hint-container.details summary::after,.vft-md-container .hint-container.details summary::before{content:" ";position:absolute;top:calc(50% - .75rem);left:1.5rem;inset-inline-start:1.5rem;width:1.5rem;height:1.5rem}@media print{.vft-md-container .hint-container.details summary::after,.vft-md-container .hint-container.details summary::before{display:block}}.vft-md-container .hint-container.details summary::before{border-radius:50%;background:#ccc;transition:background var(--vft-transition-color),transform var(--vft-transition-color)}.vft-md-container .hint-container.details summary::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='rgba(0,0,0,0.5)' d='M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z'/%3E%3C/svg%3E");line-height:normal;transition:transform var(--vft-transition-color);transform:rotate(90deg)}.vft-md-container .hint-container.details[open] summary{margin-bottom:.5em}.vft-md-container .hint-container.details[open] summary::after{transform:rotate(180deg)}.vft-md-container input[type=checkbox].task-list-item-checkbox{position:relative;width:0;-webkit-margin-end:1.5em;margin-inline-end:1.5em;cursor:pointer}.vft-md-container input[type=checkbox].task-list-item-checkbox::after{content:" ";position:absolute;top:0;display:inline-block;box-sizing:border-box;width:1em;height:1em;-webkit-padding-start:0;padding-inline-start:0;border:1px solid #ddd;border-radius:2px;background:#fff;text-align:center;visibility:visible;transition:background var(--t-color,.3s ease),border-color var(--t-color,.3s ease)}.vft-md-container input[type=checkbox].task-list-item-checkbox:checked::after{content:"";border-color:#3eaf7c;background:#3eaf7c}.vft-md-container input[type=checkbox].task-list-item-checkbox:checked::before{content:"";position:absolute;top:3px;left:.4em;inset-inline-start:.4em;z-index:1;width:4px;height:9px;border:solid #fff;border-width:0 .15em .15em 0;transform:rotate(45deg)}.vft-md-container input[type=checkbox i]{background-color:initial;cursor:default;margin:3px 3px 3px 4px;padding:initial;border:initial}.vft-md-container figure{position:relative;display:flex;flex-direction:column;width:auto;margin:1rem auto;text-align:center;transition:transform var(--t-transform,.3s ease)}.vft-md-container figure img{overflow:hidden;margin:0 auto;border-radius:8px}.vft-md-container figure img[tabindex]:focus,.vft-md-container figure img[tabindex]:hover{box-shadow:2px 2px 10px 0 var(--card-shadow)}.vft-md-container figure>a .external-link-icon{display:none}.vft-md-container figure figcaption{display:inline-block;margin:6px auto;font-size:.8rem}.vft-md-container__content h1{display:none}.vft-md-container h2,.vft-md-container h3{border-bottom:none}.vft-md-container h2{font-size:22px}.vft-md-container h3{font-size:18px}.vft-md-container .demo-container{border:var(--vft-border)}.vft-md-container .demo-container .demo{padding:20px 20px 30px}.vft-md-container .demo-container .demo .action{position:relative}.vft-md-container .demo-container .demo .action .expand{cursor:pointer;position:absolute;right:-5px;bottom:-28px;height:40px;width:40px;border-radius:4px;display:flex;align-items:center;justify-content:center}.vft-md-container .demo-container .demo .action .expand:hover{background-color:#c3def3}.vft-md-container .demo-container div.language-vue{transition:opacity .3s ease;height:0;visibility:hidden}.vft-md-container .demo-container div.language-vue pre{margin:0 0 0 var(--vft-md-container-line-numbers-width)!important}.vft-md-container .demo-container div.language-vue .copy{visibility:visible;opacity:1;top:-42px;right:60px}.vft-md-container p{font-size:16px;line-height:22px;margin:16px 0}.vft-md-container hr{transition:border-top-color .3s ease;border:0;border-top:1px solid #eaecef;margin:8px 0}.vft-md-container .header-anchor{text-decoration:none;transition:opacity .3s;opacity:0}.vft-md-container em{font-size:12px;line-height:20px}.vft-md-container pre{overflow:auto;margin:13px 0;padding:16px;border-radius:6px;line-height:1.375}.vft-md-container summary{cursor:pointer}.vft-md-container::-webkit-scrollbar{z-index:11;width:6px}.vft-md-container::-webkit-scrollbar:horizontal{height:6px}.vft-md-container::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:var(--vft-md-container-primary-color);border:0 solid transparent}.vft-md-container::-webkit-scrollbar-thumb:hover{background:var(--vft-md-container-primary-color)}.vft-md-container::-webkit-scrollbar-corner{background:0 0}.vft-md-container::-webkit-scrollbar-track{background:0 0}.vft-md-container::-webkit-scrollbar-track-piece{background:0 0;width:6px}.vft-md-container__header{max-width:var(--vft-md-container-content-max-width);min-width:300px}.vft-md-container__title{padding-top:10px!important}.vft-md-container__header .info-container{display:flex;align-items:center;justify-content:space-between;margin:20px 0}.vft-md-container__header .info-container .infos{display:flex;justify-content:flex-start;font-size:12px;color:var(--vft-info-color-light)}.vft-md-container__header .info-container .infos .vft-icon{color:inherit;font-size:inherit!important}.vft-md-container .reading{display:flex;align-items:center;font-size:14px}.vft-md-container__content{max-width:var(--vft-md-container-content-max-width);min-width:300px}
@@ -1 +1 @@
1
- .vft-md-vue-playground{overflow:hidden;margin-top:1rem;margin-bottom:1rem;border:1px solid var(--c-border,#ddd);border-radius:6px}.vft-md-vue-playground .title-wrapper{display:flex;flex-flow:row wrap;align-items:center;padding:8px 10px;border-bottom:1px solid var(--c-border,#ddd);background:var(--playground-header-bg-color,#eee);font-weight:500;transition:background var(--t-color,.3s ease) border-color var(--t-color,.3s ease)}.vft-md-vue-playground .title{flex:1;overflow:hidden;font-size:1.25rem;text-overflow:ellipsis;white-space:nowrap}.vft-md-vue-playground .actions{display:flex;align-items:center}.vft-md-vue-playground .icon{width:1.5rem;height:1.5rem;fill:#777}.vft-md-vue-playground .action{display:inline-flex;-webkit-margin-start:10px;margin-inline-start:10px}.vft-md-vue-playground .preview-loading-wrapper{display:flex;align-items:center;justify-content:center;background:var(--grey15);transition:background var(--t-color,.3s ease)}.vft-md-vue-playground .preview-loading-wrapper .loading-icon{width:4em;height:4em;margin:2.5em auto;color:var(--c-brand,#3eaf7c);transition:color var(--t-color,.3s ease)}.vft-md-vue-playground .source-container{display:none}.vft-md-vue-playground .source-container.show{display:block}.vft-md-vue-playground .repl-container{position:relative;overflow:hidden;height:auto;background:var(--c-bg,#fff);transition:background var(--t-color,.3s ease)}.vft-md-vue-playground .repl-container iframe{display:block;width:100%;height:100%;border:none}.vft-md-vue-playground .repl-container .vue-repl .split-pane .left .editor-container{height:100%!important}.vft-md-vue-playground .repl-container.show-code .vue-repl .split-pane .left{display:block!important}.vft-md-vue-playground .repl-container.hide-code .vue-repl .split-pane .left{display:none!important}.vft-md-vue-playground pre,.vft-md-vue-playground pre[class*=language-]{margin:0;padding:0;border-radius:0}.vft-md-vue-playground .split-pane[data-v-3102671e]{display:flex;height:100%;position:relative}.vft-md-vue-playground .split-pane.dragging[data-v-3102671e]{cursor:ew-resize}.vft-md-vue-playground .dragging .left[data-v-3102671e],.vft-md-vue-playground .dragging .right[data-v-3102671e]{pointer-events:none}.vft-md-vue-playground .left[data-v-3102671e],.vft-md-vue-playground .right[data-v-3102671e]{position:relative;height:100%}.vft-md-vue-playground .left[data-v-3102671e]{border-right:1px solid var(--border)}.vft-md-vue-playground .dragger[data-v-3102671e]{position:absolute;z-index:3;top:0;bottom:0;right:-5px;width:10px;cursor:ew-resize}.vft-md-vue-playground .toggler[data-v-3102671e]{display:none;z-index:3;font-family:var(--font-code);color:var(--text-light);position:absolute;left:50%;bottom:20px;background-color:var(--bg);padding:8px 12px;border-radius:8px;transform:translateX(-50%);box-shadow:0 3px 8px rgba(0,0,0,.25)}.vft-md-vue-playground .dark .toggler[data-v-3102671e]{background-color:var(--bg)}@media (min-width:721px){.vft-md-vue-playground .split-pane.vertical[data-v-3102671e]{display:block}.vft-md-vue-playground .split-pane.vertical.dragging[data-v-3102671e]{cursor:ns-resize}.vft-md-vue-playground .vertical .dragger[data-v-3102671e]{top:auto;height:10px;width:100%;left:0;right:0;bottom:-5px;cursor:ns-resize}.vft-md-vue-playground .vertical .left[data-v-3102671e],.vft-md-vue-playground .vertical .right[data-v-3102671e]{width:100%}.vft-md-vue-playground .vertical .left[data-v-3102671e]{border-right:none;border-bottom:1px solid var(--border)}}@media (max-width:720px){.vft-md-vue-playground .left[data-v-3102671e],.vft-md-vue-playground .right[data-v-3102671e]{width:100%!important;height:100%!important}.vft-md-vue-playground .dragger[data-v-3102671e]{display:none}.vft-md-vue-playground .split-pane .toggler[data-v-3102671e]{display:block}.vft-md-vue-playground .split-pane .right[data-v-3102671e]{display:none}.vft-md-vue-playground .split-pane.show-output .right[data-v-3102671e]{display:block}.vft-md-vue-playground .split-pane.show-output .left[data-v-3102671e]{display:none}}.vft-md-vue-playground .file-selector[data-v-cbb0a4e5]{display:flex;box-sizing:border-box;border-bottom:1px solid var(--border);background-color:var(--bg);overflow-y:hidden;overflow-x:auto;white-space:nowrap;position:relative;height:var(--header-height)}.vft-md-vue-playground .file-selector[data-v-cbb0a4e5]::-webkit-scrollbar{height:1px}.vft-md-vue-playground .file-selector[data-v-cbb0a4e5]::-webkit-scrollbar-track{background-color:var(--border)}.vft-md-vue-playground .file-selector[data-v-cbb0a4e5]::-webkit-scrollbar-thumb{background-color:var(--color-branding)}.vft-md-vue-playground .file-selector.has-import-map .add[data-v-cbb0a4e5]{margin-right:10px}.vft-md-vue-playground .file[data-v-cbb0a4e5]{display:inline-block;font-size:13px;font-family:var(--font-code);cursor:pointer;color:var(--text-light);box-sizing:border-box}.vft-md-vue-playground .file.active[data-v-cbb0a4e5]{color:var(--color-branding);border-bottom:3px solid var(--color-branding);cursor:text}.vft-md-vue-playground .file span[data-v-cbb0a4e5]{display:inline-block;padding:8px 10px 6px;line-height:20px}.vft-md-vue-playground .file.pending input[data-v-cbb0a4e5]{width:90px;height:30px;line-height:30px;outline:0;border:1px solid var(--border);border-radius:4px;padding:0 0 0 10px;margin-top:2px;margin-left:6px;font-family:var(--font-code);font-size:12px}.vft-md-vue-playground .file .remove[data-v-cbb0a4e5]{display:inline-block;vertical-align:middle;line-height:12px;cursor:pointer;padding-left:0}.vft-md-vue-playground .add[data-v-cbb0a4e5]{font-size:18px;font-family:var(--font-code);color:#999;vertical-align:middle;margin-left:6px;position:relative;top:-1px}.vft-md-vue-playground .add[data-v-cbb0a4e5]:hover{color:var(--color-branding)}.vft-md-vue-playground .icon[data-v-cbb0a4e5]{margin-top:-1px}.vft-md-vue-playground .import-map-wrapper[data-v-cbb0a4e5]{position:sticky;margin-left:auto;top:0;right:0;padding-left:30px;background-color:var(--bg);background:linear-gradient(90deg,rgba(255,255,255,0) 0,#fff 25%)}.vft-md-vue-playground .dark .import-map-wrapper[data-v-cbb0a4e5]{background:linear-gradient(90deg,rgba(26,26,26,0) 0,#1a1a1a 25%)}.vft-md-vue-playground .CodeMirror{color:var(--symbols);--symbols:#777;--base:#545281;--comment:hsl(210, 25%, 60%);--keyword:#af4ab1;--variable:var(--base);--function:#c25205;--string:#2ba46d;--number:#c25205;--tags:#d00;--brackets:var(--comment);--qualifier:#ff6032;--important:var(--string);--attribute:#9c3eda;--property:#6182b8;--selected-bg:#d7d4f0;--selected-bg-non-focus:#d9d9d9;--cursor:#000;direction:ltr;font-family:var(--font-code);height:auto}.vft-md-vue-playground .dark .CodeMirror{color:var(--symbols);--symbols:#89ddff;--base:#a6accd;--comment:#6d6d6d;--keyword:#89ddff;--string:#c3e88d;--variable:#82aaff;--number:#f78c6c;--tags:#f07178;--brackets:var(--symbols);--property:#f07178;--attribute:#c792ea;--cursor:#fff;--selected-bg:rgba(255, 255, 255, 0.1);--selected-bg-non-focus:rgba(255, 255, 255, 0.15)}.vft-md-vue-playground .CodeMirror-lines{padding:4px 0}.vft-md-vue-playground .CodeMirror pre{padding:0 4px}.vft-md-vue-playground .CodeMirror-gutter-filler,.vft-md-vue-playground .CodeMirror-scrollbar-filler{background-color:#fff}.vft-md-vue-playground .CodeMirror-gutters{border-right:1px solid var(--border);background-color:transparent;white-space:nowrap}.vft-md-vue-playground .CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:var(--comment);white-space:nowrap;opacity:.6}.vft-md-vue-playground .CodeMirror-guttermarker{color:#000}.vft-md-vue-playground .CodeMirror-guttermarker-subtle{color:#999}.vft-md-vue-playground .CodeMirror-foldmarker{color:#414141;text-shadow:#f96 1px 1px 2px,#f96 -1px -1px 2px,#f96 1px -1px 2px,#f96 -1px 1px 2px;font-family:arial;line-height:.3;cursor:pointer}.vft-md-vue-playground .CodeMirror-foldgutter{width:.7em}.vft-md-vue-playground .CodeMirror-foldgutter-folded,.vft-md-vue-playground .CodeMirror-foldgutter-open{cursor:pointer}.vft-md-vue-playground .CodeMirror-foldgutter-folded:after,.vft-md-vue-playground .CodeMirror-foldgutter-open:after{content:">";font-size:.8em;opacity:.8;transition:transform .2s;display:inline-block;top:-.1em;position:relative;transform:rotate(90deg)}.vft-md-vue-playground .CodeMirror-foldgutter-folded:after{transform:none}.vft-md-vue-playground .CodeMirror-cursor{border-left:1px solid var(--cursor);border-right:none;width:0}.vft-md-vue-playground .CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.vft-md-vue-playground .cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}.vft-md-vue-playground .cm-fat-cursor div.CodeMirror-cursors{z-index:1}.vft-md-vue-playground .cm-fat-cursor-mark{background-color:rgba(20,255,20,.5);animation:blink 1.06s steps(1) infinite}.vft-md-vue-playground .cm-animate-fat-cursor{width:auto;border:0;animation:blink 1.06s steps(1) infinite;background-color:#7e7}@keyframes blink{50%{background-color:transparent}}.vft-md-vue-playground .cm-tab{display:inline-block;text-decoration:inherit}.vft-md-vue-playground .CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:-20px;overflow:hidden}.vft-md-vue-playground .CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.vft-md-vue-playground .cm-s-default.CodeMirror{background-color:transparent}.vft-md-vue-playground .cm-s-default .cm-header{color:#00f}.vft-md-vue-playground .cm-s-default .cm-quote{color:#090}.vft-md-vue-playground .cm-negative{color:#d44}.vft-md-vue-playground .cm-positive{color:#292}.vft-md-vue-playground .cm-header,.vft-md-vue-playground .cm-strong{font-weight:700}.vft-md-vue-playground .cm-em{font-style:italic}.vft-md-vue-playground .cm-link{text-decoration:underline}.vft-md-vue-playground .cm-strikethrough{text-decoration:line-through}.vft-md-vue-playground .cm-s-default .cm-atom,.vft-md-vue-playground .cm-s-default .cm-def,.vft-md-vue-playground .cm-s-default .cm-punctuation,.vft-md-vue-playground .cm-s-default .cm-variable-2,.vft-md-vue-playground .cm-s-default .cm-variable-3{color:var(--base)}.vft-md-vue-playground .cm-s-default .cm-property{color:var(--property)}.vft-md-vue-playground .cm-s-default .cm-comment,.vft-md-vue-playground .cm-s-default .cm-hr{color:var(--comment)}.vft-md-vue-playground .cm-s-default .cm-attribute{color:var(--attribute)}.vft-md-vue-playground .cm-s-default .cm-keyword{color:var(--keyword)}.vft-md-vue-playground .cm-s-default .cm-variable{color:var(--variable)}.vft-md-vue-playground .cm-s-default .cm-tag{color:var(--tags)}.vft-md-vue-playground .cm-s-default .cm-bracket{color:var(--brackets)}.vft-md-vue-playground .cm-s-default .cm-number{color:var(--number)}.vft-md-vue-playground .cm-s-default .cm-string,.vft-md-vue-playground .cm-s-default .cm-string-2{color:var(--string)}.vft-md-vue-playground .cm-s-default .cm-type{color:#085}.vft-md-vue-playground .cm-s-default .cm-meta{color:#555}.vft-md-vue-playground .cm-s-default .cm-qualifier{color:var(--qualifier)}.vft-md-vue-playground .cm-s-default .cm-builtin{color:#7539ff}.vft-md-vue-playground .cm-s-default .cm-link{color:var(--flash)}.vft-md-vue-playground .cm-s-default .cm-error{color:#ff008c}.vft-md-vue-playground .cm-invalidchar{color:#ff008c}.vft-md-vue-playground .CodeMirror-composing{border-bottom:2px solid}.vft-md-vue-playground div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}.vft-md-vue-playground div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}.vft-md-vue-playground .CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.vft-md-vue-playground .CodeMirror-activeline-background{background:#e8f2ff}.vft-md-vue-playground .CodeMirror{position:relative;overflow:hidden;background:#fff}.vft-md-vue-playground .CodeMirror-scroll{overflow:scroll!important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;height:100%;outline:0;position:relative}.vft-md-vue-playground .CodeMirror-sizer{position:relative;border-right:30px solid transparent}.vft-md-vue-playground .CodeMirror-gutter-filler,.vft-md-vue-playground .CodeMirror-hscrollbar,.vft-md-vue-playground .CodeMirror-scrollbar-filler,.vft-md-vue-playground .CodeMirror-vscrollbar{position:absolute;z-index:6;display:none}.vft-md-vue-playground .CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.vft-md-vue-playground .CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.vft-md-vue-playground .CodeMirror-scrollbar-filler{right:0;bottom:0}.vft-md-vue-playground .CodeMirror-gutter-filler{left:0;bottom:0}.vft-md-vue-playground .CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.vft-md-vue-playground .CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-30px}.vft-md-vue-playground .CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:0 0!important;border:none!important}.vft-md-vue-playground .CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.vft-md-vue-playground .CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.vft-md-vue-playground .CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.vft-md-vue-playground .CodeMirror-gutter-wrapper ::selection{background-color:transparent}.vft-md-vue-playground .CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.vft-md-vue-playground .CodeMirror-lines{cursor:text;min-height:1px}.vft-md-vue-playground .CodeMirror pre{border-radius:0;border-width:0;background:0 0;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;font-variant-ligatures:contextual}.vft-md-vue-playground .CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.vft-md-vue-playground .CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.vft-md-vue-playground .CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}.vft-md-vue-playground .CodeMirror-rtl pre{direction:rtl}.vft-md-vue-playground .CodeMirror-code{outline:0}.vft-md-vue-playground .CodeMirror-gutter,.vft-md-vue-playground .CodeMirror-gutters,.vft-md-vue-playground .CodeMirror-linenumber,.vft-md-vue-playground .CodeMirror-scroll,.vft-md-vue-playground .CodeMirror-sizer{box-sizing:content-box}.vft-md-vue-playground .CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.vft-md-vue-playground .CodeMirror-cursor{position:absolute;pointer-events:none}.vft-md-vue-playground .CodeMirror-measure pre{position:static}.vft-md-vue-playground div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}.vft-md-vue-playground div.CodeMirror-dragcursors{visibility:visible}.vft-md-vue-playground .CodeMirror-focused div.CodeMirror-cursors{visibility:visible}.vft-md-vue-playground .CodeMirror-selected{background:var(--selected-bg-non-focus)}.vft-md-vue-playground .CodeMirror-focused .CodeMirror-selected{background:var(--selected-bg)}.vft-md-vue-playground .CodeMirror-crosshair{cursor:crosshair}.vft-md-vue-playground .CodeMirror-line::-moz-selection,.vft-md-vue-playground .CodeMirror-line>span::-moz-selection,.vft-md-vue-playground .CodeMirror-line>span>span::-moz-selection{background:var(--selected-bg)}.vft-md-vue-playground .CodeMirror-line::selection,.vft-md-vue-playground .CodeMirror-line>span::selection,.vft-md-vue-playground .CodeMirror-line>span>span::selection{background:var(--selected-bg)}.vft-md-vue-playground .CodeMirror-line::-moz-selection,.vft-md-vue-playground .CodeMirror-line>span::-moz-selection,.vft-md-vue-playground .CodeMirror-line>span>span::-moz-selection{background:var(--selected-bg)}.vft-md-vue-playground .cm-searching{background-color:#ffa;background-color:rgba(255,255,0,.4)}.vft-md-vue-playground .cm-force-border{padding-right:.1px}@media print{.vft-md-vue-playground .CodeMirror div.CodeMirror-cursors{visibility:hidden}}.vft-md-vue-playground .cm-tab-wrap-hack:after{content:""}.vft-md-vue-playground span.CodeMirror-selectedtext{background:0 0}.vft-md-vue-playground .editor{position:relative;height:100%;width:100%;overflow:hidden}.vft-md-vue-playground .CodeMirror{font-family:var(--font-code);line-height:1.5;height:100%}.vft-md-vue-playground .msg[data-v-92411507]{position:absolute;bottom:0;left:8px;right:8px;z-index:10;border:2px solid transparent;border-radius:6px;font-family:var(--font-code);white-space:pre-wrap;margin-bottom:8px;max-height:calc(100% - 300px);min-height:40px;display:flex;align-items:stretch}.vft-md-vue-playground pre[data-v-92411507]{margin:0;padding:12px 20px;overflow:auto}.vft-md-vue-playground .dismiss[data-v-92411507]{position:absolute;top:2px;right:2px;width:18px;height:18px;line-height:18px;border-radius:9px;text-align:center;display:block;font-size:9px;padding:0;background-color:red;color:#fff}@media (max-width:720px){.vft-md-vue-playground .dismiss[data-v-92411507]{top:-9px;right:-9px}.vft-md-vue-playground .msg[data-v-92411507]{bottom:50px}}.vft-md-vue-playground .msg.err[data-v-92411507]{color:red;border-color:red;background-color:#ffd7d7}.vft-md-vue-playground .msg.warn[data-v-92411507]{--color:rgb(105, 95, 27);color:var(--color);border-color:var(--color);background-color:#f7f0cd}.vft-md-vue-playground .msg.warn .dismiss[data-v-92411507]{background-color:var(--color)}.vft-md-vue-playground .fade-enter-active[data-v-92411507],.vft-md-vue-playground .fade-leave-active[data-v-92411507]{transition:all .15s ease-out}.vft-md-vue-playground .fade-enter-from[data-v-92411507],.vft-md-vue-playground .fade-leave-to[data-v-92411507]{opacity:0;transform:translate(0,10px)}.vft-md-vue-playground .editor-container[data-v-0384e940]{height:calc(100% - var(--header-height));overflow:hidden;position:relative}.vft-md-vue-playground .iframe-container[data-v-21e1de24],.vft-md-vue-playground .iframe-container[data-v-21e1de24] iframe{width:100%;height:100%;border:none;background-color:#fff}.vft-md-vue-playground .output-container[data-v-5d2df9cb]{height:calc(100% - var(--header-height));overflow:hidden;position:relative}.vft-md-vue-playground .tab-buttons[data-v-5d2df9cb]{box-sizing:border-box;border-bottom:1px solid var(--border);background-color:var(--bg);height:var(--header-height);overflow:hidden}.vft-md-vue-playground .tab-buttons button[data-v-5d2df9cb]{padding:0;box-sizing:border-box}.vft-md-vue-playground .tab-buttons span[data-v-5d2df9cb]{font-size:13px;font-family:var(--font-code);text-transform:uppercase;color:var(--text-light);display:inline-block;padding:8px 16px 6px;line-height:20px}.vft-md-vue-playground button.active[data-v-5d2df9cb]{color:var(--color-branding-dark);border-bottom:3px solid var(--color-branding-dark)}.vft-md-vue-playground .vue-repl{--bg:#fff;--bg-soft:#f8f8f8;--border:#ddd;--text-light:#888;--font-code:Menlo,Monaco,Consolas,"Courier New",monospace;--color-branding:#42b883;--color-branding-dark:#416f9c;--header-height:38px;font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif;margin:0;overflow:hidden;background-color:var(--bg-soft)}.vft-md-vue-playground .dark .vue-repl{--bg:#1a1a1a;--bg-soft:#242424;--border:#383838;--text-light:#aaa;--color-branding:#42d392;--color-branding-dark:#89ddff}.vft-md-vue-playground button{border:none;outline:0;cursor:pointer;margin:0;background-color:transparent}
1
+ .vft-md-vue-playground{overflow:hidden;margin-top:1rem;margin-bottom:1rem;border:1px solid var(--c-border,#ddd);border-radius:6px}.vft-md-vue-playground .title-wrapper{display:flex;flex-flow:row wrap;align-items:center;padding:8px 10px;border-bottom:1px solid var(--c-border,#ddd);background:var(--playground-header-bg-color,#eee);font-weight:500;transition:background var(--t-color,.3s ease) border-color var(--t-color,.3s ease)}.vft-md-vue-playground .title{flex:1;overflow:hidden;font-size:1.25rem;text-overflow:ellipsis;white-space:nowrap}.vft-md-vue-playground .actions{display:flex;align-items:center}.vft-md-vue-playground .icon{width:1.5rem;height:1.5rem;fill:#777}.vft-md-vue-playground .action{display:inline-flex;-webkit-margin-start:10px;margin-inline-start:10px}.vft-md-vue-playground .preview-loading-wrapper{display:flex;align-items:center;justify-content:center;background:var(--grey15);transition:background var(--t-color,.3s ease)}.vft-md-vue-playground .preview-loading-wrapper .loading-icon{width:4em;height:4em;margin:2.5em auto;color:var(--c-brand,#3eaf7c);transition:color var(--t-color,.3s ease)}.vft-md-vue-playground .source-container{display:none}.vft-md-vue-playground .source-container.show{display:block}.vft-md-vue-playground .repl-container{position:relative;overflow:hidden;height:auto;background:var(--c-bg,#fff);transition:background var(--t-color,.3s ease)}.vft-md-vue-playground .repl-container iframe{display:block;width:100%;height:100%;border:none}.vft-md-vue-playground .repl-container .vue-repl .split-pane .left .editor-container{height:100%!important}.vft-md-vue-playground .repl-container.show-code .vue-repl .split-pane .left{display:block!important}.vft-md-vue-playground .repl-container.hide-code .vue-repl .split-pane .left{display:none!important}.vft-md-vue-playground pre,.vft-md-vue-playground pre[class*=language-]{margin:0;padding:0;border-radius:0}.vft-md-vue-playground .split-pane[data-v-3102671e]{display:flex;height:100%;position:relative}.vft-md-vue-playground .split-pane.dragging[data-v-3102671e]{cursor:ew-resize}.vft-md-vue-playground .dragging .left[data-v-3102671e],.vft-md-vue-playground .dragging .right[data-v-3102671e]{pointer-events:none}.vft-md-vue-playground .left[data-v-3102671e],.vft-md-vue-playground .right[data-v-3102671e]{position:relative;height:100%}.vft-md-vue-playground .left[data-v-3102671e]{border-right:1px solid var(--border)}.vft-md-vue-playground .dragger[data-v-3102671e]{position:absolute;z-index:3;top:0;bottom:0;right:-5px;width:10px;cursor:ew-resize}.vft-md-vue-playground .toggler[data-v-3102671e]{display:none;z-index:3;color:var(--text-light);position:absolute;left:50%;bottom:20px;background-color:var(--bg);padding:8px 12px;border-radius:8px;transform:translateX(-50%);box-shadow:0 3px 8px rgba(0,0,0,.25)}.vft-md-vue-playground .dark .toggler[data-v-3102671e]{background-color:var(--bg)}@media (min-width:721px){.vft-md-vue-playground .split-pane.vertical[data-v-3102671e]{display:block}.vft-md-vue-playground .split-pane.vertical.dragging[data-v-3102671e]{cursor:ns-resize}.vft-md-vue-playground .vertical .dragger[data-v-3102671e]{top:auto;height:10px;width:100%;left:0;right:0;bottom:-5px;cursor:ns-resize}.vft-md-vue-playground .vertical .left[data-v-3102671e],.vft-md-vue-playground .vertical .right[data-v-3102671e]{width:100%}.vft-md-vue-playground .vertical .left[data-v-3102671e]{border-right:none;border-bottom:1px solid var(--border)}}@media (max-width:720px){.vft-md-vue-playground .left[data-v-3102671e],.vft-md-vue-playground .right[data-v-3102671e]{width:100%!important;height:100%!important}.vft-md-vue-playground .dragger[data-v-3102671e]{display:none}.vft-md-vue-playground .split-pane .toggler[data-v-3102671e]{display:block}.vft-md-vue-playground .split-pane .right[data-v-3102671e]{display:none}.vft-md-vue-playground .split-pane.show-output .right[data-v-3102671e]{display:block}.vft-md-vue-playground .split-pane.show-output .left[data-v-3102671e]{display:none}}.vft-md-vue-playground .file-selector[data-v-cbb0a4e5]{display:flex;box-sizing:border-box;border-bottom:1px solid var(--border);background-color:var(--bg);overflow-y:hidden;overflow-x:auto;white-space:nowrap;position:relative;height:var(--header-height)}.vft-md-vue-playground .file-selector[data-v-cbb0a4e5]::-webkit-scrollbar{height:1px}.vft-md-vue-playground .file-selector[data-v-cbb0a4e5]::-webkit-scrollbar-track{background-color:var(--border)}.vft-md-vue-playground .file-selector[data-v-cbb0a4e5]::-webkit-scrollbar-thumb{background-color:var(--color-branding)}.vft-md-vue-playground .file-selector.has-import-map .add[data-v-cbb0a4e5]{margin-right:10px}.vft-md-vue-playground .file[data-v-cbb0a4e5]{display:inline-block;font-size:13px;cursor:pointer;color:var(--text-light);box-sizing:border-box}.vft-md-vue-playground .file.active[data-v-cbb0a4e5]{color:var(--color-branding);border-bottom:3px solid var(--color-branding);cursor:text}.vft-md-vue-playground .file span[data-v-cbb0a4e5]{display:inline-block;padding:8px 10px 6px;line-height:20px}.vft-md-vue-playground .file.pending input[data-v-cbb0a4e5]{width:90px;height:30px;line-height:30px;outline:0;border:1px solid var(--border);border-radius:4px;padding:0 0 0 10px;margin-top:2px;margin-left:6px;font-size:12px}.vft-md-vue-playground .file .remove[data-v-cbb0a4e5]{display:inline-block;vertical-align:middle;line-height:12px;cursor:pointer;padding-left:0}.vft-md-vue-playground .add[data-v-cbb0a4e5]{font-size:18px;color:#999;vertical-align:middle;margin-left:6px;position:relative;top:-1px}.vft-md-vue-playground .add[data-v-cbb0a4e5]:hover{color:var(--color-branding)}.vft-md-vue-playground .icon[data-v-cbb0a4e5]{margin-top:-1px}.vft-md-vue-playground .import-map-wrapper[data-v-cbb0a4e5]{position:sticky;margin-left:auto;top:0;right:0;padding-left:30px;background-color:var(--bg);background:linear-gradient(90deg,rgba(255,255,255,0) 0,#fff 25%)}.vft-md-vue-playground .dark .import-map-wrapper[data-v-cbb0a4e5]{background:linear-gradient(90deg,rgba(26,26,26,0) 0,#1a1a1a 25%)}.vft-md-vue-playground .CodeMirror{color:var(--symbols);--symbols:#777;--base:#545281;--comment:hsl(210, 25%, 60%);--keyword:#af4ab1;--variable:var(--base);--function:#c25205;--string:#2ba46d;--number:#c25205;--tags:#d00;--brackets:var(--comment);--qualifier:#ff6032;--important:var(--string);--attribute:#9c3eda;--property:#6182b8;--selected-bg:#d7d4f0;--selected-bg-non-focus:#d9d9d9;--cursor:#000;direction:ltr;height:auto}.vft-md-vue-playground .dark .CodeMirror{color:var(--symbols);--symbols:#89ddff;--base:#a6accd;--comment:#6d6d6d;--keyword:#89ddff;--string:#c3e88d;--variable:#82aaff;--number:#f78c6c;--tags:#f07178;--brackets:var(--symbols);--property:#f07178;--attribute:#c792ea;--cursor:#fff;--selected-bg:rgba(255, 255, 255, 0.1);--selected-bg-non-focus:rgba(255, 255, 255, 0.15)}.vft-md-vue-playground .CodeMirror-lines{padding:4px 0}.vft-md-vue-playground .CodeMirror pre{padding:0 4px}.vft-md-vue-playground .CodeMirror-gutter-filler,.vft-md-vue-playground .CodeMirror-scrollbar-filler{background-color:#fff}.vft-md-vue-playground .CodeMirror-gutters{border-right:1px solid var(--border);background-color:transparent;white-space:nowrap}.vft-md-vue-playground .CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:var(--comment);white-space:nowrap;opacity:.6}.vft-md-vue-playground .CodeMirror-guttermarker{color:#000}.vft-md-vue-playground .CodeMirror-guttermarker-subtle{color:#999}.vft-md-vue-playground .CodeMirror-foldmarker{color:#414141;text-shadow:#f96 1px 1px 2px,#f96 -1px -1px 2px,#f96 1px -1px 2px,#f96 -1px 1px 2px;line-height:.3;cursor:pointer}.vft-md-vue-playground .CodeMirror-foldgutter{width:.7em}.vft-md-vue-playground .CodeMirror-foldgutter-folded,.vft-md-vue-playground .CodeMirror-foldgutter-open{cursor:pointer}.vft-md-vue-playground .CodeMirror-foldgutter-folded:after,.vft-md-vue-playground .CodeMirror-foldgutter-open:after{content:">";font-size:.8em;opacity:.8;transition:transform .2s;display:inline-block;top:-.1em;position:relative;transform:rotate(90deg)}.vft-md-vue-playground .CodeMirror-foldgutter-folded:after{transform:none}.vft-md-vue-playground .CodeMirror-cursor{border-left:1px solid var(--cursor);border-right:none;width:0}.vft-md-vue-playground .CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.vft-md-vue-playground .cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}.vft-md-vue-playground .cm-fat-cursor div.CodeMirror-cursors{z-index:1}.vft-md-vue-playground .cm-fat-cursor-mark{background-color:rgba(20,255,20,.5);animation:blink 1.06s steps(1) infinite}.vft-md-vue-playground .cm-animate-fat-cursor{width:auto;border:0;animation:blink 1.06s steps(1) infinite;background-color:#7e7}@keyframes blink{50%{background-color:transparent}}.vft-md-vue-playground .cm-tab{display:inline-block;text-decoration:inherit}.vft-md-vue-playground .CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:-20px;overflow:hidden}.vft-md-vue-playground .CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.vft-md-vue-playground .cm-s-default.CodeMirror{background-color:transparent}.vft-md-vue-playground .cm-s-default .cm-header{color:#00f}.vft-md-vue-playground .cm-s-default .cm-quote{color:#090}.vft-md-vue-playground .cm-negative{color:#d44}.vft-md-vue-playground .cm-positive{color:#292}.vft-md-vue-playground .cm-header,.vft-md-vue-playground .cm-strong{font-weight:700}.vft-md-vue-playground .cm-em{font-style:italic}.vft-md-vue-playground .cm-link{text-decoration:underline}.vft-md-vue-playground .cm-strikethrough{text-decoration:line-through}.vft-md-vue-playground .cm-s-default .cm-atom,.vft-md-vue-playground .cm-s-default .cm-def,.vft-md-vue-playground .cm-s-default .cm-punctuation,.vft-md-vue-playground .cm-s-default .cm-variable-2,.vft-md-vue-playground .cm-s-default .cm-variable-3{color:var(--base)}.vft-md-vue-playground .cm-s-default .cm-property{color:var(--property)}.vft-md-vue-playground .cm-s-default .cm-comment,.vft-md-vue-playground .cm-s-default .cm-hr{color:var(--comment)}.vft-md-vue-playground .cm-s-default .cm-attribute{color:var(--attribute)}.vft-md-vue-playground .cm-s-default .cm-keyword{color:var(--keyword)}.vft-md-vue-playground .cm-s-default .cm-variable{color:var(--variable)}.vft-md-vue-playground .cm-s-default .cm-tag{color:var(--tags)}.vft-md-vue-playground .cm-s-default .cm-bracket{color:var(--brackets)}.vft-md-vue-playground .cm-s-default .cm-number{color:var(--number)}.vft-md-vue-playground .cm-s-default .cm-string,.vft-md-vue-playground .cm-s-default .cm-string-2{color:var(--string)}.vft-md-vue-playground .cm-s-default .cm-type{color:#085}.vft-md-vue-playground .cm-s-default .cm-meta{color:#555}.vft-md-vue-playground .cm-s-default .cm-qualifier{color:var(--qualifier)}.vft-md-vue-playground .cm-s-default .cm-builtin{color:#7539ff}.vft-md-vue-playground .cm-s-default .cm-link{color:var(--flash)}.vft-md-vue-playground .cm-s-default .cm-error{color:#ff008c}.vft-md-vue-playground .cm-invalidchar{color:#ff008c}.vft-md-vue-playground .CodeMirror-composing{border-bottom:2px solid}.vft-md-vue-playground div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}.vft-md-vue-playground div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}.vft-md-vue-playground .CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.vft-md-vue-playground .CodeMirror-activeline-background{background:#e8f2ff}.vft-md-vue-playground .CodeMirror{position:relative;overflow:hidden;background:#fff}.vft-md-vue-playground .CodeMirror-scroll{overflow:scroll!important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;height:100%;outline:0;position:relative}.vft-md-vue-playground .CodeMirror-sizer{position:relative;border-right:30px solid transparent}.vft-md-vue-playground .CodeMirror-gutter-filler,.vft-md-vue-playground .CodeMirror-hscrollbar,.vft-md-vue-playground .CodeMirror-scrollbar-filler,.vft-md-vue-playground .CodeMirror-vscrollbar{position:absolute;z-index:6;display:none}.vft-md-vue-playground .CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.vft-md-vue-playground .CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.vft-md-vue-playground .CodeMirror-scrollbar-filler{right:0;bottom:0}.vft-md-vue-playground .CodeMirror-gutter-filler{left:0;bottom:0}.vft-md-vue-playground .CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.vft-md-vue-playground .CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-30px}.vft-md-vue-playground .CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:0 0!important;border:none!important}.vft-md-vue-playground .CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.vft-md-vue-playground .CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.vft-md-vue-playground .CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.vft-md-vue-playground .CodeMirror-gutter-wrapper ::selection{background-color:transparent}.vft-md-vue-playground .CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.vft-md-vue-playground .CodeMirror-lines{cursor:text;min-height:1px}.vft-md-vue-playground .CodeMirror pre{border-radius:0;border-width:0;background:0 0;margin:0;white-space:pre;word-wrap:normal;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;font-variant-ligatures:contextual}.vft-md-vue-playground .CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.vft-md-vue-playground .CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.vft-md-vue-playground .CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}.vft-md-vue-playground .CodeMirror-rtl pre{direction:rtl}.vft-md-vue-playground .CodeMirror-code{outline:0}.vft-md-vue-playground .CodeMirror-gutter,.vft-md-vue-playground .CodeMirror-gutters,.vft-md-vue-playground .CodeMirror-linenumber,.vft-md-vue-playground .CodeMirror-scroll,.vft-md-vue-playground .CodeMirror-sizer{box-sizing:content-box}.vft-md-vue-playground .CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.vft-md-vue-playground .CodeMirror-cursor{position:absolute;pointer-events:none}.vft-md-vue-playground .CodeMirror-measure pre{position:static}.vft-md-vue-playground div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}.vft-md-vue-playground div.CodeMirror-dragcursors{visibility:visible}.vft-md-vue-playground .CodeMirror-focused div.CodeMirror-cursors{visibility:visible}.vft-md-vue-playground .CodeMirror-selected{background:var(--selected-bg-non-focus)}.vft-md-vue-playground .CodeMirror-focused .CodeMirror-selected{background:var(--selected-bg)}.vft-md-vue-playground .CodeMirror-crosshair{cursor:crosshair}.vft-md-vue-playground .CodeMirror-line::-moz-selection,.vft-md-vue-playground .CodeMirror-line>span::-moz-selection,.vft-md-vue-playground .CodeMirror-line>span>span::-moz-selection{background:var(--selected-bg)}.vft-md-vue-playground .CodeMirror-line::selection,.vft-md-vue-playground .CodeMirror-line>span::selection,.vft-md-vue-playground .CodeMirror-line>span>span::selection{background:var(--selected-bg)}.vft-md-vue-playground .CodeMirror-line::-moz-selection,.vft-md-vue-playground .CodeMirror-line>span::-moz-selection,.vft-md-vue-playground .CodeMirror-line>span>span::-moz-selection{background:var(--selected-bg)}.vft-md-vue-playground .cm-searching{background-color:#ffa;background-color:rgba(255,255,0,.4)}.vft-md-vue-playground .cm-force-border{padding-right:.1px}@media print{.vft-md-vue-playground .CodeMirror div.CodeMirror-cursors{visibility:hidden}}.vft-md-vue-playground .cm-tab-wrap-hack:after{content:""}.vft-md-vue-playground span.CodeMirror-selectedtext{background:0 0}.vft-md-vue-playground .editor{position:relative;height:100%;width:100%;overflow:hidden}.vft-md-vue-playground .CodeMirror{line-height:1.5;height:100%}.vft-md-vue-playground .msg[data-v-92411507]{position:absolute;bottom:0;left:8px;right:8px;z-index:10;border:2px solid transparent;border-radius:6px;white-space:pre-wrap;margin-bottom:8px;max-height:calc(100% - 300px);min-height:40px;display:flex;align-items:stretch}.vft-md-vue-playground pre[data-v-92411507]{margin:0;padding:12px 20px;overflow:auto}.vft-md-vue-playground .dismiss[data-v-92411507]{position:absolute;top:2px;right:2px;width:18px;height:18px;line-height:18px;border-radius:9px;text-align:center;display:block;font-size:9px;padding:0;background-color:red;color:#fff}@media (max-width:720px){.vft-md-vue-playground .dismiss[data-v-92411507]{top:-9px;right:-9px}.vft-md-vue-playground .msg[data-v-92411507]{bottom:50px}}.vft-md-vue-playground .msg.err[data-v-92411507]{color:red;border-color:red;background-color:#ffd7d7}.vft-md-vue-playground .msg.warn[data-v-92411507]{--color:rgb(105, 95, 27);color:var(--color);border-color:var(--color);background-color:#f7f0cd}.vft-md-vue-playground .msg.warn .dismiss[data-v-92411507]{background-color:var(--color)}.vft-md-vue-playground .fade-enter-active[data-v-92411507],.vft-md-vue-playground .fade-leave-active[data-v-92411507]{transition:all .15s ease-out}.vft-md-vue-playground .fade-enter-from[data-v-92411507],.vft-md-vue-playground .fade-leave-to[data-v-92411507]{opacity:0;transform:translate(0,10px)}.vft-md-vue-playground .editor-container[data-v-0384e940]{height:calc(100% - var(--header-height));overflow:hidden;position:relative}.vft-md-vue-playground .iframe-container[data-v-21e1de24],.vft-md-vue-playground .iframe-container[data-v-21e1de24] iframe{width:100%;height:100%;border:none;background-color:#fff}.vft-md-vue-playground .output-container[data-v-5d2df9cb]{height:calc(100% - var(--header-height));overflow:hidden;position:relative}.vft-md-vue-playground .tab-buttons[data-v-5d2df9cb]{box-sizing:border-box;border-bottom:1px solid var(--border);background-color:var(--bg);height:var(--header-height);overflow:hidden}.vft-md-vue-playground .tab-buttons button[data-v-5d2df9cb]{padding:0;box-sizing:border-box}.vft-md-vue-playground .tab-buttons span[data-v-5d2df9cb]{font-size:13px;text-transform:uppercase;color:var(--text-light);display:inline-block;padding:8px 16px 6px;line-height:20px}.vft-md-vue-playground button.active[data-v-5d2df9cb]{color:var(--color-branding-dark);border-bottom:3px solid var(--color-branding-dark)}.vft-md-vue-playground .vue-repl{--bg:#fff;--bg-soft:#f8f8f8;--border:#ddd;--text-light:#888;--font-code:Menlo,Monaco,Consolas,"Courier New",monospace;--color-branding:#42b883;--color-branding-dark:#416f9c;--header-height:38px;font-size:13px;margin:0;overflow:hidden;background-color:var(--bg-soft)}.vft-md-vue-playground .dark .vue-repl{--bg:#1a1a1a;--bg-soft:#242424;--border:#383838;--text-light:#aaa;--color-branding:#42d392;--color-branding-dark:#89ddff}.vft-md-vue-playground button{border:none;outline:0;cursor:pointer;margin:0;background-color:transparent}
@@ -1 +1 @@
1
- .fade-in-linear-enter-active,.fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.fade-in-linear-enter-from,.fade-in-linear-leave-to{opacity:0}.vft-fade-in-linear-enter-active,.vft-fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.vft-fade-in-linear-enter-from,.vft-fade-in-linear-leave-to{opacity:0}.vft-fade-in-enter-active,.vft-fade-in-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-fade-in-enter-from,.vft-fade-in-leave-active{opacity:0}.vft-zoom-in-center-enter-active,.vft-zoom-in-center-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-zoom-in-center-enter-from,.vft-zoom-in-center-leave-active{opacity:0;transform:scaleX(0)}.vft-zoom-in-top-enter-active,.vft-zoom-in-top-leave-active{opacity:1;transform:scaleY(1);transition:var(--vft-transition-md-fade);transform-origin:center top}.vft-zoom-in-top-enter-active[data-popper-placement^=top],.vft-zoom-in-top-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-enter-from,.vft-zoom-in-top-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-bottom-enter-active,.vft-zoom-in-bottom-leave-active{opacity:1;transform:scaleY(1);transition:var(--vft-transition-md-fade);transform-origin:center bottom}.vft-zoom-in-bottom-enter-from,.vft-zoom-in-bottom-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-left-enter-active,.vft-zoom-in-left-leave-active{opacity:1;transform:scale(1,1);transition:var(--vft-transition-md-fade);transform-origin:top left}.vft-zoom-in-left-enter-from,.vft-zoom-in-left-leave-active{opacity:0;transform:scale(.45,.45)}.collapse-transition{transition:var(--vft-transition-duration) height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.vft-collapse-transition-enter-active,.vft-collapse-transition-leave-active{transition:var(--vft-transition-duration) max-height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.horizontal-collapse-transition{transition:var(--vft-transition-duration) width ease-in-out,var(--vft-transition-duration) padding-left ease-in-out,var(--vft-transition-duration) padding-right ease-in-out}.vft-list-enter-active,.vft-list-leave-active{transition:all 1s}.vft-list-enter-from,.vft-list-leave-to{opacity:0;transform:translateY(-30px)}.vft-list-leave-active{position:absolute!important}.vft-opacity-transition{transition:opacity var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}@keyframes vft-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}:root{--vft-menu-bg-color:var(--vft-fill-color-blank);--vft-menu-sub-menu-bg-color:var(--vft-fill-color-blank);--vft-menu-active-color:var(--vft-primary-color);--vft-menu-text-color:var(--vft-text-primary-color);--vft-menu-hover-text-color:var(--vft-primary-color);--vft-menu-hover-bg-color:var(--vft-primary-color-light-9);--vft-menu-focus-text-color:var(--vft-primary-color);--vft-menu-focus-bg-color:var(--vft-primary-color-light-9);--vft-menu-item-height:56px;--vft-menu-sub-item-height:calc(var(--vft-menu-item-height) - 6px);--vft-menu-horizontal-sub-item-height:36px;--vft-menu-item-font-size:var(--vft-font-size-base);--vft-menu-item-hover-fill:var(--vft-primary-color-light-9);--vft-menu-border-bottom:var(--vft-border);--vft-menu-base-level-padding:20px;--vft-menu-level-padding:20px;--vft-menu-icon-mr:8px;--vft-menu-border:var(--vft-border);--vft-menu-border-right:var(--vft-border);--vft-menu-item-min-width:200px;--vft-menu-popup-border-radius:var(--vft-border-radius)}.vft-menu{border:var(--vft-menu-border);border-right:var(--vft-menu-border-right);list-style:none;position:relative;margin:0;padding-left:0;background-color:var(--vft-menu-bg-color);box-sizing:border-box}.vft-menu--vertical:not(.vft-menu--collapse):not(.vft-menu--popup-container) .vft-menu-item,.vft-menu--vertical:not(.vft-menu--collapse):not(.vft-menu--popup-container) .vft-menu-item-group__title,.vft-menu--vertical:not(.vft-menu--collapse):not(.vft-menu--popup-container) .vft-sub-menu__title{padding-left:calc(var(--vft-menu-base-level-padding) + var(--vft-menu-level) * var(--vft-menu-level-padding))}.vft-menu--vertical .vft-menu-item{white-space:initial}.vft-menu--vertical .vft-sub-menu__text{white-space:break-spaces}.vft-menu--horizontal{display:flex;flex-wrap:nowrap;border:none;border-bottom:var(--vft-menu-border-bottom)}.vft-menu--horizontal>.vft-menu-item{display:inline-flex;justify-content:center;align-items:center;height:100%;margin:0;border-bottom:2px solid transparent;color:var(--vft-menu-text-color)}.vft-menu--horizontal>.vft-menu-item a,.vft-menu--horizontal>.vft-menu-item a:hover{color:inherit}.vft-menu--horizontal>.vft-menu-item:not(.is-disabled):focus,.vft-menu--horizontal>.vft-menu-item:not(.is-disabled):hover{background-color:#fff}.vft-menu--horizontal>.vft-sub-menu:focus,.vft-menu--horizontal>.vft-sub-menu:hover{outline:0}.vft-menu--horizontal>.vft-sub-menu:hover .vft-sub-menu__title{color:var(--vft-menu-hover-text-color)}.vft-menu--horizontal>.vft-sub-menu.is-active .vft-sub-menu__title{border-bottom:2px solid var(--vft-menu-active-color);color:var(--vft-menu-active-color)}.vft-menu--horizontal>.vft-sub-menu.is-active .vft-sub-menu__title:hover{color:var(--vft-menu-hover-text-color)}.vft-menu--horizontal>.vft-sub-menu .vft-sub-menu__title{height:100%;line-height:100%;border-bottom:2px solid transparent;color:var(--vft-menu-text-color)}.vft-menu--horizontal>.vft-sub-menu .vft-sub-menu__title:hover{background-color:var(--vft-menu-hover-bg-color)}.vft-menu--horizontal .vft-menu .vft-menu-item,.vft-menu--horizontal .vft-menu .vft-sub-menu__title{background-color:var(--vft-menu-bg-color);display:flex;align-items:center;height:var(--vft-menu-horizontal-sub-item-height);padding:0 10px;color:var(--vft-menu-text-color)}.vft-menu--horizontal .vft-menu .vft-sub-menu__title{padding-right:40px}.vft-menu--horizontal .vft-menu .vft-menu-item.is-active,.vft-menu--horizontal .vft-menu .vft-sub-menu.is-active>.vft-sub-menu__title{color:var(--vft-menu-active-color)}.vft-menu--horizontal .vft-menu-item:not(.is-disabled):hover{outline:0;color:var(--vft-menu-hover-text-color);background-color:var(--vft-menu-hover-bg-color)}.vft-menu--horizontal .vft-menu-item:not(.is-disabled):focus{outline:0;color:var(--vft-menu-focus-text-color);background-color:var(--vft-menu-focus-bg-color)}.vft-menu--horizontal>.vft-menu-item.is-active{border-bottom:2px solid var(--vft-menu-active-color);color:var(--vft-menu-active-color)}.vft-menu--collapse{width:calc(var(--vft-menu-icon-width) + var(--vft-menu-base-level-padding) * 2)}.vft-menu--collapse>.vft-menu-item [class^=vft-icon],.vft-menu--collapse>.vft-menu-item-group>ul>.vft-sub-menu>.vft-sub-menu__title [class^=vft-icon],.vft-menu--collapse>.vft-sub-menu>.vft-sub-menu__title [class^=vft-icon]{margin:0;vertical-align:middle;width:var(--vft-menu-icon-width);text-align:center}.vft-menu--collapse>.vft-menu-item .vft-sub-menu__icon-arrow,.vft-menu--collapse>.vft-menu-item-group>ul>.vft-sub-menu>.vft-sub-menu__title .vft-sub-menu__icon-arrow,.vft-menu--collapse>.vft-sub-menu>.vft-sub-menu__title .vft-sub-menu__icon-arrow{display:none}.vft-menu--collapse>.vft-menu-item-group>ul>.vft-sub-menu>.vft-sub-menu__title>.vft-sub-menu__text,.vft-menu--collapse>.vft-menu-item>.vft-sub-menu__text,.vft-menu--collapse>.vft-sub-menu>.vft-sub-menu__title>.vft-sub-menu__text{height:0;width:0;overflow:hidden;visibility:hidden;display:inline-block}.vft-menu--collapse>.vft-menu-item.is-active i{color:inherit}.vft-menu--collapse .vft-menu .vft-sub-menu{min-width:200px}.vft-menu--popup{z-index:100;min-width:200px;border:none;padding:5px 0;box-shadow:var(--vft-box-shadow-light);border-radius:var(--vft-menu-popup-border-radius)}.vft-menu .vft-icon{flex-shrink:0}.vft-menu-item{display:flex;align-items:center;height:var(--vft-menu-item-height);line-height:var(--vft-menu-item-height);font-size:var(--vft-menu-item-font-size);color:var(--vft-menu-text-color);padding:0 var(--vft-menu-base-level-padding);list-style:none;cursor:pointer;position:relative;transition:border-color var(--vft-transition-duration),background-color var(--vft-transition-duration),color var(--vft-transition-duration);box-sizing:border-box;white-space:nowrap}.vft-menu-item *{vertical-align:bottom}.vft-menu-item i{flex-shrink:0;margin-right:var(--vft-menu-icon-mr)}.vft-menu-item:focus,.vft-menu-item:hover{outline:0}.vft-menu-item:hover{background-color:var(--vft-menu-hover-bg-color)}.vft-menu-item.is-disabled{opacity:.5;cursor:not-allowed;background:0 0!important}.vft-menu-item .vft-sub-menu__text{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1;word-break:break-all}.vft-menu-item [class^=vft-icon]{margin-right:5px;width:var(--vft-menu-icon-width);text-align:center;font-size:18px;vertical-align:middle}.vft-menu-item.is-active{color:var(--vft-menu-active-color)}.vft-menu-item.is-active i{color:inherit}.vft-menu-item .vft-menu-tooltip__trigger{position:absolute;left:0;top:0;height:100%;width:100%;display:inline-flex;align-items:center;box-sizing:border-box;padding:0 var(--vft-menu-base-level-padding)}.vft-sub-menu{list-style:none;margin:0;padding-left:0;background:var(--vft-menu-sub-menu-bg-color)}.vft-sub-menu__title{display:flex;align-items:center;height:var(--vft-menu-item-height);line-height:var(--vft-menu-item-height);font-size:var(--vft-menu-item-font-size);color:var(--vft-menu-text-color);padding:0 var(--vft-menu-base-level-padding);list-style:none;cursor:pointer;position:relative;transition:border-color var(--vft-transition-duration),background-color var(--vft-transition-duration),color var(--vft-transition-duration);box-sizing:border-box;white-space:nowrap}.vft-sub-menu__title *{vertical-align:bottom}.vft-sub-menu__title i{flex-shrink:0;margin-right:var(--vft-menu-icon-mr)}.vft-sub-menu__title:focus,.vft-sub-menu__title:hover{outline:0}.vft-sub-menu__title:hover{background-color:var(--vft-menu-hover-bg-color)}.vft-sub-menu__title.is-disabled{opacity:.5;cursor:not-allowed;background:0 0!important}.vft-sub-menu__title .vft-sub-menu__text{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1;word-break:break-all}.vft-sub-menu__title:hover{background-color:var(--vft-menu-hover-bg-color)}.vft-sub-menu__text{padding-right:30px}.vft-sub-menu .vft-menu{border:none}.vft-sub-menu .vft-menu-item{height:var(--vft-menu-sub-item-height);line-height:var(--vft-menu-sub-item-height);min-width:var(--vft-menu-item-min-width)}.vft-sub-menu__hide-arrow .vft-sub-menu__icon-arrow{display:none!important}.vft-sub-menu.is-active .vft-sub-menu__title{border-bottom-color:var(--vft-menu-active-color)}.vft-sub-menu.is-disabled .vft-menu-item,.vft-sub-menu.is-disabled .vft-sub-menu__title{opacity:.6;cursor:not-allowed;background:0 0!important}.vft-sub-menu .vft-icon{vertical-align:middle;margin-right:var(--vft-menu-icon-mr);text-align:center}.vft-sub-menu .vft-icon.vft-sub-menu__icon-more{margin-right:0!important}.vft-sub-menu .vft-sub-menu__icon-arrow{position:absolute;right:var(--vft-menu-base-level-padding);transition:transform var(--vft-transition-duration);color:inherit}.vft-menu-item-group>ul{padding:0}.vft-menu-item-group__title{padding:7px 0 7px var(--vft-menu-base-level-padding);line-height:normal;font-size:12px;color:var(--vft-text-color-secondary)}.horizontal-collapse-transition .vft-sub-menu__title .vft-sub-menu__icon-arrow{transition:var(--vft-transition-duration-fast);opacity:0}
1
+ .fade-in-linear-enter-active,.fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.fade-in-linear-enter-from,.fade-in-linear-leave-to{opacity:0}.vft-fade-in-linear-enter-active,.vft-fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.vft-fade-in-linear-enter-from,.vft-fade-in-linear-leave-to{opacity:0}.vft-fade-in-enter-active,.vft-fade-in-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-fade-in-enter-from,.vft-fade-in-leave-active{opacity:0}.vft-zoom-in-center-enter-active,.vft-zoom-in-center-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-zoom-in-center-enter-from,.vft-zoom-in-center-leave-active{opacity:0;transform:scaleX(0)}.vft-zoom-in-top-enter-active,.vft-zoom-in-top-leave-active{opacity:1;transform:scaleY(1);transform-origin:center top;transition:var(--vft-transition-md-fade)}.vft-zoom-in-top-enter-active[data-popper-placement^=top],.vft-zoom-in-top-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-enter-from,.vft-zoom-in-top-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-top-fast-enter-active{opacity:1;transform:scaleY(1);transform-origin:center top;transition:var(--vft-transition-md-fade)}.vft-zoom-in-top-fast-enter-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-fast-leave-active{opacity:1;transform:scaleY(1);transform-origin:center top}.vft-zoom-in-top-fast-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-fast-enter-from,.vft-zoom-in-top-fast-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-bottom-enter-active,.vft-zoom-in-bottom-leave-active{opacity:1;transform:scaleY(1);transition:var(--vft-transition-md-fade);transform-origin:center bottom}.vft-zoom-in-bottom-enter-from,.vft-zoom-in-bottom-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-left-enter-active,.vft-zoom-in-left-leave-active{opacity:1;transform:scale(1,1);transition:var(--vft-transition-md-fade);transform-origin:top left}.vft-zoom-in-left-enter-from,.vft-zoom-in-left-leave-active{opacity:0;transform:scale(.45,.45)}.collapse-transition{transition:var(--vft-transition-duration) height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.vft-collapse-transition-enter-active,.vft-collapse-transition-leave-active{transition:var(--vft-transition-duration) max-height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.horizontal-collapse-transition{transition:var(--vft-transition-duration) width ease-in-out,var(--vft-transition-duration) padding-left ease-in-out,var(--vft-transition-duration) padding-right ease-in-out}.vft-list-enter-active,.vft-list-leave-active{transition:all 1s}.vft-list-enter-from,.vft-list-leave-to{opacity:0;transform:translateY(-30px)}.vft-list-leave-active{position:absolute!important}.vft-opacity-transition{transition:opacity var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}@keyframes vft-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}:root{--vft-menu-bg-color:var(--vft-fill-color-blank);--vft-menu-sub-menu-bg-color:var(--vft-fill-color-blank);--vft-menu-active-color:var(--vft-primary-color);--vft-menu-text-color:var(--vft-text-primary-color);--vft-menu-hover-text-color:var(--vft-primary-color);--vft-menu-hover-bg-color:var(--vft-primary-color-light-9);--vft-menu-focus-text-color:var(--vft-primary-color);--vft-menu-focus-bg-color:var(--vft-primary-color-light-9);--vft-menu-item-height:56px;--vft-menu-sub-item-height:calc(var(--vft-menu-item-height) - 6px);--vft-menu-horizontal-sub-item-height:36px;--vft-menu-item-font-size:var(--vft-font-size-base);--vft-menu-item-hover-fill:var(--vft-primary-color-light-9);--vft-menu-border-bottom:var(--vft-border);--vft-menu-base-level-padding:20px;--vft-menu-level-padding:20px;--vft-menu-icon-mr:6px;--vft-menu-icon-width:14px;--vft-menu-border:var(--vft-border);--vft-menu-border-right:var(--vft-border);--vft-menu-item-min-width:200px;--vft-menu-popup-border-radius:var(--vft-border-radius)}.vft-menu{border:var(--vft-menu-border);border-right:var(--vft-menu-border-right);list-style:none;position:relative;margin:0;padding-left:0;background-color:var(--vft-menu-bg-color);box-sizing:border-box;scroll-behavior:smooth}.vft-menu--vertical:not(.vft-menu--collapse):not(.vft-menu--popup-container) .vft-menu-item,.vft-menu--vertical:not(.vft-menu--collapse):not(.vft-menu--popup-container) .vft-menu-item-group__title,.vft-menu--vertical:not(.vft-menu--collapse):not(.vft-menu--popup-container) .vft-sub-menu__title{padding-left:calc(var(--vft-menu-base-level-padding) + var(--vft-menu-level) * var(--vft-menu-level-padding))}.vft-menu--vertical:not(.vft-menu--collapse) .vft-sub-menu__text{white-space:break-spaces}.vft-menu--vertical>.vft-sub-menu .vft-menu__title{padding-right:calc(var(--vft-menu-base-level-padding) + var(--vft-menu-icon-width))}.vft-menu--horizontal{display:flex;flex-wrap:nowrap;border:none;border-bottom:var(--vft-menu-border-bottom)}.vft-menu--horizontal>.vft-menu-item{display:inline-flex;justify-content:center;align-items:center;height:100%;margin:0;border-bottom:2px solid transparent;color:var(--vft-menu-text-color)}.vft-menu--horizontal>.vft-menu-item a,.vft-menu--horizontal>.vft-menu-item a:hover{color:inherit}.vft-menu--horizontal>.vft-menu-item:not(.is-disabled):focus,.vft-menu--horizontal>.vft-menu-item:not(.is-disabled):hover{background-color:#fff}.vft-menu--horizontal>.vft-sub-menu:focus,.vft-menu--horizontal>.vft-sub-menu:hover{outline:0}.vft-menu--horizontal>.vft-sub-menu:hover .vft-sub-menu__title{color:var(--vft-menu-hover-text-color)}.vft-menu--horizontal>.vft-sub-menu.is-active .vft-sub-menu__title{border-bottom:2px solid var(--vft-menu-active-color);color:var(--vft-menu-active-color)}.vft-menu--horizontal>.vft-sub-menu.is-active .vft-sub-menu__title:hover{color:var(--vft-menu-hover-text-color)}.vft-menu--horizontal>.vft-sub-menu .vft-sub-menu__title{height:100%;line-height:100%;border-bottom:2px solid transparent;color:var(--vft-menu-text-color)}.vft-menu--horizontal>.vft-sub-menu .vft-sub-menu__title:hover{background-color:var(--vft-menu-hover-bg-color)}.vft-menu--horizontal .vft-menu .vft-menu-item,.vft-menu--horizontal .vft-menu .vft-sub-menu__title{background-color:var(--vft-menu-bg-color);display:flex;align-items:center;height:var(--vft-menu-horizontal-sub-item-height);padding:0 10px;color:var(--vft-menu-text-color)}.vft-menu--horizontal .vft-menu .vft-sub-menu__title{padding-right:40px}.vft-menu--horizontal .vft-menu .vft-menu-item.is-active,.vft-menu--horizontal .vft-menu .vft-sub-menu.is-active>.vft-sub-menu__title{color:var(--vft-menu-active-color)}.vft-menu--horizontal .vft-menu-item:not(.is-disabled):hover{outline:0;color:var(--vft-menu-hover-text-color);background-color:var(--vft-menu-hover-bg-color)}.vft-menu--horizontal .vft-menu-item:not(.is-disabled):focus{outline:0;color:var(--vft-menu-focus-text-color);background-color:var(--vft-menu-focus-bg-color)}.vft-menu--horizontal>.vft-menu-item.is-active{border-bottom:2px solid var(--vft-menu-active-color);color:var(--vft-menu-active-color)}.vft-menu--collapse{width:calc(var(--vft-menu-icon-width) + var(--vft-menu-base-level-padding) * 2)}.vft-menu--collapse>.vft-menu-item [class^=vft-icon],.vft-menu--collapse>.vft-menu-item-group>ul>.vft-sub-menu>.vft-sub-menu__title [class^=vft-icon],.vft-menu--collapse>.vft-sub-menu>.vft-sub-menu__title [class^=vft-icon]{margin:0;vertical-align:middle;width:var(--vft-menu-icon-width);text-align:center}.vft-menu--collapse>.vft-menu-item .vft-sub-menu__icon-arrow,.vft-menu--collapse>.vft-menu-item-group>ul>.vft-sub-menu>.vft-sub-menu__title .vft-sub-menu__icon-arrow,.vft-menu--collapse>.vft-sub-menu>.vft-sub-menu__title .vft-sub-menu__icon-arrow{display:none}.vft-menu--collapse>.vft-menu-item-group>ul>.vft-sub-menu>.vft-sub-menu__title>.vft-sub-menu__text span,.vft-menu--collapse>.vft-menu-item>.vft-sub-menu__text span,.vft-menu--collapse>.vft-sub-menu>.vft-sub-menu__title>.vft-sub-menu__text span{height:0;width:0;overflow:hidden;visibility:hidden;display:inline-block}.vft-menu--collapse>.vft-menu-item.is-active i{color:inherit}.vft-menu--collapse .vft-menu .vft-sub-menu{min-width:200px}.vft-menu--collapse .vft-sub-menu__text{padding-right:0}.vft-menu--popup{z-index:100;min-width:200px;border:none;padding:5px 0;box-shadow:var(--vft-box-shadow-light);border-radius:var(--vft-menu-popup-border-radius)}.vft-menu .vft-icon{flex-shrink:0}.vft-menu-item{display:flex;align-items:center;height:var(--vft-menu-item-height);line-height:var(--vft-menu-item-height);font-size:var(--vft-menu-item-font-size);color:var(--vft-menu-text-color);padding:0 var(--vft-menu-base-level-padding);list-style:none;cursor:pointer;position:relative;transition:border-color var(--vft-transition-duration),background-color var(--vft-transition-duration),color var(--vft-transition-duration);box-sizing:border-box;white-space:nowrap}.vft-menu-item *{vertical-align:bottom}.vft-menu-item i{flex-shrink:0;margin-right:var(--vft-menu-icon-mr)}.vft-menu-item:focus,.vft-menu-item:hover{outline:0}.vft-menu-item:hover{background-color:var(--vft-menu-hover-bg-color)}.vft-menu-item.is-disabled{opacity:.5;cursor:not-allowed;background:0 0!important}.vft-menu-item .vft-sub-menu__text{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1;word-break:break-all}.vft-menu-item [class^=vft-icon]{margin-right:var(--vft-menu-icon-mr);width:var(--vft-menu-icon-width);text-align:center;vertical-align:middle}.vft-menu-item.is-active{color:var(--vft-menu-active-color)}.vft-menu-item.is-active i{color:inherit}.vft-menu-item .vft-menu-tooltip__trigger{position:absolute;left:0;top:0;height:100%;width:100%;display:inline-flex;align-items:center;box-sizing:border-box;padding:0 var(--vft-menu-base-level-padding)}.vft-menu-item span{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1;word-break:break-all;white-space:break-spaces}.vft-sub-menu{list-style:none;margin:0;padding-left:0;background:var(--vft-menu-sub-menu-bg-color)}.vft-sub-menu__title{display:flex;align-items:center;height:var(--vft-menu-item-height);line-height:var(--vft-menu-item-height);font-size:var(--vft-menu-item-font-size);color:var(--vft-menu-text-color);padding:0 var(--vft-menu-base-level-padding);list-style:none;cursor:pointer;position:relative;transition:border-color var(--vft-transition-duration),background-color var(--vft-transition-duration),color var(--vft-transition-duration);box-sizing:border-box;white-space:nowrap}.vft-sub-menu__title *{vertical-align:bottom}.vft-sub-menu__title i{flex-shrink:0;margin-right:var(--vft-menu-icon-mr)}.vft-sub-menu__title:focus,.vft-sub-menu__title:hover{outline:0}.vft-sub-menu__title:hover{background-color:var(--vft-menu-hover-bg-color)}.vft-sub-menu__title.is-disabled{opacity:.5;cursor:not-allowed;background:0 0!important}.vft-sub-menu__title .vft-sub-menu__text{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1;word-break:break-all}.vft-sub-menu__title:hover{background-color:var(--vft-menu-hover-bg-color)}.vft-sub-menu__text{padding-right:var(--vft-menu-base-level-padding)}.vft-sub-menu .vft-menu{border:none}.vft-sub-menu .vft-menu-item{height:var(--vft-menu-sub-item-height);line-height:var(--vft-menu-sub-item-height);min-width:var(--vft-menu-item-min-width)}.vft-sub-menu__hide-arrow .vft-sub-menu__icon-arrow{display:none!important}.vft-sub-menu.is-active .vft-sub-menu__title{border-bottom-color:var(--vft-menu-active-color)}.vft-sub-menu.is-active.is-opened>.vft-sub-menu__title{color:var(--vft-menu-active-color)}.vft-sub-menu.is-disabled .vft-menu-item,.vft-sub-menu.is-disabled .vft-sub-menu__title{opacity:.6;cursor:not-allowed;background:0 0!important}.vft-sub-menu .vft-icon{vertical-align:middle;margin-right:var(--vft-menu-icon-mr);text-align:center}.vft-sub-menu .vft-icon.vft-sub-menu__icon-more{margin-right:0!important}.vft-sub-menu .vft-sub-menu__icon-arrow{position:absolute;right:var(--vft-menu-base-level-padding);transition:transform var(--vft-transition-duration);color:inherit}.vft-menu-item-group>ul{padding:0}.vft-menu-item-group__title{padding:0 var(--vft-menu-base-level-padding);line-height:var(--vft-menu-sub-item-height);height:var(--vft-menu-sub-item-height);font-size:12px;color:var(--vft-text-secondary-color);overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1}.horizontal-collapse-transition .vft-sub-menu__title .vft-sub-menu__icon-arrow{transition:var(--vft-transition-duration-fast);opacity:0}
@@ -0,0 +1 @@
1
+ :root{--vft-popup-modal-bg-color:var(--vft-color-black);--vft-popup-modal-opacity:0.5}.v-modal-enter{animation:v-modal-in var(--vft-transition-duration-fast) ease}.v-modal-leave{animation:v-modal-out var(--vft-transition-duration-fast) ease forwards}@keyframes v-modal-in{0%{opacity:0}}@keyframes v-modal-out{100%{opacity:0}}.v-modal{position:fixed;left:0;top:0;width:100%;height:100%;opacity:var(--vft-popup-modal-opacity);background:var(--vft-popup-modal-bg-color)}.vft-popup-parent--hidden{overflow:hidden}.vft-message-box{--vft-messagebox-title-color:var(--vft-text-primary-color);--vft-messagebox-width:420px;--vft-messagebox-border-radius:4px;--vft-messagebox-font-size:var(--vft-font-size-large);--vft-messagebox-content-font-size:var(--vft-font-size-base);--vft-messagebox-content-color:var(--vft-text-regular-color);--vft-messagebox-error-font-size:12px;--vft-messagebox-padding-primary:15px}.vft-message-box{display:inline-block;max-width:var(--vft-messagebox-width);width:100%;padding-bottom:10px;vertical-align:middle;background-color:var(--vft-bg-color);border-radius:var(--vft-messagebox-border-radius);border:1px solid var(--vft-border-color-lighter);font-size:var(--vft-messagebox-font-size);box-shadow:var(--vft-box-shadow-light);text-align:left;overflow:hidden;backface-visibility:hidden;box-sizing:border-box}.vft-message-box:focus{outline:0!important}.vft-overlay.is-message-box .vft-overlay-message-box{text-align:center;position:fixed;top:0;right:0;bottom:0;left:0;padding:16px;overflow:auto}.vft-overlay.is-message-box .vft-overlay-message-box::after{content:"";display:inline-block;height:100%;width:0;vertical-align:middle}.vft-message-box.is-draggable .vft-message-box__header{cursor:move;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-message-box__header{position:relative;padding:var(--vft-messagebox-padding-primary);padding-bottom:10px}.vft-message-box__title{padding-left:0;margin-bottom:0;font-size:var(--vft-messagebox-font-size);line-height:1;color:var(--vft-messagebox-title-color)}.vft-message-box__headerbtn{position:absolute;top:var(--vft-messagebox-padding-primary);right:var(--vft-messagebox-padding-primary);padding:0;border:none;outline:0;background:0 0;font-size:var(--vft-message-close-size,);cursor:pointer}.vft-message-box__headerbtn .vft-message-box__close{color:var(--vft-info-color);font-size:inherit}.vft-message-box__headerbtn:focus .vft-message-box__close,.vft-message-box__headerbtn:hover .vft-message-box__close{color:var(--vft-primary-color)}.vft-message-box__content{padding:10px var(--vft-messagebox-padding-primary);color:var(--vft-messagebox-content-color);font-size:var(--vft-messagebox-content-font-size)}.vft-message-box__container{position:relative}.vft-message-box__input{padding-top:15px}.vft-message-box__input div.invalid>input{border-color:var(--vft-error-color)}.vft-message-box__input div.invalid>input:focus{border-color:var(--vft-error-color)}.vft-message-box__status{position:absolute;top:50%;transform:translateY(-50%);font-size:24px!important}.vft-message-box__status::before{padding-left:1px}.vft-message-box__status.vft-icon{position:absolute}.vft-message-box__status+.vft-message-box__message{padding-left:36px;padding-right:12px;word-break:break-word}.vft-message-box__status.vft-message-box-icon--success{--vft-messagebox-color:var(--vft-color-success);color:var(--vft-messagebox-color)}.vft-message-box__status.vft-message-box-icon--info{--vft-messagebox-color:var(--vft-color-info);color:var(--vft-messagebox-color)}.vft-message-box__status.vft-message-box-icon--warning{--vft-messagebox-color:var(--vft-color-warning);color:var(--vft-messagebox-color)}.vft-message-box__status.vft-message-box-icon--error{--vft-messagebox-color:var(--vft-color-error);color:var(--vft-messagebox-color)}.vft-message-box__message{margin:0}.vft-message-box__message p{margin:0;line-height:24px}.vft-message-box__errormsg{color:var(--vft-error-color);font-size:var(--vft-messagebox-error-font-size);min-height:18px;margin-top:2px}.vft-message-box__btns{padding:5px 15px 0;display:flex;flex-wrap:wrap;justify-content:flex-end;align-items:center}.vft-message-box__btns button:nth-child(2){margin-left:10px}.vft-message-box__btns-reverse{flex-direction:row-reverse}.vft-message-box--center .vft-message-box__title{position:relative;display:flex;align-items:center;justify-content:center}.vft-message-box--center .vft-message-box__status{position:relative;top:auto;padding-right:5px;text-align:center;transform:translateY(-1px)}.vft-message-box--center .vft-message-box__message{margin-left:0}.vft-message-box--center .vft-message-box__btns{justify-content:center}.vft-message-box--center .vft-message-box__content{padding-left:calc(var(--vft-messagebox-padding-primary) + 12px);padding-right:calc(var(--vft-messagebox-padding-primary) + 12px);text-align:center}.fade-in-linear-enter-active .vft-overlay-message-box{animation:msgbox-fade-in var(--vft-transition-duration)}.fade-in-linear-leave-active .vft-overlay-message-box{animation:msgbox-fade-in var(--vft-transition-duration) reverse}@keyframes msgbox-fade-in{0%{transform:translate3d(0,-20px,0);opacity:0}100%{transform:translate3d(0,0,0);opacity:1}}@keyframes msgbox-fade-out{0%{transform:translate3d(0,0,0);opacity:1}100%{transform:translate3d(0,-20px,0);opacity:0}}
@@ -0,0 +1 @@
1
+ .vft-notification{--vft-notification-width:330px;--vft-notification-padding:14px 26px 14px 13px;--vft-notification-radius:8px;--vft-notification-shadow:var(--vft-box-shadow-light);--vft-notification-border-color:var(--vft-border-color-lighter);--vft-notification-icon-size:24px;--vft-notification-close-font-size:var(--vft-message-close-size, );--vft-notification-group-margin-left:13px;--vft-notification-group-margin-right:8px;--vft-notification-content-font-size:var(--vft-font-size-base);--vft-notification-content-color:var(--vft-text-regular-color);--vft-notification-title-font-size:16px;--vft-notification-title-color:var(--vft-text-primary-color);--vft-notification-close-color:var(--vft-text-secondary-color);--vft-notification-close-hover-color:var(--vft-text-regular-color)}.vft-notification{display:flex;width:var(--vft-notification-width);padding:var(--vft-notification-padding);border-radius:var(--vft-notification-radius);box-sizing:border-box;border:1px solid var(--vft-notification-border-color);position:fixed;background-color:var(--vft-bg-color-overlay);box-shadow:var(--vft-notification-shadow);transition:opacity var(--vft-transition-duration),transform var(--vft-transition-duration),left var(--vft-transition-duration),right var(--vft-transition-duration),top .4s,bottom var(--vft-transition-duration);overflow-wrap:anywhere;overflow:hidden;z-index:9999}.vft-notification.right{right:16px}.vft-notification.left{left:16px}.vft-notification__group{margin-left:var(--vft-notification-group-margin-left);margin-right:var(--vft-notification-group-margin-right)}.vft-notification__title{font-weight:700;font-size:var(--vft-notification-title-font-size);line-height:var(--vft-notification-icon-size);color:var(--vft-notification-title-color);margin:0}.vft-notification__content{font-size:var(--vft-notification-content-font-size);line-height:24px;margin:6px 0 0;color:var(--vft-notification-content-color);text-align:justify}.vft-notification__content p{margin:0}.vft-notification .vft-notification__icon{height:var(--vft-notification-icon-size);width:var(--vft-notification-icon-size);font-size:var(--vft-notification-icon-size)}.vft-notification .vft-notification__closeBtn{position:absolute;top:18px;right:15px;cursor:pointer;color:var(--vft-notification-close-color);font-size:var(--vft-notification-close-font-size)}.vft-notification .vft-notification__closeBtn:hover{color:var(--vft-notification-close-hover-color)}.vft-notification .vft-notification--success{--vft-notification-icon-color:var(--vft-color-success);color:var(--vft-notification-icon-color)}.vft-notification .vft-notification--info{--vft-notification-icon-color:var(--vft-color-info);color:var(--vft-notification-icon-color)}.vft-notification .vft-notification--warning{--vft-notification-icon-color:var(--vft-color-warning);color:var(--vft-notification-icon-color)}.vft-notification .vft-notification--error{--vft-notification-icon-color:var(--vft-color-error);color:var(--vft-notification-icon-color)}.vft-notification-fade-enter-from.right{right:0;transform:translateX(100%)}.vft-notification-fade-enter-from.left{left:0;transform:translateX(-100%)}.vft-notification-fade-leave-to{opacity:0}
@@ -0,0 +1 @@
1
+ .vft-select-dropdown__item{font-size:var(--vft-font-size-base);padding:0 32px 0 20px;position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--vft-text-regular-color);height:34px;line-height:34px;box-sizing:border-box;cursor:pointer}.vft-select-dropdown__item.is-disabled{color:var(--vft-text-placeholder-color);cursor:not-allowed}.vft-select-dropdown__item.hover,.vft-select-dropdown__item:hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown__item.selected{color:var(--vft-primary-color);font-weight:700}
@@ -1 +1 @@
1
- :root{--vft-pagination-font-size:14px;--vft-pagination-bg-color:var(--vft-fill-color-blank);--vft-pagination-text-color:var(--vft-text-primary-color);--vft-pagination-border-radius:2px;--vft-pagination-button-color:var(--vft-text-primary-color);--vft-pagination-button-width:32px;--vft-pagination-button-height:32px;--vft-pagination-button-disabled-color:var(--vft-text-placeholder-color);--vft-pagination-button-disabled-bg-color:var(--vft-fill-color-blank);--vft-pagination-button-bg-color:var(--vft-fill-color);--vft-pagination-hover-color:var(--vft-primary-color);--vft-pagination-font-size-small:12px;--vft-pagination-button-width-small:24px;--vft-pagination-button-height-small:24px;--vft-pagination-item-gap:16px}.vft-pagination{white-space:nowrap;color:var(--vft-pagination-text-color);font-size:var(--vft-pagination-font-size);font-weight:400;display:flex;align-items:center}.vft-pagination .vft-input__inner{text-align:center;-moz-appearance:textfield}.vft-pagination .vft-select .vft-input{width:128px}.vft-pagination button{display:flex;justify-content:center;align-items:center;font-size:var(--vft-pagination-font-size);min-width:var(--vft-pagination-button-width);height:var(--vft-pagination-button-height);line-height:var(--vft-pagination-button-height);color:var(--vft-pagination-button-color);background:var(--vft-pagination-bg-color);padding:0 4px;border:none;border-radius:var(--vft-pagination-border-radius);cursor:pointer;text-align:center;box-sizing:border-box}.vft-pagination button .vft-icon{color:inherit}.vft-pagination button *{pointer-events:none}.vft-pagination button:focus{outline:0}.vft-pagination button:hover{color:var(--vft-pagination-hover-color)}.vft-pagination button.is-active{color:var(--vft-pagination-hover-color);cursor:default;font-weight:700}.vft-pagination button.is-active.is-disabled{font-weight:700}.vft-pagination button.is-disabled,.vft-pagination button:disabled{color:var(--vft-pagination-button-disabled-color);background-color:var(--vft-pagination-button-disabled-bg-color);cursor:not-allowed}.vft-pagination button:focus-visible{outline:1px solid var(--vft-pagination-hover-color);outline-offset:-1px}.vft-pagination .btn-next .vft-icon,.vft-pagination .btn-prev .vft-icon{display:block;font-size:12px;font-weight:700;width:inherit}.vft-pagination>.is-first{margin-left:0!important}.vft-pagination>.is-last{margin-right:0!important}.vft-pagination .btn-prev{margin-left:var(--vft-pagination-item-gap)}.vft-pagination__sizes{margin-left:var(--vft-pagination-item-gap);font-weight:400;color:var(--vft-text-regular-color)}.vft-pagination__total{margin-left:var(--vft-pagination-item-gap);font-weight:400;color:var(--vft-text-regular-color)}.vft-pagination__total[disabled=true]{color:var(--vft-text-placeholder-color)}.vft-pagination__jump{display:flex;align-items:center;margin-left:var(--vft-pagination-item-gap);font-weight:400;color:var(--vft-text-regular-color)}.vft-pagination__jump[disabled=true]{color:var(--vft-text-placeholder-color)}.vft-pagination__goto{margin-right:8px}.vft-pagination__editor{text-align:center;box-sizing:border-box}.vft-pagination__editor.vft-input{width:56px}.vft-pagination__editor .vft-input__inner::-webkit-inner-spin-button,.vft-pagination__editor .vft-input__inner::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.vft-pagination__classifier{margin-left:8px}.vft-pagination__rightwrapper{flex:1;display:flex;align-items:center;justify-content:flex-end}.vft-pagination.is-background .btn-next,.vft-pagination.is-background .btn-prev,.vft-pagination.is-background .vft-pager li{margin:0 4px;background-color:var(--vft-pagination-button-bg-color)}.vft-pagination.is-background .btn-next.is-active,.vft-pagination.is-background .btn-prev.is-active,.vft-pagination.is-background .vft-pager li.is-active{background-color:var(--vft-primary-color);color:var(--vft-color-white)}.vft-pagination.is-background .btn-next.is-disabled,.vft-pagination.is-background .btn-next:disabled,.vft-pagination.is-background .btn-prev.is-disabled,.vft-pagination.is-background .btn-prev:disabled,.vft-pagination.is-background .vft-pager li.is-disabled,.vft-pagination.is-background .vft-pager li:disabled{color:var(--vft-text-placeholder-color);background-color:var(--vft-disabled-bg-color)}.vft-pagination.is-background .btn-next.is-disabled.is-active,.vft-pagination.is-background .btn-next:disabled.is-active,.vft-pagination.is-background .btn-prev.is-disabled.is-active,.vft-pagination.is-background .btn-prev:disabled.is-active,.vft-pagination.is-background .vft-pager li.is-disabled.is-active,.vft-pagination.is-background .vft-pager li:disabled.is-active{color:var(--vft-text-secondary-color);background-color:var(--vft-fill-color-dark)}.vft-pagination.is-background .btn-prev{margin-left:var(--vft-pagination-item-gap)}.vft-pagination--small .btn-next,.vft-pagination--small .btn-prev,.vft-pagination--small .vft-pager li{height:var(--vft-pagination-button-height-small);line-height:var(--vft-pagination-button-height-small);font-size:var(--vft-pagination-font-size-small);min-width:var(--vft-pagination-button-width-small)}.vft-pagination--small button,.vft-pagination--small span:not([class*=suffix]){font-size:var(--vft-pagination-font-size-small)}.vft-pagination--small .vft-select .vft-input{width:100px}.vft-pager{-webkit-user-select:none;-moz-user-select:none;user-select:none;list-style:none;font-size:0;padding:0;margin:0;display:flex;align-items:center}.vft-pager li{display:flex;justify-content:center;align-items:center;font-size:var(--vft-pagination-font-size);min-width:var(--vft-pagination-button-width);height:var(--vft-pagination-button-height);line-height:var(--vft-pagination-button-height);color:var(--vft-pagination-button-color);background:var(--vft-pagination-bg-color);padding:0 4px;border:none;border-radius:var(--vft-pagination-border-radius);cursor:pointer;text-align:center;box-sizing:border-box}.vft-pager li .vft-icon{color:inherit}.vft-pager li *{pointer-events:none}.vft-pager li:focus{outline:0}.vft-pager li:hover{color:var(--vft-pagination-hover-color)}.vft-pager li.is-active{color:var(--vft-pagination-hover-color);cursor:default;font-weight:700}.vft-pager li.is-active.is-disabled{font-weight:700}.vft-pager li.is-disabled,.vft-pager li:disabled{color:var(--vft-pagination-button-disabled-color);background-color:var(--vft-pagination-button-disabled-bg-color);cursor:not-allowed}.vft-pager li:focus-visible{outline:1px solid var(--vft-pagination-hover-color);outline-offset:-1px}
1
+ :root{--vft-pagination-font-size:14px;--vft-pagination-bg-color:var(--vft-fill-color-blank);--vft-pagination-text-color:var(--vft-text-primary-color);--vft-pagination-border-radius:2px;--vft-pagination-button-color:var(--vft-text-primary-color);--vft-pagination-button-width:32px;--vft-pagination-button-height:32px;--vft-pagination-button-disabled-color:var(--vft-text-placeholder-color);--vft-pagination-button-disabled-bg-color:var(--vft-fill-color-blank);--vft-pagination-button-bg-color:var(--vft-fill-color);--vft-pagination-hover-color:var(--vft-primary-color);--vft-pagination-font-size-small:12px;--vft-pagination-button-width-small:24px;--vft-pagination-button-height-small:24px;--vft-pagination-item-gap:16px}.vft-pagination{white-space:nowrap;color:var(--vft-pagination-text-color);font-size:var(--vft-pagination-font-size);font-weight:400;display:flex;align-items:center}.vft-pagination .vft-input__inner{text-align:center;-moz-appearance:textfield}.vft-pagination .vft-select .vft-input{width:128px}.vft-pagination button{display:flex;justify-content:center;align-items:center;font-size:var(--vft-pagination-font-size);min-width:var(--vft-pagination-button-width);height:var(--vft-pagination-button-height);line-height:var(--vft-pagination-button-height);color:var(--vft-pagination-button-color);background:var(--vft-pagination-bg-color);padding:0 4px;border:none;border-radius:var(--vft-pagination-border-radius);cursor:pointer;text-align:center;box-sizing:border-box}.vft-pagination button .vft-icon{color:inherit}.vft-pagination button *{pointer-events:none}.vft-pagination button:focus{outline:0}.vft-pagination button:hover{color:var(--vft-pagination-hover-color)}.vft-pagination button.is-active{color:var(--vft-pagination-hover-color);cursor:default;font-weight:700}.vft-pagination button.is-active.is-disabled{font-weight:700}.vft-pagination button.is-disabled,.vft-pagination button:disabled{color:var(--vft-pagination-button-disabled-color);background-color:var(--vft-pagination-button-disabled-bg-color);cursor:not-allowed}.vft-pagination button:focus-visible{outline:1px solid var(--vft-pagination-hover-color);outline-offset:-1px}.vft-pagination .btn-next .vft-icon,.vft-pagination .btn-prev .vft-icon{display:block;font-weight:700}.vft-pagination>.is-first{margin-left:0!important}.vft-pagination>.is-last{margin-right:0!important}.vft-pagination .btn-prev{margin-left:var(--vft-pagination-item-gap)}.vft-pagination__sizes{margin-left:var(--vft-pagination-item-gap);font-weight:400;color:var(--vft-text-regular-color)}.vft-pagination__total{margin-left:var(--vft-pagination-item-gap);font-weight:400;color:var(--vft-text-regular-color)}.vft-pagination__total[disabled=true]{color:var(--vft-text-placeholder-color)}.vft-pagination__jump{display:flex;align-items:center;margin-left:var(--vft-pagination-item-gap);font-weight:400;color:var(--vft-text-regular-color)}.vft-pagination__jump[disabled=true]{color:var(--vft-text-placeholder-color)}.vft-pagination__goto{margin-right:8px}.vft-pagination__editor{text-align:center;box-sizing:border-box}.vft-pagination__editor.vft-input{width:56px}.vft-pagination__editor .vft-input__inner::-webkit-inner-spin-button,.vft-pagination__editor .vft-input__inner::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.vft-pagination__classifier{margin-left:8px}.vft-pagination__rightwrapper{flex:1;display:flex;align-items:center;justify-content:flex-end}.vft-pagination.is-background .btn-next,.vft-pagination.is-background .btn-prev,.vft-pagination.is-background .vft-pager li{margin:0 4px;background-color:var(--vft-pagination-button-bg-color)}.vft-pagination.is-background .btn-next.is-active,.vft-pagination.is-background .btn-prev.is-active,.vft-pagination.is-background .vft-pager li.is-active{background-color:var(--vft-primary-color);color:var(--vft-color-white)}.vft-pagination.is-background .btn-next.is-disabled,.vft-pagination.is-background .btn-next:disabled,.vft-pagination.is-background .btn-prev.is-disabled,.vft-pagination.is-background .btn-prev:disabled,.vft-pagination.is-background .vft-pager li.is-disabled,.vft-pagination.is-background .vft-pager li:disabled{color:var(--vft-text-placeholder-color);background-color:var(--vft-disabled-bg-color)}.vft-pagination.is-background .btn-next.is-disabled.is-active,.vft-pagination.is-background .btn-next:disabled.is-active,.vft-pagination.is-background .btn-prev.is-disabled.is-active,.vft-pagination.is-background .btn-prev:disabled.is-active,.vft-pagination.is-background .vft-pager li.is-disabled.is-active,.vft-pagination.is-background .vft-pager li:disabled.is-active{color:var(--vft-text-secondary-color);background-color:var(--vft-fill-color-dark)}.vft-pagination.is-background .btn-prev{margin-left:var(--vft-pagination-item-gap)}.vft-pagination--small .btn-next,.vft-pagination--small .btn-prev,.vft-pagination--small .vft-pager li{height:var(--vft-pagination-button-height-small);line-height:var(--vft-pagination-button-height-small);font-size:var(--vft-pagination-font-size-small);min-width:var(--vft-pagination-button-width-small)}.vft-pagination--small button,.vft-pagination--small span:not([class*=suffix]){font-size:var(--vft-pagination-font-size-small)}.vft-pagination--small .vft-select .vft-input{width:100px}.vft-pager{-webkit-user-select:none;-moz-user-select:none;user-select:none;list-style:none;font-size:0;padding:0;margin:0;display:flex;align-items:center}.vft-pager li{display:flex;justify-content:center;align-items:center;font-size:var(--vft-pagination-font-size);min-width:var(--vft-pagination-button-width);height:var(--vft-pagination-button-height);line-height:var(--vft-pagination-button-height);color:var(--vft-pagination-button-color);background:var(--vft-pagination-bg-color);padding:0 4px;border:none;border-radius:var(--vft-pagination-border-radius);cursor:pointer;text-align:center;box-sizing:border-box}.vft-pager li .vft-icon{color:inherit}.vft-pager li *{pointer-events:none}.vft-pager li:focus{outline:0}.vft-pager li:hover{color:var(--vft-pagination-hover-color)}.vft-pager li.is-active{color:var(--vft-pagination-hover-color);cursor:default;font-weight:700}.vft-pager li.is-active.is-disabled{font-weight:700}.vft-pager li.is-disabled,.vft-pager li:disabled{color:var(--vft-pagination-button-disabled-color);background-color:var(--vft-pagination-button-disabled-bg-color);cursor:not-allowed}.vft-pager li:focus-visible{outline:1px solid var(--vft-pagination-hover-color);outline-offset:-1px}
@@ -0,0 +1 @@
1
+ .vft-progress{position:relative;line-height:1;display:flex;align-items:center}.vft-progress__text{font-size:14px;color:var(--vft-text-color-regular);margin-left:5px;min-width:50px;line-height:1}.vft-progress__text i{vertical-align:middle;display:block}.vft-progress--circle,.vft-progress--dashboard{display:inline-block}.vft-progress--circle .vft-progress__text,.vft-progress--dashboard .vft-progress__text{position:absolute;top:50%;left:0;width:100%;text-align:center;margin:0;transform:translate(0,-50%)}.vft-progress--circle .vft-progress__text i,.vft-progress--dashboard .vft-progress__text i{vertical-align:middle;display:inline-block}.vft-progress--without-text .vft-progress__text{display:none}.vft-progress--without-text .vft-progress-bar{padding-right:0;margin-right:0;display:block}.vft-progress--text-inside .vft-progress-bar{padding-right:0;margin-right:0}.vft-progress.is-success .vft-progress-bar__inner{background-color:var(--vft-success-color)}.vft-progress.is-success .vft-progress__text{color:var(--vft-success-color)}.vft-progress.is-warning .vft-progress-bar__inner{background-color:var(--vft-warning-color)}.vft-progress.is-warning .vft-progress__text{color:var(--vft-warning-color)}.vft-progress.is-exception .vft-progress-bar__inner{background-color:var(--vft-danger-color)}.vft-progress.is-exception .vft-progress__text{color:var(--vft-danger-color)}.vft-progress-bar{flex-grow:1;box-sizing:border-box}.vft-progress-bar__outer{height:6px;border-radius:100px;background-color:var(--vft-border-color-lighter);overflow:hidden;position:relative;vertical-align:middle}.vft-progress-bar__inner{position:absolute;left:0;top:0;height:100%;background-color:var(--vft-primary-color);text-align:right;border-radius:100px;line-height:1;white-space:nowrap;transition:width .6s ease}.vft-progress-bar__inner::after{display:inline-block;content:"";height:100%;vertical-align:middle}.vft-progress-bar__inner--indeterminate{transform:translateZ(0);animation:indeterminate 3s infinite}.vft-progress-bar__inner--striped{background-image:linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);background-size:1.25em 1.25em}.vft-progress-bar__inner--striped.vft-progress-bar__inner--striped-flow{animation:striped-flow 3s linear infinite}.vft-progress-bar__innerText{display:inline-block;vertical-align:middle;color:#fff;font-size:12px;margin:0 5px}@keyframes progress{0%{background-position:0 0}100%{background-position:32px 0}}@keyframes indeterminate{0%{left:-100%}100%{left:100%}}@keyframes striped-flow{0%{background-position:-100%}100%{background-position:100%}}
@@ -0,0 +1 @@
1
+ .vft-rate{--vft-rate-height:20px;--vft-rate-font-size:var(--vft-font-size-base);--vft-rate-icon-size:18px;--vft-rate-icon-margin:6px;--vft-rate-void-color:var(--vft-border-color-darker);--vft-rate-fill-color:#f7ba2a;--vft-rate-disabled-void-color:var(--vft-fill-color);--vft-rate-text-color:var(--vft-text-primary-color)}.vft-rate{display:inline-flex;align-items:center;height:32px}.vft-rate:active,.vft-rate:focus{outline:0}.vft-rate__item{cursor:pointer;display:inline-block;position:relative;font-size:0;vertical-align:middle;color:var(--vft-rate-void-color);line-height:normal}.vft-rate .vft-rate__icon{position:relative;display:inline-block;font-size:var(--vft-rate-icon-size);margin-right:var(--vft-rate-icon-margin);transition:var(--vft-transition-duration)}.vft-rate .vft-rate__icon.hover{transform:scale(1.15)}.vft-rate .vft-rate__icon .path2{position:absolute;left:0;top:0}.vft-rate .vft-rate__icon.is-active{color:var(--vft-rate-fill-color)}.vft-rate__decimal{position:absolute;top:0;left:0;display:inline-block;overflow:hidden;color:var(--vft-rate-fill-color)}.vft-rate__text{font-size:var(--vft-rate-font-size);vertical-align:middle;color:var(--vft-rate-text-color)}.vft-rate--large{height:40px}.vft-rate--small{height:24px}.vft-rate--small .vft-rate__icon{font-size:14px}.vft-rate.is-disabled .vft-rate__item{cursor:auto;color:var(--vft-rate-disabled-void-color)}
@@ -0,0 +1 @@
1
+ @charset "UTF-8";body{font-family:"Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;font-weight:400;font-size:var(--vft-font-size-base);color:var(--vft-text-color-primary);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}a{color:var(--vft-color-primary);text-decoration:none}a:focus,a:hover{color:var(--vft-primary-color-light-3)}a:active{color:var(--vft-primary-color-dark-2)}h1,h2,h3,h4,h5,h6{color:var(--vft-text-color-regular);font-weight:inherit}h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child{margin-top:0}h1:last-child,h2:last-child,h3:last-child,h4:last-child,h5:last-child,h6:last-child{margin-bottom:0}h1{font-size:calc(var(--vft-font-size-base) + 6px)}h2{font-size:calc(var(--vft-font-size-base) + 4px)}h3{font-size:calc(var(--vft-font-size-base) + 2px)}h4,h5,h6,p{font-size:inherit}p{line-height:1.8}p:first-child{margin-top:0}p:last-child{margin-bottom:0}sub,sup{font-size:calc(var(--vft-font-size-base) - 1px)}small{font-size:calc(var(--vft-font-size-base) - 2px)}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid var(--vft-border-color-lighter)}
@@ -0,0 +1 @@
1
+ .vft-row{display:flex;flex-wrap:wrap;position:relative;box-sizing:border-box}.vft-row.is-justify-center{justify-content:center}.vft-row.is-justify-end{justify-content:flex-end}.vft-row.is-justify-space-between{justify-content:space-between}.vft-row.is-justify-space-around{justify-content:space-around}.vft-row.is-justify-space-evenly{justify-content:space-evenly}.vft-row.is-align-middle{align-items:center}.vft-row.is-align-bottom{align-items:flex-end}
@@ -1 +1 @@
1
- .vft-search{display:inline-block}
1
+ :root{--vft-search-active-width:100%;--vft-search-border-color:var(--vft-input-border-color);--vft-search-hover-border-color:var(--vft-primary-color);--vft-search-active-bg-color:var(--vft-input-bg-color);--vft-search-hover-bg-color:var(--vft-input-bg-color);--vft-search-border-radius:var(--vft-border-radius-base)}.vft-search{display:inline-block}.vft-search.is-active .vft-input__wrapper{background-color:var(--vft-search-active-bg-color)}.vft-search .vft-input:hover{width:var(--vft-search-active-width)}.vft-search .vft-input .vft-input__wrapper{border:1px solid var(--vft-search-border-color);border-radius:var(--vft-search-border-radius)}.vft-search .vft-input .vft-input__wrapper:hover{background-color:var(--vft-search-hover-bg-color);border:1px solid var(--vft-search-hover-border-color)}.vft-search .vft-input .vft-input__wrapper.is-focus{background-color:var(--vft-search-active-bg-color)}
@@ -1 +1 @@
1
- .vft-select-dropdown{z-index:calc(var(--vft-index-top) + 1);border-radius:var(--vft-border-radius-base);box-sizing:border-box}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected{color:var(--vft-primary-color);background-color:var(--vft-bg-color-overlay)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.is-disabled::after{background-color:var(--vft-text-color-disabled)}.vft-select-dropdown .vft-select-dropdown__option-item.is-selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown .vft-scrollbar.is-empty .vft-select-dropdown__list{padding:0}.vft-select-dropdown .vft-select-dropdown__item.is-disabled:hover{background-color:unset}.vft-select-dropdown .vft-select-dropdown__item.is-disabled.selected{color:var(--vft-text-color-disabled)}.vft-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:var(--vft-text-secondary-color);font-size:var(--vft-select-font-size)}.vft-select-dropdown__wrap{max-height:274px}.vft-select-dropdown__list{list-style:none;padding:6px 0;margin:0;box-sizing:border-box}
1
+ .vft-select-dropdown{z-index:calc(var(--vft-index-top) + 1);border-radius:var(--vft-border-radius-base);box-sizing:border-box}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected{color:var(--vft-primary-color);background-color:var(--vft-bg-color-overlay)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.is-disabled::after{background-color:var(--vft-text-disabled-color)}.vft-select-dropdown .vft-select-dropdown__option-item.is-selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown .vft-scrollbar.is-empty .vft-select-dropdown__list{padding:0}.vft-select-dropdown .vft-select-dropdown__item.is-disabled:hover{background-color:unset}.vft-select-dropdown .vft-select-dropdown__item.is-disabled.selected{color:var(--vft-text-disabled-color)}.vft-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:var(--vft-text-secondary-color);font-size:var(--vft-select-font-size)}.vft-select-dropdown__wrap{max-height:274px}.vft-select-dropdown__list{list-style:none;padding:6px 0;margin:0;box-sizing:border-box}
@@ -1 +1 @@
1
- .vft-select-dropdown{z-index:calc(var(--vft-index-top) + 1);border-radius:var(--vft-border-radius-base);box-sizing:border-box}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected{color:var(--vft-primary-color);background-color:var(--vft-bg-color-overlay)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.is-disabled::after{background-color:var(--vft-text-color-disabled)}.vft-select-dropdown .vft-select-dropdown__option-item.is-selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown .vft-scrollbar.is-empty .vft-select-dropdown__list{padding:0}.vft-select-dropdown .vft-select-dropdown__item.is-disabled:hover{background-color:unset}.vft-select-dropdown .vft-select-dropdown__item.is-disabled.selected{color:var(--vft-text-color-disabled)}.vft-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:var(--vft-text-secondary-color);font-size:var(--vft-select-font-size)}.vft-select-dropdown__wrap{max-height:274px}.vft-select-dropdown__list{list-style:none;padding:6px 0;margin:0;box-sizing:border-box}.vft-select{--vft-select-border-color-hover:var(--vft-border-color-hover);--vft-select-disabled-border:var(--vft-disabled-border-color);--vft-select-font-size:var(--vft-font-size-base);--vft-select-close-hover-color:var(--vft-text-secondary-color);--vft-select-input-color:var(--vft-text-placeholder-color);--vft-select-multiple-input-color:var(--vft-text-regular-color);--vft-select-input-focus-border-color:var(--vft-primary-color);--vft-select-input-font-size:14px}.vft-select{display:inline-block;position:relative;vertical-align:middle;line-height:32px}.vft-select__popper.vft-popper{background:var(--vft-bg-color-overlay);border:1px solid var(--vft-border-color-light);box-shadow:var(--vft-box-shadow-light)}.vft-select__popper.vft-popper .vft-popper__arrow::before{border:1px solid var(--vft-border-color-light)}.vft-select__popper.vft-popper[data-popper-placement^=top] .vft-popper__arrow::before{border-top-color:transparent;border-left-color:transparent}.vft-select__popper.vft-popper[data-popper-placement^=bottom] .vft-popper__arrow::before{border-bottom-color:transparent;border-right-color:transparent}.vft-select__popper.vft-popper[data-popper-placement^=left] .vft-popper__arrow::before{border-left-color:transparent;border-bottom-color:transparent}.vft-select__popper.vft-popper[data-popper-placement^=right] .vft-popper__arrow::before{border-right-color:transparent;border-top-color:transparent}.vft-select .vft-select-tags-wrapper.has-prefix{margin-left:6px}.vft-select--large{line-height:40px}.vft-select--large .vft-select-tags-wrapper.has-prefix{margin-left:8px}.vft-select--small{line-height:24px}.vft-select--small .vft-select-tags-wrapper.has-prefix{margin-left:4px}.vft-select .vft-select__tags>span{display:inline-block}.vft-select:hover:not(.vft-select--disabled) .vft-input__wrapper{box-shadow:0 0 0 1px var(--vft-select-border-color-hover) inset}.vft-select .vft-select__tags-text{display:inline-block;line-height:normal;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1}.vft-select .vft-input__wrapper{cursor:pointer}.vft-select .vft-input__wrapper.is-focus{box-shadow:0 0 0 1px var(--vft-select-input-focus-border-color) inset!important}.vft-select .vft-input__inner{cursor:pointer}.vft-select .vft-input{display:flex}.vft-select .vft-input .vft-select__caret{color:var(--vft-select-input-color);font-size:var(--vft-select-input-font-size);transition:transform var(--vft-transition-duration);transform:rotateZ(0);cursor:pointer}.vft-select .vft-input .vft-select__caret.is-reverse{transform:rotateZ(-180deg)}.vft-select .vft-input .vft-select__caret.is-show-close{font-size:var(--vft-select-font-size);text-align:center;transform:rotateZ(0);border-radius:var(--vft-border-radius-circle);color:var(--vft-select-input-color);transition:var(--vft-transition-color)}.vft-select .vft-input .vft-select__caret.is-show-close:hover{color:var(--vft-select-close-hover-color)}.vft-select .vft-input .vft-select__caret.vft-icon{position:relative;height:inherit;z-index:2}.vft-select .vft-input.is-disabled .vft-input__wrapper{cursor:not-allowed}.vft-select .vft-input.is-disabled .vft-input__wrapper:hover{box-shadow:0 0 0 1px var(--vft-select-disabled-border) inset}.vft-select .vft-input.is-disabled .vft-input__inner{cursor:not-allowed}.vft-select .vft-input.is-disabled .vft-select__caret{cursor:not-allowed}.vft-select .vft-input.is-focus .vft-input__wrapper{box-shadow:0 0 0 1px var(--vft-select-input-focus-border-color) inset!important}.vft-select__input{border:none;outline:0;padding:0;margin-left:15px;color:var(--vft-select-multiple-input-color);font-size:var(--vft-select-font-size);-webkit-appearance:none;-moz-appearance:none;appearance:none;height:28px;background-color:transparent}.vft-select__input--iOS{position:absolute;left:0;top:0;z-index:6}.vft-select__input.is-small{height:14px}.vft-select__close{cursor:pointer;position:absolute;top:8px;z-index:var(--vft-index-top);right:25px;color:var(--vft-select-input-color);line-height:18px;font-size:var(--vft-select-input-font-size)}.vft-select__close:hover{color:var(--vft-select-close-hover-color)}.vft-select__tags{position:absolute;line-height:normal;top:50%;transform:translateY(-50%);white-space:normal;z-index:var(--vft-index-normal);display:flex;align-items:center;flex-wrap:wrap;cursor:pointer}.vft-select__tags .vft-tag{box-sizing:border-box;border-color:transparent;margin:2px 6px 2px 0}.vft-select__tags .vft-tag:last-child{margin-right:0}.vft-select__tags .vft-tag .vft-icon-close{background-color:var(--vft-text-color-placeholder);right:-7px;top:0;color:#fff}.vft-select__tags .vft-tag .vft-icon-close:hover{background-color:var(--vft-text-color-secondary)}.vft-select__tags .vft-tag .vft-icon-close::before{display:block;transform:translate(0,.5px)}.vft-select__tags .vft-tag--info{background-color:var(--vft-fill-color)}.vft-select__collapse-tags{white-space:normal;z-index:var(--vft-index-normal);display:flex;align-items:center;flex-wrap:wrap;cursor:pointer}.vft-select__collapse-tags .vft-tag{box-sizing:border-box;border-color:transparent;margin:2px 6px 2px 0}.vft-select__collapse-tags .vft-tag:last-child{margin-right:0}.vft-select__collapse-tags .vft-tag .vft-icon-close{background-color:var(--vft-text-color-placeholder);right:-7px;top:0;color:#fff}.vft-select__collapse-tags .vft-tag .vft-icon-close:hover{background-color:var(--vft-text-color-secondary)}.vft-select__collapse-tags .vft-tag .vft-icon-close::before{display:block;transform:translate(0,.5px)}.vft-select__collapse-tags .vft-tag--info{background-color:var(--vft-fill-color)}.vft-select__collapse-tag{line-height:inherit;height:inherit;display:flex}
1
+ .vft-select-dropdown{z-index:calc(var(--vft-index-top) + 1);border-radius:var(--vft-border-radius-base);box-sizing:border-box}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected{color:var(--vft-primary-color);background-color:var(--vft-bg-color-overlay)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.is-disabled::after{background-color:var(--vft-text-disabled-color)}.vft-select-dropdown .vft-select-dropdown__option-item.is-selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown .vft-scrollbar.is-empty .vft-select-dropdown__list{padding:0}.vft-select-dropdown .vft-select-dropdown__item.is-disabled:hover{background-color:unset}.vft-select-dropdown .vft-select-dropdown__item.is-disabled.selected{color:var(--vft-text-disabled-color)}.vft-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:var(--vft-text-secondary-color);font-size:var(--vft-select-font-size)}.vft-select-dropdown__wrap{max-height:274px}.vft-select-dropdown__list{list-style:none;padding:6px 0;margin:0;box-sizing:border-box}.vft-select{--vft-select-border-color-hover:var(--vft-border-color-hover);--vft-select-disabled-border:var(--vft-disabled-border-color);--vft-select-font-size:var(--vft-font-size-base);--vft-select-close-hover-color:var(--vft-text-secondary-color);--vft-select-input-color:var(--vft-text-placeholder-color);--vft-select-multiple-input-color:var(--vft-text-regular-color);--vft-select-input-focus-border-color:var(--vft-primary-color);--vft-select-input-font-size:14px}.vft-select{display:inline-block;position:relative;vertical-align:middle;line-height:32px}.vft-select__popper.vft-popper{background:var(--vft-bg-color-overlay);border:1px solid var(--vft-border-color-light);box-shadow:var(--vft-box-shadow-light)}.vft-select__popper.vft-popper .vft-popper__arrow::before{border:1px solid var(--vft-border-color-light)}.vft-select__popper.vft-popper[data-popper-placement^=top] .vft-popper__arrow::before{border-top-color:transparent;border-left-color:transparent}.vft-select__popper.vft-popper[data-popper-placement^=bottom] .vft-popper__arrow::before{border-bottom-color:transparent;border-right-color:transparent}.vft-select__popper.vft-popper[data-popper-placement^=left] .vft-popper__arrow::before{border-left-color:transparent;border-bottom-color:transparent}.vft-select__popper.vft-popper[data-popper-placement^=right] .vft-popper__arrow::before{border-right-color:transparent;border-top-color:transparent}.vft-select .vft-select-tags-wrapper.has-prefix{margin-left:6px}.vft-select--large{line-height:40px}.vft-select--large .vft-select-tags-wrapper.has-prefix{margin-left:8px}.vft-select--small{line-height:24px}.vft-select--small .vft-select-tags-wrapper.has-prefix{margin-left:4px}.vft-select .vft-select__tags>span{display:inline-block}.vft-select:hover:not(.vft-select--disabled) .vft-input__wrapper{box-shadow:0 0 0 1px var(--vft-select-border-color-hover) inset}.vft-select .vft-select__tags-text{display:inline-block;line-height:normal;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1}.vft-select .vft-input__wrapper{cursor:pointer}.vft-select .vft-input__wrapper.is-focus{box-shadow:0 0 0 1px var(--vft-select-input-focus-border-color) inset!important}.vft-select .vft-input__inner{cursor:pointer}.vft-select .vft-input{display:flex}.vft-select .vft-input .vft-select__caret{color:var(--vft-select-input-color);font-size:var(--vft-select-input-font-size);transition:transform var(--vft-transition-duration);transform:rotateZ(0);cursor:pointer}.vft-select .vft-input .vft-select__caret.is-reverse{transform:rotateZ(-180deg)}.vft-select .vft-input .vft-select__caret.is-show-close{font-size:var(--vft-select-font-size);text-align:center;transform:rotateZ(0);border-radius:var(--vft-border-radius-circle);color:var(--vft-select-input-color);transition:var(--vft-transition-color)}.vft-select .vft-input .vft-select__caret.is-show-close:hover{color:var(--vft-select-close-hover-color)}.vft-select .vft-input .vft-select__caret.vft-icon{position:relative;height:inherit;z-index:2}.vft-select .vft-input.is-disabled .vft-input__wrapper{cursor:not-allowed}.vft-select .vft-input.is-disabled .vft-input__wrapper:hover{box-shadow:0 0 0 1px var(--vft-select-disabled-border) inset}.vft-select .vft-input.is-disabled .vft-input__inner{cursor:not-allowed}.vft-select .vft-input.is-disabled .vft-select__caret{cursor:not-allowed}.vft-select .vft-input.is-focus .vft-input__wrapper{box-shadow:0 0 0 1px var(--vft-select-input-focus-border-color) inset!important}.vft-select__input{border:none;outline:0;padding:0;margin-left:15px;color:var(--vft-select-multiple-input-color);font-size:var(--vft-select-font-size);-webkit-appearance:none;-moz-appearance:none;appearance:none;height:28px;background-color:transparent}.vft-select__input--iOS{position:absolute;left:0;top:0;z-index:6}.vft-select__input.is-small{height:14px}.vft-select__close{cursor:pointer;position:absolute;top:8px;z-index:var(--vft-index-top);right:25px;color:var(--vft-select-input-color);line-height:18px;font-size:var(--vft-select-input-font-size)}.vft-select__close:hover{color:var(--vft-select-close-hover-color)}.vft-select__tags{position:absolute;line-height:normal;top:50%;transform:translateY(-50%);white-space:normal;z-index:var(--vft-index-normal);display:flex;align-items:center;flex-wrap:wrap;cursor:pointer}.vft-select__tags .vft-tag{box-sizing:border-box;border-color:transparent;margin:2px 6px 2px 0}.vft-select__tags .vft-tag:last-child{margin-right:0}.vft-select__tags .vft-tag .vft-icon-close{background-color:var(--vft-text-color-placeholder);right:-7px;top:0;color:#fff}.vft-select__tags .vft-tag .vft-icon-close:hover{background-color:var(--vft-text-color-secondary)}.vft-select__tags .vft-tag .vft-icon-close::before{display:block;transform:translate(0,.5px)}.vft-select__tags .vft-tag--info{background-color:var(--vft-fill-color)}.vft-select__collapse-tags{white-space:normal;z-index:var(--vft-index-normal);display:flex;align-items:center;flex-wrap:wrap;cursor:pointer}.vft-select__collapse-tags .vft-tag{box-sizing:border-box;border-color:transparent;margin:2px 6px 2px 0}.vft-select__collapse-tags .vft-tag:last-child{margin-right:0}.vft-select__collapse-tags .vft-tag .vft-icon-close{background-color:var(--vft-text-color-placeholder);right:-7px;top:0;color:#fff}.vft-select__collapse-tags .vft-tag .vft-icon-close:hover{background-color:var(--vft-text-color-secondary)}.vft-select__collapse-tags .vft-tag .vft-icon-close::before{display:block;transform:translate(0,.5px)}.vft-select__collapse-tags .vft-tag--info{background-color:var(--vft-fill-color)}.vft-select__collapse-tag{line-height:inherit;height:inherit;display:flex}
@@ -1 +1 @@
1
- .vft-side-menu{--vft-side-menu-border:var(--vft-menu-border-right);--vft-side-menu-scroll-mr:0;transition:width .2s;display:flex;flex-direction:column;border-right:var(--vft-menu-border-right)}.vft-side-menu--fixed{position:fixed;left:0;z-index:1}.vft-side-menu__top{border-bottom:var(--vft-side-menu-border);z-index:1}.vft-side-menu__bottom{border-top:var(--vft-side-menu-border);position:absolute;bottom:0;width:100%}.vft-side-menu__collapse{cursor:pointer;height:40px;padding:0 16px;display:flex;align-items:center;border-right:none;z-index:999;background-color:var(--vft-menu-bg-color)}.vft-side-menu__collapse .vft-icon{position:absolute;right:20px}.vft-side-menu__con{overflow-y:auto;overflow-y:overlay;overflow-x:hidden}.vft-side-menu .vft-menu{border:none}.vft-side-menu__drag-bar{position:absolute;top:0;z-index:999;right:-1px;width:2px;height:100%;border-top:none;border-bottom:none;cursor:col-resize}.vft-side-menu__drag-bar:hover{background-color:var(--vft-primary-color);box-shadow:var(--vft-box-shadow)}.vft-side-menu__popper{margin-right:var(--vft-side-menu-scroll-mr)}.vft-side-menu__popper .vft-menu--popup{overflow-y:auto;overflow-y:overlay;box-shadow:none;max-height:calc(100vh - 200px)}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar{z-index:11;width:6px}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar:horizontal{height:6px}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#c0c4cc;border:0 solid transparent}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-thumb:hover{background:#c0c4cc}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-corner{background:0 0}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-track{background:0 0}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-track-piece{background:0 0;width:6px}
1
+ .vft-side-menu{--vft-side-menu-border:var(--vft-menu-border-right);--vft-side-menu-scroll-mr:0;transition:width .2s ease;display:flex;flex-direction:column;border-right:var(--vft-menu-border-right);position:relative;overflow-x:hidden}.vft-side-menu--fixed{position:fixed;left:0;z-index:1}.vft-side-menu__top{border-bottom:var(--vft-side-menu-border)}.vft-side-menu__bottom{border-top:var(--vft-side-menu-border);position:absolute;bottom:0;width:100%}.vft-side-menu__right{position:absolute;right:-10px;top:50%}.vft-side-menu__collapse{cursor:pointer;height:40px;padding:0 16px;display:flex;align-items:center;border-right:none;background-color:var(--vft-menu-bg-color)}.vft-side-menu__collapse .vft-icon{position:absolute;right:20px}.vft-side-menu__con{overflow-y:auto;overflow-y:overlay;overflow-x:hidden}.vft-side-menu .vft-menu{border:none}.vft-side-menu__drag-bar{position:absolute;top:0;z-index:999;right:-1px;width:2px;height:100%;border-top:none;border-bottom:none;cursor:col-resize}.vft-side-menu__drag-bar:hover{background-color:var(--vft-primary-color);box-shadow:var(--vft-box-shadow)}.vft-side-menu__popper{margin-right:var(--vft-side-menu-scroll-mr)}.vft-side-menu__popper .vft-menu--popup{overflow-y:auto;overflow-y:overlay;box-shadow:none;max-height:calc(100vh - 200px)}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar{z-index:11;width:6px}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar:horizontal{height:6px}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#c0c4cc;border:0 solid transparent}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-thumb:hover{background:#c0c4cc}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-corner{background:0 0}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-track{background:0 0}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-track-piece{background:0 0;width:6px}
@@ -0,0 +1 @@
1
+ .vft-slider{--vft-slider-main-bg-color:var(--vft-primary-color);--vft-slider-runway-bg-color:var(--vft-border-color-light);--vft-slider-stop-bg-color:var(--vft-color-white);--vft-slider-disabled-color:var(--vft-text-placeholder-color);--vft-slider-border-radius:3px;--vft-slider-height:6px;--vft-slider-button-size:20px;--vft-slider-button-wrapper-size:36px;--vft-slider-button-wrapper-offset:-15px}.vft-slider{width:100%;height:32px;display:flex;align-items:center}.vft-slider__runway{flex:1;height:var(--vft-slider-height);background-color:var(--vft-slider-runway-bg-color);border-radius:var(--vft-slider-border-radius);position:relative;cursor:pointer}.vft-slider__runway.show-input{margin-right:30px;width:auto}.vft-slider__runway.is-disabled{cursor:default}.vft-slider__runway.is-disabled .vft-slider__bar{background-color:var(--vft-slider-disabled-color)}.vft-slider__runway.is-disabled .vft-slider__button{border-color:var(--vft-slider-disabled-color)}.vft-slider__runway.is-disabled .vft-slider__button-wrapper.hover,.vft-slider__runway.is-disabled .vft-slider__button-wrapper:hover{cursor:not-allowed}.vft-slider__runway.is-disabled .vft-slider__button-wrapper.dragging{cursor:not-allowed}.vft-slider__runway.is-disabled .vft-slider__button.dragging,.vft-slider__runway.is-disabled .vft-slider__button.hover,.vft-slider__runway.is-disabled .vft-slider__button:hover{transform:scale(1)}.vft-slider__runway.is-disabled .vft-slider__button.hover,.vft-slider__runway.is-disabled .vft-slider__button:hover{cursor:not-allowed}.vft-slider__runway.is-disabled .vft-slider__button.dragging{cursor:not-allowed}.vft-slider__input{flex-shrink:0;width:130px}.vft-slider__bar{height:var(--vft-slider-height);background-color:var(--vft-slider-main-bg-color);border-top-left-radius:var(--vft-slider-border-radius);border-bottom-left-radius:var(--vft-slider-border-radius);position:absolute}.vft-slider__button-wrapper{height:var(--vft-slider-button-wrapper-size);width:var(--vft-slider-button-wrapper-size);position:absolute;z-index:1;top:var(--vft-slider-button-wrapper-offset);transform:translateX(-50%);background-color:transparent;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;line-height:normal;outline:0}.vft-slider__button-wrapper::after{display:inline-block;content:"";height:100%;vertical-align:middle}.vft-slider__button-wrapper.hover,.vft-slider__button-wrapper:hover{cursor:grab}.vft-slider__button-wrapper.dragging{cursor:grabbing}.vft-slider__button{display:inline-block;width:var(--vft-slider-button-size);height:var(--vft-slider-button-size);vertical-align:middle;border:solid 2px var(--vft-slider-main-bg-color);background-color:var(--vft-color-white);border-radius:50%;box-sizing:border-box;transition:var(--vft-transition-duration-fast);-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-slider__button.dragging,.vft-slider__button.hover,.vft-slider__button:hover{transform:scale(1.2)}.vft-slider__button.hover,.vft-slider__button:hover{cursor:grab}.vft-slider__button.dragging{cursor:grabbing}.vft-slider__stop{position:absolute;height:var(--vft-slider-height);width:var(--vft-slider-height);border-radius:var(--vft-border-radius-circle);background-color:var(--vft-slider-stop-bg-color);transform:translateX(-50%)}.vft-slider__marks{top:0;left:12px;width:18px;height:100%}.vft-slider__marks-text{position:absolute;transform:translateX(-50%);font-size:14px;color:var(--vft-info-color);margin-top:15px;white-space:pre}.vft-slider.is-vertical{position:relative;display:inline-flex;width:auto;height:100%;flex:0}.vft-slider.is-vertical .vft-slider__runway{width:var(--vft-slider-height);height:100%;margin:0 16px}.vft-slider.is-vertical .vft-slider__bar{width:var(--vft-slider-height);height:auto;border-radius:0 0 3px 3px}.vft-slider.is-vertical .vft-slider__button-wrapper{top:auto;left:var(--vft-slider-button-wrapper-offset);transform:translateY(50%)}.vft-slider.is-vertical .vft-slider__stop{transform:translateY(50%)}.vft-slider.is-vertical .vft-slider__marks-text{margin-top:0;left:15px;transform:translateY(50%)}.vft-slider--large{height:40px}.vft-slider--small{height:24px}
@@ -0,0 +1 @@
1
+ .vft-space{display:inline-flex;vertical-align:top}.vft-space__item{display:flex;flex-wrap:wrap}.vft-space__item>*{flex:1}.vft-space--vertical{flex-direction:column}
@@ -0,0 +1 @@
1
+ .vft-time-spinner{width:100%;white-space:nowrap}.vft-spinner{display:inline-block;vertical-align:middle}.vft-spinner-inner{animation:rotate 2s linear infinite;width:50px;height:50px}.vft-spinner-inner .path{stroke:var(--vft-border-color-lighter);stroke-linecap:round;animation:dash 1.5s ease-in-out infinite}@keyframes rotate{100%{transform:rotate(360deg)}}@keyframes dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:90,150;stroke-dashoffset:-124}}
@@ -0,0 +1 @@
1
+ .vft-statistic{--vft-statistic-title-font-weight:400;--vft-statistic-title-font-size:var(--vft-font-size-extra-small);--vft-statistic-title-color:var(--vft-text-regular-color);--vft-statistic-content-font-weight:400;--vft-statistic-content-font-size:var(--vft-font-size-extra-large);--vft-statistic-content-color:var(--vft-text-primary-color)}.vft-statistic__head{font-weight:var(--vft-statistic-title-font-weight);font-size:var(--vft-statistic-title-font-size);color:var(--vft-statistic-title-color);line-height:20px;margin-bottom:4px}.vft-statistic__content{font-weight:var(--vft-statistic-content-font-weight);font-size:var(--vft-statistic-content-font-size);color:var(--vft-statistic-content-color)}.vft-statistic__value{display:inline-block}.vft-statistic__prefix{margin-right:4px;display:inline-block}.vft-statistic__suffix{margin-left:4px;display:inline-block}
@@ -0,0 +1 @@
1
+ .vft-step{position:relative;flex-shrink:1}.vft-step:last-of-type .vft-step__line{display:none}.vft-step:last-of-type.is-flex{flex-basis:auto!important;flex-shrink:0;flex-grow:0}.vft-step:last-of-type .vft-step__description,.vft-step:last-of-type .vft-step__main{padding-right:0}.vft-step__head{position:relative;width:100%}.vft-step__head.is-process{color:var(--vft-text-color-primary);border-color:var(--vft-text-color-primary)}.vft-step__head.is-wait{color:var(--vft-text-color-placeholder);border-color:var(--vft-text-color-placeholder)}.vft-step__head.is-success{color:var(--vft-success-color);border-color:var(--vft-success-color)}.vft-step__head.is-error{color:var(--vft-danger-color);border-color:var(--vft-danger-color)}.vft-step__head.is-finish{color:var(--vft-primary-color);border-color:var(--vft-primary-color)}.vft-step__icon{position:relative;z-index:1;display:inline-flex;justify-content:center;align-items:center;width:24px;height:24px;font-size:14px;box-sizing:border-box;background:var(--vft-bg-color);transition:.15s ease-out}.vft-step__icon.is-text{border-radius:50%;border:2px solid;border-color:inherit}.vft-step__icon.is-icon{width:40px}.vft-step__icon-inner{display:inline-block;-webkit-user-select:none;-moz-user-select:none;user-select:none;text-align:center;font-weight:700;line-height:1;color:inherit}.vft-step__icon-inner[class*=vft-icon]:not(.is-status){font-size:25px;font-weight:400}.vft-step__icon-inner.is-status{transform:translateY(1px)}.vft-step__line{position:absolute;border-color:inherit;background-color:var(--vft-text-color-placeholder)}.vft-step__line-inner{display:block;border-width:1px;border-style:solid;border-color:inherit;transition:.15s ease-out;box-sizing:border-box;width:0;height:0}.vft-step__main{white-space:normal;text-align:left}.vft-step__title{font-size:16px;line-height:38px}.vft-step__title.is-process{font-weight:700;color:var(--vft-text-color-primary)}.vft-step__title.is-wait{color:var(--vft-text-color-placeholder)}.vft-step__title.is-success{color:var(--vft-success-color)}.vft-step__title.is-error{color:var(--vft-danger-color)}.vft-step__title.is-finish{color:var(--vft-primary-color)}.vft-step__description{padding-right:10%;margin-top:-5px;font-size:12px;line-height:20px;font-weight:400}.vft-step__description.is-process{color:var(--vft-text-color-primary)}.vft-step__description.is-wait{color:var(--vft-text-color-placeholder)}.vft-step__description.is-success{color:var(--vft-success-color)}.vft-step__description.is-error{color:var(--vft-danger-color)}.vft-step__description.is-finish{color:var(--vft-primary-color)}.vft-step.is-horizontal{display:inline-block}.vft-step.is-horizontal .vft-step__line{height:2px;top:11px;left:0;right:0}.vft-step.is-vertical{display:flex}.vft-step.is-vertical .vft-step__head{flex-grow:0;width:24px}.vft-step.is-vertical .vft-step__main{padding-left:10px;flex-grow:1}.vft-step.is-vertical .vft-step__title{line-height:24px;padding-bottom:8px}.vft-step.is-vertical .vft-step__line{width:2px;top:0;bottom:0;left:11px}.vft-step.is-vertical .vft-step__icon.is-icon{width:24px}.vft-step.is-center .vft-step__head{text-align:center}.vft-step.is-center .vft-step__main{text-align:center}.vft-step.is-center .vft-step__description{padding-left:20%;padding-right:20%}.vft-step.is-center .vft-step__line{left:50%;right:-50%}.vft-step.is-simple{display:flex;align-items:center}.vft-step.is-simple .vft-step__head{width:auto;font-size:0;padding-right:10px}.vft-step.is-simple .vft-step__icon{background:0 0;width:16px;height:16px;font-size:12px}.vft-step.is-simple .vft-step__icon-inner[class*=vft-icon]:not(.is-status){font-size:18px}.vft-step.is-simple .vft-step__icon-inner.is-status{transform:scale(.8) translateY(1px)}.vft-step.is-simple .vft-step__main{position:relative;display:flex;align-items:stretch;flex-grow:1}.vft-step.is-simple .vft-step__title{font-size:16px;line-height:20px}.vft-step.is-simple:not(:last-of-type) .vft-step__title{max-width:50%;word-break:break-all}.vft-step.is-simple .vft-step__arrow{flex-grow:1;display:flex;align-items:center;justify-content:center}.vft-step.is-simple .vft-step__arrow::after,.vft-step.is-simple .vft-step__arrow::before{content:"";display:inline-block;position:absolute;height:15px;width:1px;background:var(--vft-text-color-placeholder)}.vft-step.is-simple .vft-step__arrow::before{transform:rotate(-45deg) translateY(-4px);transform-origin:0 0}.vft-step.is-simple .vft-step__arrow::after{transform:rotate(45deg) translateY(4px);transform-origin:100% 100%}.vft-step.is-simple:last-of-type .vft-step__arrow{display:none}
@@ -0,0 +1 @@
1
+ .vft-steps{display:flex}.vft-steps--simple{padding:13px 8%;border-radius:4px;background:var(--vft-fill-color-light)}.vft-steps--horizontal{white-space:nowrap}.vft-steps--vertical{height:100%;flex-flow:column}