vft 0.0.48 → 0.0.51
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/dist/index.css +1 -1
- package/es/comp-resolver.js +30 -19
- package/es/component.js +79 -50
- package/es/components/alert/alert.vue.d.ts +102 -0
- package/es/components/alert/alert.vue.js +4 -0
- package/es/components/alert/alert.vue2.js +94 -0
- package/es/components/alert/index.d.ts +73 -0
- package/es/components/alert/index.js +12 -0
- package/es/components/alert/style/css.d.ts +0 -0
- package/es/components/alert/style/css.js +2 -0
- package/es/components/alert/style/index.d.ts +0 -0
- package/es/components/alert/style/index.js +2 -0
- package/es/components/alert/types.d.ts +4 -0
- package/es/components/avatar/avatar.vue.d.ts +6 -14
- package/es/components/avatar/avatar.vue2.js +35 -28
- package/es/components/avatar/index.d.ts +6 -14
- package/es/components/avatar/index.js +5 -4
- package/es/components/avatar/style/css.js +2 -0
- package/es/components/avatar/style/index.js +2 -0
- package/es/components/back-top/back-top.vue2.js +20 -2
- package/es/components/back-top/index.js +5 -4
- package/es/components/back-top/use-back-top.js +1 -1
- package/es/components/button/button-custom.d.ts +4 -0
- package/es/components/button/button-custom.js +59 -0
- package/es/components/button/button-group.vue.d.ts +23 -0
- package/es/components/button/button-group.vue.js +4 -0
- package/es/components/button/button-group.vue2.js +39 -0
- package/es/components/button/button.vue.d.ts +189 -0
- package/es/components/button/button.vue.js +4 -0
- package/es/components/button/button.vue2.js +102 -0
- package/es/components/button/constants.d.ts +7 -0
- package/es/components/button/constants.js +6 -0
- package/es/components/button/index.d.ts +203 -0
- package/es/components/button/index.js +18 -0
- package/es/components/button/instance.d.ts +4 -0
- package/es/components/button/instance.js +1 -0
- package/es/components/button/style/css.d.ts +0 -0
- package/es/components/button/style/css.js +2 -0
- package/es/components/button/style/index.d.ts +0 -0
- package/es/components/button/style/index.js +2 -0
- package/es/components/button/types.d.ts +4 -0
- package/es/components/button/types.js +1 -0
- package/es/components/button/use-button.d.ts +10 -0
- package/es/components/button/use-button.js +39 -0
- package/es/components/button-group/style/css.d.ts +0 -0
- package/es/components/button-group/style/css.js +2 -0
- package/es/components/button-group/style/index.d.ts +0 -0
- package/es/components/button-group/style/index.js +2 -0
- package/es/components/checkbox/checkbox-button.vue.d.ts +137 -0
- package/es/components/checkbox/checkbox-button.vue.js +4 -0
- package/es/components/checkbox/checkbox-button.vue2.js +108 -0
- package/es/components/checkbox/checkbox-group.vue.d.ts +112 -0
- package/es/components/checkbox/checkbox-group.vue.js +4 -0
- package/es/components/checkbox/checkbox-group.vue2.js +82 -0
- package/es/components/checkbox/checkbox.vue.d.ts +141 -0
- package/es/components/checkbox/checkbox.vue.js +4 -0
- package/es/components/checkbox/checkbox.vue2.js +130 -0
- package/es/components/checkbox/composables/index.d.ts +5 -0
- package/es/components/checkbox/composables/index.js +12 -0
- package/es/components/checkbox/composables/use-checkbox-disabled.d.ts +6 -0
- package/es/components/checkbox/composables/use-checkbox-disabled.js +24 -0
- package/es/components/checkbox/composables/use-checkbox-event.d.ts +7 -0
- package/es/components/checkbox/composables/use-checkbox-event.js +52 -0
- package/es/components/checkbox/composables/use-checkbox-model.d.ts +7 -0
- package/es/components/checkbox/composables/use-checkbox-model.js +24 -0
- package/es/components/checkbox/composables/use-checkbox-status.d.ts +11 -0
- package/es/components/checkbox/composables/use-checkbox-status.js +33 -0
- package/es/components/checkbox/composables/use-checkbox.d.ts +15 -0
- package/es/components/checkbox/composables/use-checkbox.js +47 -0
- package/es/components/checkbox/constants.d.ts +8 -0
- package/es/components/checkbox/constants.js +4 -0
- package/es/components/checkbox/index.d.ts +556 -0
- package/es/components/checkbox/index.js +21 -0
- package/es/components/checkbox/style/css.d.ts +0 -0
- package/es/components/checkbox/style/css.js +2 -0
- package/es/components/checkbox/style/index.d.ts +0 -0
- package/es/components/checkbox/style/index.js +2 -0
- package/es/components/checkbox/types.d.ts +2 -0
- package/es/components/checkbox/types.js +1 -0
- package/es/components/checkbox-button/style/css.d.ts +0 -0
- package/es/components/checkbox-button/style/css.js +2 -0
- package/es/components/checkbox-button/style/index.d.ts +0 -0
- package/es/components/checkbox-button/style/index.js +2 -0
- package/es/components/checkbox-group/style/css.d.ts +0 -0
- package/es/components/checkbox-group/style/css.js +2 -0
- package/es/components/checkbox-group/style/index.d.ts +0 -0
- package/es/components/checkbox-group/style/index.js +2 -0
- package/es/components/clamp/clamp.vue2.js +12 -10
- package/es/components/clamp/index.js +5 -4
- package/es/components/clamp-toggle/clamp-toggle.vue.d.ts +4 -4
- package/es/components/clamp-toggle/clamp-toggle.vue2.js +11 -9
- package/es/components/clamp-toggle/index.d.ts +4 -4
- package/es/components/clamp-toggle/index.js +5 -4
- package/es/components/collapse-transition/src/collapse-transition.vue2.js +7 -5
- package/es/components/collection/collection-item.vue.d.ts +2 -0
- package/es/components/collection/collection-item.vue.js +4 -0
- package/es/components/collection/collection-item.vue2.js +13 -0
- package/es/components/collection/collection.d.ts +242 -0
- package/es/components/collection/collection.js +55 -0
- package/es/components/collection/collection.vue.d.ts +2 -0
- package/es/components/collection/collection.vue.js +4 -0
- package/es/components/collection/collection.vue2.js +13 -0
- package/es/components/collection/index.d.ts +2 -0
- package/es/components/collection/index.js +5 -0
- package/es/components/collection/tokens.d.ts +12 -0
- package/es/components/collection/tokens.js +1 -0
- package/es/components/color-picker/color-picker.vue.d.ts +124 -0
- package/es/components/color-picker/color-picker.vue.js +4 -0
- package/es/components/color-picker/color-picker.vue2.js +269 -0
- package/es/components/color-picker/components/alpha-slider.vue.d.ts +42 -0
- package/es/components/color-picker/components/alpha-slider.vue.js +4 -0
- package/es/components/color-picker/components/alpha-slider.vue2.js +55 -0
- package/es/components/color-picker/components/hue-slider.vue.d.ts +44 -0
- package/es/components/color-picker/components/hue-slider.vue.js +26 -0
- package/es/components/color-picker/components/hue-slider.vue2.js +102 -0
- package/es/components/color-picker/components/predefine.vue.d.ts +43 -0
- package/es/components/color-picker/components/predefine.vue.js +31 -0
- package/es/components/color-picker/components/predefine.vue2.js +55 -0
- package/es/components/color-picker/components/sv-panel.vue.d.ts +42 -0
- package/es/components/color-picker/components/sv-panel.vue.js +32 -0
- package/es/components/color-picker/components/sv-panel.vue2.js +65 -0
- package/es/components/color-picker/composables/use-alpha-slider.d.ts +20 -0
- package/es/components/color-picker/composables/use-alpha-slider.js +109 -0
- package/es/components/color-picker/contants.d.ts +5 -0
- package/es/components/color-picker/contants.js +6 -0
- package/es/components/color-picker/index.d.ts +106 -0
- package/es/components/color-picker/index.js +12 -0
- package/es/components/color-picker/style/css.d.ts +0 -0
- package/es/components/color-picker/style/css.js +4 -0
- package/es/components/color-picker/style/index.d.ts +0 -0
- package/es/components/color-picker/style/index.js +4 -0
- package/es/components/color-picker/utils/color.d.ts +29 -0
- package/es/components/color-picker/utils/color.js +201 -0
- package/es/components/color-picker/utils/draggable.d.ts +6 -0
- package/es/components/color-picker/utils/draggable.js +20 -0
- package/es/components/config-provider/config-provider.vue.d.ts +29 -0
- package/es/components/config-provider/config-provider.vue2.js +14 -11
- package/es/components/config-provider/constants.d.ts +1 -1
- package/es/components/config-provider/hooks/use-global-config.d.ts +1 -1
- package/es/components/config-provider/hooks/use-global-config.js +11 -9
- package/es/components/config-provider/index.d.ts +8 -1
- package/es/components/config-provider/index.js +12 -11
- package/es/components/context-menu/context-menu.vue2.js +43 -25
- package/es/components/descriptions/description-item.vue2.js +8 -6
- package/es/components/descriptions/description.vue2.js +27 -25
- package/es/components/descriptions/descriptions-cell.js +13 -11
- package/es/components/descriptions/descriptions-row.vue2.js +15 -13
- package/es/components/descriptions/index.js +7 -6
- package/es/components/dialog/constants.d.ts +11 -0
- package/es/components/dialog/constants.js +4 -0
- package/es/components/dialog/dialog-content.vue.d.ts +81 -0
- package/es/components/dialog/dialog-content.vue.js +4 -0
- package/es/components/dialog/dialog-content.vue2.js +92 -0
- package/es/components/dialog/dialog.vue.d.ts +164 -0
- package/es/components/dialog/dialog.vue.js +4 -0
- package/es/components/dialog/dialog.vue2.js +189 -0
- package/es/components/dialog/hooks/use-dialog.d.ts +23 -0
- package/es/components/dialog/hooks/use-dialog.js +106 -0
- package/es/components/dialog/index.d.ts +146 -0
- package/es/components/dialog/index.js +16 -0
- package/es/components/dialog/style/css.d.ts +0 -0
- package/es/components/dialog/style/css.js +3 -0
- package/es/components/dialog/style/index.d.ts +0 -0
- package/es/components/dialog/style/index.js +3 -0
- package/es/components/dialog/types.d.ts +10 -0
- package/es/components/dialog/types.js +1 -0
- package/es/components/divider/divider.vue.d.ts +2 -2
- package/es/components/divider/divider.vue2.js +9 -7
- package/es/components/divider/index.d.ts +2 -2
- package/es/components/divider/index.js +5 -4
- package/es/components/docs-layout/style/css.d.ts +0 -0
- package/es/components/docs-layout/style/css.js +2 -0
- package/es/components/docs-layout/style/index.d.ts +0 -0
- package/es/components/docs-layout/style/index.js +2 -0
- package/es/components/dropdown/dropdown-item-impl.vue.d.ts +57 -0
- package/es/components/dropdown/dropdown-item-impl.vue.js +33 -0
- package/es/components/dropdown/dropdown-item-impl.vue2.js +77 -0
- package/es/components/dropdown/dropdown-item.vue.d.ts +43 -0
- package/es/components/dropdown/dropdown-item.vue.js +35 -0
- package/es/components/dropdown/dropdown-item.vue2.js +81 -0
- package/es/components/dropdown/dropdown-menu.vue.d.ts +22 -0
- package/es/components/dropdown/dropdown-menu.vue.js +24 -0
- package/es/components/dropdown/dropdown-menu.vue2.js +95 -0
- package/es/components/dropdown/dropdown.vue.d.ts +828 -0
- package/es/components/dropdown/dropdown.vue.js +129 -0
- package/es/components/dropdown/dropdown.vue2.js +220 -0
- package/es/components/dropdown/index.d.ts +959 -0
- package/es/components/dropdown/index.js +28 -0
- package/es/components/dropdown/style/css.d.ts +0 -0
- package/es/components/dropdown/style/css.js +2 -0
- package/es/components/dropdown/style/index.d.ts +0 -0
- package/es/components/dropdown/style/index.js +2 -0
- package/es/components/dropdown/tokens.d.ts +10 -0
- package/es/components/dropdown/tokens.js +4 -0
- package/es/components/dropdown/types.d.ts +267 -0
- package/es/components/dropdown/types.js +21 -0
- package/es/components/dropdown/useDropdown.d.ts +6 -0
- package/es/components/dropdown/useDropdown.js +59 -0
- package/es/components/dropdown-item/style/css.d.ts +0 -0
- package/es/components/dropdown-item/style/css.js +2 -0
- package/es/components/dropdown-item/style/index.d.ts +0 -0
- package/es/components/dropdown-item/style/index.js +2 -0
- package/es/components/dropdown-menu/style/css.d.ts +0 -0
- package/es/components/dropdown-menu/style/css.js +2 -0
- package/es/components/dropdown-menu/style/index.d.ts +0 -0
- package/es/components/dropdown-menu/style/index.js +2 -0
- package/es/components/empty/empty.vue.d.ts +11 -2
- package/es/components/empty/empty.vue2.js +11 -9
- package/es/components/empty/index.d.ts +2 -2
- package/es/components/empty/index.js +7 -6
- package/es/components/exception/exception.vue2.js +14 -13
- package/es/components/exception/index.js +5 -4
- package/es/components/focus-trap/focus-trap.vue.d.ts +1 -1
- package/es/components/footer-layout/footer-layout.vue2.js +15 -13
- package/es/components/footer-layout/index.js +5 -4
- package/es/components/form/form-item.vue.d.ts +28 -15
- package/es/components/form/form-item.vue2.js +54 -52
- package/es/components/form/form-label-wrap.js +16 -14
- package/es/components/form/form.vue.d.ts +10 -10
- package/es/components/form/form.vue2.js +12 -10
- package/es/components/form/hooks/use-form-common-props.d.ts +2 -2
- package/es/components/form/hooks/use-form-common-props.js +5 -3
- package/es/components/form/hooks/use-form-item.d.ts +2 -2
- package/es/components/form/hooks/use-form-item.js +16 -14
- package/es/components/form/index.d.ts +54 -28
- package/es/components/form/index.js +20 -19
- package/es/components/form/utils.js +11 -10
- package/es/components/full-screen/full-screen.vue2.js +8 -6
- package/es/components/full-screen/index.js +5 -4
- package/es/components/header-layout/header-layout.vue2.js +7 -5
- package/es/components/header-layout/index.js +5 -4
- package/es/components/icon/icon.vue.d.ts +12 -3
- package/es/components/icon/icon.vue2.js +25 -22
- package/es/components/icon/index.d.ts +10 -2
- package/es/components/icon/index.js +6 -5
- package/es/components/icon-text/icon-text.vue.d.ts +4 -4
- package/es/components/icon-text/icon-text.vue2.js +12 -10
- package/es/components/icon-text/index.d.ts +4 -4
- package/es/components/icon-text/index.js +5 -4
- package/es/components/iframe-layout/iframe-layout.vue2.js +8 -6
- package/es/components/iframe-layout/iframe-page.vue2.js +13 -11
- package/es/components/iframe-layout/index.js +5 -4
- package/es/components/image/image.vue.d.ts +17 -3
- package/es/components/image/image.vue2.js +106 -69
- package/es/components/image/index.d.ts +4 -3
- package/es/components/image/index.js +5 -4
- package/es/components/image/style/css.js +1 -0
- package/es/components/image/style/index.js +1 -0
- package/es/components/image-viewer/image-viewer.vue.d.ts +88 -0
- package/es/components/image-viewer/image-viewer.vue.js +4 -0
- package/es/components/image-viewer/image-viewer.vue2.js +296 -0
- package/es/components/image-viewer/index.d.ts +77 -0
- package/es/components/image-viewer/index.js +12 -0
- package/es/components/image-viewer/style/css.d.ts +0 -0
- package/es/components/image-viewer/style/css.js +2 -0
- package/es/components/image-viewer/style/index.d.ts +0 -0
- package/es/components/image-viewer/style/index.js +2 -0
- package/es/components/image-viewer/types.d.ts +1 -0
- package/es/components/image-viewer/types.js +1 -0
- package/es/components/index.d.ts +12 -0
- package/es/components/index.js +195 -132
- package/es/components/input/index.d.ts +15 -15
- package/es/components/input/index.js +5 -4
- package/es/components/input/input.vue.d.ts +15 -15
- package/es/components/input/input.vue2.js +24 -23
- package/es/components/link/index.d.ts +2 -2
- package/es/components/link/index.js +5 -4
- package/es/components/link/link.vue.d.ts +2 -2
- package/es/components/link/link.vue2.js +8 -6
- package/es/components/loading/index.d.ts +2 -1
- package/es/components/loading/loading.d.ts +2 -1
- package/es/components/loading/loading.js +8 -6
- package/es/components/loading/service.js +4 -2
- package/es/components/logo/index.js +5 -4
- package/es/components/logo/logo.vue2.js +13 -11
- package/es/components/md-code-demo/index.js +5 -4
- package/es/components/md-code-demo/md-code-demo.js +4 -2
- package/es/components/md-code-tabs/index.js +5 -4
- package/es/components/md-comment/index.js +5 -4
- package/es/components/md-comment/md-comment.vue2.js +10 -8
- package/es/components/md-container/index.js +5 -4
- package/es/components/md-container/md-container.vue2.js +32 -14
- package/es/components/md-container/style/css.js +5 -0
- package/es/components/md-container/style/index.js +4 -0
- package/es/components/md-tabs/index.js +5 -4
- package/es/components/md-vue-playground/index.js +5 -4
- package/es/components/md-vue-playground/md-vue-playground.vue2.js +12 -10
- package/es/components/menu/index.d.ts +4 -4
- package/es/components/menu/index.js +12 -11
- package/es/components/menu/menu-collapse-transition.vue2.js +4 -2
- package/es/components/menu/menu-item-group.vue2.js +15 -13
- package/es/components/menu/menu-item.vue2.js +56 -38
- package/es/components/menu/menu.vue.d.ts +4 -4
- package/es/components/menu/menu.vue2.js +5 -3
- package/es/components/menu/sub-menu.vue2.js +74 -56
- package/es/components/menu/use-menu-css-var.js +4 -2
- package/es/components/message/index.js +9 -8
- package/es/components/message/message.vue.d.ts +16 -0
- package/es/components/message/message.vue2.js +84 -82
- package/es/components/message/method.js +52 -56
- package/es/components/multiple-tabs/multiple-tabs.vue2.js +94 -75
- package/es/components/multiple-tabs/tab-content.vue2.js +24 -6
- package/es/components/overlay/index.d.ts +2 -2
- package/es/components/overlay/index.js +5 -4
- package/es/components/overlay/overlay.vue.d.ts +2 -2
- package/es/components/overlay/overlay.vue2.js +17 -15
- package/es/components/page-wrapper/index.js +5 -4
- package/es/components/page-wrapper/page-wrapper.vue2.js +10 -8
- package/es/components/pagination/components/jumper.vue2.js +16 -14
- package/es/components/pagination/components/pager.vue2.js +4 -2
- package/es/components/pagination/components/sizes.vue2.js +4 -2
- package/es/components/pagination/components/total.vue2.js +6 -4
- package/es/components/pagination/index.d.ts +116 -73
- package/es/components/pagination/index.js +6 -7
- package/es/components/pagination/pagination.vue.d.ts +185 -0
- package/es/components/pagination/pagination.vue.js +4 -0
- package/es/components/pagination/pagination.vue2.js +191 -0
- package/es/components/pagination/usePagination.d.ts +3 -3
- package/es/components/pagination/usePagination.js +4 -4
- package/es/components/popover/index.js +5 -4
- package/es/components/popover/popover.vue2.js +4 -2
- package/es/components/popper/arrow.vue2.js +4 -2
- package/es/components/popper/composables/use-content-dom.js +9 -7
- package/es/components/popper/composables/use-content.d.ts +4 -4
- package/es/components/popper/composables/use-content.js +4 -2
- package/es/components/popper/content.vue.d.ts +3 -3
- package/es/components/popper/index.d.ts +2 -2
- package/es/components/popper/index.js +11 -10
- package/es/components/popper/popper.vue.d.ts +2 -2
- package/es/components/popper/trigger.vue2.js +4 -2
- package/es/components/qrcode/index.js +5 -4
- package/es/components/qrcode/qrcode.vue2.js +10 -8
- package/es/components/radio/constants.d.ts +6 -0
- package/es/components/radio/constants.js +4 -0
- package/es/components/radio/index.d.ts +294 -0
- package/es/components/radio/index.js +21 -0
- package/es/components/radio/radio-button.vue.d.ts +44 -0
- package/es/components/radio/radio-button.vue.js +4 -0
- package/es/components/radio/radio-button.vue2.js +70 -0
- package/es/components/radio/radio-group.vue.d.ts +96 -0
- package/es/components/radio/radio-group.vue.js +4 -0
- package/es/components/radio/radio-group.vue2.js +74 -0
- package/es/components/radio/radio.vue.d.ts +65 -0
- package/es/components/radio/radio.vue.js +4 -0
- package/es/components/radio/radio.vue2.js +90 -0
- package/es/components/radio/style/css.d.ts +0 -0
- package/es/components/radio/style/css.js +2 -0
- package/es/components/radio/style/index.d.ts +0 -0
- package/es/components/radio/style/index.js +2 -0
- package/es/components/radio/use-radio.d.ts +15 -0
- package/es/components/radio/use-radio.js +28 -0
- package/es/components/radio-button/style/css.d.ts +0 -0
- package/es/components/radio-button/style/css.js +2 -0
- package/es/components/radio-button/style/index.d.ts +0 -0
- package/es/components/radio-button/style/index.js +2 -0
- package/es/components/radio-group/style/css.d.ts +0 -0
- package/es/components/radio-group/style/css.js +2 -0
- package/es/components/radio-group/style/index.d.ts +0 -0
- package/es/components/radio-group/style/index.js +2 -0
- package/es/components/result/index.js +5 -4
- package/es/components/result/result.vue2.js +20 -2
- package/es/components/router-view-content/index.js +5 -4
- package/es/components/router-view-content/router-view-content.vue2.js +8 -6
- package/es/components/roving-focus-group/index.d.ts +10 -0
- package/es/components/roving-focus-group/index.js +23 -0
- package/es/components/roving-focus-group/roving-focus-group-impl.vue.d.ts +48 -0
- package/es/components/roving-focus-group/roving-focus-group-impl.vue.js +10 -0
- package/es/components/roving-focus-group/roving-focus-group-impl.vue2.js +112 -0
- package/es/components/roving-focus-group/roving-focus-group.vue.d.ts +2 -0
- package/es/components/roving-focus-group/roving-focus-group.vue.js +21 -0
- package/es/components/roving-focus-group/roving-focus-group.vue2.js +13 -0
- package/es/components/roving-focus-group/roving-focus-item.vue.d.ts +32 -0
- package/es/components/roving-focus-group/roving-focus-item.vue.js +20 -0
- package/es/components/roving-focus-group/roving-focus-item.vue2.js +106 -0
- package/es/components/roving-focus-group/tokens.d.ts +37 -0
- package/es/components/roving-focus-group/tokens.js +5 -0
- package/es/components/roving-focus-group/types.d.ts +252 -0
- package/es/components/roving-focus-group/types.js +13 -0
- package/es/components/roving-focus-group/utils.d.ts +8 -0
- package/es/components/roving-focus-group/utils.js +36 -0
- package/es/components/scrollbar/bar.vue.d.ts +54 -0
- package/es/components/scrollbar/bar.vue.js +4 -0
- package/es/components/scrollbar/bar.vue2.js +41 -0
- package/es/components/scrollbar/constants.d.ts +6 -0
- package/es/components/scrollbar/constants.js +6 -0
- package/es/components/scrollbar/index.d.ts +113 -0
- package/es/components/scrollbar/index.js +23 -0
- package/es/components/scrollbar/scrollbar.vue.d.ts +163 -0
- package/es/components/scrollbar/scrollbar.vue.js +4 -0
- package/es/components/scrollbar/scrollbar.vue2.js +154 -0
- package/es/components/scrollbar/style/css.d.ts +0 -0
- package/es/components/scrollbar/style/css.js +2 -0
- package/es/components/scrollbar/style/index.d.ts +0 -0
- package/es/components/scrollbar/style/index.js +2 -0
- package/es/components/scrollbar/thumb.vue.d.ts +52 -0
- package/es/components/scrollbar/thumb.vue.js +4 -0
- package/es/components/scrollbar/thumb.vue2.js +113 -0
- package/es/components/scrollbar/types.d.ts +2 -0
- package/es/components/scrollbar/types.js +1 -0
- package/es/components/scrollbar/util.d.ts +28 -0
- package/es/components/scrollbar/util.js +34 -0
- package/es/components/search/index.d.ts +7 -7
- package/es/components/search/index.js +5 -4
- package/es/components/search/search.vue.d.ts +7 -7
- package/es/components/search/search.vue2.js +42 -24
- package/es/components/select-v2/defaults.d.ts +113 -0
- package/es/components/select-v2/defaults.js +121 -0
- package/es/components/select-v2/group-item.vue.d.ts +35 -0
- package/es/components/select-v2/group-item.vue.js +23 -0
- package/es/components/select-v2/group-item.vue2.js +28 -0
- package/es/components/select-v2/index.d.ts +2025 -0
- package/es/components/select-v2/index.js +11 -0
- package/es/components/select-v2/option-item.vue.d.ts +49 -0
- package/es/components/select-v2/option-item.vue.js +31 -0
- package/es/components/select-v2/option-item.vue2.js +27 -0
- package/es/components/select-v2/select-dropdown.d.ts +16 -0
- package/es/components/select-v2/select-dropdown.js +199 -0
- package/es/components/select-v2/select.types.d.ts +18 -0
- package/es/components/select-v2/select.types.js +1 -0
- package/es/components/select-v2/select.vue.d.ts +1012 -0
- package/es/components/select-v2/select.vue.js +330 -0
- package/es/components/select-v2/select.vue2.js +61 -0
- package/es/components/select-v2/style/css.d.ts +0 -0
- package/es/components/select-v2/style/css.js +7 -0
- package/es/components/select-v2/style/index.d.ts +0 -0
- package/es/components/select-v2/style/index.js +8 -0
- package/es/components/select-v2/token.d.ts +16 -0
- package/es/components/select-v2/token.js +6 -0
- package/es/components/select-v2/useAllowCreate.d.ts +8 -0
- package/es/components/select-v2/useAllowCreate.js +48 -0
- package/es/components/select-v2/useInput.d.ts +5 -0
- package/es/components/select-v2/useInput.js +21 -0
- package/es/components/select-v2/useOption.d.ts +7 -0
- package/es/components/select-v2/useOption.js +13 -0
- package/es/components/select-v2/useSelect.d.ts +782 -0
- package/es/components/select-v2/useSelect.js +360 -0
- package/es/components/select-v2/util.d.ts +2 -0
- package/es/components/select-v2/util.js +18 -0
- package/es/components/side-menu/index.d.ts +6 -6
- package/es/components/side-menu/index.js +5 -4
- package/es/components/side-menu/side-menu.vue.d.ts +6 -6
- package/es/components/side-menu/side-menu.vue2.js +77 -59
- package/es/components/side-menu/types.d.ts +1 -1
- package/es/components/slot/only-child.js +13 -11
- package/es/components/switch/index.d.ts +205 -0
- package/es/components/switch/index.js +12 -0
- package/es/components/switch/style/css.d.ts +0 -0
- package/es/components/switch/style/css.js +2 -0
- package/es/components/switch/style/index.d.ts +0 -0
- package/es/components/switch/style/index.js +2 -0
- package/es/components/switch/switch.vue.d.ts +236 -0
- package/es/components/switch/switch.vue.js +4 -0
- package/es/components/switch/switch.vue2.js +204 -0
- package/es/components/table/index.js +12 -0
- package/es/components/table/style/css.d.ts +0 -0
- package/es/components/table/style/css.js +5 -0
- package/es/components/table/style/index.d.ts +0 -0
- package/es/components/table/style/index.js +5 -0
- package/es/components/table/table.vue.d.ts +137 -0
- package/es/components/table/table.vue.js +4 -0
- package/es/components/table/table.vue2.js +232 -0
- package/es/components/table/type.d.ts +21 -0
- package/es/components/table/type.js +1 -0
- package/es/components/tabs/index.d.ts +20 -20
- package/es/components/tabs/index.js +8 -7
- package/es/components/tabs/tab-bar.vue.d.ts +2 -2
- package/es/components/tabs/tab-bar.vue2.js +4 -2
- package/es/components/tabs/tab-nav.vue.d.ts +2 -2
- package/es/components/tabs/tab-nav.vue2.js +98 -80
- package/es/components/tabs/tab-pane.vue.d.ts +2 -2
- package/es/components/tabs/tab-pane.vue2.js +14 -12
- package/es/components/tabs/tabs.vue.d.ts +14 -14
- package/es/components/tabs/tabs.vue2.js +4 -2
- package/es/components/tabs/types.d.ts +2 -2
- package/es/components/tag/index.d.ts +2 -2
- package/es/components/tag/index.js +5 -4
- package/es/components/tag/tag.vue.d.ts +2 -2
- package/es/components/tag/tag.vue2.js +10 -8
- package/es/components/tooltip/content.vue2.js +18 -16
- package/es/components/tooltip/index.d.ts +7 -5
- package/es/components/tooltip/index.js +5 -4
- package/es/components/tooltip/tooltip.vue.d.ts +5 -5
- package/es/components/tooltip/tooltip.vue2.js +22 -20
- package/es/components/tooltip/trigger.vue2.js +12 -10
- package/es/components/tooltip/utils.js +6 -4
- package/es/components/verify-code/index.d.ts +23 -0
- package/es/components/verify-code/index.js +12 -0
- package/es/components/verify-code/style/css.d.ts +0 -0
- package/es/components/verify-code/style/css.js +2 -0
- package/es/components/verify-code/style/index.d.ts +0 -0
- package/es/components/verify-code/style/index.js +2 -0
- package/es/components/verify-code/useImageVerify.d.ts +11 -0
- package/es/components/verify-code/useImageVerify.js +46 -0
- package/es/components/verify-code/verify-code.vue.d.ts +24 -0
- package/es/components/verify-code/verify-code.vue.js +4 -0
- package/es/components/verify-code/verify-code.vue2.js +48 -0
- package/es/components/virtual-list/builders/build-grid.d.ts +214 -0
- package/es/components/virtual-list/builders/build-grid.js +422 -0
- package/es/components/virtual-list/builders/build-list.d.ts +167 -0
- package/es/components/virtual-list/builders/build-list.js +344 -0
- package/es/components/virtual-list/components/dynamic-size-grid.d.ts +206 -0
- package/es/components/virtual-list/components/dynamic-size-grid.js +200 -0
- package/es/components/virtual-list/components/dynamic-size-list.d.ts +165 -0
- package/es/components/virtual-list/components/dynamic-size-list.js +112 -0
- package/es/components/virtual-list/components/fixed-size-grid.d.ts +193 -0
- package/es/components/virtual-list/components/fixed-size-grid.js +125 -0
- package/es/components/virtual-list/components/fixed-size-list.d.ts +164 -0
- package/es/components/virtual-list/components/fixed-size-list.js +68 -0
- package/es/components/virtual-list/components/scrollbar.d.ts +79 -0
- package/es/components/virtual-list/components/scrollbar.js +137 -0
- package/es/components/virtual-list/defaults.d.ts +30 -0
- package/es/components/virtual-list/defaults.js +33 -0
- package/es/components/virtual-list/hooks/use-cache.d.ts +1 -0
- package/es/components/virtual-list/hooks/use-cache.js +13 -0
- package/es/components/virtual-list/hooks/use-grid-wheel.d.ts +13 -0
- package/es/components/virtual-list/hooks/use-grid-wheel.js +26 -0
- package/es/components/virtual-list/hooks/use-wheel.d.ts +13 -0
- package/es/components/virtual-list/hooks/use-wheel.js +27 -0
- package/es/components/virtual-list/index.d.ts +8 -0
- package/es/components/virtual-list/index.js +15 -0
- package/es/components/virtual-list/props.d.ts +201 -0
- package/es/components/virtual-list/props.js +147 -0
- package/es/components/virtual-list/style/css.d.ts +0 -0
- package/es/components/virtual-list/style/css.js +3 -0
- package/es/components/virtual-list/style/index.d.ts +0 -0
- package/es/components/virtual-list/style/index.js +3 -0
- package/es/components/virtual-list/types.d.ts +137 -0
- package/es/components/virtual-list/types.js +1 -0
- package/es/components/virtual-list/utils.d.ts +17 -0
- package/es/components/virtual-list/utils.js +25 -0
- package/es/defaults.d.ts +1 -1
- package/es/hooks/index.d.ts +3 -0
- package/es/hooks/index.js +35 -29
- package/es/hooks/use-draggable/index.d.ts +2 -0
- package/es/hooks/use-draggable/index.js +42 -0
- package/es/hooks/use-id/index.js +1 -1
- package/es/hooks/use-lockscreen/index.d.ts +11 -0
- package/es/hooks/use-lockscreen/index.js +36 -0
- package/es/hooks/use-ordered-children/index.js +7 -6
- package/es/hooks/use-popper/index.d.ts +4 -4
- package/es/hooks/use-same-target/index.d.ts +5 -0
- package/es/hooks/use-same-target/index.js +16 -0
- package/es/hooks/use-size/index.d.ts +1 -1
- package/es/index.d.ts +1 -1
- package/es/index.js +327 -235
- package/es/package.json.js +1 -1
- package/es/utils/dom/index.d.ts +2 -0
- package/es/utils/dom/index.js +12 -0
- package/es/utils/dom/position.d.ts +7 -0
- package/es/utils/dom/position.js +30 -0
- package/es/utils/dom/scroll.d.ts +8 -0
- package/es/utils/dom/scroll.js +60 -0
- package/es/utils/index.d.ts +1 -0
- package/es/utils/index.js +54 -31
- package/es/utils/vue/data-helper.d.ts +1 -0
- package/es/utils/vue/data-helper.js +4 -0
- package/es/utils/vue/index.d.ts +4 -0
- package/es/utils/vue/index.js +28 -15
- package/es/utils/vue/props/index.d.ts +3 -0
- package/es/utils/vue/props/index.js +8 -0
- package/es/utils/vue/props/runtime.d.ts +28 -0
- package/es/utils/vue/props/runtime.js +37 -0
- package/es/utils/vue/props/types.d.ts +120 -0
- package/es/utils/vue/props/types.js +1 -0
- package/es/utils/vue/props/util.d.ts +8 -0
- package/es/utils/vue/props/util.js +1 -0
- package/es/utils/vue/raf.d.ts +2 -0
- package/es/utils/vue/raf.js +6 -0
- package/es/utils/vue/refs.d.ts +3 -0
- package/es/utils/vue/refs.js +9 -0
- package/lib/comp-resolver.cjs +1 -1
- package/lib/component.cjs +1 -1
- package/lib/components/alert/alert.vue.cjs +1 -0
- package/lib/components/alert/alert.vue.d.ts +102 -0
- package/lib/components/alert/alert.vue2.cjs +1 -0
- package/lib/components/alert/index.cjs +1 -0
- package/lib/components/alert/index.d.ts +73 -0
- package/lib/components/alert/style/css.cjs +1 -0
- package/lib/components/alert/style/css.d.ts +0 -0
- package/lib/components/alert/style/index.cjs +1 -0
- package/lib/components/alert/style/index.d.ts +0 -0
- package/lib/components/alert/types.d.ts +4 -0
- package/lib/components/avatar/avatar.vue.d.ts +6 -14
- package/lib/components/avatar/avatar.vue2.cjs +1 -1
- package/lib/components/avatar/index.cjs +1 -1
- package/lib/components/avatar/index.d.ts +6 -14
- package/lib/components/avatar/style/css.cjs +1 -1
- package/lib/components/avatar/style/index.cjs +1 -1
- package/lib/components/back-top/back-top.vue2.cjs +1 -1
- package/lib/components/back-top/index.cjs +1 -1
- package/lib/components/back-top/use-back-top.cjs +1 -1
- package/lib/components/button/button-custom.cjs +1 -0
- package/lib/components/button/button-custom.d.ts +4 -0
- package/lib/components/button/button-group.vue.cjs +1 -0
- package/lib/components/button/button-group.vue.d.ts +23 -0
- package/lib/components/button/button-group.vue2.cjs +1 -0
- package/lib/components/button/button.vue.cjs +1 -0
- package/lib/components/button/button.vue.d.ts +189 -0
- package/lib/components/button/button.vue2.cjs +1 -0
- package/lib/components/button/constants.cjs +1 -0
- package/lib/components/button/constants.d.ts +7 -0
- package/lib/components/button/index.cjs +1 -0
- package/lib/components/button/index.d.ts +203 -0
- package/lib/components/button/instance.cjs +1 -0
- package/lib/components/button/instance.d.ts +4 -0
- package/lib/components/button/style/css.cjs +1 -0
- package/lib/components/button/style/css.d.ts +0 -0
- package/lib/components/button/style/index.cjs +1 -0
- package/lib/components/button/style/index.d.ts +0 -0
- package/lib/components/button/types.cjs +1 -0
- package/lib/components/button/types.d.ts +4 -0
- package/lib/components/button/use-button.cjs +1 -0
- package/lib/components/button/use-button.d.ts +10 -0
- package/lib/components/button-group/style/css.cjs +1 -0
- package/lib/components/button-group/style/css.d.ts +0 -0
- package/lib/components/button-group/style/index.cjs +1 -0
- package/lib/components/button-group/style/index.d.ts +0 -0
- package/lib/components/checkbox/checkbox-button.vue.cjs +1 -0
- package/lib/components/checkbox/checkbox-button.vue.d.ts +137 -0
- package/lib/components/checkbox/checkbox-button.vue2.cjs +1 -0
- package/lib/components/checkbox/checkbox-group.vue.cjs +1 -0
- package/lib/components/checkbox/checkbox-group.vue.d.ts +112 -0
- package/lib/components/checkbox/checkbox-group.vue2.cjs +1 -0
- package/lib/components/checkbox/checkbox.vue.cjs +1 -0
- package/lib/components/checkbox/checkbox.vue.d.ts +141 -0
- package/lib/components/checkbox/checkbox.vue2.cjs +1 -0
- package/lib/components/checkbox/composables/index.cjs +1 -0
- package/lib/components/checkbox/composables/index.d.ts +5 -0
- package/lib/components/checkbox/composables/use-checkbox-disabled.cjs +1 -0
- package/lib/components/checkbox/composables/use-checkbox-disabled.d.ts +6 -0
- package/lib/components/checkbox/composables/use-checkbox-event.cjs +1 -0
- package/lib/components/checkbox/composables/use-checkbox-event.d.ts +7 -0
- package/lib/components/checkbox/composables/use-checkbox-model.cjs +1 -0
- package/lib/components/checkbox/composables/use-checkbox-model.d.ts +7 -0
- package/lib/components/checkbox/composables/use-checkbox-status.cjs +1 -0
- package/lib/components/checkbox/composables/use-checkbox-status.d.ts +11 -0
- package/lib/components/checkbox/composables/use-checkbox.cjs +1 -0
- package/lib/components/checkbox/composables/use-checkbox.d.ts +15 -0
- package/lib/components/checkbox/constants.cjs +1 -0
- package/lib/components/checkbox/constants.d.ts +8 -0
- package/lib/components/checkbox/index.cjs +1 -0
- package/lib/components/checkbox/index.d.ts +556 -0
- package/lib/components/checkbox/style/css.cjs +1 -0
- package/lib/components/checkbox/style/css.d.ts +0 -0
- package/lib/components/checkbox/style/index.cjs +1 -0
- package/lib/components/checkbox/style/index.d.ts +0 -0
- package/lib/components/checkbox/types.cjs +1 -0
- package/lib/components/checkbox/types.d.ts +2 -0
- package/lib/components/checkbox-button/style/css.cjs +1 -0
- package/lib/components/checkbox-button/style/css.d.ts +0 -0
- package/lib/components/checkbox-button/style/index.cjs +1 -0
- package/lib/components/checkbox-button/style/index.d.ts +0 -0
- package/lib/components/checkbox-group/style/css.cjs +1 -0
- package/lib/components/checkbox-group/style/css.d.ts +0 -0
- package/lib/components/checkbox-group/style/index.cjs +1 -0
- package/lib/components/checkbox-group/style/index.d.ts +0 -0
- package/lib/components/clamp/clamp.vue2.cjs +1 -1
- package/lib/components/clamp/index.cjs +1 -1
- package/lib/components/clamp-toggle/clamp-toggle.vue.d.ts +4 -4
- package/lib/components/clamp-toggle/clamp-toggle.vue2.cjs +1 -1
- package/lib/components/clamp-toggle/index.cjs +1 -1
- package/lib/components/clamp-toggle/index.d.ts +4 -4
- package/lib/components/collapse-transition/src/collapse-transition.vue2.cjs +1 -1
- package/lib/components/collection/collection-item.vue.cjs +1 -0
- package/lib/components/collection/collection-item.vue.d.ts +2 -0
- package/lib/components/collection/collection-item.vue2.cjs +1 -0
- package/lib/components/collection/collection.cjs +1 -0
- package/lib/components/collection/collection.d.ts +242 -0
- package/lib/components/collection/collection.vue.cjs +1 -0
- package/lib/components/collection/collection.vue.d.ts +2 -0
- package/lib/components/collection/collection.vue2.cjs +1 -0
- package/lib/components/collection/index.cjs +1 -0
- package/lib/components/collection/index.d.ts +2 -0
- package/lib/components/collection/tokens.cjs +1 -0
- package/lib/components/collection/tokens.d.ts +12 -0
- package/lib/components/color-picker/color-picker.vue.cjs +1 -0
- package/lib/components/color-picker/color-picker.vue.d.ts +124 -0
- package/lib/components/color-picker/color-picker.vue2.cjs +1 -0
- package/lib/components/color-picker/components/alpha-slider.vue.cjs +1 -0
- package/lib/components/color-picker/components/alpha-slider.vue.d.ts +42 -0
- package/lib/components/color-picker/components/alpha-slider.vue2.cjs +1 -0
- package/lib/components/color-picker/components/hue-slider.vue.cjs +1 -0
- package/lib/components/color-picker/components/hue-slider.vue.d.ts +44 -0
- package/lib/components/color-picker/components/hue-slider.vue2.cjs +1 -0
- package/lib/components/color-picker/components/predefine.vue.cjs +1 -0
- package/lib/components/color-picker/components/predefine.vue.d.ts +43 -0
- package/lib/components/color-picker/components/predefine.vue2.cjs +1 -0
- package/lib/components/color-picker/components/sv-panel.vue.cjs +1 -0
- package/lib/components/color-picker/components/sv-panel.vue.d.ts +42 -0
- package/lib/components/color-picker/components/sv-panel.vue2.cjs +1 -0
- package/lib/components/color-picker/composables/use-alpha-slider.cjs +1 -0
- package/lib/components/color-picker/composables/use-alpha-slider.d.ts +20 -0
- package/lib/components/color-picker/contants.cjs +1 -0
- package/lib/components/color-picker/contants.d.ts +5 -0
- package/lib/components/color-picker/index.cjs +1 -0
- package/lib/components/color-picker/index.d.ts +106 -0
- package/lib/components/color-picker/style/css.cjs +1 -0
- package/lib/components/color-picker/style/css.d.ts +0 -0
- package/lib/components/color-picker/style/index.cjs +1 -0
- package/lib/components/color-picker/style/index.d.ts +0 -0
- package/lib/components/color-picker/utils/color.cjs +1 -0
- package/lib/components/color-picker/utils/color.d.ts +29 -0
- package/lib/components/color-picker/utils/draggable.cjs +1 -0
- package/lib/components/color-picker/utils/draggable.d.ts +6 -0
- package/lib/components/config-provider/config-provider.vue.d.ts +29 -0
- package/lib/components/config-provider/config-provider.vue2.cjs +1 -1
- package/lib/components/config-provider/constants.d.ts +1 -1
- package/lib/components/config-provider/hooks/use-global-config.cjs +1 -1
- package/lib/components/config-provider/hooks/use-global-config.d.ts +1 -1
- package/lib/components/config-provider/index.cjs +1 -1
- package/lib/components/config-provider/index.d.ts +8 -1
- package/lib/components/context-menu/context-menu.vue2.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/descriptions/index.cjs +1 -1
- package/lib/components/dialog/constants.cjs +1 -0
- package/lib/components/dialog/constants.d.ts +11 -0
- package/lib/components/dialog/dialog-content.vue.cjs +1 -0
- package/lib/components/dialog/dialog-content.vue.d.ts +81 -0
- package/lib/components/dialog/dialog-content.vue2.cjs +1 -0
- package/lib/components/dialog/dialog.vue.cjs +1 -0
- package/lib/components/dialog/dialog.vue.d.ts +164 -0
- package/lib/components/dialog/dialog.vue2.cjs +1 -0
- package/lib/components/dialog/hooks/use-dialog.cjs +1 -0
- package/lib/components/dialog/hooks/use-dialog.d.ts +23 -0
- package/lib/components/dialog/index.cjs +1 -0
- package/lib/components/dialog/index.d.ts +146 -0
- package/lib/components/dialog/style/css.cjs +1 -0
- package/lib/components/dialog/style/css.d.ts +0 -0
- package/lib/components/dialog/style/index.cjs +1 -0
- package/lib/components/dialog/style/index.d.ts +0 -0
- package/lib/components/dialog/types.cjs +1 -0
- package/lib/components/dialog/types.d.ts +10 -0
- package/lib/components/divider/divider.vue.d.ts +2 -2
- package/lib/components/divider/divider.vue2.cjs +1 -1
- package/lib/components/divider/index.cjs +1 -1
- package/lib/components/divider/index.d.ts +2 -2
- package/lib/components/docs-layout/style/css.cjs +1 -0
- package/lib/components/docs-layout/style/css.d.ts +0 -0
- package/lib/components/docs-layout/style/index.cjs +1 -0
- package/lib/components/docs-layout/style/index.d.ts +0 -0
- package/lib/components/dropdown/dropdown-item-impl.vue.cjs +1 -0
- package/lib/components/dropdown/dropdown-item-impl.vue.d.ts +57 -0
- package/lib/components/dropdown/dropdown-item-impl.vue2.cjs +1 -0
- package/lib/components/dropdown/dropdown-item.vue.cjs +1 -0
- package/lib/components/dropdown/dropdown-item.vue.d.ts +43 -0
- package/lib/components/dropdown/dropdown-item.vue2.cjs +1 -0
- package/lib/components/dropdown/dropdown-menu.vue.cjs +1 -0
- package/lib/components/dropdown/dropdown-menu.vue.d.ts +22 -0
- package/lib/components/dropdown/dropdown-menu.vue2.cjs +1 -0
- package/lib/components/dropdown/dropdown.vue.cjs +1 -0
- package/lib/components/dropdown/dropdown.vue.d.ts +828 -0
- package/lib/components/dropdown/dropdown.vue2.cjs +1 -0
- package/lib/components/dropdown/index.cjs +1 -0
- package/lib/components/dropdown/index.d.ts +959 -0
- package/lib/components/dropdown/style/css.cjs +1 -0
- package/lib/components/dropdown/style/css.d.ts +0 -0
- package/lib/components/dropdown/style/index.cjs +1 -0
- package/lib/components/dropdown/style/index.d.ts +0 -0
- package/lib/components/dropdown/tokens.cjs +1 -0
- package/lib/components/dropdown/tokens.d.ts +10 -0
- package/lib/components/dropdown/types.cjs +1 -0
- package/lib/components/dropdown/types.d.ts +267 -0
- package/lib/components/dropdown/useDropdown.cjs +1 -0
- package/lib/components/dropdown/useDropdown.d.ts +6 -0
- package/lib/components/dropdown-item/style/css.cjs +1 -0
- package/lib/components/dropdown-item/style/css.d.ts +0 -0
- package/lib/components/dropdown-item/style/index.cjs +1 -0
- package/lib/components/dropdown-item/style/index.d.ts +0 -0
- package/lib/components/dropdown-menu/style/css.cjs +1 -0
- package/lib/components/dropdown-menu/style/css.d.ts +0 -0
- package/lib/components/dropdown-menu/style/index.cjs +1 -0
- package/lib/components/dropdown-menu/style/index.d.ts +0 -0
- package/lib/components/empty/empty.vue.d.ts +11 -2
- package/lib/components/empty/empty.vue2.cjs +1 -1
- package/lib/components/empty/index.cjs +1 -1
- package/lib/components/empty/index.d.ts +2 -2
- package/lib/components/exception/exception.vue2.cjs +1 -1
- package/lib/components/exception/index.cjs +1 -1
- package/lib/components/focus-trap/focus-trap.vue.d.ts +1 -1
- package/lib/components/footer-layout/footer-layout.vue2.cjs +1 -1
- package/lib/components/footer-layout/index.cjs +1 -1
- package/lib/components/form/form-item.vue.d.ts +28 -15
- 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.vue.d.ts +10 -10
- 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-common-props.d.ts +2 -2
- package/lib/components/form/hooks/use-form-item.cjs +1 -1
- package/lib/components/form/hooks/use-form-item.d.ts +2 -2
- package/lib/components/form/index.cjs +1 -1
- package/lib/components/form/index.d.ts +54 -28
- package/lib/components/form/utils.cjs +1 -1
- package/lib/components/full-screen/full-screen.vue2.cjs +1 -1
- package/lib/components/full-screen/index.cjs +1 -1
- package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
- package/lib/components/header-layout/index.cjs +1 -1
- package/lib/components/icon/icon.vue.d.ts +12 -3
- package/lib/components/icon/icon.vue2.cjs +1 -1
- package/lib/components/icon/index.cjs +1 -1
- package/lib/components/icon/index.d.ts +10 -2
- package/lib/components/icon-text/icon-text.vue.d.ts +4 -4
- package/lib/components/icon-text/icon-text.vue2.cjs +1 -1
- package/lib/components/icon-text/index.cjs +1 -1
- package/lib/components/icon-text/index.d.ts +4 -4
- 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/iframe-layout/index.cjs +1 -1
- package/lib/components/image/image.vue.d.ts +17 -3
- package/lib/components/image/image.vue2.cjs +1 -1
- package/lib/components/image/index.cjs +1 -1
- package/lib/components/image/index.d.ts +4 -3
- package/lib/components/image/style/css.cjs +1 -1
- package/lib/components/image/style/index.cjs +1 -1
- package/lib/components/image-viewer/image-viewer.vue.cjs +1 -0
- package/lib/components/image-viewer/image-viewer.vue.d.ts +88 -0
- package/lib/components/image-viewer/image-viewer.vue2.cjs +1 -0
- package/lib/components/image-viewer/index.cjs +1 -0
- package/lib/components/image-viewer/index.d.ts +77 -0
- package/lib/components/image-viewer/style/css.cjs +1 -0
- package/lib/components/image-viewer/style/css.d.ts +0 -0
- package/lib/components/image-viewer/style/index.cjs +1 -0
- package/lib/components/image-viewer/style/index.d.ts +0 -0
- package/lib/components/image-viewer/types.cjs +1 -0
- package/lib/components/image-viewer/types.d.ts +1 -0
- package/lib/components/index.cjs +1 -1
- package/lib/components/index.d.ts +12 -0
- package/lib/components/input/index.cjs +1 -1
- package/lib/components/input/index.d.ts +15 -15
- package/lib/components/input/input.vue.d.ts +15 -15
- package/lib/components/input/input.vue2.cjs +1 -1
- package/lib/components/link/index.cjs +1 -1
- package/lib/components/link/index.d.ts +2 -2
- package/lib/components/link/link.vue.d.ts +2 -2
- package/lib/components/link/link.vue2.cjs +1 -1
- package/lib/components/loading/index.d.ts +2 -1
- package/lib/components/loading/loading.cjs +1 -1
- package/lib/components/loading/loading.d.ts +2 -1
- package/lib/components/loading/service.cjs +1 -1
- package/lib/components/logo/index.cjs +1 -1
- package/lib/components/logo/logo.vue2.cjs +1 -1
- package/lib/components/md-code-demo/index.cjs +1 -1
- package/lib/components/md-code-demo/md-code-demo.cjs +1 -1
- package/lib/components/md-code-tabs/index.cjs +1 -1
- package/lib/components/md-comment/index.cjs +1 -1
- package/lib/components/md-comment/md-comment.vue2.cjs +1 -1
- package/lib/components/md-container/index.cjs +1 -1
- package/lib/components/md-container/md-container.vue2.cjs +1 -1
- package/lib/components/md-container/style/css.cjs +1 -1
- package/lib/components/md-container/style/index.cjs +1 -1
- package/lib/components/md-tabs/index.cjs +1 -1
- package/lib/components/md-vue-playground/index.cjs +1 -1
- package/lib/components/md-vue-playground/md-vue-playground.vue2.cjs +1 -1
- package/lib/components/menu/index.cjs +1 -1
- package/lib/components/menu/index.d.ts +4 -4
- 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.vue.d.ts +4 -4
- 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/message/index.cjs +1 -1
- package/lib/components/message/message.vue.d.ts +16 -0
- package/lib/components/message/message.vue2.cjs +1 -1
- package/lib/components/message/method.cjs +1 -1
- package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
- package/lib/components/multiple-tabs/tab-content.vue2.cjs +1 -1
- package/lib/components/overlay/index.cjs +1 -1
- package/lib/components/overlay/index.d.ts +2 -2
- package/lib/components/overlay/overlay.vue.d.ts +2 -2
- package/lib/components/overlay/overlay.vue2.cjs +1 -1
- package/lib/components/page-wrapper/index.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/index.cjs +1 -1
- package/lib/components/pagination/index.d.ts +116 -73
- package/lib/components/pagination/pagination.vue.cjs +1 -0
- package/lib/components/pagination/pagination.vue.d.ts +185 -0
- package/lib/components/pagination/pagination.vue2.cjs +1 -0
- package/lib/components/pagination/usePagination.cjs +1 -1
- package/lib/components/pagination/usePagination.d.ts +3 -3
- package/lib/components/popover/index.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/composables/use-content.d.ts +4 -4
- package/lib/components/popper/content.vue.d.ts +3 -3
- package/lib/components/popper/index.cjs +1 -1
- package/lib/components/popper/index.d.ts +2 -2
- package/lib/components/popper/popper.vue.d.ts +2 -2
- package/lib/components/popper/trigger.vue2.cjs +1 -1
- package/lib/components/qrcode/index.cjs +1 -1
- package/lib/components/qrcode/qrcode.vue2.cjs +1 -1
- package/lib/components/radio/constants.cjs +1 -0
- package/lib/components/radio/constants.d.ts +6 -0
- package/lib/components/radio/index.cjs +1 -0
- package/lib/components/radio/index.d.ts +294 -0
- package/lib/components/radio/radio-button.vue.cjs +1 -0
- package/lib/components/radio/radio-button.vue.d.ts +44 -0
- package/lib/components/radio/radio-button.vue2.cjs +1 -0
- package/lib/components/radio/radio-group.vue.cjs +1 -0
- package/lib/components/radio/radio-group.vue.d.ts +96 -0
- package/lib/components/radio/radio-group.vue2.cjs +1 -0
- package/lib/components/radio/radio.vue.cjs +1 -0
- package/lib/components/radio/radio.vue.d.ts +65 -0
- package/lib/components/radio/radio.vue2.cjs +1 -0
- package/lib/components/radio/style/css.cjs +1 -0
- package/lib/components/radio/style/css.d.ts +0 -0
- package/lib/components/radio/style/index.cjs +1 -0
- package/lib/components/radio/style/index.d.ts +0 -0
- package/lib/components/radio/use-radio.cjs +1 -0
- package/lib/components/radio/use-radio.d.ts +15 -0
- package/lib/components/radio-button/style/css.cjs +1 -0
- package/lib/components/radio-button/style/css.d.ts +0 -0
- package/lib/components/radio-button/style/index.cjs +1 -0
- package/lib/components/radio-button/style/index.d.ts +0 -0
- package/lib/components/radio-group/style/css.cjs +1 -0
- package/lib/components/radio-group/style/css.d.ts +0 -0
- package/lib/components/radio-group/style/index.cjs +1 -0
- package/lib/components/radio-group/style/index.d.ts +0 -0
- package/lib/components/result/index.cjs +1 -1
- package/lib/components/result/result.vue2.cjs +1 -1
- package/lib/components/router-view-content/index.cjs +1 -1
- package/lib/components/router-view-content/router-view-content.vue2.cjs +1 -1
- package/lib/components/roving-focus-group/index.cjs +1 -0
- package/lib/components/roving-focus-group/index.d.ts +10 -0
- package/lib/components/roving-focus-group/roving-focus-group-impl.vue.cjs +1 -0
- package/lib/components/roving-focus-group/roving-focus-group-impl.vue.d.ts +48 -0
- package/lib/components/roving-focus-group/roving-focus-group-impl.vue2.cjs +1 -0
- package/lib/components/roving-focus-group/roving-focus-group.vue.cjs +1 -0
- package/lib/components/roving-focus-group/roving-focus-group.vue.d.ts +2 -0
- package/lib/components/roving-focus-group/roving-focus-group.vue2.cjs +1 -0
- package/lib/components/roving-focus-group/roving-focus-item.vue.cjs +1 -0
- package/lib/components/roving-focus-group/roving-focus-item.vue.d.ts +32 -0
- package/lib/components/roving-focus-group/roving-focus-item.vue2.cjs +1 -0
- package/lib/components/roving-focus-group/tokens.cjs +1 -0
- package/lib/components/roving-focus-group/tokens.d.ts +37 -0
- package/lib/components/roving-focus-group/types.cjs +1 -0
- package/lib/components/roving-focus-group/types.d.ts +252 -0
- package/lib/components/roving-focus-group/utils.cjs +1 -0
- package/lib/components/roving-focus-group/utils.d.ts +8 -0
- package/lib/components/scrollbar/bar.vue.cjs +1 -0
- package/lib/components/scrollbar/bar.vue.d.ts +54 -0
- package/lib/components/scrollbar/bar.vue2.cjs +1 -0
- package/lib/components/scrollbar/constants.cjs +1 -0
- package/lib/components/scrollbar/constants.d.ts +6 -0
- package/lib/components/scrollbar/index.cjs +1 -0
- package/lib/components/scrollbar/index.d.ts +113 -0
- package/lib/components/scrollbar/scrollbar.vue.cjs +1 -0
- package/lib/components/scrollbar/scrollbar.vue.d.ts +163 -0
- package/lib/components/scrollbar/scrollbar.vue2.cjs +1 -0
- package/lib/components/scrollbar/style/css.cjs +1 -0
- package/lib/components/scrollbar/style/css.d.ts +0 -0
- package/lib/components/scrollbar/style/index.cjs +1 -0
- package/lib/components/scrollbar/style/index.d.ts +0 -0
- package/lib/components/scrollbar/thumb.vue.cjs +1 -0
- package/lib/components/scrollbar/thumb.vue.d.ts +52 -0
- package/lib/components/scrollbar/thumb.vue2.cjs +1 -0
- package/lib/components/scrollbar/types.cjs +1 -0
- package/lib/components/scrollbar/types.d.ts +2 -0
- package/lib/components/scrollbar/util.cjs +1 -0
- package/lib/components/scrollbar/util.d.ts +28 -0
- package/lib/components/search/index.cjs +1 -1
- package/lib/components/search/index.d.ts +7 -7
- package/lib/components/search/search.vue.d.ts +7 -7
- package/lib/components/search/search.vue2.cjs +1 -1
- package/lib/components/select-v2/defaults.cjs +1 -0
- package/lib/components/select-v2/defaults.d.ts +113 -0
- package/lib/components/select-v2/group-item.vue.cjs +1 -0
- package/lib/components/select-v2/group-item.vue.d.ts +35 -0
- package/lib/components/select-v2/group-item.vue2.cjs +1 -0
- package/lib/components/select-v2/index.cjs +1 -0
- package/lib/components/select-v2/index.d.ts +2025 -0
- package/lib/components/select-v2/option-item.vue.cjs +1 -0
- package/lib/components/select-v2/option-item.vue.d.ts +49 -0
- package/lib/components/select-v2/option-item.vue2.cjs +1 -0
- package/lib/components/select-v2/select-dropdown.cjs +1 -0
- package/lib/components/select-v2/select-dropdown.d.ts +16 -0
- package/lib/components/select-v2/select.types.cjs +1 -0
- package/lib/components/select-v2/select.types.d.ts +18 -0
- package/lib/components/select-v2/select.vue.cjs +1 -0
- package/lib/components/select-v2/select.vue.d.ts +1012 -0
- package/lib/components/select-v2/select.vue2.cjs +1 -0
- package/lib/components/select-v2/style/css.cjs +1 -0
- package/lib/components/select-v2/style/css.d.ts +0 -0
- package/lib/components/select-v2/style/index.cjs +1 -0
- package/lib/components/select-v2/style/index.d.ts +0 -0
- package/lib/components/select-v2/token.cjs +1 -0
- package/lib/components/select-v2/token.d.ts +16 -0
- package/lib/components/select-v2/useAllowCreate.cjs +1 -0
- package/lib/components/select-v2/useAllowCreate.d.ts +8 -0
- package/lib/components/select-v2/useInput.cjs +1 -0
- package/lib/components/select-v2/useInput.d.ts +5 -0
- package/lib/components/select-v2/useOption.cjs +1 -0
- package/lib/components/select-v2/useOption.d.ts +7 -0
- package/lib/components/select-v2/useSelect.cjs +1 -0
- package/lib/components/select-v2/useSelect.d.ts +782 -0
- package/lib/components/select-v2/util.cjs +1 -0
- package/lib/components/select-v2/util.d.ts +2 -0
- package/lib/components/side-menu/index.cjs +1 -1
- package/lib/components/side-menu/index.d.ts +6 -6
- package/lib/components/side-menu/side-menu.vue.d.ts +6 -6
- package/lib/components/side-menu/side-menu.vue2.cjs +1 -1
- package/lib/components/side-menu/types.d.ts +1 -1
- package/lib/components/slot/only-child.cjs +1 -1
- package/lib/components/switch/index.cjs +1 -0
- package/lib/components/switch/index.d.ts +205 -0
- package/lib/components/switch/style/css.cjs +1 -0
- package/lib/components/switch/style/css.d.ts +0 -0
- package/lib/components/switch/style/index.cjs +1 -0
- package/lib/components/switch/style/index.d.ts +0 -0
- package/lib/components/switch/switch.vue.cjs +1 -0
- package/lib/components/switch/switch.vue.d.ts +236 -0
- package/lib/components/switch/switch.vue2.cjs +1 -0
- package/lib/components/table/index.cjs +1 -0
- package/lib/components/table/style/css.cjs +1 -0
- package/lib/components/table/style/css.d.ts +0 -0
- package/lib/components/table/style/index.cjs +1 -0
- package/lib/components/table/style/index.d.ts +0 -0
- package/lib/components/table/table.vue.cjs +1 -0
- package/lib/components/table/table.vue.d.ts +137 -0
- package/lib/components/table/table.vue2.cjs +1 -0
- package/lib/components/table/type.cjs +1 -0
- package/lib/components/table/type.d.ts +21 -0
- package/lib/components/tabs/index.cjs +1 -1
- package/lib/components/tabs/index.d.ts +20 -20
- package/lib/components/tabs/tab-bar.vue.d.ts +2 -2
- package/lib/components/tabs/tab-bar.vue2.cjs +1 -1
- package/lib/components/tabs/tab-nav.vue.d.ts +2 -2
- package/lib/components/tabs/tab-nav.vue2.cjs +1 -1
- package/lib/components/tabs/tab-pane.vue.d.ts +2 -2
- package/lib/components/tabs/tab-pane.vue2.cjs +1 -1
- package/lib/components/tabs/tabs.vue.d.ts +14 -14
- package/lib/components/tabs/tabs.vue2.cjs +1 -1
- package/lib/components/tabs/types.d.ts +2 -2
- package/lib/components/tag/index.cjs +1 -1
- package/lib/components/tag/index.d.ts +2 -2
- package/lib/components/tag/tag.vue.d.ts +2 -2
- package/lib/components/tag/tag.vue2.cjs +1 -1
- package/lib/components/tooltip/content.vue2.cjs +1 -1
- package/lib/components/tooltip/index.cjs +1 -1
- package/lib/components/tooltip/index.d.ts +7 -5
- package/lib/components/tooltip/tooltip.vue.d.ts +5 -5
- 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/index.cjs +1 -0
- package/lib/components/verify-code/index.d.ts +23 -0
- package/lib/components/verify-code/style/css.cjs +1 -0
- package/lib/components/verify-code/style/css.d.ts +0 -0
- package/lib/components/verify-code/style/index.cjs +1 -0
- package/lib/components/verify-code/style/index.d.ts +0 -0
- package/lib/components/verify-code/useImageVerify.cjs +1 -0
- package/lib/components/verify-code/useImageVerify.d.ts +11 -0
- package/lib/components/verify-code/verify-code.vue.cjs +1 -0
- package/lib/components/verify-code/verify-code.vue.d.ts +24 -0
- package/lib/components/verify-code/verify-code.vue2.cjs +1 -0
- package/lib/components/virtual-list/builders/build-grid.cjs +1 -0
- package/lib/components/virtual-list/builders/build-grid.d.ts +214 -0
- package/lib/components/virtual-list/builders/build-list.cjs +1 -0
- package/lib/components/virtual-list/builders/build-list.d.ts +167 -0
- package/lib/components/virtual-list/components/dynamic-size-grid.cjs +7 -0
- package/lib/components/virtual-list/components/dynamic-size-grid.d.ts +206 -0
- package/lib/components/virtual-list/components/dynamic-size-list.cjs +3 -0
- package/lib/components/virtual-list/components/dynamic-size-list.d.ts +165 -0
- package/lib/components/virtual-list/components/fixed-size-grid.cjs +7 -0
- package/lib/components/virtual-list/components/fixed-size-grid.d.ts +193 -0
- package/lib/components/virtual-list/components/fixed-size-list.cjs +6 -0
- package/lib/components/virtual-list/components/fixed-size-list.d.ts +164 -0
- package/lib/components/virtual-list/components/scrollbar.cjs +1 -0
- package/lib/components/virtual-list/components/scrollbar.d.ts +79 -0
- package/lib/components/virtual-list/defaults.cjs +1 -0
- package/lib/components/virtual-list/defaults.d.ts +30 -0
- package/lib/components/virtual-list/hooks/use-cache.cjs +1 -0
- package/lib/components/virtual-list/hooks/use-cache.d.ts +1 -0
- package/lib/components/virtual-list/hooks/use-grid-wheel.cjs +1 -0
- package/lib/components/virtual-list/hooks/use-grid-wheel.d.ts +13 -0
- package/lib/components/virtual-list/hooks/use-wheel.cjs +1 -0
- package/lib/components/virtual-list/hooks/use-wheel.d.ts +13 -0
- package/lib/components/virtual-list/index.cjs +1 -0
- package/lib/components/virtual-list/index.d.ts +8 -0
- package/lib/components/virtual-list/props.cjs +1 -0
- package/lib/components/virtual-list/props.d.ts +201 -0
- package/lib/components/virtual-list/style/css.cjs +1 -0
- package/lib/components/virtual-list/style/css.d.ts +0 -0
- package/lib/components/virtual-list/style/index.cjs +1 -0
- package/lib/components/virtual-list/style/index.d.ts +0 -0
- package/lib/components/virtual-list/types.cjs +1 -0
- package/lib/components/virtual-list/types.d.ts +137 -0
- package/lib/components/virtual-list/utils.cjs +1 -0
- package/lib/components/virtual-list/utils.d.ts +17 -0
- package/lib/defaults.d.ts +1 -1
- package/lib/hooks/index.cjs +1 -1
- package/lib/hooks/index.d.ts +3 -0
- package/lib/hooks/use-draggable/index.cjs +1 -0
- package/lib/hooks/use-draggable/index.d.ts +2 -0
- package/lib/hooks/use-id/index.cjs +1 -1
- package/lib/hooks/use-lockscreen/index.cjs +1 -0
- package/lib/hooks/use-lockscreen/index.d.ts +11 -0
- package/lib/hooks/use-ordered-children/index.cjs +1 -1
- package/lib/hooks/use-popper/index.d.ts +4 -4
- package/lib/hooks/use-same-target/index.cjs +1 -0
- package/lib/hooks/use-same-target/index.d.ts +5 -0
- package/lib/hooks/use-size/index.d.ts +1 -1
- package/lib/index.cjs +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/package.json.cjs +1 -1
- package/lib/utils/dom/index.cjs +1 -0
- package/lib/utils/dom/index.d.ts +2 -0
- package/lib/utils/dom/position.cjs +1 -0
- package/lib/utils/dom/position.d.ts +7 -0
- package/lib/utils/dom/scroll.cjs +1 -0
- package/lib/utils/dom/scroll.d.ts +8 -0
- package/lib/utils/index.cjs +1 -1
- package/lib/utils/index.d.ts +1 -0
- package/lib/utils/vue/data-helper.cjs +1 -0
- package/lib/utils/vue/data-helper.d.ts +1 -0
- package/lib/utils/vue/index.cjs +1 -1
- package/lib/utils/vue/index.d.ts +4 -0
- package/lib/utils/vue/props/index.cjs +1 -0
- package/lib/utils/vue/props/index.d.ts +3 -0
- package/lib/utils/vue/props/runtime.cjs +1 -0
- package/lib/utils/vue/props/runtime.d.ts +28 -0
- package/lib/utils/vue/props/types.cjs +1 -0
- package/lib/utils/vue/props/types.d.ts +120 -0
- package/lib/utils/vue/props/util.cjs +1 -0
- package/lib/utils/vue/props/util.d.ts +8 -0
- package/lib/utils/vue/raf.cjs +1 -0
- package/lib/utils/vue/raf.d.ts +2 -0
- package/lib/utils/vue/refs.cjs +1 -0
- package/lib/utils/vue/refs.d.ts +3 -0
- package/package.json +19 -20
- package/theme-style/index.css +1 -1
- package/theme-style/src/alert.scss +115 -0
- package/theme-style/src/avatar.scss +2 -1
- package/theme-style/src/button-group.scss +79 -0
- package/theme-style/src/button.scss +312 -0
- package/theme-style/src/checkbox-button.scss +139 -0
- package/theme-style/src/checkbox-group.scss +7 -0
- package/theme-style/src/checkbox.scss +293 -0
- package/theme-style/src/color-picker.scss +381 -0
- package/theme-style/src/common/var.scss +279 -2
- package/theme-style/src/dialog.scss +185 -0
- package/theme-style/src/dropdown-item.scss +0 -0
- package/theme-style/src/dropdown-menu.scss +0 -0
- package/theme-style/src/dropdown.scss +207 -0
- package/theme-style/src/form.scss +3 -3
- package/theme-style/src/image-viewer.scss +147 -0
- package/theme-style/src/image.scss +1 -1
- package/theme-style/src/index.scss +26 -0
- package/theme-style/src/input.scss +0 -5
- package/theme-style/src/mixins/_button.scss +167 -0
- package/theme-style/src/mixins/mixins.scss +26 -1
- package/theme-style/src/option-group.scss +54 -0
- package/theme-style/src/option-item.scss +70 -0
- package/theme-style/src/radio-button.scss +164 -0
- package/theme-style/src/radio-group.scss +9 -0
- package/theme-style/src/radio.scss +214 -0
- package/theme-style/src/scrollbar.scss +97 -0
- package/theme-style/src/select/common.scss +10 -0
- package/theme-style/src/select-dropdown-v2.scss +63 -0
- package/theme-style/src/select-dropdown.scss +91 -0
- package/theme-style/src/select-v2.scss +345 -0
- package/theme-style/src/select.scss +221 -0
- package/theme-style/src/side-menu.scss +4 -0
- package/theme-style/src/switch.scss +299 -0
- package/theme-style/src/table.scss +167 -0
- package/theme-style/src/verify-code.scss +0 -0
- package/theme-style/src/virtual-list.scss +40 -0
- package/theme-style/vft-alert.css +1 -0
- package/theme-style/vft-avatar.css +1 -1
- package/theme-style/vft-button-group.css +1 -0
- package/theme-style/vft-button.css +1 -0
- package/theme-style/vft-checkbox-button.css +1 -0
- package/theme-style/vft-checkbox-group.css +1 -0
- package/theme-style/vft-checkbox.css +1 -0
- package/theme-style/vft-color-picker.css +1 -0
- package/theme-style/vft-dialog.css +1 -0
- package/theme-style/vft-dropdown-item.css +0 -0
- package/theme-style/vft-dropdown-menu.css +0 -0
- package/theme-style/vft-dropdown.css +1 -0
- package/theme-style/vft-form.css +1 -1
- package/theme-style/vft-image-viewer.css +1 -0
- package/theme-style/vft-image.css +1 -1
- package/theme-style/vft-input.css +1 -1
- package/theme-style/vft-option-group.css +1 -0
- package/theme-style/vft-option-item.css +1 -0
- package/theme-style/vft-radio-button.css +1 -0
- package/theme-style/vft-radio-group.css +1 -0
- package/theme-style/vft-radio.css +1 -0
- package/theme-style/vft-scrollbar.css +1 -0
- package/theme-style/vft-select-dropdown-v2.css +1 -0
- package/theme-style/vft-select-dropdown.css +1 -0
- package/theme-style/vft-select-v2.css +1 -0
- package/theme-style/vft-select.css +1 -0
- package/theme-style/vft-side-menu.css +1 -1
- package/theme-style/vft-switch.css +1 -0
- package/theme-style/vft-table.css +1 -0
- package/theme-style/vft-verify-code.css +0 -0
- package/theme-style/vft-virtual-list.css +1 -0
- package/es/components/config-provider/types.d.ts +0 -18
- package/es/components/pagination/pagination.d.ts +0 -237
- package/es/components/pagination/pagination.js +0 -250
- package/lib/components/config-provider/types.d.ts +0 -18
- package/lib/components/pagination/pagination.cjs +0 -1
- package/lib/components/pagination/pagination.d.ts +0 -237
- /package/es/components/{config-provider → alert}/types.js +0 -0
- /package/lib/components/{config-provider → alert}/types.cjs +0 -0
|
@@ -1 +1 @@
|
|
|
1
|
-
.vft-image__error,.vft-image__inner,.vft-image__placeholder,.vft-image__wrapper{width:100%;height:100%}.vft-image{position:relative;display:inline-block;overflow:hidden}.vft-image__inner{vertical-align:top;opacity:1}.vft-image__inner.is-loading{opacity:0}.vft-image__wrapper{position:absolute;top:0;left:0}.vft-image__placeholder{background:var(--vft-fill-color-light)}.vft-image__error{display:flex;justify-content:center;align-items:center;font-size:14px;background:var(--vft-fill-color-light);color:var(--vft-text-color
|
|
1
|
+
.vft-image__error,.vft-image__inner,.vft-image__placeholder,.vft-image__wrapper{width:100%;height:100%}.vft-image{position:relative;display:inline-block;overflow:hidden}.vft-image__inner{vertical-align:top;opacity:1}.vft-image__inner.is-loading{opacity:0}.vft-image__wrapper{position:absolute;top:0;left:0}.vft-image__placeholder{background:var(--vft-fill-color-light)}.vft-image__error{display:flex;justify-content:center;align-items:center;font-size:14px;background:var(--vft-fill-color-light);color:var(--vft-text-placeholder-color);vertical-align:middle}.vft-image__preview{cursor:pointer}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root{--vft-input-width:100%;--vft-input-text-color:var(--vft-text-regular-color);--vft-input-border:var(--vft-border);--vft-input-hover-border:var(--vft-border-color-hover);--vft-input-focus-border:var(--vft-primary-color);--vft-input-transparent-border:0 0 0 1px transparent inset;--vft-input-border-color:var(--vft-border-color);--vft-input-border-radius:var(--vft-border-radius-base);--vft-input-bg-color:var(--vft-fill-color-blank);--vft-input-icon-color:var(--vft-text-placeholder-color);--vft-input-placeholder-color:var(--vft-text-placeholder-color);--vft-input-hover-border-color:var(--vft-border-color-hover);--vft-input-clear-hover-color:var(--vft-text-secondary-color);--vft-input-focus-border-color:var(--vft-primary-color)}.vft-input{--vft-input-height:var(--vft-component-size);position:relative;font-size:var(--vft-font-size-base);display:inline-flex;width:var(--vft-input-width);line-height:var(--vft-input-height);box-sizing:border-box;vertical-align:middle;transition:width .2s ease}.vft-input::-webkit-scrollbar{z-index:11;width:6px}.vft-input::-webkit-scrollbar:horizontal{height:6px}.vft-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#c0c4cc;border:0 solid transparent}.vft-input::-webkit-scrollbar-thumb:hover{background:#c0c4cc}.vft-input::-webkit-scrollbar-corner{background:0 0}.vft-input::-webkit-scrollbar-track{background:0 0}.vft-input::-webkit-scrollbar-track-piece{background:0 0;width:6px}.vft-input .vft-input__clear,.vft-input .vft-input__password{color:var(--vft-input-icon-color);font-size:14px;cursor:pointer}.vft-input .vft-input__clear:hover,.vft-input .vft-input__password:hover{color:var(--vft-input-clear-hover-color)}.vft-input .vft-input__count{height:100%;display:inline-flex;align-items:center;color:var(--vft-info-color);font-size:12px}.vft-input .vft-input__count .vft-input__count-inner{background:var(--vft-fill-color-blank);line-height:initial;display:inline-block;padding-left:8px}.vft-input__wrapper{display:inline-flex;flex-grow:1;align-items:center;justify-content:center;padding:1px 11px;background-color:var(--vft-input-bg-color,var(--vft-fill-color-blank));background-image:none;border-radius:var(--vft-input-border-radius,var(--vft-border-radius-base));border:1px solid var(--vft-input-border-color)}.vft-input__wrapper:hover{border:1px solid var(--vft-input-hover-border-color)}.vft-input__wrapper.is-focus{border:1px solid var(--vft-input-focus-border-color)}.vft-input__inner{--vft-input-inner-height:calc(var(--vft-input-height, 32px) - 2px);width:100%;flex-grow:1;-webkit-appearance:none;color:var(--vft-input-text-color,var(--vft-text-regular-color));font-size:inherit;height:var(--vft-input-inner-height);line-height:var(--vft-input-inner-height);padding:0;outline:0;border:none;background:0 0;box-sizing:border-box}.vft-input__inner:focus{outline:0}.vft-input__inner::-moz-placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-input__inner::placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-input__inner[type=password]::-ms-reveal{display:none}.vft-input__inner[type=number]{line-height:1px}.vft-input__prefix{display:inline-flex;white-space:nowrap;flex-shrink:0;flex-wrap:nowrap;height:100%;text-align:center;color:var(--vft-input-icon-color,var(--vft-text-placeholder-color));transition:all var(--vft-transition-duration);pointer-events:none}.vft-input__prefix-inner{pointer-events:all;display:inline-flex;align-items:center;justify-content:center}.vft-input__prefix-inner>:last-child{margin-right:8px}.vft-input__prefix-inner>:first-child,.vft-input__prefix-inner>:first-child.vft-input__icon{margin-left:0}.vft-input__suffix{display:inline-flex;white-space:nowrap;flex-shrink:0;flex-wrap:nowrap;height:100%;text-align:center;color:var(--vft-input-icon-color,var(--vft-text-placeholder-color));transition:all var(--vft-transition-duration);pointer-events:none}.vft-input__suffix-inner{pointer-events:all;display:inline-flex;align-items:center;justify-content:center}.vft-input__suffix-inner>:first-child{margin-left:8px}.vft-input .vft-input__icon{height:inherit;line-height:inherit;display:flex;justify-content:center;align-items:center;transition:all var(--vft-transition-duration);margin-left:8px}.vft-input__validateIcon{pointer-events:none}.vft-input.is-active .vft-input__wrapper{border:1px solid var(--vft-input-focus-color)}.vft-input.is-disabled{cursor:not-allowed}.vft-input.is-disabled .vft-input__wrapper{background-color:var(--vft-disabled-bg-color);border:1px solid var(--vft-input-disable-color)}.vft-input.is-disabled .vft-input__inner{color:var(--vft-disabled-text-color);-webkit-text-fill-color:var(--vft-disabled-text-color);cursor:not-allowed}.vft-input.is-disabled .vft-input__inner::-moz-placeholder{color:var(--vft-text-placeholder-color)}.vft-input.is-disabled .vft-input__inner::placeholder{color:var(--vft-text-placeholder-color)}.vft-input.is-disabled .vft-input__icon{cursor:not-allowed}.vft-input.is-exceed .vft-input__wrapper{border:1px solid var(--vft-input-danger-color)}.vft-input.is-exceed .vft-input__suffix .vft-input__count{color:var(--vft-danger-color)}.vft-input--large{--vft-input-height:var(--vft-component-size-large);font-size:14px}.vft-input--large .vft-input__wrapper{padding:1px 15px}.vft-input--large .vft-input__inner{--vft-input-inner-height:calc(var(--vft-input-height, 40px) - 2px)}.vft-input--small{--vft-input-height:var(--vft-component-size-small);font-size:12px}.vft-input--small .vft-input__wrapper{padding:1px 7px}.vft-input--small .vft-input__inner{--vft-input-inner-height:calc(var(--vft-input-height, 24px) - 2px)}.vft-input-group{display:inline-flex;width:100%;align-items:stretch}.vft-input-group__append,.vft-input-group__prepend{background-color:var(--vft-fill-color-light);color:var(--vft-info-color);position:relative;display:inline-flex;align-items:center;justify-content:center;min-height:100%;border-radius:var(--vft-input-border-radius);padding:0 20px;white-space:nowrap}.vft-input-group__append:focus,.vft-input-group__prepend:focus{outline:0}.vft-input-group__append .vft-button,.vft-input-group__append .vft-select,.vft-input-group__prepend .vft-button,.vft-input-group__prepend .vft-select{display:inline-block;margin:0 -20px}.vft-input-group__append button.vft-button,.vft-input-group__append button.vft-button:hover,.vft-input-group__append div.vft-select .vft-input__wrapper,.vft-input-group__append div.vft-select:hover .vft-input__wrapper,.vft-input-group__prepend button.vft-button,.vft-input-group__prepend button.vft-button:hover,.vft-input-group__prepend div.vft-select .vft-input__wrapper,.vft-input-group__prepend div.vft-select:hover .vft-input__wrapper{border-color:transparent;background-color:transparent;color:inherit}.vft-input-group__append .vft-button,.vft-input-group__append .vft-input,.vft-input-group__prepend .vft-button,.vft-input-group__prepend .vft-input{font-size:inherit}.vft-input-group__prepend{border-top-right-radius:0;border-bottom-right-radius:0;border:1px solid var(--vft-input-border-color);border-right:0}.vft-input-group__append{border-top-left-radius:0;border-bottom-left-radius:0;border:1px solid var(--vft-input-border-color);border-left:0}.vft-input-group--prepend>.vft-input__wrapper{border-top-left-radius:0;border-bottom-left-radius:0}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input .vft-input__wrapper{border-top-right-radius:0;border-bottom-right-radius:0;border:1px solid var(--vft-input-border-color)}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__wrapper{border:1px solid var(--vft-input-focus-border-color);z-index:2}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__wrapper:focus{outline:0;z-index:2;border:1px solid var(--vft-input-focus-border-color)}.vft-input-group--prepend .vft-input-group__prepend .vft-select:hover .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select:hover .vft-input__wrapper{z-index:1;border:1px solid var(--vft-input-hover-border-color)}.vft-input-group--append>.vft-input__wrapper{border-top-right-radius:0;border-bottom-right-radius:0}.vft-input-group--append .vft-input-group__append .vft-select .vft-input .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select .vft-input .vft-input__wrapper{border-top-left-radius:0;border-bottom-left-radius:0;border:1px solid var(--vft-input-border-color)}.vft-input-group--append .vft-input-group__append .vft-select .vft-input.is-focus .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select .vft-input.is-focus .vft-input__wrapper{z-index:2;border:1px solid var(--vft-input-focus-border-color)}.vft-input-group--append .vft-input-group__append .vft-select:hover .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select:hover .vft-input__wrapper{z-index:1;border:1px solid var(--vft-input-hover-border-color)}.vft-textarea{position:relative;display:inline-block;width:100%;vertical-align:bottom;font-size:var(--vft-font-size-base)}.vft-textarea__inner{position:relative;display:block;resize:vertical;padding:5px 11px;line-height:1.5;box-sizing:border-box;width:100%;font-size:inherit;font-family:inherit;color:var(--vft-input-text-color,var(--vft-text-regular-color));background-color:var(--vft-input-bg-color,var(--vft-fill-color-blank));background-image:none;-webkit-appearance:none;border-radius:var(--vft-input-border-radius,var(--vft-border-radius-base));transition:var(--vft-transition-box-shadow);border:1px solid var(--vft-input-border-color)}.vft-textarea__inner::-moz-placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-textarea__inner::placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-textarea__inner:hover{border:1px solid var(--vft-input-hover-border-color)}.vft-textarea__inner:focus{outline:0;border:1px solid var(--vft-input-focus-border-color)}.vft-textarea .vft-input__count{color:var(--vft-info-color);background:var(--vft-fill-color-blank);position:absolute;font-size:12px;line-height:14px;bottom:5px;right:10px}.vft-textarea.is-disabled .vft-textarea__inner{background-color:var(--vft-disabled-bg-color);border-color:var(--vft-disabled-border-color);color:var(--vft-disabled-text-color);cursor:not-allowed}.vft-textarea.is-disabled .vft-textarea__inner::-moz-placeholder{color:var(--vft-text-placeholder-color)}.vft-textarea.is-disabled .vft-textarea__inner::placeholder{color:var(--vft-text-placeholder-color)}.vft-textarea.is-exceed .vft-textarea__inner{border-color:var(--vft-danger-color)}.vft-textarea.is-exceed .vft-input__count{color:var(--vft-danger-color)}
|
|
1
|
+
:root{--vft-input-width:100%;--vft-input-text-color:var(--vft-text-regular-color);--vft-input-border:var(--vft-border);--vft-input-hover-border:var(--vft-border-color-hover);--vft-input-focus-border:var(--vft-primary-color);--vft-input-transparent-border:0 0 0 1px transparent inset;--vft-input-border-color:var(--vft-border-color);--vft-input-border-radius:var(--vft-border-radius-base);--vft-input-bg-color:var(--vft-fill-color-blank);--vft-input-icon-color:var(--vft-text-placeholder-color);--vft-input-placeholder-color:var(--vft-text-placeholder-color);--vft-input-hover-border-color:var(--vft-border-color-hover);--vft-input-clear-hover-color:var(--vft-text-secondary-color);--vft-input-focus-border-color:var(--vft-primary-color)}.vft-input{--vft-input-height:var(--vft-component-size);position:relative;font-size:var(--vft-font-size-base);display:inline-flex;width:var(--vft-input-width);line-height:var(--vft-input-height);box-sizing:border-box;vertical-align:middle;transition:width .2s ease}.vft-input::-webkit-scrollbar{z-index:11;width:6px}.vft-input::-webkit-scrollbar:horizontal{height:6px}.vft-input::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#c0c4cc;border:0 solid transparent}.vft-input::-webkit-scrollbar-thumb:hover{background:#c0c4cc}.vft-input::-webkit-scrollbar-corner{background:0 0}.vft-input::-webkit-scrollbar-track{background:0 0}.vft-input::-webkit-scrollbar-track-piece{background:0 0;width:6px}.vft-input .vft-input__clear,.vft-input .vft-input__password{color:var(--vft-input-icon-color);font-size:14px;cursor:pointer}.vft-input .vft-input__clear:hover,.vft-input .vft-input__password:hover{color:var(--vft-input-clear-hover-color)}.vft-input .vft-input__count{height:100%;display:inline-flex;align-items:center;color:var(--vft-info-color);font-size:12px}.vft-input .vft-input__count .vft-input__count-inner{background:var(--vft-fill-color-blank);line-height:initial;display:inline-block;padding-left:8px}.vft-input__wrapper{display:inline-flex;flex-grow:1;align-items:center;justify-content:center;padding:1px 11px;background-color:var(--vft-input-bg-color,var(--vft-fill-color-blank));background-image:none;border-radius:var(--vft-input-border-radius,var(--vft-border-radius-base));border:1px solid var(--vft-input-border-color)}.vft-input__wrapper:hover{border:1px solid var(--vft-input-hover-border-color)}.vft-input__wrapper.is-focus{border:1px solid var(--vft-input-focus-border-color)}.vft-input__inner{--vft-input-inner-height:calc(var(--vft-input-height, 32px) - 2px);width:100%;flex-grow:1;-webkit-appearance:none;color:var(--vft-input-text-color,var(--vft-text-regular-color));font-size:inherit;height:var(--vft-input-inner-height);line-height:var(--vft-input-inner-height);padding:0;outline:0;border:none;background:0 0;box-sizing:border-box}.vft-input__inner:focus{outline:0}.vft-input__inner::-moz-placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-input__inner::placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-input__inner[type=password]::-ms-reveal{display:none}.vft-input__inner[type=number]{line-height:1px}.vft-input__prefix{display:inline-flex;white-space:nowrap;flex-shrink:0;flex-wrap:nowrap;height:100%;text-align:center;color:var(--vft-input-icon-color,var(--vft-text-placeholder-color));transition:all var(--vft-transition-duration);pointer-events:none}.vft-input__prefix-inner{pointer-events:all;display:inline-flex;align-items:center;justify-content:center}.vft-input__prefix-inner>:last-child{margin-right:8px}.vft-input__prefix-inner>:first-child,.vft-input__prefix-inner>:first-child.vft-input__icon{margin-left:0}.vft-input__suffix{display:inline-flex;white-space:nowrap;flex-shrink:0;flex-wrap:nowrap;height:100%;text-align:center;color:var(--vft-input-icon-color,var(--vft-text-placeholder-color));transition:all var(--vft-transition-duration);pointer-events:none}.vft-input__suffix-inner{pointer-events:all;display:inline-flex;align-items:center;justify-content:center}.vft-input__suffix-inner>:first-child{margin-left:8px}.vft-input .vft-input__icon{transition:all var(--vft-transition-duration);margin-left:8px}.vft-input__validateIcon{pointer-events:none}.vft-input.is-active .vft-input__wrapper{border:1px solid var(--vft-input-focus-color)}.vft-input.is-disabled{cursor:not-allowed}.vft-input.is-disabled .vft-input__wrapper{background-color:var(--vft-disabled-bg-color);border:1px solid var(--vft-input-disable-color)}.vft-input.is-disabled .vft-input__inner{color:var(--vft-disabled-text-color);-webkit-text-fill-color:var(--vft-disabled-text-color);cursor:not-allowed}.vft-input.is-disabled .vft-input__inner::-moz-placeholder{color:var(--vft-text-placeholder-color)}.vft-input.is-disabled .vft-input__inner::placeholder{color:var(--vft-text-placeholder-color)}.vft-input.is-disabled .vft-input__icon{cursor:not-allowed}.vft-input.is-exceed .vft-input__wrapper{border:1px solid var(--vft-input-danger-color)}.vft-input.is-exceed .vft-input__suffix .vft-input__count{color:var(--vft-danger-color)}.vft-input--large{--vft-input-height:var(--vft-component-size-large);font-size:14px}.vft-input--large .vft-input__wrapper{padding:1px 15px}.vft-input--large .vft-input__inner{--vft-input-inner-height:calc(var(--vft-input-height, 40px) - 2px)}.vft-input--small{--vft-input-height:var(--vft-component-size-small);font-size:12px}.vft-input--small .vft-input__wrapper{padding:1px 7px}.vft-input--small .vft-input__inner{--vft-input-inner-height:calc(var(--vft-input-height, 24px) - 2px)}.vft-input-group{display:inline-flex;width:100%;align-items:stretch}.vft-input-group__append,.vft-input-group__prepend{background-color:var(--vft-fill-color-light);color:var(--vft-info-color);position:relative;display:inline-flex;align-items:center;justify-content:center;min-height:100%;border-radius:var(--vft-input-border-radius);padding:0 20px;white-space:nowrap}.vft-input-group__append:focus,.vft-input-group__prepend:focus{outline:0}.vft-input-group__append .vft-button,.vft-input-group__append .vft-select,.vft-input-group__prepend .vft-button,.vft-input-group__prepend .vft-select{display:inline-block;margin:0 -20px}.vft-input-group__append button.vft-button,.vft-input-group__append button.vft-button:hover,.vft-input-group__append div.vft-select .vft-input__wrapper,.vft-input-group__append div.vft-select:hover .vft-input__wrapper,.vft-input-group__prepend button.vft-button,.vft-input-group__prepend button.vft-button:hover,.vft-input-group__prepend div.vft-select .vft-input__wrapper,.vft-input-group__prepend div.vft-select:hover .vft-input__wrapper{border-color:transparent;background-color:transparent;color:inherit}.vft-input-group__append .vft-button,.vft-input-group__append .vft-input,.vft-input-group__prepend .vft-button,.vft-input-group__prepend .vft-input{font-size:inherit}.vft-input-group__prepend{border-top-right-radius:0;border-bottom-right-radius:0;border:1px solid var(--vft-input-border-color);border-right:0}.vft-input-group__append{border-top-left-radius:0;border-bottom-left-radius:0;border:1px solid var(--vft-input-border-color);border-left:0}.vft-input-group--prepend>.vft-input__wrapper{border-top-left-radius:0;border-bottom-left-radius:0}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input .vft-input__wrapper{border-top-right-radius:0;border-bottom-right-radius:0;border:1px solid var(--vft-input-border-color)}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__wrapper{border:1px solid var(--vft-input-focus-border-color);z-index:2}.vft-input-group--prepend .vft-input-group__prepend .vft-select .vft-input.is-focus .vft-input__wrapper:focus{outline:0;z-index:2;border:1px solid var(--vft-input-focus-border-color)}.vft-input-group--prepend .vft-input-group__prepend .vft-select:hover .vft-input__inner{box-shadow:none!important}.vft-input-group--prepend .vft-input-group__prepend .vft-select:hover .vft-input__wrapper{z-index:1;border:1px solid var(--vft-input-hover-border-color)}.vft-input-group--append>.vft-input__wrapper{border-top-right-radius:0;border-bottom-right-radius:0}.vft-input-group--append .vft-input-group__append .vft-select .vft-input .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select .vft-input .vft-input__wrapper{border-top-left-radius:0;border-bottom-left-radius:0;border:1px solid var(--vft-input-border-color)}.vft-input-group--append .vft-input-group__append .vft-select .vft-input.is-focus .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select .vft-input.is-focus .vft-input__wrapper{z-index:2;border:1px solid var(--vft-input-focus-border-color)}.vft-input-group--append .vft-input-group__append .vft-select:hover .vft-input__inner{box-shadow:none!important}.vft-input-group--append .vft-input-group__append .vft-select:hover .vft-input__wrapper{z-index:1;border:1px solid var(--vft-input-hover-border-color)}.vft-textarea{position:relative;display:inline-block;width:100%;vertical-align:bottom;font-size:var(--vft-font-size-base)}.vft-textarea__inner{position:relative;display:block;resize:vertical;padding:5px 11px;line-height:1.5;box-sizing:border-box;width:100%;font-size:inherit;font-family:inherit;color:var(--vft-input-text-color,var(--vft-text-regular-color));background-color:var(--vft-input-bg-color,var(--vft-fill-color-blank));background-image:none;-webkit-appearance:none;border-radius:var(--vft-input-border-radius,var(--vft-border-radius-base));transition:var(--vft-transition-box-shadow);border:1px solid var(--vft-input-border-color)}.vft-textarea__inner::-moz-placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-textarea__inner::placeholder{color:var(--vft-input-placeholder-color,var(--vft-text-placeholder-color))}.vft-textarea__inner:hover{border:1px solid var(--vft-input-hover-border-color)}.vft-textarea__inner:focus{outline:0;border:1px solid var(--vft-input-focus-border-color)}.vft-textarea .vft-input__count{color:var(--vft-info-color);background:var(--vft-fill-color-blank);position:absolute;font-size:12px;line-height:14px;bottom:5px;right:10px}.vft-textarea.is-disabled .vft-textarea__inner{background-color:var(--vft-disabled-bg-color);border-color:var(--vft-disabled-border-color);color:var(--vft-disabled-text-color);cursor:not-allowed}.vft-textarea.is-disabled .vft-textarea__inner::-moz-placeholder{color:var(--vft-text-placeholder-color)}.vft-textarea.is-disabled .vft-textarea__inner::placeholder{color:var(--vft-text-placeholder-color)}.vft-textarea.is-exceed .vft-textarea__inner{border-color:var(--vft-danger-color)}.vft-textarea.is-exceed .vft-input__count{color:var(--vft-danger-color)}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-select-group{margin:0;padding:0}.vft-select-group__wrap{position:relative;list-style:none;margin:0;padding:0}.vft-select-group__wrap:not(:last-of-type){padding-bottom:24px}.vft-select-group__wrap:not(:last-of-type)::after{content:"";position:absolute;display:block;left:20px;right:20px;bottom:12px;height:1px;background:var(--vft-border-color-light)}.vft-select-group__split-dash{position:absolute;left:20px;right:20px;height:1px;background:var(--vft-border-color-light)}.vft-select-group__title{padding-left:20px;font-size:12px;color:var(--vft-info-color);line-height:30px}.vft-select-group .vft-select-dropdown__item{padding-left:20px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-select-dropdown__option-item{font-size:var(--vft-select-font-size);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__option-item.is-disabled{color:var(--vft-text-placeholder-color);cursor:not-allowed}.vft-select-dropdown__option-item.is-disabled:hover{background-color:var(--vft-bg-color)}.vft-select-dropdown__option-item.is-selected{background-color:var(--vft-fill-color-light);font-weight:700}.vft-select-dropdown__option-item.is-selected:not(.is-multiple){color:var(--vft-primary-color)}.vft-select-dropdown__option-item.hover{background-color:var(--vft-fill-color-light)!important}.vft-select-dropdown__option-item:hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown.is-multiple .vft-select-dropdown__option-item.is-selected{color:var(--vft-primary-color);background-color:var(--vft-bg-color-overlay)}.vft-select-dropdown.is-multiple .vft-select-dropdown__option-item.is-selected .vft-icon{position:absolute;right:20px;top:0;height:inherit;font-size:12px}.vft-select-dropdown.is-multiple .vft-select-dropdown__option-item.is-selected .vft-icon svg{height:inherit;vertical-align:middle}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-radio-button{--vft-radio-button-checked-bg-color:var(--vft-primary-color);--vft-radio-button-checked-text-color:var(--vft-color-white);--vft-radio-button-checked-border-color:var(--vft-primary-color);--vft-radio-button-disabled-checked-fill:var(--vft-border-color-extra-light)}.vft-radio-button{position:relative;display:inline-block;outline:0}.vft-radio-button__inner{display:inline-block;line-height:1;white-space:nowrap;vertical-align:middle;background:var(--vft-button-bg-color,var(--vft-fill-color-blank));border:var(--vft-border);font-weight:var(--vft-button-font-weight,var(--vft-font-weight-primary));border-left:0;color:var(--vft-button-text-color,var(--vft-text-regular-color));-webkit-appearance:none;text-align:center;box-sizing:border-box;outline:0;margin:0;position:relative;cursor:pointer;transition:var(--vft-transition-all);-webkit-user-select:none;-moz-user-select:none;user-select:none;padding:8px 15px;font-size:var(--vft-font-size-base);border-radius:0}.vft-radio-button__inner.is-round{padding:8px 15px}.vft-radio-button__inner:hover{color:var(--vft-primary-color)}.vft-radio-button__inner [class*=vft-icon-]{line-height:.9}.vft-radio-button__inner [class*=vft-icon-]+span{margin-left:5px}.vft-radio-button:first-child .vft-radio-button__inner{border-left:var(--vft-border);border-radius:var(--vft-border-radius-base) 0 0 var(--vft-border-radius-base);box-shadow:none!important}.vft-radio-button__original-radio{opacity:0;outline:0;position:absolute;z-index:-1}.vft-radio-button__original-radio:checked+.vft-radio-button__inner{color:var(--vft-radio-button-checked-text-color,var(--vft-color-white));background-color:var(--vft-radio-button-checked-bg-color,var(--vft-primary-color));border-color:var(--vft-radio-button-checked-border-color,var(--vft-primary-color));box-shadow:-1px 0 0 0 var(--vft-radio-button-checked-border-color,var(--vft-primary-color))}.vft-radio-button__original-radio:focus-visible+.vft-radio-button__inner{border-left:var(--vft-border);border-left-color:var(--vft-radio-button-checked-border-color,var(--vft-primary-color));outline:2px solid var(--vft-radio-button-checked-border-color);outline-offset:1px;z-index:2;border-radius:var(--vft-border-radius-base);box-shadow:none}.vft-radio-button__original-radio:disabled+.vft-radio-button__inner{color:var(--vft-text-disabled-color);cursor:not-allowed;background-image:none;background-color:var(--vft-button-disabled-bg-color,var(--vft-fill-color-blank));border-color:var(--vft-button-disabled-border-color,var(--vft-border-color-light));box-shadow:none}.vft-radio-button__original-radio:disabled:checked+.vft-radio-button__inner{background-color:var(--vft-radio-button-disabled-checked-fill)}.vft-radio-button:last-child .vft-radio-button__inner{border-radius:0 var(--vft-border-radius-base) var(--vft-border-radius-base) 0}.vft-radio-button:first-child:last-child .vft-radio-button__inner{border-radius:var(--vft-border-radius-base)}.vft-radio-button--large .vft-radio-button__inner{padding:12px 19px;font-size:var(--vft-font-size-base);border-radius:0}.vft-radio-button--large .vft-radio-button__inner.is-round{padding:12px 19px}.vft-radio-button--small .vft-radio-button__inner{padding:5px 11px;font-size:12px;border-radius:0}.vft-radio-button--small .vft-radio-button__inner.is-round{padding:5px 11px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-radio-group{display:inline-flex;align-items:center;flex-wrap:wrap;font-size:0}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
@charset "UTF-8";.vft-radio{--vft-radio-font-size:var(--vft-font-size-base);--vft-radio-text-color:var(--vft-text-regular-color);--vft-radio-font-weight:var(--vft-font-weight-primary);--vft-radio-input-height:14px;--vft-radio-input-width:14px;--vft-radio-input-border-radius:var(--vft-border-radius-circle);--vft-radio-input-bg-color:var(--vft-fill-color-blank);--vft-radio-input-border:var(--vft-border);--vft-radio-input-border-color:var(--vft-border-color);--vft-radio-input-border-color-hover:var(--vft-primary-color)}.vft-radio{color:var(--vft-radio-text-color);font-weight:var(--vft-radio-font-weight);position:relative;cursor:pointer;display:inline-flex;align-items:center;white-space:nowrap;outline:0;font-size:var(--vft-font-size-base);-webkit-user-select:none;-moz-user-select:none;user-select:none;margin-right:32px;height:32px}.vft-radio.vft-radio--large{height:40px}.vft-radio.vft-radio--small{height:24px}.vft-radio.is-bordered{padding:0 15px 0 9px;border-radius:var(--vft-border-radius-base);border:var(--vft-border);box-sizing:border-box}.vft-radio.is-bordered.is-checked{border-color:var(--vft-primary-color)}.vft-radio.is-bordered.is-disabled{cursor:not-allowed;border-color:var(--vft-border-color-lighter)}.vft-radio.is-bordered.vft-radio--large{padding:0 19px 0 11px;border-radius:var(--vft-border-radius-base)}.vft-radio.is-bordered.vft-radio--large .vft-radio__label{font-size:var(--vft-font-size-base)}.vft-radio.is-bordered.vft-radio--large .vft-radio__inner{height:14px;width:14px}.vft-radio.is-bordered.vft-radio--small{padding:0 11px 0 7px;border-radius:var(--vft-border-radius-base)}.vft-radio.is-bordered.vft-radio--small .vft-radio__label{font-size:12px}.vft-radio.is-bordered.vft-radio--small .vft-radio__inner{height:12px;width:12px}.vft-radio:last-child{margin-right:0}.vft-radio__input{white-space:nowrap;cursor:pointer;outline:0;display:inline-flex;position:relative;vertical-align:middle}.vft-radio__input.is-disabled .vft-radio__inner{background-color:var(--vft-disabled-bg-color);border-color:var(--vft-disabled-border-color);cursor:not-allowed}.vft-radio__input.is-disabled .vft-radio__inner::after{cursor:not-allowed;background-color:var(--vft-disabled-bg-color)}.vft-radio__input.is-disabled .vft-radio__inner+.vft-radio__label{cursor:not-allowed}.vft-radio__input.is-disabled.is-checked .vft-radio__inner{background-color:var(--vft-disabled-bg-color);border-color:var(--vft-disabled-border-color)}.vft-radio__input.is-disabled.is-checked .vft-radio__inner::after{background-color:var(--vft-text-placeholder-color)}.vft-radio__input.is-disabled+span.vft-radio__label{color:var(--vft-text-placeholder-color);cursor:not-allowed}.vft-radio__input.is-checked .vft-radio__inner{border-color:var(--vft-primary-color);background:var(--vft-primary-color)}.vft-radio__input.is-checked .vft-radio__inner::after{transform:translate(-50%,-50%) scale(1)}.vft-radio__input.is-checked+.vft-radio__label{color:var(--vft-primary-color)}.vft-radio__input.is-focus .vft-radio__inner{border-color:var(--vft-radio-input-border-color-hover)}.vft-radio__inner{border:var(--vft-radio-input-border);border-radius:var(--vft-radio-input-border-radius);width:var(--vft-radio-input-width);height:var(--vft-radio-input-height);background-color:var(--vft-radio-input-bg-color);position:relative;cursor:pointer;display:inline-block;box-sizing:border-box}.vft-radio__inner:hover{border-color:var(--vft-radio-input-border-color-hover)}.vft-radio__inner::after{width:4px;height:4px;border-radius:var(--vft-radio-input-border-radius);background-color:var(--vft-color-white);content:"";position:absolute;left:50%;top:50%;transform:translate(-50%,-50%) scale(0);transition:transform .15s ease-in}.vft-radio__original{opacity:0;outline:0;position:absolute;z-index:-1;top:0;left:0;right:0;bottom:0;margin:0}.vft-radio__original:focus-visible+.vft-radio__inner{outline:2px solid var(--vft-radio-input-border-color-hover);outline-offset:1px;border-radius:var(--vft-radio-input-border-radius)}.vft-radio:focus:not(:focus-visible):not(.is-focus):not(:active):not(.is-disabled) .vft-radio__inner{box-shadow:0 0 2px 2px var(--vft-radio-input-border-color-hover)}.vft-radio__label{font-size:var(--vft-radio-font-size);padding-left:8px}.vft-radio.vft-radio--large .vft-radio__label{font-size:14px}.vft-radio.vft-radio--large .vft-radio__inner{width:14px;height:14px}.vft-radio.vft-radio--small .vft-radio__label{font-size:12px}.vft-radio.vft-radio--small .vft-radio__inner{width:12px;height:12px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-scrollbar{--vft-scrollbar-opacity:0.3;--vft-scrollbar-bg-color:var(--vft-text-secondary-color);--vft-scrollbar-hover-opacity:0.5;--vft-scrollbar-hover-bg-color:var(--vft-text-secondary-color)}.vft-scrollbar{overflow:hidden;position:relative;height:100%}.vft-scrollbar__wrap{overflow:auto;height:100%}.vft-scrollbar__wrap--hidden-default{scrollbar-width:none}.vft-scrollbar__wrap--hidden-default::-webkit-scrollbar{display:none}.vft-scrollbar__thumb{position:relative;display:block;width:0;height:0;cursor:pointer;border-radius:inherit;background-color:var(--vft-scrollbar-bg-color,var(--vft-text-secondary-color));transition:var(--vft-transition-duration) background-color;opacity:var(--vft-scrollbar-opacity,.3)}.vft-scrollbar__thumb:hover{background-color:var(--vft-scrollbar-hover-bg-color,var(--vft-text-secondary-color));opacity:var(--vft-scrollbar-hover-opacity,.5)}.vft-scrollbar__bar{position:absolute;right:2px;bottom:2px;z-index:1;border-radius:4px}.vft-scrollbar__bar.is-vertical{width:6px;top:2px}.vft-scrollbar__bar.is-vertical>div{width:100%}.vft-scrollbar__bar.is-horizontal{height:6px;left:2px}.vft-scrollbar__bar.is-horizontal>div{height:100%}.vft-scrollbar-fade-enter-active{transition:opacity 340ms ease-out}.vft-scrollbar-fade-leave-active{transition:opacity 120ms ease-out}.vft-scrollbar-fade-enter-from,.vft-scrollbar-fade-leave-active{opacity:0}
|
|
@@ -0,0 +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 .vft-scrollbar.is-empty .vft-select-dropdown__list{padding:0}.vft-select-dropdown__option-item.is-selected:not(.is-multiple).is-disabled{color:var(--vft-text-disabled-color)}.vft-select-dropdown__option-item.is-selected:not(.is-multiple).is-disabled::after{background-color:var(--vft-text-disabled-color)}.vft-select-dropdown__option-item:hover:not(.hover){background-color:transparent}.vft-select-dropdown.is-multiple .vft-select-dropdown__option-item.is-disabled.is-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;margin:6px 0!important;padding:0!important;box-sizing:border-box}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-select-dropdown{z-index:calc(var(--vft-index-top) + 1);border-radius:var(--vft-border-radius-base);box-sizing:border-box}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected{color:var(--vft-primary-color);background-color:var(--vft-bg-color-overlay)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.is-disabled::after{background-color:var(--vft-text-color-disabled)}.vft-select-dropdown .vft-select-dropdown__option-item.is-selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown .vft-scrollbar.is-empty .vft-select-dropdown__list{padding:0}.vft-select-dropdown .vft-select-dropdown__item.is-disabled:hover{background-color:unset}.vft-select-dropdown .vft-select-dropdown__item.is-disabled.selected{color:var(--vft-text-color-disabled)}.vft-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:var(--vft-text-secondary-color);font-size:var(--vft-select-font-size)}.vft-select-dropdown__wrap{max-height:274px}.vft-select-dropdown__list{list-style:none;padding:6px 0;margin:0;box-sizing:border-box}
|
|
@@ -0,0 +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 .vft-scrollbar.is-empty .vft-select-dropdown__list{padding:0}.vft-select-dropdown__option-item.is-selected:not(.is-multiple).is-disabled{color:var(--vft-text-disabled-color)}.vft-select-dropdown__option-item.is-selected:not(.is-multiple).is-disabled::after{background-color:var(--vft-text-disabled-color)}.vft-select-dropdown__option-item:hover:not(.hover){background-color:transparent}.vft-select-dropdown.is-multiple .vft-select-dropdown__option-item.is-disabled.is-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;margin:6px 0!important;padding:0!important;box-sizing:border-box}.vft-select-dropdown__option-item{font-size:var(--vft-select-font-size);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__option-item.is-disabled{color:var(--vft-text-placeholder-color);cursor:not-allowed}.vft-select-dropdown__option-item.is-disabled:hover{background-color:var(--vft-bg-color)}.vft-select-dropdown__option-item.is-selected{background-color:var(--vft-fill-color-light);font-weight:700}.vft-select-dropdown__option-item.is-selected:not(.is-multiple){color:var(--vft-primary-color)}.vft-select-dropdown__option-item.hover{background-color:var(--vft-fill-color-light)!important}.vft-select-dropdown__option-item:hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown.is-multiple .vft-select-dropdown__option-item.is-selected{color:var(--vft-primary-color);background-color:var(--vft-bg-color-overlay)}.vft-select-dropdown.is-multiple .vft-select-dropdown__option-item.is-selected .vft-icon{position:absolute;right:20px;top:0;height:inherit;font-size:12px}.vft-select-dropdown.is-multiple .vft-select-dropdown__option-item.is-selected .vft-icon svg{height:inherit;vertical-align:middle}.vft-select-group{margin:0;padding:0}.vft-select-group__wrap{position:relative;list-style:none;margin:0;padding:0}.vft-select-group__wrap:not(:last-of-type){padding-bottom:24px}.vft-select-group__wrap:not(:last-of-type)::after{content:"";position:absolute;display:block;left:20px;right:20px;bottom:12px;height:1px;background:var(--vft-border-color-light)}.vft-select-group__split-dash{position:absolute;left:20px;right:20px;height:1px;background:var(--vft-border-color-light)}.vft-select-group__title{padding-left:20px;font-size:12px;color:var(--vft-info-color);line-height:30px}.vft-select-group .vft-select-dropdown__item{padding-left:20px}.vft-select-v2{--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-v2{display:inline-block;position:relative;vertical-align:middle;font-size:14px}.vft-select-v2__wrapper{display:flex;align-items:center;flex-wrap:wrap;position:relative;box-sizing:border-box;cursor:pointer;padding:1px 30px 1px 0;border:1px solid var(--vft-border-color);border-radius:var(--vft-border-radius-base);background-color:var(--vft-fill-color-blank);transition:var(--vft-transition-duration)}.vft-select-v2__wrapper:hover{border-color:var(--vft-text-placeholder-color)}.vft-select-v2__wrapper.is-filterable{cursor:text}.vft-select-v2__wrapper.is-focused{border-color:var(--vft-primary-color)}.vft-select-v2__wrapper.is-hovering:not(.is-focused){border-color:var(--vft-border-color-hover)}.vft-select-v2__wrapper.is-disabled{cursor:not-allowed;background-color:var(--vft-fill-color-light);color:var(--vft-text-placeholder-color);border-color:var(--vft-select-disabled-border)}.vft-select-v2__wrapper.is-disabled:hover{border-color:var(--vft-select-disabled-border)}.vft-select-v2__wrapper.is-disabled.is-focus{border-color:var(--vft-input-focus-border-color)}.vft-select-v2__wrapper.is-disabled .is-transparent{opacity:1;-webkit-user-select:none;-moz-user-select:none;user-select:none}.vft-select-v2__wrapper.is-disabled .vft-select-v2__caret{cursor:not-allowed}.vft-select-v2__wrapper.is-disabled .vft-select-v2__combobox-input{cursor:not-allowed}.vft-select-v2__wrapper .vft-select-v2__input-wrapper{box-sizing:border-box;position:relative;-webkit-margin-start:12px;margin-inline-start:12px;max-width:100%;overflow:hidden}.vft-select-v2__wrapper,.vft-select-v2__wrapper .vft-select-v2__input-wrapper{line-height:32px}.vft-select-v2__wrapper .vft-select-v2__input-wrapper input{--vft-input-inner-height:calc(var(--vft-component-size, 32px) - 8px);height:var(--vft-input-inner-height);line-height:var(--vft-input-inner-height);min-width:4px;width:100%;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:0 0;border:none;margin:2px 0;outline:0;padding:0}.vft-select-v2 .vft-select-v2__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-v2__empty{padding:10px 0;margin:0;text-align:center;color:var(--vft-text-secondary-color);font-size:14px}.vft-select-v2__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-v2__popper.vft-popper .vft-popper__arrow::before{border:1px solid var(--vft-border-color-light)}.vft-select-v2__popper.vft-popper[data-popper-placement^=top] .vft-popper__arrow::before{border-top-color:transparent;border-left-color:transparent}.vft-select-v2__popper.vft-popper[data-popper-placement^=bottom] .vft-popper__arrow::before{border-bottom-color:transparent;border-right-color:transparent}.vft-select-v2__popper.vft-popper[data-popper-placement^=left] .vft-popper__arrow::before{border-left-color:transparent;border-bottom-color:transparent}.vft-select-v2__popper.vft-popper[data-popper-placement^=right] .vft-popper__arrow::before{border-right-color:transparent;border-top-color:transparent}.vft-select-v2--large .vft-select-v2__wrapper .vft-select-v2__combobox-input{height:32px}.vft-select-v2--large .vft-select-v2__caret{height:40px}.vft-select-v2--large .vft-select-v2__suffix{height:40px}.vft-select-v2--large .vft-select-v2__placeholder{font-size:14px;line-height:40px}.vft-select-v2--small .vft-select-v2__wrapper .vft-select-v2__combobox-input{height:16px}.vft-select-v2--small .vft-select-v2__caret{height:24px}.vft-select-v2--small .vft-select-v2__suffix{height:24px}.vft-select-v2--small .vft-select-v2__placeholder{font-size:12px;line-height:24px}.vft-select-v2 .vft-select-v2__selection>span{display:inline-block}.vft-select-v2:hover .vft-select-v2__combobox-input{border-color:var(--vft-select-border-color-hover)}.vft-select-v2 .vft-select__selection-text{text-overflow:ellipsis;display:inline-block;overflow-x:hidden;vertical-align:bottom}.vft-select-v2 .vft-select-v2__combobox-input{padding-right:35px;display:block;color:var(--vft-text-regular-color)}.vft-select-v2 .vft-select-v2__combobox-input:focus{border-color:var(--vft-select-input-focus-border-color)}.vft-select-v2__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}.vft-select-v2__input.is-small{height:14px}.vft-select-v2__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-v2__close:hover{color:var(--vft-select-close-hover-color)}.vft-select-v2__suffix{display:inline-flex;position:absolute;right:12px;height:32px;top:50%;transform:translateY(-50%);color:var(--vft-input-icon-color,var(--vft-text-placeholder-color))}.vft-select-v2__suffix .vft-input__icon{height:inherit}.vft-select-v2__suffix .vft-input__icon:not(:first-child){margin-left:8px}.vft-select-v2__caret{color:var(--vft-select-input-color);font-size:var(--vft-select-input-font-size);transition:var(--vft-transition-duration);transform:rotateZ(180deg);cursor:pointer}.vft-select-v2__caret.is-reverse{transform:rotateZ(0)}.vft-select-v2__caret.is-show-close{font-size:var(--vft-select-font-size);text-align:center;transform:rotateZ(180deg);border-radius:var(--vft-border-radius-circle);color:var(--vft-select-input-color);transition:var(--vft-transition-color)}.vft-select-v2__caret.is-show-close:hover{color:var(--vft-select-close-hover-color)}.vft-select-v2__caret.vft-icon{height:inherit}.vft-select-v2__caret.vft-icon svg{vertical-align:middle}.vft-select-v2__selection{white-space:normal;z-index:var(--vft-index-normal);display:flex;align-items:center;flex-wrap:wrap;width:100%}.vft-select-v2__input-calculator{left:0;position:absolute;top:0;visibility:hidden;white-space:pre;z-index:999}.vft-select-v2__selected-item{line-height:inherit;height:inherit;-webkit-user-select:none;-moz-user-select:none;user-select:none;display:flex;flex-wrap:wrap}.vft-select-v2__placeholder{position:absolute;top:50%;transform:translateY(-50%);-webkit-margin-start:12px;margin-inline-start:12px;width:calc(100% - 52px);overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1;color:var(--vft-input-text-color,var(--vft-text-regular-color))}.vft-select-v2__placeholder.is-transparent{color:var(--vft-text-placeholder-color)}.vft-select-v2 .vft-select-v2__selection .vft-tag{box-sizing:border-box;border-color:transparent;margin:2px 0 2px 6px;background-color:var(--vft-fill-color)}.vft-select-v2 .vft-select-v2__selection .vft-tag .vft-icon-close{background-color:var(--vft-text-placeholder-color);right:-7px;color:var(--vft-color-white)}.vft-select-v2 .vft-select-v2__selection .vft-tag .vft-icon-close:hover{background-color:var(--vft-text-secondary-color)}.vft-select-v2 .vft-select-v2__selection .vft-tag .vft-icon-close::before{display:block;transform:translate(0,.5px)}.vft-select-v2.vft-select-v2--small .vft-select-v2__selection .vft-tag{margin:1px 0 1px 6px;height:18px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-select-dropdown{z-index:calc(var(--vft-index-top) + 1);border-radius:var(--vft-border-radius-base);box-sizing:border-box}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected{color:var(--vft-primary-color);background-color:var(--vft-bg-color-overlay)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.hover{background-color:var(--vft-fill-color-light)}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown.is-multiple .vft-select-dropdown__item.selected.is-disabled::after{background-color:var(--vft-text-color-disabled)}.vft-select-dropdown .vft-select-dropdown__option-item.is-selected::after{content:"";position:absolute;top:50%;right:20px;border-top:none;border-right:none;background-repeat:no-repeat;background-position:center;background-color:var(--vft-primary-color);-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;mask-size:100% 100%;-webkit-mask:url("data:image/svg+xml;utf8,%3Csvg class='icon' width='200' height='200' viewBox='0 0 1024 1024' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='currentColor' d='M406.656 706.944L195.84 496.256a32 32 0 10-45.248 45.248l256 256 512-512a32 32 0 00-45.248-45.248L406.592 706.944z'%3E%3C/path%3E%3C/svg%3E") no-repeat;-webkit-mask-size:100% 100%;transform:translateY(-50%);width:12px;height:12px}.vft-select-dropdown .vft-scrollbar.is-empty .vft-select-dropdown__list{padding:0}.vft-select-dropdown .vft-select-dropdown__item.is-disabled:hover{background-color:unset}.vft-select-dropdown .vft-select-dropdown__item.is-disabled.selected{color:var(--vft-text-color-disabled)}.vft-select-dropdown__empty{padding:10px 0;margin:0;text-align:center;color:var(--vft-text-secondary-color);font-size:var(--vft-select-font-size)}.vft-select-dropdown__wrap{max-height:274px}.vft-select-dropdown__list{list-style:none;padding:6px 0;margin:0;box-sizing:border-box}.vft-select{--vft-select-border-color-hover:var(--vft-border-color-hover);--vft-select-disabled-border:var(--vft-disabled-border-color);--vft-select-font-size:var(--vft-font-size-base);--vft-select-close-hover-color:var(--vft-text-secondary-color);--vft-select-input-color:var(--vft-text-placeholder-color);--vft-select-multiple-input-color:var(--vft-text-regular-color);--vft-select-input-focus-border-color:var(--vft-primary-color);--vft-select-input-font-size:14px}.vft-select{display:inline-block;position:relative;vertical-align:middle;line-height:32px}.vft-select__popper.vft-popper{background:var(--vft-bg-color-overlay);border:1px solid var(--vft-border-color-light);box-shadow:var(--vft-box-shadow-light)}.vft-select__popper.vft-popper .vft-popper__arrow::before{border:1px solid var(--vft-border-color-light)}.vft-select__popper.vft-popper[data-popper-placement^=top] .vft-popper__arrow::before{border-top-color:transparent;border-left-color:transparent}.vft-select__popper.vft-popper[data-popper-placement^=bottom] .vft-popper__arrow::before{border-bottom-color:transparent;border-right-color:transparent}.vft-select__popper.vft-popper[data-popper-placement^=left] .vft-popper__arrow::before{border-left-color:transparent;border-bottom-color:transparent}.vft-select__popper.vft-popper[data-popper-placement^=right] .vft-popper__arrow::before{border-right-color:transparent;border-top-color:transparent}.vft-select .vft-select-tags-wrapper.has-prefix{margin-left:6px}.vft-select--large{line-height:40px}.vft-select--large .vft-select-tags-wrapper.has-prefix{margin-left:8px}.vft-select--small{line-height:24px}.vft-select--small .vft-select-tags-wrapper.has-prefix{margin-left:4px}.vft-select .vft-select__tags>span{display:inline-block}.vft-select:hover:not(.vft-select--disabled) .vft-input__wrapper{box-shadow:0 0 0 1px var(--vft-select-border-color-hover) inset}.vft-select .vft-select__tags-text{display:inline-block;line-height:normal;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1}.vft-select .vft-input__wrapper{cursor:pointer}.vft-select .vft-input__wrapper.is-focus{box-shadow:0 0 0 1px var(--vft-select-input-focus-border-color) inset!important}.vft-select .vft-input__inner{cursor:pointer}.vft-select .vft-input{display:flex}.vft-select .vft-input .vft-select__caret{color:var(--vft-select-input-color);font-size:var(--vft-select-input-font-size);transition:transform var(--vft-transition-duration);transform:rotateZ(0);cursor:pointer}.vft-select .vft-input .vft-select__caret.is-reverse{transform:rotateZ(-180deg)}.vft-select .vft-input .vft-select__caret.is-show-close{font-size:var(--vft-select-font-size);text-align:center;transform:rotateZ(0);border-radius:var(--vft-border-radius-circle);color:var(--vft-select-input-color);transition:var(--vft-transition-color)}.vft-select .vft-input .vft-select__caret.is-show-close:hover{color:var(--vft-select-close-hover-color)}.vft-select .vft-input .vft-select__caret.vft-icon{position:relative;height:inherit;z-index:2}.vft-select .vft-input.is-disabled .vft-input__wrapper{cursor:not-allowed}.vft-select .vft-input.is-disabled .vft-input__wrapper:hover{box-shadow:0 0 0 1px var(--vft-select-disabled-border) inset}.vft-select .vft-input.is-disabled .vft-input__inner{cursor:not-allowed}.vft-select .vft-input.is-disabled .vft-select__caret{cursor:not-allowed}.vft-select .vft-input.is-focus .vft-input__wrapper{box-shadow:0 0 0 1px var(--vft-select-input-focus-border-color) inset!important}.vft-select__input{border:none;outline:0;padding:0;margin-left:15px;color:var(--vft-select-multiple-input-color);font-size:var(--vft-select-font-size);-webkit-appearance:none;-moz-appearance:none;appearance:none;height:28px;background-color:transparent}.vft-select__input--iOS{position:absolute;left:0;top:0;z-index:6}.vft-select__input.is-small{height:14px}.vft-select__close{cursor:pointer;position:absolute;top:8px;z-index:var(--vft-index-top);right:25px;color:var(--vft-select-input-color);line-height:18px;font-size:var(--vft-select-input-font-size)}.vft-select__close:hover{color:var(--vft-select-close-hover-color)}.vft-select__tags{position:absolute;line-height:normal;top:50%;transform:translateY(-50%);white-space:normal;z-index:var(--vft-index-normal);display:flex;align-items:center;flex-wrap:wrap;cursor:pointer}.vft-select__tags .vft-tag{box-sizing:border-box;border-color:transparent;margin:2px 6px 2px 0}.vft-select__tags .vft-tag:last-child{margin-right:0}.vft-select__tags .vft-tag .vft-icon-close{background-color:var(--vft-text-color-placeholder);right:-7px;top:0;color:#fff}.vft-select__tags .vft-tag .vft-icon-close:hover{background-color:var(--vft-text-color-secondary)}.vft-select__tags .vft-tag .vft-icon-close::before{display:block;transform:translate(0,.5px)}.vft-select__tags .vft-tag--info{background-color:var(--vft-fill-color)}.vft-select__collapse-tags{white-space:normal;z-index:var(--vft-index-normal);display:flex;align-items:center;flex-wrap:wrap;cursor:pointer}.vft-select__collapse-tags .vft-tag{box-sizing:border-box;border-color:transparent;margin:2px 6px 2px 0}.vft-select__collapse-tags .vft-tag:last-child{margin-right:0}.vft-select__collapse-tags .vft-tag .vft-icon-close{background-color:var(--vft-text-color-placeholder);right:-7px;top:0;color:#fff}.vft-select__collapse-tags .vft-tag .vft-icon-close:hover{background-color:var(--vft-text-color-secondary)}.vft-select__collapse-tags .vft-tag .vft-icon-close::before{display:block;transform:translate(0,.5px)}.vft-select__collapse-tags .vft-tag--info{background-color:var(--vft-fill-color)}.vft-select__collapse-tag{line-height:inherit;height:inherit;display:flex}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
:root{--vft-side-menu-border:var(--vft-menu-border-right);--vft-side-menu-width:200px;--vft-side-menu-collapse-width:200px;--vft-side-menu-scroll-mr:0}.vft-side-menu{overflow-x:hidden;transition:width .2s;width:var(--vft-side-menu-width);display:flex;flex-direction:column}.vft-side-menu--fixed{position:fixed;left:0;z-index:1}.vft-side-menu__top{border-bottom:var(--vft-side-menu-border);z-index:1;background-color:#fff}.vft-side-menu__bottom{border-top:var(--vft-side-menu-border);position:absolute;bottom:0;width:100%}.vft-side-menu__collapse{cursor:pointer;height:40px;padding:0 16px;display:flex;align-items:center;border-right:var(--vft-menu-border-right)}.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__popper{margin-right:var(--vft-side-menu-scroll-mr)}.vft-side-menu__popper .vft-menu--popup{overflow-y:auto;overflow-y:overlay;box-shadow:none;max-height:calc(100vh - 200px)}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar{z-index:11;width:6px}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar:horizontal{height:6px}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-thumb{border-radius:5px;width:6px;background:#c0c4cc;border:0 solid transparent}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-thumb:hover{background:#c0c4cc}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-corner{background:0 0}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-track{background:0 0}.vft-side-menu__popper .vft-menu--popup::-webkit-scrollbar-track-piece{background:0 0;width:6px}
|
|
1
|
+
:root{--vft-side-menu-border:var(--vft-menu-border-right);--vft-side-menu-width:200px;--vft-side-menu-collapse-width:200px;--vft-side-menu-scroll-mr:0}.vft-side-menu{overflow-x:hidden;transition:width .2s;width:var(--vft-side-menu-width);display:flex;flex-direction:column;border-right:var(--vft-menu-border-right)}.vft-side-menu--fixed{position:fixed;left:0;z-index:1}.vft-side-menu__top{border-bottom:var(--vft-side-menu-border);z-index:1;background-color:#fff}.vft-side-menu__bottom{border-top:var(--vft-side-menu-border);position:absolute;bottom:0;width:100%}.vft-side-menu__collapse{cursor:pointer;height:40px;padding:0 16px;display:flex;align-items:center;border-right:var(--vft-menu-border-right)}.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-right:none}.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-switch{--vft-switch-on-color:var(--vft-primary-color);--vft-switch-off-color:var(--vft-border-color)}.vft-switch{display:inline-flex;align-items:center;position:relative;font-size:14px;line-height:20px;height:32px;vertical-align:middle}.vft-switch.is-disabled .vft-switch__core,.vft-switch.is-disabled .vft-switch__label{cursor:not-allowed}.vft-switch__label{transition:var(--vft-transition-duration-fast);height:20px;display:inline-block;font-size:14px;font-weight:500;cursor:pointer;vertical-align:middle;color:var(--vft-text-primary-color)}.vft-switch__label.is-active{color:var(--vft-primary-color)}.vft-switch__label--left{margin-right:10px}.vft-switch__label--right{margin-left:10px}.vft-switch__label *{line-height:1;font-size:14px;display:inline-block}.vft-switch__label .vft-icon{height:inherit}.vft-switch__label .vft-icon svg{vertical-align:middle}.vft-switch__input{position:absolute;width:0;height:0;opacity:0;margin:0}.vft-switch__input:focus-visible~.vft-switch__core{outline:2px solid var(--vft-switch-on-color);outline-offset:1px}.vft-switch__core{display:inline-flex;position:relative;align-items:center;min-width:40px;height:20px;border:1px solid var(--vft-switch-border-color,var(--vft-switch-off-color));outline:0;border-radius:10px;box-sizing:border-box;background:var(--vft-switch-off-color);cursor:pointer;transition:border-color var(--vft-transition-duration),background-color var(--vft-transition-duration)}.vft-switch__core .vft-switch__inner{width:100%;transition:all var(--vft-transition-duration);height:16px;display:flex;justify-content:center;align-items:center;overflow:hidden;padding:0 4px 0 calc(16px + 2px)}.vft-switch__core .vft-switch__inner .is-text,.vft-switch__core .vft-switch__inner i{font-size:12px;color:var(--vft-color-white);-webkit-user-select:none;-moz-user-select:none;user-select:none;overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;line-clamp:1}.vft-switch__core .vft-switch__action{position:absolute;left:1px;border-radius:var(--vft-border-radius-circle);transition:all var(--vft-transition-duration);width:16px;height:16px;background-color:var(--vft-color-white);display:flex;justify-content:center;align-items:center;color:var(--vft-switch-off-color)}.vft-switch.is-checked .vft-switch__core{border-color:var(--vft-switch-border-color,var(--vft-switch-on-color));background-color:var(--vft-switch-on-color)}.vft-switch.is-checked .vft-switch__core .vft-switch__action{left:calc(100% - 17px);color:var(--vft-switch-on-color)}.vft-switch.is-checked .vft-switch__core .vft-switch__inner{padding:0 calc(16px + 2px) 0 4px}.vft-switch.is-disabled{opacity:.6}.vft-switch--wide .vft-switch__label.vft-switch__label--left span{left:10px}.vft-switch--wide .vft-switch__label.vft-switch__label--right span{right:10px}.vft-switch .label-fade-enter-from,.vft-switch .label-fade-leave-active{opacity:0}.vft-switch--large{font-size:14px;line-height:24px;height:40px}.vft-switch--large .vft-switch__label{height:24px;font-size:14px}.vft-switch--large .vft-switch__label *{font-size:14px}.vft-switch--large .vft-switch__core{min-width:50px;height:24px;border-radius:12px}.vft-switch--large .vft-switch__core .vft-switch__inner{height:20px;padding:0 6px 0 calc(20px + 2px)}.vft-switch--large .vft-switch__core .vft-switch__action{width:20px;height:20px}.vft-switch--large.is-checked .vft-switch__core .vft-switch__action{left:calc(100% - 21px)}.vft-switch--large.is-checked .vft-switch__core .vft-switch__inner{padding:0 calc(20px + 2px) 0 6px}.vft-switch--small{font-size:12px;line-height:16px;height:24px}.vft-switch--small .vft-switch__label{height:16px;font-size:12px}.vft-switch--small .vft-switch__label *{font-size:12px}.vft-switch--small .vft-switch__core{min-width:30px;height:16px;border-radius:8px}.vft-switch--small .vft-switch__core .vft-switch__inner{height:12px;padding:0 2px 0 calc(12px + 2px)}.vft-switch--small .vft-switch__core .vft-switch__action{width:12px;height:12px}.vft-switch--small.is-checked .vft-switch__core .vft-switch__action{left:calc(100% - 13px)}.vft-switch--small.is-checked .vft-switch__core .vft-switch__inner{padding:0 calc(12px + 2px) 0 2px}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-table .vxe-table .vxe-table--fixed-left-wrapper{z-index:10;overflow:unset}.vft-table .vxe-table .vxe-table--fixed-left-wrapper .vxe-table--body-wrapper{width:100%;overflow-y:hidden}.vft-table .vxe-table .vxe-table--header-wrapper{background-color:#f3fbfe;position:sticky!important;top:0;z-index:10;overflow:hidden}.vft-table .vxe-table .vxe-header--column{background-color:#f3fbfe;color:rgba(0,0,0,.85);-webkit-user-select:none;-moz-user-select:none;user-select:none;font-weight:500;line-height:17px;font-size:12px;padding:8px 0}.vft-table .vxe-table .vxe-header--column.is--sortable{cursor:pointer}.vft-table .vxe-table .vxe-table--render-default .vxe-body--column.col--ellipsis:not(.col--actived)>.vxe-cell,.vft-table .vxe-table .vxe-table--render-default .vxe-footer--column.col--ellipsis:not(.col--actived)>.vxe-cell,.vft-table .vxe-table .vxe-table--render-default .vxe-header--column.col--ellipsis:not(.col--actived)>.vxe-cell{white-space:normal;max-height:inherit}.vft-table .vxe-table .vxe-cell{white-space:normal}.vft-table .vxe-table .vxe-table--render-default .vxe-body--column.cellClass{padding:0;height:44px;font-size:13px;line-height:20px;color:#111;font-weight:400}.vft-table .vxe-table .vxe-table--render-default .vxe-body--column.cellClass .vxe-cell--label{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;line-clamp:2}.vft-table .vxe-table .vxe-table--render-default .vxe-body--column.cellClass .vxe-cell{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;line-clamp:2}.vft-table .vxe-table .vxe-table--render-default .vxe-body--column.cellClass .line-clamp{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;line-clamp:2}.vft-table .vxe-table .vxe-table--render-default .vxe-body--column.cellClass a{color:var(--vft-primary-color);font-size:13px;cursor:pointer}.vft-table .vxe-table .vxe-table--render-default .vxe-body--column.cellClass a:hover{text-decoration:underline}.vft-table .vxe-table .vxe-table--render-default .vxe-body--column.cellClass em{color:#fe3a2f;font-style:normal}.vft-table .vxe-table .vxe-sort--asc-btn,.vft-table .vxe-table .vxe-sort--desc-btn{pointer-events:none}.vft-table .vxe-table .remark{color:#111;position:relative;cursor:pointer}.vft-table .vxe-table .remark::after{content:"*";color:#f64c4c;position:absolute;font-size:18px;right:-8px;top:0}.vft-table .vxe-grid--bottom-wrapper{position:sticky;bottom:0;z-index:3000}.vft-table__sticky-scroll-warpper{height:10px;width:100%;overflow-x:auto;border-radius:4px;background-color:transparent;border-right:1px solid #ebeef5;box-sizing:content-box;z-index:9;display:block}.vft-table__sticky-scroll-bar{height:1px;width:100%;box-sizing:border-box}.vft-table--pager-bottom-right{margin-top:10px;justify-content:flex-end}.vft-table--pager-bottom-right .btn-next{margin-right:0!important}.vft-table--pager-bottom-left{margin-top:10px;justify-content:flex-start}.vft-table--pager-bottom-left .btn-prev{margin-left:0!important}.vft-table--pager-top-right{margin-bottom:10px;justify-content:flex-end}.vft-table--pager-top-right .btn-next{margin-right:0!important}.vft-table--pager-top-left{margin-bottom:10px;justify-content:flex-start}.vft-table--pager-top-left .btn-prev{margin-left:0!important}
|
|
File without changes
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
.vft-vl__wrapper{position:relative}.vft-vl__wrapper:hover .vft-virtual-scrollbar{opacity:1}.vft-vl__wrapper.always-on .vft-virtual-scrollbar{opacity:1}.vft-vl__window{scrollbar-width:none}.vft-vl__window::-webkit-scrollbar{display:none}.vft-virtual-scrollbar{opacity:0;transition:opacity 340ms ease-out}.vft-virtual-scrollbar.always-on{opacity:1}.vft-vg__wrapper{position:relative}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
export interface ConfigProviderProps {
|
|
2
|
-
/** 主题风格 */
|
|
3
|
-
theme?: Theme;
|
|
4
|
-
/** 自定义主题变量 */
|
|
5
|
-
themeVars?: Record<string, Numberish>;
|
|
6
|
-
/** 仅在深色模式下生效的主题变量 */
|
|
7
|
-
themeVarsDark?: Record<string, Numberish>;
|
|
8
|
-
/** 仅在浅色模式下生效的主题变量 */
|
|
9
|
-
themeVarsLight?: Record<string, Numberish>;
|
|
10
|
-
/** 所有图标的类名前缀 */
|
|
11
|
-
iconPrefix?: string;
|
|
12
|
-
/** 组件公共命名 */
|
|
13
|
-
namespace?: string;
|
|
14
|
-
/** 设置所有弹窗类组件的 z-index */
|
|
15
|
-
zIndex?: number;
|
|
16
|
-
/** 可同时显示的消息最大数量 */
|
|
17
|
-
projectCfg?: Record<string, any>;
|
|
18
|
-
}
|
|
@@ -1,237 +0,0 @@
|
|
|
1
|
-
import type { VNode } from 'vue';
|
|
2
|
-
export declare const paginationEmits: {
|
|
3
|
-
'update:current-page': (val: number) => boolean;
|
|
4
|
-
'update:page-size': (val: number) => boolean;
|
|
5
|
-
'size-change': (val: number) => boolean;
|
|
6
|
-
'current-change': (val: number) => boolean;
|
|
7
|
-
'prev-click': (val: number) => boolean;
|
|
8
|
-
'next-click': (val: number) => boolean;
|
|
9
|
-
};
|
|
10
|
-
export type PaginationEmits = typeof paginationEmits;
|
|
11
|
-
declare const _default: import("vue").DefineComponent<{
|
|
12
|
-
/**
|
|
13
|
-
* @description total item count
|
|
14
|
-
*/
|
|
15
|
-
total: NumberConstructor;
|
|
16
|
-
/**
|
|
17
|
-
* @description options of item count per page
|
|
18
|
-
*/
|
|
19
|
-
pageSize: NumberConstructor;
|
|
20
|
-
/**
|
|
21
|
-
* @description default initial value of page size
|
|
22
|
-
*/
|
|
23
|
-
defaultPageSize: NumberConstructor;
|
|
24
|
-
/**
|
|
25
|
-
* @description current page number
|
|
26
|
-
*/
|
|
27
|
-
currentPage: NumberConstructor;
|
|
28
|
-
/**
|
|
29
|
-
* @description default initial value of current-page
|
|
30
|
-
*/
|
|
31
|
-
defaultCurrentPage: NumberConstructor;
|
|
32
|
-
/**
|
|
33
|
-
* @description total page count. Set either `total` or `page-count` and pages will be displayed; if you need `page-sizes`, `total` is required
|
|
34
|
-
*/
|
|
35
|
-
pageCount: NumberConstructor;
|
|
36
|
-
/**
|
|
37
|
-
* @description number of pagers. Pagination collapses when the total page count exceeds this value
|
|
38
|
-
*/
|
|
39
|
-
pagerCount: {
|
|
40
|
-
type: NumberConstructor;
|
|
41
|
-
validator: (value: unknown) => boolean;
|
|
42
|
-
default: number;
|
|
43
|
-
};
|
|
44
|
-
/**
|
|
45
|
-
* @description layout of Pagination, elements separated with a comma
|
|
46
|
-
*/
|
|
47
|
-
layout: {
|
|
48
|
-
type: StringConstructor;
|
|
49
|
-
default: string;
|
|
50
|
-
};
|
|
51
|
-
/**
|
|
52
|
-
* @description item count of each page
|
|
53
|
-
*/
|
|
54
|
-
pageSizes: {
|
|
55
|
-
type: ArrayConstructor;
|
|
56
|
-
default: number[];
|
|
57
|
-
};
|
|
58
|
-
/**
|
|
59
|
-
* @description custom class name for the page size Select's dropdown
|
|
60
|
-
*/
|
|
61
|
-
popperClass: {
|
|
62
|
-
type: StringConstructor;
|
|
63
|
-
default: string;
|
|
64
|
-
};
|
|
65
|
-
/**
|
|
66
|
-
* @description text for the prev button
|
|
67
|
-
*/
|
|
68
|
-
prevText: {
|
|
69
|
-
type: StringConstructor;
|
|
70
|
-
default: string;
|
|
71
|
-
};
|
|
72
|
-
/**
|
|
73
|
-
* @description icon for the prev button, higher priority of `prev-text`
|
|
74
|
-
*/
|
|
75
|
-
prevIcon: {
|
|
76
|
-
type: StringConstructor;
|
|
77
|
-
default: () => string;
|
|
78
|
-
};
|
|
79
|
-
/**
|
|
80
|
-
* @description text for the next button
|
|
81
|
-
*/
|
|
82
|
-
nextText: {
|
|
83
|
-
type: StringConstructor;
|
|
84
|
-
default: string;
|
|
85
|
-
};
|
|
86
|
-
/**
|
|
87
|
-
* @description icon for the next button, higher priority of `next-text`
|
|
88
|
-
*/
|
|
89
|
-
nextIcon: {
|
|
90
|
-
type: StringConstructor;
|
|
91
|
-
default: () => string;
|
|
92
|
-
};
|
|
93
|
-
/**
|
|
94
|
-
* @description whether to use small pagination
|
|
95
|
-
*/
|
|
96
|
-
small: BooleanConstructor;
|
|
97
|
-
/**
|
|
98
|
-
* @description whether the buttons have a background color
|
|
99
|
-
*/
|
|
100
|
-
background: BooleanConstructor;
|
|
101
|
-
/**
|
|
102
|
-
* @description whether Pagination is disabled
|
|
103
|
-
*/
|
|
104
|
-
disabled: BooleanConstructor;
|
|
105
|
-
/**
|
|
106
|
-
* @description whether to hide when there's only one page
|
|
107
|
-
*/
|
|
108
|
-
hideOnSinglePage: BooleanConstructor;
|
|
109
|
-
}, () => VNode<import("vue").RendererNode, import("vue").RendererElement, {
|
|
110
|
-
[key: string]: any;
|
|
111
|
-
}> | null, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
112
|
-
'update:current-page': (val: number) => boolean;
|
|
113
|
-
'update:page-size': (val: number) => boolean;
|
|
114
|
-
'size-change': (val: number) => boolean;
|
|
115
|
-
'current-change': (val: number) => boolean;
|
|
116
|
-
'prev-click': (val: number) => boolean;
|
|
117
|
-
'next-click': (val: number) => boolean;
|
|
118
|
-
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
119
|
-
/**
|
|
120
|
-
* @description total item count
|
|
121
|
-
*/
|
|
122
|
-
total: NumberConstructor;
|
|
123
|
-
/**
|
|
124
|
-
* @description options of item count per page
|
|
125
|
-
*/
|
|
126
|
-
pageSize: NumberConstructor;
|
|
127
|
-
/**
|
|
128
|
-
* @description default initial value of page size
|
|
129
|
-
*/
|
|
130
|
-
defaultPageSize: NumberConstructor;
|
|
131
|
-
/**
|
|
132
|
-
* @description current page number
|
|
133
|
-
*/
|
|
134
|
-
currentPage: NumberConstructor;
|
|
135
|
-
/**
|
|
136
|
-
* @description default initial value of current-page
|
|
137
|
-
*/
|
|
138
|
-
defaultCurrentPage: NumberConstructor;
|
|
139
|
-
/**
|
|
140
|
-
* @description total page count. Set either `total` or `page-count` and pages will be displayed; if you need `page-sizes`, `total` is required
|
|
141
|
-
*/
|
|
142
|
-
pageCount: NumberConstructor;
|
|
143
|
-
/**
|
|
144
|
-
* @description number of pagers. Pagination collapses when the total page count exceeds this value
|
|
145
|
-
*/
|
|
146
|
-
pagerCount: {
|
|
147
|
-
type: NumberConstructor;
|
|
148
|
-
validator: (value: unknown) => boolean;
|
|
149
|
-
default: number;
|
|
150
|
-
};
|
|
151
|
-
/**
|
|
152
|
-
* @description layout of Pagination, elements separated with a comma
|
|
153
|
-
*/
|
|
154
|
-
layout: {
|
|
155
|
-
type: StringConstructor;
|
|
156
|
-
default: string;
|
|
157
|
-
};
|
|
158
|
-
/**
|
|
159
|
-
* @description item count of each page
|
|
160
|
-
*/
|
|
161
|
-
pageSizes: {
|
|
162
|
-
type: ArrayConstructor;
|
|
163
|
-
default: number[];
|
|
164
|
-
};
|
|
165
|
-
/**
|
|
166
|
-
* @description custom class name for the page size Select's dropdown
|
|
167
|
-
*/
|
|
168
|
-
popperClass: {
|
|
169
|
-
type: StringConstructor;
|
|
170
|
-
default: string;
|
|
171
|
-
};
|
|
172
|
-
/**
|
|
173
|
-
* @description text for the prev button
|
|
174
|
-
*/
|
|
175
|
-
prevText: {
|
|
176
|
-
type: StringConstructor;
|
|
177
|
-
default: string;
|
|
178
|
-
};
|
|
179
|
-
/**
|
|
180
|
-
* @description icon for the prev button, higher priority of `prev-text`
|
|
181
|
-
*/
|
|
182
|
-
prevIcon: {
|
|
183
|
-
type: StringConstructor;
|
|
184
|
-
default: () => string;
|
|
185
|
-
};
|
|
186
|
-
/**
|
|
187
|
-
* @description text for the next button
|
|
188
|
-
*/
|
|
189
|
-
nextText: {
|
|
190
|
-
type: StringConstructor;
|
|
191
|
-
default: string;
|
|
192
|
-
};
|
|
193
|
-
/**
|
|
194
|
-
* @description icon for the next button, higher priority of `next-text`
|
|
195
|
-
*/
|
|
196
|
-
nextIcon: {
|
|
197
|
-
type: StringConstructor;
|
|
198
|
-
default: () => string;
|
|
199
|
-
};
|
|
200
|
-
/**
|
|
201
|
-
* @description whether to use small pagination
|
|
202
|
-
*/
|
|
203
|
-
small: BooleanConstructor;
|
|
204
|
-
/**
|
|
205
|
-
* @description whether the buttons have a background color
|
|
206
|
-
*/
|
|
207
|
-
background: BooleanConstructor;
|
|
208
|
-
/**
|
|
209
|
-
* @description whether Pagination is disabled
|
|
210
|
-
*/
|
|
211
|
-
disabled: BooleanConstructor;
|
|
212
|
-
/**
|
|
213
|
-
* @description whether to hide when there's only one page
|
|
214
|
-
*/
|
|
215
|
-
hideOnSinglePage: BooleanConstructor;
|
|
216
|
-
}>> & {
|
|
217
|
-
"onUpdate:current-page"?: ((val: number) => any) | undefined;
|
|
218
|
-
"onUpdate:page-size"?: ((val: number) => any) | undefined;
|
|
219
|
-
"onSize-change"?: ((val: number) => any) | undefined;
|
|
220
|
-
"onCurrent-change"?: ((val: number) => any) | undefined;
|
|
221
|
-
"onPrev-click"?: ((val: number) => any) | undefined;
|
|
222
|
-
"onNext-click"?: ((val: number) => any) | undefined;
|
|
223
|
-
}, {
|
|
224
|
-
small: boolean;
|
|
225
|
-
background: boolean;
|
|
226
|
-
disabled: boolean;
|
|
227
|
-
pagerCount: number;
|
|
228
|
-
layout: string;
|
|
229
|
-
pageSizes: unknown[];
|
|
230
|
-
popperClass: string;
|
|
231
|
-
prevText: string;
|
|
232
|
-
prevIcon: string;
|
|
233
|
-
nextText: string;
|
|
234
|
-
nextIcon: string;
|
|
235
|
-
hideOnSinglePage: boolean;
|
|
236
|
-
}>;
|
|
237
|
-
export default _default;
|