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
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import "@vft/utils";
|
|
2
|
+
import "vue";
|
|
3
|
+
import { buildProps as o, definePropType as p } from "../../../utils/vue/props/runtime.js";
|
|
4
|
+
import "@vueuse/core";
|
|
5
|
+
import "../../../utils/ns-cover.js";
|
|
6
|
+
import "lodash";
|
|
7
|
+
const c = o({
|
|
8
|
+
cell: {
|
|
9
|
+
type: p(Object)
|
|
10
|
+
}
|
|
11
|
+
});
|
|
12
|
+
export {
|
|
13
|
+
c as basicCellProps
|
|
14
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import "@vft/utils";
|
|
2
|
+
import "vue";
|
|
3
|
+
import { buildProps as e, definePropType as o } from "../../../utils/vue/props/runtime.js";
|
|
4
|
+
import "@vueuse/core";
|
|
5
|
+
import "../../../utils/ns-cover.js";
|
|
6
|
+
import "lodash";
|
|
7
|
+
import { datePickerSharedProps as t, selectionModeWithDefault as r } from "./shared.js";
|
|
8
|
+
const d = e({
|
|
9
|
+
...t,
|
|
10
|
+
cellClassName: {
|
|
11
|
+
type: o(Function)
|
|
12
|
+
},
|
|
13
|
+
showWeekNumber: Boolean,
|
|
14
|
+
selectionMode: r("date")
|
|
15
|
+
});
|
|
16
|
+
export {
|
|
17
|
+
d as basicDateTableProps
|
|
18
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import "@vft/utils";
|
|
2
|
+
import "vue";
|
|
3
|
+
import { buildProps as o } from "../../../utils/vue/props/runtime.js";
|
|
4
|
+
import "@vueuse/core";
|
|
5
|
+
import "../../../utils/ns-cover.js";
|
|
6
|
+
import "lodash";
|
|
7
|
+
import { datePickerSharedProps as t, selectionModeWithDefault as r } from "./shared.js";
|
|
8
|
+
const d = o({
|
|
9
|
+
...t,
|
|
10
|
+
selectionMode: r("month")
|
|
11
|
+
});
|
|
12
|
+
export {
|
|
13
|
+
d as basicMonthTableProps
|
|
14
|
+
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import "@vft/utils";
|
|
2
|
+
import "vue";
|
|
3
|
+
import { buildProps as r } from "../../../utils/vue/props/runtime.js";
|
|
4
|
+
import "@vueuse/core";
|
|
5
|
+
import "../../../utils/ns-cover.js";
|
|
6
|
+
import "lodash";
|
|
7
|
+
import { datePickerSharedProps as o } from "./shared.js";
|
|
8
|
+
const { date: t, disabledDate: p, parsedValue: e } = o, l = r({
|
|
9
|
+
date: t,
|
|
10
|
+
disabledDate: p,
|
|
11
|
+
parsedValue: e
|
|
12
|
+
});
|
|
13
|
+
export {
|
|
14
|
+
l as basicYearTableProps
|
|
15
|
+
};
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import "../../time-picker/index.js";
|
|
2
|
+
import "@vft/utils";
|
|
3
|
+
import "vue";
|
|
4
|
+
import { buildProps as r, definePropType as t } from "../../../utils/vue/props/runtime.js";
|
|
5
|
+
import "@vueuse/core";
|
|
6
|
+
import "../../../utils/ns-cover.js";
|
|
7
|
+
import "lodash";
|
|
8
|
+
import { timePickerDefaultProps as o } from "../../time-picker/common/props.js";
|
|
9
|
+
const s = r({
|
|
10
|
+
...o,
|
|
11
|
+
type: {
|
|
12
|
+
type: t(String),
|
|
13
|
+
default: "date"
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
export {
|
|
17
|
+
s as datePickerProps
|
|
18
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import "@vft/utils";
|
|
2
|
+
import "vue";
|
|
3
|
+
import { buildProps as r, definePropType as p } from "../../../utils/vue/props/runtime.js";
|
|
4
|
+
import "@vueuse/core";
|
|
5
|
+
import "../../../utils/ns-cover.js";
|
|
6
|
+
import "lodash";
|
|
7
|
+
import { panelSharedProps as o } from "./shared.js";
|
|
8
|
+
const s = r({
|
|
9
|
+
...o,
|
|
10
|
+
parsedValue: {
|
|
11
|
+
type: p([Object, Array])
|
|
12
|
+
},
|
|
13
|
+
visible: {
|
|
14
|
+
type: Boolean
|
|
15
|
+
},
|
|
16
|
+
format: {
|
|
17
|
+
type: String,
|
|
18
|
+
default: ""
|
|
19
|
+
}
|
|
20
|
+
});
|
|
21
|
+
export {
|
|
22
|
+
s as panelDatePickProps
|
|
23
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import "@vft/utils";
|
|
2
|
+
import "vue";
|
|
3
|
+
import { buildProps as r } from "../../../utils/vue/props/runtime.js";
|
|
4
|
+
import "@vueuse/core";
|
|
5
|
+
import "../../../utils/ns-cover.js";
|
|
6
|
+
import "lodash";
|
|
7
|
+
import { panelSharedProps as o, panelRangeSharedProps as p } from "./shared.js";
|
|
8
|
+
const l = r({
|
|
9
|
+
...o,
|
|
10
|
+
...p
|
|
11
|
+
});
|
|
12
|
+
export {
|
|
13
|
+
l as panelDateRangeProps
|
|
14
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import "@vft/utils";
|
|
2
|
+
import "vue";
|
|
3
|
+
import { buildProps as o } from "../../../utils/vue/props/runtime.js";
|
|
4
|
+
import "@vueuse/core";
|
|
5
|
+
import "../../../utils/ns-cover.js";
|
|
6
|
+
import "lodash";
|
|
7
|
+
import { panelRangeSharedProps as p } from "./shared.js";
|
|
8
|
+
const s = o({
|
|
9
|
+
...p
|
|
10
|
+
}), c = ["pick", "set-picker-option"];
|
|
11
|
+
export {
|
|
12
|
+
c as panelMonthRangeEmits,
|
|
13
|
+
s as panelMonthRangeProps
|
|
14
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
import { isArray as a } from "@vft/utils";
|
|
2
|
+
import "vue";
|
|
3
|
+
import { buildProps as r, definePropType as e } from "../../../utils/vue/props/runtime.js";
|
|
4
|
+
import "@vueuse/core";
|
|
5
|
+
import "../../../utils/ns-cover.js";
|
|
6
|
+
import "lodash";
|
|
7
|
+
import { datePickTypes as o } from "../../../constants/date.js";
|
|
8
|
+
const p = ["date", "dates", "year", "month", "week", "range"], y = r({
|
|
9
|
+
disabledDate: {
|
|
10
|
+
type: e(Function)
|
|
11
|
+
},
|
|
12
|
+
date: {
|
|
13
|
+
type: e(Object),
|
|
14
|
+
required: !0
|
|
15
|
+
},
|
|
16
|
+
minDate: {
|
|
17
|
+
type: e(Object)
|
|
18
|
+
},
|
|
19
|
+
maxDate: {
|
|
20
|
+
type: e(Object)
|
|
21
|
+
},
|
|
22
|
+
parsedValue: {
|
|
23
|
+
type: e([Object, Array])
|
|
24
|
+
},
|
|
25
|
+
rangeState: {
|
|
26
|
+
type: e(Object),
|
|
27
|
+
default: () => ({
|
|
28
|
+
endDate: null,
|
|
29
|
+
selecting: !1
|
|
30
|
+
})
|
|
31
|
+
}
|
|
32
|
+
}), m = r({
|
|
33
|
+
type: {
|
|
34
|
+
type: e(String),
|
|
35
|
+
required: !0,
|
|
36
|
+
values: o
|
|
37
|
+
}
|
|
38
|
+
}), P = r({
|
|
39
|
+
unlinkPanels: Boolean,
|
|
40
|
+
parsedValue: {
|
|
41
|
+
type: e(Array)
|
|
42
|
+
}
|
|
43
|
+
}), f = (t) => ({
|
|
44
|
+
type: String,
|
|
45
|
+
values: p,
|
|
46
|
+
default: t
|
|
47
|
+
}), b = {
|
|
48
|
+
pick: (t) => a(t)
|
|
49
|
+
};
|
|
50
|
+
export {
|
|
51
|
+
y as datePickerSharedProps,
|
|
52
|
+
P as panelRangeSharedProps,
|
|
53
|
+
m as panelSharedProps,
|
|
54
|
+
b as rangePickerSharedEmits,
|
|
55
|
+
f as selectionModeWithDefault
|
|
56
|
+
};
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import "vft/theme-style/src/base.scss";
|
|
2
|
+
import "vft/theme-style/src/input.scss";
|
|
3
|
+
import "vft/theme-style/src/scrollbar.scss";
|
|
4
|
+
import "vft/theme-style/src/popper.scss";
|
|
5
|
+
import "vft/theme-style/src/icon.scss";
|
|
6
|
+
import "vft/theme-style/src/button.scss";
|
|
7
|
+
import "vft/theme-style/src/date-picker.scss";
|
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
import e from "dayjs";
|
|
2
|
+
import { isArray as B } from "@vft/utils";
|
|
3
|
+
const v = (r) => {
|
|
4
|
+
if (!B(r))
|
|
5
|
+
return !1;
|
|
6
|
+
const [l, c] = r;
|
|
7
|
+
return e.isDayjs(l) && e.isDayjs(c) && l.isSameOrBefore(c);
|
|
8
|
+
}, I = (r) => !r && r !== 0 ? [] : Array.isArray(r) ? r : [r], P = (r, { lang: l, unit: c, unlinkPanels: f }) => {
|
|
9
|
+
let o;
|
|
10
|
+
if (B(r)) {
|
|
11
|
+
let [p, m] = r.map((A) => e(A).locale(l));
|
|
12
|
+
return f || (m = p.add(1, c)), [p, m];
|
|
13
|
+
} else
|
|
14
|
+
r ? o = e(r) : o = e();
|
|
15
|
+
return o = o.locale(l), [o, o.add(1, c)];
|
|
16
|
+
}, n = (r, l, {
|
|
17
|
+
columnIndexOffset: c,
|
|
18
|
+
startDate: f,
|
|
19
|
+
nextEndDate: o,
|
|
20
|
+
now: p,
|
|
21
|
+
unit: m,
|
|
22
|
+
relativeDateGetter: A,
|
|
23
|
+
setCellMetadata: O,
|
|
24
|
+
setRowMetadata: g
|
|
25
|
+
}) => {
|
|
26
|
+
for (let S = 0; S < r.row; S++) {
|
|
27
|
+
const j = l[S];
|
|
28
|
+
for (let y = 0; y < r.column; y++) {
|
|
29
|
+
let i = j[y + c];
|
|
30
|
+
i || (i = {
|
|
31
|
+
row: S,
|
|
32
|
+
column: y,
|
|
33
|
+
type: "normal",
|
|
34
|
+
inRange: !1,
|
|
35
|
+
start: !1,
|
|
36
|
+
end: !1
|
|
37
|
+
});
|
|
38
|
+
const T = S * r.column + y, s = A(T);
|
|
39
|
+
i.dayjs = s, i.date = s.toDate(), i.timestamp = s.valueOf(), i.type = "normal", i.inRange = !!(f && s.isSameOrAfter(f, m) && o && s.isSameOrBefore(o, m)) || !!(f && s.isSameOrBefore(f, m) && o && s.isSameOrAfter(o, m)), f != null && f.isSameOrAfter(o) ? (i.start = !!o && s.isSame(o, m), i.end = f && s.isSame(f, m)) : (i.start = !!f && s.isSame(f, m), i.end = !!o && s.isSame(o, m)), s.isSame(p, m) && (i.type = "today"), O == null || O(i, { rowIndex: S, columnIndex: y }), j[y + c] = i;
|
|
40
|
+
}
|
|
41
|
+
g == null || g(j);
|
|
42
|
+
}
|
|
43
|
+
};
|
|
44
|
+
export {
|
|
45
|
+
n as buildPickerTable,
|
|
46
|
+
I as castArray,
|
|
47
|
+
P as getDefaultValue,
|
|
48
|
+
v as isValidRange
|
|
49
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as H, ref as o, computed as q, createVNode as e, withDirectives as T, resolveDirective as b, Fragment as z } from "vue";
|
|
2
2
|
import { useNamespace as B } from "../../hooks/use-namespace/index.js";
|
|
3
3
|
import "@popperjs/core";
|
|
4
4
|
import "lodash";
|
|
@@ -6,16 +6,17 @@ import "../../hooks/use-z-index/index.js";
|
|
|
6
6
|
import "@vueuse/core";
|
|
7
7
|
import { isArray as x } from "@vft/utils";
|
|
8
8
|
import "../../utils/ns-cover.js";
|
|
9
|
-
import
|
|
10
|
-
import { VftIcon as
|
|
9
|
+
import v from "dayjs";
|
|
10
|
+
import { VftIcon as w } from "../icon/index.js";
|
|
11
11
|
import { VftDropdown as E } from "../dropdown/index.js";
|
|
12
|
-
|
|
12
|
+
import G from "../date-picker/index.js";
|
|
13
|
+
const n = (
|
|
13
14
|
/* hoist-static*/
|
|
14
15
|
B("date-time-select")
|
|
15
|
-
),
|
|
16
|
-
name:
|
|
17
|
-
}),
|
|
18
|
-
...
|
|
16
|
+
), J = H({
|
|
17
|
+
name: n.b()
|
|
18
|
+
}), oe = /* @__PURE__ */ H({
|
|
19
|
+
...J,
|
|
19
20
|
props: {
|
|
20
21
|
dateList: {
|
|
21
22
|
default: []
|
|
@@ -26,83 +27,90 @@ const o = (
|
|
|
26
27
|
},
|
|
27
28
|
emits: ["change"],
|
|
28
29
|
setup(f, {
|
|
29
|
-
emit:
|
|
30
|
+
emit: I
|
|
30
31
|
}) {
|
|
31
|
-
const
|
|
32
|
-
function
|
|
32
|
+
const k = o(!1), D = o(), M = o("请选择时间"), t = o("");
|
|
33
|
+
function N(a) {
|
|
33
34
|
const {
|
|
34
|
-
count:
|
|
35
|
-
type:
|
|
36
|
-
format:
|
|
37
|
-
dateRange:
|
|
38
|
-
startOfType:
|
|
39
|
-
endOfType:
|
|
40
|
-
} =
|
|
41
|
-
let m,
|
|
42
|
-
const
|
|
43
|
-
let
|
|
44
|
-
const
|
|
45
|
-
let
|
|
46
|
-
return
|
|
35
|
+
count: l,
|
|
36
|
+
type: g,
|
|
37
|
+
format: s,
|
|
38
|
+
dateRange: i = !0,
|
|
39
|
+
startOfType: O,
|
|
40
|
+
endOfType: L
|
|
41
|
+
} = a;
|
|
42
|
+
let m, r, R;
|
|
43
|
+
const p = s || f.defaultFormat;
|
|
44
|
+
let c = v().format(p);
|
|
45
|
+
const Y = (d, U = !0) => {
|
|
46
|
+
let h, F = U ? "startOf" : "endOf";
|
|
47
|
+
return d === "week" ? h = v().add(l, d)[F](d).add(1, "day").format(p) : h = v().add(l, d)[F](d).format(p), h;
|
|
47
48
|
};
|
|
48
|
-
|
|
49
|
-
let
|
|
50
|
-
return
|
|
49
|
+
O && (m = Y(O)), L && (r = Y(L, !1)), R = v().add(l, g).format(p);
|
|
50
|
+
let u = m || r || R;
|
|
51
|
+
return i ? m && r ? [u, r] : l > 0 ? [u !== r && r || c, u] : l === 0 ? [m || c, r || c] : [u, u !== r && r || c] : u;
|
|
51
52
|
}
|
|
52
|
-
function
|
|
53
|
-
|
|
53
|
+
function P(a, l) {
|
|
54
|
+
D.value = a, V.value.handleClose(), t.value = N(l), I("change", t.value);
|
|
54
55
|
}
|
|
55
56
|
function j() {
|
|
56
|
-
|
|
57
|
+
t.value = "";
|
|
57
58
|
}
|
|
58
|
-
const C =
|
|
59
|
-
var
|
|
60
|
-
return x(
|
|
61
|
-
}),
|
|
62
|
-
function A(
|
|
63
|
-
|
|
59
|
+
const C = q(() => {
|
|
60
|
+
var a;
|
|
61
|
+
return x(t.value) && ((a = t.value) != null && a.length) ? t.value[0] + " - " + t.value[1] : t.value;
|
|
62
|
+
}), V = o();
|
|
63
|
+
function A(a) {
|
|
64
|
+
k.value = a;
|
|
64
65
|
}
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
66
|
+
o([new Date(2e3, 10, 10, 10, 10), new Date(2e3, 10, 11, 10, 10)]);
|
|
67
|
+
const y = o(), S = () => {
|
|
68
|
+
const a = x(f.dateList[0]) ? f.dateList : [f.dateList];
|
|
69
|
+
return e("div", {
|
|
70
|
+
class: n.e("content")
|
|
71
|
+
}, [e(z, null, [a.map((l, g) => e("div", {
|
|
72
|
+
key: g,
|
|
73
|
+
class: n.e("item-container")
|
|
74
|
+
}, [l.map((s, i) => e("div", {
|
|
75
|
+
class: [n.e("item"), n.is("active", D.value === i)],
|
|
76
|
+
onClick: () => P(i, s)
|
|
77
|
+
}, [e("span", {
|
|
78
|
+
key: i
|
|
79
|
+
}, [s.text]), D.value === i ? e(w, {
|
|
78
80
|
icon: "ico-ep:check"
|
|
79
|
-
}, null) : null]))
|
|
81
|
+
}, null) : null])), e(G, {
|
|
82
|
+
teleported: !1,
|
|
83
|
+
modelValue: y,
|
|
84
|
+
"onUpdate:modelValue": (s) => y = s,
|
|
85
|
+
type: "datetime",
|
|
86
|
+
placeholder: "Select date and time"
|
|
87
|
+
}, null)]))])]);
|
|
80
88
|
};
|
|
81
|
-
return () =>
|
|
82
|
-
ref:
|
|
89
|
+
return () => e(E, {
|
|
90
|
+
ref: V,
|
|
83
91
|
trigger: "click",
|
|
84
92
|
teleported: !1,
|
|
85
|
-
class:
|
|
93
|
+
class: n.b(),
|
|
86
94
|
onVisibleChange: A
|
|
87
95
|
}, {
|
|
88
|
-
default: () => [
|
|
89
|
-
class: [
|
|
90
|
-
}, [
|
|
96
|
+
default: () => [e("span", {
|
|
97
|
+
class: [n.e("trigger"), "cursor-pointer"]
|
|
98
|
+
}, [e("span", {
|
|
91
99
|
class: [C.value ? "text" : "placeholder"]
|
|
92
|
-
}, [C.value ||
|
|
100
|
+
}, [C.value || M.value]), T(e(w, {
|
|
93
101
|
onClick: j,
|
|
94
102
|
icon: "ico-ep:circle-close",
|
|
95
103
|
class: "hover:text-black"
|
|
96
|
-
}, null), [[b("if"),
|
|
104
|
+
}, null), [[b("if"), t.value]]), T(e(w, {
|
|
97
105
|
icon: "ico-ep:arrow-down",
|
|
98
106
|
class: [{
|
|
99
|
-
"rotate-180":
|
|
107
|
+
"rotate-180": k.value
|
|
100
108
|
}]
|
|
101
|
-
}, null), [[b("if"),
|
|
102
|
-
dropdown: () =>
|
|
109
|
+
}, null), [[b("if"), t.value]])])],
|
|
110
|
+
dropdown: () => S()
|
|
103
111
|
});
|
|
104
112
|
}
|
|
105
113
|
});
|
|
106
114
|
export {
|
|
107
|
-
|
|
115
|
+
oe as default
|
|
108
116
|
};
|
|
@@ -2,4 +2,10 @@ import "vft/theme-style/src/base.scss";
|
|
|
2
2
|
import "vft/theme-style/src/link.scss";
|
|
3
3
|
import "vft/theme-style/src/tooltip.scss";
|
|
4
4
|
import "vft/theme-style/src/popper.scss";
|
|
5
|
+
import "vft/theme-style/src/input.scss";
|
|
6
|
+
import "vft/theme-style/src/scrollbar.scss";
|
|
7
|
+
import "vft/theme-style/src/icon.scss";
|
|
8
|
+
import "vft/theme-style/src/button.scss";
|
|
9
|
+
import "vft/theme-style/src/date-picker.scss";
|
|
10
|
+
import "vft/theme-style/src/time-picker.scss";
|
|
5
11
|
import "vft/theme-style/src/date-time-select.scss";
|
|
@@ -1,50 +1,120 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { generateCssVars as
|
|
3
|
-
import { useNamespace as
|
|
1
|
+
import { defineComponent as s, computed as l, openBlock as a, createBlock as n, unref as t, normalizeClass as r, withCtx as f, createElementVNode as m, renderSlot as p } from "vue";
|
|
2
|
+
import { generateCssVars as c, isNullOrUndefined as d, addUnit as u } from "@vft/utils";
|
|
3
|
+
import { useNamespace as h } from "../../hooks/use-namespace/index.js";
|
|
4
4
|
import "@popperjs/core";
|
|
5
5
|
import "lodash";
|
|
6
6
|
import "../../hooks/use-z-index/index.js";
|
|
7
7
|
import "@vueuse/core";
|
|
8
8
|
import "../../utils/ns-cover.js";
|
|
9
|
-
|
|
9
|
+
import "../divider/index.js";
|
|
10
|
+
import "../icon/index.js";
|
|
11
|
+
import "../avatar/index.js";
|
|
12
|
+
import "../empty/index.js";
|
|
13
|
+
import "../result/index.js";
|
|
14
|
+
import "../tabs/index.js";
|
|
15
|
+
import "../popper/index.js";
|
|
16
|
+
import "../collapse-transition/index.js";
|
|
17
|
+
import "../tooltip/index.js";
|
|
18
|
+
import "../popover/index.js";
|
|
19
|
+
import "../menu/index.js";
|
|
20
|
+
import "../context-menu/context-menu.vue2.js";
|
|
21
|
+
import "../multiple-tabs/index.js";
|
|
22
|
+
import "../header-layout/index.js";
|
|
23
|
+
import "./index.js";
|
|
24
|
+
import "../iframe-layout/index.js";
|
|
25
|
+
import "../router-view-content/index.js";
|
|
26
|
+
import "../logo/index.js";
|
|
27
|
+
import "../back-top/index.js";
|
|
28
|
+
import { VftFooter as C } from "../container/index.js";
|
|
29
|
+
import "../config-provider/index.js";
|
|
30
|
+
import "../descriptions/index.js";
|
|
31
|
+
import "../full-screen/index.js";
|
|
32
|
+
import "../icon-text/index.js";
|
|
33
|
+
import "../image/index.js";
|
|
34
|
+
import "../input/index.js";
|
|
35
|
+
import "../link/index.js";
|
|
36
|
+
import "../pagination/index.js";
|
|
37
|
+
import "../tag/index.js";
|
|
38
|
+
import "../side-menu/index.js";
|
|
39
|
+
import "../qrcode/index.js";
|
|
40
|
+
import "../overlay/index.js";
|
|
41
|
+
import "../clamp/index.js";
|
|
42
|
+
import "../clamp-toggle/index.js";
|
|
43
|
+
import "../page-wrapper/index.js";
|
|
44
|
+
import "../exception/index.js";
|
|
45
|
+
import "../search/index.js";
|
|
46
|
+
import "../form/index.js";
|
|
47
|
+
import "../button/index.js";
|
|
48
|
+
import "../checkbox/index.js";
|
|
49
|
+
import "../radio/index.js";
|
|
50
|
+
import "../switch/index.js";
|
|
51
|
+
import "../color-picker/index.js";
|
|
52
|
+
import "../scrollbar/index.js";
|
|
53
|
+
import "../dropdown/index.js";
|
|
54
|
+
import "../virtual-list/components/fixed-size-list.js";
|
|
55
|
+
import "../virtual-list/components/dynamic-size-list.js";
|
|
56
|
+
import "../virtual-list/components/fixed-size-grid.js";
|
|
57
|
+
import "../virtual-list/components/dynamic-size-grid.js";
|
|
58
|
+
import "../virtual-list/props.js";
|
|
59
|
+
import "../select-v2/index.js";
|
|
60
|
+
import "../verify-code/index.js";
|
|
61
|
+
import "../table/index.js";
|
|
62
|
+
import "../image-viewer/index.js";
|
|
63
|
+
import "../list-cell/index.js";
|
|
64
|
+
import "../dialog/index.js";
|
|
65
|
+
import "../date-time-select/index.js";
|
|
66
|
+
import "../col/index.js";
|
|
67
|
+
import "../row/index.js";
|
|
68
|
+
import "../horizontal-menu/index.js";
|
|
69
|
+
import "../time-picker/index.js";
|
|
70
|
+
import "../date-picker/index.js";
|
|
71
|
+
import "../md-container/index.js";
|
|
72
|
+
import "../md-comment/index.js";
|
|
73
|
+
import "../md-tabs/index.js";
|
|
74
|
+
import "../md-vue-playground/index.js";
|
|
75
|
+
import "../md-code-demo/index.js";
|
|
76
|
+
import "../md-code-tabs/index.js";
|
|
77
|
+
import "../message/index.js";
|
|
78
|
+
const o = (
|
|
10
79
|
/* hoist-static*/
|
|
11
|
-
|
|
12
|
-
),
|
|
13
|
-
name:
|
|
14
|
-
}),
|
|
15
|
-
...
|
|
80
|
+
h("footer-layout")
|
|
81
|
+
), _ = s({
|
|
82
|
+
name: o.b()
|
|
83
|
+
}), Jt = /* @__PURE__ */ s({
|
|
84
|
+
..._,
|
|
16
85
|
props: {
|
|
17
86
|
leftDistance: null
|
|
18
87
|
},
|
|
19
|
-
setup(
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
left:
|
|
88
|
+
setup(e) {
|
|
89
|
+
return l(() => c(
|
|
90
|
+
d(e.leftDistance) ? {} : {
|
|
91
|
+
left: u(e.leftDistance)
|
|
23
92
|
},
|
|
24
93
|
"layout-footer"
|
|
25
|
-
))
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
],
|
|
45
|
-
|
|
94
|
+
)), (i, g) => (a(), n(t(C), {
|
|
95
|
+
class: r(t(o).b())
|
|
96
|
+
}, {
|
|
97
|
+
default: f(() => [
|
|
98
|
+
m("div", {
|
|
99
|
+
class: r(t(o).e("left"))
|
|
100
|
+
}, [
|
|
101
|
+
p(i.$slots, "left")
|
|
102
|
+
], 2),
|
|
103
|
+
m("div", {
|
|
104
|
+
class: r(t(o).e("center"))
|
|
105
|
+
}, [
|
|
106
|
+
p(i.$slots, "default")
|
|
107
|
+
], 2),
|
|
108
|
+
m("div", {
|
|
109
|
+
class: r(t(o).e("right"))
|
|
110
|
+
}, [
|
|
111
|
+
p(i.$slots, "right")
|
|
112
|
+
], 2)
|
|
113
|
+
]),
|
|
114
|
+
_: 3
|
|
115
|
+
}, 8, ["class"]));
|
|
46
116
|
}
|
|
47
117
|
});
|
|
48
118
|
export {
|
|
49
|
-
|
|
119
|
+
Jt as default
|
|
50
120
|
};
|