vft 0.0.71 → 0.0.73
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/attributes.json +1 -1
- package/dist/index.css +1 -1
- package/es/component.js +56 -40
- package/es/components/aside/style/css.js +2 -0
- package/es/components/aside/style/index.js +2 -0
- package/es/components/back-top/back-top.vue2.js +8 -2
- package/es/components/col/col.vue.js +4 -0
- package/es/components/col/col.vue2.js +60 -0
- package/es/components/col/index.js +12 -0
- package/es/components/col/style/css.js +2 -0
- package/es/components/col/style/index.js +2 -0
- package/es/components/col/types.js +1 -0
- package/es/components/color-picker/utils/color.js +41 -51
- package/es/components/container/aside.vue.js +4 -0
- package/es/components/container/aside.vue2.js +37 -0
- package/es/components/container/container.vue.js +4 -0
- package/es/components/container/container.vue2.js +33 -0
- package/es/components/container/footer.vue.js +4 -0
- package/es/components/container/footer.vue2.js +39 -0
- package/es/components/container/header.vue.js +4 -0
- package/es/components/container/header.vue2.js +39 -0
- package/es/components/container/index.js +25 -0
- package/es/components/container/main.vue.js +4 -0
- package/es/components/container/main.vue2.js +26 -0
- package/es/components/container/style/css.js +6 -0
- package/es/components/container/style/index.js +6 -0
- package/es/components/context-menu/context-menu.vue2.js +20 -14
- package/es/components/date-picker/composables/use-month-range-header.js +29 -0
- package/es/components/date-picker/composables/use-range-picker.js +68 -0
- package/es/components/date-picker/composables/use-shortcut.js +24 -0
- package/es/components/date-picker/constants.js +4 -0
- package/es/components/date-picker/date-picker-com/basic-cell-render.js +37 -0
- package/es/components/date-picker/date-picker-com/basic-date-table.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/basic-date-table.vue2.js +206 -0
- package/es/components/date-picker/date-picker-com/basic-month-table.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/basic-month-table.vue2.js +131 -0
- package/es/components/date-picker/date-picker-com/basic-year-table.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/basic-year-table.vue2.js +85 -0
- package/es/components/date-picker/date-picker-com/panel-date-pick.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/panel-date-pick.vue2.js +455 -0
- package/es/components/date-picker/date-picker-com/panel-date-range.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/panel-date-range.vue2.js +383 -0
- package/es/components/date-picker/date-picker-com/panel-month-range.vue.js +4 -0
- package/es/components/date-picker/date-picker-com/panel-month-range.vue2.js +170 -0
- package/es/components/date-picker/date-picker.js +81 -0
- package/es/components/date-picker/date-picker.type.js +1 -0
- package/es/components/date-picker/index.js +14 -0
- package/es/components/date-picker/panel-utils.js +17 -0
- package/es/components/date-picker/props/basic-cell.js +14 -0
- package/es/components/date-picker/props/basic-date-table.js +18 -0
- package/es/components/date-picker/props/basic-month-table.js +14 -0
- package/es/components/date-picker/props/basic-year-table.js +15 -0
- package/es/components/date-picker/props/date-picker.js +18 -0
- package/es/components/date-picker/props/panel-date-pick.js +23 -0
- package/es/components/date-picker/props/panel-date-range.js +14 -0
- package/es/components/date-picker/props/panel-month-range.js +14 -0
- package/es/components/date-picker/props/shared.js +56 -0
- package/es/components/date-picker/style/css.js +2 -0
- package/es/components/date-picker/style/index.js +7 -0
- package/es/components/date-picker/utils.js +49 -0
- package/es/components/date-time-select/date-time-select.vue2.js +69 -63
- package/es/components/date-time-select/style/index.js +6 -0
- package/es/components/footer/style/css.js +2 -0
- package/es/components/footer/style/index.js +2 -0
- package/es/components/footer-layout/footer-layout.vue2.js +105 -35
- package/es/components/header/style/css.js +2 -0
- package/es/components/header/style/index.js +2 -0
- package/es/components/header-layout/header-layout.vue2.js +122 -37
- package/es/components/horizontal-menu/horizontal-menu.vue.js +4 -0
- package/es/components/horizontal-menu/horizontal-menu.vue2.js +115 -0
- package/es/components/horizontal-menu/index.js +12 -0
- package/es/components/horizontal-menu/style/css.js +6 -0
- package/es/components/horizontal-menu/style/index.js +6 -0
- package/es/components/index.js +254 -209
- package/es/components/input/input.vue2.js +184 -178
- package/es/components/link/link.vue2.js +24 -24
- package/es/components/logo/logo.vue2.js +21 -21
- package/es/components/main/style/css.js +2 -0
- package/es/components/main/style/index.js +2 -0
- package/es/components/md-container/md-container.vue2.js +65 -59
- package/es/components/md-container/toc.js +1 -1
- package/es/components/menu/menu-item.vue2.js +89 -62
- package/es/components/menu/menu.vue2.js +100 -106
- package/es/components/menu/sub-menu.vue2.js +83 -76
- package/es/components/menu/utils/menu-item.js +15 -19
- package/es/components/menu/utils/submenu.js +20 -25
- package/es/components/multiple-tabs/multiple-tabs.vue2.js +45 -39
- package/es/components/result/result.vue2.js +8 -2
- package/es/components/row/constants.js +4 -0
- package/es/components/row/index.js +14 -0
- package/es/components/row/row.vue.js +4 -0
- package/es/components/row/row.vue2.js +49 -0
- package/es/components/row/style/css.js +2 -0
- package/es/components/row/style/index.js +2 -0
- package/es/components/row/types.js +1 -0
- package/es/components/search/search.vue2.js +126 -114
- package/es/components/side-menu/side-menu.vue2.js +212 -146
- package/es/components/side-menu/use-drag-line.js +29 -28
- package/es/components/tabs/tab-nav.vue2.js +48 -42
- package/es/components/time-picker/common/picker.vue.js +4 -0
- package/es/components/time-picker/common/picker.vue2.js +438 -0
- package/es/components/time-picker/common/props.js +201 -0
- package/es/components/time-picker/composables/use-time-panel.js +60 -0
- package/es/components/time-picker/composables/use-time-picker.js +40 -0
- package/es/components/time-picker/constants.js +17 -0
- package/es/components/time-picker/index.js +31 -0
- package/es/components/time-picker/props/basic-time-spinner.js +31 -0
- package/es/components/time-picker/props/panel-time-picker.js +17 -0
- package/es/components/time-picker/props/panel-time-range.js +16 -0
- package/es/components/time-picker/props/shared.js +40 -0
- package/es/components/time-picker/style/css.js +2 -0
- package/es/components/time-picker/style/index.js +2 -0
- package/es/components/time-picker/time-picker-com/basic-time-spinner.vue.js +4 -0
- package/es/components/time-picker/time-picker-com/basic-time-spinner.vue2.js +227 -0
- package/es/components/time-picker/time-picker-com/panel-time-pick.vue.js +4 -0
- package/es/components/time-picker/time-picker-com/panel-time-pick.vue2.js +107 -0
- package/es/components/time-picker/time-picker-com/panel-time-range.vue.js +4 -0
- package/es/components/time-picker/time-picker-com/panel-time-range.vue2.js +190 -0
- package/es/components/time-picker/time-picker.js +70 -0
- package/es/components/time-picker/types.js +1 -0
- package/es/components/time-picker/utils.js +35 -0
- package/es/components/time-select/style/css.js +2 -0
- package/es/components/time-select/style/index.js +2 -0
- package/es/components/time-select/time-select.js +54 -0
- package/es/components/time-select/time-select.vue.js +4 -0
- package/es/components/time-select/time-select.vue2.js +104 -0
- package/es/components/time-select/utils.js +40 -0
- package/es/components/tooltip/index.js +5 -3
- package/es/index.js +381 -336
- package/es/package.json.js +1 -1
- package/global.d.ts +73 -2
- package/lib/component.cjs +1 -1
- package/lib/components/aside/style/css.cjs +1 -0
- package/lib/components/aside/style/index.cjs +1 -0
- package/lib/components/back-top/back-top.vue2.cjs +1 -1
- package/lib/components/col/col.vue.cjs +1 -0
- package/lib/components/col/col.vue2.cjs +1 -0
- package/lib/components/col/index.cjs +1 -0
- package/lib/components/col/style/css.cjs +1 -0
- package/lib/components/col/style/index.cjs +1 -0
- package/lib/components/col/types.cjs +1 -0
- package/lib/components/color-picker/utils/color.cjs +1 -1
- package/lib/components/container/aside.vue.cjs +1 -0
- package/lib/components/container/aside.vue2.cjs +1 -0
- package/lib/components/container/container.vue.cjs +1 -0
- package/lib/components/container/container.vue2.cjs +1 -0
- package/lib/components/container/footer.vue.cjs +1 -0
- package/lib/components/container/footer.vue2.cjs +1 -0
- package/lib/components/container/header.vue.cjs +1 -0
- package/lib/components/container/header.vue2.cjs +1 -0
- package/lib/components/container/index.cjs +1 -0
- package/lib/components/container/main.vue.cjs +1 -0
- package/lib/components/container/main.vue2.cjs +1 -0
- package/lib/components/container/style/css.cjs +1 -0
- package/lib/components/container/style/index.cjs +1 -0
- package/lib/components/context-menu/context-menu.vue2.cjs +1 -1
- package/lib/components/date-picker/composables/use-month-range-header.cjs +1 -0
- package/lib/components/date-picker/composables/use-range-picker.cjs +1 -0
- package/lib/components/date-picker/composables/use-shortcut.cjs +1 -0
- package/lib/components/date-picker/constants.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-cell-render.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-date-table.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-date-table.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-month-table.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-month-table.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-year-table.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/basic-year-table.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-date-pick.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-date-pick.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-date-range.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-date-range.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-month-range.vue.cjs +1 -0
- package/lib/components/date-picker/date-picker-com/panel-month-range.vue2.cjs +1 -0
- package/lib/components/date-picker/date-picker.cjs +1 -0
- package/lib/components/date-picker/date-picker.type.cjs +1 -0
- package/lib/components/date-picker/index.cjs +1 -0
- package/lib/components/date-picker/panel-utils.cjs +1 -0
- package/lib/components/date-picker/props/basic-cell.cjs +1 -0
- package/lib/components/date-picker/props/basic-date-table.cjs +1 -0
- package/lib/components/date-picker/props/basic-month-table.cjs +1 -0
- package/lib/components/date-picker/props/basic-year-table.cjs +1 -0
- package/lib/components/date-picker/props/date-picker.cjs +1 -0
- package/lib/components/date-picker/props/panel-date-pick.cjs +1 -0
- package/lib/components/date-picker/props/panel-date-range.cjs +1 -0
- package/lib/components/date-picker/props/panel-month-range.cjs +1 -0
- package/lib/components/date-picker/props/shared.cjs +1 -0
- package/lib/components/date-picker/style/css.cjs +1 -0
- package/lib/components/date-picker/style/index.cjs +1 -0
- package/lib/components/date-picker/utils.cjs +1 -0
- package/lib/components/date-time-select/date-time-select.vue2.cjs +1 -1
- package/lib/components/date-time-select/style/index.cjs +1 -1
- package/lib/components/footer/style/css.cjs +1 -0
- package/lib/components/footer/style/index.cjs +1 -0
- package/lib/components/footer-layout/footer-layout.vue2.cjs +1 -1
- package/lib/components/header/style/css.cjs +1 -0
- package/lib/components/header/style/index.cjs +1 -0
- package/lib/components/header-layout/header-layout.vue2.cjs +1 -1
- package/lib/components/horizontal-menu/horizontal-menu.vue.cjs +1 -0
- package/lib/components/horizontal-menu/horizontal-menu.vue2.cjs +1 -0
- package/lib/components/horizontal-menu/index.cjs +1 -0
- package/lib/components/horizontal-menu/style/css.cjs +1 -0
- package/lib/components/horizontal-menu/style/index.cjs +1 -0
- package/lib/components/index.cjs +1 -1
- package/lib/components/input/input.vue2.cjs +1 -1
- package/lib/components/link/link.vue2.cjs +1 -1
- package/lib/components/logo/logo.vue2.cjs +1 -1
- package/lib/components/main/style/css.cjs +1 -0
- package/lib/components/main/style/index.cjs +1 -0
- package/lib/components/md-container/md-container.vue2.cjs +1 -1
- package/lib/components/md-container/toc.cjs +1 -1
- package/lib/components/menu/menu-item.vue2.cjs +1 -1
- package/lib/components/menu/menu.vue2.cjs +1 -1
- package/lib/components/menu/sub-menu.vue2.cjs +1 -1
- package/lib/components/menu/utils/menu-item.cjs +1 -1
- package/lib/components/menu/utils/submenu.cjs +1 -1
- package/lib/components/multiple-tabs/multiple-tabs.vue2.cjs +1 -1
- package/lib/components/result/result.vue2.cjs +1 -1
- package/lib/components/row/constants.cjs +1 -0
- package/lib/components/row/index.cjs +1 -0
- package/lib/components/row/row.vue.cjs +1 -0
- package/lib/components/row/row.vue2.cjs +1 -0
- package/lib/components/row/style/css.cjs +1 -0
- package/lib/components/row/style/index.cjs +1 -0
- package/lib/components/row/types.cjs +1 -0
- package/lib/components/search/search.vue2.cjs +1 -1
- package/lib/components/side-menu/side-menu.vue2.cjs +1 -1
- package/lib/components/side-menu/use-drag-line.cjs +1 -1
- package/lib/components/tabs/tab-nav.vue2.cjs +1 -1
- package/lib/components/time-picker/common/picker.vue.cjs +1 -0
- package/lib/components/time-picker/common/picker.vue2.cjs +1 -0
- package/lib/components/time-picker/common/props.cjs +1 -0
- package/lib/components/time-picker/composables/use-time-panel.cjs +1 -0
- package/lib/components/time-picker/composables/use-time-picker.cjs +1 -0
- package/lib/components/time-picker/constants.cjs +1 -0
- package/lib/components/time-picker/index.cjs +1 -0
- package/lib/components/time-picker/props/basic-time-spinner.cjs +1 -0
- package/lib/components/time-picker/props/panel-time-picker.cjs +1 -0
- package/lib/components/time-picker/props/panel-time-range.cjs +1 -0
- package/lib/components/time-picker/props/shared.cjs +1 -0
- package/lib/components/time-picker/style/css.cjs +1 -0
- package/lib/components/time-picker/style/index.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/basic-time-spinner.vue.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/basic-time-spinner.vue2.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/panel-time-pick.vue.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/panel-time-pick.vue2.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/panel-time-range.vue.cjs +1 -0
- package/lib/components/time-picker/time-picker-com/panel-time-range.vue2.cjs +1 -0
- package/lib/components/time-picker/time-picker.cjs +1 -0
- package/lib/components/time-picker/types.cjs +1 -0
- package/lib/components/time-picker/utils.cjs +1 -0
- package/lib/components/time-select/style/css.cjs +1 -0
- package/lib/components/time-select/style/index.cjs +1 -0
- package/lib/components/time-select/time-select.cjs +1 -0
- package/lib/components/time-select/time-select.vue.cjs +1 -0
- package/lib/components/time-select/time-select.vue2.cjs +1 -0
- package/lib/components/time-select/utils.cjs +1 -0
- package/lib/components/tooltip/index.cjs +1 -1
- package/lib/index.cjs +1 -1
- package/lib/package.json.cjs +1 -1
- package/package.json +7 -7
- package/tags.json +1 -1
- package/theme-style/base.css +1 -1
- package/theme-style/display.css +1 -0
- package/theme-style/index.css +1 -1
- package/theme-style/src/affix.scss +7 -0
- package/theme-style/src/aside.scss +8 -0
- package/theme-style/src/autocomplete.scss +83 -0
- package/theme-style/src/back-top.scss +7 -6
- package/theme-style/src/badge.scss +57 -0
- package/theme-style/src/breadcrumb-item.scss +0 -0
- package/theme-style/src/breadcrumb.scss +61 -0
- package/theme-style/src/calendar.scss +80 -0
- package/theme-style/src/card.scss +38 -0
- package/theme-style/src/carousel-item.scss +50 -0
- package/theme-style/src/carousel.scss +174 -0
- package/theme-style/src/cascader-panel.scss +138 -0
- package/theme-style/src/cascader.scss +216 -0
- package/theme-style/src/check-tag.scss +29 -0
- package/theme-style/src/col.scss +52 -0
- package/theme-style/src/collapse-item.scss +0 -0
- package/theme-style/src/collapse.scss +67 -0
- package/theme-style/src/color-picker.scss +2 -2
- package/theme-style/src/common/popup.scss +47 -0
- package/theme-style/src/common/var.scss +381 -6
- package/theme-style/src/container.scss +14 -0
- package/theme-style/src/date-picker/date-picker.scss +110 -0
- package/theme-style/src/date-picker/date-range-picker.scss +113 -0
- package/theme-style/src/date-picker/date-table.scss +162 -0
- package/theme-style/src/date-picker/month-table.scss +90 -0
- package/theme-style/src/date-picker/picker-panel.scss +131 -0
- package/theme-style/src/date-picker/picker.scss +210 -0
- package/theme-style/src/date-picker/time-picker.scss +90 -0
- package/theme-style/src/date-picker/time-range-picker.scss +33 -0
- package/theme-style/src/date-picker/time-spinner.scss +111 -0
- package/theme-style/src/date-picker/year-table.scss +60 -0
- package/theme-style/src/date-picker.scss +9 -0
- package/theme-style/src/date-time-select.scss +1 -1
- package/theme-style/src/display.scss +12 -0
- package/theme-style/src/drawer.scss +160 -0
- package/theme-style/src/footer-layout.scss +4 -9
- package/theme-style/src/footer.scss +11 -0
- package/theme-style/src/header-layout.scss +26 -15
- package/theme-style/src/header.scss +11 -0
- package/theme-style/src/horizontal-menu.scss +90 -0
- package/theme-style/src/icon.scss +6 -6
- package/theme-style/src/index.scss +123 -76
- package/theme-style/src/infinite-scroll.scss +0 -0
- package/theme-style/src/input-number.scss +175 -0
- package/theme-style/src/input.scss +2 -4
- package/theme-style/src/list-cell.scss +3 -3
- package/theme-style/src/loading.scss +1 -1
- package/theme-style/src/main.scss +10 -0
- package/theme-style/src/md/code.scss +3 -3
- package/theme-style/src/md/demo-block.scss +2 -2
- package/theme-style/src/md/pswp.scss +4 -4
- package/theme-style/src/md/scroll-bar.scss +1 -1
- package/theme-style/src/md/table.scss +3 -3
- package/theme-style/src/md/toc.scss +3 -3
- package/theme-style/src/md-container.scss +6 -8
- package/theme-style/src/menu.scss +43 -17
- package/theme-style/src/message-box.scss +258 -0
- package/theme-style/src/mixins/_col.scss +38 -0
- package/theme-style/src/mixins/mixins.scss +25 -0
- package/theme-style/src/notification.scss +105 -0
- package/theme-style/src/option.scss +36 -0
- package/theme-style/src/pagination.scss +0 -2
- package/theme-style/src/progress.scss +169 -0
- package/theme-style/src/rate.scss +101 -0
- package/theme-style/src/reset.scss +92 -0
- package/theme-style/src/row.scss +31 -0
- package/theme-style/src/search.scss +6 -5
- package/theme-style/src/select-dropdown.scss +2 -2
- package/theme-style/src/side-menu.scss +9 -3
- package/theme-style/src/slider.scss +211 -0
- package/theme-style/src/space.scss +20 -0
- package/theme-style/src/spinner.scss +43 -0
- package/theme-style/src/statistic.scss +35 -0
- package/theme-style/src/step.scss +316 -0
- package/theme-style/src/steps.scss +21 -0
- package/theme-style/src/tabs.scss +2 -2
- package/theme-style/src/time-picker.scss +5 -0
- package/theme-style/src/time-select.scss +37 -0
- package/theme-style/src/timeline-item.scss +85 -0
- package/theme-style/src/timeline.scss +46 -0
- package/theme-style/src/transfer.scss +206 -0
- package/theme-style/src/tree-select.scss +36 -0
- package/theme-style/src/tree.scss +131 -0
- package/theme-style/src/upload.scss +621 -0
- package/theme-style/vft-affix.css +1 -0
- package/theme-style/vft-aside.css +1 -0
- package/theme-style/vft-autocomplete.css +1 -0
- package/theme-style/vft-back-top.css +1 -1
- package/theme-style/vft-badge.css +1 -0
- package/theme-style/vft-breadcrumb-item.css +0 -0
- package/theme-style/vft-breadcrumb.css +1 -0
- package/theme-style/vft-calendar.css +1 -0
- package/theme-style/vft-card.css +1 -0
- package/theme-style/vft-carousel-item.css +1 -0
- package/theme-style/vft-carousel.css +1 -0
- package/theme-style/vft-cascader-panel.css +1 -0
- package/theme-style/vft-cascader.css +1 -0
- package/theme-style/vft-check-tag.css +1 -0
- package/theme-style/vft-col.css +1 -0
- package/theme-style/vft-collapse-item.css +0 -0
- package/theme-style/vft-collapse.css +1 -0
- package/theme-style/vft-color-picker.css +1 -1
- package/theme-style/vft-container.css +1 -0
- package/theme-style/vft-date-picker.css +1 -0
- package/theme-style/vft-drawer.css +1 -0
- package/theme-style/vft-footer-layout.css +1 -1
- package/theme-style/vft-footer.css +1 -0
- package/theme-style/vft-header-layout.css +1 -1
- package/theme-style/vft-header.css +1 -0
- package/theme-style/vft-horizontal-menu.css +1 -0
- package/theme-style/vft-infinite-scroll.css +0 -0
- package/theme-style/vft-input-number.css +1 -0
- package/theme-style/vft-main.css +1 -0
- package/theme-style/vft-md-container.css +1 -1
- package/theme-style/vft-menu.css +1 -1
- package/theme-style/vft-message-box.css +1 -0
- package/theme-style/vft-notification.css +1 -0
- package/theme-style/vft-option.css +1 -0
- package/theme-style/vft-pagination.css +1 -1
- package/theme-style/vft-progress.css +1 -0
- package/theme-style/vft-rate.css +1 -0
- package/theme-style/vft-reset.css +1 -0
- package/theme-style/vft-row.css +1 -0
- package/theme-style/vft-search.css +1 -1
- package/theme-style/vft-select-dropdown.css +1 -1
- package/theme-style/vft-select.css +1 -1
- package/theme-style/vft-side-menu.css +1 -1
- package/theme-style/vft-slider.css +1 -0
- package/theme-style/vft-space.css +1 -0
- package/theme-style/vft-spinner.css +1 -0
- package/theme-style/vft-statistic.css +1 -0
- package/theme-style/vft-step.css +1 -0
- package/theme-style/vft-steps.css +1 -0
- package/theme-style/vft-time-picker.css +1 -0
- package/theme-style/vft-time-select.css +1 -0
- package/theme-style/vft-timeline-item.css +1 -0
- package/theme-style/vft-timeline.css +1 -0
- package/theme-style/vft-transfer.css +1 -0
- package/theme-style/vft-tree-select.css +1 -0
- package/theme-style/vft-tree.css +1 -0
- package/theme-style/vft-upload.css +1 -0
- package/theme-style/vft-var.css +1 -1
- package/web-types.json +1 -1
- package/theme-style/src/md/list.scss +0 -21
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
@use '../mixins/mixins' as *;
|
|
2
|
+
@use '../common/var' as *;
|
|
3
|
+
|
|
4
|
+
@include b(time-spinner) {
|
|
5
|
+
&.has-seconds {
|
|
6
|
+
.#{$namespace}-time-spinner__wrapper {
|
|
7
|
+
width: 33.3%;
|
|
8
|
+
}
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@include e(wrapper) {
|
|
12
|
+
max-height: 192px;
|
|
13
|
+
overflow: auto;
|
|
14
|
+
display: inline-block;
|
|
15
|
+
width: 50%;
|
|
16
|
+
vertical-align: top;
|
|
17
|
+
position: relative;
|
|
18
|
+
|
|
19
|
+
&.#{$namespace}-scrollbar__wrap:not(.#{$namespace}-scrollbar__wrap--hidden-default) {
|
|
20
|
+
padding-bottom: 15px;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@include when(arrow) {
|
|
24
|
+
box-sizing: border-box;
|
|
25
|
+
text-align: center;
|
|
26
|
+
overflow: hidden;
|
|
27
|
+
|
|
28
|
+
.#{$namespace}-time-spinner__list {
|
|
29
|
+
transform: translateY(-32px);
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
.#{$namespace}-time-spinner__item:hover:not(.is-disabled):not(.is-active) {
|
|
33
|
+
background: getCssVar('fill-color', 'light');
|
|
34
|
+
cursor: default;
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
@include e(arrow) {
|
|
40
|
+
font-size: 12px;
|
|
41
|
+
color: getCssVar('text-color', 'secondary');
|
|
42
|
+
position: absolute;
|
|
43
|
+
left: 0;
|
|
44
|
+
width: 100%;
|
|
45
|
+
z-index: getCssVar('index-normal');
|
|
46
|
+
text-align: center;
|
|
47
|
+
height: 30px;
|
|
48
|
+
line-height: 30px;
|
|
49
|
+
cursor: pointer;
|
|
50
|
+
|
|
51
|
+
&:hover {
|
|
52
|
+
color: getCssVar('primary-color');
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
&.arrow-up {
|
|
56
|
+
top: 10px;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
&.arrow-down {
|
|
60
|
+
bottom: 10px;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
@include e(input) {
|
|
65
|
+
&.#{$namespace}-input {
|
|
66
|
+
width: 70%;
|
|
67
|
+
|
|
68
|
+
.#{$namespace}-input__inner {
|
|
69
|
+
padding: 0;
|
|
70
|
+
text-align: center;
|
|
71
|
+
}
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
@include e(list) {
|
|
76
|
+
padding: 0;
|
|
77
|
+
margin: 0;
|
|
78
|
+
list-style: none;
|
|
79
|
+
text-align: center;
|
|
80
|
+
|
|
81
|
+
&::after,
|
|
82
|
+
&::before {
|
|
83
|
+
content: '';
|
|
84
|
+
display: block;
|
|
85
|
+
width: 100%;
|
|
86
|
+
height: 80px;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
@include e(item) {
|
|
91
|
+
height: 32px;
|
|
92
|
+
line-height: 32px;
|
|
93
|
+
font-size: 12px;
|
|
94
|
+
color: getCssVar('text-color', 'regular');
|
|
95
|
+
|
|
96
|
+
&:hover:not(.is-disabled):not(.is-active) {
|
|
97
|
+
background: getCssVar('fill-color', 'light');
|
|
98
|
+
cursor: pointer;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
&.is-active:not(.is-disabled) {
|
|
102
|
+
color: getCssVar('text-color', 'primary');
|
|
103
|
+
font-weight: bold;
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
&.is-disabled {
|
|
107
|
+
color: getCssVar('text-color', 'placeholder');
|
|
108
|
+
cursor: not-allowed;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
@use '../mixins/mixins' as *;
|
|
2
|
+
@use '../common/var' as *;
|
|
3
|
+
|
|
4
|
+
@include b(year-table) {
|
|
5
|
+
font-size: 12px;
|
|
6
|
+
margin: -1px;
|
|
7
|
+
border-collapse: collapse;
|
|
8
|
+
|
|
9
|
+
.#{$namespace}-icon {
|
|
10
|
+
color: getCssVar('datepicker', 'icon-color');
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
td {
|
|
14
|
+
text-align: center;
|
|
15
|
+
padding: 20px 3px;
|
|
16
|
+
cursor: pointer;
|
|
17
|
+
|
|
18
|
+
&.today {
|
|
19
|
+
.cell {
|
|
20
|
+
color: getCssVar('color', 'primary');
|
|
21
|
+
font-weight: bold;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
&.disabled .cell {
|
|
26
|
+
background-color: getCssVar('fill-color', 'light');
|
|
27
|
+
cursor: not-allowed;
|
|
28
|
+
color: getCssVar('text-color', 'placeholder');
|
|
29
|
+
|
|
30
|
+
&:hover {
|
|
31
|
+
color: getCssVar('text-color', 'placeholder');
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.cell {
|
|
36
|
+
width: 48px;
|
|
37
|
+
height: 36px;
|
|
38
|
+
display: block;
|
|
39
|
+
line-height: 36px;
|
|
40
|
+
color: getCssVar('datepicker-text-color');
|
|
41
|
+
border-radius: 18px;
|
|
42
|
+
margin: 0 auto;
|
|
43
|
+
|
|
44
|
+
&:hover {
|
|
45
|
+
color: getCssVar('datepicker-hover-text-color');
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
&.current:not(.disabled) .cell {
|
|
50
|
+
color: getCssVar('datepicker-active-color');
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
&:focus-visible {
|
|
54
|
+
outline: none;
|
|
55
|
+
.cell {
|
|
56
|
+
outline: 2px solid getCssVar('datepicker-active-color');
|
|
57
|
+
}
|
|
58
|
+
}
|
|
59
|
+
}
|
|
60
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
@forward './date-picker/date-table.scss';
|
|
2
|
+
@forward './date-picker/month-table.scss';
|
|
3
|
+
@forward './date-picker/year-table.scss';
|
|
4
|
+
@forward './date-picker/time-spinner.scss';
|
|
5
|
+
@forward './date-picker/picker.scss';
|
|
6
|
+
@forward './date-picker/date-picker.scss';
|
|
7
|
+
@forward './date-picker/date-range-picker.scss';
|
|
8
|
+
@forward './date-picker/time-range-picker.scss';
|
|
9
|
+
@forward './date-picker/time-picker.scss';
|
|
@@ -62,7 +62,7 @@ $name: date-time-select;
|
|
|
62
62
|
display: flex;
|
|
63
63
|
//flex-direction: column;
|
|
64
64
|
justify-content: space-between;
|
|
65
|
-
color: getCssVar('text-primary-color')
|
|
65
|
+
color: getCssVar('text-primary-color');
|
|
66
66
|
width: 100%;
|
|
67
67
|
padding: 9px 16px;
|
|
68
68
|
transition: getCssVar('transition-all');
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
@use 'mixins/mixins' as *;
|
|
2
|
+
@use 'mixins/var' as *;
|
|
3
|
+
@use 'common/var' as *;
|
|
4
|
+
|
|
5
|
+
$directions: rtl, ltr, ttb, btt;
|
|
6
|
+
|
|
7
|
+
@include b(drawer) {
|
|
8
|
+
@include set-component-css-var('drawer', $drawer);
|
|
9
|
+
}
|
|
10
|
+
|
|
11
|
+
@include b(drawer) {
|
|
12
|
+
position: absolute;
|
|
13
|
+
box-sizing: border-box;
|
|
14
|
+
background-color: getCssVar('drawer', 'bg-color');
|
|
15
|
+
display: flex;
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
box-shadow: getCssVar('box-shadow', 'dark');
|
|
18
|
+
overflow: hidden;
|
|
19
|
+
|
|
20
|
+
transition: all getCssVar('transition-duration');
|
|
21
|
+
|
|
22
|
+
@each $direction in $directions {
|
|
23
|
+
.#{$direction} {
|
|
24
|
+
transform: translate(0, 0);
|
|
25
|
+
}
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
&__sr-focus:focus {
|
|
29
|
+
outline: none !important;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
&__header {
|
|
33
|
+
align-items: center;
|
|
34
|
+
color: rgb(114, 118, 123);
|
|
35
|
+
display: flex;
|
|
36
|
+
margin-bottom: 32px;
|
|
37
|
+
padding: getCssVar('drawer-padding-primary');
|
|
38
|
+
padding-bottom: 0;
|
|
39
|
+
& > :first-child {
|
|
40
|
+
flex: 1;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
&__title {
|
|
45
|
+
margin: 0;
|
|
46
|
+
flex: 1;
|
|
47
|
+
line-height: inherit;
|
|
48
|
+
font-size: 1rem;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
@include e(footer) {
|
|
52
|
+
padding: getCssVar('drawer-padding-primary');
|
|
53
|
+
padding-top: 10px;
|
|
54
|
+
text-align: right;
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
&__close-btn {
|
|
58
|
+
display: inline-flex;
|
|
59
|
+
border: none;
|
|
60
|
+
cursor: pointer;
|
|
61
|
+
font-size: getCssVar('font-size-extra-large');
|
|
62
|
+
color: inherit;
|
|
63
|
+
background-color: transparent;
|
|
64
|
+
outline: none;
|
|
65
|
+
&:focus,
|
|
66
|
+
&:hover {
|
|
67
|
+
i {
|
|
68
|
+
color: getCssVar('primary-color');
|
|
69
|
+
}
|
|
70
|
+
}
|
|
71
|
+
}
|
|
72
|
+
|
|
73
|
+
&__body {
|
|
74
|
+
flex: 1;
|
|
75
|
+
padding: getCssVar('drawer-padding-primary');
|
|
76
|
+
overflow: auto;
|
|
77
|
+
& > * {
|
|
78
|
+
box-sizing: border-box;
|
|
79
|
+
}
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
&.ltr,
|
|
83
|
+
&.rtl {
|
|
84
|
+
height: 100%;
|
|
85
|
+
top: 0;
|
|
86
|
+
bottom: 0;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
&.ttb,
|
|
90
|
+
&.btt {
|
|
91
|
+
width: 100%;
|
|
92
|
+
left: 0;
|
|
93
|
+
right: 0;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
&.ltr {
|
|
97
|
+
left: 0;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
&.rtl {
|
|
101
|
+
right: 0;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
&.ttb {
|
|
105
|
+
top: 0;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
&.btt {
|
|
109
|
+
bottom: 0;
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
|
|
113
|
+
.#{$namespace}-drawer-fade {
|
|
114
|
+
&-enter-active,
|
|
115
|
+
&-leave-active {
|
|
116
|
+
transition: all getCssVar('transition-duration');
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
&-enter-from,
|
|
120
|
+
&-enter-active,
|
|
121
|
+
&-enter-to,
|
|
122
|
+
&-leave-from,
|
|
123
|
+
&-leave-active,
|
|
124
|
+
&-leave-to {
|
|
125
|
+
overflow: hidden !important;
|
|
126
|
+
}
|
|
127
|
+
|
|
128
|
+
&-enter-from,
|
|
129
|
+
&-leave-to {
|
|
130
|
+
opacity: 0;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
&-enter-to,
|
|
134
|
+
&-leave-from {
|
|
135
|
+
opacity: 1;
|
|
136
|
+
}
|
|
137
|
+
|
|
138
|
+
&-enter-from,
|
|
139
|
+
&-leave-to {
|
|
140
|
+
@each $direction in $directions {
|
|
141
|
+
.#{$direction} {
|
|
142
|
+
@if $direction == ltr {
|
|
143
|
+
transform: translateX(-100%);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
@if $direction == rtl {
|
|
147
|
+
transform: translateX(100%);
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
@if $direction == ttb {
|
|
151
|
+
transform: translateY(-100%);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
@if $direction == btt {
|
|
155
|
+
transform: translateY(100%);
|
|
156
|
+
}
|
|
157
|
+
}
|
|
158
|
+
}
|
|
159
|
+
}
|
|
160
|
+
}
|
|
@@ -10,20 +10,15 @@ $name: footer-layout;
|
|
|
10
10
|
}
|
|
11
11
|
|
|
12
12
|
@include b($name) {
|
|
13
|
-
// noinspection CssInvalidPropertyValue
|
|
14
|
-
width: calc(100% - getCompCssVar('left'));
|
|
15
13
|
background-color: getCompCssVar('bg-color');
|
|
16
|
-
height: getCompCssVar('height');
|
|
17
14
|
border-top: getCompCssVar('border-top');
|
|
18
15
|
display: flex;
|
|
19
16
|
justify-content: space-between;
|
|
20
17
|
align-items: center;
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
left: getCompCssVar('left');
|
|
26
|
-
z-index: getCompCssVar('z-index');
|
|
18
|
+
|
|
19
|
+
&.#{$namespace}-footer {
|
|
20
|
+
height: getCompCssVar('height');
|
|
21
|
+
}
|
|
27
22
|
|
|
28
23
|
@include e(left) {
|
|
29
24
|
min-width: getCompCssVar('left-min-width');
|
|
@@ -12,23 +12,34 @@ $name: header-layout;
|
|
|
12
12
|
@include b($name) {
|
|
13
13
|
height: getCompCssVar('height');
|
|
14
14
|
background-color: getCompCssVar('bg-color');
|
|
15
|
-
border-bottom: getCompCssVar('border-bottom');
|
|
16
|
-
box-sizing: border-box;
|
|
17
|
-
@include m(fixed) {
|
|
18
|
-
z-index: getCompCssVar('z-index');
|
|
19
|
-
width: 100%;
|
|
20
|
-
}
|
|
21
15
|
|
|
22
|
-
|
|
23
|
-
height:
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
16
|
+
.vft-container {
|
|
17
|
+
height: 100%;
|
|
18
|
+
|
|
19
|
+
@include e(top-container) {
|
|
20
|
+
height: getCompCssVar('top-height');
|
|
21
|
+
overflow: visible;
|
|
22
|
+
|
|
23
|
+
.content {
|
|
24
|
+
display: flex;
|
|
25
|
+
justify-content: space-between;
|
|
26
|
+
height: 100%;
|
|
27
|
+
|
|
28
|
+
.left {
|
|
29
|
+
display: flex;
|
|
30
|
+
align-items: center;
|
|
31
|
+
min-width: getCompCssVar('left-min-width');
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.right {
|
|
35
|
+
display: flex;
|
|
36
|
+
align-items: center;
|
|
37
|
+
}
|
|
38
|
+
}
|
|
39
|
+
}
|
|
27
40
|
|
|
28
|
-
@include e(
|
|
29
|
-
|
|
30
|
-
height: 100%;
|
|
31
|
-
align-items: center;
|
|
41
|
+
@include e(footer) {
|
|
42
|
+
height: calc(getCompCssVar('height') - getCompCssVar('top-height'))
|
|
32
43
|
}
|
|
33
44
|
}
|
|
34
45
|
}
|
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
@use 'mixins/mixins' as *;
|
|
2
|
+
@use 'common/var' as *;
|
|
3
|
+
|
|
4
|
+
$name: horizontal-menu;
|
|
5
|
+
|
|
6
|
+
@function getCompCssVar($value) {
|
|
7
|
+
@return getCssVar($name, $value);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@include b($name) {
|
|
11
|
+
.menu-popover {
|
|
12
|
+
box-shadow: getCssVar('box-shadow');
|
|
13
|
+
|
|
14
|
+
border-radius: 10px;
|
|
15
|
+
|
|
16
|
+
.vft-menu--popup {
|
|
17
|
+
border-radius: 10px;
|
|
18
|
+
box-shadow: none;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.vft-menu {
|
|
22
|
+
padding-bottom: 10px;
|
|
23
|
+
|
|
24
|
+
.item {
|
|
25
|
+
padding: 0 20px;
|
|
26
|
+
margin-top: 5px;
|
|
27
|
+
|
|
28
|
+
&:hover {
|
|
29
|
+
color: $primary-color
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
.menu-popover-dir {
|
|
36
|
+
width: 1218px;
|
|
37
|
+
|
|
38
|
+
.vft-menu {
|
|
39
|
+
box-sizing: border-box;
|
|
40
|
+
height: 494px;
|
|
41
|
+
flex: 1 1 0;
|
|
42
|
+
overflow: auto;
|
|
43
|
+
display: flex;
|
|
44
|
+
padding: 24px 30px;
|
|
45
|
+
margin-right: 6px;
|
|
46
|
+
margin-bottom: 20px;
|
|
47
|
+
box-shadow: none;
|
|
48
|
+
|
|
49
|
+
.item {
|
|
50
|
+
height: 18px;
|
|
51
|
+
line-height: 18px;
|
|
52
|
+
padding: 0;
|
|
53
|
+
|
|
54
|
+
&:hover {
|
|
55
|
+
background: inherit;
|
|
56
|
+
}
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
.content-main {
|
|
61
|
+
.content-col {
|
|
62
|
+
min-width: 100px;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
.content-col:not(:first-child) {
|
|
66
|
+
margin-top: 40px;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
.title {
|
|
70
|
+
font-weight: bold;
|
|
71
|
+
font-size: 14px;
|
|
72
|
+
line-height: 14px;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
.content {
|
|
76
|
+
margin-top: 16px;
|
|
77
|
+
display: grid;
|
|
78
|
+
grid-auto-flow: column;
|
|
79
|
+
gap: 12px 0;
|
|
80
|
+
position: relative;
|
|
81
|
+
grid-auto-columns: 150px;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
.vft-menu-item {
|
|
85
|
+
min-width: 100% !important;
|
|
86
|
+
}
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
}
|
|
@@ -19,11 +19,11 @@ $name: icon;
|
|
|
19
19
|
&:hover {
|
|
20
20
|
color: getCssVarWithDefault(icon-hover-color, getCompCssVar(color))
|
|
21
21
|
}
|
|
22
|
+
}
|
|
22
23
|
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
}
|
|
24
|
+
@include e(image) {
|
|
25
|
+
display: inline-block;
|
|
26
|
+
width: 1em;
|
|
27
|
+
height: 1em;
|
|
28
|
+
object-fit: contain;
|
|
29
29
|
}
|