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
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { useRouterHelper as
|
|
3
|
-
import { useNamespace as
|
|
1
|
+
import { defineComponent as s, computed as l, getCurrentInstance as p, openBlock as g, createElementBlock as f, normalizeClass as n, unref as e, normalizeStyle as d, createElementVNode as r, toDisplayString as C } from "vue";
|
|
2
|
+
import { useRouterHelper as h } from "@vft/router";
|
|
3
|
+
import { useNamespace as k } 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 "@vft/utils";
|
|
9
9
|
import "../../utils/ns-cover.js";
|
|
10
|
-
const
|
|
10
|
+
const P = ["src"], o = (
|
|
11
11
|
/* hoist-static*/
|
|
12
|
-
|
|
13
|
-
),
|
|
12
|
+
k("logo")
|
|
13
|
+
), j = s({
|
|
14
14
|
name: o.b()
|
|
15
|
-
}),
|
|
16
|
-
...
|
|
15
|
+
}), D = /* @__PURE__ */ s({
|
|
16
|
+
...j,
|
|
17
17
|
props: {
|
|
18
18
|
title: null,
|
|
19
19
|
logo: null,
|
|
20
20
|
jumpPath: null
|
|
21
21
|
},
|
|
22
22
|
setup(t) {
|
|
23
|
-
const
|
|
23
|
+
const c = l(() => [o.b()]), i = p().appContext.config.globalProperties.$router, { go: a } = h(i);
|
|
24
24
|
function m() {
|
|
25
|
-
t.jumpPath &&
|
|
25
|
+
t.jumpPath && a(t.jumpPath);
|
|
26
26
|
}
|
|
27
|
-
const
|
|
28
|
-
return (
|
|
29
|
-
class:
|
|
27
|
+
const u = l(() => t.jumpPath ? {} : o.cssVarBlock({ cursor: "inital" }));
|
|
28
|
+
return (x, y) => (g(), f("div", {
|
|
29
|
+
class: n(e(c)),
|
|
30
30
|
onClick: m,
|
|
31
|
-
style:
|
|
31
|
+
style: d(e(u))
|
|
32
32
|
}, [
|
|
33
|
-
|
|
34
|
-
class:
|
|
33
|
+
r("img", {
|
|
34
|
+
class: n(e(o).e("img")),
|
|
35
35
|
src: t.logo,
|
|
36
36
|
alt: ""
|
|
37
|
-
}, null, 10,
|
|
38
|
-
|
|
39
|
-
class:
|
|
40
|
-
},
|
|
37
|
+
}, null, 10, P),
|
|
38
|
+
r("div", {
|
|
39
|
+
class: n(["ml-2 truncate", e(o).e("title")])
|
|
40
|
+
}, C(t.title), 3)
|
|
41
41
|
], 6));
|
|
42
42
|
}
|
|
43
43
|
});
|
|
44
44
|
export {
|
|
45
|
-
|
|
45
|
+
D as default
|
|
46
46
|
};
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import { defineComponent as
|
|
1
|
+
import { defineComponent as V, getCurrentInstance as $, ref as y, onMounted as B, nextTick as H, unref as t, computed as I, openBlock as s, createElementBlock as l, normalizeClass as a, createBlock as x, createCommentVNode as C, createElementVNode as i, toDisplayString as k, createVNode as c, Fragment as L, renderList as M, withCtx as R, createTextVNode as q, renderSlot as F } from "vue";
|
|
2
2
|
import "../divider/index.js";
|
|
3
|
-
import { VftIcon as
|
|
3
|
+
import { VftIcon as T } from "../icon/index.js";
|
|
4
4
|
import "../avatar/index.js";
|
|
5
5
|
import "../empty/index.js";
|
|
6
6
|
import "../result/index.js";
|
|
@@ -10,7 +10,7 @@ import "../collapse-transition/index.js";
|
|
|
10
10
|
import "../tooltip/index.js";
|
|
11
11
|
import "../popover/index.js";
|
|
12
12
|
import "../menu/index.js";
|
|
13
|
-
import { jumpElement as
|
|
13
|
+
import { jumpElement as j, getRandomElementForArr as J, formatToDateTime as O, getDayTimestamp as Y } from "@vft/utils";
|
|
14
14
|
import "../context-menu/context-menu.vue2.js";
|
|
15
15
|
import "../multiple-tabs/index.js";
|
|
16
16
|
import "../header-layout/index.js";
|
|
@@ -19,15 +19,16 @@ import "../iframe-layout/index.js";
|
|
|
19
19
|
import "../router-view-content/index.js";
|
|
20
20
|
import "../logo/index.js";
|
|
21
21
|
import "../back-top/index.js";
|
|
22
|
+
import "../container/index.js";
|
|
22
23
|
import "../config-provider/index.js";
|
|
23
24
|
import "../descriptions/index.js";
|
|
24
25
|
import "../full-screen/index.js";
|
|
25
|
-
import { VftIconText as
|
|
26
|
+
import { VftIconText as G } from "../icon-text/index.js";
|
|
26
27
|
import "../image/index.js";
|
|
27
28
|
import "../input/index.js";
|
|
28
29
|
import "../link/index.js";
|
|
29
30
|
import "../pagination/index.js";
|
|
30
|
-
import { VftTag as
|
|
31
|
+
import { VftTag as K } from "../tag/index.js";
|
|
31
32
|
import "../side-menu/index.js";
|
|
32
33
|
import "../qrcode/index.js";
|
|
33
34
|
import "../overlay/index.js";
|
|
@@ -56,112 +57,117 @@ import "../image-viewer/index.js";
|
|
|
56
57
|
import "../list-cell/index.js";
|
|
57
58
|
import "../dialog/index.js";
|
|
58
59
|
import "../date-time-select/index.js";
|
|
60
|
+
import "../col/index.js";
|
|
61
|
+
import "../row/index.js";
|
|
62
|
+
import "../horizontal-menu/index.js";
|
|
63
|
+
import "../time-picker/index.js";
|
|
64
|
+
import "../date-picker/index.js";
|
|
59
65
|
import "./index.js";
|
|
60
|
-
import { VftMdComment as
|
|
66
|
+
import { VftMdComment as Q } from "../md-comment/index.js";
|
|
61
67
|
import "../md-tabs/index.js";
|
|
62
68
|
import "../md-vue-playground/index.js";
|
|
63
69
|
import "../md-code-demo/index.js";
|
|
64
70
|
import "../md-code-tabs/index.js";
|
|
65
71
|
import "../message/index.js";
|
|
66
|
-
import { useNamespace as
|
|
72
|
+
import { useNamespace as U } from "../../hooks/use-namespace/index.js";
|
|
67
73
|
import "@popperjs/core";
|
|
68
74
|
import "lodash";
|
|
69
75
|
import "../../hooks/use-z-index/index.js";
|
|
70
76
|
import "@vueuse/core";
|
|
71
|
-
import { primaryColor as
|
|
72
|
-
import { useRouterHelper as
|
|
73
|
-
import { usePhotoSwipe as
|
|
74
|
-
import { useRoute as
|
|
75
|
-
import
|
|
76
|
-
import { useCopyCode as
|
|
77
|
-
import { useActiveHeaderLinks as
|
|
78
|
-
import { COMP_TYPE as
|
|
79
|
-
const
|
|
77
|
+
import { primaryColor as W } from "../../utils/ns-cover.js";
|
|
78
|
+
import { useRouterHelper as X } from "@vft/router";
|
|
79
|
+
import { usePhotoSwipe as Z, useEventListener as tt } from "@vft/use";
|
|
80
|
+
import { useRoute as ot } from "vue-router";
|
|
81
|
+
import et from "./toc.js";
|
|
82
|
+
import { useCopyCode as it } from "./use/useCopyCode.js";
|
|
83
|
+
import { useActiveHeaderLinks as rt } from "./use/useActiveHeaderLinks.js";
|
|
84
|
+
import { COMP_TYPE as mt } from "./utils.js";
|
|
85
|
+
const pt = { class: "info-container" }, st = {
|
|
80
86
|
key: 0,
|
|
81
87
|
class: "flex align-center"
|
|
82
|
-
},
|
|
88
|
+
}, nt = { class: "infos" }, at = {
|
|
83
89
|
class: "reading",
|
|
84
90
|
title: "阅读量"
|
|
85
|
-
},
|
|
91
|
+
}, ct = ["data-path"], r = (
|
|
86
92
|
/* hoist-static*/
|
|
87
|
-
|
|
88
|
-
),
|
|
93
|
+
U("md-container")
|
|
94
|
+
), lt = V({
|
|
89
95
|
name: r.b()
|
|
90
|
-
}),
|
|
91
|
-
...
|
|
92
|
-
setup(
|
|
93
|
-
const
|
|
94
|
-
D(),
|
|
95
|
-
const n =
|
|
96
|
+
}), Oo = /* @__PURE__ */ V({
|
|
97
|
+
...lt,
|
|
98
|
+
setup(ut, { expose: w }) {
|
|
99
|
+
const u = $(), { initPhotoSwipe: D } = Z(`.${r.e("content")} img`);
|
|
100
|
+
D(), rt({}), it();
|
|
101
|
+
const n = y(), m = ot();
|
|
96
102
|
B(() => {
|
|
97
103
|
H(() => {
|
|
98
|
-
n.value =
|
|
99
|
-
|
|
104
|
+
n.value = u.exposed.infos, setTimeout(() => {
|
|
105
|
+
j(m.hash);
|
|
100
106
|
});
|
|
101
107
|
const e = document.querySelectorAll(".item.expand"), p = document.querySelectorAll("div.language-vue");
|
|
102
108
|
for (let o = 0; o < e.length; o++)
|
|
103
|
-
|
|
109
|
+
tt(e[o], "click", () => {
|
|
104
110
|
p[o].offsetHeight === 0 ? (p[o].style.height = "auto", p[o].style.visibility = "visible") : (p[o].style.height = "0px", p[o].style.visibility = "hidden");
|
|
105
111
|
});
|
|
106
112
|
});
|
|
107
|
-
}),
|
|
113
|
+
}), w({
|
|
108
114
|
infos: t(n)
|
|
109
115
|
});
|
|
110
|
-
const b = location.pathname, { go:
|
|
111
|
-
function
|
|
112
|
-
|
|
116
|
+
const b = location.pathname, E = u.appContext.config.globalProperties.$router, { go: S } = X(E);
|
|
117
|
+
function z(e) {
|
|
118
|
+
S("/?tag=" + e);
|
|
113
119
|
}
|
|
114
|
-
const
|
|
120
|
+
const A = I(() => {
|
|
115
121
|
var e;
|
|
116
122
|
return (e = m.meta.category) == null ? void 0 : e.includes("api");
|
|
117
|
-
}),
|
|
123
|
+
}), N = y(W());
|
|
118
124
|
return (e, p) => {
|
|
119
|
-
var o, d,
|
|
125
|
+
var o, d, f, g, h, _;
|
|
120
126
|
return s(), l("div", {
|
|
121
|
-
class: a([t(r).b(), t(r).is("api", t(
|
|
127
|
+
class: a([t(r).b(), t(r).is("api", t(A))])
|
|
122
128
|
}, [
|
|
123
|
-
(o = n.value) != null && o.sideData ? (s(),
|
|
129
|
+
(o = n.value) != null && o.sideData ? (s(), x(t(et), {
|
|
124
130
|
key: 0,
|
|
125
131
|
items: n.value.sideData
|
|
126
|
-
}, null, 8, ["items"])) :
|
|
132
|
+
}, null, 8, ["items"])) : C("", !0),
|
|
127
133
|
i("div", {
|
|
128
134
|
class: a(t(r).e("header"))
|
|
129
135
|
}, [
|
|
130
136
|
i("h1", {
|
|
131
137
|
class: a(t(r).e("title"))
|
|
132
|
-
},
|
|
133
|
-
i("div",
|
|
134
|
-
(
|
|
135
|
-
c(t(
|
|
138
|
+
}, k((d = t(m).meta) == null ? void 0 : d.title), 3),
|
|
139
|
+
i("div", pt, [
|
|
140
|
+
(g = (f = t(m).meta) == null ? void 0 : f.category) != null && g.length ? (s(), l("div", st, [
|
|
141
|
+
c(t(T), {
|
|
136
142
|
size: 14,
|
|
137
|
-
color:
|
|
143
|
+
color: N.value,
|
|
138
144
|
icon: "ico-bx:category",
|
|
139
145
|
class: "mr-8px"
|
|
140
146
|
}, null, 8, ["color"]),
|
|
141
|
-
(s(!0), l(L, null, M((h = t(m).meta) == null ? void 0 : h.category, (
|
|
147
|
+
(s(!0), l(L, null, M((h = t(m).meta) == null ? void 0 : h.category, (v, P) => (s(), x(t(K), {
|
|
142
148
|
size: "small",
|
|
143
149
|
class: "mr-5px cursor-pointer",
|
|
144
|
-
type: t(
|
|
145
|
-
key:
|
|
146
|
-
onClick: (dt) =>
|
|
150
|
+
type: t(J)(t(mt), 1)[0],
|
|
151
|
+
key: P,
|
|
152
|
+
onClick: (dt) => z(v)
|
|
147
153
|
}, {
|
|
148
154
|
default: R(() => [
|
|
149
|
-
|
|
155
|
+
q(k(v), 1)
|
|
150
156
|
]),
|
|
151
157
|
_: 2
|
|
152
158
|
}, 1032, ["type", "onClick"]))), 128))
|
|
153
|
-
])) :
|
|
154
|
-
i("div",
|
|
155
|
-
c(t(
|
|
159
|
+
])) : C("", !0),
|
|
160
|
+
i("div", nt, [
|
|
161
|
+
c(t(G), {
|
|
156
162
|
title: "发布时间",
|
|
157
163
|
icon: "ico-uiw:date",
|
|
158
164
|
size: 12,
|
|
159
165
|
class: "mr-10px",
|
|
160
166
|
distance: 5,
|
|
161
|
-
text: t(
|
|
167
|
+
text: t(O)(new Date((_ = t(m).meta) == null ? void 0 : _.date).getTime() - t(Y)())
|
|
162
168
|
}, null, 8, ["text"]),
|
|
163
|
-
i("div",
|
|
164
|
-
c(t(
|
|
169
|
+
i("div", at, [
|
|
170
|
+
c(t(T), {
|
|
165
171
|
icon: "ico-flat-color-icons:reading",
|
|
166
172
|
size: 14,
|
|
167
173
|
class: "mr-5px"
|
|
@@ -169,7 +175,7 @@ const mt = { class: "info-container" }, pt = {
|
|
|
169
175
|
i("div", {
|
|
170
176
|
class: "waline-pageview-count lh-1",
|
|
171
177
|
"data-path": t(b)
|
|
172
|
-
}, "0", 8,
|
|
178
|
+
}, "0", 8, ct)
|
|
173
179
|
])
|
|
174
180
|
])
|
|
175
181
|
])
|
|
@@ -177,13 +183,13 @@ const mt = { class: "info-container" }, pt = {
|
|
|
177
183
|
i("div", {
|
|
178
184
|
class: a(t(r).e("content"))
|
|
179
185
|
}, [
|
|
180
|
-
|
|
186
|
+
F(e.$slots, "default")
|
|
181
187
|
], 2),
|
|
182
|
-
c(t(
|
|
188
|
+
c(t(Q))
|
|
183
189
|
], 2);
|
|
184
190
|
};
|
|
185
191
|
}
|
|
186
192
|
});
|
|
187
193
|
export {
|
|
188
|
-
|
|
194
|
+
Oo as default
|
|
189
195
|
};
|
|
@@ -1,22 +1,22 @@
|
|
|
1
|
-
import { defineComponent as
|
|
2
|
-
import { singleAttrToObj as
|
|
3
|
-
import { throwError as
|
|
1
|
+
import { defineComponent as Y, getCurrentInstance as G, useAttrs as H, inject as M, computed as u, reactive as J, onMounted as K, onBeforeUnmount as L, openBlock as o, createElementBlock as d, Fragment as y, createBlock as l, unref as t, createCommentVNode as f, createElementVNode as x, normalizeClass as v, withCtx as P, renderSlot as A, normalizeProps as E, mergeProps as S, createVNode as Q } from "vue";
|
|
2
|
+
import { singleAttrToObj as R, renderTNode as W, VNode as X } from "@vft/utils";
|
|
3
|
+
import { throwError as T } from "../../utils/error.js";
|
|
4
4
|
import "lodash";
|
|
5
5
|
import "@vueuse/core";
|
|
6
6
|
import "../../utils/ns-cover.js";
|
|
7
|
-
import { useNamespace as
|
|
7
|
+
import { useNamespace as g } from "../../hooks/use-namespace/index.js";
|
|
8
8
|
import "@popperjs/core";
|
|
9
9
|
import "../../hooks/use-z-index/index.js";
|
|
10
|
-
import
|
|
11
|
-
import { VftDivider as
|
|
12
|
-
import { VftIcon as
|
|
10
|
+
import Z from "./use-menu.js";
|
|
11
|
+
import { VftDivider as w } from "../divider/index.js";
|
|
12
|
+
import { VftIcon as z } from "../icon/index.js";
|
|
13
13
|
import "../avatar/index.js";
|
|
14
14
|
import "../empty/index.js";
|
|
15
15
|
import "../result/index.js";
|
|
16
16
|
import "../tabs/index.js";
|
|
17
17
|
import "../popper/index.js";
|
|
18
18
|
import "../collapse-transition/index.js";
|
|
19
|
-
import { VftTooltip as
|
|
19
|
+
import { VftTooltip as _ } from "../tooltip/index.js";
|
|
20
20
|
import "../popover/index.js";
|
|
21
21
|
import "./index.js";
|
|
22
22
|
import "../context-menu/context-menu.vue2.js";
|
|
@@ -27,6 +27,7 @@ import "../iframe-layout/index.js";
|
|
|
27
27
|
import "../router-view-content/index.js";
|
|
28
28
|
import "../logo/index.js";
|
|
29
29
|
import "../back-top/index.js";
|
|
30
|
+
import "../container/index.js";
|
|
30
31
|
import "../config-provider/index.js";
|
|
31
32
|
import "../descriptions/index.js";
|
|
32
33
|
import "../full-screen/index.js";
|
|
@@ -64,6 +65,11 @@ import "../image-viewer/index.js";
|
|
|
64
65
|
import "../list-cell/index.js";
|
|
65
66
|
import "../dialog/index.js";
|
|
66
67
|
import "../date-time-select/index.js";
|
|
68
|
+
import "../col/index.js";
|
|
69
|
+
import "../row/index.js";
|
|
70
|
+
import "../horizontal-menu/index.js";
|
|
71
|
+
import "../time-picker/index.js";
|
|
72
|
+
import "../date-picker/index.js";
|
|
67
73
|
import "../md-container/index.js";
|
|
68
74
|
import "../md-comment/index.js";
|
|
69
75
|
import "../md-tabs/index.js";
|
|
@@ -71,13 +77,14 @@ import "../md-vue-playground/index.js";
|
|
|
71
77
|
import "../md-code-demo/index.js";
|
|
72
78
|
import "../md-code-tabs/index.js";
|
|
73
79
|
import "../message/index.js";
|
|
74
|
-
const
|
|
80
|
+
const ee = ["title"], s = (
|
|
75
81
|
/* hoist-static*/
|
|
76
|
-
|
|
77
|
-
),
|
|
78
|
-
name:
|
|
79
|
-
|
|
80
|
-
|
|
82
|
+
g("menu-item")
|
|
83
|
+
), te = Y({
|
|
84
|
+
name: s.b(),
|
|
85
|
+
inheritAttrs: !1
|
|
86
|
+
}), It = /* @__PURE__ */ Y({
|
|
87
|
+
...te,
|
|
81
88
|
props: {
|
|
82
89
|
index: null,
|
|
83
90
|
route: null,
|
|
@@ -89,77 +96,97 @@ const W = ["title"], k = (
|
|
|
89
96
|
className: null,
|
|
90
97
|
reverse: { type: Boolean }
|
|
91
98
|
},
|
|
92
|
-
emits: ["click"],
|
|
93
|
-
setup(e, { emit:
|
|
94
|
-
const
|
|
95
|
-
!i && !e.isAloneUse &&
|
|
96
|
-
const { parentMenu:
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
),
|
|
100
|
-
!
|
|
101
|
-
const
|
|
99
|
+
emits: ["click", "mouseenter", "mouseleave"],
|
|
100
|
+
setup(e, { emit: k }) {
|
|
101
|
+
const U = G(), D = H(), F = g("menu"), b = g("menu-item"), i = e.isAloneUse ? null : M("rootMenu");
|
|
102
|
+
!i && !e.isAloneUse && T(s.b(), "can not inject root menu");
|
|
103
|
+
const { parentMenu: B, indexPath: C } = Z(
|
|
104
|
+
U,
|
|
105
|
+
u(() => e.index)
|
|
106
|
+
), r = e.isAloneUse ? null : M(`subMenu:${B.value.uid}`);
|
|
107
|
+
!r && !e.isAloneUse && T(s.b(), "can not inject sub menu");
|
|
108
|
+
const N = u(() => e.index === (i == null ? void 0 : i.activeIndex)), n = J({
|
|
102
109
|
index: e.index,
|
|
103
|
-
indexPath:
|
|
104
|
-
active:
|
|
105
|
-
}),
|
|
110
|
+
indexPath: C,
|
|
111
|
+
active: N
|
|
112
|
+
}), O = () => {
|
|
106
113
|
e.disabled || (i == null || i.handleMenuItemClick({
|
|
114
|
+
...D,
|
|
107
115
|
index: e.index,
|
|
108
|
-
indexPath:
|
|
116
|
+
indexPath: C.value,
|
|
109
117
|
route: e.route
|
|
110
|
-
}),
|
|
111
|
-
},
|
|
112
|
-
return
|
|
113
|
-
e.isAloneUse || (
|
|
114
|
-
}),
|
|
115
|
-
e.isAloneUse || (
|
|
116
|
-
}), (
|
|
117
|
-
var
|
|
118
|
-
return
|
|
119
|
-
e.reverse && e.divider ? (
|
|
118
|
+
}), k("click", n));
|
|
119
|
+
}, a = u(() => R(e.icon, "icon")), q = u(() => W(U, "title"));
|
|
120
|
+
return K(() => {
|
|
121
|
+
e.isAloneUse || (r == null || r.addSubMenu(n), i == null || i.addMenuItem(n));
|
|
122
|
+
}), L(() => {
|
|
123
|
+
e.isAloneUse || (r == null || r.removeSubMenu(n), i == null || i.removeMenuItem(n));
|
|
124
|
+
}), (m, p) => {
|
|
125
|
+
var $, I, V, h, j;
|
|
126
|
+
return o(), d(y, null, [
|
|
127
|
+
e.reverse && e.divider ? (o(), l(t(w), {
|
|
120
128
|
key: 0,
|
|
121
129
|
marginY: "0"
|
|
122
|
-
})) :
|
|
123
|
-
|
|
124
|
-
class:
|
|
130
|
+
})) : f("", !0),
|
|
131
|
+
x("li", {
|
|
132
|
+
class: v([
|
|
133
|
+
e.className,
|
|
134
|
+
t(b).b(),
|
|
135
|
+
t(b).is("active", e.isAloneUse ? !1 : t(N)),
|
|
136
|
+
t(b).is("disabled", e.disabled)
|
|
137
|
+
]),
|
|
138
|
+
onMouseenter: p[0] || (p[0] = (c) => k("mouseenter")),
|
|
139
|
+
onMouseleave: p[1] || (p[1] = (c) => k("mouseleave")),
|
|
125
140
|
role: "menuitem",
|
|
126
141
|
tabindex: "-1",
|
|
127
|
-
onClick:
|
|
142
|
+
onClick: O
|
|
128
143
|
}, [
|
|
129
|
-
((
|
|
144
|
+
((I = ($ = t(B)) == null ? void 0 : $.type) == null ? void 0 : I.name) === "vft-menu" && ((V = t(i)) != null && V.props.collapse) && m.$slots.title ? (o(), l(t(_), {
|
|
130
145
|
key: 0,
|
|
131
146
|
placement: "right",
|
|
132
147
|
"fallback-placements": ["left"],
|
|
133
148
|
persistent: ""
|
|
134
149
|
}, {
|
|
135
|
-
content:
|
|
136
|
-
|
|
137
|
-
]),
|
|
138
|
-
default: j(() => [
|
|
139
|
-
u("div", {
|
|
140
|
-
class: $(t(w).be("tooltip", "trigger"))
|
|
141
|
-
}, [
|
|
142
|
-
f(r.$slots, "default")
|
|
143
|
-
], 2)
|
|
150
|
+
content: P(() => [
|
|
151
|
+
A(m.$slots, "title")
|
|
144
152
|
]),
|
|
153
|
+
default: P(() => {
|
|
154
|
+
var c;
|
|
155
|
+
return [
|
|
156
|
+
x("div", {
|
|
157
|
+
class: v(t(F).be("tooltip", "trigger"))
|
|
158
|
+
}, [
|
|
159
|
+
(c = t(a)) != null && c.icon ? (o(), l(t(z), E(S({ key: 0 }, t(a))), null, 16)) : f("", !0),
|
|
160
|
+
A(m.$slots, "default")
|
|
161
|
+
], 2)
|
|
162
|
+
];
|
|
163
|
+
}),
|
|
145
164
|
_: 3
|
|
146
|
-
})) : (
|
|
147
|
-
(
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
165
|
+
})) : (o(), d(y, { key: 1 }, [
|
|
166
|
+
(h = m.$slots) != null && h.default ? (o(), d("span", {
|
|
167
|
+
key: 0,
|
|
168
|
+
class: v(t(s).e("text"))
|
|
169
|
+
}, [
|
|
170
|
+
A(m.$slots, "default")
|
|
171
|
+
], 2)) : (o(), d(y, { key: 1 }, [
|
|
172
|
+
(j = t(a)) != null && j.icon ? (o(), l(t(z), E(S({ key: 0 }, t(a))), null, 16)) : f("", !0),
|
|
173
|
+
x("span", {
|
|
174
|
+
class: v(t(s).e("text")),
|
|
175
|
+
title: e.title
|
|
176
|
+
}, [
|
|
177
|
+
Q(t(X), { content: t(q) }, null, 8, ["content"])
|
|
178
|
+
], 10, ee)
|
|
152
179
|
], 64))
|
|
153
180
|
], 64))
|
|
154
|
-
],
|
|
155
|
-
!e.reverse && e.divider ? (
|
|
181
|
+
], 34),
|
|
182
|
+
!e.reverse && e.divider ? (o(), l(t(w), {
|
|
156
183
|
key: 1,
|
|
157
184
|
marginY: "0"
|
|
158
|
-
})) :
|
|
185
|
+
})) : f("", !0)
|
|
159
186
|
], 64);
|
|
160
187
|
};
|
|
161
188
|
}
|
|
162
189
|
});
|
|
163
190
|
export {
|
|
164
|
-
|
|
191
|
+
It as default
|
|
165
192
|
};
|