vft 0.0.142 → 0.0.144

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (787) hide show
  1. package/attributes.json +1 -1
  2. package/dist/index.css +1 -1
  3. package/es/app-components/base/style/index.d.ts +0 -0
  4. package/es/app-components/button/button-custom.d.ts +5 -0
  5. package/es/app-components/button/constants.d.ts +3 -0
  6. package/es/app-components/button/index.d.ts +5 -0
  7. package/es/app-components/button/style/index.d.ts +0 -0
  8. package/es/app-components/button/types.d.ts +9 -0
  9. package/es/app-components/button/use-button.d.ts +20 -0
  10. package/es/app-components/clamp/index.d.ts +2 -0
  11. package/es/app-components/clamp/style/index.d.ts +0 -0
  12. package/es/app-components/col/index.d.ts +4 -0
  13. package/es/app-components/col/style/index.d.ts +0 -0
  14. package/es/app-components/col/types.d.ts +11 -0
  15. package/es/app-components/form/constants.d.ts +4 -0
  16. package/es/app-components/form/form-label-wrap.d.ts +11 -0
  17. package/es/app-components/form/hooks/index.d.ts +2 -0
  18. package/es/app-components/form/hooks/use-form-common-props.d.ts +7 -0
  19. package/es/app-components/form/hooks/use-form-item.d.ts +18 -0
  20. package/es/app-components/form/index.d.ts +5 -0
  21. package/es/app-components/form/style/index.d.ts +0 -0
  22. package/es/app-components/form/types.d.ts +43 -0
  23. package/es/app-components/form/utils.d.ts +9 -0
  24. package/es/app-components/hooks/index.d.ts +2 -0
  25. package/es/app-components/hooks/use-id.d.ts +9 -0
  26. package/es/app-components/hooks/use-namespace.d.ts +22 -0
  27. package/es/app-components/icon/index.d.ts +3 -0
  28. package/es/app-components/icon/style/index.d.ts +0 -0
  29. package/es/app-components/image/index.d.ts +3 -0
  30. package/es/app-components/image/style/index.d.ts +0 -0
  31. package/es/app-components/image/types.d.ts +13 -0
  32. package/es/app-components/index.d.ts +11 -0
  33. package/es/app-components/input/index.d.ts +3 -0
  34. package/es/app-components/input/style/index.d.ts +0 -0
  35. package/es/app-components/input/utils.d.ts +6 -0
  36. package/es/app-components/overlay/index.d.ts +2 -0
  37. package/es/app-components/overlay/style/index.d.ts +0 -0
  38. package/es/app-components/popup/index.d.ts +3 -0
  39. package/es/app-components/popup/style/index.d.ts +0 -0
  40. package/es/app-components/popup/types.d.ts +1 -0
  41. package/es/app-components/row/constants.d.ts +6 -0
  42. package/es/app-components/row/index.d.ts +5 -0
  43. package/es/app-components/row/style/index.d.ts +0 -0
  44. package/es/app-components/row/types.d.ts +2 -0
  45. package/es/app-components/super-form/component-map.d.ts +14 -0
  46. package/es/app-components/super-form/index.d.ts +5 -0
  47. package/es/app-components/super-form/style/index.d.ts +0 -0
  48. package/es/{components → app-components}/super-form/types.d.ts +67 -27
  49. package/es/app-components/super-form/use/helper.d.ts +17 -0
  50. package/es/app-components/super-form/use/use-auto-focus.d.ts +11 -0
  51. package/es/app-components/super-form/use/use-form-context.d.ts +8 -0
  52. package/{lib/components → es/app-components}/super-form/use/use-form-events.d.ts +1 -0
  53. package/{lib/components → es/app-components}/super-form/use/use-form-values.d.ts +2 -1
  54. package/es/app-components/super-form/use/use-form.d.ts +9 -0
  55. package/es/app-components/types.d.ts +6 -0
  56. package/es/app-components/upload/index.d.ts +3 -0
  57. package/es/app-components/upload/style/index.d.ts +0 -0
  58. package/es/app-components/upload/types.d.ts +33 -0
  59. package/es/app-components/upload/utils.d.ts +26 -0
  60. package/es/app-components/utils/index.d.ts +1 -0
  61. package/es/app-components/utils/interceptor.d.ts +6 -0
  62. package/es/components/affix/affix.js +4 -5
  63. package/es/components/affix/index.js +1 -1
  64. package/es/components/alert/alert.vue2.js +6 -3
  65. package/es/components/alert/index.js +1 -1
  66. package/es/components/autocomplete/autocomplete.vue.d.ts +6 -6
  67. package/es/components/autocomplete/autocomplete.vue2.js +25 -25
  68. package/es/components/autocomplete/index.d.ts +20 -20
  69. package/es/components/autocomplete/index.js +1 -1
  70. package/es/components/avatar/index.js +1 -1
  71. package/es/components/backtop/backtop.vue2.js +20 -20
  72. package/es/components/backtop/index.js +1 -1
  73. package/es/components/button/button-custom.d.ts +1 -0
  74. package/es/components/button/button-group.vue.d.ts +4 -10
  75. package/es/components/button/button-group.vue2.js +17 -16
  76. package/es/components/button/button.vue.d.ts +51 -13
  77. package/es/components/button/button.vue2.js +44 -47
  78. package/es/components/button/constants.d.ts +2 -6
  79. package/es/components/button/index.d.ts +52 -20
  80. package/es/components/button/index.js +1 -1
  81. package/es/components/button/mobile.d.ts +6 -0
  82. package/es/components/button/mobile.js +8 -0
  83. package/es/components/button/types.d.ts +5 -0
  84. package/es/components/button/use-button.d.ts +1 -2
  85. package/es/components/button/use-button.js +31 -29
  86. package/es/components/card/card.vue.d.ts +2 -2
  87. package/es/components/card/card.vue2.js +11 -11
  88. package/es/components/card/index.d.ts +4 -4
  89. package/es/components/card/index.js +1 -1
  90. package/es/components/carousel/carousel.vue.d.ts +12 -12
  91. package/es/components/carousel/carousel.vue2.js +6 -3
  92. package/es/components/carousel/index.d.ts +21 -21
  93. package/es/components/carousel/index.js +1 -1
  94. package/es/components/check-tag/check-tag.vue2.js +8 -8
  95. package/es/components/check-tag/index.js +1 -1
  96. package/es/components/checkbox/checkbox.vue.d.ts +8 -8
  97. package/es/components/checkbox/checkbox.vue2.js +12 -12
  98. package/es/components/checkbox/index.d.ts +19 -19
  99. package/es/components/checkbox/index.js +1 -1
  100. package/es/components/clamp/clamp.vue.d.ts +6 -6
  101. package/es/components/clamp/clamp.vue2.js +2 -2
  102. package/es/components/clamp/index.d.ts +10 -10
  103. package/es/components/clamp/index.js +1 -1
  104. package/es/components/clamp-toggle/clamp-toggle.vue2.js +17 -17
  105. package/es/components/clamp-toggle/index.js +1 -1
  106. package/es/components/col/col.vue.d.ts +12 -14
  107. package/es/components/col/col.vue2.js +21 -19
  108. package/es/components/col/index.d.ts +12 -12
  109. package/es/components/col/index.js +1 -1
  110. package/es/components/col/types.d.ts +4 -0
  111. package/es/components/collapse-transition/src/collapse-transition.vue2.js +8 -5
  112. package/es/components/color-picker/index.js +1 -1
  113. package/es/components/config-provider/config-provider.vue2.js +26 -26
  114. package/es/components/config-provider/index.js +1 -1
  115. package/es/components/container/aside.vue2.js +9 -9
  116. package/es/components/container/container.vue2.js +10 -10
  117. package/es/components/container/footer.vue2.js +5 -5
  118. package/es/components/container/header.vue2.js +15 -15
  119. package/es/components/container/index.js +1 -1
  120. package/es/components/container/main.vue2.js +7 -7
  121. package/es/components/context-menu/context-menu.vue2.js +25 -25
  122. package/es/components/date-picker/date-picker.d.ts +2 -2
  123. package/es/components/date-picker/index.d.ts +4 -4
  124. package/es/components/date-picker/props/basic-cell.js +2 -3
  125. package/es/components/date-picker/props/basic-date-table.js +2 -3
  126. package/es/components/date-picker/props/basic-month-table.js +2 -3
  127. package/es/components/date-picker/props/basic-year-table.js +4 -5
  128. package/es/components/date-picker/props/date-picker.js +2 -3
  129. package/es/components/date-picker/props/panel-date-pick.js +4 -5
  130. package/es/components/date-picker/props/panel-date-range.js +2 -3
  131. package/es/components/date-picker/props/panel-month-range.js +4 -5
  132. package/es/components/date-picker/props/shared.js +13 -14
  133. package/es/components/date-time-select/date-time-select.vue2.js +32 -32
  134. package/es/components/date-time-select/index.js +1 -1
  135. package/es/components/descriptions/description-item.vue2.js +12 -11
  136. package/es/components/descriptions/description.vue2.js +5 -5
  137. package/es/components/descriptions/descriptions-cell.js +5 -5
  138. package/es/components/descriptions/index.js +1 -1
  139. package/es/components/dialog/dialog.vue2.js +19 -19
  140. package/es/components/dialog/index.d.ts +1 -1
  141. package/es/components/dialog/index.js +1 -1
  142. package/es/components/divider/divider.vue.d.ts +5 -0
  143. package/es/components/divider/index.js +1 -1
  144. package/es/components/drawer/drawer.vue2.js +5 -5
  145. package/es/components/drawer/index.d.ts +1 -1
  146. package/es/components/drawer/index.js +1 -1
  147. package/es/components/dropdown/dropdown.vue.d.ts +18 -18
  148. package/es/components/dropdown/dropdown.vue2.js +23 -23
  149. package/es/components/dropdown/index.d.ts +30 -30
  150. package/es/components/dropdown/index.js +1 -1
  151. package/es/components/empty/empty.vue2.js +22 -22
  152. package/es/components/empty/index.js +1 -1
  153. package/es/components/exception/index.js +1 -1
  154. package/es/components/footer-layout/footer-layout.vue2.js +13 -13
  155. package/es/components/footer-layout/index.js +1 -1
  156. package/es/components/form/form-item.vue.d.ts +5 -4
  157. package/es/components/form/form-item.vue2.js +4 -5
  158. package/es/components/form/form.vue2.js +1 -1
  159. package/es/components/form/hooks/use-form-common-props.js +1 -1
  160. package/es/components/form/index.d.ts +12 -12
  161. package/es/components/form/index.js +1 -1
  162. package/es/components/full-screen/full-screen.vue2.js +15 -15
  163. package/es/components/full-screen/index.js +1 -1
  164. package/es/components/header-layout/header-layout.vue2.js +18 -18
  165. package/es/components/header-layout/index.js +1 -1
  166. package/es/components/horizontal-menu/horizontal-menu.vue2.js +46 -46
  167. package/es/components/horizontal-menu/index.js +1 -1
  168. package/es/components/icon/icon.vue2.js +12 -12
  169. package/es/components/icon/index.js +1 -1
  170. package/es/components/icon-text/icon-text.vue2.js +14 -14
  171. package/es/components/icon-text/index.js +1 -1
  172. package/es/components/iframe-layout/iframe-page.vue2.js +7 -7
  173. package/es/components/iframe-layout/index.js +1 -1
  174. package/es/components/image/index.d.ts +1 -1
  175. package/es/components/image/index.js +1 -1
  176. package/es/components/image-viewer/image-viewer.vue2.js +15 -15
  177. package/es/components/image-viewer/index.d.ts +2 -2
  178. package/es/components/image-viewer/index.js +1 -1
  179. package/es/components/input/index.d.ts +3 -3
  180. package/es/components/input/index.js +1 -1
  181. package/es/components/input/input.vue2.js +11 -12
  182. package/es/components/input-number/index.js +1 -1
  183. package/es/components/input-number/input-number.vue2.js +31 -31
  184. package/es/components/link/index.js +1 -1
  185. package/es/components/link/link.vue2.js +20 -20
  186. package/es/components/list-cell/index.js +1 -1
  187. package/es/components/list-cell/list-cell.vue2.js +14 -14
  188. package/es/components/logo/index.js +1 -1
  189. package/es/components/logo/logo.vue2.js +8 -8
  190. package/es/components/md-code-demo/index.js +1 -1
  191. package/es/components/md-code-tabs/index.js +1 -1
  192. package/es/components/md-comment/index.js +1 -1
  193. package/es/components/md-comment/md-comment.vue2.js +10 -10
  194. package/es/components/md-container/index.js +1 -1
  195. package/es/components/md-container/md-container.vue2.js +14 -14
  196. package/es/components/md-tabs/index.js +1 -1
  197. package/es/components/md-vue-playground/index.js +1 -1
  198. package/es/components/menu/index.js +1 -1
  199. package/es/components/menu/menu-item-group.vue2.js +14 -14
  200. package/es/components/menu/menu-item.vue2.js +21 -21
  201. package/es/components/menu/menu.vue2.js +21 -21
  202. package/es/components/menu/sub-menu.vue2.js +43 -43
  203. package/es/components/message/index.js +1 -1
  204. package/es/components/message/method.js +5 -5
  205. package/es/components/modal/index.js +1 -1
  206. package/es/components/modal/use/use-modal.d.ts +1 -1
  207. package/es/components/multiple-tabs/index.js +1 -1
  208. package/es/components/multiple-tabs/multiple-tabs.vue2.js +49 -49
  209. package/es/components/overlay/index.js +1 -1
  210. package/es/components/overlay/overlay.vue2.js +21 -21
  211. package/es/components/page-wrapper/index.js +1 -1
  212. package/es/components/page-wrapper/page-wrapper.vue2.js +17 -17
  213. package/es/components/pagination/components/sizes.vue2.js +3 -1
  214. package/es/components/pagination/index.js +1 -1
  215. package/es/components/pagination/pagination.vue2.js +22 -22
  216. package/es/components/popconfirm/index.d.ts +9 -9
  217. package/es/components/popconfirm/index.js +1 -1
  218. package/es/components/popconfirm/popconfirm.vue.d.ts +5 -5
  219. package/es/components/popover/index.d.ts +5 -5
  220. package/es/components/popover/index.js +1 -1
  221. package/es/components/popover/popover.vue.d.ts +2 -2
  222. package/es/components/popover/popover.vue2.js +7 -7
  223. package/es/components/popper/composables/use-content-dom.d.ts +1 -1
  224. package/es/components/popper/content.vue.d.ts +6 -6
  225. package/es/components/popper/index.js +1 -1
  226. package/es/components/progress/index.d.ts +4 -4
  227. package/es/components/progress/index.js +1 -1
  228. package/es/components/progress/progress.vue.d.ts +2 -2
  229. package/es/components/progress/progress.vue2.js +7 -7
  230. package/es/components/progress-i/index.js +1 -1
  231. package/es/components/qrcode/index.js +1 -1
  232. package/es/components/radio/index.d.ts +2 -2
  233. package/es/components/radio/index.js +1 -1
  234. package/es/components/radio/radio.vue2.js +14 -14
  235. package/es/components/result/index.js +1 -1
  236. package/es/components/result/result.vue2.js +10 -10
  237. package/es/components/router-view-content/index.js +1 -1
  238. package/es/components/row/index.d.ts +15 -37
  239. package/es/components/row/index.js +1 -1
  240. package/es/components/row/row.vue.d.ts +12 -21
  241. package/es/components/row/row.vue2.js +17 -18
  242. package/es/components/scrollbar/index.d.ts +1 -1
  243. package/es/components/scrollbar/index.js +1 -1
  244. package/es/components/scrollbar/scrollbar.vue2.js +23 -23
  245. package/es/components/search/index.d.ts +1 -1
  246. package/es/components/search/index.js +1 -1
  247. package/es/components/search/search.vue2.js +14 -14
  248. package/es/components/select/defaults.js +4 -5
  249. package/es/components/select/index.d.ts +16 -16
  250. package/es/components/select/select.vue.d.ts +8 -8
  251. package/es/components/select/useSelect.d.ts +6 -6
  252. package/es/components/select/useSelect.js +4 -4
  253. package/es/components/side-menu/index.js +1 -1
  254. package/es/components/skeleton/index.js +1 -1
  255. package/es/components/skeleton/skeleton.vue2.js +13 -13
  256. package/es/components/slider/index.js +1 -1
  257. package/es/components/slider/slider.vue2.js +1 -1
  258. package/es/components/space/index.js +1 -1
  259. package/es/components/space/item.js +1 -1
  260. package/es/components/space/space.js +11 -12
  261. package/es/components/super-form/index.d.ts +26 -60
  262. package/es/components/super-form/index.js +1 -1
  263. package/es/components/super-form/super-form-item.vue.d.ts +18 -22
  264. package/es/components/super-form/super-form-item.vue2.js +176 -175
  265. package/es/components/super-form/super-form.vue.d.ts +13 -33
  266. package/es/components/super-form/super-form.vue2.js +108 -116
  267. package/es/components/super-form/use/helper.d.ts +14 -0
  268. package/es/components/super-form/use/use-auto-focus.d.ts +1 -0
  269. package/es/components/super-form/use/use-form-context.d.ts +1 -1
  270. package/es/components/super-form/use/use-form-values.js +43 -47
  271. package/es/components/switch/index.js +1 -1
  272. package/es/components/switch/switch.vue2.js +53 -53
  273. package/es/components/table/index.d.ts +35 -35
  274. package/es/components/table/index.js +1 -1
  275. package/es/components/table/table.vue.d.ts +15 -15
  276. package/es/components/table/table.vue2.js +19 -19
  277. package/es/components/table/use/use-data-source.d.ts +5 -5
  278. package/es/components/tabs/index.js +1 -1
  279. package/es/components/tabs/tab-nav.vue2.js +30 -30
  280. package/es/components/tabs/tab-pane.vue2.js +11 -11
  281. package/es/components/tabs/tabs.vue2.js +6 -6
  282. package/es/components/tag/index.js +1 -1
  283. package/es/components/time-picker/common/picker.vue.d.ts +2 -2
  284. package/es/components/time-picker/common/props.js +2 -3
  285. package/es/components/time-picker/index.d.ts +4 -4
  286. package/es/components/time-picker/props/basic-time-spinner.js +2 -3
  287. package/es/components/time-picker/props/panel-time-picker.js +4 -5
  288. package/es/components/time-picker/props/panel-time-range.js +2 -3
  289. package/es/components/time-picker/props/shared.js +2 -3
  290. package/es/components/time-picker/time-picker.d.ts +2 -2
  291. package/es/components/time-select/time-select.js +2 -3
  292. package/es/components/time-select/time-select.vue.d.ts +1 -1
  293. package/es/components/tooltip/content.vue.d.ts +6 -6
  294. package/es/components/tooltip/index.d.ts +7 -7
  295. package/es/components/tooltip/index.js +1 -1
  296. package/es/components/tooltip/tooltip.vue.d.ts +2 -2
  297. package/es/components/upload/index.d.ts +15 -15
  298. package/es/components/upload/index.js +1 -1
  299. package/es/components/upload/upload-content.vue.d.ts +9 -9
  300. package/es/components/upload/upload.vue.d.ts +9 -9
  301. package/es/components/verify-code/index.js +1 -1
  302. package/es/components/virtual-list/components/scrollbar.js +9 -9
  303. package/es/components/virtual-list/hooks/use-grid-wheel.js +1 -1
  304. package/es/components/virtual-list/hooks/use-wheel.js +1 -1
  305. package/es/components/virtual-list/props.js +6 -7
  306. package/es/hooks/index.d.ts +0 -2
  307. package/es/hooks/index.js +46 -50
  308. package/es/hooks/use-ordered-children/index.js +5 -5
  309. package/es/index.js +286 -292
  310. package/es/package.json.d.ts +1 -1
  311. package/es/package.json.js +1 -1
  312. package/es/utils/index.d.ts +0 -1
  313. package/es/utils/index.js +36 -38
  314. package/es/utils/vue/props/runtime.js +19 -20
  315. package/lib/app-components/base/style/index.d.ts +0 -0
  316. package/lib/app-components/button/button-custom.d.ts +5 -0
  317. package/lib/app-components/button/constants.d.ts +3 -0
  318. package/lib/app-components/button/index.d.ts +5 -0
  319. package/lib/app-components/button/style/index.d.ts +0 -0
  320. package/lib/app-components/button/types.d.ts +9 -0
  321. package/lib/app-components/button/use-button.d.ts +20 -0
  322. package/lib/app-components/clamp/index.d.ts +2 -0
  323. package/lib/app-components/clamp/style/index.d.ts +0 -0
  324. package/lib/app-components/col/index.d.ts +4 -0
  325. package/lib/app-components/col/style/index.d.ts +0 -0
  326. package/lib/app-components/col/types.d.ts +11 -0
  327. package/lib/app-components/form/constants.d.ts +4 -0
  328. package/lib/app-components/form/form-label-wrap.d.ts +11 -0
  329. package/lib/app-components/form/hooks/index.d.ts +2 -0
  330. package/lib/app-components/form/hooks/use-form-common-props.d.ts +7 -0
  331. package/lib/app-components/form/hooks/use-form-item.d.ts +18 -0
  332. package/lib/app-components/form/index.d.ts +5 -0
  333. package/lib/app-components/form/style/index.d.ts +0 -0
  334. package/lib/app-components/form/types.d.ts +43 -0
  335. package/lib/app-components/form/utils.d.ts +9 -0
  336. package/lib/app-components/hooks/index.d.ts +2 -0
  337. package/lib/app-components/hooks/use-id.d.ts +9 -0
  338. package/lib/app-components/hooks/use-namespace.d.ts +22 -0
  339. package/lib/app-components/icon/index.d.ts +3 -0
  340. package/lib/app-components/icon/style/index.d.ts +0 -0
  341. package/lib/app-components/image/index.d.ts +3 -0
  342. package/lib/app-components/image/style/index.d.ts +0 -0
  343. package/lib/app-components/image/types.d.ts +13 -0
  344. package/lib/app-components/index.d.ts +11 -0
  345. package/lib/app-components/input/index.d.ts +3 -0
  346. package/lib/app-components/input/style/index.d.ts +0 -0
  347. package/lib/app-components/input/utils.d.ts +6 -0
  348. package/lib/app-components/overlay/index.d.ts +2 -0
  349. package/lib/app-components/overlay/style/index.d.ts +0 -0
  350. package/lib/app-components/popup/index.d.ts +3 -0
  351. package/lib/app-components/popup/style/index.d.ts +0 -0
  352. package/lib/app-components/popup/types.d.ts +1 -0
  353. package/lib/app-components/row/constants.d.ts +6 -0
  354. package/lib/app-components/row/index.d.ts +5 -0
  355. package/lib/app-components/row/style/index.d.ts +0 -0
  356. package/lib/app-components/row/types.d.ts +2 -0
  357. package/lib/app-components/super-form/component-map.d.ts +14 -0
  358. package/lib/app-components/super-form/index.d.ts +5 -0
  359. package/lib/app-components/super-form/style/index.d.ts +0 -0
  360. package/lib/{components → app-components}/super-form/types.d.ts +67 -27
  361. package/lib/app-components/super-form/use/helper.d.ts +17 -0
  362. package/lib/app-components/super-form/use/use-auto-focus.d.ts +11 -0
  363. package/lib/app-components/super-form/use/use-form-context.d.ts +8 -0
  364. package/{es/components → lib/app-components}/super-form/use/use-form-events.d.ts +1 -0
  365. package/{es/components → lib/app-components}/super-form/use/use-form-values.d.ts +2 -1
  366. package/lib/app-components/super-form/use/use-form.d.ts +9 -0
  367. package/lib/app-components/types.d.ts +6 -0
  368. package/lib/app-components/upload/index.d.ts +3 -0
  369. package/lib/app-components/upload/style/index.d.ts +0 -0
  370. package/lib/app-components/upload/types.d.ts +33 -0
  371. package/lib/app-components/upload/utils.d.ts +26 -0
  372. package/lib/app-components/utils/index.d.ts +1 -0
  373. package/lib/app-components/utils/interceptor.d.ts +6 -0
  374. package/lib/components/affix/affix.cjs +1 -1
  375. package/lib/components/affix/index.cjs +1 -1
  376. package/lib/components/alert/alert.vue2.cjs +1 -1
  377. package/lib/components/alert/index.cjs +1 -1
  378. package/lib/components/autocomplete/autocomplete.vue.d.ts +6 -6
  379. package/lib/components/autocomplete/autocomplete.vue2.cjs +1 -1
  380. package/lib/components/autocomplete/index.cjs +1 -1
  381. package/lib/components/autocomplete/index.d.ts +20 -20
  382. package/lib/components/avatar/index.cjs +1 -1
  383. package/lib/components/backtop/backtop.vue2.cjs +1 -1
  384. package/lib/components/backtop/index.cjs +1 -1
  385. package/lib/components/button/button-custom.d.ts +1 -0
  386. package/lib/components/button/button-group.vue.d.ts +4 -10
  387. package/lib/components/button/button-group.vue2.cjs +1 -1
  388. package/lib/components/button/button.vue.d.ts +51 -13
  389. package/lib/components/button/button.vue2.cjs +1 -1
  390. package/lib/components/button/constants.d.ts +2 -6
  391. package/lib/components/button/index.cjs +1 -1
  392. package/lib/components/button/index.d.ts +52 -20
  393. package/lib/components/button/mobile.cjs +1 -0
  394. package/lib/components/button/mobile.d.ts +6 -0
  395. package/lib/components/button/types.d.ts +5 -0
  396. package/lib/components/button/use-button.cjs +1 -1
  397. package/lib/components/button/use-button.d.ts +1 -2
  398. package/lib/components/card/card.vue.d.ts +2 -2
  399. package/lib/components/card/card.vue2.cjs +1 -1
  400. package/lib/components/card/index.cjs +1 -1
  401. package/lib/components/card/index.d.ts +4 -4
  402. package/lib/components/carousel/carousel.vue.d.ts +12 -12
  403. package/lib/components/carousel/carousel.vue2.cjs +1 -1
  404. package/lib/components/carousel/index.cjs +1 -1
  405. package/lib/components/carousel/index.d.ts +21 -21
  406. package/lib/components/check-tag/check-tag.vue2.cjs +1 -1
  407. package/lib/components/check-tag/index.cjs +1 -1
  408. package/lib/components/checkbox/checkbox.vue.d.ts +8 -8
  409. package/lib/components/checkbox/checkbox.vue2.cjs +1 -1
  410. package/lib/components/checkbox/index.cjs +1 -1
  411. package/lib/components/checkbox/index.d.ts +19 -19
  412. package/lib/components/clamp/clamp.vue.d.ts +6 -6
  413. package/lib/components/clamp/clamp.vue2.cjs +1 -1
  414. package/lib/components/clamp/index.cjs +1 -1
  415. package/lib/components/clamp/index.d.ts +10 -10
  416. package/lib/components/clamp-toggle/clamp-toggle.vue2.cjs +1 -1
  417. package/lib/components/clamp-toggle/index.cjs +1 -1
  418. package/lib/components/col/col.vue.d.ts +12 -14
  419. package/lib/components/col/col.vue2.cjs +1 -1
  420. package/lib/components/col/index.cjs +1 -1
  421. package/lib/components/col/index.d.ts +12 -12
  422. package/lib/components/col/types.d.ts +4 -0
  423. package/lib/components/collapse-transition/src/collapse-transition.vue2.cjs +1 -1
  424. package/lib/components/color-picker/index.cjs +1 -1
  425. package/lib/components/config-provider/config-provider.vue2.cjs +1 -1
  426. package/lib/components/config-provider/index.cjs +1 -1
  427. package/lib/components/container/aside.vue2.cjs +1 -1
  428. package/lib/components/container/container.vue2.cjs +1 -1
  429. package/lib/components/container/footer.vue2.cjs +1 -1
  430. package/lib/components/container/header.vue2.cjs +1 -1
  431. package/lib/components/container/index.cjs +1 -1
  432. package/lib/components/container/main.vue2.cjs +1 -1
  433. package/lib/components/context-menu/context-menu.vue2.cjs +1 -1
  434. package/lib/components/date-picker/date-picker.d.ts +2 -2
  435. package/lib/components/date-picker/index.d.ts +4 -4
  436. package/lib/components/date-picker/props/basic-cell.cjs +1 -1
  437. package/lib/components/date-picker/props/basic-date-table.cjs +1 -1
  438. package/lib/components/date-picker/props/basic-month-table.cjs +1 -1
  439. package/lib/components/date-picker/props/basic-year-table.cjs +1 -1
  440. package/lib/components/date-picker/props/date-picker.cjs +1 -1
  441. package/lib/components/date-picker/props/panel-date-pick.cjs +1 -1
  442. package/lib/components/date-picker/props/panel-date-range.cjs +1 -1
  443. package/lib/components/date-picker/props/panel-month-range.cjs +1 -1
  444. package/lib/components/date-picker/props/shared.cjs +1 -1
  445. package/lib/components/date-time-select/date-time-select.vue2.cjs +1 -1
  446. package/lib/components/date-time-select/index.cjs +1 -1
  447. package/lib/components/descriptions/description-item.vue2.cjs +1 -1
  448. package/lib/components/descriptions/description.vue2.cjs +1 -1
  449. package/lib/components/descriptions/descriptions-cell.cjs +1 -1
  450. package/lib/components/descriptions/index.cjs +1 -1
  451. package/lib/components/dialog/dialog.vue2.cjs +1 -1
  452. package/lib/components/dialog/index.cjs +1 -1
  453. package/lib/components/dialog/index.d.ts +1 -1
  454. package/lib/components/divider/divider.vue.d.ts +5 -0
  455. package/lib/components/divider/index.cjs +1 -1
  456. package/lib/components/drawer/drawer.vue2.cjs +1 -1
  457. package/lib/components/drawer/index.cjs +1 -1
  458. package/lib/components/drawer/index.d.ts +1 -1
  459. package/lib/components/dropdown/dropdown.vue.d.ts +18 -18
  460. package/lib/components/dropdown/dropdown.vue2.cjs +1 -1
  461. package/lib/components/dropdown/index.cjs +1 -1
  462. package/lib/components/dropdown/index.d.ts +30 -30
  463. package/lib/components/empty/empty.vue2.cjs +1 -1
  464. package/lib/components/empty/index.cjs +1 -1
  465. package/lib/components/exception/index.cjs +1 -1
  466. package/lib/components/footer-layout/footer-layout.vue2.cjs +1 -1
  467. package/lib/components/footer-layout/index.cjs +1 -1
  468. package/lib/components/form/form-item.vue.d.ts +5 -4
  469. package/lib/components/form/form-item.vue2.cjs +1 -1
  470. package/lib/components/form/form.vue2.cjs +1 -1
  471. package/lib/components/form/hooks/use-form-common-props.cjs +1 -1
  472. package/lib/components/form/index.cjs +1 -1
  473. package/lib/components/form/index.d.ts +12 -12
  474. package/lib/components/full-screen/full-screen.vue2.cjs +1 -1
  475. package/lib/components/full-screen/index.cjs +1 -1
  476. package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
  477. package/lib/components/header-layout/index.cjs +1 -1
  478. package/lib/components/horizontal-menu/horizontal-menu.vue2.cjs +1 -1
  479. package/lib/components/horizontal-menu/index.cjs +1 -1
  480. package/lib/components/icon/icon.vue2.cjs +1 -1
  481. package/lib/components/icon/index.cjs +1 -1
  482. package/lib/components/icon-text/icon-text.vue2.cjs +1 -1
  483. package/lib/components/icon-text/index.cjs +1 -1
  484. package/lib/components/iframe-layout/iframe-page.vue2.cjs +1 -1
  485. package/lib/components/iframe-layout/index.cjs +1 -1
  486. package/lib/components/image/index.cjs +1 -1
  487. package/lib/components/image/index.d.ts +1 -1
  488. package/lib/components/image-viewer/image-viewer.vue2.cjs +1 -1
  489. package/lib/components/image-viewer/index.cjs +1 -1
  490. package/lib/components/image-viewer/index.d.ts +2 -2
  491. package/lib/components/input/index.cjs +1 -1
  492. package/lib/components/input/index.d.ts +3 -3
  493. package/lib/components/input/input.vue2.cjs +1 -1
  494. package/lib/components/input-number/index.cjs +1 -1
  495. package/lib/components/input-number/input-number.vue2.cjs +1 -1
  496. package/lib/components/link/index.cjs +1 -1
  497. package/lib/components/link/link.vue2.cjs +1 -1
  498. package/lib/components/list-cell/index.cjs +1 -1
  499. package/lib/components/list-cell/list-cell.vue2.cjs +1 -1
  500. package/lib/components/logo/index.cjs +1 -1
  501. package/lib/components/logo/logo.vue2.cjs +1 -1
  502. package/lib/components/md-code-demo/index.cjs +1 -1
  503. package/lib/components/md-code-tabs/index.cjs +1 -1
  504. package/lib/components/md-comment/index.cjs +1 -1
  505. package/lib/components/md-comment/md-comment.vue2.cjs +1 -1
  506. package/lib/components/md-container/index.cjs +1 -1
  507. package/lib/components/md-container/md-container.vue2.cjs +1 -1
  508. package/lib/components/md-tabs/index.cjs +1 -1
  509. package/lib/components/md-vue-playground/index.cjs +1 -1
  510. package/lib/components/menu/index.cjs +1 -1
  511. package/lib/components/menu/menu-item-group.vue2.cjs +1 -1
  512. package/lib/components/menu/menu-item.vue2.cjs +1 -1
  513. package/lib/components/menu/menu.vue2.cjs +1 -1
  514. package/lib/components/menu/sub-menu.vue2.cjs +1 -1
  515. package/lib/components/message/index.cjs +1 -1
  516. package/lib/components/message/method.cjs +1 -1
  517. package/lib/components/modal/index.cjs +1 -1
  518. package/lib/components/modal/use/use-modal.d.ts +1 -1
  519. package/lib/components/multiple-tabs/index.cjs +1 -1
  520. package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
  521. package/lib/components/overlay/index.cjs +1 -1
  522. package/lib/components/overlay/overlay.vue2.cjs +1 -1
  523. package/lib/components/page-wrapper/index.cjs +1 -1
  524. package/lib/components/page-wrapper/page-wrapper.vue2.cjs +1 -1
  525. package/lib/components/pagination/index.cjs +1 -1
  526. package/lib/components/pagination/pagination.vue2.cjs +1 -1
  527. package/lib/components/popconfirm/index.cjs +1 -1
  528. package/lib/components/popconfirm/index.d.ts +9 -9
  529. package/lib/components/popconfirm/popconfirm.vue.d.ts +5 -5
  530. package/lib/components/popover/index.cjs +1 -1
  531. package/lib/components/popover/index.d.ts +5 -5
  532. package/lib/components/popover/popover.vue.d.ts +2 -2
  533. package/lib/components/popover/popover.vue2.cjs +1 -1
  534. package/lib/components/popper/composables/use-content-dom.d.ts +1 -1
  535. package/lib/components/popper/content.vue.d.ts +6 -6
  536. package/lib/components/popper/index.cjs +1 -1
  537. package/lib/components/progress/index.cjs +1 -1
  538. package/lib/components/progress/index.d.ts +4 -4
  539. package/lib/components/progress/progress.vue.d.ts +2 -2
  540. package/lib/components/progress/progress.vue2.cjs +1 -1
  541. package/lib/components/progress-i/index.cjs +1 -1
  542. package/lib/components/qrcode/index.cjs +1 -1
  543. package/lib/components/radio/index.cjs +1 -1
  544. package/lib/components/radio/index.d.ts +2 -2
  545. package/lib/components/radio/radio.vue2.cjs +1 -1
  546. package/lib/components/result/index.cjs +1 -1
  547. package/lib/components/result/result.vue2.cjs +1 -1
  548. package/lib/components/router-view-content/index.cjs +1 -1
  549. package/lib/components/row/index.cjs +1 -1
  550. package/lib/components/row/index.d.ts +15 -37
  551. package/lib/components/row/row.vue.d.ts +12 -21
  552. package/lib/components/row/row.vue2.cjs +1 -1
  553. package/lib/components/scrollbar/index.cjs +1 -1
  554. package/lib/components/scrollbar/index.d.ts +1 -1
  555. package/lib/components/scrollbar/scrollbar.vue2.cjs +1 -1
  556. package/lib/components/search/index.cjs +1 -1
  557. package/lib/components/search/index.d.ts +1 -1
  558. package/lib/components/search/search.vue2.cjs +1 -1
  559. package/lib/components/select/defaults.cjs +1 -1
  560. package/lib/components/select/index.d.ts +16 -16
  561. package/lib/components/select/select.vue.d.ts +8 -8
  562. package/lib/components/select/useSelect.cjs +1 -1
  563. package/lib/components/select/useSelect.d.ts +6 -6
  564. package/lib/components/side-menu/index.cjs +1 -1
  565. package/lib/components/skeleton/index.cjs +1 -1
  566. package/lib/components/skeleton/skeleton.vue2.cjs +1 -1
  567. package/lib/components/slider/index.cjs +1 -1
  568. package/lib/components/slider/slider.vue2.cjs +1 -1
  569. package/lib/components/space/index.cjs +1 -1
  570. package/lib/components/space/item.cjs +1 -1
  571. package/lib/components/space/space.cjs +1 -1
  572. package/lib/components/super-form/index.cjs +1 -1
  573. package/lib/components/super-form/index.d.ts +26 -60
  574. package/lib/components/super-form/super-form-item.vue.d.ts +18 -22
  575. package/lib/components/super-form/super-form-item.vue2.cjs +1 -1
  576. package/lib/components/super-form/super-form.vue.d.ts +13 -33
  577. package/lib/components/super-form/super-form.vue2.cjs +1 -1
  578. package/lib/components/super-form/use/helper.d.ts +14 -0
  579. package/lib/components/super-form/use/use-auto-focus.d.ts +1 -0
  580. package/lib/components/super-form/use/use-form-context.d.ts +1 -1
  581. package/lib/components/super-form/use/use-form-values.cjs +1 -1
  582. package/lib/components/switch/index.cjs +1 -1
  583. package/lib/components/switch/switch.vue2.cjs +1 -1
  584. package/lib/components/table/index.cjs +1 -1
  585. package/lib/components/table/index.d.ts +35 -35
  586. package/lib/components/table/table.vue.d.ts +15 -15
  587. package/lib/components/table/table.vue2.cjs +1 -1
  588. package/lib/components/table/use/use-data-source.d.ts +5 -5
  589. package/lib/components/tabs/index.cjs +1 -1
  590. package/lib/components/tabs/tab-nav.vue2.cjs +1 -1
  591. package/lib/components/tabs/tab-pane.vue2.cjs +1 -1
  592. package/lib/components/tabs/tabs.vue2.cjs +1 -1
  593. package/lib/components/tag/index.cjs +1 -1
  594. package/lib/components/time-picker/common/picker.vue.d.ts +2 -2
  595. package/lib/components/time-picker/common/props.cjs +1 -1
  596. package/lib/components/time-picker/index.d.ts +4 -4
  597. package/lib/components/time-picker/props/basic-time-spinner.cjs +1 -1
  598. package/lib/components/time-picker/props/panel-time-picker.cjs +1 -1
  599. package/lib/components/time-picker/props/panel-time-range.cjs +1 -1
  600. package/lib/components/time-picker/props/shared.cjs +1 -1
  601. package/lib/components/time-picker/time-picker.d.ts +2 -2
  602. package/lib/components/time-select/time-select.cjs +1 -1
  603. package/lib/components/time-select/time-select.vue.d.ts +1 -1
  604. package/lib/components/tooltip/content.vue.d.ts +6 -6
  605. package/lib/components/tooltip/index.cjs +1 -1
  606. package/lib/components/tooltip/index.d.ts +7 -7
  607. package/lib/components/tooltip/tooltip.vue.d.ts +2 -2
  608. package/lib/components/upload/index.cjs +1 -1
  609. package/lib/components/upload/index.d.ts +15 -15
  610. package/lib/components/upload/upload-content.vue.d.ts +9 -9
  611. package/lib/components/upload/upload.vue.d.ts +9 -9
  612. package/lib/components/verify-code/index.cjs +1 -1
  613. package/lib/components/virtual-list/components/scrollbar.cjs +1 -1
  614. package/lib/components/virtual-list/hooks/use-grid-wheel.cjs +1 -1
  615. package/lib/components/virtual-list/hooks/use-wheel.cjs +1 -1
  616. package/lib/components/virtual-list/props.cjs +1 -1
  617. package/lib/hooks/index.cjs +1 -1
  618. package/lib/hooks/index.d.ts +0 -2
  619. package/lib/hooks/use-ordered-children/index.cjs +1 -1
  620. package/lib/index.cjs +1 -1
  621. package/lib/package.json.cjs +1 -1
  622. package/lib/package.json.d.ts +1 -1
  623. package/lib/utils/index.cjs +1 -1
  624. package/lib/utils/index.d.ts +0 -1
  625. package/lib/utils/vue/props/runtime.cjs +1 -1
  626. package/package.json +7 -7
  627. package/theme-style/base.css +1 -1
  628. package/theme-style/dark/css-vars.css +1 -1
  629. package/theme-style/index.css +1 -1
  630. package/theme-style/src/alert.scss +35 -35
  631. package/theme-style/src/avatar.scss +15 -16
  632. package/theme-style/src/backtop.scss +6 -5
  633. package/theme-style/src/button.scss +90 -90
  634. package/theme-style/src/col.scss +0 -1
  635. package/theme-style/src/color-picker.scss +45 -45
  636. package/theme-style/src/common/transition.scss +23 -30
  637. package/theme-style/src/common/var.scss +1137 -1196
  638. package/theme-style/src/dark/css-vars.scss +3 -4
  639. package/theme-style/src/dark/var.scss +56 -60
  640. package/theme-style/src/date-picker/date-picker.scss +29 -26
  641. package/theme-style/src/date-picker/time-spinner.scss +16 -12
  642. package/theme-style/src/date-picker.scss +0 -1
  643. package/theme-style/src/descriptions-item.scss +22 -19
  644. package/theme-style/src/descriptions.scss +35 -41
  645. package/theme-style/src/dialog.scss +16 -11
  646. package/theme-style/src/empty.scss +9 -10
  647. package/theme-style/src/form.scss +42 -39
  648. package/theme-style/src/full-screen.scss +2 -2
  649. package/theme-style/src/header-layout.scss +2 -1
  650. package/theme-style/src/horizontal-menu.scss +11 -11
  651. package/theme-style/src/icon-text.scss +5 -5
  652. package/theme-style/src/icon.scss +1 -1
  653. package/theme-style/src/image-viewer.scss +21 -12
  654. package/theme-style/src/input-number.scss +56 -57
  655. package/theme-style/src/input.scss +156 -145
  656. package/theme-style/src/link.scss +36 -37
  657. package/theme-style/src/list-cell.scss +8 -9
  658. package/theme-style/src/loading.scss +6 -2
  659. package/theme-style/src/logo.scss +0 -3
  660. package/theme-style/src/md/api.scss +2 -1
  661. package/theme-style/src/md/blockquote.scss +3 -3
  662. package/theme-style/src/md/code.scss +13 -15
  663. package/theme-style/src/md/demo-block.scss +6 -3
  664. package/theme-style/src/md/helper.scss +1 -1
  665. package/theme-style/src/md/link.scss +11 -7
  666. package/theme-style/src/md/one-light.scss +3 -3
  667. package/theme-style/src/md/pswp.scss +13 -16
  668. package/theme-style/src/md/svg.scss +10 -1
  669. package/theme-style/src/md/table.scss +0 -1
  670. package/theme-style/src/md/tasklist.scss +10 -21
  671. package/theme-style/src/md/title.scss +2 -1
  672. package/theme-style/src/md/toc.scss +10 -17
  673. package/theme-style/src/md-code-demo.scss +11 -37
  674. package/theme-style/src/md-code-tabs.scss +10 -18
  675. package/theme-style/src/md-comment.scss +384 -333
  676. package/theme-style/src/md-container.scss +66 -56
  677. package/theme-style/src/md-tabs.scss +9 -22
  678. package/theme-style/src/md-vue-playground.scss +234 -128
  679. package/theme-style/src/menu.scss +72 -56
  680. package/theme-style/src/message.scss +52 -37
  681. package/theme-style/src/mixins/_var.scss +18 -7
  682. package/theme-style/src/mixins/function.scss +5 -1
  683. package/theme-style/src/mixins/icon.scss +9 -9
  684. package/theme-style/src/mixins/mixins.scss +57 -21
  685. package/theme-style/src/multiple-tabs.scss +13 -7
  686. package/theme-style/src/pagination.scss +53 -48
  687. package/theme-style/src/popconfirm.scss +3 -1
  688. package/theme-style/src/progress.scss +20 -6
  689. package/theme-style/src/select.scss +75 -72
  690. package/theme-style/src/side-menu.scss +13 -10
  691. package/theme-style/src/skeleton-item.scss +3 -4
  692. package/theme-style/src/super-form.scss +2 -1
  693. package/theme-style/src/switch.scss +59 -63
  694. package/theme-style/src/table.scss +55 -40
  695. package/theme-style/src/tabs.scss +68 -47
  696. package/theme-style/src/tree.scss +15 -10
  697. package/theme-style/src/upload.scss +79 -82
  698. package/theme-style/src/var.scss +8 -5
  699. package/theme-style/vft-alert.css +1 -1
  700. package/theme-style/vft-autocomplete.css +1 -1
  701. package/theme-style/vft-avatar.css +1 -1
  702. package/theme-style/vft-backtop.css +1 -1
  703. package/theme-style/vft-button.css +1 -1
  704. package/theme-style/vft-cascader.css +1 -1
  705. package/theme-style/vft-clamp-toggle.css +1 -1
  706. package/theme-style/vft-collapse.css +1 -1
  707. package/theme-style/vft-color-picker.css +1 -1
  708. package/theme-style/vft-date-picker.css +1 -1
  709. package/theme-style/vft-date-time-select.css +1 -1
  710. package/theme-style/vft-descriptions-item.css +1 -1
  711. package/theme-style/vft-descriptions.css +1 -1
  712. package/theme-style/vft-dialog.css +1 -1
  713. package/theme-style/vft-drawer.css +1 -1
  714. package/theme-style/vft-dropdown.css +1 -1
  715. package/theme-style/vft-empty.css +1 -1
  716. package/theme-style/vft-form.css +1 -1
  717. package/theme-style/vft-full-screen.css +1 -1
  718. package/theme-style/vft-horizontal-menu.css +1 -1
  719. package/theme-style/vft-icon-text.css +1 -1
  720. package/theme-style/vft-image-viewer.css +1 -1
  721. package/theme-style/vft-input-number.css +1 -1
  722. package/theme-style/vft-input.css +1 -1
  723. package/theme-style/vft-link.css +1 -1
  724. package/theme-style/vft-list-cell.css +1 -1
  725. package/theme-style/vft-loading.css +1 -1
  726. package/theme-style/vft-logo.css +1 -1
  727. package/theme-style/vft-md-code-tabs.css +1 -1
  728. package/theme-style/vft-md-comment.css +1 -1
  729. package/theme-style/vft-md-container.css +1 -1
  730. package/theme-style/vft-md-tabs.css +1 -1
  731. package/theme-style/vft-md-vue-playground.css +1 -1
  732. package/theme-style/vft-menu.css +1 -1
  733. package/theme-style/vft-message.css +1 -1
  734. package/theme-style/vft-multiple-tabs.css +1 -1
  735. package/theme-style/vft-pagination.css +1 -1
  736. package/theme-style/vft-popconfirm.css +1 -1
  737. package/theme-style/vft-progress.css +1 -1
  738. package/theme-style/vft-select.css +1 -1
  739. package/theme-style/vft-side-menu.css +1 -1
  740. package/theme-style/vft-skeleton-item.css +1 -1
  741. package/theme-style/vft-switch.css +1 -1
  742. package/theme-style/vft-table.css +1 -1
  743. package/theme-style/vft-tabs.css +1 -1
  744. package/theme-style/vft-tag.css +1 -1
  745. package/theme-style/vft-time-picker.css +1 -1
  746. package/theme-style/vft-time-select.css +1 -1
  747. package/theme-style/vft-transfer.css +1 -1
  748. package/theme-style/vft-tree.css +1 -1
  749. package/theme-style/vft-upload.css +1 -1
  750. package/theme-style/vft-var.css +1 -1
  751. package/web-types.json +1 -1
  752. package/es/components/button/instance.d.ts +0 -4
  753. package/es/components/button/instance.js +0 -1
  754. package/es/components/button/mobile/button.vue.d.ts +0 -2
  755. package/es/components/button/mobile/button.vue.js +0 -10
  756. package/es/components/context-menu/types.d.ts +0 -23
  757. package/es/components/dropdown/types.d.ts +0 -251
  758. package/es/components/popover/types.d.ts +0 -26
  759. package/es/components/popper/types.d.ts +0 -45
  760. package/es/components/qrcode/types.d.ts +0 -31
  761. package/es/components/table/types.d.ts +0 -55
  762. package/es/components/tooltip/types.d.ts +0 -53
  763. package/es/hooks/use-cursor/index.d.ts +0 -2
  764. package/es/hooks/use-cursor/index.js +0 -40
  765. package/es/hooks/use-prop/index.d.ts +0 -2
  766. package/es/hooks/use-prop/index.js +0 -11
  767. package/es/utils/ns-cover.d.ts +0 -16
  768. package/es/utils/objects.d.ts +0 -4
  769. package/es/utils/objects.js +0 -12
  770. package/lib/components/button/instance.cjs +0 -1
  771. package/lib/components/button/instance.d.ts +0 -4
  772. package/lib/components/button/mobile/button.vue.cjs +0 -1
  773. package/lib/components/button/mobile/button.vue.d.ts +0 -2
  774. package/lib/components/context-menu/types.d.ts +0 -23
  775. package/lib/components/dropdown/types.d.ts +0 -251
  776. package/lib/components/popover/types.d.ts +0 -26
  777. package/lib/components/popper/types.d.ts +0 -45
  778. package/lib/components/qrcode/types.d.ts +0 -31
  779. package/lib/components/table/types.d.ts +0 -55
  780. package/lib/components/tooltip/types.d.ts +0 -53
  781. package/lib/hooks/use-cursor/index.cjs +0 -1
  782. package/lib/hooks/use-cursor/index.d.ts +0 -2
  783. package/lib/hooks/use-prop/index.cjs +0 -1
  784. package/lib/hooks/use-prop/index.d.ts +0 -2
  785. package/lib/utils/ns-cover.d.ts +0 -16
  786. package/lib/utils/objects.cjs +0 -1
  787. package/lib/utils/objects.d.ts +0 -4
@@ -1 +1 @@
1
- .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;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;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;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{padding-inline-start:0;font-size:14px}.vft-md-container #toc .toc-link.level3{padding-inline-start:8px;font-size:13px}.vft-md-container #toc .toc-link.level4{padding-inline-start:16px;font-size:12px}.vft-md-container #toc .toc-link.level5{padding-inline-start:24px;font-size:11px}.vft-md-container #toc .toc-link.level6{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;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{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{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;padding-inline-start:4rem;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;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;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}.vft-md-container .icon-reading{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="48" height="48" viewBox="0 0 48 48"%3E%3Cpath fill="%235C6BC0" d="M40 40c-6.9 0-16 4-16 4V22s9-4 18-4l-2 22z"%2F%3E%3Cpath fill="%237986CB" d="M8 40c6.9 0 16 4 16 4V22s-9-4-18-4l2 22z"%2F%3E%3Cg fill="%23FFB74D"%3E%3Ccircle cx="24" cy="12" r="8"%2F%3E%3Cpath d="M41 32h1c.6 0 1-.4 1-1v-4c0-.6-.4-1-1-1h-1c-1.7 0-3 1.3-3 3s1.3 3 3 3zM7 26H6c-.6 0-1 .4-1 1v4c0 .6.4 1 1 1h1c1.7 0 3-1.3 3-3s-1.3-3-3-3z"%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="48" height="48" viewBox="0 0 48 48"%3E%3Cpath fill="%235C6BC0" d="M40 40c-6.9 0-16 4-16 4V22s9-4 18-4l-2 22z"%2F%3E%3Cpath fill="%237986CB" d="M8 40c6.9 0 16 4 16 4V22s-9-4-18-4l2 22z"%2F%3E%3Cg fill="%23FFB74D"%3E%3Ccircle cx="24" cy="12" r="8"%2F%3E%3Cpath d="M41 32h1c.6 0 1-.4 1-1v-4c0-.6-.4-1-1-1h-1c-1.7 0-3 1.3-3 3s1.3 3 3 3zM7 26H6c-.6 0-1 .4-1 1v4c0 .6.4 1 1 1h1c1.7 0 3-1.3 3-3s-1.3-3-3-3z"%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-md-container .icon-category{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M10 3H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zM9 9H5V5h4v4zm11-6h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zm-1 6h-4V5h4v4zm-9 4H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1zm-1 6H5v-4h4v4zm8-6c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4s-1.794-4-4-4zm0 6c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M10 3H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zM9 9H5V5h4v4zm11-6h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zm-1 6h-4V5h4v4zm-9 4H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1zm-1 6H5v-4h4v4zm8-6c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4s-1.794-4-4-4zm0 6c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-md-container .icon-date{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" viewBox="0 0 20 20"%3E%3Cpath fill="currentColor" d="M5.673 0a.7.7 0 0 1 .7.7v1.309h7.517v-1.3a.7.7 0 0 1 1.4 0v1.3H18a2 2 0 0 1 2 1.999v13.993A2 2 0 0 1 18 20H2a2 2 0 0 1-2-1.999V4.008a2 2 0 0 1 2-1.999h2.973V.699a.7.7 0 0 1 .7-.699ZM1.4 7.742v10.259a.6.6 0 0 0 .6.6h16a.6.6 0 0 0 .6-.6V7.756L1.4 7.742Zm5.267 6.877v1.666H5v-1.666h1.667Zm4.166 0v1.666H9.167v-1.666h1.666Zm4.167 0v1.666h-1.667v-1.666H15Zm-8.333-3.977v1.666H5v-1.666h1.667Zm4.166 0v1.666H9.167v-1.666h1.666Zm4.167 0v1.666h-1.667v-1.666H15ZM4.973 3.408H2a.6.6 0 0 0-.6.6v2.335l17.2.014V4.008a.6.6 0 0 0-.6-.6h-2.71v.929a.7.7 0 0 1-1.4 0v-.929H6.373v.92a.7.7 0 0 1-1.4 0v-.92Z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" viewBox="0 0 20 20"%3E%3Cpath fill="currentColor" d="M5.673 0a.7.7 0 0 1 .7.7v1.309h7.517v-1.3a.7.7 0 0 1 1.4 0v1.3H18a2 2 0 0 1 2 1.999v13.993A2 2 0 0 1 18 20H2a2 2 0 0 1-2-1.999V4.008a2 2 0 0 1 2-1.999h2.973V.699a.7.7 0 0 1 .7-.699ZM1.4 7.742v10.259a.6.6 0 0 0 .6.6h16a.6.6 0 0 0 .6-.6V7.756L1.4 7.742Zm5.267 6.877v1.666H5v-1.666h1.667Zm4.166 0v1.666H9.167v-1.666h1.666Zm4.167 0v1.666h-1.667v-1.666H15Zm-8.333-3.977v1.666H5v-1.666h1.667Zm4.166 0v1.666H9.167v-1.666h1.666Zm4.167 0v1.666h-1.667v-1.666H15ZM4.973 3.408H2a.6.6 0 0 0-.6.6v2.335l17.2.014V4.008a.6.6 0 0 0-.6-.6h-2.71v.929a.7.7 0 0 1-1.4 0v-.929H6.373v.92a.7.7 0 0 1-1.4 0v-.92Z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-md-container .icon-jsfiddle{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="32" height="32" viewBox="0 0 32 32"%3E%3Cpath fill="currentColor" d="M28.104 15a6.49 6.49 0 0 0 .027-.557c0-5.177-4.256-9.375-9.511-9.375a9.513 9.513 0 0 0-8.589 5.344a4.388 4.388 0 0 0-2.676-.907c-2.428 0-4.391 1.932-4.391 4.317c0 .453.067.885.197 1.292A6.31 6.31 0 0 0 0 20.573c0 3.468 2.833 6.287 6.344 6.339h19c.12 0 .24.02.359.02c3.48 0 6.303-2.776 6.303-6.219A6.214 6.214 0 0 0 28.126 15zM8.588 22.136c-.64-.579-1.041-1.276-1.197-2.105a4.481 4.481 0 0 1-.084-.869c0-1.183.433-2.151 1.292-2.916c.86-.772 1.948-1.157 3.271-1.157c1.36 0 2.641.511 3.776 1.532c.281.249.557.536.819.853l1.453 1.715c.255.343.52.635.801.891c.751.671 1.563 1.009 2.251 1.009c.583 0 1.067-.181 1.457-.536c.328-.307.537-.719.579-1.167l.011-.197c0-.188-.032-.376-.089-.552a2.034 2.034 0 0 0-1.973-1.339c-.724 0-1.443.244-2.235 1.009l-1.287-1.52l-.14-.172c1.14-1.104 2.26-1.521 3.781-1.521c1.339 0 2.437.38 3.249 1.141l.027.02c.859.761 1.276 1.74 1.276 2.943c0 .281-.021.584-.079.839c-.161.824-.563 1.5-1.183 2.084a4.312 4.312 0 0 1-2.276 1.077a6.538 6.538 0 0 1-.943.057c-1.375 0-2.676-.5-3.776-1.495a8.493 8.493 0 0 1-.859-.921l-1.459-1.699a5.352 5.352 0 0 0-.781-.9c-.74-.677-1.557-1-2.276-1c-.208 0-.416.031-.62.083c-.312.079-.604.24-.839.459a1.828 1.828 0 0 0-.583 1.344c0 .515.183.957.563 1.312l.02.027c.401.359.901.536 1.48.536c.739 0 1.457-.26 2.235-1.021l1.28 1.5l.141.161c-1.161 1.12-2.276 1.537-3.74 1.537c-1.339 0-2.437-.38-3.276-1.141z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="32" height="32" viewBox="0 0 32 32"%3E%3Cpath fill="currentColor" d="M28.104 15a6.49 6.49 0 0 0 .027-.557c0-5.177-4.256-9.375-9.511-9.375a9.513 9.513 0 0 0-8.589 5.344a4.388 4.388 0 0 0-2.676-.907c-2.428 0-4.391 1.932-4.391 4.317c0 .453.067.885.197 1.292A6.31 6.31 0 0 0 0 20.573c0 3.468 2.833 6.287 6.344 6.339h19c.12 0 .24.02.359.02c3.48 0 6.303-2.776 6.303-6.219A6.214 6.214 0 0 0 28.126 15zM8.588 22.136c-.64-.579-1.041-1.276-1.197-2.105a4.481 4.481 0 0 1-.084-.869c0-1.183.433-2.151 1.292-2.916c.86-.772 1.948-1.157 3.271-1.157c1.36 0 2.641.511 3.776 1.532c.281.249.557.536.819.853l1.453 1.715c.255.343.52.635.801.891c.751.671 1.563 1.009 2.251 1.009c.583 0 1.067-.181 1.457-.536c.328-.307.537-.719.579-1.167l.011-.197c0-.188-.032-.376-.089-.552a2.034 2.034 0 0 0-1.973-1.339c-.724 0-1.443.244-2.235 1.009l-1.287-1.52l-.14-.172c1.14-1.104 2.26-1.521 3.781-1.521c1.339 0 2.437.38 3.249 1.141l.027.02c.859.761 1.276 1.74 1.276 2.943c0 .281-.021.584-.079.839c-.161.824-.563 1.5-1.183 2.084a4.312 4.312 0 0 1-2.276 1.077a6.538 6.538 0 0 1-.943.057c-1.375 0-2.676-.5-3.776-1.495a8.493 8.493 0 0 1-.859-.921l-1.459-1.699a5.352 5.352 0 0 0-.781-.9c-.74-.677-1.557-1-2.276-1c-.208 0-.416.031-.62.083c-.312.079-.604.24-.839.459a1.828 1.828 0 0 0-.583 1.344c0 .515.183.957.563 1.312l.02.027c.401.359.901.536 1.48.536c.739 0 1.457-.26 2.235-1.021l1.28 1.5l.141.161c-1.161 1.12-2.276 1.537-3.74 1.537c-1.339 0-2.437-.38-3.276-1.141z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-md-container .icon-codepen{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="m8.21 12l-1.33.89v-1.78l1.33.89m3.26-2.18V7.34l-4.16 2.78l1.85 1.24l2.31-1.54m5.23.3l-4.17-2.78v2.48l2.31 1.54l1.86-1.24m-9.39 3.76l4.16 2.78v-2.48l-2.31-1.54l-1.85 1.24m5.22.3v2.48l4.17-2.78l-1.86-1.24l-2.31 1.54M12 10.74L10.12 12L12 13.26L13.88 12L12 10.74M22 12c0 5.5-4.5 10-10 10S2 17.5 2 12S6.5 2 12 2s10 4.5 10 10m-3.82-1.88v-.07l-.01-.05l-.01-.05c-.01-.01-.01-.02-.02-.04l-.01-.02l-.02-.04l-.01-.02l-.02-.03l-.02-.03l-.03-.03l-.03-.02V9.7l-.04-.02l-.01-.01l-5.65-3.76a.528.528 0 0 0-.59 0L6.05 9.67v.01L6 9.7v.02l-.03.02l-.03.03l-.01.03l-.03.03l-.01.02l-.02.04l-.01.02l-.02.04V10h-.01l-.01.05v3.9l.01.05h.01v.05c.01.01.01.02.02.04l.01.02l.02.04l.01.02l.02.03l.02.03l.03.03l.03.02v.02l.04.02l.01.01l5.66 3.77c.08.06.19.08.29.08c.1 0 .21-.03.3-.08l5.65-3.77l.01-.01l.04-.02v-.02l.03-.02l.03-.03l.02-.03l.02-.03l.01-.02l.02-.04l.01-.02l.02-.04V14h.01l.01-.05v-3.83m-1.06 2.77v-1.78l-1.33.89l1.33.89Z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="m8.21 12l-1.33.89v-1.78l1.33.89m3.26-2.18V7.34l-4.16 2.78l1.85 1.24l2.31-1.54m5.23.3l-4.17-2.78v2.48l2.31 1.54l1.86-1.24m-9.39 3.76l4.16 2.78v-2.48l-2.31-1.54l-1.85 1.24m5.22.3v2.48l4.17-2.78l-1.86-1.24l-2.31 1.54M12 10.74L10.12 12L12 13.26L13.88 12L12 10.74M22 12c0 5.5-4.5 10-10 10S2 17.5 2 12S6.5 2 12 2s10 4.5 10 10m-3.82-1.88v-.07l-.01-.05l-.01-.05c-.01-.01-.01-.02-.02-.04l-.01-.02l-.02-.04l-.01-.02l-.02-.03l-.02-.03l-.03-.03l-.03-.02V9.7l-.04-.02l-.01-.01l-5.65-3.76a.528.528 0 0 0-.59 0L6.05 9.67v.01L6 9.7v.02l-.03.02l-.03.03l-.01.03l-.03.03l-.01.02l-.02.04l-.01.02l-.02.04V10h-.01l-.01.05v3.9l.01.05h.01v.05c.01.01.01.02.02.04l.01.02l.02.04l.01.02l.02.03l.02.03l.03.03l.03.02v.02l.04.02l.01.01l5.66 3.77c.08.06.19.08.29.08c.1 0 .21-.03.3-.08l5.65-3.77l.01-.01l.04-.02v-.02l.03-.02l.03-.03l.02-.03l.02-.03l.01-.02l.02-.04l.01-.02l.02-.04V14h.01l.01-.05v-3.83m-1.06 2.77v-1.78l-1.33.89l1.33.89Z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-md-container .icon-expand-alt{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M5 12H3v9h9v-2H5zm7-7h7v7h2V3h-9z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M5 12H3v9h9v-2H5zm7-7h7v7h2V3h-9z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-md-container .icon-collapse-alt{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M2 15h7v7h2v-9H2v2zM15 2h-2v9h9V9h-7V2z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M2 15h7v7h2v-9H2v2zM15 2h-2v9h9V9h-7V2z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-md-container .icon-clock{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 896a384 384 0 1 0 0-768a384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896a448 448 0 0 1 0 896z"%2F%3E%3Cpath fill="currentColor" d="M480 256a32 32 0 0 1 32 32v256a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32z"%2F%3E%3Cpath fill="currentColor" d="M480 512h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 896a384 384 0 1 0 0-768a384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896a448 448 0 0 1 0 896z"%2F%3E%3Cpath fill="currentColor" d="M480 256a32 32 0 0 1 32 32v256a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32z"%2F%3E%3Cpath fill="currentColor" d="M480 512h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-md-container .icon-calendar{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M128 384v512h768V192H768v32a32 32 0 1 1-64 0v-32H320v32a32 32 0 0 1-64 0v-32H128v128h768v64H128zm192-256h384V96a32 32 0 1 1 64 0v32h160a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h160V96a32 32 0 0 1 64 0v32zm-32 384h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M128 384v512h768V192H768v32a32 32 0 1 1-64 0v-32H320v32a32 32 0 0 1-64 0v-32H128v128h768v64H128zm192-256h384V96a32 32 0 1 1 64 0v32h160a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h160V96a32 32 0 0 1 64 0v32zm-32 384h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}
1
+ .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{transition:var(--vft-transition-md-fade);opacity:1;transform:scaleY(1);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-top-fast-enter-active{transition:var(--vft-transition-md-fade);opacity:1;transform:scaleY(1);transform-origin:center top}.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;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:#2196f3;--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;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;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{padding-inline-start:0;font-size:14px}.vft-md-container #toc .toc-link.level3{padding-inline-start:8px;font-size:13px}.vft-md-container #toc .toc-link.level4{padding-inline-start:16px;font-size:12px}.vft-md-container #toc .toc-link.level5{padding-inline-start:24px;font-size:11px}.vft-md-container #toc .toc-link.level6{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;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}.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{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{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;padding-inline-start:4rem;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;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;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::-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__content{max-width:var(--vft-md-container-content-max-width);min-width:300px}.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 .reading{display:flex;align-items:center;font-size:14px}.vft-md-container .icon-reading{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="48" height="48" viewBox="0 0 48 48"%3E%3Cpath fill="%235C6BC0" d="M40 40c-6.9 0-16 4-16 4V22s9-4 18-4l-2 22z"%2F%3E%3Cpath fill="%237986CB" d="M8 40c6.9 0 16 4 16 4V22s-9-4-18-4l2 22z"%2F%3E%3Cg fill="%23FFB74D"%3E%3Ccircle cx="24" cy="12" r="8"%2F%3E%3Cpath d="M41 32h1c.6 0 1-.4 1-1v-4c0-.6-.4-1-1-1h-1c-1.7 0-3 1.3-3 3s1.3 3 3 3zM7 26H6c-.6 0-1 .4-1 1v4c0 .6.4 1 1 1h1c1.7 0 3-1.3 3-3s-1.3-3-3-3z"%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="48" height="48" viewBox="0 0 48 48"%3E%3Cpath fill="%235C6BC0" d="M40 40c-6.9 0-16 4-16 4V22s9-4 18-4l-2 22z"%2F%3E%3Cpath fill="%237986CB" d="M8 40c6.9 0 16 4 16 4V22s-9-4-18-4l2 22z"%2F%3E%3Cg fill="%23FFB74D"%3E%3Ccircle cx="24" cy="12" r="8"%2F%3E%3Cpath d="M41 32h1c.6 0 1-.4 1-1v-4c0-.6-.4-1-1-1h-1c-1.7 0-3 1.3-3 3s1.3 3 3 3zM7 26H6c-.6 0-1 .4-1 1v4c0 .6.4 1 1 1h1c1.7 0 3-1.3 3-3s-1.3-3-3-3z"%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-md-container .icon-category{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M10 3H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zM9 9H5V5h4v4zm11-6h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zm-1 6h-4V5h4v4zm-9 4H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1zm-1 6H5v-4h4v4zm8-6c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4s-1.794-4-4-4zm0 6c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M10 3H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zM9 9H5V5h4v4zm11-6h-6a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1V4a1 1 0 0 0-1-1zm-1 6h-4V5h4v4zm-9 4H4a1 1 0 0 0-1 1v6a1 1 0 0 0 1 1h6a1 1 0 0 0 1-1v-6a1 1 0 0 0-1-1zm-1 6H5v-4h4v4zm8-6c-2.206 0-4 1.794-4 4s1.794 4 4 4s4-1.794 4-4s-1.794-4-4-4zm0 6c-1.103 0-2-.897-2-2s.897-2 2-2s2 .897 2 2s-.897 2-2 2z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-md-container .icon-date{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" viewBox="0 0 20 20"%3E%3Cpath fill="currentColor" d="M5.673 0a.7.7 0 0 1 .7.7v1.309h7.517v-1.3a.7.7 0 0 1 1.4 0v1.3H18a2 2 0 0 1 2 1.999v13.993A2 2 0 0 1 18 20H2a2 2 0 0 1-2-1.999V4.008a2 2 0 0 1 2-1.999h2.973V.699a.7.7 0 0 1 .7-.699ZM1.4 7.742v10.259a.6.6 0 0 0 .6.6h16a.6.6 0 0 0 .6-.6V7.756L1.4 7.742Zm5.267 6.877v1.666H5v-1.666h1.667Zm4.166 0v1.666H9.167v-1.666h1.666Zm4.167 0v1.666h-1.667v-1.666H15Zm-8.333-3.977v1.666H5v-1.666h1.667Zm4.166 0v1.666H9.167v-1.666h1.666Zm4.167 0v1.666h-1.667v-1.666H15ZM4.973 3.408H2a.6.6 0 0 0-.6.6v2.335l17.2.014V4.008a.6.6 0 0 0-.6-.6h-2.71v.929a.7.7 0 0 1-1.4 0v-.929H6.373v.92a.7.7 0 0 1-1.4 0v-.92Z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" viewBox="0 0 20 20"%3E%3Cpath fill="currentColor" d="M5.673 0a.7.7 0 0 1 .7.7v1.309h7.517v-1.3a.7.7 0 0 1 1.4 0v1.3H18a2 2 0 0 1 2 1.999v13.993A2 2 0 0 1 18 20H2a2 2 0 0 1-2-1.999V4.008a2 2 0 0 1 2-1.999h2.973V.699a.7.7 0 0 1 .7-.699ZM1.4 7.742v10.259a.6.6 0 0 0 .6.6h16a.6.6 0 0 0 .6-.6V7.756L1.4 7.742Zm5.267 6.877v1.666H5v-1.666h1.667Zm4.166 0v1.666H9.167v-1.666h1.666Zm4.167 0v1.666h-1.667v-1.666H15Zm-8.333-3.977v1.666H5v-1.666h1.667Zm4.166 0v1.666H9.167v-1.666h1.666Zm4.167 0v1.666h-1.667v-1.666H15ZM4.973 3.408H2a.6.6 0 0 0-.6.6v2.335l17.2.014V4.008a.6.6 0 0 0-.6-.6h-2.71v.929a.7.7 0 0 1-1.4 0v-.929H6.373v.92a.7.7 0 0 1-1.4 0v-.92Z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-md-container .icon-jsfiddle{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="32" height="32" viewBox="0 0 32 32"%3E%3Cpath fill="currentColor" d="M28.104 15a6.49 6.49 0 0 0 .027-.557c0-5.177-4.256-9.375-9.511-9.375a9.513 9.513 0 0 0-8.589 5.344a4.388 4.388 0 0 0-2.676-.907c-2.428 0-4.391 1.932-4.391 4.317c0 .453.067.885.197 1.292A6.31 6.31 0 0 0 0 20.573c0 3.468 2.833 6.287 6.344 6.339h19c.12 0 .24.02.359.02c3.48 0 6.303-2.776 6.303-6.219A6.214 6.214 0 0 0 28.126 15zM8.588 22.136c-.64-.579-1.041-1.276-1.197-2.105a4.481 4.481 0 0 1-.084-.869c0-1.183.433-2.151 1.292-2.916c.86-.772 1.948-1.157 3.271-1.157c1.36 0 2.641.511 3.776 1.532c.281.249.557.536.819.853l1.453 1.715c.255.343.52.635.801.891c.751.671 1.563 1.009 2.251 1.009c.583 0 1.067-.181 1.457-.536c.328-.307.537-.719.579-1.167l.011-.197c0-.188-.032-.376-.089-.552a2.034 2.034 0 0 0-1.973-1.339c-.724 0-1.443.244-2.235 1.009l-1.287-1.52l-.14-.172c1.14-1.104 2.26-1.521 3.781-1.521c1.339 0 2.437.38 3.249 1.141l.027.02c.859.761 1.276 1.74 1.276 2.943c0 .281-.021.584-.079.839c-.161.824-.563 1.5-1.183 2.084a4.312 4.312 0 0 1-2.276 1.077a6.538 6.538 0 0 1-.943.057c-1.375 0-2.676-.5-3.776-1.495a8.493 8.493 0 0 1-.859-.921l-1.459-1.699a5.352 5.352 0 0 0-.781-.9c-.74-.677-1.557-1-2.276-1c-.208 0-.416.031-.62.083c-.312.079-.604.24-.839.459a1.828 1.828 0 0 0-.583 1.344c0 .515.183.957.563 1.312l.02.027c.401.359.901.536 1.48.536c.739 0 1.457-.26 2.235-1.021l1.28 1.5l.141.161c-1.161 1.12-2.276 1.537-3.74 1.537c-1.339 0-2.437-.38-3.276-1.141z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="32" height="32" viewBox="0 0 32 32"%3E%3Cpath fill="currentColor" d="M28.104 15a6.49 6.49 0 0 0 .027-.557c0-5.177-4.256-9.375-9.511-9.375a9.513 9.513 0 0 0-8.589 5.344a4.388 4.388 0 0 0-2.676-.907c-2.428 0-4.391 1.932-4.391 4.317c0 .453.067.885.197 1.292A6.31 6.31 0 0 0 0 20.573c0 3.468 2.833 6.287 6.344 6.339h19c.12 0 .24.02.359.02c3.48 0 6.303-2.776 6.303-6.219A6.214 6.214 0 0 0 28.126 15zM8.588 22.136c-.64-.579-1.041-1.276-1.197-2.105a4.481 4.481 0 0 1-.084-.869c0-1.183.433-2.151 1.292-2.916c.86-.772 1.948-1.157 3.271-1.157c1.36 0 2.641.511 3.776 1.532c.281.249.557.536.819.853l1.453 1.715c.255.343.52.635.801.891c.751.671 1.563 1.009 2.251 1.009c.583 0 1.067-.181 1.457-.536c.328-.307.537-.719.579-1.167l.011-.197c0-.188-.032-.376-.089-.552a2.034 2.034 0 0 0-1.973-1.339c-.724 0-1.443.244-2.235 1.009l-1.287-1.52l-.14-.172c1.14-1.104 2.26-1.521 3.781-1.521c1.339 0 2.437.38 3.249 1.141l.027.02c.859.761 1.276 1.74 1.276 2.943c0 .281-.021.584-.079.839c-.161.824-.563 1.5-1.183 2.084a4.312 4.312 0 0 1-2.276 1.077a6.538 6.538 0 0 1-.943.057c-1.375 0-2.676-.5-3.776-1.495a8.493 8.493 0 0 1-.859-.921l-1.459-1.699a5.352 5.352 0 0 0-.781-.9c-.74-.677-1.557-1-2.276-1c-.208 0-.416.031-.62.083c-.312.079-.604.24-.839.459a1.828 1.828 0 0 0-.583 1.344c0 .515.183.957.563 1.312l.02.027c.401.359.901.536 1.48.536c.739 0 1.457-.26 2.235-1.021l1.28 1.5l.141.161c-1.161 1.12-2.276 1.537-3.74 1.537c-1.339 0-2.437-.38-3.276-1.141z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-md-container .icon-codepen{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="m8.21 12l-1.33.89v-1.78l1.33.89m3.26-2.18V7.34l-4.16 2.78l1.85 1.24l2.31-1.54m5.23.3l-4.17-2.78v2.48l2.31 1.54l1.86-1.24m-9.39 3.76l4.16 2.78v-2.48l-2.31-1.54l-1.85 1.24m5.22.3v2.48l4.17-2.78l-1.86-1.24l-2.31 1.54M12 10.74L10.12 12L12 13.26L13.88 12L12 10.74M22 12c0 5.5-4.5 10-10 10S2 17.5 2 12S6.5 2 12 2s10 4.5 10 10m-3.82-1.88v-.07l-.01-.05l-.01-.05c-.01-.01-.01-.02-.02-.04l-.01-.02l-.02-.04l-.01-.02l-.02-.03l-.02-.03l-.03-.03l-.03-.02V9.7l-.04-.02l-.01-.01l-5.65-3.76a.528.528 0 0 0-.59 0L6.05 9.67v.01L6 9.7v.02l-.03.02l-.03.03l-.01.03l-.03.03l-.01.02l-.02.04l-.01.02l-.02.04V10h-.01l-.01.05v3.9l.01.05h.01v.05c.01.01.01.02.02.04l.01.02l.02.04l.01.02l.02.03l.02.03l.03.03l.03.02v.02l.04.02l.01.01l5.66 3.77c.08.06.19.08.29.08c.1 0 .21-.03.3-.08l5.65-3.77l.01-.01l.04-.02v-.02l.03-.02l.03-.03l.02-.03l.02-.03l.01-.02l.02-.04l.01-.02l.02-.04V14h.01l.01-.05v-3.83m-1.06 2.77v-1.78l-1.33.89l1.33.89Z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="m8.21 12l-1.33.89v-1.78l1.33.89m3.26-2.18V7.34l-4.16 2.78l1.85 1.24l2.31-1.54m5.23.3l-4.17-2.78v2.48l2.31 1.54l1.86-1.24m-9.39 3.76l4.16 2.78v-2.48l-2.31-1.54l-1.85 1.24m5.22.3v2.48l4.17-2.78l-1.86-1.24l-2.31 1.54M12 10.74L10.12 12L12 13.26L13.88 12L12 10.74M22 12c0 5.5-4.5 10-10 10S2 17.5 2 12S6.5 2 12 2s10 4.5 10 10m-3.82-1.88v-.07l-.01-.05l-.01-.05c-.01-.01-.01-.02-.02-.04l-.01-.02l-.02-.04l-.01-.02l-.02-.03l-.02-.03l-.03-.03l-.03-.02V9.7l-.04-.02l-.01-.01l-5.65-3.76a.528.528 0 0 0-.59 0L6.05 9.67v.01L6 9.7v.02l-.03.02l-.03.03l-.01.03l-.03.03l-.01.02l-.02.04l-.01.02l-.02.04V10h-.01l-.01.05v3.9l.01.05h.01v.05c.01.01.01.02.02.04l.01.02l.02.04l.01.02l.02.03l.02.03l.03.03l.03.02v.02l.04.02l.01.01l5.66 3.77c.08.06.19.08.29.08c.1 0 .21-.03.3-.08l5.65-3.77l.01-.01l.04-.02v-.02l.03-.02l.03-.03l.02-.03l.02-.03l.01-.02l.02-.04l.01-.02l.02-.04V14h.01l.01-.05v-3.83m-1.06 2.77v-1.78l-1.33.89l1.33.89Z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-md-container .icon-expand-alt{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M5 12H3v9h9v-2H5zm7-7h7v7h2V3h-9z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M5 12H3v9h9v-2H5zm7-7h7v7h2V3h-9z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-md-container .icon-collapse-alt{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M2 15h7v7h2v-9H2v2zM15 2h-2v9h9V9h-7V2z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M2 15h7v7h2v-9H2v2zM15 2h-2v9h9V9h-7V2z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-md-container .icon-clock{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 896a384 384 0 1 0 0-768a384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896a448 448 0 0 1 0 896z"%2F%3E%3Cpath fill="currentColor" d="M480 256a32 32 0 0 1 32 32v256a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32z"%2F%3E%3Cpath fill="currentColor" d="M480 512h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 896a384 384 0 1 0 0-768a384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896a448 448 0 0 1 0 896z"%2F%3E%3Cpath fill="currentColor" d="M480 256a32 32 0 0 1 32 32v256a32 32 0 0 1-64 0V288a32 32 0 0 1 32-32z"%2F%3E%3Cpath fill="currentColor" d="M480 512h256q32 0 32 32t-32 32H480q-32 0-32-32t32-32z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-md-container .icon-calendar{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M128 384v512h768V192H768v32a32 32 0 1 1-64 0v-32H320v32a32 32 0 0 1-64 0v-32H128v128h768v64H128zm192-256h384V96a32 32 0 1 1 64 0v32h160a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h160V96a32 32 0 0 1 64 0v32zm-32 384h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M128 384v512h768V192H768v32a32 32 0 1 1-64 0v-32H320v32a32 32 0 0 1-64 0v-32H128v128h768v64H128zm192-256h384V96a32 32 0 1 1 64 0v32h160a32 32 0 0 1 32 32v768a32 32 0 0 1-32 32H96a32 32 0 0 1-32-32V160a32 32 0 0 1 32-32h160V96a32 32 0 0 1 64 0v32zm-32 384h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 0 1 0 64h-64a32 32 0 0 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm192-192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64zm0 192h64a32 32 0 1 1 0 64h-64a32 32 0 1 1 0-64z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}
@@ -1 +1 @@
1
- .vft-md-tabs{margin:1.5rem 0;border:2px solid #eaecef;border-radius:8px}.vft-md-tabs .tab-list-nav{overflow-x:auto;margin:0;padding:0;border-radius:8px 8px 0 0;background:#e0e0e0;list-style:none;white-space:nowrap;transition:var(--vft-transition-all)}.vft-md-tabs .tab-list-nav-item{border-width:0;background:0 0;cursor:pointer;position:relative;min-width:4rem;margin:0;padding:.5em 1em;border-radius:8px 8px 0 0;background:0 0;color:#2c3e50;font-weight:600;font-size:.85em;line-height:1.75;cursor:pointer;transition:var(--vft-transition-all)}.vft-md-tabs .tab-list-nav-item:hover{background:var(--tab-nav-hover-color)}.vft-md-tabs .tab-list-nav-item::after,.vft-md-tabs .tab-list-nav-item::before{content:" ";position:absolute;bottom:0;z-index:1;width:8px;height:8px}.vft-md-tabs .tab-list-nav-item::before{right:100%}.vft-md-tabs .tab-list-nav-item::after{left:100%}.vft-md-tabs .tab-list-nav-item.active{background:#fff}.vft-md-tabs .tab-list-nav-item.active::before{background:radial-gradient(16px at left top,transparent 50%,#fff 50%)}.vft-md-tabs .tab-list-nav-item.active::after{background:radial-gradient(16px at right top,transparent 50%,#fff 50%)}.vft-md-tabs .tab-list-nav-item:first-child::before{display:none}.vft-md-tabs .tab-item{display:none;padding:1rem .75rem;background:#fff;transition:var(--vft-transition-all)}.vft-md-tabs .tab-item.active{display:block}
1
+ .vft-md-tabs{margin:1.5rem 0;border:2px solid #eaecef;border-radius:8px}.vft-md-tabs .tab-list-nav{overflow-x:auto;margin:0;padding:0;border-radius:8px 8px 0 0;background:#e0e0e0;list-style:none;white-space:nowrap;transition:var(--vft-transition-all)}.vft-md-tabs .tab-list-nav-item{position:relative;min-width:4rem;margin:0;padding:.5em 1em;border-radius:8px 8px 0 0;background:0 0;color:#2c3e50;font-weight:600;font-size:.85em;line-height:1.75;cursor:pointer;transition:var(--vft-transition-all);border-width:0;background:0 0;cursor:pointer}.vft-md-tabs .tab-list-nav-item:hover{background:var(--tab-nav-hover-color)}.vft-md-tabs .tab-list-nav-item::after,.vft-md-tabs .tab-list-nav-item::before{content:" ";position:absolute;bottom:0;z-index:1;width:8px;height:8px}.vft-md-tabs .tab-list-nav-item::before{right:100%}.vft-md-tabs .tab-list-nav-item::after{left:100%}.vft-md-tabs .tab-list-nav-item.active{background:#fff}.vft-md-tabs .tab-list-nav-item.active::before{background:radial-gradient(16px at left top,transparent 50%,#fff 50%)}.vft-md-tabs .tab-list-nav-item.active::after{background:radial-gradient(16px at right top,transparent 50%,#fff 50%)}.vft-md-tabs .tab-list-nav-item:first-child::before{display:none}.vft-md-tabs .tab-item{display:none;padding:1rem .75rem;background:#fff;transition:var(--vft-transition-all)}.vft-md-tabs .tab-item.active{display:block}
@@ -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;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
+ .vft-md-vue-playground{overflow:hidden;margin-top:1rem;margin-bottom:1rem;border:1px solid var(--c-border,#ddd);border-radius:6px}@keyframes blink{50%{background-color:transparent}}@keyframes blink{50%{background-color:transparent}}@keyframes blink{50%{background-color:transparent}}@media (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 (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}}@media print{.vft-md-vue-playground .CodeMirror div.CodeMirror-cursors{visibility:hidden}}@media (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 .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;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)}.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{--symbols:#777;--base:#545281;--comment:hsl(210deg, 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;color:var(--symbols);direction:ltr;height:auto}.vft-md-vue-playground .dark .CodeMirror{--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);color:var(--symbols)}.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}.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 .CodeMirrorwrapper ::-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{background:var(--selected-bg)}.vft-md-vue-playground .CodeMirror-line::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}.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}.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);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-popup-bg-color:var(--vft-fill-color-blank);--vft-menu-sub-menu-bg-color:var(--vft-fill-color-blank);--vft-menu-no-popup-active-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-border-bottom:2px solid transparent;--vft-menu-item-active-border-bottom:2px solid var(--vft-menu-active-color);--vft-menu-item-min-width:200px}.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);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__icon-arrow{position:absolute;right:var(--vft-menu-base-level-padding)}.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:var(--vft-menu-item-border-bottom);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-sub-menu:focus,.vft-menu--horizontal>.vft-sub-menu:hover{outline:0}.vft-menu--horizontal>.vft-sub-menu.is-active>.vft-sub-menu__title{border-bottom:var(--vft-menu-item-active-border-bottom);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:var(--vft-menu-item-border-bottom);color:var(--vft-menu-text-color)}.vft-menu--horizontal>.vft-sub-menu .vft-sub-menu__title:hover{color:var(--vft-menu-hover-text-color);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);color:var(--vft-menu-text-color)}.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}.vft-menu--horizontal>.vft-menu-item.is-active{border-bottom:var(--vft-menu-item-active-border-bottom);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:var(--vft-menu-item-min-width)}.vft-menu--collapse .vft-sub-menu__text{padding-right:0}.vft-menu--popup{z-index:100;min-width:var(--vft-menu-item-min-width);border:none;padding:5px 0;box-shadow:var(--vft-box-shadow-light);background-color:var(--vft-menu-popup-bg-color);border-radius:var(--vft-popper-border-radius)}.vft-menu--popup .vft-sub-menu__title{color:var(--vft-menu-text-color);border-bottom:none!important}.vft-menu--popup .is-active .vft-sub-menu__title{color:var(--vft-menu-active-color)!important;border-bottom:none!important}.vft-menu--popup .vft-sub-menu__icon-arrow{position:absolute;right:var(--vft-menu-base-level-padding)}.vft-menu .vft-icon{flex-shrink:0}.vft-menu .icon-arrow-left{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M609.408 149.376L277.76 489.6a32 32 0 0 0 0 44.672l331.648 340.352a29.12 29.12 0 0 0 41.728 0a30.592 30.592 0 0 0 0-42.752L339.264 511.936l311.872-319.872a30.592 30.592 0 0 0 0-42.688a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M609.408 149.376L277.76 489.6a32 32 0 0 0 0 44.672l331.648 340.352a29.12 29.12 0 0 0 41.728 0a30.592 30.592 0 0 0 0-42.752L339.264 511.936l311.872-319.872a30.592 30.592 0 0 0 0-42.688a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-menu .icon-arrow-right{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512L340.864 831.872a30.592 30.592 0 0 0 0 42.752a29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512L340.864 831.872a30.592 30.592 0 0 0 0 42.752a29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-menu .icon-arrow-down{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M831.872 340.864L512 652.672L192.128 340.864a30.592 30.592 0 0 0-42.752 0a29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728a30.592 30.592 0 0 0-42.752 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M831.872 340.864L512 652.672L192.128 340.864a30.592 30.592 0 0 0-42.752 0a29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728a30.592 30.592 0 0 0-42.752 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-menu .icon-arrow-up{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m488.832 344.32l-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872l319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m488.832 344.32l-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872l319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-menu .icon-menu-line{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cg fill="none" stroke="currentColor" stroke-dasharray="24" stroke-dashoffset="24" stroke-linecap="round" stroke-width="2"%3E%3Cpath d="M5 5H19"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" dur="0.2s" values="24%3B0"%2F%3E%3C%2Fpath%3E%3Cpath d="M5 12H19"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.2s" dur="0.2s" values="24%3B0"%2F%3E%3C%2Fpath%3E%3Cpath d="M5 19H19"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.4s" dur="0.2s" values="24%3B0"%2F%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cg fill="none" stroke="currentColor" stroke-dasharray="24" stroke-dashoffset="24" stroke-linecap="round" stroke-width="2"%3E%3Cpath d="M5 5H19"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" dur="0.2s" values="24%3B0"%2F%3E%3C%2Fpath%3E%3Cpath d="M5 12H19"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.2s" dur="0.2s" values="24%3B0"%2F%3E%3C%2Fpath%3E%3Cpath d="M5 19H19"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.4s" dur="0.2s" values="24%3B0"%2F%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-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);white-space:nowrap}.vft-sub-menu__title *{vertical-align:bottom}.vft-sub-menu__title i{flex-shrink:0}.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__title:hover .vft-icon{color:var(--vft-menu-hover-text-color)!important}.vft-sub-menu__text.is-arrow{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{background-color:var(--vft-menu-no-popup-active-bg-color)}.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-arrow,.vft-sub-menu .vft-icon.vft-sub-menu__icon-more{margin-right:0!important}.vft-sub-menu .vft-sub-menu__icon-arrow{transition:transform var(--vft-transition-duration);color:inherit}.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);white-space:nowrap}.vft-menu-item *{vertical-align:bottom}.vft-menu-item i{flex-shrink:0}.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;padding:0 var(--vft-menu-base-level-padding)}.vft-menu-item .vft-menu-item__text{overflow:hidden;display:-webkit-inline-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1;word-break:break-all;white-space:break-spaces}.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}
1
+ .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{transition:var(--vft-transition-md-fade);opacity:1;transform:scaleY(1);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-top-fast-enter-active{transition:var(--vft-transition-md-fade);opacity:1;transform:scaleY(1);transform-origin:center top}.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-popup-bg-color:var(--vft-fill-color-blank);--vft-menu-sub-menu-bg-color:var(--vft-fill-color-blank);--vft-menu-no-popup-active-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-border-bottom:2px solid transparent;--vft-menu-item-active-border-bottom:2px solid var(--vft-menu-active-color);--vft-menu-item-min-width:200px}.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);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__icon-arrow{position:absolute;right:var(--vft-menu-base-level-padding)}.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:var(--vft-menu-item-border-bottom);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-sub-menu:focus,.vft-menu--horizontal>.vft-sub-menu:hover{outline:0}.vft-menu--horizontal>.vft-sub-menu.is-active>.vft-sub-menu__title{border-bottom:var(--vft-menu-item-active-border-bottom);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:var(--vft-menu-item-border-bottom);color:var(--vft-menu-text-color)}.vft-menu--horizontal>.vft-sub-menu .vft-sub-menu__title:hover{color:var(--vft-menu-hover-text-color);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);color:var(--vft-menu-text-color)}.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}.vft-menu--horizontal>.vft-menu-item.is-active{border-bottom:var(--vft-menu-item-active-border-bottom);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:var(--vft-menu-item-min-width)}.vft-menu--collapse .vft-sub-menu__text{padding-right:0}.vft-menu--popup{z-index:100;min-width:var(--vft-menu-item-min-width);border:none;padding:5px 0;box-shadow:var(--vft-box-shadow-light);background-color:var(--vft-menu-popup-bg-color);border-radius:var(--vft-popper-border-radius)}.vft-menu--popup .vft-sub-menu__title{color:var(--vft-menu-text-color);border-bottom:none!important}.vft-menu--popup .is-active .vft-sub-menu__title{color:var(--vft-menu-active-color)!important;border-bottom:none!important}.vft-menu--popup .vft-sub-menu__icon-arrow{position:absolute;right:var(--vft-menu-base-level-padding)}.vft-menu .icon-arrow-left{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M609.408 149.376L277.76 489.6a32 32 0 0 0 0 44.672l331.648 340.352a29.12 29.12 0 0 0 41.728 0a30.592 30.592 0 0 0 0-42.752L339.264 511.936l311.872-319.872a30.592 30.592 0 0 0 0-42.688a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M609.408 149.376L277.76 489.6a32 32 0 0 0 0 44.672l331.648 340.352a29.12 29.12 0 0 0 41.728 0a30.592 30.592 0 0 0 0-42.752L339.264 511.936l311.872-319.872a30.592 30.592 0 0 0 0-42.688a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-menu .icon-arrow-right{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512L340.864 831.872a30.592 30.592 0 0 0 0 42.752a29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M340.864 149.312a30.592 30.592 0 0 0 0 42.752L652.736 512L340.864 831.872a30.592 30.592 0 0 0 0 42.752a29.12 29.12 0 0 0 41.728 0L714.24 534.336a32 32 0 0 0 0-44.672L382.592 149.376a29.12 29.12 0 0 0-41.728 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-menu .icon-arrow-down{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M831.872 340.864L512 652.672L192.128 340.864a30.592 30.592 0 0 0-42.752 0a29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728a30.592 30.592 0 0 0-42.752 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M831.872 340.864L512 652.672L192.128 340.864a30.592 30.592 0 0 0-42.752 0a29.12 29.12 0 0 0 0 41.6L489.664 714.24a32 32 0 0 0 44.672 0l340.288-331.712a29.12 29.12 0 0 0 0-41.728a30.592 30.592 0 0 0-42.752 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-menu .icon-arrow-up{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m488.832 344.32l-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872l319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m488.832 344.32l-339.84 356.672a32 32 0 0 0 0 44.16l.384.384a29.44 29.44 0 0 0 42.688 0l320-335.872l319.872 335.872a29.44 29.44 0 0 0 42.688 0l.384-.384a32 32 0 0 0 0-44.16L535.168 344.32a32 32 0 0 0-46.336 0z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-menu .vft-icon{flex-shrink:0}.vft-menu .icon-menu-line{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cg fill="none" stroke="currentColor" stroke-dasharray="24" stroke-dashoffset="24" stroke-linecap="round" stroke-width="2"%3E%3Cpath d="M5 5H19"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" dur="0.2s" values="24%3B0"%2F%3E%3C%2Fpath%3E%3Cpath d="M5 12H19"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.2s" dur="0.2s" values="24%3B0"%2F%3E%3C%2Fpath%3E%3Cpath d="M5 19H19"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.4s" dur="0.2s" values="24%3B0"%2F%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cg fill="none" stroke="currentColor" stroke-dasharray="24" stroke-dashoffset="24" stroke-linecap="round" stroke-width="2"%3E%3Cpath d="M5 5H19"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" dur="0.2s" values="24%3B0"%2F%3E%3C%2Fpath%3E%3Cpath d="M5 12H19"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.2s" dur="0.2s" values="24%3B0"%2F%3E%3C%2Fpath%3E%3Cpath d="M5 19H19"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.4s" dur="0.2s" values="24%3B0"%2F%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-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);white-space:nowrap}.vft-sub-menu__title.is-disabled{opacity:.5;cursor:not-allowed;background:0 0!important}.vft-sub-menu__title *{vertical-align:bottom}.vft-sub-menu__title i{flex-shrink:0}.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 .vft-sub-menu__text{word-break:break-all;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1}.vft-sub-menu__text.is-arrow{padding-right:var(--vft-menu-base-level-padding)}.vft-sub-menu__title:hover{background-color:var(--vft-menu-hover-bg-color)}.vft-sub-menu__title:hover .vft-icon{color:var(--vft-menu-hover-text-color)!important}.vft-sub-menu__hide-arrow .vft-sub-menu__icon-arrow{display:none!important}.vft-sub-menu.is-active{background-color:var(--vft-menu-no-popup-active-bg-color)}.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-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 .vft-icon{vertical-align:middle;margin-right:var(--vft-menu-icon-mr);text-align:center}.vft-sub-menu .vft-icon.vft-sub-menu__icon-arrow,.vft-sub-menu .vft-icon.vft-sub-menu__icon-more{margin-right:0!important}.vft-sub-menu .vft-sub-menu__icon-arrow{transition:transform var(--vft-transition-duration);color:inherit}.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);white-space:nowrap}.vft-menu-item.is-disabled{opacity:.5;cursor:not-allowed;background:0 0!important}.vft-menu-item *{vertical-align:bottom}.vft-menu-item i{flex-shrink:0}.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 .vft-sub-menu__text{word-break:break-all;display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1}.vft-menu-item.is-active{color:var(--vft-menu-active-color)}.vft-menu-item.is-active i{color:inherit}.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 .vft-menu-tooltip__trigger{position:absolute;left:0;top:0;height:100%;width:100%;display:inline-flex;align-items:center;padding:0 var(--vft-menu-base-level-padding)}.vft-menu-item .vft-menu-item__text{word-break:break-all;white-space:break-spaces;display:-webkit-inline-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1}.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);display:-webkit-box;overflow:hidden;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1}.vft-menu-item-group>ul{padding:0}.horizontal-collapse-transition .vft-sub-menu__title .vft-sub-menu__icon-arrow{transition:var(--vft-transition-duration-fast);opacity:0}
@@ -1 +1 @@
1
- :root{--vft-message-border-radius:2px;--vft-message-border-width:2px;--vft-message-border-color:red;--vft-message-padding:15px 19px;--vft-message-bg-color:var(--vft-color-info-light-9)}.vft-message{width:-moz-fit-content;width:fit-content;max-width:calc(100% - 32px);box-sizing:border-box;border-radius:var(--vft-message-border-radius);border-width:var(--vft-message-border-width);border-style:solid;border-color:var(--vft-message-border-color);position:fixed;left:50%;top:20px;transform:translateX(-50%);background-color:var(--vft-message-bg-color);transition:opacity var(--vft-transition-duration),transform .4s,top .4s;padding:var(--vft-message-padding);display:flex;align-items:center}.vft-message.is-center{justify-content:center}.vft-message.is-closable .vft-message__content{padding-right:31px}.vft-message p{margin:0}.vft-message--success{--vft-message-bg-color:var(--vft-success-color-light-9);--vft-message-border-color:var(--vft-success-color-light-8);--vft-message-text-color:var(--vft-success-color)}.vft-message--success .vft-message__content{color:var(--vft-message-text-color);overflow-wrap:anywhere}.vft-message .vft-message-icon--success{display:flex;align-items:center;--vft-icon-text-color:var(--vft-message-text-color);color:var(--vft-message-text-color)}.vft-message .vft-message-icon--success i{color:inherit!important}.vft-message--info{--vft-message-bg-color:var(--vft-info-color-light-9);--vft-message-border-color:var(--vft-info-color-light-8);--vft-message-text-color:var(--vft-info-color)}.vft-message--info .vft-message__content{color:var(--vft-message-text-color);overflow-wrap:anywhere}.vft-message .vft-message-icon--info{display:flex;align-items:center;--vft-icon-text-color:var(--vft-message-text-color);color:var(--vft-message-text-color)}.vft-message .vft-message-icon--info i{color:inherit!important}.vft-message--warning{--vft-message-bg-color:var(--vft-warning-color-light-9);--vft-message-border-color:var(--vft-warning-color-light-8);--vft-message-text-color:var(--vft-warning-color)}.vft-message--warning .vft-message__content{color:var(--vft-message-text-color);overflow-wrap:anywhere}.vft-message .vft-message-icon--warning{display:flex;align-items:center;--vft-icon-text-color:var(--vft-message-text-color);color:var(--vft-message-text-color)}.vft-message .vft-message-icon--warning i{color:inherit!important}.vft-message--error{--vft-message-bg-color:var(--vft-error-color-light-9);--vft-message-border-color:var(--vft-error-color-light-8);--vft-message-text-color:var(--vft-error-color)}.vft-message--error .vft-message__content{color:var(--vft-message-text-color);overflow-wrap:anywhere}.vft-message .vft-message-icon--error{display:flex;align-items:center;--vft-icon-text-color:var(--vft-message-text-color);color:var(--vft-message-text-color)}.vft-message .vft-message-icon--error i{color:inherit!important}.vft-message__icon{margin-right:10px}.vft-message .vft-message__badge{position:absolute;top:-8px;right:-8px}.vft-message__content{padding:0;font-size:14px;line-height:1}.vft-message__content:focus{outline-width:0}.vft-message .vft-message__closeBtn{position:absolute;top:50%;right:19px;transform:translateY(-50%);cursor:pointer;color:var(--vft-message-close-icon-color);font-size:var(--vft-message-close-size)}.vft-message .vft-message__closeBtn:focus{outline-width:0}.vft-message .vft-message__closeBtn:hover{color:var(--vft-message-close-hover-color)}.vft-message .icon-success-filled{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 64a448 448 0 1 1 0 896a448 448 0 0 1 0-896zm-55.808 536.384l-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336L456.192 600.384z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 64a448 448 0 1 1 0 896a448 448 0 0 1 0-896zm-55.808 536.384l-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336L456.192 600.384z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-message .icon-warning-filled{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 64a448 448 0 1 1 0 896a448 448 0 0 1 0-896zm0 192a58.432 58.432 0 0 0-58.24 63.744l23.36 256.384a35.072 35.072 0 0 0 69.76 0l23.296-256.384A58.432 58.432 0 0 0 512 256zm0 512a51.2 51.2 0 1 0 0-102.4a51.2 51.2 0 0 0 0 102.4z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 64a448 448 0 1 1 0 896a448 448 0 0 1 0-896zm0 192a58.432 58.432 0 0 0-58.24 63.744l23.36 256.384a35.072 35.072 0 0 0 69.76 0l23.296-256.384A58.432 58.432 0 0 0 512 256zm0 512a51.2 51.2 0 1 0 0-102.4a51.2 51.2 0 0 0 0 102.4z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-message .icon-circle-close-filled{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 64a448 448 0 1 1 0 896a448 448 0 0 1 0-896zm0 393.664L407.936 353.6a38.4 38.4 0 1 0-54.336 54.336L457.664 512L353.6 616.064a38.4 38.4 0 1 0 54.336 54.336L512 566.336L616.064 670.4a38.4 38.4 0 1 0 54.336-54.336L566.336 512L670.4 407.936a38.4 38.4 0 1 0-54.336-54.336L512 457.664z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 64a448 448 0 1 1 0 896a448 448 0 0 1 0-896zm0 393.664L407.936 353.6a38.4 38.4 0 1 0-54.336 54.336L457.664 512L353.6 616.064a38.4 38.4 0 1 0 54.336 54.336L512 566.336L616.064 670.4a38.4 38.4 0 1 0 54.336-54.336L566.336 512L670.4 407.936a38.4 38.4 0 1 0-54.336-54.336L512 457.664z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-message .icon-circle-close{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m466.752 512l-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248L466.752 512z"%2F%3E%3Cpath fill="currentColor" d="M512 896a384 384 0 1 0 0-768a384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896a448 448 0 0 1 0 896z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m466.752 512l-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248L466.752 512z"%2F%3E%3Cpath fill="currentColor" d="M512 896a384 384 0 1 0 0-768a384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896a448 448 0 0 1 0 896z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.vft-message-fade-enter-from,.vft-message-fade-leave-to{opacity:0;transform:translate(-50%,-100%)}
1
+ :root{--vft-message-border-radius:2px;--vft-message-border-width:2px;--vft-message-border-color:red;--vft-message-padding:15px 19px;--vft-message-bg-color:var(--vft-color-info-light-9)}.vft-message{width:-moz-fit-content;width:fit-content;max-width:calc(100% - 32px);box-sizing:border-box;border-radius:var(--vft-message-border-radius);border-width:var(--vft-message-border-width);border-style:solid;border-color:var(--vft-message-border-color);position:fixed;left:50%;top:20px;transform:translateX(-50%);background-color:var(--vft-message-bg-color);transition:opacity var(--vft-transition-duration),transform .4s,top .4s;padding:var(--vft-message-padding);display:flex;align-items:center}.vft-message--success{--vft-message-bg-color:var(--vft-success-color-light-9);--vft-message-border-color:var(--vft-success-color-light-8);--vft-message-text-color:var(--vft-success-color)}.vft-message--success .vft-message__content{color:var(--vft-message-text-color);overflow-wrap:anywhere}.vft-message .vft-message-icon--success{display:flex;align-items:center;color:var(--vft-message-text-color);--vft-icon-text-color:var(--vft-message-text-color)}.vft-message .vft-message-icon--success i{color:inherit!important}.vft-message--info{--vft-message-bg-color:var(--vft-info-color-light-9);--vft-message-border-color:var(--vft-info-color-light-8);--vft-message-text-color:var(--vft-info-color)}.vft-message--info .vft-message__content{color:var(--vft-message-text-color);overflow-wrap:anywhere}.vft-message .vft-message-icon--info{display:flex;align-items:center;color:var(--vft-message-text-color);--vft-icon-text-color:var(--vft-message-text-color)}.vft-message .vft-message-icon--info i{color:inherit!important}.vft-message--warning{--vft-message-bg-color:var(--vft-warning-color-light-9);--vft-message-border-color:var(--vft-warning-color-light-8);--vft-message-text-color:var(--vft-warning-color)}.vft-message--warning .vft-message__content{color:var(--vft-message-text-color);overflow-wrap:anywhere}.vft-message .vft-message-icon--warning{display:flex;align-items:center;color:var(--vft-message-text-color);--vft-icon-text-color:var(--vft-message-text-color)}.vft-message .vft-message-icon--warning i{color:inherit!important}.vft-message--error{--vft-message-bg-color:var(--vft-error-color-light-9);--vft-message-border-color:var(--vft-error-color-light-8);--vft-message-text-color:var(--vft-error-color)}.vft-message--error .vft-message__content{color:var(--vft-message-text-color);overflow-wrap:anywhere}.vft-message .vft-message-icon--error{display:flex;align-items:center;color:var(--vft-message-text-color);--vft-icon-text-color:var(--vft-message-text-color)}.vft-message .vft-message-icon--error i{color:inherit!important}.vft-message.is-center{justify-content:center}.vft-message.is-closable .vft-message__content{padding-right:31px}.vft-message__icon{margin-right:10px}.vft-message__content{padding:0;font-size:14px;line-height:1}.vft-message__content:focus{outline-width:0}.vft-message .icon-circle-close-filled{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 64a448 448 0 1 1 0 896a448 448 0 0 1 0-896zm0 393.664L407.936 353.6a38.4 38.4 0 1 0-54.336 54.336L457.664 512L353.6 616.064a38.4 38.4 0 1 0 54.336 54.336L512 566.336L616.064 670.4a38.4 38.4 0 1 0 54.336-54.336L566.336 512L670.4 407.936a38.4 38.4 0 1 0-54.336-54.336L512 457.664z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 64a448 448 0 1 1 0 896a448 448 0 0 1 0-896zm0 393.664L407.936 353.6a38.4 38.4 0 1 0-54.336 54.336L457.664 512L353.6 616.064a38.4 38.4 0 1 0 54.336 54.336L512 566.336L616.064 670.4a38.4 38.4 0 1 0 54.336-54.336L566.336 512L670.4 407.936a38.4 38.4 0 1 0-54.336-54.336L512 457.664z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-message .icon-circle-close{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m466.752 512l-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248L466.752 512z"%2F%3E%3Cpath fill="currentColor" d="M512 896a384 384 0 1 0 0-768a384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896a448 448 0 0 1 0 896z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="m466.752 512l-90.496-90.496a32 32 0 0 1 45.248-45.248L512 466.752l90.496-90.496a32 32 0 1 1 45.248 45.248L557.248 512l90.496 90.496a32 32 0 1 1-45.248 45.248L512 557.248l-90.496 90.496a32 32 0 0 1-45.248-45.248L466.752 512z"%2F%3E%3Cpath fill="currentColor" d="M512 896a384 384 0 1 0 0-768a384 384 0 0 0 0 768zm0 64a448 448 0 1 1 0-896a448 448 0 0 1 0 896z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-message p{margin:0}.vft-message .vft-message__badge{position:absolute;top:-8px;right:-8px}.vft-message .vft-message__closeBtn{position:absolute;top:50%;right:19px;transform:translateY(-50%);cursor:pointer;color:var(--vft-message-close-icon-color);font-size:var(--vft-message-close-size)}.vft-message .vft-message__closeBtn:focus{outline-width:0}.vft-message .vft-message__closeBtn:hover{color:var(--vft-message-close-hover-color)}.vft-message .icon-success-filled{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 64a448 448 0 1 1 0 896a448 448 0 0 1 0-896zm-55.808 536.384l-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336L456.192 600.384z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 64a448 448 0 1 1 0 896a448 448 0 0 1 0-896zm-55.808 536.384l-99.52-99.584a38.4 38.4 0 1 0-54.336 54.336l126.72 126.72a38.272 38.272 0 0 0 54.336 0l262.4-262.464a38.4 38.4 0 1 0-54.272-54.336L456.192 600.384z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-message .icon-warning-filled{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 64a448 448 0 1 1 0 896a448 448 0 0 1 0-896zm0 192a58.432 58.432 0 0 0-58.24 63.744l23.36 256.384a35.072 35.072 0 0 0 69.76 0l23.296-256.384A58.432 58.432 0 0 0 512 256zm0 512a51.2 51.2 0 1 0 0-102.4a51.2 51.2 0 0 0 0 102.4z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M512 64a448 448 0 1 1 0 896a448 448 0 0 1 0-896zm0 192a58.432 58.432 0 0 0-58.24 63.744l23.36 256.384a35.072 35.072 0 0 0 69.76 0l23.296-256.384A58.432 58.432 0 0 0 512 256zm0 512a51.2 51.2 0 1 0 0-102.4a51.2 51.2 0 0 0 0 102.4z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.vft-message-fade-enter-from,.vft-message-fade-leave-to{opacity:0;transform:translate(-50%,-100%)}
@@ -1 +1 @@
1
- :root{--vft-multiple-tabs-bg-color:var(--vft-header-layout-bg-color);--vft-multiple-tabs-height:30px}.vft-multiple-tabs{background-color:var(--vft-multiple-tabs-bg-color);height:var(--vft-multiple-tabs-height)}.vft-multiple-tabs__title{overflow:hidden}.icon-refresh-right{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M784.512 230.272v-50.56a32 32 0 1 1 64 0v149.056a32 32 0 0 1-32 32H667.52a32 32 0 1 1 0-64h92.992A320 320 0 1 0 524.8 833.152a320 320 0 0 0 320-320h64a384 384 0 0 1-384 384a384 384 0 0 1-384-384a384 384 0 0 1 643.712-282.88z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M784.512 230.272v-50.56a32 32 0 1 1 64 0v149.056a32 32 0 0 1-32 32H667.52a32 32 0 1 1 0-64h92.992A320 320 0 1 0 524.8 833.152a320 320 0 0 0 320-320h64a384 384 0 0 1-384 384a384 384 0 0 1-384-384a384 384 0 0 1 643.712-282.88z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.icon-new-tab{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="32" height="32" viewBox="0 0 32 32"%3E%3Cdefs%3E%3Cpath id="carbonNewTab0" fill="currentColor" d="M26 26H6V6h10V4H6a2.002 2.002 0 0 0-2 2v20a2.002 2.002 0 0 0 2 2h20a2.002 2.002 0 0 0 2-2V16h-2Z"%2F%3E%3C%2Fdefs%3E%3Cuse href="%23carbonNewTab0"%2F%3E%3Cuse href="%23carbonNewTab0"%2F%3E%3Cpath fill="currentColor" d="M26 6V2h-2v4h-4v2h4v4h2V8h4V6h-4z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="32" height="32" viewBox="0 0 32 32"%3E%3Cdefs%3E%3Cpath id="carbonNewTab0" fill="currentColor" d="M26 26H6V6h10V4H6a2.002 2.002 0 0 0-2 2v20a2.002 2.002 0 0 0 2 2h20a2.002 2.002 0 0 0 2-2V16h-2Z"%2F%3E%3C%2Fdefs%3E%3Cuse href="%23carbonNewTab0"%2F%3E%3Cuse href="%23carbonNewTab0"%2F%3E%3Cpath fill="currentColor" d="M26 6V2h-2v4h-4v2h4v4h2V8h4V6h-4z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.icon-close-tab{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" viewBox="0 0 20 20"%3E%3Cpath fill="currentColor" d="M10 8.586L2.929 1.515L1.515 2.929L8.586 10l-7.071 7.071l1.414 1.414L10 11.414l7.071 7.071l1.414-1.414L11.414 10l7.071-7.071l-1.414-1.414L10 8.586z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" viewBox="0 0 20 20"%3E%3Cpath fill="currentColor" d="M10 8.586L2.929 1.515L1.515 2.929L8.586 10l-7.071 7.071l1.414 1.414L10 11.414l7.071 7.071l1.414-1.414L11.414 10l7.071-7.071l-1.414-1.414L10 8.586z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.icon-arrow-close-left{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"%3E%3Cpath stroke-dasharray="20" stroke-dashoffset="20" d="M3 3V21"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" dur="0.3s" values="20%3B0"%2F%3E%3C%2Fpath%3E%3Cpath stroke-dasharray="15" stroke-dashoffset="15" d="M21 12H7.5"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.4s" dur="0.2s" values="15%3B0"%2F%3E%3C%2Fpath%3E%3Cpath stroke-dasharray="12" stroke-dashoffset="12" d="M7 12L14 19M7 12L14 5"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.6s" dur="0.2s" values="12%3B0"%2F%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"%3E%3Cpath stroke-dasharray="20" stroke-dashoffset="20" d="M3 3V21"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" dur="0.3s" values="20%3B0"%2F%3E%3C%2Fpath%3E%3Cpath stroke-dasharray="15" stroke-dashoffset="15" d="M21 12H7.5"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.4s" dur="0.2s" values="15%3B0"%2F%3E%3C%2Fpath%3E%3Cpath stroke-dasharray="12" stroke-dashoffset="12" d="M7 12L14 19M7 12L14 5"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.6s" dur="0.2s" values="12%3B0"%2F%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.icon-arrow-close-right{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cg transform="translate(24 0) scale(-1 1)"%3E%3Cg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"%3E%3Cpath stroke-dasharray="20" stroke-dashoffset="20" d="M3 3V21"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" dur="0.3s" values="20%3B0"%2F%3E%3C%2Fpath%3E%3Cpath stroke-dasharray="15" stroke-dashoffset="15" d="M21 12H7.5"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.4s" dur="0.2s" values="15%3B0"%2F%3E%3C%2Fpath%3E%3Cpath stroke-dasharray="12" stroke-dashoffset="12" d="M7 12L14 19M7 12L14 5"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.6s" dur="0.2s" values="12%3B0"%2F%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cg transform="translate(24 0) scale(-1 1)"%3E%3Cg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"%3E%3Cpath stroke-dasharray="20" stroke-dashoffset="20" d="M3 3V21"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" dur="0.3s" values="20%3B0"%2F%3E%3C%2Fpath%3E%3Cpath stroke-dasharray="15" stroke-dashoffset="15" d="M21 12H7.5"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.4s" dur="0.2s" values="15%3B0"%2F%3E%3C%2Fpath%3E%3Cpath stroke-dasharray="12" stroke-dashoffset="12" d="M7 12L14 19M7 12L14 5"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.6s" dur="0.2s" values="12%3B0"%2F%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.icon-close-box-multiple-outline{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M20 2H8c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h12c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m0 14H8V4h12v12M4 6v14h14v2H4a2 2 0 0 1-2-2V6h2m5.77 6.84L12.6 10L9.77 7.15l1.4-1.4L14 8.6l2.84-2.83l1.4 1.4L15.4 10l2.83 2.84l-1.4 1.4L14 11.4l-2.83 2.84l-1.4-1.4Z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M20 2H8c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h12c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m0 14H8V4h12v12M4 6v14h14v2H4a2 2 0 0 1-2-2V6h2m5.77 6.84L12.6 10L9.77 7.15l1.4-1.4L14 8.6l2.84-2.83l1.4 1.4L15.4 10l2.83 2.84l-1.4 1.4L14 11.4l-2.83 2.84l-1.4-1.4Z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}.icon-vector-square-delete{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M13 19c0-.3 0-.7.1-1H8v-2H6V8h2V6h8v2h2v5.1c.3-.1.7-.1 1-.1c.3 0 .7 0 1 .1V8h2V2h-6v2H8V2H2v6h2v8H2v6h6v-2h5.1c-.1-.3-.1-.7-.1-1m5-15h2v2h-2V4M4 4h2v2H4V4m2 16H4v-2h2v2m16.5-3.1L20.4 19l2.1 2.1l-1.4 1.4l-2.1-2.1l-2.1 2.1l-1.4-1.4l2.1-2.1l-2.1-2.1l1.4-1.4l2.1 2.1l2.1-2.1l1.4 1.4Z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M13 19c0-.3 0-.7.1-1H8v-2H6V8h2V6h8v2h2v5.1c.3-.1.7-.1 1-.1c.3 0 .7 0 1 .1V8h2V2h-6v2H8V2H2v6h2v8H2v6h6v-2h5.1c-.1-.3-.1-.7-.1-1m5-15h2v2h-2V4M4 4h2v2H4V4m2 16H4v-2h2v2m16.5-3.1L20.4 19l2.1 2.1l-1.4 1.4l-2.1-2.1l-2.1 2.1l-1.4-1.4l2.1-2.1l-2.1-2.1l1.4-1.4l2.1 2.1l2.1-2.1l1.4 1.4Z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentColor;color:var(--vft-icon-color);width:1em;height:1em}
1
+ :root{--vft-multiple-tabs-bg-color:var(--vft-header-layout-bg-color);--vft-multiple-tabs-height:30px}.vft-multiple-tabs{background-color:var(--vft-multiple-tabs-bg-color);height:var(--vft-multiple-tabs-height)}.vft-multiple-tabs__title{overflow:hidden}.icon-refresh-right{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M784.512 230.272v-50.56a32 32 0 1 1 64 0v149.056a32 32 0 0 1-32 32H667.52a32 32 0 1 1 0-64h92.992A320 320 0 1 0 524.8 833.152a320 320 0 0 0 320-320h64a384 384 0 0 1-384 384a384 384 0 0 1-384-384a384 384 0 0 1 643.712-282.88z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="1024" height="1024" viewBox="0 0 1024 1024"%3E%3Cpath fill="currentColor" d="M784.512 230.272v-50.56a32 32 0 1 1 64 0v149.056a32 32 0 0 1-32 32H667.52a32 32 0 1 1 0-64h92.992A320 320 0 1 0 524.8 833.152a320 320 0 0 0 320-320h64a384 384 0 0 1-384 384a384 384 0 0 1-384-384a384 384 0 0 1 643.712-282.88z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.icon-new-tab{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="32" height="32" viewBox="0 0 32 32"%3E%3Cdefs%3E%3Cpath id="carbonNewTab0" fill="currentColor" d="M26 26H6V6h10V4H6a2.002 2.002 0 0 0-2 2v20a2.002 2.002 0 0 0 2 2h20a2.002 2.002 0 0 0 2-2V16h-2Z"%2F%3E%3C%2Fdefs%3E%3Cuse href="%23carbonNewTab0"%2F%3E%3Cuse href="%23carbonNewTab0"%2F%3E%3Cpath fill="currentColor" d="M26 6V2h-2v4h-4v2h4v4h2V8h4V6h-4z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="32" height="32" viewBox="0 0 32 32"%3E%3Cdefs%3E%3Cpath id="carbonNewTab0" fill="currentColor" d="M26 26H6V6h10V4H6a2.002 2.002 0 0 0-2 2v20a2.002 2.002 0 0 0 2 2h20a2.002 2.002 0 0 0 2-2V16h-2Z"%2F%3E%3C%2Fdefs%3E%3Cuse href="%23carbonNewTab0"%2F%3E%3Cuse href="%23carbonNewTab0"%2F%3E%3Cpath fill="currentColor" d="M26 6V2h-2v4h-4v2h4v4h2V8h4V6h-4z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.icon-close-tab{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" viewBox="0 0 20 20"%3E%3Cpath fill="currentColor" d="M10 8.586L2.929 1.515L1.515 2.929L8.586 10l-7.071 7.071l1.414 1.414L10 11.414l7.071 7.071l1.414-1.414L11.414 10l7.071-7.071l-1.414-1.414L10 8.586z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="20" height="20" viewBox="0 0 20 20"%3E%3Cpath fill="currentColor" d="M10 8.586L2.929 1.515L1.515 2.929L8.586 10l-7.071 7.071l1.414 1.414L10 11.414l7.071 7.071l1.414-1.414L11.414 10l7.071-7.071l-1.414-1.414L10 8.586z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.icon-arrow-close-left{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"%3E%3Cpath stroke-dasharray="20" stroke-dashoffset="20" d="M3 3V21"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" dur="0.3s" values="20%3B0"%2F%3E%3C%2Fpath%3E%3Cpath stroke-dasharray="15" stroke-dashoffset="15" d="M21 12H7.5"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.4s" dur="0.2s" values="15%3B0"%2F%3E%3C%2Fpath%3E%3Cpath stroke-dasharray="12" stroke-dashoffset="12" d="M7 12L14 19M7 12L14 5"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.6s" dur="0.2s" values="12%3B0"%2F%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"%3E%3Cpath stroke-dasharray="20" stroke-dashoffset="20" d="M3 3V21"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" dur="0.3s" values="20%3B0"%2F%3E%3C%2Fpath%3E%3Cpath stroke-dasharray="15" stroke-dashoffset="15" d="M21 12H7.5"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.4s" dur="0.2s" values="15%3B0"%2F%3E%3C%2Fpath%3E%3Cpath stroke-dasharray="12" stroke-dashoffset="12" d="M7 12L14 19M7 12L14 5"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.6s" dur="0.2s" values="12%3B0"%2F%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.icon-arrow-close-right{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cg transform="translate(24 0) scale(-1 1)"%3E%3Cg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"%3E%3Cpath stroke-dasharray="20" stroke-dashoffset="20" d="M3 3V21"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" dur="0.3s" values="20%3B0"%2F%3E%3C%2Fpath%3E%3Cpath stroke-dasharray="15" stroke-dashoffset="15" d="M21 12H7.5"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.4s" dur="0.2s" values="15%3B0"%2F%3E%3C%2Fpath%3E%3Cpath stroke-dasharray="12" stroke-dashoffset="12" d="M7 12L14 19M7 12L14 5"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.6s" dur="0.2s" values="12%3B0"%2F%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cg transform="translate(24 0) scale(-1 1)"%3E%3Cg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2"%3E%3Cpath stroke-dasharray="20" stroke-dashoffset="20" d="M3 3V21"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" dur="0.3s" values="20%3B0"%2F%3E%3C%2Fpath%3E%3Cpath stroke-dasharray="15" stroke-dashoffset="15" d="M21 12H7.5"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.4s" dur="0.2s" values="15%3B0"%2F%3E%3C%2Fpath%3E%3Cpath stroke-dasharray="12" stroke-dashoffset="12" d="M7 12L14 19M7 12L14 5"%3E%3Canimate fill="freeze" attributeName="stroke-dashoffset" begin="0.6s" dur="0.2s" values="12%3B0"%2F%3E%3C%2Fpath%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.icon-close-box-multiple-outline{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M20 2H8c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h12c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m0 14H8V4h12v12M4 6v14h14v2H4a2 2 0 0 1-2-2V6h2m5.77 6.84L12.6 10L9.77 7.15l1.4-1.4L14 8.6l2.84-2.83l1.4 1.4L15.4 10l2.83 2.84l-1.4 1.4L14 11.4l-2.83 2.84l-1.4-1.4Z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M20 2H8c-1.1 0-2 .9-2 2v12a2 2 0 0 0 2 2h12c1.11 0 2-.89 2-2V4a2 2 0 0 0-2-2m0 14H8V4h12v12M4 6v14h14v2H4a2 2 0 0 1-2-2V6h2m5.77 6.84L12.6 10L9.77 7.15l1.4-1.4L14 8.6l2.84-2.83l1.4 1.4L15.4 10l2.83 2.84l-1.4 1.4L14 11.4l-2.83 2.84l-1.4-1.4Z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}.icon-vector-square-delete{-webkit-mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M13 19c0-.3 0-.7.1-1H8v-2H6V8h2V6h8v2h2v5.1c.3-.1.7-.1 1-.1c.3 0 .7 0 1 .1V8h2V2h-6v2H8V2H2v6h2v8H2v6h6v-2h5.1c-.1-.3-.1-.7-.1-1m5-15h2v2h-2V4M4 4h2v2H4V4m2 16H4v-2h2v2m16.5-3.1L20.4 19l2.1 2.1l-1.4 1.4l-2.1-2.1l-2.1 2.1l-1.4-1.4l2.1-2.1l-2.1-2.1l1.4-1.4l2.1 2.1l2.1-2.1l1.4 1.4Z"%2F%3E%3C%2Fsvg%3E') no-repeat;mask:url('data:image/svg+xml,%3Csvg xmlns="http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg" width="24" height="24" viewBox="0 0 24 24"%3E%3Cpath fill="currentColor" d="M13 19c0-.3 0-.7.1-1H8v-2H6V8h2V6h8v2h2v5.1c.3-.1.7-.1 1-.1c.3 0 .7 0 1 .1V8h2V2h-6v2H8V2H2v6h2v8H2v6h6v-2h5.1c-.1-.3-.1-.7-.1-1m5-15h2v2h-2V4M4 4h2v2H4V4m2 16H4v-2h2v2m16.5-3.1L20.4 19l2.1 2.1l-1.4 1.4l-2.1-2.1l-2.1 2.1l-1.4-1.4l2.1-2.1l-2.1-2.1l1.4-1.4l2.1 2.1l2.1-2.1l1.4 1.4Z"%2F%3E%3C%2Fsvg%3E') no-repeat;-webkit-mask-size:100% 100%;mask-size:100% 100%;background-color:currentcolor;color:inherit;width:1em;height:1em}