vft 0.0.70 → 0.0.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/attributes.json +1 -1
- package/dist/index.css +1 -1
- package/es/component.js +56 -40
- package/es/components/alert/alert.vue2.js +22 -24
- package/es/components/aside/style/css.js +2 -0
- package/es/components/aside/style/index.js +2 -0
- package/es/components/avatar/avatar.vue2.js +14 -16
- package/es/components/back-top/back-top.vue2.js +7 -7
- package/es/components/button/button-custom.js +2 -4
- package/es/components/button/button-group.vue2.js +6 -8
- package/es/components/button/button.vue2.js +14 -16
- package/es/components/checkbox/checkbox-button.vue2.js +27 -29
- package/es/components/checkbox/checkbox-group.vue2.js +5 -7
- package/es/components/checkbox/checkbox.vue2.js +30 -32
- package/es/components/clamp/clamp.vue2.js +10 -12
- package/es/components/clamp-toggle/clamp-toggle.vue2.js +8 -10
- package/es/components/col/col.vue.js +4 -0
- package/es/components/col/col.vue2.js +60 -0
- package/es/components/col/index.js +12 -0
- package/es/components/col/style/css.js +2 -0
- package/es/components/col/style/index.js +2 -0
- package/es/components/col/types.js +1 -0
- package/es/components/collapse-transition/src/collapse-transition.vue2.js +5 -7
- package/es/components/color-picker/color-picker.vue2.js +2 -4
- package/es/components/color-picker/components/hue-slider.vue2.js +2 -4
- package/es/components/color-picker/components/predefine.vue2.js +7 -9
- package/es/components/color-picker/components/sv-panel.vue2.js +15 -17
- package/es/components/color-picker/composables/use-alpha-slider.js +4 -6
- package/es/components/config-provider/config-provider.vue2.js +11 -13
- package/es/components/config-provider/hooks/use-global-config.js +7 -9
- package/es/components/container/aside.vue.js +4 -0
- package/es/components/container/aside.vue2.js +37 -0
- package/es/components/container/container.vue.js +4 -0
- package/es/components/container/container.vue2.js +33 -0
- package/es/components/container/footer.vue.js +4 -0
- package/es/components/container/footer.vue2.js +39 -0
- package/es/components/container/header.vue.js +4 -0
- package/es/components/container/header.vue2.js +39 -0
- package/es/components/container/index.js +25 -0
- package/es/components/container/main.vue.js +4 -0
- package/es/components/container/main.vue2.js +26 -0
- package/es/components/container/style/css.js +6 -0
- package/es/components/container/style/index.js +6 -0
- package/es/components/context-menu/context-menu.vue2.js +9 -8
- package/es/components/date-picker/composables/use-month-range-header.js +29 -0
- package/es/components/date-picker/composables/use-range-picker.js +68 -0
- package/es/components/date-picker/composables/use-shortcut.js +24 -0
- package/es/components/date-picker/constants.js +4 -0
- package/es/components/date-picker/date-picker-com/basic-cell-render.js +37 -0
- package/es/components/date-picker/date-picker-com/basic-date-table.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/basic-date-table.vue2.js +206 -0
- package/es/components/date-picker/date-picker-com/basic-month-table.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/basic-month-table.vue2.js +131 -0
- package/es/components/date-picker/date-picker-com/basic-year-table.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/basic-year-table.vue2.js +85 -0
- package/es/components/date-picker/date-picker-com/panel-date-pick.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/panel-date-pick.vue2.js +455 -0
- package/es/components/date-picker/date-picker-com/panel-date-range.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/panel-date-range.vue2.js +383 -0
- package/es/components/date-picker/date-picker-com/panel-month-range.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/panel-month-range.vue2.js +170 -0
- package/es/components/date-picker/date-picker.js +81 -0
- package/es/components/date-picker/date-picker.type.js +1 -0
- package/es/components/date-picker/index.js +14 -0
- package/es/components/date-picker/panel-utils.js +17 -0
- package/es/components/date-picker/props/basic-cell.js +14 -0
- package/es/components/date-picker/props/basic-date-table.js +18 -0
- package/es/components/date-picker/props/basic-month-table.js +14 -0
- package/es/components/date-picker/props/basic-year-table.js +15 -0
- package/es/components/date-picker/props/date-picker.js +18 -0
- package/es/components/date-picker/props/panel-date-pick.js +23 -0
- package/es/components/date-picker/props/panel-date-range.js +14 -0
- package/es/components/date-picker/props/panel-month-range.js +14 -0
- package/es/components/date-picker/props/shared.js +56 -0
- package/es/components/date-picker/style/css.js +2 -0
- package/es/components/date-picker/style/index.js +7 -0
- package/es/components/date-picker/utils.js +49 -0
- package/es/components/date-time-select/date-time-select.vue2.js +97 -111
- package/es/components/date-time-select/style/index.js +6 -0
- package/es/components/descriptions/description-item.vue2.js +6 -8
- package/es/components/descriptions/description.vue2.js +23 -25
- package/es/components/descriptions/descriptions-cell.js +11 -13
- package/es/components/descriptions/descriptions-row.vue2.js +13 -15
- package/es/components/dialog/dialog-content.vue2.js +9 -11
- package/es/components/dialog/dialog.vue2.js +2 -3
- package/es/components/dialog/hooks/use-dialog.js +2 -3
- package/es/components/divider/divider.vue2.js +7 -9
- package/es/components/dropdown/dropdown-item-impl.vue2.js +2 -4
- package/es/components/dropdown/dropdown-menu.vue2.js +2 -4
- package/es/components/dropdown/dropdown.vue2.js +2 -4
- package/es/components/dropdown/useDropdown.js +13 -15
- package/es/components/empty/empty.vue2.js +9 -11
- package/es/components/footer/style/css.js +2 -0
- package/es/components/footer/style/index.js +2 -0
- package/es/components/footer-layout/footer-layout.vue2.js +105 -37
- package/es/components/form/form-item.vue2.js +2 -4
- package/es/components/form/form-label-wrap.js +13 -15
- package/es/components/form/form.vue2.js +8 -10
- package/es/components/form/hooks/use-form-common-props.js +3 -5
- package/es/components/form/hooks/use-form-item.js +14 -16
- package/es/components/full-screen/full-screen.vue2.js +5 -7
- package/es/components/header/style/css.js +2 -0
- package/es/components/header/style/index.js +2 -0
- package/es/components/header-layout/header-layout.vue2.js +122 -39
- package/es/components/horizontal-menu/horizontal-menu.vue.js +4 -0
- package/es/components/horizontal-menu/horizontal-menu.vue2.js +115 -0
- package/es/components/horizontal-menu/index.js +12 -0
- package/es/components/horizontal-menu/style/css.js +6 -0
- package/es/components/horizontal-menu/style/index.js +6 -0
- package/es/components/icon/icon.vue2.js +13 -15
- package/es/components/icon-text/icon-text.vue2.js +2 -4
- package/es/components/iframe-layout/iframe-layout.vue2.js +6 -8
- package/es/components/iframe-layout/iframe-page.vue2.js +11 -13
- package/es/components/image/image.vue2.js +10 -12
- package/es/components/image-viewer/image-viewer.vue2.js +2 -4
- package/es/components/index.js +254 -209
- package/es/components/input/input.vue2.js +191 -192
- package/es/components/link/link.vue2.js +25 -27
- package/es/components/list-cell/list-cell.vue2.js +18 -20
- package/es/components/loading/loading.js +6 -8
- package/es/components/loading/service.js +2 -4
- package/es/components/logo/logo.vue2.js +23 -25
- package/es/components/main/style/css.js +2 -0
- package/es/components/main/style/index.js +2 -0
- package/es/components/md-code-demo/md-code-demo.js +2 -4
- package/es/components/md-comment/md-comment.vue2.js +8 -10
- package/es/components/md-container/md-container.vue2.js +67 -64
- package/es/components/md-container/toc.js +1 -1
- package/es/components/md-tabs/md-tabs.js +0 -1
- package/es/components/md-vue-playground/md-vue-playground.vue2.js +10 -12
- package/es/components/menu/menu-collapse-transition.vue2.js +2 -4
- package/es/components/menu/menu-item-group.vue2.js +13 -15
- package/es/components/menu/menu-item.vue2.js +94 -73
- package/es/components/menu/menu.vue2.js +100 -108
- package/es/components/menu/sub-menu.vue2.js +83 -82
- package/es/components/menu/use-menu-css-var.js +2 -4
- package/es/components/multiple-tabs/index.js +15 -9
- package/es/components/multiple-tabs/multiple-tabs.vue2.js +50 -45
- package/es/components/overlay/overlay.vue2.js +15 -17
- package/es/components/page-wrapper/page-wrapper.vue2.js +8 -10
- package/es/components/pagination/components/jumper.vue2.js +14 -16
- package/es/components/pagination/components/pager.vue2.js +2 -4
- package/es/components/pagination/components/sizes.vue2.js +2 -4
- package/es/components/pagination/components/total.vue2.js +4 -6
- package/es/components/pagination/pagination.vue2.js +7 -9
- package/es/components/popover/popover.vue2.js +2 -4
- package/es/components/popper/arrow.vue2.js +2 -4
- package/es/components/popper/composables/use-content-dom.js +7 -9
- package/es/components/popper/composables/use-content.js +2 -4
- package/es/components/popper/trigger.vue2.js +2 -4
- package/es/components/qrcode/qrcode.vue2.js +8 -10
- package/es/components/radio/radio-button.vue2.js +12 -14
- package/es/components/radio/radio-group.vue2.js +11 -13
- package/es/components/radio/radio.vue2.js +7 -9
- package/es/components/result/result.vue2.js +7 -7
- package/es/components/router-view-content/router-view-content.vue2.js +6 -8
- package/es/components/roving-focus-group/roving-focus-item.vue2.js +10 -12
- package/es/components/row/constants.js +4 -0
- package/es/components/row/index.js +14 -0
- package/es/components/row/row.vue.js +4 -0
- package/es/components/row/row.vue2.js +49 -0
- package/es/components/row/style/css.js +2 -0
- package/es/components/row/style/index.js +2 -0
- package/es/components/row/types.js +1 -0
- package/es/components/scrollbar/index.js +9 -11
- package/es/components/scrollbar/scrollbar.vue2.js +12 -14
- package/es/components/scrollbar/thumb.vue2.js +2 -4
- package/es/components/search/search.vue2.js +136 -159
- package/es/components/select-v2/group-item.vue2.js +2 -4
- package/es/components/select-v2/option-item.vue2.js +6 -8
- package/es/components/select-v2/select-dropdown.js +2 -4
- package/es/components/select-v2/useInput.js +5 -6
- package/es/components/select-v2/useSelect.js +19 -21
- package/es/components/select-v2/util.js +1 -1
- package/es/components/side-menu/side-menu.vue2.js +213 -150
- package/es/components/side-menu/use-drag-line.js +29 -28
- package/es/components/slot/only-child.js +11 -13
- package/es/components/switch/switch.vue2.js +8 -10
- package/es/components/table/table.vue2.js +13 -15
- package/es/components/tabs/tab-bar.vue2.js +2 -4
- package/es/components/tabs/tab-nav.vue2.js +7 -7
- package/es/components/tabs/tab-pane.vue2.js +10 -12
- package/es/components/tabs/tabs.vue2.js +38 -40
- package/es/components/tag/tag.vue2.js +7 -9
- package/es/components/time-picker/common/picker.vue.js +4 -0
- package/es/components/time-picker/common/picker.vue2.js +438 -0
- package/es/components/time-picker/common/props.js +201 -0
- package/es/components/time-picker/composables/use-time-panel.js +60 -0
- package/es/components/time-picker/composables/use-time-picker.js +40 -0
- package/es/components/time-picker/constants.js +17 -0
- package/es/components/time-picker/index.js +31 -0
- package/es/components/time-picker/props/basic-time-spinner.js +31 -0
- package/es/components/time-picker/props/panel-time-picker.js +17 -0
- package/es/components/time-picker/props/panel-time-range.js +16 -0
- package/es/components/time-picker/props/shared.js +40 -0
- package/es/components/time-picker/style/css.js +2 -0
- package/es/components/time-picker/style/index.js +2 -0
- package/es/components/time-picker/time-picker-com/basic-time-spinner.vue.js +4 -0
- package/es/components/time-picker/time-picker-com/basic-time-spinner.vue2.js +227 -0
- package/es/components/time-picker/time-picker-com/panel-time-pick.vue.js +4 -0
- package/es/components/time-picker/time-picker-com/panel-time-pick.vue2.js +107 -0
- package/es/components/time-picker/time-picker-com/panel-time-range.vue.js +4 -0
- package/es/components/time-picker/time-picker-com/panel-time-range.vue2.js +190 -0
- package/es/components/time-picker/time-picker.js +70 -0
- package/es/components/time-picker/types.js +1 -0
- package/es/components/time-picker/utils.js +35 -0
- package/es/components/time-select/style/css.js +2 -0
- package/es/components/time-select/style/index.js +2 -0
- package/es/components/time-select/time-select.js +54 -0
- package/es/components/time-select/time-select.vue.js +4 -0
- package/es/components/time-select/time-select.vue2.js +104 -0
- package/es/components/time-select/utils.js +40 -0
- package/es/components/tooltip/content.vue2.js +16 -18
- package/es/components/tooltip/index.js +5 -3
- package/es/components/tooltip/tooltip.vue2.js +20 -22
- package/es/components/tooltip/trigger.vue2.js +8 -10
- package/es/components/tooltip/utils.js +4 -6
- package/es/components/verify-code/verify-code.vue2.js +5 -7
- package/es/components/virtual-list/builders/build-grid.js +2 -4
- package/es/components/virtual-list/builders/build-list.js +34 -36
- package/es/components/virtual-list/components/dynamic-size-grid.js +47 -48
- package/es/components/virtual-list/components/scrollbar.js +10 -12
- package/es/hooks/use-lockscreen/index.js +16 -17
- package/es/hooks/use-namespace/index.js +22 -22
- package/es/hooks/use-same-target/index.js +5 -5
- package/es/index.js +381 -336
- package/es/package.json.js +1 -1
- package/global.d.ts +73 -2
- package/lib/component.cjs +1 -1
- package/lib/components/alert/alert.vue2.cjs +1 -1
- package/lib/components/aside/style/css.cjs +1 -0
- package/lib/components/aside/style/index.cjs +1 -0
- package/lib/components/avatar/avatar.vue2.cjs +1 -1
- package/lib/components/back-top/back-top.vue2.cjs +1 -1
- package/lib/components/button/button-custom.cjs +1 -1
- package/lib/components/button/button-group.vue2.cjs +1 -1
- package/lib/components/button/button.vue2.cjs +1 -1
- package/lib/components/checkbox/checkbox-button.vue2.cjs +1 -1
- package/lib/components/checkbox/checkbox-group.vue2.cjs +1 -1
- package/lib/components/checkbox/checkbox.vue2.cjs +1 -1
- package/lib/components/clamp/clamp.vue2.cjs +1 -1
- package/lib/components/clamp-toggle/clamp-toggle.vue2.cjs +1 -1
- package/lib/components/col/col.vue.cjs +1 -0
- package/lib/components/col/col.vue2.cjs +1 -0
- package/lib/components/col/index.cjs +1 -0
- package/lib/components/col/style/css.cjs +1 -0
- package/lib/components/col/style/index.cjs +1 -0
- package/lib/components/col/types.cjs +1 -0
- package/lib/components/collapse-transition/src/collapse-transition.vue2.cjs +1 -1
- package/lib/components/color-picker/color-picker.vue2.cjs +1 -1
- package/lib/components/color-picker/components/hue-slider.vue2.cjs +1 -1
- package/lib/components/color-picker/components/predefine.vue2.cjs +1 -1
- package/lib/components/color-picker/components/sv-panel.vue2.cjs +1 -1
- package/lib/components/color-picker/composables/use-alpha-slider.cjs +1 -1
- package/lib/components/config-provider/config-provider.vue2.cjs +1 -1
- package/lib/components/config-provider/hooks/use-global-config.cjs +1 -1
- package/lib/components/container/aside.vue.cjs +1 -0
- package/lib/components/container/aside.vue2.cjs +1 -0
- package/lib/components/container/container.vue.cjs +1 -0
- package/lib/components/container/container.vue2.cjs +1 -0
- package/lib/components/container/footer.vue.cjs +1 -0
- package/lib/components/container/footer.vue2.cjs +1 -0
- package/lib/components/container/header.vue.cjs +1 -0
- package/lib/components/container/header.vue2.cjs +1 -0
- package/lib/components/container/index.cjs +1 -0
- package/lib/components/container/main.vue.cjs +1 -0
- package/lib/components/container/main.vue2.cjs +1 -0
- package/lib/components/container/style/css.cjs +1 -0
- package/lib/components/container/style/index.cjs +1 -0
- package/lib/components/context-menu/context-menu.vue2.cjs +1 -1
- package/lib/components/date-picker/composables/use-month-range-header.cjs +1 -0
- package/lib/components/date-picker/composables/use-range-picker.cjs +1 -0
- package/lib/components/date-picker/composables/use-shortcut.cjs +1 -0
- package/lib/components/date-picker/constants.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-cell-render.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-date-table.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-date-table.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-month-table.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-month-table.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-year-table.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-year-table.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-date-pick.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-date-pick.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-date-range.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-date-range.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-month-range.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-month-range.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker.cjs +1 -0
- package/lib/components/date-picker/date-picker.type.cjs +1 -0
- package/lib/components/date-picker/index.cjs +1 -0
- package/lib/components/date-picker/panel-utils.cjs +1 -0
- package/lib/components/date-picker/props/basic-cell.cjs +1 -0
- package/lib/components/date-picker/props/basic-date-table.cjs +1 -0
- package/lib/components/date-picker/props/basic-month-table.cjs +1 -0
- package/lib/components/date-picker/props/basic-year-table.cjs +1 -0
- package/lib/components/date-picker/props/date-picker.cjs +1 -0
- package/lib/components/date-picker/props/panel-date-pick.cjs +1 -0
- package/lib/components/date-picker/props/panel-date-range.cjs +1 -0
- package/lib/components/date-picker/props/panel-month-range.cjs +1 -0
- package/lib/components/date-picker/props/shared.cjs +1 -0
- package/lib/components/date-picker/style/css.cjs +1 -0
- package/lib/components/date-picker/style/index.cjs +1 -0
- package/lib/components/date-picker/utils.cjs +1 -0
- package/lib/components/date-time-select/date-time-select.vue2.cjs +1 -1
- package/lib/components/date-time-select/style/index.cjs +1 -1
- package/lib/components/descriptions/description-item.vue2.cjs +1 -1
- package/lib/components/descriptions/description.vue2.cjs +1 -1
- package/lib/components/descriptions/descriptions-cell.cjs +1 -1
- package/lib/components/descriptions/descriptions-row.vue2.cjs +1 -1
- package/lib/components/dialog/dialog-content.vue2.cjs +1 -1
- package/lib/components/dialog/dialog.vue2.cjs +1 -1
- package/lib/components/dialog/hooks/use-dialog.cjs +1 -1
- package/lib/components/divider/divider.vue2.cjs +1 -1
- package/lib/components/dropdown/dropdown-item-impl.vue2.cjs +1 -1
- package/lib/components/dropdown/dropdown-menu.vue2.cjs +1 -1
- package/lib/components/dropdown/dropdown.vue2.cjs +1 -1
- package/lib/components/dropdown/useDropdown.cjs +1 -1
- package/lib/components/empty/empty.vue2.cjs +1 -1
- package/lib/components/footer/style/css.cjs +1 -0
- package/lib/components/footer/style/index.cjs +1 -0
- package/lib/components/footer-layout/footer-layout.vue2.cjs +1 -1
- package/lib/components/form/form-item.vue2.cjs +1 -1
- package/lib/components/form/form-label-wrap.cjs +1 -1
- package/lib/components/form/form.vue2.cjs +1 -1
- package/lib/components/form/hooks/use-form-common-props.cjs +1 -1
- package/lib/components/form/hooks/use-form-item.cjs +1 -1
- package/lib/components/full-screen/full-screen.vue2.cjs +1 -1
- package/lib/components/header/style/css.cjs +1 -0
- package/lib/components/header/style/index.cjs +1 -0
- package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
- package/lib/components/horizontal-menu/horizontal-menu.vue.cjs +1 -0
- package/lib/components/horizontal-menu/horizontal-menu.vue2.cjs +1 -0
- package/lib/components/horizontal-menu/index.cjs +1 -0
- package/lib/components/horizontal-menu/style/css.cjs +1 -0
- package/lib/components/horizontal-menu/style/index.cjs +1 -0
- package/lib/components/icon/icon.vue2.cjs +1 -1
- package/lib/components/icon-text/icon-text.vue2.cjs +1 -1
- package/lib/components/iframe-layout/iframe-layout.vue2.cjs +1 -1
- package/lib/components/iframe-layout/iframe-page.vue2.cjs +1 -1
- package/lib/components/image/image.vue2.cjs +1 -1
- package/lib/components/image-viewer/image-viewer.vue2.cjs +1 -1
- package/lib/components/index.cjs +1 -1
- package/lib/components/input/input.vue2.cjs +1 -1
- package/lib/components/link/link.vue2.cjs +1 -1
- package/lib/components/list-cell/list-cell.vue2.cjs +1 -1
- package/lib/components/loading/loading.cjs +1 -1
- package/lib/components/loading/service.cjs +1 -1
- package/lib/components/logo/logo.vue2.cjs +1 -1
- package/lib/components/main/style/css.cjs +1 -0
- package/lib/components/main/style/index.cjs +1 -0
- package/lib/components/md-code-demo/md-code-demo.cjs +1 -1
- package/lib/components/md-comment/md-comment.vue2.cjs +1 -1
- package/lib/components/md-container/md-container.vue2.cjs +1 -1
- package/lib/components/md-container/toc.cjs +1 -1
- package/lib/components/md-vue-playground/md-vue-playground.vue2.cjs +1 -1
- package/lib/components/menu/menu-collapse-transition.vue2.cjs +1 -1
- package/lib/components/menu/menu-item-group.vue2.cjs +1 -1
- package/lib/components/menu/menu-item.vue2.cjs +1 -1
- package/lib/components/menu/menu.vue2.cjs +1 -1
- package/lib/components/menu/sub-menu.vue2.cjs +1 -1
- package/lib/components/menu/use-menu-css-var.cjs +1 -1
- package/lib/components/multiple-tabs/index.cjs +1 -1
- package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
- package/lib/components/overlay/overlay.vue2.cjs +1 -1
- package/lib/components/page-wrapper/page-wrapper.vue2.cjs +1 -1
- package/lib/components/pagination/components/jumper.vue2.cjs +1 -1
- package/lib/components/pagination/components/pager.vue2.cjs +1 -1
- package/lib/components/pagination/components/sizes.vue2.cjs +1 -1
- package/lib/components/pagination/components/total.vue2.cjs +1 -1
- package/lib/components/pagination/pagination.vue2.cjs +1 -1
- package/lib/components/popover/popover.vue2.cjs +1 -1
- package/lib/components/popper/arrow.vue2.cjs +1 -1
- package/lib/components/popper/composables/use-content-dom.cjs +1 -1
- package/lib/components/popper/composables/use-content.cjs +1 -1
- package/lib/components/popper/trigger.vue2.cjs +1 -1
- package/lib/components/qrcode/qrcode.vue2.cjs +1 -1
- package/lib/components/radio/radio-button.vue2.cjs +1 -1
- package/lib/components/radio/radio-group.vue2.cjs +1 -1
- package/lib/components/radio/radio.vue2.cjs +1 -1
- package/lib/components/result/result.vue2.cjs +1 -1
- package/lib/components/router-view-content/router-view-content.vue2.cjs +1 -1
- package/lib/components/roving-focus-group/roving-focus-item.vue2.cjs +1 -1
- package/lib/components/row/constants.cjs +1 -0
- package/lib/components/row/index.cjs +1 -0
- package/lib/components/row/row.vue.cjs +1 -0
- package/lib/components/row/row.vue2.cjs +1 -0
- package/lib/components/row/style/css.cjs +1 -0
- package/lib/components/row/style/index.cjs +1 -0
- package/lib/components/row/types.cjs +1 -0
- package/lib/components/scrollbar/index.cjs +1 -1
- package/lib/components/scrollbar/scrollbar.vue2.cjs +1 -1
- package/lib/components/scrollbar/thumb.vue2.cjs +1 -1
- package/lib/components/search/search.vue2.cjs +1 -1
- package/lib/components/select-v2/group-item.vue2.cjs +1 -1
- package/lib/components/select-v2/option-item.vue2.cjs +1 -1
- package/lib/components/select-v2/select-dropdown.cjs +1 -1
- package/lib/components/select-v2/useInput.cjs +1 -1
- package/lib/components/select-v2/useSelect.cjs +1 -1
- package/lib/components/select-v2/util.cjs +1 -1
- package/lib/components/side-menu/side-menu.vue2.cjs +1 -1
- package/lib/components/side-menu/use-drag-line.cjs +1 -1
- package/lib/components/slot/only-child.cjs +1 -1
- package/lib/components/switch/switch.vue2.cjs +1 -1
- package/lib/components/table/table.vue2.cjs +1 -1
- package/lib/components/tabs/tab-bar.vue2.cjs +1 -1
- package/lib/components/tabs/tab-nav.vue2.cjs +1 -1
- package/lib/components/tabs/tab-pane.vue2.cjs +1 -1
- package/lib/components/tabs/tabs.vue2.cjs +1 -1
- package/lib/components/tag/tag.vue2.cjs +1 -1
- package/lib/components/time-picker/common/picker.vue.cjs +1 -0
- package/lib/components/time-picker/common/picker.vue2.cjs +1 -0
- package/lib/components/time-picker/common/props.cjs +1 -0
- package/lib/components/time-picker/composables/use-time-panel.cjs +1 -0
- package/lib/components/time-picker/composables/use-time-picker.cjs +1 -0
- package/lib/components/time-picker/constants.cjs +1 -0
- package/lib/components/time-picker/index.cjs +1 -0
- package/lib/components/time-picker/props/basic-time-spinner.cjs +1 -0
- package/lib/components/time-picker/props/panel-time-picker.cjs +1 -0
- package/lib/components/time-picker/props/panel-time-range.cjs +1 -0
- package/lib/components/time-picker/props/shared.cjs +1 -0
- package/lib/components/time-picker/style/css.cjs +1 -0
- package/lib/components/time-picker/style/index.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/basic-time-spinner.vue.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/basic-time-spinner.vue2.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/panel-time-pick.vue.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/panel-time-pick.vue2.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/panel-time-range.vue.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/panel-time-range.vue2.cjs +1 -0
- package/lib/components/time-picker/time-picker.cjs +1 -0
- package/lib/components/time-picker/types.cjs +1 -0
- package/lib/components/time-picker/utils.cjs +1 -0
- package/lib/components/time-select/style/css.cjs +1 -0
- package/lib/components/time-select/style/index.cjs +1 -0
- package/lib/components/time-select/time-select.cjs +1 -0
- package/lib/components/time-select/time-select.vue.cjs +1 -0
- package/lib/components/time-select/time-select.vue2.cjs +1 -0
- package/lib/components/time-select/utils.cjs +1 -0
- package/lib/components/tooltip/content.vue2.cjs +1 -1
- package/lib/components/tooltip/index.cjs +1 -1
- package/lib/components/tooltip/tooltip.vue2.cjs +1 -1
- package/lib/components/tooltip/trigger.vue2.cjs +1 -1
- package/lib/components/tooltip/utils.cjs +1 -1
- package/lib/components/verify-code/verify-code.vue2.cjs +1 -1
- package/lib/components/virtual-list/builders/build-grid.cjs +1 -1
- package/lib/components/virtual-list/builders/build-list.cjs +1 -1
- package/lib/components/virtual-list/components/dynamic-size-grid.cjs +3 -3
- package/lib/components/virtual-list/components/scrollbar.cjs +1 -1
- package/lib/hooks/use-lockscreen/index.cjs +1 -1
- package/lib/hooks/use-namespace/index.cjs +1 -1
- package/lib/hooks/use-same-target/index.cjs +1 -1
- package/lib/index.cjs +1 -1
- package/lib/package.json.cjs +1 -1
- package/package.json +7 -7
- package/tags.json +1 -1
- package/theme-style/base.css +1 -1
- package/theme-style/display.css +1 -0
- package/theme-style/index.css +1 -1
- package/theme-style/src/affix.scss +7 -0
- package/theme-style/src/aside.scss +8 -0
- package/theme-style/src/autocomplete.scss +83 -0
- package/theme-style/src/back-top.scss +7 -6
- package/theme-style/src/badge.scss +57 -0
- package/theme-style/src/breadcrumb.scss +61 -0
- package/theme-style/src/calendar.scss +80 -0
- package/theme-style/src/card.scss +38 -0
- package/theme-style/src/carousel-item.scss +50 -0
- package/theme-style/src/carousel.scss +174 -0
- package/theme-style/src/cascader-panel.scss +138 -0
- package/theme-style/src/cascader.scss +216 -0
- package/theme-style/src/check-tag.scss +29 -0
- package/theme-style/src/col.scss +52 -0
- package/theme-style/src/collapse.scss +67 -0
- package/theme-style/src/color-picker.scss +2 -2
- package/theme-style/src/common/popup.scss +47 -0
- package/theme-style/src/common/transition.scss +21 -3
- package/theme-style/src/common/var.scss +388 -6
- package/theme-style/src/container.scss +14 -0
- package/theme-style/src/date-picker/date-picker.scss +110 -0
- package/theme-style/src/date-picker/date-range-picker.scss +113 -0
- package/theme-style/src/date-picker/date-table.scss +162 -0
- package/theme-style/src/date-picker/month-table.scss +90 -0
- package/theme-style/src/date-picker/picker-panel.scss +131 -0
- package/theme-style/src/date-picker/picker.scss +210 -0
- package/theme-style/src/date-picker/time-picker.scss +90 -0
- package/theme-style/src/date-picker/time-range-picker.scss +33 -0
- package/theme-style/src/date-picker/time-spinner.scss +111 -0
- package/theme-style/src/date-picker/year-table.scss +60 -0
- package/theme-style/src/date-picker.scss +9 -0
- package/theme-style/src/date-time-select.scss +46 -20
- package/theme-style/src/display.scss +12 -0
- package/theme-style/src/drawer.scss +160 -0
- package/theme-style/src/footer-layout.scss +4 -9
- package/theme-style/src/footer.scss +11 -0
- package/theme-style/src/header-layout.scss +26 -15
- package/theme-style/src/header.scss +11 -0
- package/theme-style/src/horizontal-menu.scss +90 -0
- package/theme-style/src/icon.scss +6 -6
- package/theme-style/src/index.scss +123 -76
- package/theme-style/src/input-number.scss +175 -0
- package/theme-style/src/input.scss +3 -6
- package/theme-style/src/list-cell.scss +3 -3
- package/theme-style/src/loading.scss +1 -1
- package/theme-style/src/main.scss +10 -0
- package/theme-style/src/md/code.scss +3 -6
- package/theme-style/src/md/demo-block.scss +2 -2
- package/theme-style/src/md/pswp.scss +4 -4
- package/theme-style/src/md/scroll-bar.scss +1 -1
- package/theme-style/src/md/table.scss +3 -3
- package/theme-style/src/md/toc.scss +3 -3
- package/theme-style/src/md-comment.scss +1086 -200
- package/theme-style/src/md-container.scss +6 -9
- package/theme-style/src/md-vue-playground.scss +0 -15
- package/theme-style/src/menu.scss +43 -17
- package/theme-style/src/message-box.scss +258 -0
- package/theme-style/src/mixins/_col.scss +38 -0
- package/theme-style/src/mixins/mixins.scss +25 -0
- package/theme-style/src/notification.scss +105 -0
- package/theme-style/src/option.scss +36 -0
- package/theme-style/src/pagination.scss +0 -2
- package/theme-style/src/progress.scss +169 -0
- package/theme-style/src/rate.scss +101 -0
- package/theme-style/src/reset.scss +92 -0
- package/theme-style/src/row.scss +31 -0
- package/theme-style/src/search.scss +28 -0
- package/theme-style/src/select-dropdown.scss +2 -2
- package/theme-style/src/side-menu.scss +9 -3
- package/theme-style/src/slider.scss +211 -0
- package/theme-style/src/space.scss +20 -0
- package/theme-style/src/spinner.scss +43 -0
- package/theme-style/src/statistic.scss +35 -0
- package/theme-style/src/step.scss +316 -0
- package/theme-style/src/steps.scss +21 -0
- package/theme-style/src/tabs.scss +2 -2
- package/theme-style/src/time-picker.scss +5 -0
- package/theme-style/src/time-select.scss +37 -0
- package/theme-style/src/timeline-item.scss +85 -0
- package/theme-style/src/timeline.scss +46 -0
- package/theme-style/src/transfer.scss +206 -0
- package/theme-style/src/tree-select.scss +36 -0
- package/theme-style/src/tree.scss +131 -0
- package/theme-style/src/upload.scss +621 -0
- package/theme-style/vft-affix.css +1 -0
- package/theme-style/vft-aside.css +1 -0
- package/theme-style/vft-autocomplete.css +1 -0
- package/theme-style/vft-back-top.css +1 -1
- package/theme-style/vft-badge.css +1 -0
- package/theme-style/vft-breadcrumb.css +1 -0
- package/theme-style/vft-calendar.css +1 -0
- package/theme-style/vft-card.css +1 -0
- package/theme-style/vft-carousel-item.css +1 -0
- package/theme-style/vft-carousel.css +1 -0
- package/theme-style/vft-cascader-panel.css +1 -0
- package/theme-style/vft-cascader.css +1 -0
- package/theme-style/vft-check-tag.css +1 -0
- package/theme-style/vft-col.css +1 -0
- package/theme-style/vft-collapse.css +1 -0
- package/theme-style/vft-color-picker.css +1 -1
- package/theme-style/vft-container.css +1 -0
- package/theme-style/vft-date-picker.css +1 -0
- package/theme-style/vft-date-time-select.css +1 -1
- package/theme-style/vft-drawer.css +1 -0
- package/theme-style/vft-footer-layout.css +1 -1
- package/theme-style/vft-footer.css +1 -0
- package/theme-style/vft-header-layout.css +1 -1
- package/theme-style/vft-header.css +1 -0
- package/theme-style/vft-horizontal-menu.css +1 -0
- package/theme-style/vft-input-number.css +1 -0
- package/theme-style/vft-input.css +1 -1
- package/theme-style/vft-main.css +1 -0
- package/theme-style/vft-md-comment.css +1 -1
- package/theme-style/vft-md-container.css +1 -1
- package/theme-style/vft-md-vue-playground.css +1 -1
- package/theme-style/vft-menu.css +1 -1
- package/theme-style/vft-message-box.css +1 -0
- package/theme-style/vft-notification.css +1 -0
- package/theme-style/vft-option.css +1 -0
- package/theme-style/vft-pagination.css +1 -1
- package/theme-style/vft-progress.css +1 -0
- package/theme-style/vft-rate.css +1 -0
- package/theme-style/vft-reset.css +1 -0
- package/theme-style/vft-row.css +1 -0
- package/theme-style/vft-search.css +1 -1
- package/theme-style/vft-select-dropdown.css +1 -1
- package/theme-style/vft-select.css +1 -1
- package/theme-style/vft-side-menu.css +1 -1
- package/theme-style/vft-slider.css +1 -0
- package/theme-style/vft-space.css +1 -0
- package/theme-style/vft-spinner.css +1 -0
- package/theme-style/vft-statistic.css +1 -0
- package/theme-style/vft-step.css +1 -0
- package/theme-style/vft-steps.css +1 -0
- package/theme-style/vft-tabs.css +1 -1
- package/theme-style/vft-time-picker.css +1 -0
- package/theme-style/vft-time-select.css +1 -0
- package/theme-style/vft-timeline-item.css +1 -0
- package/theme-style/vft-timeline.css +1 -0
- package/theme-style/vft-transfer.css +1 -0
- package/theme-style/vft-tree-select.css +1 -0
- package/theme-style/vft-tree.css +1 -0
- package/theme-style/vft-upload.css +1 -0
- package/theme-style/vft-var.css +1 -1
- package/web-types.json +1 -1
- package/es/comp-resolver.d.ts +0 -49
- package/es/component.d.ts +0 -3
- package/es/components/alert/alert.vue.d.ts +0 -102
- package/es/components/alert/index.d.ts +0 -73
- package/es/components/alert/types.d.ts +0 -4
- package/es/components/avatar/avatar.vue.d.ts +0 -56
- package/es/components/avatar/index.d.ts +0 -54
- package/es/components/back-top/back-top.vue.d.ts +0 -69
- package/es/components/back-top/index.d.ts +0 -54
- package/es/components/back-top/use-back-top.d.ts +0 -5
- package/es/components/base/style/css.d.ts +0 -0
- package/es/components/base/style/index.d.ts +0 -0
- package/es/components/button/button-custom.d.ts +0 -4
- package/es/components/button/button-group.vue.d.ts +0 -23
- package/es/components/button/button.vue.d.ts +0 -189
- package/es/components/button/constants.d.ts +0 -7
- package/es/components/button/index.d.ts +0 -203
- package/es/components/button/instance.d.ts +0 -4
- package/es/components/button/style/css.d.ts +0 -0
- package/es/components/button/style/index.d.ts +0 -0
- package/es/components/button/types.d.ts +0 -4
- package/es/components/button/use-button.d.ts +0 -10
- package/es/components/button-group/style/css.d.ts +0 -0
- package/es/components/button-group/style/index.d.ts +0 -0
- package/es/components/checkbox/checkbox-button.vue.d.ts +0 -137
- package/es/components/checkbox/checkbox-group.vue.d.ts +0 -112
- package/es/components/checkbox/checkbox.vue.d.ts +0 -141
- package/es/components/checkbox/composables/index.d.ts +0 -5
- package/es/components/checkbox/composables/use-checkbox-disabled.d.ts +0 -6
- package/es/components/checkbox/composables/use-checkbox-event.d.ts +0 -7
- package/es/components/checkbox/composables/use-checkbox-model.d.ts +0 -7
- package/es/components/checkbox/composables/use-checkbox-status.d.ts +0 -11
- package/es/components/checkbox/composables/use-checkbox.d.ts +0 -15
- package/es/components/checkbox/constants.d.ts +0 -8
- package/es/components/checkbox/index.d.ts +0 -556
- package/es/components/checkbox/style/css.d.ts +0 -0
- package/es/components/checkbox/style/index.d.ts +0 -0
- package/es/components/checkbox/types.d.ts +0 -2
- package/es/components/checkbox-button/style/css.d.ts +0 -0
- package/es/components/checkbox-button/style/index.d.ts +0 -0
- package/es/components/checkbox-group/style/css.d.ts +0 -0
- package/es/components/checkbox-group/style/index.d.ts +0 -0
- package/es/components/clamp/clamp.vue.d.ts +0 -64
- package/es/components/clamp/index.d.ts +0 -63
- package/es/components/clamp/style/css.d.ts +0 -0
- package/es/components/clamp/style/index.d.ts +0 -0
- package/es/components/clamp-toggle/clamp-toggle.vue.d.ts +0 -101
- package/es/components/clamp-toggle/index.d.ts +0 -100
- package/es/components/clamp-toggle/style/css.d.ts +0 -0
- package/es/components/clamp-toggle/style/index.d.ts +0 -0
- package/es/components/collapse-transition/index.d.ts +0 -4
- package/es/components/collapse-transition/src/collapse-transition.vue.d.ts +0 -2
- package/es/components/collapse-transition/style/css.d.ts +0 -0
- package/es/components/collapse-transition/style/index.d.ts +0 -0
- package/es/components/collection/collection-item.vue.d.ts +0 -2
- package/es/components/collection/collection.d.ts +0 -242
- package/es/components/collection/collection.vue.d.ts +0 -2
- package/es/components/collection/index.d.ts +0 -2
- package/es/components/collection/tokens.d.ts +0 -12
- package/es/components/color-picker/color-picker.vue.d.ts +0 -126
- package/es/components/color-picker/components/alpha-slider.vue.d.ts +0 -42
- package/es/components/color-picker/components/hue-slider.vue.d.ts +0 -44
- package/es/components/color-picker/components/predefine.vue.d.ts +0 -43
- package/es/components/color-picker/components/sv-panel.vue.d.ts +0 -42
- package/es/components/color-picker/composables/use-alpha-slider.d.ts +0 -20
- package/es/components/color-picker/contants.d.ts +0 -5
- package/es/components/color-picker/index.d.ts +0 -108
- package/es/components/color-picker/style/css.d.ts +0 -0
- package/es/components/color-picker/style/index.d.ts +0 -0
- package/es/components/color-picker/utils/color.d.ts +0 -29
- package/es/components/color-picker/utils/draggable.d.ts +0 -6
- package/es/components/config-provider/config-provider.vue.d.ts +0 -107
- package/es/components/config-provider/constants.d.ts +0 -6
- package/es/components/config-provider/hooks/use-global-config.d.ts +0 -31
- package/es/components/config-provider/index.d.ts +0 -86
- package/es/components/config-provider/style/css.d.ts +0 -0
- package/es/components/config-provider/style/index.d.ts +0 -0
- package/es/components/context-menu/context-menu.vue.d.ts +0 -39
- package/es/components/context-menu/createContextMenu.d.ts +0 -3
- package/es/components/context-menu/index.d.ts +0 -3
- package/es/components/context-menu/style/css.d.ts +0 -0
- package/es/components/context-menu/style/index.d.ts +0 -0
- package/es/components/context-menu/types.d.ts +0 -23
- package/es/components/context-menu/useContextMenu.d.ts +0 -3
- package/es/components/date-time-select/date-time-select.vue.d.ts +0 -38
- package/es/components/date-time-select/index.d.ts +0 -30
- package/es/components/date-time-select/style/css.d.ts +0 -0
- package/es/components/date-time-select/style/index.d.ts +0 -0
- package/es/components/date-time-select/types.d.ts +0 -10
- package/es/components/descriptions/description-item.vue.d.ts +0 -69
- package/es/components/descriptions/description.vue.d.ts +0 -53
- package/es/components/descriptions/descriptions-cell.d.ts +0 -25
- package/es/components/descriptions/descriptions-row.vue.d.ts +0 -13
- package/es/components/descriptions/descriptions.type.d.ts +0 -18
- package/es/components/descriptions/index.d.ts +0 -187
- package/es/components/descriptions/style/css.d.ts +0 -0
- package/es/components/descriptions/style/index.d.ts +0 -0
- package/es/components/descriptions/token.d.ts +0 -3
- package/es/components/descriptions-item/style/css.d.ts +0 -0
- package/es/components/descriptions-item/style/index.d.ts +0 -0
- package/es/components/dialog/constants.d.ts +0 -11
- package/es/components/dialog/dialog-content.vue.d.ts +0 -81
- package/es/components/dialog/dialog.vue.d.ts +0 -164
- package/es/components/dialog/hooks/use-dialog.d.ts +0 -23
- package/es/components/dialog/index.d.ts +0 -146
- package/es/components/dialog/style/css.d.ts +0 -0
- package/es/components/dialog/style/index.d.ts +0 -0
- package/es/components/dialog/types.d.ts +0 -10
- package/es/components/divider/divider.vue.d.ts +0 -53
- package/es/components/divider/index.d.ts +0 -52
- package/es/components/divider/style/css.d.ts +0 -0
- package/es/components/divider/style/index.d.ts +0 -0
- package/es/components/divider/types.d.ts +0 -2
- package/es/components/docs-layout/style/css.d.ts +0 -0
- package/es/components/docs-layout/style/index.d.ts +0 -0
- package/es/components/dropdown/dropdown-item-impl.vue.d.ts +0 -57
- package/es/components/dropdown/dropdown-item.vue.d.ts +0 -43
- package/es/components/dropdown/dropdown-menu.vue.d.ts +0 -22
- package/es/components/dropdown/dropdown.vue.d.ts +0 -828
- package/es/components/dropdown/index.d.ts +0 -959
- package/es/components/dropdown/style/css.d.ts +0 -0
- package/es/components/dropdown/style/index.d.ts +0 -0
- package/es/components/dropdown/tokens.d.ts +0 -10
- package/es/components/dropdown/types.d.ts +0 -267
- package/es/components/dropdown/useDropdown.d.ts +0 -6
- package/es/components/dropdown-item/style/css.d.ts +0 -0
- package/es/components/dropdown-item/style/index.d.ts +0 -0
- package/es/components/dropdown-menu/style/css.d.ts +0 -0
- package/es/components/dropdown-menu/style/index.d.ts +0 -0
- package/es/components/empty/constants.d.ts +0 -12
- package/es/components/empty/empty.vue.d.ts +0 -48
- package/es/components/empty/index.d.ts +0 -37
- package/es/components/empty/style/css.d.ts +0 -0
- package/es/components/empty/style/index.d.ts +0 -0
- package/es/components/exception/exception.vue.d.ts +0 -29
- package/es/components/exception/index.d.ts +0 -28
- package/es/components/exception/style/css.d.ts +0 -0
- package/es/components/exception/style/index.d.ts +0 -0
- package/es/components/focus-trap/focus-trap.vue.d.ts +0 -32
- package/es/components/focus-trap/index.d.ts +0 -5
- package/es/components/focus-trap/tokens.d.ts +0 -13
- package/es/components/focus-trap/utils.d.ts +0 -29
- package/es/components/footer-layout/footer-layout.vue.d.ts +0 -13
- package/es/components/footer-layout/index.d.ts +0 -12
- package/es/components/footer-layout/style/css.d.ts +0 -0
- package/es/components/footer-layout/style/index.d.ts +0 -0
- package/es/components/form/constants.d.ts +0 -4
- package/es/components/form/form-item.vue.d.ts +0 -146
- package/es/components/form/form-label-wrap.d.ts +0 -11
- package/es/components/form/form.vue.d.ts +0 -168
- package/es/components/form/hooks/index.d.ts +0 -2
- package/es/components/form/hooks/use-form-common-props.d.ts +0 -6
- package/es/components/form/hooks/use-form-item.d.ts +0 -18
- package/es/components/form/index.d.ts +0 -364
- package/es/components/form/style/css.d.ts +0 -0
- package/es/components/form/style/index.d.ts +0 -0
- package/es/components/form/types.d.ts +0 -43
- package/es/components/form/utils.d.ts +0 -9
- package/es/components/form-item/style/css.d.ts +0 -0
- package/es/components/form-item/style/index.d.ts +0 -0
- package/es/components/full-screen/full-screen.vue.d.ts +0 -5
- package/es/components/full-screen/index.d.ts +0 -2
- package/es/components/full-screen/style/css.d.ts +0 -0
- package/es/components/full-screen/style/index.d.ts +0 -0
- package/es/components/header-layout/header-layout.vue.d.ts +0 -14
- package/es/components/header-layout/index.d.ts +0 -12
- package/es/components/header-layout/style/css.d.ts +0 -0
- package/es/components/header-layout/style/index.d.ts +0 -0
- package/es/components/icon/icon.vue.d.ts +0 -73
- package/es/components/icon/index.d.ts +0 -63
- package/es/components/icon/style/css.d.ts +0 -0
- package/es/components/icon/style/index.d.ts +0 -0
- package/es/components/icon-text/icon-text.vue.d.ts +0 -98
- package/es/components/icon-text/index.d.ts +0 -85
- package/es/components/icon-text/style/css.d.ts +0 -0
- package/es/components/icon-text/style/index.d.ts +0 -0
- package/es/components/iframe-layout/iframe-layout.vue.d.ts +0 -14
- package/es/components/iframe-layout/iframe-page.vue.d.ts +0 -13
- package/es/components/iframe-layout/index.d.ts +0 -12
- package/es/components/iframe-layout/style/css.d.ts +0 -0
- package/es/components/iframe-layout/style/index.d.ts +0 -0
- package/es/components/image/image.vue.d.ts +0 -122
- package/es/components/image/index.d.ts +0 -108
- package/es/components/image/style/css.d.ts +0 -0
- package/es/components/image/style/index.d.ts +0 -0
- package/es/components/image/types.d.ts +0 -1
- package/es/components/image-viewer/image-viewer.vue.d.ts +0 -88
- package/es/components/image-viewer/index.d.ts +0 -77
- package/es/components/image-viewer/style/css.d.ts +0 -0
- package/es/components/image-viewer/style/index.d.ts +0 -0
- package/es/components/image-viewer/types.d.ts +0 -1
- package/es/components/index.d.ts +0 -60
- package/es/components/input/index.d.ts +0 -252
- package/es/components/input/input.vue.d.ts +0 -265
- package/es/components/input/style/css.d.ts +0 -0
- package/es/components/input/style/index.d.ts +0 -0
- package/es/components/input/utils.d.ts +0 -6
- package/es/components/link/index.d.ts +0 -54
- package/es/components/link/link.vue.d.ts +0 -58
- package/es/components/link/style/css.d.ts +0 -0
- package/es/components/link/style/index.d.ts +0 -0
- package/es/components/list-cell/index.d.ts +0 -38
- package/es/components/list-cell/list-cell.vue.d.ts +0 -53
- package/es/components/list-cell/style/css.d.ts +0 -0
- package/es/components/list-cell/style/index.d.ts +0 -0
- package/es/components/loading/directive.d.ts +0 -18
- package/es/components/loading/index.d.ts +0 -48
- package/es/components/loading/loading.d.ts +0 -36
- package/es/components/loading/service.d.ts +0 -3
- package/es/components/loading/style/css.d.ts +0 -0
- package/es/components/loading/style/index.d.ts +0 -0
- package/es/components/loading/types.d.ts +0 -27
- package/es/components/logo/index.d.ts +0 -29
- package/es/components/logo/logo.vue.d.ts +0 -29
- package/es/components/logo/style/css.d.ts +0 -0
- package/es/components/logo/style/index.d.ts +0 -0
- package/es/components/logo/types.d.ts +0 -6
- package/es/components/md-code-demo/code-demo/code.d.ts +0 -13
- package/es/components/md-code-demo/code-demo/index.d.ts +0 -2
- package/es/components/md-code-demo/code-demo/loadScript.d.ts +0 -5
- package/es/components/md-code-demo/code-demo/typings.d.ts +0 -15
- package/es/components/md-code-demo/code-demo/utils.d.ts +0 -13
- package/es/components/md-code-demo/index.d.ts +0 -50
- package/es/components/md-code-demo/md-code-demo.d.ts +0 -99
- package/es/components/md-code-demo/style/css.d.ts +0 -0
- package/es/components/md-code-demo/style/index.d.ts +0 -0
- package/es/components/md-code-demo/type.d.ts +0 -89
- package/es/components/md-code-demo/utils.d.ts +0 -5
- package/es/components/md-code-tabs/index.d.ts +0 -41
- package/es/components/md-code-tabs/md-code-tabs.d.ts +0 -81
- package/es/components/md-code-tabs/style/css.d.ts +0 -0
- package/es/components/md-code-tabs/style/index.d.ts +0 -0
- package/es/components/md-comment/index.d.ts +0 -2
- package/es/components/md-comment/md-comment.vue.d.ts +0 -2
- package/es/components/md-comment/style/css.d.ts +0 -0
- package/es/components/md-comment/style/index.d.ts +0 -0
- package/es/components/md-container/index.d.ts +0 -4
- package/es/components/md-container/md-container.vue.d.ts +0 -4
- package/es/components/md-container/style/css.d.ts +0 -0
- package/es/components/md-container/style/index.d.ts +0 -0
- package/es/components/md-container/toc.d.ts +0 -44
- package/es/components/md-container/use/index.d.ts +0 -2
- package/es/components/md-container/use/useActiveHeaderLinks.d.ts +0 -7
- package/es/components/md-container/use/useCopyCode.d.ts +0 -1
- package/es/components/md-container/utils.d.ts +0 -11
- package/es/components/md-tabs/index.d.ts +0 -42
- package/es/components/md-tabs/md-tabs.d.ts +0 -84
- package/es/components/md-tabs/style/css.d.ts +0 -0
- package/es/components/md-tabs/style/index.d.ts +0 -0
- package/es/components/md-vue-playground/index.d.ts +0 -28
- package/es/components/md-vue-playground/md-vue-playground.vue.d.ts +0 -29
- package/es/components/md-vue-playground/playground.d.ts +0 -97
- package/es/components/md-vue-playground/style/css.d.ts +0 -0
- package/es/components/md-vue-playground/style/index.d.ts +0 -0
- package/es/components/menu/index.d.ts +0 -504
- package/es/components/menu/menu-collapse-transition.vue.d.ts +0 -5
- package/es/components/menu/menu-item-group.vue.d.ts +0 -13
- package/es/components/menu/menu-item.vue.d.ts +0 -81
- package/es/components/menu/menu.vue.d.ts +0 -109
- package/es/components/menu/style/css.d.ts +0 -0
- package/es/components/menu/style/index.d.ts +0 -0
- package/es/components/menu/sub-menu.vue.d.ts +0 -112
- package/es/components/menu/types.d.ts +0 -59
- package/es/components/menu/use-menu-css-var.d.ts +0 -1
- package/es/components/menu/use-menu.d.ts +0 -14
- package/es/components/menu/utils/menu-bar.d.ts +0 -7
- package/es/components/menu/utils/menu-item.d.ts +0 -9
- package/es/components/menu/utils/submenu.d.ts +0 -12
- package/es/components/menu-item/style/css.d.ts +0 -0
- package/es/components/menu-item/style/index.d.ts +0 -0
- package/es/components/menu-item-group/style/css.d.ts +0 -0
- package/es/components/menu-item-group/style/index.d.ts +0 -0
- package/es/components/message/index.d.ts +0 -4
- package/es/components/message/instance.d.ts +0 -17
- package/es/components/message/message.vue.d.ts +0 -145
- package/es/components/message/method.d.ts +0 -4
- package/es/components/message/style/css.d.ts +0 -0
- package/es/components/message/style/index.d.ts +0 -0
- package/es/components/message/types.d.ts +0 -63
- package/es/components/multiple-tabs/index.d.ts +0 -30
- package/es/components/multiple-tabs/multiple-tabs.vue.d.ts +0 -29
- package/es/components/multiple-tabs/style/css.d.ts +0 -0
- package/es/components/multiple-tabs/style/index.d.ts +0 -0
- package/es/components/multiple-tabs/tab-content.vue.d.ts +0 -40
- package/es/components/multiple-tabs/types.d.ts +0 -3
- package/es/components/multiple-tabs/use/index.d.ts +0 -2
- package/es/components/multiple-tabs/use/use-multiple-tabs.d.ts +0 -9
- package/es/components/multiple-tabs/use/use-tab-dropdown.d.ts +0 -6
- package/es/components/overlay/index.d.ts +0 -46
- package/es/components/overlay/overlay.vue.d.ts +0 -47
- package/es/components/overlay/style/css.d.ts +0 -0
- package/es/components/overlay/style/index.d.ts +0 -0
- package/es/components/page-wrapper/index.d.ts +0 -12
- package/es/components/page-wrapper/page-wrapper.vue.d.ts +0 -13
- package/es/components/page-wrapper/style/css.d.ts +0 -0
- package/es/components/page-wrapper/style/index.d.ts +0 -0
- package/es/components/pagination/components/jumper.vue.d.ts +0 -14
- package/es/components/pagination/components/next.vue.d.ts +0 -39
- package/es/components/pagination/components/pager.vue.d.ts +0 -39
- package/es/components/pagination/components/prev.vue.d.ts +0 -31
- package/es/components/pagination/components/sizes.vue.d.ts +0 -47
- package/es/components/pagination/components/total.vue.d.ts +0 -13
- package/es/components/pagination/index.d.ts +0 -164
- package/es/components/pagination/pagination.vue.d.ts +0 -185
- package/es/components/pagination/style/css.d.ts +0 -0
- package/es/components/pagination/style/index.d.ts +0 -0
- package/es/components/pagination/usePagination.d.ts +0 -10
- package/es/components/popover/directive.d.ts +0 -4
- package/es/components/popover/index.d.ts +0 -182
- package/es/components/popover/popover.vue.d.ts +0 -187
- package/es/components/popover/style/css.d.ts +0 -0
- package/es/components/popover/style/index.d.ts +0 -0
- package/es/components/popover/types.d.ts +0 -26
- package/es/components/popper/arrow.vue.d.ts +0 -18
- package/es/components/popper/composables/index.d.ts +0 -3
- package/es/components/popper/composables/use-content-dom.d.ts +0 -16
- package/es/components/popper/composables/use-content.d.ts +0 -77
- package/es/components/popper/composables/use-focus-trap.d.ts +0 -11
- package/es/components/popper/constants.d.ts +0 -24
- package/es/components/popper/content.vue.d.ts +0 -222
- package/es/components/popper/index.d.ts +0 -18
- package/es/components/popper/popper.vue.d.ts +0 -13
- package/es/components/popper/style/css.d.ts +0 -0
- package/es/components/popper/style/index.d.ts +0 -0
- package/es/components/popper/trigger.vue.d.ts +0 -99
- package/es/components/popper/types.d.ts +0 -45
- package/es/components/popper/utils.d.ts +0 -49
- package/es/components/qrcode/drawCanvas.d.ts +0 -2
- package/es/components/qrcode/drawLogo.d.ts +0 -2
- package/es/components/qrcode/index.d.ts +0 -50
- package/es/components/qrcode/qrcode.vue.d.ts +0 -51
- package/es/components/qrcode/qrcodePlus.d.ts +0 -3
- package/es/components/qrcode/style/css.d.ts +0 -0
- package/es/components/qrcode/style/index.d.ts +0 -0
- package/es/components/qrcode/toCanvas.d.ts +0 -2
- package/es/components/qrcode/types.d.ts +0 -31
- package/es/components/radio/constants.d.ts +0 -6
- package/es/components/radio/index.d.ts +0 -294
- package/es/components/radio/radio-button.vue.d.ts +0 -44
- package/es/components/radio/radio-group.vue.d.ts +0 -96
- package/es/components/radio/radio.vue.d.ts +0 -65
- package/es/components/radio/style/css.d.ts +0 -0
- package/es/components/radio/style/index.d.ts +0 -0
- package/es/components/radio/use-radio.d.ts +0 -15
- package/es/components/radio-button/style/css.d.ts +0 -0
- package/es/components/radio-button/style/index.d.ts +0 -0
- package/es/components/radio-group/style/css.d.ts +0 -0
- package/es/components/radio-group/style/index.d.ts +0 -0
- package/es/components/result/index.d.ts +0 -28
- package/es/components/result/result.vue.d.ts +0 -30
- package/es/components/result/style/css.d.ts +0 -0
- package/es/components/result/style/index.d.ts +0 -0
- package/es/components/router-view-content/index.d.ts +0 -52
- package/es/components/router-view-content/router-view-content.vue.d.ts +0 -54
- package/es/components/router-view-content/style/css.d.ts +0 -0
- package/es/components/router-view-content/style/index.d.ts +0 -0
- package/es/components/roving-focus-group/index.d.ts +0 -10
- package/es/components/roving-focus-group/roving-focus-group-impl.vue.d.ts +0 -48
- package/es/components/roving-focus-group/roving-focus-group.vue.d.ts +0 -2
- package/es/components/roving-focus-group/roving-focus-item.vue.d.ts +0 -32
- package/es/components/roving-focus-group/tokens.d.ts +0 -37
- package/es/components/roving-focus-group/types.d.ts +0 -252
- package/es/components/roving-focus-group/utils.d.ts +0 -8
- package/es/components/scrollbar/bar.vue.d.ts +0 -54
- package/es/components/scrollbar/constants.d.ts +0 -6
- package/es/components/scrollbar/index.d.ts +0 -113
- package/es/components/scrollbar/scrollbar.vue.d.ts +0 -163
- package/es/components/scrollbar/style/css.d.ts +0 -0
- package/es/components/scrollbar/style/index.d.ts +0 -0
- package/es/components/scrollbar/thumb.vue.d.ts +0 -52
- package/es/components/scrollbar/types.d.ts +0 -2
- package/es/components/scrollbar/util.d.ts +0 -28
- package/es/components/search/index.d.ts +0 -98
- package/es/components/search/search.vue.d.ts +0 -100
- package/es/components/search/style/css.d.ts +0 -0
- package/es/components/search/style/index.d.ts +0 -0
- package/es/components/select-v2/defaults.d.ts +0 -113
- package/es/components/select-v2/group-item.vue.d.ts +0 -35
- package/es/components/select-v2/index.d.ts +0 -2025
- package/es/components/select-v2/option-item.vue.d.ts +0 -49
- package/es/components/select-v2/select-dropdown.d.ts +0 -16
- package/es/components/select-v2/select.types.d.ts +0 -18
- package/es/components/select-v2/select.vue.d.ts +0 -1012
- package/es/components/select-v2/style/css.d.ts +0 -0
- package/es/components/select-v2/style/index.d.ts +0 -0
- package/es/components/select-v2/token.d.ts +0 -16
- package/es/components/select-v2/useAllowCreate.d.ts +0 -8
- package/es/components/select-v2/useInput.d.ts +0 -5
- package/es/components/select-v2/useOption.d.ts +0 -7
- package/es/components/select-v2/useSelect.d.ts +0 -782
- package/es/components/select-v2/util.d.ts +0 -2
- package/es/components/side-menu/index.d.ts +0 -155
- package/es/components/side-menu/side-menu.vue.d.ts +0 -156
- package/es/components/side-menu/style/css.d.ts +0 -0
- package/es/components/side-menu/style/index.d.ts +0 -0
- package/es/components/side-menu/types.d.ts +0 -19
- package/es/components/side-menu/use-drag-line.d.ts +0 -10
- package/es/components/slot/index.d.ts +0 -2
- package/es/components/slot/only-child.d.ts +0 -7
- package/es/components/sub-menu/style/css.d.ts +0 -0
- package/es/components/sub-menu/style/index.d.ts +0 -0
- package/es/components/switch/index.d.ts +0 -205
- package/es/components/switch/style/css.d.ts +0 -0
- package/es/components/switch/style/index.d.ts +0 -0
- package/es/components/switch/switch.vue.d.ts +0 -236
- package/es/components/tab-pane/style/css.d.ts +0 -0
- package/es/components/tab-pane/style/index.d.ts +0 -0
- package/es/components/table/style/css.d.ts +0 -0
- package/es/components/table/style/index.d.ts +0 -0
- package/es/components/table/table.vue.d.ts +0 -121
- package/es/components/table/type.d.ts +0 -21
- package/es/components/tabs/index.d.ts +0 -274
- package/es/components/tabs/style/css.d.ts +0 -0
- package/es/components/tabs/style/index.d.ts +0 -0
- package/es/components/tabs/tab-bar.vue.d.ts +0 -51
- package/es/components/tabs/tab-nav.vue.d.ts +0 -120
- package/es/components/tabs/tab-pane.vue.d.ts +0 -45
- package/es/components/tabs/tabs.vue.d.ts +0 -159
- package/es/components/tabs/types.d.ts +0 -59
- package/es/components/tag/index.d.ts +0 -71
- package/es/components/tag/style/css.d.ts +0 -0
- package/es/components/tag/style/index.d.ts +0 -0
- package/es/components/tag/tag.vue.d.ts +0 -74
- package/es/components/tag/types.d.ts +0 -1
- package/es/components/time-select-extend/style/css.d.ts +0 -0
- package/es/components/time-select-extend/style/css.js +0 -2
- package/es/components/time-select-extend/style/index.d.ts +0 -0
- package/es/components/time-select-extend/style/index.js +0 -2
- package/es/components/tooltip/constants.d.ts +0 -18
- package/es/components/tooltip/content.vue.d.ts +0 -268
- package/es/components/tooltip/index.d.ts +0 -398
- package/es/components/tooltip/style/css.d.ts +0 -0
- package/es/components/tooltip/style/index.d.ts +0 -0
- package/es/components/tooltip/tooltip.vue.d.ts +0 -470
- package/es/components/tooltip/trigger.vue.d.ts +0 -54
- package/es/components/tooltip/types.d.ts +0 -53
- package/es/components/tooltip/utils.d.ts +0 -11
- package/es/components/types.d.ts +0 -1
- package/es/components/verify-code/index.d.ts +0 -23
- package/es/components/verify-code/style/css.d.ts +0 -0
- package/es/components/verify-code/style/index.d.ts +0 -0
- package/es/components/verify-code/useImageVerify.d.ts +0 -11
- package/es/components/verify-code/verify-code.vue.d.ts +0 -24
- package/es/components/virtual-list/builders/build-grid.d.ts +0 -214
- package/es/components/virtual-list/builders/build-list.d.ts +0 -167
- package/es/components/virtual-list/components/dynamic-size-grid.d.ts +0 -206
- package/es/components/virtual-list/components/dynamic-size-list.d.ts +0 -165
- package/es/components/virtual-list/components/fixed-size-grid.d.ts +0 -193
- package/es/components/virtual-list/components/fixed-size-list.d.ts +0 -164
- package/es/components/virtual-list/components/scrollbar.d.ts +0 -79
- package/es/components/virtual-list/defaults.d.ts +0 -30
- package/es/components/virtual-list/hooks/use-cache.d.ts +0 -1
- package/es/components/virtual-list/hooks/use-grid-wheel.d.ts +0 -13
- package/es/components/virtual-list/hooks/use-wheel.d.ts +0 -13
- package/es/components/virtual-list/index.d.ts +0 -8
- package/es/components/virtual-list/props.d.ts +0 -201
- package/es/components/virtual-list/style/css.d.ts +0 -0
- package/es/components/virtual-list/style/index.d.ts +0 -0
- package/es/components/virtual-list/types.d.ts +0 -137
- package/es/components/virtual-list/utils.d.ts +0 -17
- package/es/constants/aria.d.ts +0 -17
- package/es/constants/date.d.ts +0 -3
- package/es/constants/event.d.ts +0 -3
- package/es/constants/index.d.ts +0 -5
- package/es/constants/key.d.ts +0 -1
- package/es/constants/size.d.ts +0 -7
- package/es/defaults.d.ts +0 -5
- package/es/hooks/index.d.ts +0 -16
- package/es/hooks/use-cursor/index.d.ts +0 -2
- package/es/hooks/use-delayed-toggle/index.d.ts +0 -10
- package/es/hooks/use-draggable/index.d.ts +0 -2
- package/es/hooks/use-forward-ref/index.d.ts +0 -9
- package/es/hooks/use-id/index.d.ts +0 -9
- package/es/hooks/use-lockscreen/index.d.ts +0 -11
- package/es/hooks/use-model-toggle/index.d.ts +0 -25
- package/es/hooks/use-namespace/index.d.ts +0 -24
- package/es/hooks/use-ordered-children/index.d.ts +0 -8
- package/es/hooks/use-popper/index.d.ts +0 -78
- package/es/hooks/use-popper-container/index.d.ts +0 -5
- package/es/hooks/use-prop/index.d.ts +0 -2
- package/es/hooks/use-same-target/index.d.ts +0 -5
- package/es/hooks/use-size/index.d.ts +0 -7
- package/es/hooks/use-timeout/index.d.ts +0 -4
- package/es/hooks/use-z-index/index.d.ts +0 -9
- package/es/index.d.ts +0 -11
- package/es/make-installer.d.ts +0 -6
- package/es/plugin.d.ts +0 -3
- package/es/utils/dom/index.d.ts +0 -2
- package/es/utils/dom/position.d.ts +0 -7
- package/es/utils/dom/scroll.d.ts +0 -8
- package/es/utils/error.d.ts +0 -3
- package/es/utils/event.d.ts +0 -6
- package/es/utils/helper.d.ts +0 -1
- package/es/utils/index.d.ts +0 -8
- package/es/utils/ns-cover.d.ts +0 -16
- package/es/utils/objects.d.ts +0 -4
- package/es/utils/typescript.d.ts +0 -12
- package/es/utils/vue/data-helper.d.ts +0 -1
- package/es/utils/vue/index.d.ts +0 -7
- package/es/utils/vue/install.d.ts +0 -6
- package/es/utils/vue/props/index.d.ts +0 -3
- package/es/utils/vue/props/runtime.d.ts +0 -28
- package/es/utils/vue/props/types.d.ts +0 -120
- package/es/utils/vue/props/util.d.ts +0 -8
- package/es/utils/vue/raf.d.ts +0 -2
- package/es/utils/vue/refs.d.ts +0 -3
- package/es/utils/vue/typescript.d.ts +0 -5
- package/es/utils/vue/vnode.d.ts +0 -51
- package/lib/comp-resolver.d.ts +0 -49
- package/lib/component.d.ts +0 -3
- package/lib/components/alert/alert.vue.d.ts +0 -102
- package/lib/components/alert/index.d.ts +0 -73
- package/lib/components/alert/style/css.d.ts +0 -0
- package/lib/components/alert/style/index.d.ts +0 -0
- package/lib/components/alert/types.d.ts +0 -4
- package/lib/components/avatar/avatar.vue.d.ts +0 -56
- package/lib/components/avatar/index.d.ts +0 -54
- package/lib/components/avatar/style/css.d.ts +0 -0
- package/lib/components/avatar/style/index.d.ts +0 -0
- package/lib/components/back-top/back-top.vue.d.ts +0 -69
- package/lib/components/back-top/index.d.ts +0 -54
- package/lib/components/back-top/style/css.d.ts +0 -0
- package/lib/components/back-top/style/index.d.ts +0 -0
- package/lib/components/back-top/use-back-top.d.ts +0 -5
- package/lib/components/base/style/css.d.ts +0 -0
- package/lib/components/base/style/index.d.ts +0 -0
- package/lib/components/button/button-custom.d.ts +0 -4
- package/lib/components/button/button-group.vue.d.ts +0 -23
- package/lib/components/button/button.vue.d.ts +0 -189
- package/lib/components/button/constants.d.ts +0 -7
- package/lib/components/button/index.d.ts +0 -203
- package/lib/components/button/instance.d.ts +0 -4
- package/lib/components/button/style/css.d.ts +0 -0
- package/lib/components/button/style/index.d.ts +0 -0
- package/lib/components/button/types.d.ts +0 -4
- package/lib/components/button/use-button.d.ts +0 -10
- package/lib/components/button-group/style/css.d.ts +0 -0
- package/lib/components/button-group/style/index.d.ts +0 -0
- package/lib/components/checkbox/checkbox-button.vue.d.ts +0 -137
- package/lib/components/checkbox/checkbox-group.vue.d.ts +0 -112
- package/lib/components/checkbox/checkbox.vue.d.ts +0 -141
- package/lib/components/checkbox/composables/index.d.ts +0 -5
- package/lib/components/checkbox/composables/use-checkbox-disabled.d.ts +0 -6
- package/lib/components/checkbox/composables/use-checkbox-event.d.ts +0 -7
- package/lib/components/checkbox/composables/use-checkbox-model.d.ts +0 -7
- package/lib/components/checkbox/composables/use-checkbox-status.d.ts +0 -11
- package/lib/components/checkbox/composables/use-checkbox.d.ts +0 -15
- package/lib/components/checkbox/constants.d.ts +0 -8
- package/lib/components/checkbox/index.d.ts +0 -556
- package/lib/components/checkbox/style/css.d.ts +0 -0
- package/lib/components/checkbox/style/index.d.ts +0 -0
- package/lib/components/checkbox/types.d.ts +0 -2
- package/lib/components/checkbox-button/style/css.d.ts +0 -0
- package/lib/components/checkbox-button/style/index.d.ts +0 -0
- package/lib/components/checkbox-group/style/css.d.ts +0 -0
- package/lib/components/checkbox-group/style/index.d.ts +0 -0
- package/lib/components/clamp/clamp.vue.d.ts +0 -64
- package/lib/components/clamp/index.d.ts +0 -63
- package/lib/components/clamp/style/css.d.ts +0 -0
- package/lib/components/clamp/style/index.d.ts +0 -0
- package/lib/components/clamp-toggle/clamp-toggle.vue.d.ts +0 -101
- package/lib/components/clamp-toggle/index.d.ts +0 -100
- package/lib/components/clamp-toggle/style/css.d.ts +0 -0
- package/lib/components/clamp-toggle/style/index.d.ts +0 -0
- package/lib/components/collapse-transition/index.d.ts +0 -4
- package/lib/components/collapse-transition/src/collapse-transition.vue.d.ts +0 -2
- package/lib/components/collapse-transition/style/css.d.ts +0 -0
- package/lib/components/collapse-transition/style/index.d.ts +0 -0
- package/lib/components/collection/collection-item.vue.d.ts +0 -2
- package/lib/components/collection/collection.d.ts +0 -242
- package/lib/components/collection/collection.vue.d.ts +0 -2
- package/lib/components/collection/index.d.ts +0 -2
- package/lib/components/collection/tokens.d.ts +0 -12
- package/lib/components/color-picker/color-picker.vue.d.ts +0 -126
- package/lib/components/color-picker/components/alpha-slider.vue.d.ts +0 -42
- package/lib/components/color-picker/components/hue-slider.vue.d.ts +0 -44
- package/lib/components/color-picker/components/predefine.vue.d.ts +0 -43
- package/lib/components/color-picker/components/sv-panel.vue.d.ts +0 -42
- package/lib/components/color-picker/composables/use-alpha-slider.d.ts +0 -20
- package/lib/components/color-picker/contants.d.ts +0 -5
- package/lib/components/color-picker/index.d.ts +0 -108
- package/lib/components/color-picker/style/css.d.ts +0 -0
- package/lib/components/color-picker/style/index.d.ts +0 -0
- package/lib/components/color-picker/utils/color.d.ts +0 -29
- package/lib/components/color-picker/utils/draggable.d.ts +0 -6
- package/lib/components/config-provider/config-provider.vue.d.ts +0 -107
- package/lib/components/config-provider/constants.d.ts +0 -6
- package/lib/components/config-provider/hooks/use-global-config.d.ts +0 -31
- package/lib/components/config-provider/index.d.ts +0 -86
- package/lib/components/config-provider/style/css.d.ts +0 -0
- package/lib/components/config-provider/style/index.d.ts +0 -0
- package/lib/components/context-menu/context-menu.vue.d.ts +0 -39
- package/lib/components/context-menu/createContextMenu.d.ts +0 -3
- package/lib/components/context-menu/index.d.ts +0 -3
- package/lib/components/context-menu/style/css.d.ts +0 -0
- package/lib/components/context-menu/style/index.d.ts +0 -0
- package/lib/components/context-menu/types.d.ts +0 -23
- package/lib/components/context-menu/useContextMenu.d.ts +0 -3
- package/lib/components/date-time-select/date-time-select.vue.d.ts +0 -38
- package/lib/components/date-time-select/index.d.ts +0 -30
- package/lib/components/date-time-select/style/css.d.ts +0 -0
- package/lib/components/date-time-select/style/index.d.ts +0 -0
- package/lib/components/date-time-select/types.d.ts +0 -10
- package/lib/components/descriptions/description-item.vue.d.ts +0 -69
- package/lib/components/descriptions/description.vue.d.ts +0 -53
- package/lib/components/descriptions/descriptions-cell.d.ts +0 -25
- package/lib/components/descriptions/descriptions-row.vue.d.ts +0 -13
- package/lib/components/descriptions/descriptions.type.d.ts +0 -18
- package/lib/components/descriptions/index.d.ts +0 -187
- package/lib/components/descriptions/style/css.d.ts +0 -0
- package/lib/components/descriptions/style/index.d.ts +0 -0
- package/lib/components/descriptions/token.d.ts +0 -3
- package/lib/components/descriptions-item/style/css.d.ts +0 -0
- package/lib/components/descriptions-item/style/index.d.ts +0 -0
- package/lib/components/dialog/constants.d.ts +0 -11
- package/lib/components/dialog/dialog-content.vue.d.ts +0 -81
- package/lib/components/dialog/dialog.vue.d.ts +0 -164
- package/lib/components/dialog/hooks/use-dialog.d.ts +0 -23
- package/lib/components/dialog/index.d.ts +0 -146
- package/lib/components/dialog/style/css.d.ts +0 -0
- package/lib/components/dialog/style/index.d.ts +0 -0
- package/lib/components/dialog/types.d.ts +0 -10
- package/lib/components/divider/divider.vue.d.ts +0 -53
- package/lib/components/divider/index.d.ts +0 -52
- package/lib/components/divider/style/css.d.ts +0 -0
- package/lib/components/divider/style/index.d.ts +0 -0
- package/lib/components/divider/types.d.ts +0 -2
- package/lib/components/docs-layout/style/css.d.ts +0 -0
- package/lib/components/docs-layout/style/index.d.ts +0 -0
- package/lib/components/dropdown/dropdown-item-impl.vue.d.ts +0 -57
- package/lib/components/dropdown/dropdown-item.vue.d.ts +0 -43
- package/lib/components/dropdown/dropdown-menu.vue.d.ts +0 -22
- package/lib/components/dropdown/dropdown.vue.d.ts +0 -828
- package/lib/components/dropdown/index.d.ts +0 -959
- package/lib/components/dropdown/style/css.d.ts +0 -0
- package/lib/components/dropdown/style/index.d.ts +0 -0
- package/lib/components/dropdown/tokens.d.ts +0 -10
- package/lib/components/dropdown/types.d.ts +0 -267
- package/lib/components/dropdown/useDropdown.d.ts +0 -6
- package/lib/components/dropdown-item/style/css.d.ts +0 -0
- package/lib/components/dropdown-item/style/index.d.ts +0 -0
- package/lib/components/dropdown-menu/style/css.d.ts +0 -0
- package/lib/components/dropdown-menu/style/index.d.ts +0 -0
- package/lib/components/empty/constants.d.ts +0 -12
- package/lib/components/empty/empty.vue.d.ts +0 -48
- package/lib/components/empty/index.d.ts +0 -37
- package/lib/components/empty/style/css.d.ts +0 -0
- package/lib/components/empty/style/index.d.ts +0 -0
- package/lib/components/exception/exception.vue.d.ts +0 -29
- package/lib/components/exception/index.d.ts +0 -28
- package/lib/components/exception/style/css.d.ts +0 -0
- package/lib/components/exception/style/index.d.ts +0 -0
- package/lib/components/focus-trap/focus-trap.vue.d.ts +0 -32
- package/lib/components/focus-trap/index.d.ts +0 -5
- package/lib/components/focus-trap/tokens.d.ts +0 -13
- package/lib/components/focus-trap/utils.d.ts +0 -29
- package/lib/components/footer-layout/footer-layout.vue.d.ts +0 -13
- package/lib/components/footer-layout/index.d.ts +0 -12
- package/lib/components/footer-layout/style/css.d.ts +0 -0
- package/lib/components/footer-layout/style/index.d.ts +0 -0
- package/lib/components/form/constants.d.ts +0 -4
- package/lib/components/form/form-item.vue.d.ts +0 -146
- package/lib/components/form/form-label-wrap.d.ts +0 -11
- package/lib/components/form/form.vue.d.ts +0 -168
- package/lib/components/form/hooks/index.d.ts +0 -2
- package/lib/components/form/hooks/use-form-common-props.d.ts +0 -6
- package/lib/components/form/hooks/use-form-item.d.ts +0 -18
- package/lib/components/form/index.d.ts +0 -364
- package/lib/components/form/style/css.d.ts +0 -0
- package/lib/components/form/style/index.d.ts +0 -0
- package/lib/components/form/types.d.ts +0 -43
- package/lib/components/form/utils.d.ts +0 -9
- package/lib/components/form-item/style/css.d.ts +0 -0
- package/lib/components/form-item/style/index.d.ts +0 -0
- package/lib/components/full-screen/full-screen.vue.d.ts +0 -5
- package/lib/components/full-screen/index.d.ts +0 -2
- package/lib/components/full-screen/style/css.d.ts +0 -0
- package/lib/components/full-screen/style/index.d.ts +0 -0
- package/lib/components/header-layout/header-layout.vue.d.ts +0 -14
- package/lib/components/header-layout/index.d.ts +0 -12
- package/lib/components/header-layout/style/css.d.ts +0 -0
- package/lib/components/header-layout/style/index.d.ts +0 -0
- package/lib/components/icon/icon.vue.d.ts +0 -73
- package/lib/components/icon/index.d.ts +0 -63
- package/lib/components/icon/style/css.d.ts +0 -0
- package/lib/components/icon/style/index.d.ts +0 -0
- package/lib/components/icon-text/icon-text.vue.d.ts +0 -98
- package/lib/components/icon-text/index.d.ts +0 -85
- package/lib/components/icon-text/style/css.d.ts +0 -0
- package/lib/components/icon-text/style/index.d.ts +0 -0
- package/lib/components/iframe-layout/iframe-layout.vue.d.ts +0 -14
- package/lib/components/iframe-layout/iframe-page.vue.d.ts +0 -13
- package/lib/components/iframe-layout/index.d.ts +0 -12
- package/lib/components/iframe-layout/style/css.d.ts +0 -0
- package/lib/components/iframe-layout/style/index.d.ts +0 -0
- package/lib/components/image/image.vue.d.ts +0 -122
- package/lib/components/image/index.d.ts +0 -108
- package/lib/components/image/style/css.d.ts +0 -0
- package/lib/components/image/style/index.d.ts +0 -0
- package/lib/components/image/types.d.ts +0 -1
- package/lib/components/image-viewer/image-viewer.vue.d.ts +0 -88
- package/lib/components/image-viewer/index.d.ts +0 -77
- package/lib/components/image-viewer/style/css.d.ts +0 -0
- package/lib/components/image-viewer/style/index.d.ts +0 -0
- package/lib/components/image-viewer/types.d.ts +0 -1
- package/lib/components/index.d.ts +0 -60
- package/lib/components/input/index.d.ts +0 -252
- package/lib/components/input/input.vue.d.ts +0 -265
- package/lib/components/input/style/css.d.ts +0 -0
- package/lib/components/input/style/index.d.ts +0 -0
- package/lib/components/input/utils.d.ts +0 -6
- package/lib/components/link/index.d.ts +0 -54
- package/lib/components/link/link.vue.d.ts +0 -58
- package/lib/components/link/style/css.d.ts +0 -0
- package/lib/components/link/style/index.d.ts +0 -0
- package/lib/components/list-cell/index.d.ts +0 -38
- package/lib/components/list-cell/list-cell.vue.d.ts +0 -53
- package/lib/components/list-cell/style/css.d.ts +0 -0
- package/lib/components/list-cell/style/index.d.ts +0 -0
- package/lib/components/loading/directive.d.ts +0 -18
- package/lib/components/loading/index.d.ts +0 -48
- package/lib/components/loading/loading.d.ts +0 -36
- package/lib/components/loading/service.d.ts +0 -3
- package/lib/components/loading/style/css.d.ts +0 -0
- package/lib/components/loading/style/index.d.ts +0 -0
- package/lib/components/loading/types.d.ts +0 -27
- package/lib/components/logo/index.d.ts +0 -29
- package/lib/components/logo/logo.vue.d.ts +0 -29
- package/lib/components/logo/style/css.d.ts +0 -0
- package/lib/components/logo/style/index.d.ts +0 -0
- package/lib/components/logo/types.d.ts +0 -6
- package/lib/components/md-code-demo/code-demo/code.d.ts +0 -13
- package/lib/components/md-code-demo/code-demo/index.d.ts +0 -2
- package/lib/components/md-code-demo/code-demo/loadScript.d.ts +0 -5
- package/lib/components/md-code-demo/code-demo/typings.d.ts +0 -15
- package/lib/components/md-code-demo/code-demo/utils.d.ts +0 -13
- package/lib/components/md-code-demo/index.d.ts +0 -50
- package/lib/components/md-code-demo/md-code-demo.d.ts +0 -99
- package/lib/components/md-code-demo/style/css.d.ts +0 -0
- package/lib/components/md-code-demo/style/index.d.ts +0 -0
- package/lib/components/md-code-demo/type.d.ts +0 -89
- package/lib/components/md-code-demo/utils.d.ts +0 -5
- package/lib/components/md-code-tabs/index.d.ts +0 -41
- package/lib/components/md-code-tabs/md-code-tabs.d.ts +0 -81
- package/lib/components/md-code-tabs/style/css.d.ts +0 -0
- package/lib/components/md-code-tabs/style/index.d.ts +0 -0
- package/lib/components/md-comment/index.d.ts +0 -2
- package/lib/components/md-comment/md-comment.vue.d.ts +0 -2
- package/lib/components/md-comment/style/css.d.ts +0 -0
- package/lib/components/md-comment/style/index.d.ts +0 -0
- package/lib/components/md-container/index.d.ts +0 -4
- package/lib/components/md-container/md-container.vue.d.ts +0 -4
- package/lib/components/md-container/style/css.d.ts +0 -0
- package/lib/components/md-container/style/index.d.ts +0 -0
- package/lib/components/md-container/toc.d.ts +0 -44
- package/lib/components/md-container/use/index.d.ts +0 -2
- package/lib/components/md-container/use/useActiveHeaderLinks.d.ts +0 -7
- package/lib/components/md-container/use/useCopyCode.d.ts +0 -1
- package/lib/components/md-container/utils.d.ts +0 -11
- package/lib/components/md-tabs/index.d.ts +0 -42
- package/lib/components/md-tabs/md-tabs.d.ts +0 -84
- package/lib/components/md-tabs/style/css.d.ts +0 -0
- package/lib/components/md-tabs/style/index.d.ts +0 -0
- package/lib/components/md-vue-playground/index.d.ts +0 -28
- package/lib/components/md-vue-playground/md-vue-playground.vue.d.ts +0 -29
- package/lib/components/md-vue-playground/playground.d.ts +0 -97
- package/lib/components/md-vue-playground/style/css.d.ts +0 -0
- package/lib/components/md-vue-playground/style/index.d.ts +0 -0
- package/lib/components/menu/index.d.ts +0 -504
- package/lib/components/menu/menu-collapse-transition.vue.d.ts +0 -5
- package/lib/components/menu/menu-item-group.vue.d.ts +0 -13
- package/lib/components/menu/menu-item.vue.d.ts +0 -81
- package/lib/components/menu/menu.vue.d.ts +0 -109
- package/lib/components/menu/style/css.d.ts +0 -0
- package/lib/components/menu/style/index.d.ts +0 -0
- package/lib/components/menu/sub-menu.vue.d.ts +0 -112
- package/lib/components/menu/types.d.ts +0 -59
- package/lib/components/menu/use-menu-css-var.d.ts +0 -1
- package/lib/components/menu/use-menu.d.ts +0 -14
- package/lib/components/menu/utils/menu-bar.d.ts +0 -7
- package/lib/components/menu/utils/menu-item.d.ts +0 -9
- package/lib/components/menu/utils/submenu.d.ts +0 -12
- package/lib/components/menu-item/style/css.d.ts +0 -0
- package/lib/components/menu-item/style/index.d.ts +0 -0
- package/lib/components/menu-item-group/style/css.d.ts +0 -0
- package/lib/components/menu-item-group/style/index.d.ts +0 -0
- package/lib/components/message/index.d.ts +0 -4
- package/lib/components/message/instance.d.ts +0 -17
- package/lib/components/message/message.vue.d.ts +0 -145
- package/lib/components/message/method.d.ts +0 -4
- package/lib/components/message/style/css.d.ts +0 -0
- package/lib/components/message/style/index.d.ts +0 -0
- package/lib/components/message/types.d.ts +0 -63
- package/lib/components/multiple-tabs/index.d.ts +0 -30
- package/lib/components/multiple-tabs/multiple-tabs.vue.d.ts +0 -29
- package/lib/components/multiple-tabs/style/css.d.ts +0 -0
- package/lib/components/multiple-tabs/style/index.d.ts +0 -0
- package/lib/components/multiple-tabs/tab-content.vue.d.ts +0 -40
- package/lib/components/multiple-tabs/types.d.ts +0 -3
- package/lib/components/multiple-tabs/use/index.d.ts +0 -2
- package/lib/components/multiple-tabs/use/use-multiple-tabs.d.ts +0 -9
- package/lib/components/multiple-tabs/use/use-tab-dropdown.d.ts +0 -6
- package/lib/components/overlay/index.d.ts +0 -46
- package/lib/components/overlay/overlay.vue.d.ts +0 -47
- package/lib/components/overlay/style/css.d.ts +0 -0
- package/lib/components/overlay/style/index.d.ts +0 -0
- package/lib/components/page-wrapper/index.d.ts +0 -12
- package/lib/components/page-wrapper/page-wrapper.vue.d.ts +0 -13
- package/lib/components/page-wrapper/style/css.d.ts +0 -0
- package/lib/components/page-wrapper/style/index.d.ts +0 -0
- package/lib/components/pagination/components/jumper.vue.d.ts +0 -14
- package/lib/components/pagination/components/next.vue.d.ts +0 -39
- package/lib/components/pagination/components/pager.vue.d.ts +0 -39
- package/lib/components/pagination/components/prev.vue.d.ts +0 -31
- package/lib/components/pagination/components/sizes.vue.d.ts +0 -47
- package/lib/components/pagination/components/total.vue.d.ts +0 -13
- package/lib/components/pagination/index.d.ts +0 -164
- package/lib/components/pagination/pagination.vue.d.ts +0 -185
- package/lib/components/pagination/style/css.d.ts +0 -0
- package/lib/components/pagination/style/index.d.ts +0 -0
- package/lib/components/pagination/usePagination.d.ts +0 -10
- package/lib/components/popover/directive.d.ts +0 -4
- package/lib/components/popover/index.d.ts +0 -182
- package/lib/components/popover/popover.vue.d.ts +0 -187
- package/lib/components/popover/style/css.d.ts +0 -0
- package/lib/components/popover/style/index.d.ts +0 -0
- package/lib/components/popover/types.d.ts +0 -26
- package/lib/components/popper/arrow.vue.d.ts +0 -18
- package/lib/components/popper/composables/index.d.ts +0 -3
- package/lib/components/popper/composables/use-content-dom.d.ts +0 -16
- package/lib/components/popper/composables/use-content.d.ts +0 -77
- package/lib/components/popper/composables/use-focus-trap.d.ts +0 -11
- package/lib/components/popper/constants.d.ts +0 -24
- package/lib/components/popper/content.vue.d.ts +0 -222
- package/lib/components/popper/index.d.ts +0 -18
- package/lib/components/popper/popper.vue.d.ts +0 -13
- package/lib/components/popper/style/css.d.ts +0 -0
- package/lib/components/popper/style/index.d.ts +0 -0
- package/lib/components/popper/trigger.vue.d.ts +0 -99
- package/lib/components/popper/types.d.ts +0 -45
- package/lib/components/popper/utils.d.ts +0 -49
- package/lib/components/qrcode/drawCanvas.d.ts +0 -2
- package/lib/components/qrcode/drawLogo.d.ts +0 -2
- package/lib/components/qrcode/index.d.ts +0 -50
- package/lib/components/qrcode/qrcode.vue.d.ts +0 -51
- package/lib/components/qrcode/qrcodePlus.d.ts +0 -3
- package/lib/components/qrcode/style/css.d.ts +0 -0
- package/lib/components/qrcode/style/index.d.ts +0 -0
- package/lib/components/qrcode/toCanvas.d.ts +0 -2
- package/lib/components/qrcode/types.d.ts +0 -31
- package/lib/components/radio/constants.d.ts +0 -6
- package/lib/components/radio/index.d.ts +0 -294
- package/lib/components/radio/radio-button.vue.d.ts +0 -44
- package/lib/components/radio/radio-group.vue.d.ts +0 -96
- package/lib/components/radio/radio.vue.d.ts +0 -65
- package/lib/components/radio/style/css.d.ts +0 -0
- package/lib/components/radio/style/index.d.ts +0 -0
- package/lib/components/radio/use-radio.d.ts +0 -15
- package/lib/components/radio-button/style/css.d.ts +0 -0
- package/lib/components/radio-button/style/index.d.ts +0 -0
- package/lib/components/radio-group/style/css.d.ts +0 -0
- package/lib/components/radio-group/style/index.d.ts +0 -0
- package/lib/components/result/index.d.ts +0 -28
- package/lib/components/result/result.vue.d.ts +0 -30
- package/lib/components/result/style/css.d.ts +0 -0
- package/lib/components/result/style/index.d.ts +0 -0
- package/lib/components/router-view-content/index.d.ts +0 -52
- package/lib/components/router-view-content/router-view-content.vue.d.ts +0 -54
- package/lib/components/router-view-content/style/css.d.ts +0 -0
- package/lib/components/router-view-content/style/index.d.ts +0 -0
- package/lib/components/roving-focus-group/index.d.ts +0 -10
- package/lib/components/roving-focus-group/roving-focus-group-impl.vue.d.ts +0 -48
- package/lib/components/roving-focus-group/roving-focus-group.vue.d.ts +0 -2
- package/lib/components/roving-focus-group/roving-focus-item.vue.d.ts +0 -32
- package/lib/components/roving-focus-group/tokens.d.ts +0 -37
- package/lib/components/roving-focus-group/types.d.ts +0 -252
- package/lib/components/roving-focus-group/utils.d.ts +0 -8
- package/lib/components/scrollbar/bar.vue.d.ts +0 -54
- package/lib/components/scrollbar/constants.d.ts +0 -6
- package/lib/components/scrollbar/index.d.ts +0 -113
- package/lib/components/scrollbar/scrollbar.vue.d.ts +0 -163
- package/lib/components/scrollbar/style/css.d.ts +0 -0
- package/lib/components/scrollbar/style/index.d.ts +0 -0
- package/lib/components/scrollbar/thumb.vue.d.ts +0 -52
- package/lib/components/scrollbar/types.d.ts +0 -2
- package/lib/components/scrollbar/util.d.ts +0 -28
- package/lib/components/search/index.d.ts +0 -98
- package/lib/components/search/search.vue.d.ts +0 -100
- package/lib/components/search/style/css.d.ts +0 -0
- package/lib/components/search/style/index.d.ts +0 -0
- package/lib/components/select-v2/defaults.d.ts +0 -113
- package/lib/components/select-v2/group-item.vue.d.ts +0 -35
- package/lib/components/select-v2/index.d.ts +0 -2025
- package/lib/components/select-v2/option-item.vue.d.ts +0 -49
- package/lib/components/select-v2/select-dropdown.d.ts +0 -16
- package/lib/components/select-v2/select.types.d.ts +0 -18
- package/lib/components/select-v2/select.vue.d.ts +0 -1012
- package/lib/components/select-v2/style/css.d.ts +0 -0
- package/lib/components/select-v2/style/index.d.ts +0 -0
- package/lib/components/select-v2/token.d.ts +0 -16
- package/lib/components/select-v2/useAllowCreate.d.ts +0 -8
- package/lib/components/select-v2/useInput.d.ts +0 -5
- package/lib/components/select-v2/useOption.d.ts +0 -7
- package/lib/components/select-v2/useSelect.d.ts +0 -782
- package/lib/components/select-v2/util.d.ts +0 -2
- package/lib/components/side-menu/index.d.ts +0 -155
- package/lib/components/side-menu/side-menu.vue.d.ts +0 -156
- package/lib/components/side-menu/style/css.d.ts +0 -0
- package/lib/components/side-menu/style/index.d.ts +0 -0
- package/lib/components/side-menu/types.d.ts +0 -19
- package/lib/components/side-menu/use-drag-line.d.ts +0 -10
- package/lib/components/slot/index.d.ts +0 -2
- package/lib/components/slot/only-child.d.ts +0 -7
- package/lib/components/sub-menu/style/css.d.ts +0 -0
- package/lib/components/sub-menu/style/index.d.ts +0 -0
- package/lib/components/switch/index.d.ts +0 -205
- package/lib/components/switch/style/css.d.ts +0 -0
- package/lib/components/switch/style/index.d.ts +0 -0
- package/lib/components/switch/switch.vue.d.ts +0 -236
- package/lib/components/tab-pane/style/css.d.ts +0 -0
- package/lib/components/tab-pane/style/index.d.ts +0 -0
- package/lib/components/table/style/css.d.ts +0 -0
- package/lib/components/table/style/index.d.ts +0 -0
- package/lib/components/table/table.vue.d.ts +0 -121
- package/lib/components/table/type.d.ts +0 -21
- package/lib/components/tabs/index.d.ts +0 -274
- package/lib/components/tabs/style/css.d.ts +0 -0
- package/lib/components/tabs/style/index.d.ts +0 -0
- package/lib/components/tabs/tab-bar.vue.d.ts +0 -51
- package/lib/components/tabs/tab-nav.vue.d.ts +0 -120
- package/lib/components/tabs/tab-pane.vue.d.ts +0 -45
- package/lib/components/tabs/tabs.vue.d.ts +0 -159
- package/lib/components/tabs/types.d.ts +0 -59
- package/lib/components/tag/index.d.ts +0 -71
- package/lib/components/tag/style/css.d.ts +0 -0
- package/lib/components/tag/style/index.d.ts +0 -0
- package/lib/components/tag/tag.vue.d.ts +0 -74
- package/lib/components/tag/types.d.ts +0 -1
- package/lib/components/time-select-extend/style/css.cjs +0 -1
- package/lib/components/time-select-extend/style/css.d.ts +0 -0
- package/lib/components/time-select-extend/style/index.cjs +0 -1
- package/lib/components/time-select-extend/style/index.d.ts +0 -0
- package/lib/components/tooltip/constants.d.ts +0 -18
- package/lib/components/tooltip/content.vue.d.ts +0 -268
- package/lib/components/tooltip/index.d.ts +0 -398
- package/lib/components/tooltip/style/css.d.ts +0 -0
- package/lib/components/tooltip/style/index.d.ts +0 -0
- package/lib/components/tooltip/tooltip.vue.d.ts +0 -470
- package/lib/components/tooltip/trigger.vue.d.ts +0 -54
- package/lib/components/tooltip/types.d.ts +0 -53
- package/lib/components/tooltip/utils.d.ts +0 -11
- package/lib/components/types.d.ts +0 -1
- package/lib/components/verify-code/index.d.ts +0 -23
- package/lib/components/verify-code/style/css.d.ts +0 -0
- package/lib/components/verify-code/style/index.d.ts +0 -0
- package/lib/components/verify-code/useImageVerify.d.ts +0 -11
- package/lib/components/verify-code/verify-code.vue.d.ts +0 -24
- package/lib/components/virtual-list/builders/build-grid.d.ts +0 -214
- package/lib/components/virtual-list/builders/build-list.d.ts +0 -167
- package/lib/components/virtual-list/components/dynamic-size-grid.d.ts +0 -206
- package/lib/components/virtual-list/components/dynamic-size-list.d.ts +0 -165
- package/lib/components/virtual-list/components/fixed-size-grid.d.ts +0 -193
- package/lib/components/virtual-list/components/fixed-size-list.d.ts +0 -164
- package/lib/components/virtual-list/components/scrollbar.d.ts +0 -79
- package/lib/components/virtual-list/defaults.d.ts +0 -30
- package/lib/components/virtual-list/hooks/use-cache.d.ts +0 -1
- package/lib/components/virtual-list/hooks/use-grid-wheel.d.ts +0 -13
- package/lib/components/virtual-list/hooks/use-wheel.d.ts +0 -13
- package/lib/components/virtual-list/index.d.ts +0 -8
- package/lib/components/virtual-list/props.d.ts +0 -201
- package/lib/components/virtual-list/style/css.d.ts +0 -0
- package/lib/components/virtual-list/style/index.d.ts +0 -0
- package/lib/components/virtual-list/types.d.ts +0 -137
- package/lib/components/virtual-list/utils.d.ts +0 -17
- package/lib/constants/aria.d.ts +0 -17
- package/lib/constants/date.d.ts +0 -3
- package/lib/constants/event.d.ts +0 -3
- package/lib/constants/index.d.ts +0 -5
- package/lib/constants/key.d.ts +0 -1
- package/lib/constants/size.d.ts +0 -7
- package/lib/defaults.d.ts +0 -5
- package/lib/hooks/index.d.ts +0 -16
- package/lib/hooks/use-cursor/index.d.ts +0 -2
- package/lib/hooks/use-delayed-toggle/index.d.ts +0 -10
- package/lib/hooks/use-draggable/index.d.ts +0 -2
- package/lib/hooks/use-forward-ref/index.d.ts +0 -9
- package/lib/hooks/use-id/index.d.ts +0 -9
- package/lib/hooks/use-lockscreen/index.d.ts +0 -11
- package/lib/hooks/use-model-toggle/index.d.ts +0 -25
- package/lib/hooks/use-namespace/index.d.ts +0 -24
- package/lib/hooks/use-ordered-children/index.d.ts +0 -8
- package/lib/hooks/use-popper/index.d.ts +0 -78
- package/lib/hooks/use-popper-container/index.d.ts +0 -5
- package/lib/hooks/use-prop/index.d.ts +0 -2
- package/lib/hooks/use-same-target/index.d.ts +0 -5
- package/lib/hooks/use-size/index.d.ts +0 -7
- package/lib/hooks/use-timeout/index.d.ts +0 -4
- package/lib/hooks/use-z-index/index.d.ts +0 -9
- package/lib/index.d.ts +0 -11
- package/lib/make-installer.d.ts +0 -6
- package/lib/plugin.d.ts +0 -3
- package/lib/utils/dom/index.d.ts +0 -2
- package/lib/utils/dom/position.d.ts +0 -7
- package/lib/utils/dom/scroll.d.ts +0 -8
- package/lib/utils/error.d.ts +0 -3
- package/lib/utils/event.d.ts +0 -6
- package/lib/utils/helper.d.ts +0 -1
- package/lib/utils/index.d.ts +0 -8
- package/lib/utils/ns-cover.d.ts +0 -16
- package/lib/utils/objects.d.ts +0 -4
- package/lib/utils/typescript.d.ts +0 -12
- package/lib/utils/vue/data-helper.d.ts +0 -1
- package/lib/utils/vue/index.d.ts +0 -7
- package/lib/utils/vue/install.d.ts +0 -6
- package/lib/utils/vue/props/index.d.ts +0 -3
- package/lib/utils/vue/props/runtime.d.ts +0 -28
- package/lib/utils/vue/props/types.d.ts +0 -120
- package/lib/utils/vue/props/util.d.ts +0 -8
- package/lib/utils/vue/raf.d.ts +0 -2
- package/lib/utils/vue/refs.d.ts +0 -3
- package/lib/utils/vue/typescript.d.ts +0 -5
- package/lib/utils/vue/vnode.d.ts +0 -51
- package/theme-style/src/md/list.scss +0 -21
- /package/{es/components/alert/style/css.d.ts → theme-style/src/breadcrumb-item.scss} +0 -0
- /package/{es/components/alert/style/index.d.ts → theme-style/src/collapse-item.scss} +0 -0
- /package/{es/components/avatar/style/css.d.ts → theme-style/src/infinite-scroll.scss} +0 -0
- /package/{es/components/avatar/style/index.d.ts → theme-style/vft-breadcrumb-item.css} +0 -0
- /package/{es/components/back-top/style/css.d.ts → theme-style/vft-collapse-item.css} +0 -0
- /package/{es/components/back-top/style/index.d.ts → theme-style/vft-infinite-scroll.css} +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
.fade-in-linear-enter-active,.fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.fade-in-linear-enter-from,.fade-in-linear-leave-to{opacity:0}.vft-fade-in-linear-enter-active,.vft-fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.vft-fade-in-linear-enter-from,.vft-fade-in-linear-leave-to{opacity:0}.vft-fade-in-enter-active,.vft-fade-in-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-fade-in-enter-from,.vft-fade-in-leave-active{opacity:0}.vft-zoom-in-center-enter-active,.vft-zoom-in-center-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-zoom-in-center-enter-from,.vft-zoom-in-center-leave-active{opacity:0;transform:scaleX(0)}.vft-zoom-in-top-enter-active,.vft-zoom-in-top-leave-active{opacity:1;transform:scaleY(1);transition:var(--vft-transition-md-fade);transform-origin:center top}.vft-zoom-in-top-enter-active[data-popper-placement^=top],.vft-zoom-in-top-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-enter-from,.vft-zoom-in-top-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-bottom-enter-active,.vft-zoom-in-bottom-leave-active{opacity:1;transform:scaleY(1);transition:var(--vft-transition-md-fade);transform-origin:center bottom}.vft-zoom-in-bottom-enter-from,.vft-zoom-in-bottom-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-left-enter-active,.vft-zoom-in-left-leave-active{opacity:1;transform:scale(1,1);transition:var(--vft-transition-md-fade);transform-origin:top left}.vft-zoom-in-left-enter-from,.vft-zoom-in-left-leave-active{opacity:0;transform:scale(.45,.45)}.collapse-transition{transition:var(--vft-transition-duration) height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.vft-collapse-transition-enter-active,.vft-collapse-transition-leave-active{transition:var(--vft-transition-duration) max-height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.horizontal-collapse-transition{transition:var(--vft-transition-duration) width ease-in-out,var(--vft-transition-duration) padding-left ease-in-out,var(--vft-transition-duration) padding-right ease-in-out}.vft-list-enter-active,.vft-list-leave-active{transition:all 1s}.vft-list-enter-from,.vft-list-leave-to{opacity:0;transform:translateY(-30px)}.vft-list-leave-active{position:absolute!important}.vft-opacity-transition{transition:opacity var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}@keyframes vft-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}.pswp{--pswp-bg:#000;--pswp-placeholder-bg:#222;--pswp-root-z-index:100000;--pswp-preloader-color:rgba(79, 79, 79, 0.4);--pswp-preloader-color-secondary:rgba(255, 255, 255, 0.9);--pswp-icon-color:#fff;--pswp-icon-color-secondary:#4f4f4f;--pswp-icon-stroke-color:#4f4f4f;--pswp-icon-stroke-width:2px;--pswp-error-text-color:var(--pswp-icon-color)}.pswp{position:fixed;top:0;left:0;width:100%;height:100%;z-index:var(--pswp-root-z-index);display:none;touch-action:none;outline:0;opacity:.003;contain:layout style size;-webkit-tap-highlight-color:transparent}.pswp:focus{outline:0}.pswp *{box-sizing:border-box}.pswp img{max-width:none}.pswp--open{display:block}.pswp,.pswp__bg{transform:translateZ(0);will-change:opacity}.pswp__bg{opacity:.005;background:var(--pswp-bg)}.pswp,.pswp__scroll-wrap{overflow:hidden}.pswp__bg,.pswp__container,.pswp__content,.pswp__img,.pswp__item,.pswp__scroll-wrap,.pswp__zoom-wrap{position:absolute;top:0;left:0;width:100%;height:100%}.pswp__img,.pswp__zoom-wrap{width:auto;height:auto}.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img{cursor:zoom-in}.pswp--click-to-zoom.pswp--zoomed-in .pswp__img{cursor:move;cursor:grab}.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active{cursor:grabbing}.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,.pswp__img{cursor:zoom-out}.pswp__button,.pswp__container,.pswp__counter,.pswp__img{-webkit-user-select:none;-moz-user-select:none;user-select:none}.pswp__item{z-index:1;overflow:hidden}.pswp__hidden{display:none!important}.pswp__content{pointer-events:none}.pswp__content>*{pointer-events:auto}.pswp__error-msg-container{display:grid}.pswp__error-msg{margin:auto;font-size:1em;line-height:1;color:var(--pswp-error-text-color)}.pswp .pswp__hide-on-close{opacity:.005;will-change:opacity;transition:opacity var(--pswp-transition-duration) cubic-bezier(.4,0,.22,1);z-index:10;pointer-events:none}.pswp--ui-visible .pswp__hide-on-close{opacity:1;pointer-events:auto}.pswp__button{position:relative;display:block;width:50px;height:60px;padding:0;margin:0;overflow:hidden;cursor:pointer;background:0 0;border:0;box-shadow:none;opacity:.85;-webkit-appearance:none;-webkit-touch-callout:none}.pswp__button:active,.pswp__button:focus,.pswp__button:hover{transition:none;padding:0;background:0 0;border:0;box-shadow:none;opacity:1}.pswp__button:disabled{opacity:.3;cursor:auto}.pswp__icn{fill:var(--pswp-icon-color);color:var(--pswp-icon-color-secondary)}.pswp__icn{position:absolute;top:14px;left:9px;width:32px;height:32px;overflow:hidden;pointer-events:none}.pswp__icn-shadow{stroke:var(--pswp-icon-stroke-color);stroke-width:var(--pswp-icon-stroke-width);fill:none}.pswp__icn:focus{outline:0}.pswp__img--with-bg,div.pswp__img--placeholder{background:var(--pswp-placeholder-bg)}.pswp__top-bar{position:absolute;left:0;top:0;width:100%;height:60px;display:flex;flex-direction:row;justify-content:flex-end;z-index:10;pointer-events:none!important}.pswp__top-bar>*{pointer-events:auto;will-change:opacity}.pswp__button--close{margin-right:6px}.pswp__button--arrow{position:absolute;top:0;width:75px;height:100px;top:50%;margin-top:-50px}.pswp__button--arrow:disabled{display:none;cursor:default}.pswp__button--arrow .pswp__icn{top:50%;margin-top:-30px;width:60px;height:60px;background:0 0;border-radius:0}.pswp--one-slide .pswp__button--arrow{display:none}.pswp--touch .pswp__button--arrow{visibility:hidden}.pswp--has_mouse .pswp__button--arrow{visibility:visible}.pswp__button--arrow--prev{right:auto;left:0}.pswp__button--arrow--next{right:0}.pswp__button--arrow--next .pswp__icn{left:auto;right:14px;transform:scale(-1,1)}.pswp__button--zoom{display:none}.pswp--zoom-allowed .pswp__button--zoom{display:block}.pswp--zoomed-in .pswp__zoom-icn-bar-v{display:none}.pswp__preloader{position:relative;overflow:hidden;width:50px;height:60px;margin-right:auto}.pswp__preloader .pswp__icn{opacity:0;transition:opacity .2s linear;animation:pswp-clockwise .6s linear infinite}.pswp__preloader--active .pswp__icn{opacity:.85}@keyframes pswp-clockwise{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.pswp__counter{height:30px;margin-top:15px;-webkit-margin-start:20px;margin-inline-start:20px;font-size:14px;line-height:30px;color:var(--pswp-icon-color);text-shadow:1px 1px 3px var(--pswp-icon-color-secondary);opacity:.85}.pswp--one-slide .pswp__counter{display:none}:root{--vft-md-container-primary-color:var(--vft-primary-color);--vft-md-container-content-max-width:800px;--vft-md-container-code-bg-color:#fff5f5;--vft-md-container-line-numbers-width:2.5rem;--vft-md-container-icon-copy:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' height='20' width='20' stroke='rgba(128,128,128,1)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2M9 5a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2'/%3E%3C/svg%3E");--vft-md-container-icon-copied:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' height='20' width='20' stroke='rgba(128,128,128,1)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2M9 5a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2m-6 9 2 2 4-4'/%3E%3C/svg%3E");--vft-md-container-info-title-color:#193c47;--vft-md-container-info-bg-color:#eef9fd;--vft-md-container-info-border-color:#4cb3d4;--vft-md-container-info-code-bg-color:rgba(76, 179, 212, 0.1);--vft-md-container-note-title-color:#474748;--vft-md-container-note-bg-color:#fdfdfe;--vft-md-container-note-border-color:#ccc;--vft-md-container-note-code-bg-color:rgba(212, 213, 216, 0.2);--vft-md-container-tip-title-color:#003100;--vft-md-container-tip-bg-color:#e6f6e6;--vft-md-container-tip-border-color:#009400;--vft-md-container-tip-code-bg-color:rgba(0, 148, 0, 0.15);--vft-md-container-warning-title-color:#4d3800;--vft-md-container-warning-bg-color:#fff8e6;--vft-md-container-warning-border-color:#e6a700;--vft-md-container-warning-code-bg-color:rgba(230, 167, 0, 0.15);--vft-md-container-danger-title-color:#4b1113;--vft-md-container-danger-bg-color:#ffebec;--vft-md-container-danger-border-color:#e13238;--vft-md-container-danger-code-bg-color:rgba(225, 50, 56, 0.15);--vft-md-container-detail-bg-color:#eee;--vft-md-container-detail-text-color:inherit;--vft-md-container-detail-code-bg-color:rgba(127, 127, 127, 0.15)}.vft-md-container{-webkit-font-smoothing:antialiased;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Fira Sans","Droid Sans","Helvetica Neue",STHeiti,"Microsoft YaHei",SimSun,sans-serif;padding:20px 30px;height:100%;overflow:auto;overflow:overlay}.vft-md-container a{color:var(--vft-md-container-primary-color);font-weight:500;overflow-wrap:break-word}.vft-md-container a:hover{text-decoration:underline}.vft-md-container a::after{content:"";display:inline-block;height:12px;width:12px;margin-left:5px;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjc0NTU1ODY1NjQyIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjU2NjIiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCI+PHBhdGggZD0iTTkxMiAxMDA4LjUxMkgxNS40ODhWMTEyaDQ0OC4yNTZ2OTZIMTExLjQ4OHY3MDQuNTEySDgxNlY1NjAuMjU2aDk2eiIgcC1pZD0iNTY2MyIgZmlsbD0iIzk5OTk5OSI+PC9wYXRoPjxwYXRoIGQ9Ik05MTguMjA4IDM3Ljg4OGw2Ny45MDQgNjcuOTA0TDU0NS45ODQgNTQ1LjkybC02Ny45MDQtNjcuODR6IiBwLWlkPSI1NjY0IiBmaWxsPSIjOTk5OTk5Ij48L3BhdGg+PHBhdGggZD0iTTEwMDcuMTY4IDMxMC42NTZoLTk2VjExMmgtMjA4VjE2aDMwNHoiIHAtaWQ9IjU2NjUiIGZpbGw9IiM5OTk5OTkiPjwvcGF0aD48L3N2Zz4=);background-size:100% 100%}.vft-md-container a.header-anchor::after,.vft-md-container a:has(>img)::after{content:"";display:none}.vft-md-container a img{display:inline-block}.vft-md-container a.header-anchor{float:left;margin-top:.125em;margin-left:-.87em;padding-right:.23em;font-size:.85em;opacity:0;transition:opacity .2s}.vft-md-container h1:hover .header-anchor,.vft-md-container h2:hover .header-anchor,.vft-md-container h3:hover .header-anchor,.vft-md-container h4:hover .header-anchor,.vft-md-container h5:hover .header-anchor,.vft-md-container h6:hover .header-anchor{opacity:1}.vft-md-container .toc-place-holder{position:sticky;top:50px;z-index:1;max-width:var(--vft-md-container-content-max-width)}.vft-md-container #toc{position:absolute;left:calc(100% + 1rem);min-width:10rem;max-width:15rem}@media print{.vft-md-container #toc{display:none!important}}.vft-md-container #toc a::after{content:"";display:none}.vft-md-container #toc .toc-header{margin-bottom:.75rem;-webkit-margin-start:.5rem;margin-inline-start:.5rem;font-weight:600;font-size:.875rem}.vft-md-container #toc .print-button{box-sizing:content-box;width:1rem;height:1rem;padding:.5rem;border-radius:.25em;color:inherit;font-size:1rem;transform:translateY(.25rem)}.vft-md-container #toc .toc-wrapper{position:relative;overflow-x:hidden;overflow-y:auto;max-height:70vh;margin:0 .5rem;-webkit-padding-start:8px;padding-inline-start:8px;text-overflow:ellipsis;white-space:nowrap}.vft-md-container #toc .toc-wrapper::-webkit-scrollbar{width:3px}.vft-md-container #toc .toc-list{position:relative;margin:0;padding:0}.vft-md-container #toc .toc-list::before{content:" ";position:absolute;top:0;bottom:0;left:-8px;inset-inline-start:-8px;z-index:-1;width:2px;background:var(--vft-info-color-light-7)}.vft-md-container #toc .toc-link{position:relative;display:block;overflow:hidden;max-width:100%;color:var(--vft-text-primary-color);line-height:inherit;text-overflow:ellipsis;white-space:nowrap}.vft-md-container #toc .toc-link.level2{-webkit-padding-start:0;padding-inline-start:0;font-size:14px}.vft-md-container #toc .toc-link.level3{-webkit-padding-start:8px;padding-inline-start:8px;font-size:13px}.vft-md-container #toc .toc-link.level4{-webkit-padding-start:16px;padding-inline-start:16px;font-size:12px}.vft-md-container #toc .toc-link.level5{-webkit-padding-start:24px;padding-inline-start:24px;font-size:11px}.vft-md-container #toc .toc-link.level6{-webkit-padding-start:32px;padding-inline-start:32px;font-size:10px}.vft-md-container #toc .toc-item{position:relative;box-sizing:border-box;height:1.7rem;padding:0 .5rem;list-style:none;line-height:1.7rem}.vft-md-container #toc .toc-item::before{content:" ";position:absolute;top:0;bottom:0;left:-8px;inset-inline-start:-8px;z-index:2;width:2px;background:0 0}.vft-md-container #toc .toc-item:hover>.toc-link{color:var(--vft-md-container-primary-color)}.vft-md-container #toc .toc-item.active>.toc-link{color:var(--vft-md-container-primary-color);font-weight:700}.vft-md-container #toc .toc-item.active::before{background:var(--vft-md-container-primary-color)}.vft-md-container code[class*=language-],.vft-md-container pre[class*=language-]{-moz-tab-size:2;-o-tab-size:2;tab-size:2}.vft-md-container code[class*=language-] ::-moz-selection,.vft-md-container code[class*=language-]::-moz-selection,.vft-md-container pre[class*=language-] ::-moz-selection,.vft-md-container pre[class*=language-]::-moz-selection{background:#e5e5e6;color:inherit}.vft-md-container code[class*=language-] ::selection,.vft-md-container code[class*=language-]::selection,.vft-md-container pre[class*=language-] ::selection,.vft-md-container pre[class*=language-]::selection{background:#e5e5e6;color:inherit}.vft-md-container .token.cdata,.vft-md-container .token.comment,.vft-md-container .token.prolog{color:#a0a1a7}.vft-md-container .token.doctype,.vft-md-container .token.entity,.vft-md-container .token.punctuation{color:#383a42}.vft-md-container .token.atrule,.vft-md-container .token.attr-name,.vft-md-container .token.boolean,.vft-md-container .token.class-name,.vft-md-container .token.constant,.vft-md-container .token.number{color:#b76b01}.vft-md-container .token.keyword{color:#a626a4}.vft-md-container .token.deleted,.vft-md-container .token.important,.vft-md-container .token.property,.vft-md-container .token.symbol,.vft-md-container .token.tag{color:#e45649}.vft-md-container .token.attr-value,.vft-md-container .token.attr-value>.token.punctuation,.vft-md-container .token.builtin,.vft-md-container .token.char,.vft-md-container .token.inserted,.vft-md-container .token.regex,.vft-md-container .token.selector,.vft-md-container .token.string{color:#50a14f}.vft-md-container .token.function,.vft-md-container .token.operator,.vft-md-container .token.variable{color:#4078f2}.vft-md-container .token.url{color:#0184bc}.vft-md-container .token.attr-value>.token.punctuation.attr-equals,.vft-md-container .token.special-attr>.token.attr-value>.token.value.css{color:#383a42}.vft-md-container .language-css .token.selector{color:#e45649}.vft-md-container .language-css .token.property{color:#383a42}.vft-md-container .language-css .token.function,.vft-md-container .language-css .token.url>.token.function{color:#0184bc}.vft-md-container .language-css .token.url>.token.string.url{color:#50a14f}.vft-md-container .language-css .token.atrule .token.rule,.vft-md-container .language-css .token.important{color:#a626a4}.vft-md-container .language-javascript .token.operator{color:#a626a4}.vft-md-container .language-javascript .token.template-string>.token.interpolation>.token.interpolation-punctuation.punctuation{color:#ca1243}.vft-md-container .language-json .token.operator{color:#383a42}.vft-md-container .language-json .token.null.keyword{color:#b76b01}.vft-md-container .language-markdown .token.url,.vft-md-container .language-markdown .token.url-reference.url>.token.string,.vft-md-container .language-markdown .token.url>.token.operator{color:#383a42}.vft-md-container .language-markdown .token.url>.token.content{color:#4078f2}.vft-md-container .language-markdown .token.url-reference.url,.vft-md-container .language-markdown .token.url>.token.url{color:#0184bc}.vft-md-container .language-markdown .token.blockquote.punctuation,.vft-md-container .language-markdown .token.hr.punctuation{color:#a0a1a7;font-style:italic}.vft-md-container .language-markdown .token.code-snippet{color:#50a14f}.vft-md-container .language-markdown .token.bold .token.content{color:#b76b01}.vft-md-container .language-markdown .token.italic .token.content{color:#a626a4}.vft-md-container .language-markdown .token.list.punctuation,.vft-md-container .language-markdown .token.strike .token.content,.vft-md-container .language-markdown .token.strike .token.punctuation,.vft-md-container .language-markdown .token.title.important>.token.punctuation{color:#e45649}.vft-md-container .token.bold{font-weight:700}.vft-md-container .token.comment,.vft-md-container .token.italic{font-style:italic}.vft-md-container .token.entity{cursor:help}.vft-md-container .token.namespace{opacity:.8}.vft-md-container ol,.vft-md-container ul{-webkit-padding-start:1.2em;padding-inline-start:1.2em;list-style-type:revert}@media print{.vft-md-container ol,.vft-md-container ul{line-height:1.5}}.vft-md-container ol li,.vft-md-container ul li{display:list-item;text-align:-webkit-match-parent}.vft-md-container ol,.vft-md-container p,.vft-md-container ul{line-height:1.7;overflow-wrap:break-word}.vft-md-container table{width:100%;background-color:#fff;color:#000;border-radius:6px;border-collapse:collapse;overflow:hidden;margin:16px 0;box-shadow:var(--vft-box-shadow)}.vft-md-container table thead{background-color:var(--vft-primary-color-light-7);font-weight:400}.vft-md-container table thead th{border:0}.vft-md-container table tr{transition:all .2s}.vft-md-container table tbody tr:hover{background-color:var(--vft-primary-color-light-9)}.vft-md-container table td:first-child{font-weight:700}.vft-md-container table td:nth-child(1){font-weight:700}.vft-md-container table td:nth-child(4){word-break:break-all}.vft-md-container table td,.vft-md-container table th{padding:16px;line-height:22px;text-align:left;font-size:14px;border-bottom:var(--vft-border)}.vft-md-container table th{white-space:nowrap}.vft-md-container table em{font-style:normal;font-size:14px;color:var(--vft-danger-color)}.vft-md-container h2,.vft-md-container h3{border-bottom:1px solid rgba(0,0,0,.15)}.vft-md-container h1,.vft-md-container h2,.vft-md-container h3,.vft-md-container h4,.vft-md-container h5,.vft-md-container h6{font-weight:500;line-height:1.25;overflow-wrap:break-word}.vft-md-container h1:hover .header-anchor,.vft-md-container h2:hover .header-anchor,.vft-md-container h3:hover .header-anchor,.vft-md-container h4:hover .header-anchor,.vft-md-container h5:hover .header-anchor,.vft-md-container h6:hover .header-anchor{opacity:1}.vft-md-container h1{font-size:2rem}.vft-md-container h2{padding-bottom:.3rem;font-size:1.65rem}.vft-md-container h3{font-size:1.35rem}.vft-md-container h4{font-size:1.15rem}.vft-md-container h5{font-size:1.05rem}.vft-md-container h6{font-size:1rem}.vft-md-container h1,.vft-md-container h2,.vft-md-container h3,.vft-md-container h4,.vft-md-container h5,.vft-md-container h6{margin-bottom:.5rem;padding-top:30px;outline:0}.no-navbar .vft-md-container h1,.no-navbar .vft-md-container h2,.no-navbar .vft-md-container h3,.no-navbar .vft-md-container h4,.no-navbar .vft-md-container h5,.no-navbar .vft-md-container h6{margin-top:1.5rem;padding-top:0}.vft-md-container blockquote{margin:16px 0;padding:4px 0 4px 16px;-webkit-border-start:3px solid #ddd;border-inline-start:3px solid #ddd;border-color:#eee;color:#666;font-size:1rem;overflow-wrap:break-word}.vft-md-container blockquote p{margin:0}.vft-md-container code{font-family:Menlo,Monaco,Consolas,Courier New,monospace;padding:0 5px;color:#ff502c;background-color:var(--vft-md-container-code-bg-color);border-radius:3px;font-size:13.5px;word-break:break-word}.vft-md-container .line-numbers-mode pre{vertical-align:middle;padding-left:.5rem;margin-left:var(--vft-md-container-line-numbers-width)!important}.vft-md-container .line-numbers-mode::after{content:"";position:absolute;top:0;left:0;z-index:2;width:var(--vft-md-container-line-numbers-width);height:100%;border-right:var(--vft-border);border-radius:6px 0 0 6px;transition:border-color var(--vft-color-transition)}.vft-md-container .line-numbers-mode .line-numbers{position:absolute;top:0;left:0;width:var(--vft-md-container-line-numbers-width);padding:1rem 0;color:var(--vft-text-regular-color);line-height:1.375;counter-reset:line-number;text-align:center;transition:color var(--vft-color-transition);transform:translateY(1px)}@media print{.vft-md-container .line-numbers-mode .line-numbers{display:none}}.vft-md-container .line-numbers-mode .line-number{position:relative;z-index:4;display:flex;align-items:center;justify-content:center;height:1.375em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-md-container .line-numbers-mode .line-number::before{content:counter(line-number);font-size:.85em;counter-increment:line-number}.vft-md-container .line-numbers-mode .highlight-lines{position:absolute;top:0;left:0;width:100%;padding-top:1rem;line-height:1.375;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-md-container .line-numbers-mode .highlight-line{position:relative;background:var(--vft-md-container-highlight-line-color);transition:background var(--vft-md-container-color-transition)}.vft-md-container .line-numbers-mode .highlight-line::before{content:" ";position:absolute;top:0;left:0;z-index:3;display:block;width:var(--vft-md-container-line-numbers-width);height:100%}.vft-md-container div[class*=language-]{position:relative;border-radius:6px;background:#ecf4fa;transition:background .3s ease}.vft-md-container div[class*=language-]::before{content:attr(data-ext);position:absolute;top:.8em;right:1em;z-index:3;color:#004050;font-size:.75rem;transition:color .3s ease}.vft-md-container div[class*=language-] pre,.vft-md-container div[class*=language-] pre[class*=language-]{position:relative;z-index:1;direction:ltr;background:0 0!important;font-size:16px;overflow:auto;padding:1rem;border-radius:6px;line-height:1.375;display:block;font-family:monospace;white-space:pre;margin:14px 0 14px 0}.vft-md-container div[class*=language-] pre code,.vft-md-container div[class*=language-] pre[class*=language-] code{background:0 0;color:#383a42;padding:0;font-family:Consolas,Monaco,"Andale Mono","Ubuntu Mono",monospace;text-align:left;overflow-wrap:unset;white-space:pre;word-spacing:normal;word-wrap:normal;word-break:normal;-webkit-hyphens:none;font-size:.85em;-webkit-font-smoothing:auto;hyphens:none;transition:color .3s ease}.vft-md-container div[class*=language-] pre{vertical-align:middle;margin-left:var(--vft-md-container-line-numbers-width);padding-left:.5rem}.vft-md-container div[class*=language-] button.copy{border:none;position:absolute;top:0;right:40px;z-index:3;display:block;justify-content:center;align-items:center;border-radius:4px;width:40px;height:40px;background-color:transparent;opacity:0;cursor:pointer;background-image:var(--vft-md-container-icon-copy);background-position:50%;background-size:20px;background-repeat:no-repeat;transition:opacity .4s}.vft-md-container div[class*=language-] button.copy.copied::before,.vft-md-container div[class*=language-] button.copy:hover.copied::before{position:relative;left:-45px;font-size:12px;font-weight:500;color:rgba(56,58,66,.67);background-color:transparent;white-space:nowrap;content:"Copied"}.vft-md-container div[class*=language-] button.copy.copied,.vft-md-container div[class*=language-] button.copy:hover.copied{background-color:#c3def3;background-image:var(--vft-md-container-icon-copied)}.vft-md-container div[class*=language-] button.copy:focus,.vft-md-container div[class*=language-]:hover>button.copy{opacity:1}.vft-md-container div[class*=language-] button.copy:hover{background-color:#c3def3}.vft-md-container .language-markdown .token.url,.vft-md-container .language-markdown .token.url-reference.url>.token.string,.vft-md-container .language-markdown .token.url>.token.operator{color:#383a42}.vft-md-container .language-markdown .token.url>.token.content{color:#4078f2}.vft-md-container .language-markdown .token.url-reference.url,.vft-md-container .language-markdown .token.url>.token.url{color:#0184bc}.vft-md-container .language-markdown .token.blockquote.punctuation,.vft-md-container .language-markdown .token.hr.punctuation{color:#a0a1a7;font-style:italic}.vft-md-container .language-markdown .token.code-snippet{color:#50a14f}.vft-md-container .language-markdown .token.bold .token.content{color:#b76b01}.vft-md-container .language-markdown .token.italic .token.content{color:#a626a4}.vft-md-container .language-markdown .token.list.punctuation,.vft-md-container .language-markdown .token.strike .token.content,.vft-md-container .language-markdown .token.strike .token.punctuation,.vft-md-container .language-markdown .token.title.important>.token.punctuation{color:#e45649}.vft-md-container .hint-container{position:relative;transition:background var(--vft-transition-color),border-color var(--vft-transition-color),color var(--vft-transition-color)}@media print{.vft-md-container .hint-container{page-break-inside:avoid}}.vft-md-container .hint-container .hint-container-title{position:relative;font-weight:600;line-height:1.25}.vft-md-container .hint-container.danger,.vft-md-container .hint-container.info,.vft-md-container .hint-container.note,.vft-md-container .hint-container.tip,.vft-md-container .hint-container.warning{margin:1rem 0;padding:.25rem 1rem;border-inline-start-width:.3rem;border-inline-start-style:solid;border-radius:.5rem;color:inherit}.vft-md-container .hint-container.danger .hint-container-title,.vft-md-container .hint-container.info .hint-container-title,.vft-md-container .hint-container.note .hint-container-title,.vft-md-container .hint-container.tip .hint-container-title,.vft-md-container .hint-container.warning .hint-container-title{-webkit-padding-start:1.75rem;padding-inline-start:1.75rem}@media print{.vft-md-container .hint-container.danger .hint-container-title,.vft-md-container .hint-container.info .hint-container-title,.vft-md-container .hint-container.note .hint-container-title,.vft-md-container .hint-container.tip .hint-container-title,.vft-md-container .hint-container.warning .hint-container-title{-webkit-padding-start:0;padding-inline-start:0}}.vft-md-container .hint-container.danger .hint-container-title::before,.vft-md-container .hint-container.info .hint-container-title::before,.vft-md-container .hint-container.note .hint-container-title::before,.vft-md-container .hint-container.tip .hint-container-title::before,.vft-md-container .hint-container.warning .hint-container-title::before{content:" ";position:absolute;top:calc(50% - .6125em);left:0;inset-inline-start:0;width:1.25em;height:1.25em;background-position:left;background-repeat:no-repeat}@media print{.vft-md-container .hint-container.danger .hint-container-title::before,.vft-md-container .hint-container.info .hint-container-title::before,.vft-md-container .hint-container.note .hint-container-title::before,.vft-md-container .hint-container.tip .hint-container-title::before,.vft-md-container .hint-container.warning .hint-container-title::before{display:none}}.vft-md-container .hint-container.danger p,.vft-md-container .hint-container.info p,.vft-md-container .hint-container.note p,.vft-md-container .hint-container.tip p,.vft-md-container .hint-container.warning p{line-height:1.5}.vft-md-container .hint-container.danger a,.vft-md-container .hint-container.info a,.vft-md-container .hint-container.note a,.vft-md-container .hint-container.tip a,.vft-md-container .hint-container.warning a{color:var(--vft-md-container-primary-color)}.vft-md-container .hint-container.info{border-color:var(--vft-md-container-info-border-color);background:var(--vft-md-container-info-bg-color)}.vft-md-container .hint-container.info>.hint-container-title{color:var(--vft-md-container-info-title-color)}.vft-md-container .hint-container.info>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-1-11v6h2v-6h-2zm0-4v2h2V7h-2z' fill='%234cb3d4'/%3E%3C/svg%3E")}.vft-md-container .hint-container.info code{background:var(--vft-md-container-info-code-bg-color)}.vft-md-container .hint-container.note{border-color:var(--vft-md-container-note-border-color);background:var(--vft-md-container-note-bg-color)}.vft-md-container .hint-container.note>.hint-container-title{color:var(--vft-md-container-note-title-color)}.vft-md-container .hint-container.note>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-1-11v6h2v-6h-2zm0-4v2h2V7h-2z' fill='%23ccc'/%3E%3C/svg%3E")}.vft-md-container .hint-container.note code{background:var(--vft-md-container-note-code-bg-color)}.vft-md-container .hint-container.tip{border-color:var(--vft-md-container-tip-border-color);background:var(--vft-md-container-tip-bg-color)}.vft-md-container .hint-container.tip>.hint-container-title{color:var(--vft-md-container-tip-title-color)}.vft-md-container .hint-container.tip>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23009400' d='M7.941 18c-.297-1.273-1.637-2.314-2.187-3a8 8 0 1 1 12.49.002c-.55.685-1.888 1.726-2.185 2.998H7.94zM16 20v1a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-1h8zm-3-9.995V6l-4.5 6.005H11v4l4.5-6H13z'/%3E%3C/svg%3E")}.vft-md-container .hint-container.tip code{background:var(--vft-md-container-tip-code-bg-color)}.vft-md-container .hint-container.warning{border-color:var(--vft-md-container-warning-border-color);background:var(--vft-md-container-warning-bg-color)}.vft-md-container .hint-container.warning>.hint-container-title{color:var(--vft-md-container-warning-title-color)}.vft-md-container .hint-container.warning>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath d='M576.286 752.57v-95.425q0-7.031-4.771-11.802t-11.3-4.772h-96.43q-6.528 0-11.3 4.772t-4.77 11.802v95.424q0 7.031 4.77 11.803t11.3 4.77h96.43q6.528 0 11.3-4.77t4.77-11.803zm-1.005-187.836 9.04-230.524q0-6.027-5.022-9.543-6.529-5.524-12.053-5.524H456.754q-5.524 0-12.053 5.524-5.022 3.516-5.022 10.547l8.538 229.52q0 5.023 5.022 8.287t12.053 3.265h92.913q7.032 0 11.803-3.265t5.273-8.287zM568.25 95.65l385.714 707.142q17.578 31.641-1.004 63.282-8.538 14.564-23.354 23.102t-31.892 8.538H126.286q-17.076 0-31.892-8.538T71.04 866.074q-18.582-31.641-1.004-63.282L455.75 95.65q8.538-15.57 23.605-24.61T512 62t32.645 9.04 23.605 24.61z' fill='%23e6a700'/%3E%3C/svg%3E")}.vft-md-container .hint-container.warning code{background:var(--vft-md-container-warning-code-bg-color)}.vft-md-container .hint-container.danger{border-color:var(--vft-md-container-danger-border-color);background:var(--vft-md-container-danger-bg-color)}.vft-md-container .hint-container.danger>.hint-container-title{color:var(--vft-md-container-danger-title-color)}.vft-md-container .hint-container.danger>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10v3.764a2 2 0 0 1-1.106 1.789L18 19v1a3 3 0 0 1-2.824 2.995L14.95 23a2.5 2.5 0 0 0 .044-.33L15 22.5V22a2 2 0 0 0-1.85-1.995L13 20h-2a2 2 0 0 0-1.995 1.85L9 22v.5c0 .171.017.339.05.5H9a3 3 0 0 1-3-3v-1l-2.894-1.447A2 2 0 0 1 2 15.763V12C2 6.477 6.477 2 12 2zm-4 9a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm8 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4z' fill='%23e13238'/%3E%3C/svg%3E")}.vft-md-container .hint-container.danger code{background:var(--vft-md-container-danger-code-bg-color)}.vft-md-container .hint-container.details{position:relative;display:block;margin:1.6em 0;padding:1.5rem;border-radius:.5rem;background:var(--vft-md-container-detail-bg-color);color:var(--vft-md-container-detail-text-color);transition:background var(--vft-transition-color),color var(--vft-transition-color)}@media print{.vft-md-container .hint-container.details{display:none}}.vft-md-container .hint-container.details h4{margin-top:0}.vft-md-container .hint-container.details figure:last-child,.vft-md-container .hint-container.details p:last-child{margin-bottom:0;padding-bottom:0}.vft-md-container .hint-container.details a{color:var(--vft-md-container-primary-color)}.vft-md-container .hint-container.details code{background:var(--vft-md-container-detail-code-bg-color)}.vft-md-container .hint-container.details summary{position:relative;margin:-1.5rem;padding-top:1.5rem;padding-bottom:1.5rem;-webkit-padding-start:4rem;padding-inline-start:4rem;-webkit-padding-end:1.5rem;padding-inline-end:1.5rem;list-style:none;cursor:pointer}.vft-md-container .hint-container.details summary::-webkit-details-marker,.vft-md-container .hint-container.details summary::marker{color:transparent;font-size:0}.vft-md-container .hint-container.details summary::after,.vft-md-container .hint-container.details summary::before{content:" ";position:absolute;top:calc(50% - .75rem);left:1.5rem;inset-inline-start:1.5rem;width:1.5rem;height:1.5rem}@media print{.vft-md-container .hint-container.details summary::after,.vft-md-container .hint-container.details summary::before{display:block}}.vft-md-container .hint-container.details summary::before{border-radius:50%;background:#ccc;transition:background var(--vft-transition-color),transform var(--vft-transition-color)}.vft-md-container .hint-container.details summary::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='rgba(0,0,0,0.5)' d='M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z'/%3E%3C/svg%3E");line-height:normal;transition:transform var(--vft-transition-color);transform:rotate(90deg)}.vft-md-container .hint-container.details[open] summary{margin-bottom:.5em}.vft-md-container .hint-container.details[open] summary::after{transform:rotate(180deg)}.vft-md-container input[type=checkbox].task-list-item-checkbox{position:relative;width:0;-webkit-margin-end:1.5em;margin-inline-end:1.5em;cursor:pointer}.vft-md-container input[type=checkbox].task-list-item-checkbox::after{content:" ";position:absolute;top:0;display:inline-block;box-sizing:border-box;width:1em;height:1em;-webkit-padding-start:0;padding-inline-start:0;border:1px solid #ddd;border-radius:2px;background:#fff;text-align:center;visibility:visible;transition:background var(--t-color,.3s ease),border-color var(--t-color,.3s ease)}.vft-md-container input[type=checkbox].task-list-item-checkbox:checked::after{content:"";border-color:#3eaf7c;background:#3eaf7c}.vft-md-container input[type=checkbox].task-list-item-checkbox:checked::before{content:"";position:absolute;top:3px;left:.4em;inset-inline-start:.4em;z-index:1;width:4px;height:9px;border:solid #fff;border-width:0 .15em .15em 0;transform:rotate(45deg)}.vft-md-container input[type=checkbox i]{background-color:initial;cursor:default;margin:3px 3px 3px 4px;padding:initial;border:initial}.vft-md-container figure{position:relative;display:flex;flex-direction:column;width:auto;margin:1rem auto;text-align:center;transition:transform var(--t-transform,.3s ease)}.vft-md-container figure img{overflow:hidden;margin:0 auto;border-radius:8px}.vft-md-container figure img[tabindex]:focus,.vft-md-container figure img[tabindex]:hover{box-shadow:2px 2px 10px 0 var(--card-shadow)}.vft-md-container figure>a .external-link-icon{display:none}.vft-md-container figure figcaption{display:inline-block;margin:6px auto;font-size:.8rem}.vft-md-container__content h1{display:none}.vft-md-container h2,.vft-md-container h3{border-bottom:none}.vft-md-container h2{font-size:22px}.vft-md-container h3{font-size:18px}.vft-md-container .demo-container{border:var(--vft-border)}.vft-md-container .demo-container .demo{padding:20px 20px 30px}.vft-md-container .demo-container .demo .action{position:relative}.vft-md-container .demo-container .demo .action .expand{cursor:pointer;position:absolute;right:-5px;bottom:-28px;height:40px;width:40px;border-radius:4px;display:flex;align-items:center;justify-content:center}.vft-md-container .demo-container .demo .action .expand:hover{background-color:#c3def3}.vft-md-container .demo-container div.language-vue{transition:opacity .3s ease;height:0;visibility:hidden}.vft-md-container .demo-container div.language-vue pre{margin:0 0 0 var(--vft-md-container-line-numbers-width)!important}.vft-md-container .demo-container div.language-vue .copy{visibility:visible;opacity:1;top:-42px;right:60px}.vft-md-container p{font-size:16px;line-height:22px;margin:16px 0}.vft-md-container hr{transition:border-top-color .3s ease;border:0;border-top:1px solid #eaecef;margin:8px 0}.vft-md-container .header-anchor{text-decoration:none;transition:opacity .3s;opacity:0}.vft-md-container img{display:block;border-radius:4px;max-width:100%;margin:8px 0}.vft-md-container em{font-size:12px;line-height:20px}.vft-md-container pre{overflow:auto;margin:13px 0;padding:16px;border-radius:6px;line-height:1.375}.vft-md-container summary{cursor:pointer}.vft-md-container::-webkit-scrollbar{z-index:11;width:6px}.vft-md-container::-webkit-scrollbar:horizontal{height:6px}.vft-md-container::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:var(--vft-md-container-primary-color);border:0 solid transparent}.vft-md-container::-webkit-scrollbar-thumb:hover{background:var(--vft-md-container-primary-color)}.vft-md-container::-webkit-scrollbar-corner{background:0 0}.vft-md-container::-webkit-scrollbar-track{background:0 0}.vft-md-container::-webkit-scrollbar-track-piece{background:0 0;width:6px}.vft-md-container__header{max-width:var(--vft-md-container-content-max-width);min-width:300px}.vft-md-container__title{padding-top:10px!important}.vft-md-container__header .info-container{display:flex;align-items:center;justify-content:space-between;margin:20px 0}.vft-md-container__header .info-container .infos{display:flex;justify-content:flex-start;font-size:12px;color:var(--vft-info-color-light)}.vft-md-container__header .info-container .infos .vft-icon{color:inherit;font-size:inherit!important}.vft-md-container .reading{display:flex;align-items:center;font-size:14px}.vft-md-container__content{max-width:var(--vft-md-container-content-max-width);min-width:300px}
|
|
1
|
+
.fade-in-linear-enter-active,.fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.fade-in-linear-enter-from,.fade-in-linear-leave-to{opacity:0}.vft-fade-in-linear-enter-active,.vft-fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.vft-fade-in-linear-enter-from,.vft-fade-in-linear-leave-to{opacity:0}.vft-fade-in-enter-active,.vft-fade-in-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-fade-in-enter-from,.vft-fade-in-leave-active{opacity:0}.vft-zoom-in-center-enter-active,.vft-zoom-in-center-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-zoom-in-center-enter-from,.vft-zoom-in-center-leave-active{opacity:0;transform:scaleX(0)}.vft-zoom-in-top-enter-active,.vft-zoom-in-top-leave-active{opacity:1;transform:scaleY(1);transform-origin:center top;transition:var(--vft-transition-md-fade)}.vft-zoom-in-top-enter-active[data-popper-placement^=top],.vft-zoom-in-top-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-enter-from,.vft-zoom-in-top-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-top-fast-enter-active{opacity:1;transform:scaleY(1);transform-origin:center top;transition:var(--vft-transition-md-fade)}.vft-zoom-in-top-fast-enter-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-fast-leave-active{opacity:1;transform:scaleY(1);transform-origin:center top}.vft-zoom-in-top-fast-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-fast-enter-from,.vft-zoom-in-top-fast-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-bottom-enter-active,.vft-zoom-in-bottom-leave-active{opacity:1;transform:scaleY(1);transition:var(--vft-transition-md-fade);transform-origin:center bottom}.vft-zoom-in-bottom-enter-from,.vft-zoom-in-bottom-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-left-enter-active,.vft-zoom-in-left-leave-active{opacity:1;transform:scale(1,1);transition:var(--vft-transition-md-fade);transform-origin:top left}.vft-zoom-in-left-enter-from,.vft-zoom-in-left-leave-active{opacity:0;transform:scale(.45,.45)}.collapse-transition{transition:var(--vft-transition-duration) height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.vft-collapse-transition-enter-active,.vft-collapse-transition-leave-active{transition:var(--vft-transition-duration) max-height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.horizontal-collapse-transition{transition:var(--vft-transition-duration) width ease-in-out,var(--vft-transition-duration) padding-left ease-in-out,var(--vft-transition-duration) padding-right ease-in-out}.vft-list-enter-active,.vft-list-leave-active{transition:all 1s}.vft-list-enter-from,.vft-list-leave-to{opacity:0;transform:translateY(-30px)}.vft-list-leave-active{position:absolute!important}.vft-opacity-transition{transition:opacity var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}@keyframes vft-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}.pswp{--pswp-bg:#000;--pswp-placeholder-bg:#222;--pswp-root-z-index:100000;--pswp-preloader-color:rgba(79, 79, 79, 0.4);--pswp-preloader-secondary-color:rgba(255, 255, 255, 0.9);--pswp-icon-color:#fff;--pswp-icon-secondary-color:#4f4f4f;--pswp-icon-stroke-color:#4f4f4f;--pswp-icon-stroke-width:2px;--pswp-error-text-color:var(--pswp-icon-color)}.pswp{position:fixed;top:0;left:0;width:100%;height:100%;z-index:var(--pswp-root-z-index);display:none;touch-action:none;outline:0;opacity:.003;contain:layout style size;-webkit-tap-highlight-color:transparent}.pswp:focus{outline:0}.pswp *{box-sizing:border-box}.pswp img{max-width:none}.pswp--open{display:block}.pswp,.pswp__bg{transform:translateZ(0);will-change:opacity}.pswp__bg{opacity:.005;background:var(--pswp-bg)}.pswp,.pswp__scroll-wrap{overflow:hidden}.pswp__bg,.pswp__container,.pswp__content,.pswp__img,.pswp__item,.pswp__scroll-wrap,.pswp__zoom-wrap{position:absolute;top:0;left:0;width:100%;height:100%}.pswp__img,.pswp__zoom-wrap{width:auto;height:auto}.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img{cursor:zoom-in}.pswp--click-to-zoom.pswp--zoomed-in .pswp__img{cursor:move;cursor:grab}.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active{cursor:grabbing}.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,.pswp__img{cursor:zoom-out}.pswp__button,.pswp__container,.pswp__counter,.pswp__img{-webkit-user-select:none;-moz-user-select:none;user-select:none}.pswp__item{z-index:1;overflow:hidden}.pswp__hidden{display:none!important}.pswp__content{pointer-events:none}.pswp__content>*{pointer-events:auto}.pswp__error-msg-container{display:grid}.pswp__error-msg{margin:auto;font-size:1em;line-height:1;color:var(--pswp-error-text-color)}.pswp .pswp__hide-on-close{opacity:.005;will-change:opacity;transition:opacity var(--pswp-transition-duration) cubic-bezier(.4,0,.22,1);z-index:10;pointer-events:none}.pswp--ui-visible .pswp__hide-on-close{opacity:1;pointer-events:auto}.pswp__button{position:relative;display:block;width:50px;height:60px;padding:0;margin:0;overflow:hidden;cursor:pointer;background:0 0;border:0;box-shadow:none;opacity:.85;-webkit-appearance:none;-webkit-touch-callout:none}.pswp__button:active,.pswp__button:focus,.pswp__button:hover{transition:none;padding:0;background:0 0;border:0;box-shadow:none;opacity:1}.pswp__button:disabled{opacity:.3;cursor:auto}.pswp__icn{fill:var(--pswp-icon-color);color:var(--pswp-icon-secondary-color)}.pswp__icn{position:absolute;top:14px;left:9px;width:32px;height:32px;overflow:hidden;pointer-events:none}.pswp__icn-shadow{stroke:var(--pswp-icon-stroke-color);stroke-width:var(--pswp-icon-stroke-width);fill:none}.pswp__icn:focus{outline:0}.pswp__img--with-bg,div.pswp__img--placeholder{background:var(--pswp-placeholder-bg)}.pswp__top-bar{position:absolute;left:0;top:0;width:100%;height:60px;display:flex;flex-direction:row;justify-content:flex-end;z-index:10;pointer-events:none!important}.pswp__top-bar>*{pointer-events:auto;will-change:opacity}.pswp__button--close{margin-right:6px}.pswp__button--arrow{position:absolute;top:0;width:75px;height:100px;top:50%;margin-top:-50px}.pswp__button--arrow:disabled{display:none;cursor:default}.pswp__button--arrow .pswp__icn{top:50%;margin-top:-30px;width:60px;height:60px;background:0 0;border-radius:0}.pswp--one-slide .pswp__button--arrow{display:none}.pswp--touch .pswp__button--arrow{visibility:hidden}.pswp--has_mouse .pswp__button--arrow{visibility:visible}.pswp__button--arrow--prev{right:auto;left:0}.pswp__button--arrow--next{right:0}.pswp__button--arrow--next .pswp__icn{left:auto;right:14px;transform:scale(-1,1)}.pswp__button--zoom{display:none}.pswp--zoom-allowed .pswp__button--zoom{display:block}.pswp--zoomed-in .pswp__zoom-icn-bar-v{display:none}.pswp__preloader{position:relative;overflow:hidden;width:50px;height:60px;margin-right:auto}.pswp__preloader .pswp__icn{opacity:0;transition:opacity .2s linear;animation:pswp-clockwise .6s linear infinite}.pswp__preloader--active .pswp__icn{opacity:.85}@keyframes pswp-clockwise{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}.pswp__counter{height:30px;margin-top:15px;-webkit-margin-start:20px;margin-inline-start:20px;font-size:14px;line-height:30px;color:var(--pswp-icon-color);text-shadow:1px 1px 3px var(--pswp-icon-secondary-color);opacity:.85}.pswp--one-slide .pswp__counter{display:none}:root{--vft-md-container-primary-color:var(--vft-primary-color);--vft-md-container-content-max-width:800px;--vft-md-container-code-bg-color:#fff5f5;--vft-md-container-line-numbers-width:2.5rem;--vft-md-container-icon-copy:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' height='20' width='20' stroke='rgba(128,128,128,1)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2M9 5a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2'/%3E%3C/svg%3E");--vft-md-container-icon-copied:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' height='20' width='20' stroke='rgba(128,128,128,1)' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M9 5H7a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V7a2 2 0 0 0-2-2h-2M9 5a2 2 0 0 0 2 2h2a2 2 0 0 0 2-2M9 5a2 2 0 0 1 2-2h2a2 2 0 0 1 2 2m-6 9 2 2 4-4'/%3E%3C/svg%3E");--vft-md-container-info-title-color:#193c47;--vft-md-container-info-bg-color:#eef9fd;--vft-md-container-info-border-color:#4cb3d4;--vft-md-container-info-code-bg-color:rgba(76, 179, 212, 0.1);--vft-md-container-note-title-color:#474748;--vft-md-container-note-bg-color:#fdfdfe;--vft-md-container-note-border-color:#ccc;--vft-md-container-note-code-bg-color:rgba(212, 213, 216, 0.2);--vft-md-container-tip-title-color:#003100;--vft-md-container-tip-bg-color:#e6f6e6;--vft-md-container-tip-border-color:#009400;--vft-md-container-tip-code-bg-color:rgba(0, 148, 0, 0.15);--vft-md-container-warning-title-color:#4d3800;--vft-md-container-warning-bg-color:#fff8e6;--vft-md-container-warning-border-color:#e6a700;--vft-md-container-warning-code-bg-color:rgba(230, 167, 0, 0.15);--vft-md-container-danger-title-color:#4b1113;--vft-md-container-danger-bg-color:#ffebec;--vft-md-container-danger-border-color:#e13238;--vft-md-container-danger-code-bg-color:rgba(225, 50, 56, 0.15);--vft-md-container-detail-bg-color:#eee;--vft-md-container-detail-text-color:inherit;--vft-md-container-detail-code-bg-color:rgba(127, 127, 127, 0.15)}.vft-md-container{-webkit-font-smoothing:antialiased;padding:20px 30px;height:100%;overflow:auto;overflow:overlay}.vft-md-container a{color:var(--vft-md-container-primary-color);font-weight:500;overflow-wrap:break-word}.vft-md-container a:hover{text-decoration:underline}.vft-md-container a::after{content:"";display:inline-block;height:12px;width:12px;margin-left:5px;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBzdGFuZGFsb25lPSJubyI/PjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+PHN2ZyB0PSIxNjc0NTU1ODY1NjQyIiBjbGFzcz0iaWNvbiIgdmlld0JveD0iMCAwIDEwMjQgMTAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHAtaWQ9IjU2NjIiIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIiB3aWR0aD0iMjAwIiBoZWlnaHQ9IjIwMCI+PHBhdGggZD0iTTkxMiAxMDA4LjUxMkgxNS40ODhWMTEyaDQ0OC4yNTZ2OTZIMTExLjQ4OHY3MDQuNTEySDgxNlY1NjAuMjU2aDk2eiIgcC1pZD0iNTY2MyIgZmlsbD0iIzk5OTk5OSI+PC9wYXRoPjxwYXRoIGQ9Ik05MTguMjA4IDM3Ljg4OGw2Ny45MDQgNjcuOTA0TDU0NS45ODQgNTQ1LjkybC02Ny45MDQtNjcuODR6IiBwLWlkPSI1NjY0IiBmaWxsPSIjOTk5OTk5Ij48L3BhdGg+PHBhdGggZD0iTTEwMDcuMTY4IDMxMC42NTZoLTk2VjExMmgtMjA4VjE2aDMwNHoiIHAtaWQ9IjU2NjUiIGZpbGw9IiM5OTk5OTkiPjwvcGF0aD48L3N2Zz4=);background-size:100% 100%}.vft-md-container a.header-anchor::after,.vft-md-container a:has(>img)::after{content:"";display:none}.vft-md-container a img{display:inline-block}.vft-md-container a.header-anchor{float:left;margin-top:.125em;margin-left:-.87em;padding-right:.23em;font-size:.85em;opacity:0;transition:opacity .2s}.vft-md-container h1:hover .header-anchor,.vft-md-container h2:hover .header-anchor,.vft-md-container h3:hover .header-anchor,.vft-md-container h4:hover .header-anchor,.vft-md-container h5:hover .header-anchor,.vft-md-container h6:hover .header-anchor{opacity:1}.vft-md-container .toc-place-holder{position:sticky;top:50px;z-index:1;max-width:var(--vft-md-container-content-max-width)}.vft-md-container #toc{position:absolute;left:calc(100% + 1rem);min-width:10rem;max-width:15rem}@media print{.vft-md-container #toc{display:none!important}}.vft-md-container #toc a::after{content:"";display:none}.vft-md-container #toc .toc-header{margin-bottom:.75rem;-webkit-margin-start:.5rem;margin-inline-start:.5rem;font-weight:600;font-size:.875rem}.vft-md-container #toc .print-button{box-sizing:content-box;width:1rem;height:1rem;padding:.5rem;border-radius:.25em;color:inherit;font-size:1rem;transform:translateY(.25rem)}.vft-md-container #toc .toc-wrapper{position:relative;overflow-x:hidden;overflow-y:auto;max-height:70vh;margin:0 .5rem;-webkit-padding-start:8px;padding-inline-start:8px;text-overflow:ellipsis;white-space:nowrap}.vft-md-container #toc .toc-wrapper::-webkit-scrollbar{width:3px}.vft-md-container #toc .toc-list{position:relative;margin:0;padding:0}.vft-md-container #toc .toc-list::before{content:" ";position:absolute;top:0;bottom:0;left:-8px;inset-inline-start:-8px;z-index:-1;width:2px;background:var(--vft-info-color-light-7)}.vft-md-container #toc .toc-link{position:relative;display:block;overflow:hidden;max-width:100%;color:var(--vft-text-primary-color);line-height:inherit;text-overflow:ellipsis;white-space:nowrap}.vft-md-container #toc .toc-link.level2{-webkit-padding-start:0;padding-inline-start:0;font-size:14px}.vft-md-container #toc .toc-link.level3{-webkit-padding-start:8px;padding-inline-start:8px;font-size:13px}.vft-md-container #toc .toc-link.level4{-webkit-padding-start:16px;padding-inline-start:16px;font-size:12px}.vft-md-container #toc .toc-link.level5{-webkit-padding-start:24px;padding-inline-start:24px;font-size:11px}.vft-md-container #toc .toc-link.level6{-webkit-padding-start:32px;padding-inline-start:32px;font-size:10px}.vft-md-container #toc .toc-item{position:relative;box-sizing:border-box;height:1.7rem;padding:0 .5rem;list-style:none;line-height:1.7rem}.vft-md-container #toc .toc-item::before{content:" ";position:absolute;top:0;bottom:0;left:-8px;inset-inline-start:-8px;z-index:2;width:2px;background:0 0}.vft-md-container #toc .toc-item:hover>.toc-link{color:var(--vft-md-container-primary-color)}.vft-md-container #toc .toc-item.active>.toc-link{color:var(--vft-md-container-primary-color);font-weight:700}.vft-md-container #toc .toc-item.active::before{background:var(--vft-md-container-primary-color)}.vft-md-container code[class*=language-],.vft-md-container pre[class*=language-]{-moz-tab-size:2;-o-tab-size:2;tab-size:2}.vft-md-container code[class*=language-] ::-moz-selection,.vft-md-container code[class*=language-]::-moz-selection,.vft-md-container pre[class*=language-] ::-moz-selection,.vft-md-container pre[class*=language-]::-moz-selection{background:#e5e5e6;color:inherit}.vft-md-container code[class*=language-] ::selection,.vft-md-container code[class*=language-]::selection,.vft-md-container pre[class*=language-] ::selection,.vft-md-container pre[class*=language-]::selection{background:#e5e5e6;color:inherit}.vft-md-container .token.cdata,.vft-md-container .token.comment,.vft-md-container .token.prolog{color:#a0a1a7}.vft-md-container .token.doctype,.vft-md-container .token.entity,.vft-md-container .token.punctuation{color:#383a42}.vft-md-container .token.atrule,.vft-md-container .token.attr-name,.vft-md-container .token.boolean,.vft-md-container .token.class-name,.vft-md-container .token.constant,.vft-md-container .token.number{color:#b76b01}.vft-md-container .token.keyword{color:#a626a4}.vft-md-container .token.deleted,.vft-md-container .token.important,.vft-md-container .token.property,.vft-md-container .token.symbol,.vft-md-container .token.tag{color:#e45649}.vft-md-container .token.attr-value,.vft-md-container .token.attr-value>.token.punctuation,.vft-md-container .token.builtin,.vft-md-container .token.char,.vft-md-container .token.inserted,.vft-md-container .token.regex,.vft-md-container .token.selector,.vft-md-container .token.string{color:#50a14f}.vft-md-container .token.function,.vft-md-container .token.operator,.vft-md-container .token.variable{color:#4078f2}.vft-md-container .token.url{color:#0184bc}.vft-md-container .token.attr-value>.token.punctuation.attr-equals,.vft-md-container .token.special-attr>.token.attr-value>.token.value.css{color:#383a42}.vft-md-container .language-css .token.selector{color:#e45649}.vft-md-container .language-css .token.property{color:#383a42}.vft-md-container .language-css .token.function,.vft-md-container .language-css .token.url>.token.function{color:#0184bc}.vft-md-container .language-css .token.url>.token.string.url{color:#50a14f}.vft-md-container .language-css .token.atrule .token.rule,.vft-md-container .language-css .token.important{color:#a626a4}.vft-md-container .language-javascript .token.operator{color:#a626a4}.vft-md-container .language-javascript .token.template-string>.token.interpolation>.token.interpolation-punctuation.punctuation{color:#ca1243}.vft-md-container .language-json .token.operator{color:#383a42}.vft-md-container .language-json .token.null.keyword{color:#b76b01}.vft-md-container .language-markdown .token.url,.vft-md-container .language-markdown .token.url-reference.url>.token.string,.vft-md-container .language-markdown .token.url>.token.operator{color:#383a42}.vft-md-container .language-markdown .token.url>.token.content{color:#4078f2}.vft-md-container .language-markdown .token.url-reference.url,.vft-md-container .language-markdown .token.url>.token.url{color:#0184bc}.vft-md-container .language-markdown .token.blockquote.punctuation,.vft-md-container .language-markdown .token.hr.punctuation{color:#a0a1a7;font-style:italic}.vft-md-container .language-markdown .token.code-snippet{color:#50a14f}.vft-md-container .language-markdown .token.bold .token.content{color:#b76b01}.vft-md-container .language-markdown .token.italic .token.content{color:#a626a4}.vft-md-container .language-markdown .token.list.punctuation,.vft-md-container .language-markdown .token.strike .token.content,.vft-md-container .language-markdown .token.strike .token.punctuation,.vft-md-container .language-markdown .token.title.important>.token.punctuation{color:#e45649}.vft-md-container .token.bold{font-weight:700}.vft-md-container .token.comment,.vft-md-container .token.italic{font-style:italic}.vft-md-container .token.entity{cursor:help}.vft-md-container .token.namespace{opacity:.8}.vft-md-container table{width:100%;background-color:#fff;color:#000;border-radius:6px;border-collapse:collapse;overflow:hidden;margin:16px 0;box-shadow:var(--vft-box-shadow)}.vft-md-container table thead{background-color:var(--vft-primary-color-light-7);font-weight:400}.vft-md-container table thead th{border:0}.vft-md-container table tr{transition:all .2s}.vft-md-container table tbody tr:hover{background-color:var(--vft-primary-color-light-9)}.vft-md-container table td:first-child{font-weight:700}.vft-md-container table td:nth-child(1){font-weight:700}.vft-md-container table td:nth-child(4){word-break:break-all}.vft-md-container table td,.vft-md-container table th{padding:16px;line-height:22px;text-align:left;font-size:14px;border-bottom:var(--vft-border)}.vft-md-container table th{white-space:nowrap}.vft-md-container table em{font-style:normal;font-size:14px;color:var(--vft-danger-color)}.vft-md-container h2,.vft-md-container h3{border-bottom:1px solid rgba(0,0,0,.15)}.vft-md-container h1,.vft-md-container h2,.vft-md-container h3,.vft-md-container h4,.vft-md-container h5,.vft-md-container h6{font-weight:500;line-height:1.25;overflow-wrap:break-word}.vft-md-container h1:hover .header-anchor,.vft-md-container h2:hover .header-anchor,.vft-md-container h3:hover .header-anchor,.vft-md-container h4:hover .header-anchor,.vft-md-container h5:hover .header-anchor,.vft-md-container h6:hover .header-anchor{opacity:1}.vft-md-container h1{font-size:2rem}.vft-md-container h2{padding-bottom:.3rem;font-size:1.65rem}.vft-md-container h3{font-size:1.35rem}.vft-md-container h4{font-size:1.15rem}.vft-md-container h5{font-size:1.05rem}.vft-md-container h6{font-size:1rem}.vft-md-container h1,.vft-md-container h2,.vft-md-container h3,.vft-md-container h4,.vft-md-container h5,.vft-md-container h6{margin-bottom:.5rem;padding-top:30px;outline:0}.no-navbar .vft-md-container h1,.no-navbar .vft-md-container h2,.no-navbar .vft-md-container h3,.no-navbar .vft-md-container h4,.no-navbar .vft-md-container h5,.no-navbar .vft-md-container h6{margin-top:1.5rem;padding-top:0}.vft-md-container blockquote{margin:16px 0;padding:4px 0 4px 16px;-webkit-border-start:3px solid #ddd;border-inline-start:3px solid #ddd;border-color:#eee;color:#666;font-size:1rem;overflow-wrap:break-word}.vft-md-container blockquote p{margin:0}.vft-md-container code{padding:0 5px;color:#ff502c;background-color:var(--vft-md-container-code-bg-color);border-radius:3px;font-size:13.5px;word-break:break-word}.vft-md-container .line-numbers-mode pre{vertical-align:middle;padding-left:.5rem;margin-left:var(--vft-md-container-line-numbers-width)!important}.vft-md-container .line-numbers-mode::after{content:"";position:absolute;top:0;left:0;z-index:2;width:var(--vft-md-container-line-numbers-width);height:100%;border-right:var(--vft-border);border-radius:6px 0 0 6px;transition:border-color var(--vft-color-transition)}.vft-md-container .line-numbers-mode .line-numbers{position:absolute;top:0;left:0;width:var(--vft-md-container-line-numbers-width);padding:1rem 0;color:var(--vft-text-regular-color);line-height:1.375;counter-reset:line-number;text-align:center;transition:color var(--vft-color-transition);transform:translateY(1px)}@media print{.vft-md-container .line-numbers-mode .line-numbers{display:none}}.vft-md-container .line-numbers-mode .line-number{position:relative;z-index:4;display:flex;align-items:center;justify-content:center;height:1.375em;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-md-container .line-numbers-mode .line-number::before{content:counter(line-number);font-size:.85em;counter-increment:line-number}.vft-md-container .line-numbers-mode .highlight-lines{position:absolute;top:0;left:0;width:100%;padding-top:1rem;line-height:1.375;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-md-container .line-numbers-mode .highlight-line{position:relative;background:var(--vft-md-container-highlight-line-color);transition:background var(--vft-md-container-color-transition)}.vft-md-container .line-numbers-mode .highlight-line::before{content:" ";position:absolute;top:0;left:0;z-index:3;display:block;width:var(--vft-md-container-line-numbers-width);height:100%}.vft-md-container div[class*=language-]{position:relative;border-radius:6px;background:#ecf4fa;transition:background .3s ease}.vft-md-container div[class*=language-]::before{content:attr(data-ext);position:absolute;top:.8em;right:1em;z-index:3;color:#004050;font-size:.75rem;transition:color .3s ease}.vft-md-container div[class*=language-] pre,.vft-md-container div[class*=language-] pre[class*=language-]{position:relative;z-index:1;direction:ltr;background:0 0!important;font-size:16px;overflow:auto;padding:1rem;border-radius:6px;line-height:1.375;display:block;white-space:pre;margin:14px 0 14px 0}.vft-md-container div[class*=language-] pre code,.vft-md-container div[class*=language-] pre[class*=language-] code{background:0 0;color:#383a42;padding:0;text-align:left;overflow-wrap:unset;white-space:pre;word-spacing:normal;word-wrap:normal;word-break:normal;-webkit-hyphens:none;font-size:.85em;-webkit-font-smoothing:auto;hyphens:none;transition:color .3s ease}.vft-md-container div[class*=language-] pre{vertical-align:middle;margin-left:var(--vft-md-container-line-numbers-width);padding-left:.5rem}.vft-md-container div[class*=language-] button.copy{border:none;position:absolute;top:0;right:40px;z-index:3;display:block;justify-content:center;align-items:center;border-radius:4px;width:40px;height:40px;background-color:transparent;opacity:0;cursor:pointer;background-image:var(--vft-md-container-icon-copy);background-position:50%;background-size:20px;background-repeat:no-repeat;transition:opacity .4s}.vft-md-container div[class*=language-] button.copy.copied::before,.vft-md-container div[class*=language-] button.copy:hover.copied::before{position:relative;left:-45px;font-size:12px;font-weight:500;color:rgba(56,58,66,.67);background-color:transparent;white-space:nowrap;content:"Copied"}.vft-md-container div[class*=language-] button.copy.copied,.vft-md-container div[class*=language-] button.copy:hover.copied{background-color:#c3def3;background-image:var(--vft-md-container-icon-copied)}.vft-md-container div[class*=language-] button.copy:focus,.vft-md-container div[class*=language-]:hover>button.copy{opacity:1}.vft-md-container div[class*=language-] button.copy:hover{background-color:#c3def3}.vft-md-container .language-markdown .token.url,.vft-md-container .language-markdown .token.url-reference.url>.token.string,.vft-md-container .language-markdown .token.url>.token.operator{color:#383a42}.vft-md-container .language-markdown .token.url>.token.content{color:#4078f2}.vft-md-container .language-markdown .token.url-reference.url,.vft-md-container .language-markdown .token.url>.token.url{color:#0184bc}.vft-md-container .language-markdown .token.blockquote.punctuation,.vft-md-container .language-markdown .token.hr.punctuation{color:#a0a1a7;font-style:italic}.vft-md-container .language-markdown .token.code-snippet{color:#50a14f}.vft-md-container .language-markdown .token.bold .token.content{color:#b76b01}.vft-md-container .language-markdown .token.italic .token.content{color:#a626a4}.vft-md-container .language-markdown .token.list.punctuation,.vft-md-container .language-markdown .token.strike .token.content,.vft-md-container .language-markdown .token.strike .token.punctuation,.vft-md-container .language-markdown .token.title.important>.token.punctuation{color:#e45649}.vft-md-container .hint-container{position:relative;transition:background var(--vft-transition-color),border-color var(--vft-transition-color),color var(--vft-transition-color)}@media print{.vft-md-container .hint-container{page-break-inside:avoid}}.vft-md-container .hint-container .hint-container-title{position:relative;font-weight:600;line-height:1.25}.vft-md-container .hint-container.danger,.vft-md-container .hint-container.info,.vft-md-container .hint-container.note,.vft-md-container .hint-container.tip,.vft-md-container .hint-container.warning{margin:1rem 0;padding:.25rem 1rem;border-inline-start-width:.3rem;border-inline-start-style:solid;border-radius:.5rem;color:inherit}.vft-md-container .hint-container.danger .hint-container-title,.vft-md-container .hint-container.info .hint-container-title,.vft-md-container .hint-container.note .hint-container-title,.vft-md-container .hint-container.tip .hint-container-title,.vft-md-container .hint-container.warning .hint-container-title{-webkit-padding-start:1.75rem;padding-inline-start:1.75rem}@media print{.vft-md-container .hint-container.danger .hint-container-title,.vft-md-container .hint-container.info .hint-container-title,.vft-md-container .hint-container.note .hint-container-title,.vft-md-container .hint-container.tip .hint-container-title,.vft-md-container .hint-container.warning .hint-container-title{-webkit-padding-start:0;padding-inline-start:0}}.vft-md-container .hint-container.danger .hint-container-title::before,.vft-md-container .hint-container.info .hint-container-title::before,.vft-md-container .hint-container.note .hint-container-title::before,.vft-md-container .hint-container.tip .hint-container-title::before,.vft-md-container .hint-container.warning .hint-container-title::before{content:" ";position:absolute;top:calc(50% - .6125em);left:0;inset-inline-start:0;width:1.25em;height:1.25em;background-position:left;background-repeat:no-repeat}@media print{.vft-md-container .hint-container.danger .hint-container-title::before,.vft-md-container .hint-container.info .hint-container-title::before,.vft-md-container .hint-container.note .hint-container-title::before,.vft-md-container .hint-container.tip .hint-container-title::before,.vft-md-container .hint-container.warning .hint-container-title::before{display:none}}.vft-md-container .hint-container.danger p,.vft-md-container .hint-container.info p,.vft-md-container .hint-container.note p,.vft-md-container .hint-container.tip p,.vft-md-container .hint-container.warning p{line-height:1.5}.vft-md-container .hint-container.danger a,.vft-md-container .hint-container.info a,.vft-md-container .hint-container.note a,.vft-md-container .hint-container.tip a,.vft-md-container .hint-container.warning a{color:var(--vft-md-container-primary-color)}.vft-md-container .hint-container.info{border-color:var(--vft-md-container-info-border-color);background:var(--vft-md-container-info-bg-color)}.vft-md-container .hint-container.info>.hint-container-title{color:var(--vft-md-container-info-title-color)}.vft-md-container .hint-container.info>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-1-11v6h2v-6h-2zm0-4v2h2V7h-2z' fill='%234cb3d4'/%3E%3C/svg%3E")}.vft-md-container .hint-container.info code{background:var(--vft-md-container-info-code-bg-color)}.vft-md-container .hint-container.note{border-color:var(--vft-md-container-note-border-color);background:var(--vft-md-container-note-bg-color)}.vft-md-container .hint-container.note>.hint-container-title{color:var(--vft-md-container-note-title-color)}.vft-md-container .hint-container.note>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10zm-1-11v6h2v-6h-2zm0-4v2h2V7h-2z' fill='%23ccc'/%3E%3C/svg%3E")}.vft-md-container .hint-container.note code{background:var(--vft-md-container-note-code-bg-color)}.vft-md-container .hint-container.tip{border-color:var(--vft-md-container-tip-border-color);background:var(--vft-md-container-tip-bg-color)}.vft-md-container .hint-container.tip>.hint-container-title{color:var(--vft-md-container-tip-title-color)}.vft-md-container .hint-container.tip>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23009400' d='M7.941 18c-.297-1.273-1.637-2.314-2.187-3a8 8 0 1 1 12.49.002c-.55.685-1.888 1.726-2.185 2.998H7.94zM16 20v1a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-1h8zm-3-9.995V6l-4.5 6.005H11v4l4.5-6H13z'/%3E%3C/svg%3E")}.vft-md-container .hint-container.tip code{background:var(--vft-md-container-tip-code-bg-color)}.vft-md-container .hint-container.warning{border-color:var(--vft-md-container-warning-border-color);background:var(--vft-md-container-warning-bg-color)}.vft-md-container .hint-container.warning>.hint-container-title{color:var(--vft-md-container-warning-title-color)}.vft-md-container .hint-container.warning>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1024 1024'%3E%3Cpath d='M576.286 752.57v-95.425q0-7.031-4.771-11.802t-11.3-4.772h-96.43q-6.528 0-11.3 4.772t-4.77 11.802v95.424q0 7.031 4.77 11.803t11.3 4.77h96.43q6.528 0 11.3-4.77t4.77-11.803zm-1.005-187.836 9.04-230.524q0-6.027-5.022-9.543-6.529-5.524-12.053-5.524H456.754q-5.524 0-12.053 5.524-5.022 3.516-5.022 10.547l8.538 229.52q0 5.023 5.022 8.287t12.053 3.265h92.913q7.032 0 11.803-3.265t5.273-8.287zM568.25 95.65l385.714 707.142q17.578 31.641-1.004 63.282-8.538 14.564-23.354 23.102t-31.892 8.538H126.286q-17.076 0-31.892-8.538T71.04 866.074q-18.582-31.641-1.004-63.282L455.75 95.65q8.538-15.57 23.605-24.61T512 62t32.645 9.04 23.605 24.61z' fill='%23e6a700'/%3E%3C/svg%3E")}.vft-md-container .hint-container.warning code{background:var(--vft-md-container-warning-code-bg-color)}.vft-md-container .hint-container.danger{border-color:var(--vft-md-container-danger-border-color);background:var(--vft-md-container-danger-bg-color)}.vft-md-container .hint-container.danger>.hint-container-title{color:var(--vft-md-container-danger-title-color)}.vft-md-container .hint-container.danger>.hint-container-title::before{background-image:url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2c5.523 0 10 4.477 10 10v3.764a2 2 0 0 1-1.106 1.789L18 19v1a3 3 0 0 1-2.824 2.995L14.95 23a2.5 2.5 0 0 0 .044-.33L15 22.5V22a2 2 0 0 0-1.85-1.995L13 20h-2a2 2 0 0 0-1.995 1.85L9 22v.5c0 .171.017.339.05.5H9a3 3 0 0 1-3-3v-1l-2.894-1.447A2 2 0 0 1 2 15.763V12C2 6.477 6.477 2 12 2zm-4 9a2 2 0 1 0 0 4 2 2 0 0 0 0-4zm8 0a2 2 0 1 0 0 4 2 2 0 0 0 0-4z' fill='%23e13238'/%3E%3C/svg%3E")}.vft-md-container .hint-container.danger code{background:var(--vft-md-container-danger-code-bg-color)}.vft-md-container .hint-container.details{position:relative;display:block;margin:1.6em 0;padding:1.5rem;border-radius:.5rem;background:var(--vft-md-container-detail-bg-color);color:var(--vft-md-container-detail-text-color);transition:background var(--vft-transition-color),color var(--vft-transition-color)}@media print{.vft-md-container .hint-container.details{display:none}}.vft-md-container .hint-container.details h4{margin-top:0}.vft-md-container .hint-container.details figure:last-child,.vft-md-container .hint-container.details p:last-child{margin-bottom:0;padding-bottom:0}.vft-md-container .hint-container.details a{color:var(--vft-md-container-primary-color)}.vft-md-container .hint-container.details code{background:var(--vft-md-container-detail-code-bg-color)}.vft-md-container .hint-container.details summary{position:relative;margin:-1.5rem;padding-top:1.5rem;padding-bottom:1.5rem;-webkit-padding-start:4rem;padding-inline-start:4rem;-webkit-padding-end:1.5rem;padding-inline-end:1.5rem;list-style:none;cursor:pointer}.vft-md-container .hint-container.details summary::-webkit-details-marker,.vft-md-container .hint-container.details summary::marker{color:transparent;font-size:0}.vft-md-container .hint-container.details summary::after,.vft-md-container .hint-container.details summary::before{content:" ";position:absolute;top:calc(50% - .75rem);left:1.5rem;inset-inline-start:1.5rem;width:1.5rem;height:1.5rem}@media print{.vft-md-container .hint-container.details summary::after,.vft-md-container .hint-container.details summary::before{display:block}}.vft-md-container .hint-container.details summary::before{border-radius:50%;background:#ccc;transition:background var(--vft-transition-color),transform var(--vft-transition-color)}.vft-md-container .hint-container.details summary::after{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='rgba(0,0,0,0.5)' d='M7.41 15.41L12 10.83l4.59 4.58L18 14l-6-6-6 6z'/%3E%3C/svg%3E");line-height:normal;transition:transform var(--vft-transition-color);transform:rotate(90deg)}.vft-md-container .hint-container.details[open] summary{margin-bottom:.5em}.vft-md-container .hint-container.details[open] summary::after{transform:rotate(180deg)}.vft-md-container input[type=checkbox].task-list-item-checkbox{position:relative;width:0;-webkit-margin-end:1.5em;margin-inline-end:1.5em;cursor:pointer}.vft-md-container input[type=checkbox].task-list-item-checkbox::after{content:" ";position:absolute;top:0;display:inline-block;box-sizing:border-box;width:1em;height:1em;-webkit-padding-start:0;padding-inline-start:0;border:1px solid #ddd;border-radius:2px;background:#fff;text-align:center;visibility:visible;transition:background var(--t-color,.3s ease),border-color var(--t-color,.3s ease)}.vft-md-container input[type=checkbox].task-list-item-checkbox:checked::after{content:"";border-color:#3eaf7c;background:#3eaf7c}.vft-md-container input[type=checkbox].task-list-item-checkbox:checked::before{content:"";position:absolute;top:3px;left:.4em;inset-inline-start:.4em;z-index:1;width:4px;height:9px;border:solid #fff;border-width:0 .15em .15em 0;transform:rotate(45deg)}.vft-md-container input[type=checkbox i]{background-color:initial;cursor:default;margin:3px 3px 3px 4px;padding:initial;border:initial}.vft-md-container figure{position:relative;display:flex;flex-direction:column;width:auto;margin:1rem auto;text-align:center;transition:transform var(--t-transform,.3s ease)}.vft-md-container figure img{overflow:hidden;margin:0 auto;border-radius:8px}.vft-md-container figure img[tabindex]:focus,.vft-md-container figure img[tabindex]:hover{box-shadow:2px 2px 10px 0 var(--card-shadow)}.vft-md-container figure>a .external-link-icon{display:none}.vft-md-container figure figcaption{display:inline-block;margin:6px auto;font-size:.8rem}.vft-md-container__content h1{display:none}.vft-md-container h2,.vft-md-container h3{border-bottom:none}.vft-md-container h2{font-size:22px}.vft-md-container h3{font-size:18px}.vft-md-container .demo-container{border:var(--vft-border)}.vft-md-container .demo-container .demo{padding:20px 20px 30px}.vft-md-container .demo-container .demo .action{position:relative}.vft-md-container .demo-container .demo .action .expand{cursor:pointer;position:absolute;right:-5px;bottom:-28px;height:40px;width:40px;border-radius:4px;display:flex;align-items:center;justify-content:center}.vft-md-container .demo-container .demo .action .expand:hover{background-color:#c3def3}.vft-md-container .demo-container div.language-vue{transition:opacity .3s ease;height:0;visibility:hidden}.vft-md-container .demo-container div.language-vue pre{margin:0 0 0 var(--vft-md-container-line-numbers-width)!important}.vft-md-container .demo-container div.language-vue .copy{visibility:visible;opacity:1;top:-42px;right:60px}.vft-md-container p{font-size:16px;line-height:22px;margin:16px 0}.vft-md-container hr{transition:border-top-color .3s ease;border:0;border-top:1px solid #eaecef;margin:8px 0}.vft-md-container .header-anchor{text-decoration:none;transition:opacity .3s;opacity:0}.vft-md-container em{font-size:12px;line-height:20px}.vft-md-container pre{overflow:auto;margin:13px 0;padding:16px;border-radius:6px;line-height:1.375}.vft-md-container summary{cursor:pointer}.vft-md-container::-webkit-scrollbar{z-index:11;width:6px}.vft-md-container::-webkit-scrollbar:horizontal{height:6px}.vft-md-container::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:var(--vft-md-container-primary-color);border:0 solid transparent}.vft-md-container::-webkit-scrollbar-thumb:hover{background:var(--vft-md-container-primary-color)}.vft-md-container::-webkit-scrollbar-corner{background:0 0}.vft-md-container::-webkit-scrollbar-track{background:0 0}.vft-md-container::-webkit-scrollbar-track-piece{background:0 0;width:6px}.vft-md-container__header{max-width:var(--vft-md-container-content-max-width);min-width:300px}.vft-md-container__title{padding-top:10px!important}.vft-md-container__header .info-container{display:flex;align-items:center;justify-content:space-between;margin:20px 0}.vft-md-container__header .info-container .infos{display:flex;justify-content:flex-start;font-size:12px;color:var(--vft-info-color-light)}.vft-md-container__header .info-container .infos .vft-icon{color:inherit;font-size:inherit!important}.vft-md-container .reading{display:flex;align-items:center;font-size:14px}.vft-md-container__content{max-width:var(--vft-md-container-content-max-width);min-width:300px}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.vft-md-vue-playground{overflow:hidden;margin-top:1rem;margin-bottom:1rem;border:1px solid var(--c-border,#ddd);border-radius:6px}.vft-md-vue-playground .title-wrapper{display:flex;flex-flow:row wrap;align-items:center;padding:8px 10px;border-bottom:1px solid var(--c-border,#ddd);background:var(--playground-header-bg-color,#eee);font-weight:500;transition:background var(--t-color,.3s ease) border-color var(--t-color,.3s ease)}.vft-md-vue-playground .title{flex:1;overflow:hidden;font-size:1.25rem;text-overflow:ellipsis;white-space:nowrap}.vft-md-vue-playground .actions{display:flex;align-items:center}.vft-md-vue-playground .icon{width:1.5rem;height:1.5rem;fill:#777}.vft-md-vue-playground .action{display:inline-flex;-webkit-margin-start:10px;margin-inline-start:10px}.vft-md-vue-playground .preview-loading-wrapper{display:flex;align-items:center;justify-content:center;background:var(--grey15);transition:background var(--t-color,.3s ease)}.vft-md-vue-playground .preview-loading-wrapper .loading-icon{width:4em;height:4em;margin:2.5em auto;color:var(--c-brand,#3eaf7c);transition:color var(--t-color,.3s ease)}.vft-md-vue-playground .source-container{display:none}.vft-md-vue-playground .source-container.show{display:block}.vft-md-vue-playground .repl-container{position:relative;overflow:hidden;height:auto;background:var(--c-bg,#fff);transition:background var(--t-color,.3s ease)}.vft-md-vue-playground .repl-container iframe{display:block;width:100%;height:100%;border:none}.vft-md-vue-playground .repl-container .vue-repl .split-pane .left .editor-container{height:100%!important}.vft-md-vue-playground .repl-container.show-code .vue-repl .split-pane .left{display:block!important}.vft-md-vue-playground .repl-container.hide-code .vue-repl .split-pane .left{display:none!important}.vft-md-vue-playground pre,.vft-md-vue-playground pre[class*=language-]{margin:0;padding:0;border-radius:0}.vft-md-vue-playground .split-pane[data-v-3102671e]{display:flex;height:100%;position:relative}.vft-md-vue-playground .split-pane.dragging[data-v-3102671e]{cursor:ew-resize}.vft-md-vue-playground .dragging .left[data-v-3102671e],.vft-md-vue-playground .dragging .right[data-v-3102671e]{pointer-events:none}.vft-md-vue-playground .left[data-v-3102671e],.vft-md-vue-playground .right[data-v-3102671e]{position:relative;height:100%}.vft-md-vue-playground .left[data-v-3102671e]{border-right:1px solid var(--border)}.vft-md-vue-playground .dragger[data-v-3102671e]{position:absolute;z-index:3;top:0;bottom:0;right:-5px;width:10px;cursor:ew-resize}.vft-md-vue-playground .toggler[data-v-3102671e]{display:none;z-index:3;font-family:var(--font-code);color:var(--text-light);position:absolute;left:50%;bottom:20px;background-color:var(--bg);padding:8px 12px;border-radius:8px;transform:translateX(-50%);box-shadow:0 3px 8px rgba(0,0,0,.25)}.vft-md-vue-playground .dark .toggler[data-v-3102671e]{background-color:var(--bg)}@media (min-width:721px){.vft-md-vue-playground .split-pane.vertical[data-v-3102671e]{display:block}.vft-md-vue-playground .split-pane.vertical.dragging[data-v-3102671e]{cursor:ns-resize}.vft-md-vue-playground .vertical .dragger[data-v-3102671e]{top:auto;height:10px;width:100%;left:0;right:0;bottom:-5px;cursor:ns-resize}.vft-md-vue-playground .vertical .left[data-v-3102671e],.vft-md-vue-playground .vertical .right[data-v-3102671e]{width:100%}.vft-md-vue-playground .vertical .left[data-v-3102671e]{border-right:none;border-bottom:1px solid var(--border)}}@media (max-width:720px){.vft-md-vue-playground .left[data-v-3102671e],.vft-md-vue-playground .right[data-v-3102671e]{width:100%!important;height:100%!important}.vft-md-vue-playground .dragger[data-v-3102671e]{display:none}.vft-md-vue-playground .split-pane .toggler[data-v-3102671e]{display:block}.vft-md-vue-playground .split-pane .right[data-v-3102671e]{display:none}.vft-md-vue-playground .split-pane.show-output .right[data-v-3102671e]{display:block}.vft-md-vue-playground .split-pane.show-output .left[data-v-3102671e]{display:none}}.vft-md-vue-playground .file-selector[data-v-cbb0a4e5]{display:flex;box-sizing:border-box;border-bottom:1px solid var(--border);background-color:var(--bg);overflow-y:hidden;overflow-x:auto;white-space:nowrap;position:relative;height:var(--header-height)}.vft-md-vue-playground .file-selector[data-v-cbb0a4e5]::-webkit-scrollbar{height:1px}.vft-md-vue-playground .file-selector[data-v-cbb0a4e5]::-webkit-scrollbar-track{background-color:var(--border)}.vft-md-vue-playground .file-selector[data-v-cbb0a4e5]::-webkit-scrollbar-thumb{background-color:var(--color-branding)}.vft-md-vue-playground .file-selector.has-import-map .add[data-v-cbb0a4e5]{margin-right:10px}.vft-md-vue-playground .file[data-v-cbb0a4e5]{display:inline-block;font-size:13px;font-family:var(--font-code);cursor:pointer;color:var(--text-light);box-sizing:border-box}.vft-md-vue-playground .file.active[data-v-cbb0a4e5]{color:var(--color-branding);border-bottom:3px solid var(--color-branding);cursor:text}.vft-md-vue-playground .file span[data-v-cbb0a4e5]{display:inline-block;padding:8px 10px 6px;line-height:20px}.vft-md-vue-playground .file.pending input[data-v-cbb0a4e5]{width:90px;height:30px;line-height:30px;outline:0;border:1px solid var(--border);border-radius:4px;padding:0 0 0 10px;margin-top:2px;margin-left:6px;font-family:var(--font-code);font-size:12px}.vft-md-vue-playground .file .remove[data-v-cbb0a4e5]{display:inline-block;vertical-align:middle;line-height:12px;cursor:pointer;padding-left:0}.vft-md-vue-playground .add[data-v-cbb0a4e5]{font-size:18px;font-family:var(--font-code);color:#999;vertical-align:middle;margin-left:6px;position:relative;top:-1px}.vft-md-vue-playground .add[data-v-cbb0a4e5]:hover{color:var(--color-branding)}.vft-md-vue-playground .icon[data-v-cbb0a4e5]{margin-top:-1px}.vft-md-vue-playground .import-map-wrapper[data-v-cbb0a4e5]{position:sticky;margin-left:auto;top:0;right:0;padding-left:30px;background-color:var(--bg);background:linear-gradient(90deg,rgba(255,255,255,0) 0,#fff 25%)}.vft-md-vue-playground .dark .import-map-wrapper[data-v-cbb0a4e5]{background:linear-gradient(90deg,rgba(26,26,26,0) 0,#1a1a1a 25%)}.vft-md-vue-playground .CodeMirror{color:var(--symbols);--symbols:#777;--base:#545281;--comment:hsl(210, 25%, 60%);--keyword:#af4ab1;--variable:var(--base);--function:#c25205;--string:#2ba46d;--number:#c25205;--tags:#d00;--brackets:var(--comment);--qualifier:#ff6032;--important:var(--string);--attribute:#9c3eda;--property:#6182b8;--selected-bg:#d7d4f0;--selected-bg-non-focus:#d9d9d9;--cursor:#000;direction:ltr;font-family:var(--font-code);height:auto}.vft-md-vue-playground .dark .CodeMirror{color:var(--symbols);--symbols:#89ddff;--base:#a6accd;--comment:#6d6d6d;--keyword:#89ddff;--string:#c3e88d;--variable:#82aaff;--number:#f78c6c;--tags:#f07178;--brackets:var(--symbols);--property:#f07178;--attribute:#c792ea;--cursor:#fff;--selected-bg:rgba(255, 255, 255, 0.1);--selected-bg-non-focus:rgba(255, 255, 255, 0.15)}.vft-md-vue-playground .CodeMirror-lines{padding:4px 0}.vft-md-vue-playground .CodeMirror pre{padding:0 4px}.vft-md-vue-playground .CodeMirror-gutter-filler,.vft-md-vue-playground .CodeMirror-scrollbar-filler{background-color:#fff}.vft-md-vue-playground .CodeMirror-gutters{border-right:1px solid var(--border);background-color:transparent;white-space:nowrap}.vft-md-vue-playground .CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:var(--comment);white-space:nowrap;opacity:.6}.vft-md-vue-playground .CodeMirror-guttermarker{color:#000}.vft-md-vue-playground .CodeMirror-guttermarker-subtle{color:#999}.vft-md-vue-playground .CodeMirror-foldmarker{color:#414141;text-shadow:#f96 1px 1px 2px,#f96 -1px -1px 2px,#f96 1px -1px 2px,#f96 -1px 1px 2px;font-family:arial;line-height:.3;cursor:pointer}.vft-md-vue-playground .CodeMirror-foldgutter{width:.7em}.vft-md-vue-playground .CodeMirror-foldgutter-folded,.vft-md-vue-playground .CodeMirror-foldgutter-open{cursor:pointer}.vft-md-vue-playground .CodeMirror-foldgutter-folded:after,.vft-md-vue-playground .CodeMirror-foldgutter-open:after{content:">";font-size:.8em;opacity:.8;transition:transform .2s;display:inline-block;top:-.1em;position:relative;transform:rotate(90deg)}.vft-md-vue-playground .CodeMirror-foldgutter-folded:after{transform:none}.vft-md-vue-playground .CodeMirror-cursor{border-left:1px solid var(--cursor);border-right:none;width:0}.vft-md-vue-playground .CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.vft-md-vue-playground .cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}.vft-md-vue-playground .cm-fat-cursor div.CodeMirror-cursors{z-index:1}.vft-md-vue-playground .cm-fat-cursor-mark{background-color:rgba(20,255,20,.5);animation:blink 1.06s steps(1) infinite}.vft-md-vue-playground .cm-animate-fat-cursor{width:auto;border:0;animation:blink 1.06s steps(1) infinite;background-color:#7e7}@keyframes blink{50%{background-color:transparent}}.vft-md-vue-playground .cm-tab{display:inline-block;text-decoration:inherit}.vft-md-vue-playground .CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:-20px;overflow:hidden}.vft-md-vue-playground .CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.vft-md-vue-playground .cm-s-default.CodeMirror{background-color:transparent}.vft-md-vue-playground .cm-s-default .cm-header{color:#00f}.vft-md-vue-playground .cm-s-default .cm-quote{color:#090}.vft-md-vue-playground .cm-negative{color:#d44}.vft-md-vue-playground .cm-positive{color:#292}.vft-md-vue-playground .cm-header,.vft-md-vue-playground .cm-strong{font-weight:700}.vft-md-vue-playground .cm-em{font-style:italic}.vft-md-vue-playground .cm-link{text-decoration:underline}.vft-md-vue-playground .cm-strikethrough{text-decoration:line-through}.vft-md-vue-playground .cm-s-default .cm-atom,.vft-md-vue-playground .cm-s-default .cm-def,.vft-md-vue-playground .cm-s-default .cm-punctuation,.vft-md-vue-playground .cm-s-default .cm-variable-2,.vft-md-vue-playground .cm-s-default .cm-variable-3{color:var(--base)}.vft-md-vue-playground .cm-s-default .cm-property{color:var(--property)}.vft-md-vue-playground .cm-s-default .cm-comment,.vft-md-vue-playground .cm-s-default .cm-hr{color:var(--comment)}.vft-md-vue-playground .cm-s-default .cm-attribute{color:var(--attribute)}.vft-md-vue-playground .cm-s-default .cm-keyword{color:var(--keyword)}.vft-md-vue-playground .cm-s-default .cm-variable{color:var(--variable)}.vft-md-vue-playground .cm-s-default .cm-tag{color:var(--tags)}.vft-md-vue-playground .cm-s-default .cm-bracket{color:var(--brackets)}.vft-md-vue-playground .cm-s-default .cm-number{color:var(--number)}.vft-md-vue-playground .cm-s-default .cm-string,.vft-md-vue-playground .cm-s-default .cm-string-2{color:var(--string)}.vft-md-vue-playground .cm-s-default .cm-type{color:#085}.vft-md-vue-playground .cm-s-default .cm-meta{color:#555}.vft-md-vue-playground .cm-s-default .cm-qualifier{color:var(--qualifier)}.vft-md-vue-playground .cm-s-default .cm-builtin{color:#7539ff}.vft-md-vue-playground .cm-s-default .cm-link{color:var(--flash)}.vft-md-vue-playground .cm-s-default .cm-error{color:#ff008c}.vft-md-vue-playground .cm-invalidchar{color:#ff008c}.vft-md-vue-playground .CodeMirror-composing{border-bottom:2px solid}.vft-md-vue-playground div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}.vft-md-vue-playground div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}.vft-md-vue-playground .CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.vft-md-vue-playground .CodeMirror-activeline-background{background:#e8f2ff}.vft-md-vue-playground .CodeMirror{position:relative;overflow:hidden;background:#fff}.vft-md-vue-playground .CodeMirror-scroll{overflow:scroll!important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;height:100%;outline:0;position:relative}.vft-md-vue-playground .CodeMirror-sizer{position:relative;border-right:30px solid transparent}.vft-md-vue-playground .CodeMirror-gutter-filler,.vft-md-vue-playground .CodeMirror-hscrollbar,.vft-md-vue-playground .CodeMirror-scrollbar-filler,.vft-md-vue-playground .CodeMirror-vscrollbar{position:absolute;z-index:6;display:none}.vft-md-vue-playground .CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.vft-md-vue-playground .CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.vft-md-vue-playground .CodeMirror-scrollbar-filler{right:0;bottom:0}.vft-md-vue-playground .CodeMirror-gutter-filler{left:0;bottom:0}.vft-md-vue-playground .CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.vft-md-vue-playground .CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-30px}.vft-md-vue-playground .CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:0 0!important;border:none!important}.vft-md-vue-playground .CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.vft-md-vue-playground .CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.vft-md-vue-playground .CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.vft-md-vue-playground .CodeMirror-gutter-wrapper ::selection{background-color:transparent}.vft-md-vue-playground .CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.vft-md-vue-playground .CodeMirror-lines{cursor:text;min-height:1px}.vft-md-vue-playground .CodeMirror pre{border-radius:0;border-width:0;background:0 0;font-family:inherit;font-size:inherit;margin:0;white-space:pre;word-wrap:normal;line-height:inherit;color:inherit;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;font-variant-ligatures:contextual}.vft-md-vue-playground .CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.vft-md-vue-playground .CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.vft-md-vue-playground .CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}.vft-md-vue-playground .CodeMirror-rtl pre{direction:rtl}.vft-md-vue-playground .CodeMirror-code{outline:0}.vft-md-vue-playground .CodeMirror-gutter,.vft-md-vue-playground .CodeMirror-gutters,.vft-md-vue-playground .CodeMirror-linenumber,.vft-md-vue-playground .CodeMirror-scroll,.vft-md-vue-playground .CodeMirror-sizer{box-sizing:content-box}.vft-md-vue-playground .CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.vft-md-vue-playground .CodeMirror-cursor{position:absolute;pointer-events:none}.vft-md-vue-playground .CodeMirror-measure pre{position:static}.vft-md-vue-playground div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}.vft-md-vue-playground div.CodeMirror-dragcursors{visibility:visible}.vft-md-vue-playground .CodeMirror-focused div.CodeMirror-cursors{visibility:visible}.vft-md-vue-playground .CodeMirror-selected{background:var(--selected-bg-non-focus)}.vft-md-vue-playground .CodeMirror-focused .CodeMirror-selected{background:var(--selected-bg)}.vft-md-vue-playground .CodeMirror-crosshair{cursor:crosshair}.vft-md-vue-playground .CodeMirror-line::-moz-selection,.vft-md-vue-playground .CodeMirror-line>span::-moz-selection,.vft-md-vue-playground .CodeMirror-line>span>span::-moz-selection{background:var(--selected-bg)}.vft-md-vue-playground .CodeMirror-line::selection,.vft-md-vue-playground .CodeMirror-line>span::selection,.vft-md-vue-playground .CodeMirror-line>span>span::selection{background:var(--selected-bg)}.vft-md-vue-playground .CodeMirror-line::-moz-selection,.vft-md-vue-playground .CodeMirror-line>span::-moz-selection,.vft-md-vue-playground .CodeMirror-line>span>span::-moz-selection{background:var(--selected-bg)}.vft-md-vue-playground .cm-searching{background-color:#ffa;background-color:rgba(255,255,0,.4)}.vft-md-vue-playground .cm-force-border{padding-right:.1px}@media print{.vft-md-vue-playground .CodeMirror div.CodeMirror-cursors{visibility:hidden}}.vft-md-vue-playground .cm-tab-wrap-hack:after{content:""}.vft-md-vue-playground span.CodeMirror-selectedtext{background:0 0}.vft-md-vue-playground .editor{position:relative;height:100%;width:100%;overflow:hidden}.vft-md-vue-playground .CodeMirror{font-family:var(--font-code);line-height:1.5;height:100%}.vft-md-vue-playground .msg[data-v-92411507]{position:absolute;bottom:0;left:8px;right:8px;z-index:10;border:2px solid transparent;border-radius:6px;font-family:var(--font-code);white-space:pre-wrap;margin-bottom:8px;max-height:calc(100% - 300px);min-height:40px;display:flex;align-items:stretch}.vft-md-vue-playground pre[data-v-92411507]{margin:0;padding:12px 20px;overflow:auto}.vft-md-vue-playground .dismiss[data-v-92411507]{position:absolute;top:2px;right:2px;width:18px;height:18px;line-height:18px;border-radius:9px;text-align:center;display:block;font-size:9px;padding:0;background-color:red;color:#fff}@media (max-width:720px){.vft-md-vue-playground .dismiss[data-v-92411507]{top:-9px;right:-9px}.vft-md-vue-playground .msg[data-v-92411507]{bottom:50px}}.vft-md-vue-playground .msg.err[data-v-92411507]{color:red;border-color:red;background-color:#ffd7d7}.vft-md-vue-playground .msg.warn[data-v-92411507]{--color:rgb(105, 95, 27);color:var(--color);border-color:var(--color);background-color:#f7f0cd}.vft-md-vue-playground .msg.warn .dismiss[data-v-92411507]{background-color:var(--color)}.vft-md-vue-playground .fade-enter-active[data-v-92411507],.vft-md-vue-playground .fade-leave-active[data-v-92411507]{transition:all .15s ease-out}.vft-md-vue-playground .fade-enter-from[data-v-92411507],.vft-md-vue-playground .fade-leave-to[data-v-92411507]{opacity:0;transform:translate(0,10px)}.vft-md-vue-playground .editor-container[data-v-0384e940]{height:calc(100% - var(--header-height));overflow:hidden;position:relative}.vft-md-vue-playground .iframe-container[data-v-21e1de24],.vft-md-vue-playground .iframe-container[data-v-21e1de24] iframe{width:100%;height:100%;border:none;background-color:#fff}.vft-md-vue-playground .output-container[data-v-5d2df9cb]{height:calc(100% - var(--header-height));overflow:hidden;position:relative}.vft-md-vue-playground .tab-buttons[data-v-5d2df9cb]{box-sizing:border-box;border-bottom:1px solid var(--border);background-color:var(--bg);height:var(--header-height);overflow:hidden}.vft-md-vue-playground .tab-buttons button[data-v-5d2df9cb]{padding:0;box-sizing:border-box}.vft-md-vue-playground .tab-buttons span[data-v-5d2df9cb]{font-size:13px;font-family:var(--font-code);text-transform:uppercase;color:var(--text-light);display:inline-block;padding:8px 16px 6px;line-height:20px}.vft-md-vue-playground button.active[data-v-5d2df9cb]{color:var(--color-branding-dark);border-bottom:3px solid var(--color-branding-dark)}.vft-md-vue-playground .vue-repl{--bg:#fff;--bg-soft:#f8f8f8;--border:#ddd;--text-light:#888;--font-code:Menlo,Monaco,Consolas,"Courier New",monospace;--color-branding:#42b883;--color-branding-dark:#416f9c;--header-height:38px;font-size:13px;font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen,Ubuntu,Cantarell,"Open Sans","Helvetica Neue",sans-serif;margin:0;overflow:hidden;background-color:var(--bg-soft)}.vft-md-vue-playground .dark .vue-repl{--bg:#1a1a1a;--bg-soft:#242424;--border:#383838;--text-light:#aaa;--color-branding:#42d392;--color-branding-dark:#89ddff}.vft-md-vue-playground button{border:none;outline:0;cursor:pointer;margin:0;background-color:transparent}
|
|
1
|
+
.vft-md-vue-playground{overflow:hidden;margin-top:1rem;margin-bottom:1rem;border:1px solid var(--c-border,#ddd);border-radius:6px}.vft-md-vue-playground .title-wrapper{display:flex;flex-flow:row wrap;align-items:center;padding:8px 10px;border-bottom:1px solid var(--c-border,#ddd);background:var(--playground-header-bg-color,#eee);font-weight:500;transition:background var(--t-color,.3s ease) border-color var(--t-color,.3s ease)}.vft-md-vue-playground .title{flex:1;overflow:hidden;font-size:1.25rem;text-overflow:ellipsis;white-space:nowrap}.vft-md-vue-playground .actions{display:flex;align-items:center}.vft-md-vue-playground .icon{width:1.5rem;height:1.5rem;fill:#777}.vft-md-vue-playground .action{display:inline-flex;-webkit-margin-start:10px;margin-inline-start:10px}.vft-md-vue-playground .preview-loading-wrapper{display:flex;align-items:center;justify-content:center;background:var(--grey15);transition:background var(--t-color,.3s ease)}.vft-md-vue-playground .preview-loading-wrapper .loading-icon{width:4em;height:4em;margin:2.5em auto;color:var(--c-brand,#3eaf7c);transition:color var(--t-color,.3s ease)}.vft-md-vue-playground .source-container{display:none}.vft-md-vue-playground .source-container.show{display:block}.vft-md-vue-playground .repl-container{position:relative;overflow:hidden;height:auto;background:var(--c-bg,#fff);transition:background var(--t-color,.3s ease)}.vft-md-vue-playground .repl-container iframe{display:block;width:100%;height:100%;border:none}.vft-md-vue-playground .repl-container .vue-repl .split-pane .left .editor-container{height:100%!important}.vft-md-vue-playground .repl-container.show-code .vue-repl .split-pane .left{display:block!important}.vft-md-vue-playground .repl-container.hide-code .vue-repl .split-pane .left{display:none!important}.vft-md-vue-playground pre,.vft-md-vue-playground pre[class*=language-]{margin:0;padding:0;border-radius:0}.vft-md-vue-playground .split-pane[data-v-3102671e]{display:flex;height:100%;position:relative}.vft-md-vue-playground .split-pane.dragging[data-v-3102671e]{cursor:ew-resize}.vft-md-vue-playground .dragging .left[data-v-3102671e],.vft-md-vue-playground .dragging .right[data-v-3102671e]{pointer-events:none}.vft-md-vue-playground .left[data-v-3102671e],.vft-md-vue-playground .right[data-v-3102671e]{position:relative;height:100%}.vft-md-vue-playground .left[data-v-3102671e]{border-right:1px solid var(--border)}.vft-md-vue-playground .dragger[data-v-3102671e]{position:absolute;z-index:3;top:0;bottom:0;right:-5px;width:10px;cursor:ew-resize}.vft-md-vue-playground .toggler[data-v-3102671e]{display:none;z-index:3;color:var(--text-light);position:absolute;left:50%;bottom:20px;background-color:var(--bg);padding:8px 12px;border-radius:8px;transform:translateX(-50%);box-shadow:0 3px 8px rgba(0,0,0,.25)}.vft-md-vue-playground .dark .toggler[data-v-3102671e]{background-color:var(--bg)}@media (min-width:721px){.vft-md-vue-playground .split-pane.vertical[data-v-3102671e]{display:block}.vft-md-vue-playground .split-pane.vertical.dragging[data-v-3102671e]{cursor:ns-resize}.vft-md-vue-playground .vertical .dragger[data-v-3102671e]{top:auto;height:10px;width:100%;left:0;right:0;bottom:-5px;cursor:ns-resize}.vft-md-vue-playground .vertical .left[data-v-3102671e],.vft-md-vue-playground .vertical .right[data-v-3102671e]{width:100%}.vft-md-vue-playground .vertical .left[data-v-3102671e]{border-right:none;border-bottom:1px solid var(--border)}}@media (max-width:720px){.vft-md-vue-playground .left[data-v-3102671e],.vft-md-vue-playground .right[data-v-3102671e]{width:100%!important;height:100%!important}.vft-md-vue-playground .dragger[data-v-3102671e]{display:none}.vft-md-vue-playground .split-pane .toggler[data-v-3102671e]{display:block}.vft-md-vue-playground .split-pane .right[data-v-3102671e]{display:none}.vft-md-vue-playground .split-pane.show-output .right[data-v-3102671e]{display:block}.vft-md-vue-playground .split-pane.show-output .left[data-v-3102671e]{display:none}}.vft-md-vue-playground .file-selector[data-v-cbb0a4e5]{display:flex;box-sizing:border-box;border-bottom:1px solid var(--border);background-color:var(--bg);overflow-y:hidden;overflow-x:auto;white-space:nowrap;position:relative;height:var(--header-height)}.vft-md-vue-playground .file-selector[data-v-cbb0a4e5]::-webkit-scrollbar{height:1px}.vft-md-vue-playground .file-selector[data-v-cbb0a4e5]::-webkit-scrollbar-track{background-color:var(--border)}.vft-md-vue-playground .file-selector[data-v-cbb0a4e5]::-webkit-scrollbar-thumb{background-color:var(--color-branding)}.vft-md-vue-playground .file-selector.has-import-map .add[data-v-cbb0a4e5]{margin-right:10px}.vft-md-vue-playground .file[data-v-cbb0a4e5]{display:inline-block;font-size:13px;cursor:pointer;color:var(--text-light);box-sizing:border-box}.vft-md-vue-playground .file.active[data-v-cbb0a4e5]{color:var(--color-branding);border-bottom:3px solid var(--color-branding);cursor:text}.vft-md-vue-playground .file span[data-v-cbb0a4e5]{display:inline-block;padding:8px 10px 6px;line-height:20px}.vft-md-vue-playground .file.pending input[data-v-cbb0a4e5]{width:90px;height:30px;line-height:30px;outline:0;border:1px solid var(--border);border-radius:4px;padding:0 0 0 10px;margin-top:2px;margin-left:6px;font-size:12px}.vft-md-vue-playground .file .remove[data-v-cbb0a4e5]{display:inline-block;vertical-align:middle;line-height:12px;cursor:pointer;padding-left:0}.vft-md-vue-playground .add[data-v-cbb0a4e5]{font-size:18px;color:#999;vertical-align:middle;margin-left:6px;position:relative;top:-1px}.vft-md-vue-playground .add[data-v-cbb0a4e5]:hover{color:var(--color-branding)}.vft-md-vue-playground .icon[data-v-cbb0a4e5]{margin-top:-1px}.vft-md-vue-playground .import-map-wrapper[data-v-cbb0a4e5]{position:sticky;margin-left:auto;top:0;right:0;padding-left:30px;background-color:var(--bg);background:linear-gradient(90deg,rgba(255,255,255,0) 0,#fff 25%)}.vft-md-vue-playground .dark .import-map-wrapper[data-v-cbb0a4e5]{background:linear-gradient(90deg,rgba(26,26,26,0) 0,#1a1a1a 25%)}.vft-md-vue-playground .CodeMirror{color:var(--symbols);--symbols:#777;--base:#545281;--comment:hsl(210, 25%, 60%);--keyword:#af4ab1;--variable:var(--base);--function:#c25205;--string:#2ba46d;--number:#c25205;--tags:#d00;--brackets:var(--comment);--qualifier:#ff6032;--important:var(--string);--attribute:#9c3eda;--property:#6182b8;--selected-bg:#d7d4f0;--selected-bg-non-focus:#d9d9d9;--cursor:#000;direction:ltr;height:auto}.vft-md-vue-playground .dark .CodeMirror{color:var(--symbols);--symbols:#89ddff;--base:#a6accd;--comment:#6d6d6d;--keyword:#89ddff;--string:#c3e88d;--variable:#82aaff;--number:#f78c6c;--tags:#f07178;--brackets:var(--symbols);--property:#f07178;--attribute:#c792ea;--cursor:#fff;--selected-bg:rgba(255, 255, 255, 0.1);--selected-bg-non-focus:rgba(255, 255, 255, 0.15)}.vft-md-vue-playground .CodeMirror-lines{padding:4px 0}.vft-md-vue-playground .CodeMirror pre{padding:0 4px}.vft-md-vue-playground .CodeMirror-gutter-filler,.vft-md-vue-playground .CodeMirror-scrollbar-filler{background-color:#fff}.vft-md-vue-playground .CodeMirror-gutters{border-right:1px solid var(--border);background-color:transparent;white-space:nowrap}.vft-md-vue-playground .CodeMirror-linenumber{padding:0 3px 0 5px;min-width:20px;text-align:right;color:var(--comment);white-space:nowrap;opacity:.6}.vft-md-vue-playground .CodeMirror-guttermarker{color:#000}.vft-md-vue-playground .CodeMirror-guttermarker-subtle{color:#999}.vft-md-vue-playground .CodeMirror-foldmarker{color:#414141;text-shadow:#f96 1px 1px 2px,#f96 -1px -1px 2px,#f96 1px -1px 2px,#f96 -1px 1px 2px;line-height:.3;cursor:pointer}.vft-md-vue-playground .CodeMirror-foldgutter{width:.7em}.vft-md-vue-playground .CodeMirror-foldgutter-folded,.vft-md-vue-playground .CodeMirror-foldgutter-open{cursor:pointer}.vft-md-vue-playground .CodeMirror-foldgutter-folded:after,.vft-md-vue-playground .CodeMirror-foldgutter-open:after{content:">";font-size:.8em;opacity:.8;transition:transform .2s;display:inline-block;top:-.1em;position:relative;transform:rotate(90deg)}.vft-md-vue-playground .CodeMirror-foldgutter-folded:after{transform:none}.vft-md-vue-playground .CodeMirror-cursor{border-left:1px solid var(--cursor);border-right:none;width:0}.vft-md-vue-playground .CodeMirror div.CodeMirror-secondarycursor{border-left:1px solid silver}.vft-md-vue-playground .cm-fat-cursor .CodeMirror-cursor{width:auto;border:0!important;background:#7e7}.vft-md-vue-playground .cm-fat-cursor div.CodeMirror-cursors{z-index:1}.vft-md-vue-playground .cm-fat-cursor-mark{background-color:rgba(20,255,20,.5);animation:blink 1.06s steps(1) infinite}.vft-md-vue-playground .cm-animate-fat-cursor{width:auto;border:0;animation:blink 1.06s steps(1) infinite;background-color:#7e7}@keyframes blink{50%{background-color:transparent}}.vft-md-vue-playground .cm-tab{display:inline-block;text-decoration:inherit}.vft-md-vue-playground .CodeMirror-rulers{position:absolute;left:0;right:0;top:-50px;bottom:-20px;overflow:hidden}.vft-md-vue-playground .CodeMirror-ruler{border-left:1px solid #ccc;top:0;bottom:0;position:absolute}.vft-md-vue-playground .cm-s-default.CodeMirror{background-color:transparent}.vft-md-vue-playground .cm-s-default .cm-header{color:#00f}.vft-md-vue-playground .cm-s-default .cm-quote{color:#090}.vft-md-vue-playground .cm-negative{color:#d44}.vft-md-vue-playground .cm-positive{color:#292}.vft-md-vue-playground .cm-header,.vft-md-vue-playground .cm-strong{font-weight:700}.vft-md-vue-playground .cm-em{font-style:italic}.vft-md-vue-playground .cm-link{text-decoration:underline}.vft-md-vue-playground .cm-strikethrough{text-decoration:line-through}.vft-md-vue-playground .cm-s-default .cm-atom,.vft-md-vue-playground .cm-s-default .cm-def,.vft-md-vue-playground .cm-s-default .cm-punctuation,.vft-md-vue-playground .cm-s-default .cm-variable-2,.vft-md-vue-playground .cm-s-default .cm-variable-3{color:var(--base)}.vft-md-vue-playground .cm-s-default .cm-property{color:var(--property)}.vft-md-vue-playground .cm-s-default .cm-comment,.vft-md-vue-playground .cm-s-default .cm-hr{color:var(--comment)}.vft-md-vue-playground .cm-s-default .cm-attribute{color:var(--attribute)}.vft-md-vue-playground .cm-s-default .cm-keyword{color:var(--keyword)}.vft-md-vue-playground .cm-s-default .cm-variable{color:var(--variable)}.vft-md-vue-playground .cm-s-default .cm-tag{color:var(--tags)}.vft-md-vue-playground .cm-s-default .cm-bracket{color:var(--brackets)}.vft-md-vue-playground .cm-s-default .cm-number{color:var(--number)}.vft-md-vue-playground .cm-s-default .cm-string,.vft-md-vue-playground .cm-s-default .cm-string-2{color:var(--string)}.vft-md-vue-playground .cm-s-default .cm-type{color:#085}.vft-md-vue-playground .cm-s-default .cm-meta{color:#555}.vft-md-vue-playground .cm-s-default .cm-qualifier{color:var(--qualifier)}.vft-md-vue-playground .cm-s-default .cm-builtin{color:#7539ff}.vft-md-vue-playground .cm-s-default .cm-link{color:var(--flash)}.vft-md-vue-playground .cm-s-default .cm-error{color:#ff008c}.vft-md-vue-playground .cm-invalidchar{color:#ff008c}.vft-md-vue-playground .CodeMirror-composing{border-bottom:2px solid}.vft-md-vue-playground div.CodeMirror span.CodeMirror-matchingbracket{color:#0b0}.vft-md-vue-playground div.CodeMirror span.CodeMirror-nonmatchingbracket{color:#a22}.vft-md-vue-playground .CodeMirror-matchingtag{background:rgba(255,150,0,.3)}.vft-md-vue-playground .CodeMirror-activeline-background{background:#e8f2ff}.vft-md-vue-playground .CodeMirror{position:relative;overflow:hidden;background:#fff}.vft-md-vue-playground .CodeMirror-scroll{overflow:scroll!important;margin-bottom:-30px;margin-right:-30px;padding-bottom:30px;height:100%;outline:0;position:relative}.vft-md-vue-playground .CodeMirror-sizer{position:relative;border-right:30px solid transparent}.vft-md-vue-playground .CodeMirror-gutter-filler,.vft-md-vue-playground .CodeMirror-hscrollbar,.vft-md-vue-playground .CodeMirror-scrollbar-filler,.vft-md-vue-playground .CodeMirror-vscrollbar{position:absolute;z-index:6;display:none}.vft-md-vue-playground .CodeMirror-vscrollbar{right:0;top:0;overflow-x:hidden;overflow-y:scroll}.vft-md-vue-playground .CodeMirror-hscrollbar{bottom:0;left:0;overflow-y:hidden;overflow-x:scroll}.vft-md-vue-playground .CodeMirror-scrollbar-filler{right:0;bottom:0}.vft-md-vue-playground .CodeMirror-gutter-filler{left:0;bottom:0}.vft-md-vue-playground .CodeMirror-gutters{position:absolute;left:0;top:0;min-height:100%;z-index:3}.vft-md-vue-playground .CodeMirror-gutter{white-space:normal;height:100%;display:inline-block;vertical-align:top;margin-bottom:-30px}.vft-md-vue-playground .CodeMirror-gutter-wrapper{position:absolute;z-index:4;background:0 0!important;border:none!important}.vft-md-vue-playground .CodeMirror-gutter-background{position:absolute;top:0;bottom:0;z-index:4}.vft-md-vue-playground .CodeMirror-gutter-elt{position:absolute;cursor:default;z-index:4}.vft-md-vue-playground .CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.vft-md-vue-playground .CodeMirror-gutter-wrapper ::selection{background-color:transparent}.vft-md-vue-playground .CodeMirror-gutter-wrapper ::-moz-selection{background-color:transparent}.vft-md-vue-playground .CodeMirror-lines{cursor:text;min-height:1px}.vft-md-vue-playground .CodeMirror pre{border-radius:0;border-width:0;background:0 0;margin:0;white-space:pre;word-wrap:normal;z-index:2;position:relative;overflow:visible;-webkit-tap-highlight-color:transparent;font-variant-ligatures:contextual}.vft-md-vue-playground .CodeMirror-wrap pre{word-wrap:break-word;white-space:pre-wrap;word-break:normal}.vft-md-vue-playground .CodeMirror-linebackground{position:absolute;left:0;right:0;top:0;bottom:0;z-index:0}.vft-md-vue-playground .CodeMirror-linewidget{position:relative;z-index:2;padding:.1px}.vft-md-vue-playground .CodeMirror-rtl pre{direction:rtl}.vft-md-vue-playground .CodeMirror-code{outline:0}.vft-md-vue-playground .CodeMirror-gutter,.vft-md-vue-playground .CodeMirror-gutters,.vft-md-vue-playground .CodeMirror-linenumber,.vft-md-vue-playground .CodeMirror-scroll,.vft-md-vue-playground .CodeMirror-sizer{box-sizing:content-box}.vft-md-vue-playground .CodeMirror-measure{position:absolute;width:100%;height:0;overflow:hidden;visibility:hidden}.vft-md-vue-playground .CodeMirror-cursor{position:absolute;pointer-events:none}.vft-md-vue-playground .CodeMirror-measure pre{position:static}.vft-md-vue-playground div.CodeMirror-cursors{visibility:hidden;position:relative;z-index:3}.vft-md-vue-playground div.CodeMirror-dragcursors{visibility:visible}.vft-md-vue-playground .CodeMirror-focused div.CodeMirror-cursors{visibility:visible}.vft-md-vue-playground .CodeMirror-selected{background:var(--selected-bg-non-focus)}.vft-md-vue-playground .CodeMirror-focused .CodeMirror-selected{background:var(--selected-bg)}.vft-md-vue-playground .CodeMirror-crosshair{cursor:crosshair}.vft-md-vue-playground .CodeMirror-line::-moz-selection,.vft-md-vue-playground .CodeMirror-line>span::-moz-selection,.vft-md-vue-playground .CodeMirror-line>span>span::-moz-selection{background:var(--selected-bg)}.vft-md-vue-playground .CodeMirror-line::selection,.vft-md-vue-playground .CodeMirror-line>span::selection,.vft-md-vue-playground .CodeMirror-line>span>span::selection{background:var(--selected-bg)}.vft-md-vue-playground .CodeMirror-line::-moz-selection,.vft-md-vue-playground .CodeMirror-line>span::-moz-selection,.vft-md-vue-playground .CodeMirror-line>span>span::-moz-selection{background:var(--selected-bg)}.vft-md-vue-playground .cm-searching{background-color:#ffa;background-color:rgba(255,255,0,.4)}.vft-md-vue-playground .cm-force-border{padding-right:.1px}@media print{.vft-md-vue-playground .CodeMirror div.CodeMirror-cursors{visibility:hidden}}.vft-md-vue-playground .cm-tab-wrap-hack:after{content:""}.vft-md-vue-playground span.CodeMirror-selectedtext{background:0 0}.vft-md-vue-playground .editor{position:relative;height:100%;width:100%;overflow:hidden}.vft-md-vue-playground .CodeMirror{line-height:1.5;height:100%}.vft-md-vue-playground .msg[data-v-92411507]{position:absolute;bottom:0;left:8px;right:8px;z-index:10;border:2px solid transparent;border-radius:6px;white-space:pre-wrap;margin-bottom:8px;max-height:calc(100% - 300px);min-height:40px;display:flex;align-items:stretch}.vft-md-vue-playground pre[data-v-92411507]{margin:0;padding:12px 20px;overflow:auto}.vft-md-vue-playground .dismiss[data-v-92411507]{position:absolute;top:2px;right:2px;width:18px;height:18px;line-height:18px;border-radius:9px;text-align:center;display:block;font-size:9px;padding:0;background-color:red;color:#fff}@media (max-width:720px){.vft-md-vue-playground .dismiss[data-v-92411507]{top:-9px;right:-9px}.vft-md-vue-playground .msg[data-v-92411507]{bottom:50px}}.vft-md-vue-playground .msg.err[data-v-92411507]{color:red;border-color:red;background-color:#ffd7d7}.vft-md-vue-playground .msg.warn[data-v-92411507]{--color:rgb(105, 95, 27);color:var(--color);border-color:var(--color);background-color:#f7f0cd}.vft-md-vue-playground .msg.warn .dismiss[data-v-92411507]{background-color:var(--color)}.vft-md-vue-playground .fade-enter-active[data-v-92411507],.vft-md-vue-playground .fade-leave-active[data-v-92411507]{transition:all .15s ease-out}.vft-md-vue-playground .fade-enter-from[data-v-92411507],.vft-md-vue-playground .fade-leave-to[data-v-92411507]{opacity:0;transform:translate(0,10px)}.vft-md-vue-playground .editor-container[data-v-0384e940]{height:calc(100% - var(--header-height));overflow:hidden;position:relative}.vft-md-vue-playground .iframe-container[data-v-21e1de24],.vft-md-vue-playground .iframe-container[data-v-21e1de24] iframe{width:100%;height:100%;border:none;background-color:#fff}.vft-md-vue-playground .output-container[data-v-5d2df9cb]{height:calc(100% - var(--header-height));overflow:hidden;position:relative}.vft-md-vue-playground .tab-buttons[data-v-5d2df9cb]{box-sizing:border-box;border-bottom:1px solid var(--border);background-color:var(--bg);height:var(--header-height);overflow:hidden}.vft-md-vue-playground .tab-buttons button[data-v-5d2df9cb]{padding:0;box-sizing:border-box}.vft-md-vue-playground .tab-buttons span[data-v-5d2df9cb]{font-size:13px;text-transform:uppercase;color:var(--text-light);display:inline-block;padding:8px 16px 6px;line-height:20px}.vft-md-vue-playground button.active[data-v-5d2df9cb]{color:var(--color-branding-dark);border-bottom:3px solid var(--color-branding-dark)}.vft-md-vue-playground .vue-repl{--bg:#fff;--bg-soft:#f8f8f8;--border:#ddd;--text-light:#888;--font-code:Menlo,Monaco,Consolas,"Courier New",monospace;--color-branding:#42b883;--color-branding-dark:#416f9c;--header-height:38px;font-size:13px;margin:0;overflow:hidden;background-color:var(--bg-soft)}.vft-md-vue-playground .dark .vue-repl{--bg:#1a1a1a;--bg-soft:#242424;--border:#383838;--text-light:#aaa;--color-branding:#42d392;--color-branding-dark:#89ddff}.vft-md-vue-playground button{border:none;outline:0;cursor:pointer;margin:0;background-color:transparent}
|
package/theme-style/vft-menu.css
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
.fade-in-linear-enter-active,.fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.fade-in-linear-enter-from,.fade-in-linear-leave-to{opacity:0}.vft-fade-in-linear-enter-active,.vft-fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.vft-fade-in-linear-enter-from,.vft-fade-in-linear-leave-to{opacity:0}.vft-fade-in-enter-active,.vft-fade-in-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-fade-in-enter-from,.vft-fade-in-leave-active{opacity:0}.vft-zoom-in-center-enter-active,.vft-zoom-in-center-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-zoom-in-center-enter-from,.vft-zoom-in-center-leave-active{opacity:0;transform:scaleX(0)}.vft-zoom-in-top-enter-active,.vft-zoom-in-top-leave-active{opacity:1;transform:scaleY(1);transition:var(--vft-transition-md-fade);transform-origin:center top}.vft-zoom-in-top-enter-active[data-popper-placement^=top],.vft-zoom-in-top-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-enter-from,.vft-zoom-in-top-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-bottom-enter-active,.vft-zoom-in-bottom-leave-active{opacity:1;transform:scaleY(1);transition:var(--vft-transition-md-fade);transform-origin:center bottom}.vft-zoom-in-bottom-enter-from,.vft-zoom-in-bottom-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-left-enter-active,.vft-zoom-in-left-leave-active{opacity:1;transform:scale(1,1);transition:var(--vft-transition-md-fade);transform-origin:top left}.vft-zoom-in-left-enter-from,.vft-zoom-in-left-leave-active{opacity:0;transform:scale(.45,.45)}.collapse-transition{transition:var(--vft-transition-duration) height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.vft-collapse-transition-enter-active,.vft-collapse-transition-leave-active{transition:var(--vft-transition-duration) max-height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.horizontal-collapse-transition{transition:var(--vft-transition-duration) width ease-in-out,var(--vft-transition-duration) padding-left ease-in-out,var(--vft-transition-duration) padding-right ease-in-out}.vft-list-enter-active,.vft-list-leave-active{transition:all 1s}.vft-list-enter-from,.vft-list-leave-to{opacity:0;transform:translateY(-30px)}.vft-list-leave-active{position:absolute!important}.vft-opacity-transition{transition:opacity var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}@keyframes vft-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}:root{--vft-menu-bg-color:var(--vft-fill-color-blank);--vft-menu-sub-menu-bg-color:var(--vft-fill-color-blank);--vft-menu-active-color:var(--vft-primary-color);--vft-menu-text-color:var(--vft-text-primary-color);--vft-menu-hover-text-color:var(--vft-primary-color);--vft-menu-hover-bg-color:var(--vft-primary-color-light-9);--vft-menu-focus-text-color:var(--vft-primary-color);--vft-menu-focus-bg-color:var(--vft-primary-color-light-9);--vft-menu-item-height:56px;--vft-menu-sub-item-height:calc(var(--vft-menu-item-height) - 6px);--vft-menu-horizontal-sub-item-height:36px;--vft-menu-item-font-size:var(--vft-font-size-base);--vft-menu-item-hover-fill:var(--vft-primary-color-light-9);--vft-menu-border-bottom:var(--vft-border);--vft-menu-base-level-padding:20px;--vft-menu-level-padding:20px;--vft-menu-icon-mr:8px;--vft-menu-border:var(--vft-border);--vft-menu-border-right:var(--vft-border);--vft-menu-item-min-width:200px;--vft-menu-popup-border-radius:var(--vft-border-radius)}.vft-menu{border:var(--vft-menu-border);border-right:var(--vft-menu-border-right);list-style:none;position:relative;margin:0;padding-left:0;background-color:var(--vft-menu-bg-color);box-sizing:border-box}.vft-menu--vertical:not(.vft-menu--collapse):not(.vft-menu--popup-container) .vft-menu-item,.vft-menu--vertical:not(.vft-menu--collapse):not(.vft-menu--popup-container) .vft-menu-item-group__title,.vft-menu--vertical:not(.vft-menu--collapse):not(.vft-menu--popup-container) .vft-sub-menu__title{padding-left:calc(var(--vft-menu-base-level-padding) + var(--vft-menu-level) * var(--vft-menu-level-padding))}.vft-menu--vertical .vft-menu-item{white-space:initial}.vft-menu--vertical .vft-sub-menu__text{white-space:break-spaces}.vft-menu--horizontal{display:flex;flex-wrap:nowrap;border:none;border-bottom:var(--vft-menu-border-bottom)}.vft-menu--horizontal>.vft-menu-item{display:inline-flex;justify-content:center;align-items:center;height:100%;margin:0;border-bottom:2px solid transparent;color:var(--vft-menu-text-color)}.vft-menu--horizontal>.vft-menu-item a,.vft-menu--horizontal>.vft-menu-item a:hover{color:inherit}.vft-menu--horizontal>.vft-menu-item:not(.is-disabled):focus,.vft-menu--horizontal>.vft-menu-item:not(.is-disabled):hover{background-color:#fff}.vft-menu--horizontal>.vft-sub-menu:focus,.vft-menu--horizontal>.vft-sub-menu:hover{outline:0}.vft-menu--horizontal>.vft-sub-menu:hover .vft-sub-menu__title{color:var(--vft-menu-hover-text-color)}.vft-menu--horizontal>.vft-sub-menu.is-active .vft-sub-menu__title{border-bottom:2px solid var(--vft-menu-active-color);color:var(--vft-menu-active-color)}.vft-menu--horizontal>.vft-sub-menu.is-active .vft-sub-menu__title:hover{color:var(--vft-menu-hover-text-color)}.vft-menu--horizontal>.vft-sub-menu .vft-sub-menu__title{height:100%;line-height:100%;border-bottom:2px solid transparent;color:var(--vft-menu-text-color)}.vft-menu--horizontal>.vft-sub-menu .vft-sub-menu__title:hover{background-color:var(--vft-menu-hover-bg-color)}.vft-menu--horizontal .vft-menu .vft-menu-item,.vft-menu--horizontal .vft-menu .vft-sub-menu__title{background-color:var(--vft-menu-bg-color);display:flex;align-items:center;height:var(--vft-menu-horizontal-sub-item-height);padding:0 10px;color:var(--vft-menu-text-color)}.vft-menu--horizontal .vft-menu .vft-sub-menu__title{padding-right:40px}.vft-menu--horizontal .vft-menu .vft-menu-item.is-active,.vft-menu--horizontal .vft-menu .vft-sub-menu.is-active>.vft-sub-menu__title{color:var(--vft-menu-active-color)}.vft-menu--horizontal .vft-menu-item:not(.is-disabled):hover{outline:0;color:var(--vft-menu-hover-text-color);background-color:var(--vft-menu-hover-bg-color)}.vft-menu--horizontal .vft-menu-item:not(.is-disabled):focus{outline:0;color:var(--vft-menu-focus-text-color);background-color:var(--vft-menu-focus-bg-color)}.vft-menu--horizontal>.vft-menu-item.is-active{border-bottom:2px solid var(--vft-menu-active-color);color:var(--vft-menu-active-color)}.vft-menu--collapse{width:calc(var(--vft-menu-icon-width) + var(--vft-menu-base-level-padding) * 2)}.vft-menu--collapse>.vft-menu-item [class^=vft-icon],.vft-menu--collapse>.vft-menu-item-group>ul>.vft-sub-menu>.vft-sub-menu__title [class^=vft-icon],.vft-menu--collapse>.vft-sub-menu>.vft-sub-menu__title [class^=vft-icon]{margin:0;vertical-align:middle;width:var(--vft-menu-icon-width);text-align:center}.vft-menu--collapse>.vft-menu-item .vft-sub-menu__icon-arrow,.vft-menu--collapse>.vft-menu-item-group>ul>.vft-sub-menu>.vft-sub-menu__title .vft-sub-menu__icon-arrow,.vft-menu--collapse>.vft-sub-menu>.vft-sub-menu__title .vft-sub-menu__icon-arrow{display:none}.vft-menu--collapse>.vft-menu-item-group>ul>.vft-sub-menu>.vft-sub-menu__title>.vft-sub-menu__text,.vft-menu--collapse>.vft-menu-item>.vft-sub-menu__text,.vft-menu--collapse>.vft-sub-menu>.vft-sub-menu__title>.vft-sub-menu__text{height:0;width:0;overflow:hidden;visibility:hidden;display:inline-block}.vft-menu--collapse>.vft-menu-item.is-active i{color:inherit}.vft-menu--collapse .vft-menu .vft-sub-menu{min-width:200px}.vft-menu--popup{z-index:100;min-width:200px;border:none;padding:5px 0;box-shadow:var(--vft-box-shadow-light);border-radius:var(--vft-menu-popup-border-radius)}.vft-menu .vft-icon{flex-shrink:0}.vft-menu-item{display:flex;align-items:center;height:var(--vft-menu-item-height);line-height:var(--vft-menu-item-height);font-size:var(--vft-menu-item-font-size);color:var(--vft-menu-text-color);padding:0 var(--vft-menu-base-level-padding);list-style:none;cursor:pointer;position:relative;transition:border-color var(--vft-transition-duration),background-color var(--vft-transition-duration),color var(--vft-transition-duration);box-sizing:border-box;white-space:nowrap}.vft-menu-item *{vertical-align:bottom}.vft-menu-item i{flex-shrink:0;margin-right:var(--vft-menu-icon-mr)}.vft-menu-item:focus,.vft-menu-item:hover{outline:0}.vft-menu-item:hover{background-color:var(--vft-menu-hover-bg-color)}.vft-menu-item.is-disabled{opacity:.5;cursor:not-allowed;background:0 0!important}.vft-menu-item .vft-sub-menu__text{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1;word-break:break-all}.vft-menu-item [class^=vft-icon]{margin-right:5px;width:var(--vft-menu-icon-width);text-align:center;font-size:18px;vertical-align:middle}.vft-menu-item.is-active{color:var(--vft-menu-active-color)}.vft-menu-item.is-active i{color:inherit}.vft-menu-item .vft-menu-tooltip__trigger{position:absolute;left:0;top:0;height:100%;width:100%;display:inline-flex;align-items:center;box-sizing:border-box;padding:0 var(--vft-menu-base-level-padding)}.vft-sub-menu{list-style:none;margin:0;padding-left:0;background:var(--vft-menu-sub-menu-bg-color)}.vft-sub-menu__title{display:flex;align-items:center;height:var(--vft-menu-item-height);line-height:var(--vft-menu-item-height);font-size:var(--vft-menu-item-font-size);color:var(--vft-menu-text-color);padding:0 var(--vft-menu-base-level-padding);list-style:none;cursor:pointer;position:relative;transition:border-color var(--vft-transition-duration),background-color var(--vft-transition-duration),color var(--vft-transition-duration);box-sizing:border-box;white-space:nowrap}.vft-sub-menu__title *{vertical-align:bottom}.vft-sub-menu__title i{flex-shrink:0;margin-right:var(--vft-menu-icon-mr)}.vft-sub-menu__title:focus,.vft-sub-menu__title:hover{outline:0}.vft-sub-menu__title:hover{background-color:var(--vft-menu-hover-bg-color)}.vft-sub-menu__title.is-disabled{opacity:.5;cursor:not-allowed;background:0 0!important}.vft-sub-menu__title .vft-sub-menu__text{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1;word-break:break-all}.vft-sub-menu__title:hover{background-color:var(--vft-menu-hover-bg-color)}.vft-sub-menu__text{padding-right:30px}.vft-sub-menu .vft-menu{border:none}.vft-sub-menu .vft-menu-item{height:var(--vft-menu-sub-item-height);line-height:var(--vft-menu-sub-item-height);min-width:var(--vft-menu-item-min-width)}.vft-sub-menu__hide-arrow .vft-sub-menu__icon-arrow{display:none!important}.vft-sub-menu.is-active .vft-sub-menu__title{border-bottom-color:var(--vft-menu-active-color)}.vft-sub-menu.is-disabled .vft-menu-item,.vft-sub-menu.is-disabled .vft-sub-menu__title{opacity:.6;cursor:not-allowed;background:0 0!important}.vft-sub-menu .vft-icon{vertical-align:middle;margin-right:var(--vft-menu-icon-mr);text-align:center}.vft-sub-menu .vft-icon.vft-sub-menu__icon-more{margin-right:0!important}.vft-sub-menu .vft-sub-menu__icon-arrow{position:absolute;right:var(--vft-menu-base-level-padding);transition:transform var(--vft-transition-duration);color:inherit}.vft-menu-item-group>ul{padding:0}.vft-menu-item-group__title{padding:7px 0 7px var(--vft-menu-base-level-padding);line-height:normal;font-size:12px;color:var(--vft-text-color-secondary)}.horizontal-collapse-transition .vft-sub-menu__title .vft-sub-menu__icon-arrow{transition:var(--vft-transition-duration-fast);opacity:0}
|
|
1
|
+
.fade-in-linear-enter-active,.fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.fade-in-linear-enter-from,.fade-in-linear-leave-to{opacity:0}.vft-fade-in-linear-enter-active,.vft-fade-in-linear-leave-active{transition:var(--vft-transition-fade-linear)}.vft-fade-in-linear-enter-from,.vft-fade-in-linear-leave-to{opacity:0}.vft-fade-in-enter-active,.vft-fade-in-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-fade-in-enter-from,.vft-fade-in-leave-active{opacity:0}.vft-zoom-in-center-enter-active,.vft-zoom-in-center-leave-active{transition:all var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}.vft-zoom-in-center-enter-from,.vft-zoom-in-center-leave-active{opacity:0;transform:scaleX(0)}.vft-zoom-in-top-enter-active,.vft-zoom-in-top-leave-active{opacity:1;transform:scaleY(1);transform-origin:center top;transition:var(--vft-transition-md-fade)}.vft-zoom-in-top-enter-active[data-popper-placement^=top],.vft-zoom-in-top-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-enter-from,.vft-zoom-in-top-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-top-fast-enter-active{opacity:1;transform:scaleY(1);transform-origin:center top;transition:var(--vft-transition-md-fade)}.vft-zoom-in-top-fast-enter-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-fast-leave-active{opacity:1;transform:scaleY(1);transform-origin:center top}.vft-zoom-in-top-fast-leave-active[data-popper-placement^=top]{transform-origin:center bottom}.vft-zoom-in-top-fast-enter-from,.vft-zoom-in-top-fast-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-bottom-enter-active,.vft-zoom-in-bottom-leave-active{opacity:1;transform:scaleY(1);transition:var(--vft-transition-md-fade);transform-origin:center bottom}.vft-zoom-in-bottom-enter-from,.vft-zoom-in-bottom-leave-active{opacity:0;transform:scaleY(0)}.vft-zoom-in-left-enter-active,.vft-zoom-in-left-leave-active{opacity:1;transform:scale(1,1);transition:var(--vft-transition-md-fade);transform-origin:top left}.vft-zoom-in-left-enter-from,.vft-zoom-in-left-leave-active{opacity:0;transform:scale(.45,.45)}.collapse-transition{transition:var(--vft-transition-duration) height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.vft-collapse-transition-enter-active,.vft-collapse-transition-leave-active{transition:var(--vft-transition-duration) max-height ease-in-out,var(--vft-transition-duration) padding-top ease-in-out,var(--vft-transition-duration) padding-bottom ease-in-out}.horizontal-collapse-transition{transition:var(--vft-transition-duration) width ease-in-out,var(--vft-transition-duration) padding-left ease-in-out,var(--vft-transition-duration) padding-right ease-in-out}.vft-list-enter-active,.vft-list-leave-active{transition:all 1s}.vft-list-enter-from,.vft-list-leave-to{opacity:0;transform:translateY(-30px)}.vft-list-leave-active{position:absolute!important}.vft-opacity-transition{transition:opacity var(--vft-transition-duration) cubic-bezier(.55,0,.1,1)}@keyframes vft-rotate{from{-webkit-transform:rotate(0)}to{-webkit-transform:rotate(360deg)}}:root{--vft-menu-bg-color:var(--vft-fill-color-blank);--vft-menu-sub-menu-bg-color:var(--vft-fill-color-blank);--vft-menu-active-color:var(--vft-primary-color);--vft-menu-text-color:var(--vft-text-primary-color);--vft-menu-hover-text-color:var(--vft-primary-color);--vft-menu-hover-bg-color:var(--vft-primary-color-light-9);--vft-menu-focus-text-color:var(--vft-primary-color);--vft-menu-focus-bg-color:var(--vft-primary-color-light-9);--vft-menu-item-height:56px;--vft-menu-sub-item-height:calc(var(--vft-menu-item-height) - 6px);--vft-menu-horizontal-sub-item-height:36px;--vft-menu-item-font-size:var(--vft-font-size-base);--vft-menu-item-hover-fill:var(--vft-primary-color-light-9);--vft-menu-border-bottom:var(--vft-border);--vft-menu-base-level-padding:20px;--vft-menu-level-padding:20px;--vft-menu-icon-mr:6px;--vft-menu-icon-width:14px;--vft-menu-border:var(--vft-border);--vft-menu-border-right:var(--vft-border);--vft-menu-item-min-width:200px;--vft-menu-popup-border-radius:var(--vft-border-radius)}.vft-menu{border:var(--vft-menu-border);border-right:var(--vft-menu-border-right);list-style:none;position:relative;margin:0;padding-left:0;background-color:var(--vft-menu-bg-color);box-sizing:border-box;scroll-behavior:smooth}.vft-menu--vertical:not(.vft-menu--collapse):not(.vft-menu--popup-container) .vft-menu-item,.vft-menu--vertical:not(.vft-menu--collapse):not(.vft-menu--popup-container) .vft-menu-item-group__title,.vft-menu--vertical:not(.vft-menu--collapse):not(.vft-menu--popup-container) .vft-sub-menu__title{padding-left:calc(var(--vft-menu-base-level-padding) + var(--vft-menu-level) * var(--vft-menu-level-padding))}.vft-menu--vertical:not(.vft-menu--collapse) .vft-sub-menu__text{white-space:break-spaces}.vft-menu--vertical>.vft-sub-menu .vft-menu__title{padding-right:calc(var(--vft-menu-base-level-padding) + var(--vft-menu-icon-width))}.vft-menu--horizontal{display:flex;flex-wrap:nowrap;border:none;border-bottom:var(--vft-menu-border-bottom)}.vft-menu--horizontal>.vft-menu-item{display:inline-flex;justify-content:center;align-items:center;height:100%;margin:0;border-bottom:2px solid transparent;color:var(--vft-menu-text-color)}.vft-menu--horizontal>.vft-menu-item a,.vft-menu--horizontal>.vft-menu-item a:hover{color:inherit}.vft-menu--horizontal>.vft-menu-item:not(.is-disabled):focus,.vft-menu--horizontal>.vft-menu-item:not(.is-disabled):hover{background-color:#fff}.vft-menu--horizontal>.vft-sub-menu:focus,.vft-menu--horizontal>.vft-sub-menu:hover{outline:0}.vft-menu--horizontal>.vft-sub-menu:hover .vft-sub-menu__title{color:var(--vft-menu-hover-text-color)}.vft-menu--horizontal>.vft-sub-menu.is-active .vft-sub-menu__title{border-bottom:2px solid var(--vft-menu-active-color);color:var(--vft-menu-active-color)}.vft-menu--horizontal>.vft-sub-menu.is-active .vft-sub-menu__title:hover{color:var(--vft-menu-hover-text-color)}.vft-menu--horizontal>.vft-sub-menu .vft-sub-menu__title{height:100%;line-height:100%;border-bottom:2px solid transparent;color:var(--vft-menu-text-color)}.vft-menu--horizontal>.vft-sub-menu .vft-sub-menu__title:hover{background-color:var(--vft-menu-hover-bg-color)}.vft-menu--horizontal .vft-menu .vft-menu-item,.vft-menu--horizontal .vft-menu .vft-sub-menu__title{background-color:var(--vft-menu-bg-color);display:flex;align-items:center;height:var(--vft-menu-horizontal-sub-item-height);padding:0 10px;color:var(--vft-menu-text-color)}.vft-menu--horizontal .vft-menu .vft-sub-menu__title{padding-right:40px}.vft-menu--horizontal .vft-menu .vft-menu-item.is-active,.vft-menu--horizontal .vft-menu .vft-sub-menu.is-active>.vft-sub-menu__title{color:var(--vft-menu-active-color)}.vft-menu--horizontal .vft-menu-item:not(.is-disabled):hover{outline:0;color:var(--vft-menu-hover-text-color);background-color:var(--vft-menu-hover-bg-color)}.vft-menu--horizontal .vft-menu-item:not(.is-disabled):focus{outline:0;color:var(--vft-menu-focus-text-color);background-color:var(--vft-menu-focus-bg-color)}.vft-menu--horizontal>.vft-menu-item.is-active{border-bottom:2px solid var(--vft-menu-active-color);color:var(--vft-menu-active-color)}.vft-menu--collapse{width:calc(var(--vft-menu-icon-width) + var(--vft-menu-base-level-padding) * 2)}.vft-menu--collapse>.vft-menu-item [class^=vft-icon],.vft-menu--collapse>.vft-menu-item-group>ul>.vft-sub-menu>.vft-sub-menu__title [class^=vft-icon],.vft-menu--collapse>.vft-sub-menu>.vft-sub-menu__title [class^=vft-icon]{margin:0;vertical-align:middle;width:var(--vft-menu-icon-width);text-align:center}.vft-menu--collapse>.vft-menu-item .vft-sub-menu__icon-arrow,.vft-menu--collapse>.vft-menu-item-group>ul>.vft-sub-menu>.vft-sub-menu__title .vft-sub-menu__icon-arrow,.vft-menu--collapse>.vft-sub-menu>.vft-sub-menu__title .vft-sub-menu__icon-arrow{display:none}.vft-menu--collapse>.vft-menu-item-group>ul>.vft-sub-menu>.vft-sub-menu__title>.vft-sub-menu__text span,.vft-menu--collapse>.vft-menu-item>.vft-sub-menu__text span,.vft-menu--collapse>.vft-sub-menu>.vft-sub-menu__title>.vft-sub-menu__text span{height:0;width:0;overflow:hidden;visibility:hidden;display:inline-block}.vft-menu--collapse>.vft-menu-item.is-active i{color:inherit}.vft-menu--collapse .vft-menu .vft-sub-menu{min-width:200px}.vft-menu--collapse .vft-sub-menu__text{padding-right:0}.vft-menu--popup{z-index:100;min-width:200px;border:none;padding:5px 0;box-shadow:var(--vft-box-shadow-light);border-radius:var(--vft-menu-popup-border-radius)}.vft-menu .vft-icon{flex-shrink:0}.vft-menu-item{display:flex;align-items:center;height:var(--vft-menu-item-height);line-height:var(--vft-menu-item-height);font-size:var(--vft-menu-item-font-size);color:var(--vft-menu-text-color);padding:0 var(--vft-menu-base-level-padding);list-style:none;cursor:pointer;position:relative;transition:border-color var(--vft-transition-duration),background-color var(--vft-transition-duration),color var(--vft-transition-duration);box-sizing:border-box;white-space:nowrap}.vft-menu-item *{vertical-align:bottom}.vft-menu-item i{flex-shrink:0;margin-right:var(--vft-menu-icon-mr)}.vft-menu-item:focus,.vft-menu-item:hover{outline:0}.vft-menu-item:hover{background-color:var(--vft-menu-hover-bg-color)}.vft-menu-item.is-disabled{opacity:.5;cursor:not-allowed;background:0 0!important}.vft-menu-item .vft-sub-menu__text{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1;word-break:break-all}.vft-menu-item [class^=vft-icon]{margin-right:var(--vft-menu-icon-mr);width:var(--vft-menu-icon-width);text-align:center;vertical-align:middle}.vft-menu-item.is-active{color:var(--vft-menu-active-color)}.vft-menu-item.is-active i{color:inherit}.vft-menu-item .vft-menu-tooltip__trigger{position:absolute;left:0;top:0;height:100%;width:100%;display:inline-flex;align-items:center;box-sizing:border-box;padding:0 var(--vft-menu-base-level-padding)}.vft-menu-item span{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1;word-break:break-all;white-space:break-spaces}.vft-sub-menu{list-style:none;margin:0;padding-left:0;background:var(--vft-menu-sub-menu-bg-color)}.vft-sub-menu__title{display:flex;align-items:center;height:var(--vft-menu-item-height);line-height:var(--vft-menu-item-height);font-size:var(--vft-menu-item-font-size);color:var(--vft-menu-text-color);padding:0 var(--vft-menu-base-level-padding);list-style:none;cursor:pointer;position:relative;transition:border-color var(--vft-transition-duration),background-color var(--vft-transition-duration),color var(--vft-transition-duration);box-sizing:border-box;white-space:nowrap}.vft-sub-menu__title *{vertical-align:bottom}.vft-sub-menu__title i{flex-shrink:0;margin-right:var(--vft-menu-icon-mr)}.vft-sub-menu__title:focus,.vft-sub-menu__title:hover{outline:0}.vft-sub-menu__title:hover{background-color:var(--vft-menu-hover-bg-color)}.vft-sub-menu__title.is-disabled{opacity:.5;cursor:not-allowed;background:0 0!important}.vft-sub-menu__title .vft-sub-menu__text{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1;word-break:break-all}.vft-sub-menu__title:hover{background-color:var(--vft-menu-hover-bg-color)}.vft-sub-menu__text{padding-right:var(--vft-menu-base-level-padding)}.vft-sub-menu .vft-menu{border:none}.vft-sub-menu .vft-menu-item{height:var(--vft-menu-sub-item-height);line-height:var(--vft-menu-sub-item-height);min-width:var(--vft-menu-item-min-width)}.vft-sub-menu__hide-arrow .vft-sub-menu__icon-arrow{display:none!important}.vft-sub-menu.is-active .vft-sub-menu__title{border-bottom-color:var(--vft-menu-active-color)}.vft-sub-menu.is-active.is-opened>.vft-sub-menu__title{color:var(--vft-menu-active-color)}.vft-sub-menu.is-disabled .vft-menu-item,.vft-sub-menu.is-disabled .vft-sub-menu__title{opacity:.6;cursor:not-allowed;background:0 0!important}.vft-sub-menu .vft-icon{vertical-align:middle;margin-right:var(--vft-menu-icon-mr);text-align:center}.vft-sub-menu .vft-icon.vft-sub-menu__icon-more{margin-right:0!important}.vft-sub-menu .vft-sub-menu__icon-arrow{position:absolute;right:var(--vft-menu-base-level-padding);transition:transform var(--vft-transition-duration);color:inherit}.vft-menu-item-group>ul{padding:0}.vft-menu-item-group__title{padding:0 var(--vft-menu-base-level-padding);line-height:var(--vft-menu-sub-item-height);height:var(--vft-menu-sub-item-height);font-size:12px;color:var(--vft-text-secondary-color);overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1}.horizontal-collapse-transition .vft-sub-menu__title .vft-sub-menu__icon-arrow{transition:var(--vft-transition-duration-fast);opacity:0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
:root{--vft-popup-modal-bg-color:var(--vft-color-black);--vft-popup-modal-opacity:0.5}.v-modal-enter{animation:v-modal-in var(--vft-transition-duration-fast) ease}.v-modal-leave{animation:v-modal-out var(--vft-transition-duration-fast) ease forwards}@keyframes v-modal-in{0%{opacity:0}}@keyframes v-modal-out{100%{opacity:0}}.v-modal{position:fixed;left:0;top:0;width:100%;height:100%;opacity:var(--vft-popup-modal-opacity);background:var(--vft-popup-modal-bg-color)}.vft-popup-parent--hidden{overflow:hidden}.vft-message-box{--vft-messagebox-title-color:var(--vft-text-primary-color);--vft-messagebox-width:420px;--vft-messagebox-border-radius:4px;--vft-messagebox-font-size:var(--vft-font-size-large);--vft-messagebox-content-font-size:var(--vft-font-size-base);--vft-messagebox-content-color:var(--vft-text-regular-color);--vft-messagebox-error-font-size:12px;--vft-messagebox-padding-primary:15px}.vft-message-box{display:inline-block;max-width:var(--vft-messagebox-width);width:100%;padding-bottom:10px;vertical-align:middle;background-color:var(--vft-bg-color);border-radius:var(--vft-messagebox-border-radius);border:1px solid var(--vft-border-color-lighter);font-size:var(--vft-messagebox-font-size);box-shadow:var(--vft-box-shadow-light);text-align:left;overflow:hidden;backface-visibility:hidden;box-sizing:border-box}.vft-message-box:focus{outline:0!important}.vft-overlay.is-message-box .vft-overlay-message-box{text-align:center;position:fixed;top:0;right:0;bottom:0;left:0;padding:16px;overflow:auto}.vft-overlay.is-message-box .vft-overlay-message-box::after{content:"";display:inline-block;height:100%;width:0;vertical-align:middle}.vft-message-box.is-draggable .vft-message-box__header{cursor:move;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-message-box__header{position:relative;padding:var(--vft-messagebox-padding-primary);padding-bottom:10px}.vft-message-box__title{padding-left:0;margin-bottom:0;font-size:var(--vft-messagebox-font-size);line-height:1;color:var(--vft-messagebox-title-color)}.vft-message-box__headerbtn{position:absolute;top:var(--vft-messagebox-padding-primary);right:var(--vft-messagebox-padding-primary);padding:0;border:none;outline:0;background:0 0;font-size:var(--vft-message-close-size,);cursor:pointer}.vft-message-box__headerbtn .vft-message-box__close{color:var(--vft-info-color);font-size:inherit}.vft-message-box__headerbtn:focus .vft-message-box__close,.vft-message-box__headerbtn:hover .vft-message-box__close{color:var(--vft-primary-color)}.vft-message-box__content{padding:10px var(--vft-messagebox-padding-primary);color:var(--vft-messagebox-content-color);font-size:var(--vft-messagebox-content-font-size)}.vft-message-box__container{position:relative}.vft-message-box__input{padding-top:15px}.vft-message-box__input div.invalid>input{border-color:var(--vft-error-color)}.vft-message-box__input div.invalid>input:focus{border-color:var(--vft-error-color)}.vft-message-box__status{position:absolute;top:50%;transform:translateY(-50%);font-size:24px!important}.vft-message-box__status::before{padding-left:1px}.vft-message-box__status.vft-icon{position:absolute}.vft-message-box__status+.vft-message-box__message{padding-left:36px;padding-right:12px;word-break:break-word}.vft-message-box__status.vft-message-box-icon--success{--vft-messagebox-color:var(--vft-color-success);color:var(--vft-messagebox-color)}.vft-message-box__status.vft-message-box-icon--info{--vft-messagebox-color:var(--vft-color-info);color:var(--vft-messagebox-color)}.vft-message-box__status.vft-message-box-icon--warning{--vft-messagebox-color:var(--vft-color-warning);color:var(--vft-messagebox-color)}.vft-message-box__status.vft-message-box-icon--error{--vft-messagebox-color:var(--vft-color-error);color:var(--vft-messagebox-color)}.vft-message-box__message{margin:0}.vft-message-box__message p{margin:0;line-height:24px}.vft-message-box__errormsg{color:var(--vft-error-color);font-size:var(--vft-messagebox-error-font-size);min-height:18px;margin-top:2px}.vft-message-box__btns{padding:5px 15px 0;display:flex;flex-wrap:wrap;justify-content:flex-end;align-items:center}.vft-message-box__btns button:nth-child(2){margin-left:10px}.vft-message-box__btns-reverse{flex-direction:row-reverse}.vft-message-box--center .vft-message-box__title{position:relative;display:flex;align-items:center;justify-content:center}.vft-message-box--center .vft-message-box__status{position:relative;top:auto;padding-right:5px;text-align:center;transform:translateY(-1px)}.vft-message-box--center .vft-message-box__message{margin-left:0}.vft-message-box--center .vft-message-box__btns{justify-content:center}.vft-message-box--center .vft-message-box__content{padding-left:calc(var(--vft-messagebox-padding-primary) + 12px);padding-right:calc(var(--vft-messagebox-padding-primary) + 12px);text-align:center}.fade-in-linear-enter-active .vft-overlay-message-box{animation:msgbox-fade-in var(--vft-transition-duration)}.fade-in-linear-leave-active .vft-overlay-message-box{animation:msgbox-fade-in var(--vft-transition-duration) reverse}@keyframes msgbox-fade-in{0%{transform:translate3d(0,-20px,0);opacity:0}100%{transform:translate3d(0,0,0);opacity:1}}@keyframes msgbox-fade-out{0%{transform:translate3d(0,0,0);opacity:1}100%{transform:translate3d(0,-20px,0);opacity:0}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-notification{--vft-notification-width:330px;--vft-notification-padding:14px 26px 14px 13px;--vft-notification-radius:8px;--vft-notification-shadow:var(--vft-box-shadow-light);--vft-notification-border-color:var(--vft-border-color-lighter);--vft-notification-icon-size:24px;--vft-notification-close-font-size:var(--vft-message-close-size, );--vft-notification-group-margin-left:13px;--vft-notification-group-margin-right:8px;--vft-notification-content-font-size:var(--vft-font-size-base);--vft-notification-content-color:var(--vft-text-regular-color);--vft-notification-title-font-size:16px;--vft-notification-title-color:var(--vft-text-primary-color);--vft-notification-close-color:var(--vft-text-secondary-color);--vft-notification-close-hover-color:var(--vft-text-regular-color)}.vft-notification{display:flex;width:var(--vft-notification-width);padding:var(--vft-notification-padding);border-radius:var(--vft-notification-radius);box-sizing:border-box;border:1px solid var(--vft-notification-border-color);position:fixed;background-color:var(--vft-bg-color-overlay);box-shadow:var(--vft-notification-shadow);transition:opacity var(--vft-transition-duration),transform var(--vft-transition-duration),left var(--vft-transition-duration),right var(--vft-transition-duration),top .4s,bottom var(--vft-transition-duration);overflow-wrap:anywhere;overflow:hidden;z-index:9999}.vft-notification.right{right:16px}.vft-notification.left{left:16px}.vft-notification__group{margin-left:var(--vft-notification-group-margin-left);margin-right:var(--vft-notification-group-margin-right)}.vft-notification__title{font-weight:700;font-size:var(--vft-notification-title-font-size);line-height:var(--vft-notification-icon-size);color:var(--vft-notification-title-color);margin:0}.vft-notification__content{font-size:var(--vft-notification-content-font-size);line-height:24px;margin:6px 0 0;color:var(--vft-notification-content-color);text-align:justify}.vft-notification__content p{margin:0}.vft-notification .vft-notification__icon{height:var(--vft-notification-icon-size);width:var(--vft-notification-icon-size);font-size:var(--vft-notification-icon-size)}.vft-notification .vft-notification__closeBtn{position:absolute;top:18px;right:15px;cursor:pointer;color:var(--vft-notification-close-color);font-size:var(--vft-notification-close-font-size)}.vft-notification .vft-notification__closeBtn:hover{color:var(--vft-notification-close-hover-color)}.vft-notification .vft-notification--success{--vft-notification-icon-color:var(--vft-color-success);color:var(--vft-notification-icon-color)}.vft-notification .vft-notification--info{--vft-notification-icon-color:var(--vft-color-info);color:var(--vft-notification-icon-color)}.vft-notification .vft-notification--warning{--vft-notification-icon-color:var(--vft-color-warning);color:var(--vft-notification-icon-color)}.vft-notification .vft-notification--error{--vft-notification-icon-color:var(--vft-color-error);color:var(--vft-notification-icon-color)}.vft-notification-fade-enter-from.right{right:0;transform:translateX(100%)}.vft-notification-fade-enter-from.left{left:0;transform:translateX(-100%)}.vft-notification-fade-leave-to{opacity:0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-select-dropdown__item{font-size:var(--vft-font-size-base);padding:0 32px 0 20px;position:relative;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;color:var(--vft-text-regular-color);height:34px;line-height:34px;box-sizing:border-box;cursor:pointer}.vft-select-dropdown__item.is-disabled{color:var(--vft-text-placeholder-color);cursor:not-allowed}.vft-select-dropdown__item.hover,.vft-select-dropdown__item:hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown__item.selected{color:var(--vft-primary-color);font-weight:700}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root{--vft-pagination-font-size:14px;--vft-pagination-bg-color:var(--vft-fill-color-blank);--vft-pagination-text-color:var(--vft-text-primary-color);--vft-pagination-border-radius:2px;--vft-pagination-button-color:var(--vft-text-primary-color);--vft-pagination-button-width:32px;--vft-pagination-button-height:32px;--vft-pagination-button-disabled-color:var(--vft-text-placeholder-color);--vft-pagination-button-disabled-bg-color:var(--vft-fill-color-blank);--vft-pagination-button-bg-color:var(--vft-fill-color);--vft-pagination-hover-color:var(--vft-primary-color);--vft-pagination-font-size-small:12px;--vft-pagination-button-width-small:24px;--vft-pagination-button-height-small:24px;--vft-pagination-item-gap:16px}.vft-pagination{white-space:nowrap;color:var(--vft-pagination-text-color);font-size:var(--vft-pagination-font-size);font-weight:400;display:flex;align-items:center}.vft-pagination .vft-input__inner{text-align:center;-moz-appearance:textfield}.vft-pagination .vft-select .vft-input{width:128px}.vft-pagination button{display:flex;justify-content:center;align-items:center;font-size:var(--vft-pagination-font-size);min-width:var(--vft-pagination-button-width);height:var(--vft-pagination-button-height);line-height:var(--vft-pagination-button-height);color:var(--vft-pagination-button-color);background:var(--vft-pagination-bg-color);padding:0 4px;border:none;border-radius:var(--vft-pagination-border-radius);cursor:pointer;text-align:center;box-sizing:border-box}.vft-pagination button .vft-icon{color:inherit}.vft-pagination button *{pointer-events:none}.vft-pagination button:focus{outline:0}.vft-pagination button:hover{color:var(--vft-pagination-hover-color)}.vft-pagination button.is-active{color:var(--vft-pagination-hover-color);cursor:default;font-weight:700}.vft-pagination button.is-active.is-disabled{font-weight:700}.vft-pagination button.is-disabled,.vft-pagination button:disabled{color:var(--vft-pagination-button-disabled-color);background-color:var(--vft-pagination-button-disabled-bg-color);cursor:not-allowed}.vft-pagination button:focus-visible{outline:1px solid var(--vft-pagination-hover-color);outline-offset:-1px}.vft-pagination .btn-next .vft-icon,.vft-pagination .btn-prev .vft-icon{display:block;font-
|
|
1
|
+
:root{--vft-pagination-font-size:14px;--vft-pagination-bg-color:var(--vft-fill-color-blank);--vft-pagination-text-color:var(--vft-text-primary-color);--vft-pagination-border-radius:2px;--vft-pagination-button-color:var(--vft-text-primary-color);--vft-pagination-button-width:32px;--vft-pagination-button-height:32px;--vft-pagination-button-disabled-color:var(--vft-text-placeholder-color);--vft-pagination-button-disabled-bg-color:var(--vft-fill-color-blank);--vft-pagination-button-bg-color:var(--vft-fill-color);--vft-pagination-hover-color:var(--vft-primary-color);--vft-pagination-font-size-small:12px;--vft-pagination-button-width-small:24px;--vft-pagination-button-height-small:24px;--vft-pagination-item-gap:16px}.vft-pagination{white-space:nowrap;color:var(--vft-pagination-text-color);font-size:var(--vft-pagination-font-size);font-weight:400;display:flex;align-items:center}.vft-pagination .vft-input__inner{text-align:center;-moz-appearance:textfield}.vft-pagination .vft-select .vft-input{width:128px}.vft-pagination button{display:flex;justify-content:center;align-items:center;font-size:var(--vft-pagination-font-size);min-width:var(--vft-pagination-button-width);height:var(--vft-pagination-button-height);line-height:var(--vft-pagination-button-height);color:var(--vft-pagination-button-color);background:var(--vft-pagination-bg-color);padding:0 4px;border:none;border-radius:var(--vft-pagination-border-radius);cursor:pointer;text-align:center;box-sizing:border-box}.vft-pagination button .vft-icon{color:inherit}.vft-pagination button *{pointer-events:none}.vft-pagination button:focus{outline:0}.vft-pagination button:hover{color:var(--vft-pagination-hover-color)}.vft-pagination button.is-active{color:var(--vft-pagination-hover-color);cursor:default;font-weight:700}.vft-pagination button.is-active.is-disabled{font-weight:700}.vft-pagination button.is-disabled,.vft-pagination button:disabled{color:var(--vft-pagination-button-disabled-color);background-color:var(--vft-pagination-button-disabled-bg-color);cursor:not-allowed}.vft-pagination button:focus-visible{outline:1px solid var(--vft-pagination-hover-color);outline-offset:-1px}.vft-pagination .btn-next .vft-icon,.vft-pagination .btn-prev .vft-icon{display:block;font-weight:700}.vft-pagination>.is-first{margin-left:0!important}.vft-pagination>.is-last{margin-right:0!important}.vft-pagination .btn-prev{margin-left:var(--vft-pagination-item-gap)}.vft-pagination__sizes{margin-left:var(--vft-pagination-item-gap);font-weight:400;color:var(--vft-text-regular-color)}.vft-pagination__total{margin-left:var(--vft-pagination-item-gap);font-weight:400;color:var(--vft-text-regular-color)}.vft-pagination__total[disabled=true]{color:var(--vft-text-placeholder-color)}.vft-pagination__jump{display:flex;align-items:center;margin-left:var(--vft-pagination-item-gap);font-weight:400;color:var(--vft-text-regular-color)}.vft-pagination__jump[disabled=true]{color:var(--vft-text-placeholder-color)}.vft-pagination__goto{margin-right:8px}.vft-pagination__editor{text-align:center;box-sizing:border-box}.vft-pagination__editor.vft-input{width:56px}.vft-pagination__editor .vft-input__inner::-webkit-inner-spin-button,.vft-pagination__editor .vft-input__inner::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}.vft-pagination__classifier{margin-left:8px}.vft-pagination__rightwrapper{flex:1;display:flex;align-items:center;justify-content:flex-end}.vft-pagination.is-background .btn-next,.vft-pagination.is-background .btn-prev,.vft-pagination.is-background .vft-pager li{margin:0 4px;background-color:var(--vft-pagination-button-bg-color)}.vft-pagination.is-background .btn-next.is-active,.vft-pagination.is-background .btn-prev.is-active,.vft-pagination.is-background .vft-pager li.is-active{background-color:var(--vft-primary-color);color:var(--vft-color-white)}.vft-pagination.is-background .btn-next.is-disabled,.vft-pagination.is-background .btn-next:disabled,.vft-pagination.is-background .btn-prev.is-disabled,.vft-pagination.is-background .btn-prev:disabled,.vft-pagination.is-background .vft-pager li.is-disabled,.vft-pagination.is-background .vft-pager li:disabled{color:var(--vft-text-placeholder-color);background-color:var(--vft-disabled-bg-color)}.vft-pagination.is-background .btn-next.is-disabled.is-active,.vft-pagination.is-background .btn-next:disabled.is-active,.vft-pagination.is-background .btn-prev.is-disabled.is-active,.vft-pagination.is-background .btn-prev:disabled.is-active,.vft-pagination.is-background .vft-pager li.is-disabled.is-active,.vft-pagination.is-background .vft-pager li:disabled.is-active{color:var(--vft-text-secondary-color);background-color:var(--vft-fill-color-dark)}.vft-pagination.is-background .btn-prev{margin-left:var(--vft-pagination-item-gap)}.vft-pagination--small .btn-next,.vft-pagination--small .btn-prev,.vft-pagination--small .vft-pager li{height:var(--vft-pagination-button-height-small);line-height:var(--vft-pagination-button-height-small);font-size:var(--vft-pagination-font-size-small);min-width:var(--vft-pagination-button-width-small)}.vft-pagination--small button,.vft-pagination--small span:not([class*=suffix]){font-size:var(--vft-pagination-font-size-small)}.vft-pagination--small .vft-select .vft-input{width:100px}.vft-pager{-webkit-user-select:none;-moz-user-select:none;user-select:none;list-style:none;font-size:0;padding:0;margin:0;display:flex;align-items:center}.vft-pager li{display:flex;justify-content:center;align-items:center;font-size:var(--vft-pagination-font-size);min-width:var(--vft-pagination-button-width);height:var(--vft-pagination-button-height);line-height:var(--vft-pagination-button-height);color:var(--vft-pagination-button-color);background:var(--vft-pagination-bg-color);padding:0 4px;border:none;border-radius:var(--vft-pagination-border-radius);cursor:pointer;text-align:center;box-sizing:border-box}.vft-pager li .vft-icon{color:inherit}.vft-pager li *{pointer-events:none}.vft-pager li:focus{outline:0}.vft-pager li:hover{color:var(--vft-pagination-hover-color)}.vft-pager li.is-active{color:var(--vft-pagination-hover-color);cursor:default;font-weight:700}.vft-pager li.is-active.is-disabled{font-weight:700}.vft-pager li.is-disabled,.vft-pager li:disabled{color:var(--vft-pagination-button-disabled-color);background-color:var(--vft-pagination-button-disabled-bg-color);cursor:not-allowed}.vft-pager li:focus-visible{outline:1px solid var(--vft-pagination-hover-color);outline-offset:-1px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-progress{position:relative;line-height:1;display:flex;align-items:center}.vft-progress__text{font-size:14px;color:var(--vft-text-color-regular);margin-left:5px;min-width:50px;line-height:1}.vft-progress__text i{vertical-align:middle;display:block}.vft-progress--circle,.vft-progress--dashboard{display:inline-block}.vft-progress--circle .vft-progress__text,.vft-progress--dashboard .vft-progress__text{position:absolute;top:50%;left:0;width:100%;text-align:center;margin:0;transform:translate(0,-50%)}.vft-progress--circle .vft-progress__text i,.vft-progress--dashboard .vft-progress__text i{vertical-align:middle;display:inline-block}.vft-progress--without-text .vft-progress__text{display:none}.vft-progress--without-text .vft-progress-bar{padding-right:0;margin-right:0;display:block}.vft-progress--text-inside .vft-progress-bar{padding-right:0;margin-right:0}.vft-progress.is-success .vft-progress-bar__inner{background-color:var(--vft-success-color)}.vft-progress.is-success .vft-progress__text{color:var(--vft-success-color)}.vft-progress.is-warning .vft-progress-bar__inner{background-color:var(--vft-warning-color)}.vft-progress.is-warning .vft-progress__text{color:var(--vft-warning-color)}.vft-progress.is-exception .vft-progress-bar__inner{background-color:var(--vft-danger-color)}.vft-progress.is-exception .vft-progress__text{color:var(--vft-danger-color)}.vft-progress-bar{flex-grow:1;box-sizing:border-box}.vft-progress-bar__outer{height:6px;border-radius:100px;background-color:var(--vft-border-color-lighter);overflow:hidden;position:relative;vertical-align:middle}.vft-progress-bar__inner{position:absolute;left:0;top:0;height:100%;background-color:var(--vft-primary-color);text-align:right;border-radius:100px;line-height:1;white-space:nowrap;transition:width .6s ease}.vft-progress-bar__inner::after{display:inline-block;content:"";height:100%;vertical-align:middle}.vft-progress-bar__inner--indeterminate{transform:translateZ(0);animation:indeterminate 3s infinite}.vft-progress-bar__inner--striped{background-image:linear-gradient(45deg,rgba(0,0,0,.1) 25%,transparent 25%,transparent 50%,rgba(0,0,0,.1) 50%,rgba(0,0,0,.1) 75%,transparent 75%,transparent);background-size:1.25em 1.25em}.vft-progress-bar__inner--striped.vft-progress-bar__inner--striped-flow{animation:striped-flow 3s linear infinite}.vft-progress-bar__innerText{display:inline-block;vertical-align:middle;color:#fff;font-size:12px;margin:0 5px}@keyframes progress{0%{background-position:0 0}100%{background-position:32px 0}}@keyframes indeterminate{0%{left:-100%}100%{left:100%}}@keyframes striped-flow{0%{background-position:-100%}100%{background-position:100%}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-rate{--vft-rate-height:20px;--vft-rate-font-size:var(--vft-font-size-base);--vft-rate-icon-size:18px;--vft-rate-icon-margin:6px;--vft-rate-void-color:var(--vft-border-color-darker);--vft-rate-fill-color:#f7ba2a;--vft-rate-disabled-void-color:var(--vft-fill-color);--vft-rate-text-color:var(--vft-text-primary-color)}.vft-rate{display:inline-flex;align-items:center;height:32px}.vft-rate:active,.vft-rate:focus{outline:0}.vft-rate__item{cursor:pointer;display:inline-block;position:relative;font-size:0;vertical-align:middle;color:var(--vft-rate-void-color);line-height:normal}.vft-rate .vft-rate__icon{position:relative;display:inline-block;font-size:var(--vft-rate-icon-size);margin-right:var(--vft-rate-icon-margin);transition:var(--vft-transition-duration)}.vft-rate .vft-rate__icon.hover{transform:scale(1.15)}.vft-rate .vft-rate__icon .path2{position:absolute;left:0;top:0}.vft-rate .vft-rate__icon.is-active{color:var(--vft-rate-fill-color)}.vft-rate__decimal{position:absolute;top:0;left:0;display:inline-block;overflow:hidden;color:var(--vft-rate-fill-color)}.vft-rate__text{font-size:var(--vft-rate-font-size);vertical-align:middle;color:var(--vft-rate-text-color)}.vft-rate--large{height:40px}.vft-rate--small{height:24px}.vft-rate--small .vft-rate__icon{font-size:14px}.vft-rate.is-disabled .vft-rate__item{cursor:auto;color:var(--vft-rate-disabled-void-color)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@charset "UTF-8";body{font-family:"Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;font-weight:400;font-size:var(--vft-font-size-base);color:var(--vft-text-color-primary);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;-webkit-tap-highlight-color:transparent}a{color:var(--vft-color-primary);text-decoration:none}a:focus,a:hover{color:var(--vft-primary-color-light-3)}a:active{color:var(--vft-primary-color-dark-2)}h1,h2,h3,h4,h5,h6{color:var(--vft-text-color-regular);font-weight:inherit}h1:first-child,h2:first-child,h3:first-child,h4:first-child,h5:first-child,h6:first-child{margin-top:0}h1:last-child,h2:last-child,h3:last-child,h4:last-child,h5:last-child,h6:last-child{margin-bottom:0}h1{font-size:calc(var(--vft-font-size-base) + 6px)}h2{font-size:calc(var(--vft-font-size-base) + 4px)}h3{font-size:calc(var(--vft-font-size-base) + 2px)}h4,h5,h6,p{font-size:inherit}p{line-height:1.8}p:first-child{margin-top:0}p:last-child{margin-bottom:0}sub,sup{font-size:calc(var(--vft-font-size-base) - 1px)}small{font-size:calc(var(--vft-font-size-base) - 2px)}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid var(--vft-border-color-lighter)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-row{display:flex;flex-wrap:wrap;position:relative;box-sizing:border-box}.vft-row.is-justify-center{justify-content:center}.vft-row.is-justify-end{justify-content:flex-end}.vft-row.is-justify-space-between{justify-content:space-between}.vft-row.is-justify-space-around{justify-content:space-around}.vft-row.is-justify-space-evenly{justify-content:space-evenly}.vft-row.is-align-middle{align-items:center}.vft-row.is-align-bottom{align-items:flex-end}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.vft-search{display:inline-block}
|
|
1
|
+
:root{--vft-search-active-width:100%;--vft-search-border-color:var(--vft-input-border-color);--vft-search-hover-border-color:var(--vft-primary-color);--vft-search-active-bg-color:var(--vft-input-bg-color);--vft-search-hover-bg-color:var(--vft-input-bg-color);--vft-search-border-radius:var(--vft-border-radius-base)}.vft-search{display:inline-block}.vft-search.is-active .vft-input__wrapper{background-color:var(--vft-search-active-bg-color)}.vft-search .vft-input:hover{width:var(--vft-search-active-width)}.vft-search .vft-input .vft-input__wrapper{border:1px solid var(--vft-search-border-color);border-radius:var(--vft-search-border-radius)}.vft-search .vft-input .vft-input__wrapper:hover{background-color:var(--vft-search-hover-bg-color);border:1px solid var(--vft-search-hover-border-color)}.vft-search .vft-input .vft-input__wrapper.is-focus{background-color:var(--vft-search-active-bg-color)}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.vft-select-dropdown{z-index:calc(var(--vft-index-top) + 1);border-radius:var(--vft-border-radius-base);box-sizing:border-box}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected{color:var(--vft-primary-color);background-color:var(--vft-bg-color-overlay)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.is-disabled::after{background-color:var(--vft-text-color
|
|
1
|
+
.vft-select-dropdown{z-index:calc(var(--vft-index-top) + 1);border-radius:var(--vft-border-radius-base);box-sizing:border-box}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected{color:var(--vft-primary-color);background-color:var(--vft-bg-color-overlay)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.is-disabled::after{background-color:var(--vft-text-disabled-color)}.vft-select-dropdown .vft-select-dropdown__option-item.is-selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown .vft-scrollbar.is-empty .vft-select-dropdown__list{padding:0}.vft-select-dropdown .vft-select-dropdown__item.is-disabled:hover{background-color:unset}.vft-select-dropdown .vft-select-dropdown__item.is-disabled.selected{color:var(--vft-text-disabled-color)}.vft-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:var(--vft-text-secondary-color);font-size:var(--vft-select-font-size)}.vft-select-dropdown__wrap{max-height:274px}.vft-select-dropdown__list{list-style:none;padding:6px 0;margin:0;box-sizing:border-box}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.vft-select-dropdown{z-index:calc(var(--vft-index-top) + 1);border-radius:var(--vft-border-radius-base);box-sizing:border-box}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected{color:var(--vft-primary-color);background-color:var(--vft-bg-color-overlay)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.is-disabled::after{background-color:var(--vft-text-color
|
|
1
|
+
.vft-select-dropdown{z-index:calc(var(--vft-index-top) + 1);border-radius:var(--vft-border-radius-base);box-sizing:border-box}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected{color:var(--vft-primary-color);background-color:var(--vft-bg-color-overlay)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.is-disabled::after{background-color:var(--vft-text-disabled-color)}.vft-select-dropdown .vft-select-dropdown__option-item.is-selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown .vft-scrollbar.is-empty .vft-select-dropdown__list{padding:0}.vft-select-dropdown .vft-select-dropdown__item.is-disabled:hover{background-color:unset}.vft-select-dropdown .vft-select-dropdown__item.is-disabled.selected{color:var(--vft-text-disabled-color)}.vft-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:var(--vft-text-secondary-color);font-size:var(--vft-select-font-size)}.vft-select-dropdown__wrap{max-height:274px}.vft-select-dropdown__list{list-style:none;padding:6px 0;margin:0;box-sizing:border-box}.vft-select{--vft-select-border-color-hover:var(--vft-border-color-hover);--vft-select-disabled-border:var(--vft-disabled-border-color);--vft-select-font-size:var(--vft-font-size-base);--vft-select-close-hover-color:var(--vft-text-secondary-color);--vft-select-input-color:var(--vft-text-placeholder-color);--vft-select-multiple-input-color:var(--vft-text-regular-color);--vft-select-input-focus-border-color:var(--vft-primary-color);--vft-select-input-font-size:14px}.vft-select{display:inline-block;position:relative;vertical-align:middle;line-height:32px}.vft-select__popper.vft-popper{background:var(--vft-bg-color-overlay);border:1px solid var(--vft-border-color-light);box-shadow:var(--vft-box-shadow-light)}.vft-select__popper.vft-popper .vft-popper__arrow::before{border:1px solid var(--vft-border-color-light)}.vft-select__popper.vft-popper[data-popper-placement^=top] .vft-popper__arrow::before{border-top-color:transparent;border-left-color:transparent}.vft-select__popper.vft-popper[data-popper-placement^=bottom] .vft-popper__arrow::before{border-bottom-color:transparent;border-right-color:transparent}.vft-select__popper.vft-popper[data-popper-placement^=left] .vft-popper__arrow::before{border-left-color:transparent;border-bottom-color:transparent}.vft-select__popper.vft-popper[data-popper-placement^=right] .vft-popper__arrow::before{border-right-color:transparent;border-top-color:transparent}.vft-select .vft-select-tags-wrapper.has-prefix{margin-left:6px}.vft-select--large{line-height:40px}.vft-select--large .vft-select-tags-wrapper.has-prefix{margin-left:8px}.vft-select--small{line-height:24px}.vft-select--small .vft-select-tags-wrapper.has-prefix{margin-left:4px}.vft-select .vft-select__tags>span{display:inline-block}.vft-select:hover:not(.vft-select--disabled) .vft-input__wrapper{box-shadow:0 0 0 1px var(--vft-select-border-color-hover) inset}.vft-select .vft-select__tags-text{display:inline-block;line-height:normal;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1}.vft-select .vft-input__wrapper{cursor:pointer}.vft-select .vft-input__wrapper.is-focus{box-shadow:0 0 0 1px var(--vft-select-input-focus-border-color) inset!important}.vft-select .vft-input__inner{cursor:pointer}.vft-select .vft-input{display:flex}.vft-select .vft-input .vft-select__caret{color:var(--vft-select-input-color);font-size:var(--vft-select-input-font-size);transition:transform var(--vft-transition-duration);transform:rotateZ(0);cursor:pointer}.vft-select .vft-input .vft-select__caret.is-reverse{transform:rotateZ(-180deg)}.vft-select .vft-input .vft-select__caret.is-show-close{font-size:var(--vft-select-font-size);text-align:center;transform:rotateZ(0);border-radius:var(--vft-border-radius-circle);color:var(--vft-select-input-color);transition:var(--vft-transition-color)}.vft-select .vft-input .vft-select__caret.is-show-close:hover{color:var(--vft-select-close-hover-color)}.vft-select .vft-input .vft-select__caret.vft-icon{position:relative;height:inherit;z-index:2}.vft-select .vft-input.is-disabled .vft-input__wrapper{cursor:not-allowed}.vft-select .vft-input.is-disabled .vft-input__wrapper:hover{box-shadow:0 0 0 1px var(--vft-select-disabled-border) inset}.vft-select .vft-input.is-disabled .vft-input__inner{cursor:not-allowed}.vft-select .vft-input.is-disabled .vft-select__caret{cursor:not-allowed}.vft-select .vft-input.is-focus .vft-input__wrapper{box-shadow:0 0 0 1px var(--vft-select-input-focus-border-color) inset!important}.vft-select__input{border:none;outline:0;padding:0;margin-left:15px;color:var(--vft-select-multiple-input-color);font-size:var(--vft-select-font-size);-webkit-appearance:none;-moz-appearance:none;appearance:none;height:28px;background-color:transparent}.vft-select__input--iOS{position:absolute;left:0;top:0;z-index:6}.vft-select__input.is-small{height:14px}.vft-select__close{cursor:pointer;position:absolute;top:8px;z-index:var(--vft-index-top);right:25px;color:var(--vft-select-input-color);line-height:18px;font-size:var(--vft-select-input-font-size)}.vft-select__close:hover{color:var(--vft-select-close-hover-color)}.vft-select__tags{position:absolute;line-height:normal;top:50%;transform:translateY(-50%);white-space:normal;z-index:var(--vft-index-normal);display:flex;align-items:center;flex-wrap:wrap;cursor:pointer}.vft-select__tags .vft-tag{box-sizing:border-box;border-color:transparent;margin:2px 6px 2px 0}.vft-select__tags .vft-tag:last-child{margin-right:0}.vft-select__tags .vft-tag .vft-icon-close{background-color:var(--vft-text-color-placeholder);right:-7px;top:0;color:#fff}.vft-select__tags .vft-tag .vft-icon-close:hover{background-color:var(--vft-text-color-secondary)}.vft-select__tags .vft-tag .vft-icon-close::before{display:block;transform:translate(0,.5px)}.vft-select__tags .vft-tag--info{background-color:var(--vft-fill-color)}.vft-select__collapse-tags{white-space:normal;z-index:var(--vft-index-normal);display:flex;align-items:center;flex-wrap:wrap;cursor:pointer}.vft-select__collapse-tags .vft-tag{box-sizing:border-box;border-color:transparent;margin:2px 6px 2px 0}.vft-select__collapse-tags .vft-tag:last-child{margin-right:0}.vft-select__collapse-tags .vft-tag .vft-icon-close{background-color:var(--vft-text-color-placeholder);right:-7px;top:0;color:#fff}.vft-select__collapse-tags .vft-tag .vft-icon-close:hover{background-color:var(--vft-text-color-secondary)}.vft-select__collapse-tags .vft-tag .vft-icon-close::before{display:block;transform:translate(0,.5px)}.vft-select__collapse-tags .vft-tag--info{background-color:var(--vft-fill-color)}.vft-select__collapse-tag{line-height:inherit;height:inherit;display:flex}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
.vft-side-menu{--vft-side-menu-border:var(--vft-menu-border-right);--vft-side-menu-scroll-mr:0;transition:width .2s;display:flex;flex-direction:column;border-right:var(--vft-menu-border-right)}.vft-side-menu--fixed{position:fixed;left:0;z-index:1}.vft-side-menu__top{border-bottom:var(--vft-side-menu-border)
|
|
1
|
+
.vft-side-menu{--vft-side-menu-border:var(--vft-menu-border-right);--vft-side-menu-scroll-mr:0;transition:width .2s ease;display:flex;flex-direction:column;border-right:var(--vft-menu-border-right);position:relative;overflow-x:hidden}.vft-side-menu--fixed{position:fixed;left:0;z-index:1}.vft-side-menu__top{border-bottom:var(--vft-side-menu-border)}.vft-side-menu__bottom{border-top:var(--vft-side-menu-border);position:absolute;bottom:0;width:100%}.vft-side-menu__right{position:absolute;right:-10px;top:50%}.vft-side-menu__collapse{cursor:pointer;height:40px;padding:0 16px;display:flex;align-items:center;border-right:none;background-color:var(--vft-menu-bg-color)}.vft-side-menu__collapse .vft-icon{position:absolute;right:20px}.vft-side-menu__con{overflow-y:auto;overflow-y:overlay;overflow-x:hidden}.vft-side-menu .vft-menu{border:none}.vft-side-menu__drag-bar{position:absolute;top:0;z-index:999;right:-1px;width:2px;height:100%;border-top:none;border-bottom:none;cursor:col-resize}.vft-side-menu__drag-bar:hover{background-color:var(--vft-primary-color);box-shadow:var(--vft-box-shadow)}.vft-side-menu__popper{margin-right:var(--vft-side-menu-scroll-mr)}.vft-side-menu__popper .vft-menu--popup{overflow-y:auto;overflow-y:overlay;box-shadow:none;max-height:calc(100vh - 200px)}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar{z-index:11;width:6px}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar:horizontal{height:6px}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#c0c4cc;border:0 solid transparent}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-thumb:hover{background:#c0c4cc}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-corner{background:0 0}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-track{background:0 0}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-track-piece{background:0 0;width:6px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-slider{--vft-slider-main-bg-color:var(--vft-primary-color);--vft-slider-runway-bg-color:var(--vft-border-color-light);--vft-slider-stop-bg-color:var(--vft-color-white);--vft-slider-disabled-color:var(--vft-text-placeholder-color);--vft-slider-border-radius:3px;--vft-slider-height:6px;--vft-slider-button-size:20px;--vft-slider-button-wrapper-size:36px;--vft-slider-button-wrapper-offset:-15px}.vft-slider{width:100%;height:32px;display:flex;align-items:center}.vft-slider__runway{flex:1;height:var(--vft-slider-height);background-color:var(--vft-slider-runway-bg-color);border-radius:var(--vft-slider-border-radius);position:relative;cursor:pointer}.vft-slider__runway.show-input{margin-right:30px;width:auto}.vft-slider__runway.is-disabled{cursor:default}.vft-slider__runway.is-disabled .vft-slider__bar{background-color:var(--vft-slider-disabled-color)}.vft-slider__runway.is-disabled .vft-slider__button{border-color:var(--vft-slider-disabled-color)}.vft-slider__runway.is-disabled .vft-slider__button-wrapper.hover,.vft-slider__runway.is-disabled .vft-slider__button-wrapper:hover{cursor:not-allowed}.vft-slider__runway.is-disabled .vft-slider__button-wrapper.dragging{cursor:not-allowed}.vft-slider__runway.is-disabled .vft-slider__button.dragging,.vft-slider__runway.is-disabled .vft-slider__button.hover,.vft-slider__runway.is-disabled .vft-slider__button:hover{transform:scale(1)}.vft-slider__runway.is-disabled .vft-slider__button.hover,.vft-slider__runway.is-disabled .vft-slider__button:hover{cursor:not-allowed}.vft-slider__runway.is-disabled .vft-slider__button.dragging{cursor:not-allowed}.vft-slider__input{flex-shrink:0;width:130px}.vft-slider__bar{height:var(--vft-slider-height);background-color:var(--vft-slider-main-bg-color);border-top-left-radius:var(--vft-slider-border-radius);border-bottom-left-radius:var(--vft-slider-border-radius);position:absolute}.vft-slider__button-wrapper{height:var(--vft-slider-button-wrapper-size);width:var(--vft-slider-button-wrapper-size);position:absolute;z-index:1;top:var(--vft-slider-button-wrapper-offset);transform:translateX(-50%);background-color:transparent;text-align:center;-webkit-user-select:none;-moz-user-select:none;user-select:none;line-height:normal;outline:0}.vft-slider__button-wrapper::after{display:inline-block;content:"";height:100%;vertical-align:middle}.vft-slider__button-wrapper.hover,.vft-slider__button-wrapper:hover{cursor:grab}.vft-slider__button-wrapper.dragging{cursor:grabbing}.vft-slider__button{display:inline-block;width:var(--vft-slider-button-size);height:var(--vft-slider-button-size);vertical-align:middle;border:solid 2px var(--vft-slider-main-bg-color);background-color:var(--vft-color-white);border-radius:50%;box-sizing:border-box;transition:var(--vft-transition-duration-fast);-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-slider__button.dragging,.vft-slider__button.hover,.vft-slider__button:hover{transform:scale(1.2)}.vft-slider__button.hover,.vft-slider__button:hover{cursor:grab}.vft-slider__button.dragging{cursor:grabbing}.vft-slider__stop{position:absolute;height:var(--vft-slider-height);width:var(--vft-slider-height);border-radius:var(--vft-border-radius-circle);background-color:var(--vft-slider-stop-bg-color);transform:translateX(-50%)}.vft-slider__marks{top:0;left:12px;width:18px;height:100%}.vft-slider__marks-text{position:absolute;transform:translateX(-50%);font-size:14px;color:var(--vft-info-color);margin-top:15px;white-space:pre}.vft-slider.is-vertical{position:relative;display:inline-flex;width:auto;height:100%;flex:0}.vft-slider.is-vertical .vft-slider__runway{width:var(--vft-slider-height);height:100%;margin:0 16px}.vft-slider.is-vertical .vft-slider__bar{width:var(--vft-slider-height);height:auto;border-radius:0 0 3px 3px}.vft-slider.is-vertical .vft-slider__button-wrapper{top:auto;left:var(--vft-slider-button-wrapper-offset);transform:translateY(50%)}.vft-slider.is-vertical .vft-slider__stop{transform:translateY(50%)}.vft-slider.is-vertical .vft-slider__marks-text{margin-top:0;left:15px;transform:translateY(50%)}.vft-slider--large{height:40px}.vft-slider--small{height:24px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-space{display:inline-flex;vertical-align:top}.vft-space__item{display:flex;flex-wrap:wrap}.vft-space__item>*{flex:1}.vft-space--vertical{flex-direction:column}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-time-spinner{width:100%;white-space:nowrap}.vft-spinner{display:inline-block;vertical-align:middle}.vft-spinner-inner{animation:rotate 2s linear infinite;width:50px;height:50px}.vft-spinner-inner .path{stroke:var(--vft-border-color-lighter);stroke-linecap:round;animation:dash 1.5s ease-in-out infinite}@keyframes rotate{100%{transform:rotate(360deg)}}@keyframes dash{0%{stroke-dasharray:1,150;stroke-dashoffset:0}50%{stroke-dasharray:90,150;stroke-dashoffset:-35}100%{stroke-dasharray:90,150;stroke-dashoffset:-124}}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-statistic{--vft-statistic-title-font-weight:400;--vft-statistic-title-font-size:var(--vft-font-size-extra-small);--vft-statistic-title-color:var(--vft-text-regular-color);--vft-statistic-content-font-weight:400;--vft-statistic-content-font-size:var(--vft-font-size-extra-large);--vft-statistic-content-color:var(--vft-text-primary-color)}.vft-statistic__head{font-weight:var(--vft-statistic-title-font-weight);font-size:var(--vft-statistic-title-font-size);color:var(--vft-statistic-title-color);line-height:20px;margin-bottom:4px}.vft-statistic__content{font-weight:var(--vft-statistic-content-font-weight);font-size:var(--vft-statistic-content-font-size);color:var(--vft-statistic-content-color)}.vft-statistic__value{display:inline-block}.vft-statistic__prefix{margin-right:4px;display:inline-block}.vft-statistic__suffix{margin-left:4px;display:inline-block}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-step{position:relative;flex-shrink:1}.vft-step:last-of-type .vft-step__line{display:none}.vft-step:last-of-type.is-flex{flex-basis:auto!important;flex-shrink:0;flex-grow:0}.vft-step:last-of-type .vft-step__description,.vft-step:last-of-type .vft-step__main{padding-right:0}.vft-step__head{position:relative;width:100%}.vft-step__head.is-process{color:var(--vft-text-color-primary);border-color:var(--vft-text-color-primary)}.vft-step__head.is-wait{color:var(--vft-text-color-placeholder);border-color:var(--vft-text-color-placeholder)}.vft-step__head.is-success{color:var(--vft-success-color);border-color:var(--vft-success-color)}.vft-step__head.is-error{color:var(--vft-danger-color);border-color:var(--vft-danger-color)}.vft-step__head.is-finish{color:var(--vft-primary-color);border-color:var(--vft-primary-color)}.vft-step__icon{position:relative;z-index:1;display:inline-flex;justify-content:center;align-items:center;width:24px;height:24px;font-size:14px;box-sizing:border-box;background:var(--vft-bg-color);transition:.15s ease-out}.vft-step__icon.is-text{border-radius:50%;border:2px solid;border-color:inherit}.vft-step__icon.is-icon{width:40px}.vft-step__icon-inner{display:inline-block;-webkit-user-select:none;-moz-user-select:none;user-select:none;text-align:center;font-weight:700;line-height:1;color:inherit}.vft-step__icon-inner[class*=vft-icon]:not(.is-status){font-size:25px;font-weight:400}.vft-step__icon-inner.is-status{transform:translateY(1px)}.vft-step__line{position:absolute;border-color:inherit;background-color:var(--vft-text-color-placeholder)}.vft-step__line-inner{display:block;border-width:1px;border-style:solid;border-color:inherit;transition:.15s ease-out;box-sizing:border-box;width:0;height:0}.vft-step__main{white-space:normal;text-align:left}.vft-step__title{font-size:16px;line-height:38px}.vft-step__title.is-process{font-weight:700;color:var(--vft-text-color-primary)}.vft-step__title.is-wait{color:var(--vft-text-color-placeholder)}.vft-step__title.is-success{color:var(--vft-success-color)}.vft-step__title.is-error{color:var(--vft-danger-color)}.vft-step__title.is-finish{color:var(--vft-primary-color)}.vft-step__description{padding-right:10%;margin-top:-5px;font-size:12px;line-height:20px;font-weight:400}.vft-step__description.is-process{color:var(--vft-text-color-primary)}.vft-step__description.is-wait{color:var(--vft-text-color-placeholder)}.vft-step__description.is-success{color:var(--vft-success-color)}.vft-step__description.is-error{color:var(--vft-danger-color)}.vft-step__description.is-finish{color:var(--vft-primary-color)}.vft-step.is-horizontal{display:inline-block}.vft-step.is-horizontal .vft-step__line{height:2px;top:11px;left:0;right:0}.vft-step.is-vertical{display:flex}.vft-step.is-vertical .vft-step__head{flex-grow:0;width:24px}.vft-step.is-vertical .vft-step__main{padding-left:10px;flex-grow:1}.vft-step.is-vertical .vft-step__title{line-height:24px;padding-bottom:8px}.vft-step.is-vertical .vft-step__line{width:2px;top:0;bottom:0;left:11px}.vft-step.is-vertical .vft-step__icon.is-icon{width:24px}.vft-step.is-center .vft-step__head{text-align:center}.vft-step.is-center .vft-step__main{text-align:center}.vft-step.is-center .vft-step__description{padding-left:20%;padding-right:20%}.vft-step.is-center .vft-step__line{left:50%;right:-50%}.vft-step.is-simple{display:flex;align-items:center}.vft-step.is-simple .vft-step__head{width:auto;font-size:0;padding-right:10px}.vft-step.is-simple .vft-step__icon{background:0 0;width:16px;height:16px;font-size:12px}.vft-step.is-simple .vft-step__icon-inner[class*=vft-icon]:not(.is-status){font-size:18px}.vft-step.is-simple .vft-step__icon-inner.is-status{transform:scale(.8) translateY(1px)}.vft-step.is-simple .vft-step__main{position:relative;display:flex;align-items:stretch;flex-grow:1}.vft-step.is-simple .vft-step__title{font-size:16px;line-height:20px}.vft-step.is-simple:not(:last-of-type) .vft-step__title{max-width:50%;word-break:break-all}.vft-step.is-simple .vft-step__arrow{flex-grow:1;display:flex;align-items:center;justify-content:center}.vft-step.is-simple .vft-step__arrow::after,.vft-step.is-simple .vft-step__arrow::before{content:"";display:inline-block;position:absolute;height:15px;width:1px;background:var(--vft-text-color-placeholder)}.vft-step.is-simple .vft-step__arrow::before{transform:rotate(-45deg) translateY(-4px);transform-origin:0 0}.vft-step.is-simple .vft-step__arrow::after{transform:rotate(45deg) translateY(4px);transform-origin:100% 100%}.vft-step.is-simple:last-of-type .vft-step__arrow{display:none}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-steps{display:flex}.vft-steps--simple{padding:13px 8%;border-radius:4px;background:var(--vft-fill-color-light)}.vft-steps--horizontal{white-space:nowrap}.vft-steps--vertical{height:100%;flex-flow:column}
|