vft 0.0.71 → 0.0.72
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/attributes.json +1 -1
- package/dist/index.css +1 -1
- package/es/component.js +56 -40
- package/es/components/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 +70 -62
- 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
|
@@ -215,6 +215,7 @@ $z-index: map.merge(
|
|
|
215
215
|
"normal": 1,
|
|
216
216
|
"top": 1000,
|
|
217
217
|
"popper": 2000,
|
|
218
|
+
'back-top': 3050
|
|
218
219
|
),
|
|
219
220
|
$z-index
|
|
220
221
|
);
|
|
@@ -551,11 +552,10 @@ $dropdown: map.merge(
|
|
|
551
552
|
$header-layout: () !default;
|
|
552
553
|
$header-layout: map-merge(
|
|
553
554
|
(
|
|
554
|
-
height:
|
|
555
|
+
height: 70px,
|
|
555
556
|
top-height: 40px,
|
|
556
557
|
bg-color: #eff1f5,
|
|
557
|
-
|
|
558
|
-
border-bottom: 1px solid rgb(231, 231, 231),
|
|
558
|
+
left-min-width: 800px,
|
|
559
559
|
),
|
|
560
560
|
$header-layout
|
|
561
561
|
);
|
|
@@ -702,7 +702,8 @@ $menu: map-merge(
|
|
|
702
702
|
"border-bottom": getCssVar("border"),
|
|
703
703
|
"base-level-padding": 20px,
|
|
704
704
|
"level-padding": 20px,
|
|
705
|
-
"icon-mr":
|
|
705
|
+
"icon-mr": 6px,
|
|
706
|
+
"icon-width": 14px,
|
|
706
707
|
"border": getCssVar("border"),
|
|
707
708
|
"border-right": getCssVar('border'),
|
|
708
709
|
"item-min-width": 200px,
|
|
@@ -1060,7 +1061,7 @@ $tag-icon-size: map-merge(
|
|
|
1060
1061
|
$back-top: () !default;
|
|
1061
1062
|
$back-top: map-merge(
|
|
1062
1063
|
(
|
|
1063
|
-
"bg-color": getCssVar("bg-color
|
|
1064
|
+
"bg-color": getCssVar("bg-color-overlay"),
|
|
1064
1065
|
"text-color": getCssVar('text-primary-color'),
|
|
1065
1066
|
"hover-bg-color": getCssVar("border-color-extra-light"),
|
|
1066
1067
|
),
|
|
@@ -1165,8 +1166,382 @@ $list-cell: map-merge((
|
|
|
1165
1166
|
|
|
1166
1167
|
$search: () !default;
|
|
1167
1168
|
$search: map-merge((
|
|
1168
|
-
active-width: 100
|
|
1169
|
+
active-width: 100%,
|
|
1170
|
+
border-color: getCssVar('input-border-color'),
|
|
1171
|
+
hover-border-color: getCssVar('primary-color'),
|
|
1172
|
+
active-bg-color: getCssVar('input-bg-color'),
|
|
1173
|
+
hover-bg-color: getCssVar('input-bg-color'),
|
|
1174
|
+
border-radius: getCssVar('border-radius-base'),
|
|
1169
1175
|
), $search);
|
|
1170
1176
|
|
|
1171
1177
|
|
|
1178
|
+
// Break-point
|
|
1179
|
+
$sm: 768px !default;
|
|
1180
|
+
$md: 992px !default;
|
|
1181
|
+
$lg: 1200px !default;
|
|
1182
|
+
$xl: 1920px !default;
|
|
1183
|
+
|
|
1184
|
+
$breakpoints: (
|
|
1185
|
+
'xs': '(max-width: #{$sm})',
|
|
1186
|
+
'sm': '(min-width: #{$sm})',
|
|
1187
|
+
'md': '(min-width: #{$md})',
|
|
1188
|
+
'lg': '(min-width: #{$lg})',
|
|
1189
|
+
'xl': '(min-width: #{$xl})',
|
|
1190
|
+
) !default;
|
|
1191
|
+
|
|
1192
|
+
$breakpoints-spec: (
|
|
1193
|
+
'xs-only': '(max-width: #{$sm - 1})',
|
|
1194
|
+
'sm-and-up': '(min-width: #{$sm})',
|
|
1195
|
+
'sm-only': '(min-width: #{$sm}) and (max-width: #{$md - 1})',
|
|
1196
|
+
'sm-and-down': '(max-width: #{$md - 1})',
|
|
1197
|
+
'md-and-up': '(min-width: #{$md})',
|
|
1198
|
+
'md-only': '(min-width: #{$md}) and (max-width: #{$lg - 1})',
|
|
1199
|
+
'md-and-down': '(max-width: #{$lg - 1})',
|
|
1200
|
+
'lg-and-up': '(min-width: #{$lg})',
|
|
1201
|
+
'lg-only': '(min-width: #{$lg}) and (max-width: #{$xl - 1})',
|
|
1202
|
+
'lg-and-down': '(max-width: #{$xl - 1})',
|
|
1203
|
+
'xl-only': '(min-width: #{$xl})',
|
|
1204
|
+
) !default;
|
|
1172
1205
|
|
|
1206
|
+
// Alert
|
|
1207
|
+
// css3 var in packages/theme-chalk/src/alert.scss
|
|
1208
|
+
$alert: () !default;
|
|
1209
|
+
$alert: map.merge(
|
|
1210
|
+
(
|
|
1211
|
+
'padding': 8px 16px,
|
|
1212
|
+
'border-radius-base': getCssVar('border-radius-base'),
|
|
1213
|
+
'title-font-size': 13px,
|
|
1214
|
+
'description-font-size': 12px,
|
|
1215
|
+
'close-font-size': 12px,
|
|
1216
|
+
'close-customed-font-size': 13px,
|
|
1217
|
+
'icon-size': 16px,
|
|
1218
|
+
'icon-large-size': 28px,
|
|
1219
|
+
),
|
|
1220
|
+
$alert
|
|
1221
|
+
);
|
|
1222
|
+
|
|
1223
|
+
// MessageBox
|
|
1224
|
+
// css3 var in packages/theme-chalk/src/message-box.scss
|
|
1225
|
+
$messagebox: () !default;
|
|
1226
|
+
$messagebox: map.merge(
|
|
1227
|
+
(
|
|
1228
|
+
'title-color': getCssVar('text-primary-color'),
|
|
1229
|
+
'width': 420px,
|
|
1230
|
+
'border-radius': 4px,
|
|
1231
|
+
'font-size': getCssVar('font-size-large'),
|
|
1232
|
+
'content-font-size': getCssVar('font-size-base'),
|
|
1233
|
+
'content-color': getCssVar('text-regular-color'),
|
|
1234
|
+
'error-font-size': 12px,
|
|
1235
|
+
'padding-primary': 15px,
|
|
1236
|
+
),
|
|
1237
|
+
$messagebox
|
|
1238
|
+
);
|
|
1239
|
+
|
|
1240
|
+
// Notification
|
|
1241
|
+
// css3 var in packages/theme-chalk/src/notification.scss
|
|
1242
|
+
$notification: () !default;
|
|
1243
|
+
$notification: map.merge(
|
|
1244
|
+
(
|
|
1245
|
+
'width': 330px,
|
|
1246
|
+
'padding': 14px 26px 14px 13px,
|
|
1247
|
+
'radius': 8px,
|
|
1248
|
+
'shadow': getCssVar('box-shadow-light'),
|
|
1249
|
+
'border-color': getCssVar('border-color-lighter'),
|
|
1250
|
+
'icon-size': 24px,
|
|
1251
|
+
'close-font-size':
|
|
1252
|
+
var(
|
|
1253
|
+
#{getCssVarName('message-close-size')},
|
|
1254
|
+
map.get($message, 'close-size')
|
|
1255
|
+
),
|
|
1256
|
+
'group-margin-left': 13px,
|
|
1257
|
+
'group-margin-right': 8px,
|
|
1258
|
+
'content-font-size': getCssVar('font-size-base'),
|
|
1259
|
+
'content-color': getCssVar('text-regular-color'),
|
|
1260
|
+
'title-font-size': 16px,
|
|
1261
|
+
'title-color': getCssVar('text-primary-color'),
|
|
1262
|
+
'close-color': getCssVar('text-secondary-color'),
|
|
1263
|
+
'close-hover-color': getCssVar('text-regular-color'),
|
|
1264
|
+
),
|
|
1265
|
+
$notification
|
|
1266
|
+
);
|
|
1267
|
+
|
|
1268
|
+
|
|
1269
|
+
// Cascader
|
|
1270
|
+
// css3 var in packages/theme-chalk/src/cascader.scss
|
|
1271
|
+
$cascader: () !default;
|
|
1272
|
+
$cascader: map.merge(
|
|
1273
|
+
(
|
|
1274
|
+
'menu-text-color': getCssVar('text-regular-color'),
|
|
1275
|
+
'menu-selected-text-color': getCssVar('primary-color'),
|
|
1276
|
+
'menu-fill': getCssVar('bg-color', 'overlay'),
|
|
1277
|
+
'menu-font-size': getCssVar('font-size-base'),
|
|
1278
|
+
'menu-radius': getCssVar('border-radius-base'),
|
|
1279
|
+
'menu-border': solid 1px getCssVar('border-color-light'),
|
|
1280
|
+
'menu-shadow': getCssVar('box-shadow-light'),
|
|
1281
|
+
'node-background-hover': getCssVar('fill-color', 'light'),
|
|
1282
|
+
'node-color-disabled': getCssVar('text-placeholder-color'),
|
|
1283
|
+
'color-empty': getCssVar('text-placeholder-color'),
|
|
1284
|
+
'tag-background': getCssVar('fill-color'),
|
|
1285
|
+
),
|
|
1286
|
+
$cascader
|
|
1287
|
+
);
|
|
1288
|
+
//statistic
|
|
1289
|
+
// css3 var in packages/theme-chalk/src/statistic.scss
|
|
1290
|
+
$statistic: () !default;
|
|
1291
|
+
$statistic: map.merge(
|
|
1292
|
+
(
|
|
1293
|
+
'title-font-weight': 400,
|
|
1294
|
+
'title-font-size': getCssVar('font-size', 'extra-small'),
|
|
1295
|
+
'title-color': getCssVar('text-regular-color'),
|
|
1296
|
+
'content-font-weight': 400,
|
|
1297
|
+
'content-font-size': getCssVar('font-size', 'extra-large'),
|
|
1298
|
+
'content-color': getCssVar('text-primary-color'),
|
|
1299
|
+
),
|
|
1300
|
+
$statistic
|
|
1301
|
+
);
|
|
1302
|
+
|
|
1303
|
+
// skeleton
|
|
1304
|
+
$skeleton: () !default;
|
|
1305
|
+
$skeleton: map.merge(
|
|
1306
|
+
(
|
|
1307
|
+
'color': getCssVar('fill-color'),
|
|
1308
|
+
'to-color': getCssVar('fill-color', 'darker'),
|
|
1309
|
+
),
|
|
1310
|
+
$skeleton
|
|
1311
|
+
);
|
|
1312
|
+
|
|
1313
|
+
// css3 var in packages/theme-chalk/src/tree.scss
|
|
1314
|
+
$tree: () !default;
|
|
1315
|
+
$tree: map.merge(
|
|
1316
|
+
(
|
|
1317
|
+
'node-hover-bg-color': getCssVar('fill-color', 'light'),
|
|
1318
|
+
'text-color': getCssVar('text-regular-color'),
|
|
1319
|
+
'expand-icon-color': getCssVar('text-placeholder-color'),
|
|
1320
|
+
),
|
|
1321
|
+
$tree
|
|
1322
|
+
);
|
|
1323
|
+
|
|
1324
|
+
// drawer
|
|
1325
|
+
$drawer: () !default;
|
|
1326
|
+
$drawer: map.merge(
|
|
1327
|
+
(
|
|
1328
|
+
'bg-color':
|
|
1329
|
+
var(#{getCssVarName('dialog', 'bg-color')}, #{getCssVar('bg-color')}),
|
|
1330
|
+
'padding-primary': var(#{getCssVarName('dialog', 'padding-primary')}, 20px),
|
|
1331
|
+
),
|
|
1332
|
+
$drawer
|
|
1333
|
+
);
|
|
1334
|
+
|
|
1335
|
+
// Badge
|
|
1336
|
+
// css3 var in packages/theme-chalk/src/badge.scss
|
|
1337
|
+
$badge: () !default;
|
|
1338
|
+
$badge: map.merge(
|
|
1339
|
+
(
|
|
1340
|
+
'bg-color': getCssVar('danger-color'),
|
|
1341
|
+
'radius': 10px,
|
|
1342
|
+
'font-size': 12px,
|
|
1343
|
+
'padding': 6px,
|
|
1344
|
+
'size': 18px,
|
|
1345
|
+
),
|
|
1346
|
+
$badge
|
|
1347
|
+
);
|
|
1348
|
+
|
|
1349
|
+
// Card
|
|
1350
|
+
$card: () !default;
|
|
1351
|
+
$card: map.merge(
|
|
1352
|
+
(
|
|
1353
|
+
'border-color': getCssVar('border-color', 'light'),
|
|
1354
|
+
'border-radius': 4px,
|
|
1355
|
+
'padding': 20px,
|
|
1356
|
+
'bg-color': getCssVar('fill-color', 'blank'),
|
|
1357
|
+
),
|
|
1358
|
+
$card
|
|
1359
|
+
);
|
|
1360
|
+
|
|
1361
|
+
// Slider
|
|
1362
|
+
// css3 var in packages/theme-chalk/src/slider.scss
|
|
1363
|
+
$slider: () !default;
|
|
1364
|
+
$slider: map.merge(
|
|
1365
|
+
(
|
|
1366
|
+
'main-bg-color': getCssVar('primary-color'),
|
|
1367
|
+
'runway-bg-color': getCssVar('border-color-light'),
|
|
1368
|
+
'stop-bg-color': getCssVar('color-white'),
|
|
1369
|
+
'disabled-color': getCssVar('text-placeholder-color'),
|
|
1370
|
+
'border-radius': 3px,
|
|
1371
|
+
'height': 6px,
|
|
1372
|
+
'button-size': 20px,
|
|
1373
|
+
'button-wrapper-size': 36px,
|
|
1374
|
+
'button-wrapper-offset': -15px,
|
|
1375
|
+
),
|
|
1376
|
+
$slider
|
|
1377
|
+
);
|
|
1378
|
+
|
|
1379
|
+
// Rate
|
|
1380
|
+
$rate: () !default;
|
|
1381
|
+
$rate: map.merge(
|
|
1382
|
+
(
|
|
1383
|
+
'height': 20px,
|
|
1384
|
+
'font-size': getCssVar('font-size-base'),
|
|
1385
|
+
'icon-size': 18px,
|
|
1386
|
+
'icon-margin': 6px,
|
|
1387
|
+
// seems not be used, to be removed
|
|
1388
|
+
// 'icon-color': getCssVar('text-placeholder-color),
|
|
1389
|
+
'void-color': getCssVar('border-color', 'darker'),
|
|
1390
|
+
'fill-color': #f7ba2a,
|
|
1391
|
+
'disabled-void-color': getCssVar('fill-color'),
|
|
1392
|
+
'text-color': getCssVar('text-primary-color'),
|
|
1393
|
+
),
|
|
1394
|
+
$rate
|
|
1395
|
+
);
|
|
1396
|
+
|
|
1397
|
+
// DatePicker
|
|
1398
|
+
// css3 var packages/theme-chalk/src/date-picker/var.scss
|
|
1399
|
+
$datepicker: () !default;
|
|
1400
|
+
$datepicker: map.merge(
|
|
1401
|
+
(
|
|
1402
|
+
'text-color': getCssVar('text-regular-color'),
|
|
1403
|
+
'off-text-color': getCssVar('text-placeholder-color'),
|
|
1404
|
+
'header-text-color': getCssVar('text-regular-color'),
|
|
1405
|
+
'icon-color': getCssVar('text-primary-color'),
|
|
1406
|
+
'border-color': getCssVar('disabled-border-color'),
|
|
1407
|
+
'inner-border-color': getCssVar('border-color-light'),
|
|
1408
|
+
'inrange-bg-color': getCssVar('border-color-extra-light'),
|
|
1409
|
+
'inrange-hover-bg-color': getCssVar('border-color-extra-light'),
|
|
1410
|
+
'active-color': getCssVar('primary-color'),
|
|
1411
|
+
'hover-text-color': getCssVar('primary-color'),
|
|
1412
|
+
),
|
|
1413
|
+
$datepicker
|
|
1414
|
+
);
|
|
1415
|
+
|
|
1416
|
+
$date-editor: () !default;
|
|
1417
|
+
$date-editor: map.merge(
|
|
1418
|
+
(
|
|
1419
|
+
'width': 220px,
|
|
1420
|
+
'monthrange-width': 300px,
|
|
1421
|
+
'daterange-width': 350px,
|
|
1422
|
+
'datetimerange-width': 400px,
|
|
1423
|
+
),
|
|
1424
|
+
$date-editor
|
|
1425
|
+
);
|
|
1426
|
+
|
|
1427
|
+
// Carousel
|
|
1428
|
+
// css3 var in packages/theme-chalk/src/carousel.scss
|
|
1429
|
+
$carousel: () !default;
|
|
1430
|
+
$carousel: map.merge(
|
|
1431
|
+
(
|
|
1432
|
+
'arrow-font-size': 12px,
|
|
1433
|
+
'arrow-size': 36px,
|
|
1434
|
+
'arrow-background': rgba(31, 45, 61, 0.11),
|
|
1435
|
+
'arrow-hover-background': rgba(31, 45, 61, 0.23),
|
|
1436
|
+
'indicator-width': 30px,
|
|
1437
|
+
'indicator-height': 2px,
|
|
1438
|
+
'indicator-padding-horizontal': 4px,
|
|
1439
|
+
'indicator-padding-vertical': 12px,
|
|
1440
|
+
'indicator-out-color': getCssVar('border-color-hover'),
|
|
1441
|
+
),
|
|
1442
|
+
$carousel
|
|
1443
|
+
);
|
|
1444
|
+
|
|
1445
|
+
// Collapse
|
|
1446
|
+
// css3 var in packages/theme-chalk/src/collapse.scss
|
|
1447
|
+
$collapse: () !default;
|
|
1448
|
+
$collapse: map.merge(
|
|
1449
|
+
(
|
|
1450
|
+
'border-color': getCssVar('border-color-lighter'),
|
|
1451
|
+
'header-height': 48px,
|
|
1452
|
+
'header-bg-color': getCssVar('fill-color', 'blank'),
|
|
1453
|
+
'header-text-color': getCssVar('text-primary-color'),
|
|
1454
|
+
'header-font-size': 13px,
|
|
1455
|
+
'content-bg-color': getCssVar('fill-color', 'blank'),
|
|
1456
|
+
'content-font-size': 13px,
|
|
1457
|
+
'content-text-color': getCssVar('text-primary-color'),
|
|
1458
|
+
),
|
|
1459
|
+
$collapse
|
|
1460
|
+
);
|
|
1461
|
+
|
|
1462
|
+
// Transfer
|
|
1463
|
+
// css3 var in packages/theme-chalk/src/transfer.scss
|
|
1464
|
+
$transfer: () !default;
|
|
1465
|
+
$transfer: map.merge(
|
|
1466
|
+
(
|
|
1467
|
+
'border-color': getCssVar('border-color-lighter'),
|
|
1468
|
+
'border-radius': getCssVar('border-radius-base'),
|
|
1469
|
+
'panel-width': 200px,
|
|
1470
|
+
'panel-header-height': 40px,
|
|
1471
|
+
'panel-header-bg-color': getCssVar('fill-color', 'light'),
|
|
1472
|
+
'panel-footer-height': 40px,
|
|
1473
|
+
'panel-body-height': 278px,
|
|
1474
|
+
'item-height': 30px,
|
|
1475
|
+
'filter-height': 32px,
|
|
1476
|
+
),
|
|
1477
|
+
$transfer
|
|
1478
|
+
);
|
|
1479
|
+
|
|
1480
|
+
// Timeline
|
|
1481
|
+
// css3 var in packages/theme-chalk/src/timeline-item.scss
|
|
1482
|
+
$timeline: () !default;
|
|
1483
|
+
$timeline: map.merge(
|
|
1484
|
+
(
|
|
1485
|
+
'node-size-normal': 12px,
|
|
1486
|
+
'node-size-large': 14px,
|
|
1487
|
+
'node-color': getCssVar('border-color-light'),
|
|
1488
|
+
),
|
|
1489
|
+
$timeline
|
|
1490
|
+
);
|
|
1491
|
+
|
|
1492
|
+
// Calendar
|
|
1493
|
+
// css3 var in packages/theme-chalk/src/calendar.scss
|
|
1494
|
+
$calendar: () !default;
|
|
1495
|
+
$calendar: map.merge(
|
|
1496
|
+
(
|
|
1497
|
+
'border':
|
|
1498
|
+
var(
|
|
1499
|
+
#{getCssVarName('table-border')},
|
|
1500
|
+
1px solid #{getCssVar('border-color-lighter')}
|
|
1501
|
+
),
|
|
1502
|
+
'header-border-bottom': getCssVar('calendar-border'),
|
|
1503
|
+
'selected-bg-color': getCssVar('color', 'primary', 'light-9'),
|
|
1504
|
+
'cell-width': 85px,
|
|
1505
|
+
),
|
|
1506
|
+
$calendar
|
|
1507
|
+
);
|
|
1508
|
+
|
|
1509
|
+
// Upload
|
|
1510
|
+
// css3 var in packages/theme-chalk/src/upload.scss
|
|
1511
|
+
$upload: () !default;
|
|
1512
|
+
$upload: map.merge(
|
|
1513
|
+
(
|
|
1514
|
+
'dragger-padding-horizontal': 40px,
|
|
1515
|
+
'dragger-padding-vertical': 10px,
|
|
1516
|
+
),
|
|
1517
|
+
$upload
|
|
1518
|
+
);
|
|
1519
|
+
|
|
1520
|
+
// header
|
|
1521
|
+
$header: () !default;
|
|
1522
|
+
$header: map.merge(
|
|
1523
|
+
(
|
|
1524
|
+
'height': 60px,
|
|
1525
|
+
),
|
|
1526
|
+
$header
|
|
1527
|
+
);
|
|
1528
|
+
|
|
1529
|
+
// footer
|
|
1530
|
+
$footer: () !default;
|
|
1531
|
+
$footer: map.merge(
|
|
1532
|
+
(
|
|
1533
|
+
'height': 60px,
|
|
1534
|
+
),
|
|
1535
|
+
$footer
|
|
1536
|
+
);
|
|
1537
|
+
|
|
1538
|
+
// Popup
|
|
1539
|
+
// css3 var in packages/theme-chalk/src/popup.scss
|
|
1540
|
+
$popup: () !default;
|
|
1541
|
+
$popup: map.merge(
|
|
1542
|
+
(
|
|
1543
|
+
'modal-bg-color': getCssVar('color-black'),
|
|
1544
|
+
'modal-opacity': 0.5,
|
|
1545
|
+
),
|
|
1546
|
+
$popup
|
|
1547
|
+
);
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
@use '../common/var' as *;
|
|
2
|
+
@use '../mixins/mixins' as *;
|
|
3
|
+
@use '../mixins/var' as *;
|
|
4
|
+
@use './picker-panel.scss';
|
|
5
|
+
|
|
6
|
+
@include b(date-picker) {
|
|
7
|
+
@include set-component-css-var('datepicker', $datepicker);
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
@include b(date-picker) {
|
|
11
|
+
width: 322px;
|
|
12
|
+
|
|
13
|
+
&.has-sidebar.has-time {
|
|
14
|
+
width: 434px;
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
&.has-sidebar {
|
|
18
|
+
width: 438px;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
&.has-time .#{$namespace}-picker-panel__body-wrapper {
|
|
22
|
+
position: relative;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.#{$namespace}-picker-panel__content {
|
|
26
|
+
width: 292px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
table {
|
|
30
|
+
table-layout: fixed;
|
|
31
|
+
width: 100%;
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
@include e(editor-wrap) {
|
|
35
|
+
position: relative;
|
|
36
|
+
display: table-cell;
|
|
37
|
+
padding: 0 5px;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
@include e(time-header) {
|
|
41
|
+
position: relative;
|
|
42
|
+
border-bottom: 1px solid getCssVar('datepicker-inner-border-color');
|
|
43
|
+
font-size: 12px;
|
|
44
|
+
padding: 8px 5px 5px;
|
|
45
|
+
display: table;
|
|
46
|
+
width: 100%;
|
|
47
|
+
box-sizing: border-box;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
@include e(header) {
|
|
51
|
+
margin: 12px;
|
|
52
|
+
text-align: center;
|
|
53
|
+
|
|
54
|
+
@include m(bordered) {
|
|
55
|
+
margin-bottom: 0;
|
|
56
|
+
padding-bottom: 12px;
|
|
57
|
+
border-bottom: solid 1px getCssVar('border-color-lighter');
|
|
58
|
+
|
|
59
|
+
& + .#{$namespace}-picker-panel__content {
|
|
60
|
+
margin-top: 0;
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
@include e(header-label) {
|
|
66
|
+
font-size: 16px;
|
|
67
|
+
font-weight: 500;
|
|
68
|
+
padding: 0 5px;
|
|
69
|
+
line-height: 22px;
|
|
70
|
+
text-align: center;
|
|
71
|
+
cursor: pointer;
|
|
72
|
+
color: getCssVar('text-color', 'regular');
|
|
73
|
+
|
|
74
|
+
&:hover {
|
|
75
|
+
color: getCssVar('datepicker-hover-text-color');
|
|
76
|
+
}
|
|
77
|
+
&:focus-visible {
|
|
78
|
+
outline: none;
|
|
79
|
+
color: getCssVar('datepicker-hover-text-color');
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
&.active {
|
|
83
|
+
color: getCssVar('datepicker-active-color');
|
|
84
|
+
}
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
@include e(prev-btn) {
|
|
88
|
+
float: left;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
@include e(next-btn) {
|
|
92
|
+
float: right;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
@include e(time-wrap) {
|
|
96
|
+
padding: 10px;
|
|
97
|
+
text-align: center;
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
@include e(time-label) {
|
|
101
|
+
float: left;
|
|
102
|
+
cursor: pointer;
|
|
103
|
+
line-height: 30px;
|
|
104
|
+
margin-left: 10px;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.#{$namespace}-time-panel {
|
|
108
|
+
position: absolute;
|
|
109
|
+
}
|
|
110
|
+
}
|
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
@use '../mixins/mixins' as *;
|
|
2
|
+
@use '../common/var' as *;
|
|
3
|
+
@use '../mixins/var' as *;
|
|
4
|
+
|
|
5
|
+
@include b(date-range-picker) {
|
|
6
|
+
@include set-component-css-var('datepicker', $datepicker);
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
@include b(date-range-picker) {
|
|
10
|
+
width: 646px;
|
|
11
|
+
|
|
12
|
+
&.has-sidebar {
|
|
13
|
+
width: 756px;
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
&.has-time .#{$namespace}-picker-panel__body-wrapper {
|
|
17
|
+
position: relative;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
table {
|
|
21
|
+
table-layout: fixed;
|
|
22
|
+
width: 100%;
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
.#{$namespace}-picker-panel__body {
|
|
26
|
+
min-width: 513px;
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.#{$namespace}-picker-panel__content {
|
|
30
|
+
margin: 0;
|
|
31
|
+
}
|
|
32
|
+
|
|
33
|
+
@include e(header) {
|
|
34
|
+
position: relative;
|
|
35
|
+
text-align: center;
|
|
36
|
+
height: 28px;
|
|
37
|
+
|
|
38
|
+
[class*='arrow-left'] {
|
|
39
|
+
float: left;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
[class*='arrow-right'] {
|
|
43
|
+
float: right;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
div {
|
|
47
|
+
font-size: 16px;
|
|
48
|
+
font-weight: 500;
|
|
49
|
+
margin-right: 50px;
|
|
50
|
+
}
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
@include e(content) {
|
|
54
|
+
float: left;
|
|
55
|
+
width: 50%;
|
|
56
|
+
box-sizing: border-box;
|
|
57
|
+
margin: 0;
|
|
58
|
+
padding: 16px;
|
|
59
|
+
|
|
60
|
+
@include when(left) {
|
|
61
|
+
border-right: 1px solid getCssVar('datepicker-inner-border-color');
|
|
62
|
+
}
|
|
63
|
+
.#{$namespace}-date-range-picker__header {
|
|
64
|
+
div {
|
|
65
|
+
margin-left: 50px;
|
|
66
|
+
margin-right: 50px;
|
|
67
|
+
}
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
@include e(editors-wrap) {
|
|
72
|
+
box-sizing: border-box;
|
|
73
|
+
display: table-cell;
|
|
74
|
+
|
|
75
|
+
@include when(right) {
|
|
76
|
+
text-align: right;
|
|
77
|
+
}
|
|
78
|
+
}
|
|
79
|
+
|
|
80
|
+
@include e(time-header) {
|
|
81
|
+
position: relative;
|
|
82
|
+
border-bottom: 1px solid getCssVar('datepicker-inner-border-color');
|
|
83
|
+
font-size: 12px;
|
|
84
|
+
padding: 8px 5px 5px 5px;
|
|
85
|
+
display: table;
|
|
86
|
+
width: 100%;
|
|
87
|
+
box-sizing: border-box;
|
|
88
|
+
|
|
89
|
+
> .#{$namespace}-icon-arrow-right {
|
|
90
|
+
font-size: 20px;
|
|
91
|
+
vertical-align: middle;
|
|
92
|
+
display: table-cell;
|
|
93
|
+
color: getCssVar('datepicker-icon-color');
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
@include e(time-picker-wrap) {
|
|
98
|
+
position: relative;
|
|
99
|
+
display: table-cell;
|
|
100
|
+
padding: 0 5px;
|
|
101
|
+
|
|
102
|
+
.#{$namespace}-picker-panel {
|
|
103
|
+
position: absolute;
|
|
104
|
+
top: 13px;
|
|
105
|
+
right: 0;
|
|
106
|
+
z-index: 1;
|
|
107
|
+
background: $color-white;
|
|
108
|
+
}
|
|
109
|
+
.#{$namespace}-time-panel {
|
|
110
|
+
position: absolute;
|
|
111
|
+
}
|
|
112
|
+
}
|
|
113
|
+
}
|