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
package/es/index.js
CHANGED
|
@@ -1,355 +1,400 @@
|
|
|
1
1
|
import o from "./defaults.js";
|
|
2
2
|
import { VftDivider as m } from "./components/divider/index.js";
|
|
3
|
-
import { VftIcon as x, VftIcon as
|
|
3
|
+
import { VftIcon as x, VftIcon as i } from "./components/icon/index.js";
|
|
4
4
|
import { VftAvatar as n } from "./components/avatar/index.js";
|
|
5
5
|
import { VftEmpty as V } from "./components/empty/index.js";
|
|
6
6
|
import { VftResult as u } from "./components/result/index.js";
|
|
7
|
-
import { VftTabPane as
|
|
8
|
-
import { VftPopper as
|
|
9
|
-
import { VftCollapseTransition as
|
|
10
|
-
import { VftTooltip as
|
|
7
|
+
import { VftTabPane as C, VftTabs as g } from "./components/tabs/index.js";
|
|
8
|
+
import { VftPopper as I } from "./components/popper/index.js";
|
|
9
|
+
import { VftCollapseTransition as P } from "./components/collapse-transition/index.js";
|
|
10
|
+
import { VftTooltip as y } from "./components/tooltip/index.js";
|
|
11
11
|
import { VftPopover as S } from "./components/popover/index.js";
|
|
12
|
-
import { VftMenu as
|
|
13
|
-
import { createContextMenu as K, destroyContextMenu as
|
|
14
|
-
import { useContextMenu as
|
|
15
|
-
import { VftMultipleTabs as
|
|
16
|
-
import { VftHeaderLayout as
|
|
17
|
-
import { VftFooterLayout as
|
|
18
|
-
import { VftIframeLayout as
|
|
19
|
-
import { VftRouterViewContent as
|
|
20
|
-
import { VftLogo as
|
|
21
|
-
import { VftBackTop as
|
|
22
|
-
import {
|
|
23
|
-
import {
|
|
24
|
-
import {
|
|
25
|
-
import {
|
|
26
|
-
import {
|
|
27
|
-
import {
|
|
28
|
-
import {
|
|
29
|
-
import {
|
|
30
|
-
import {
|
|
31
|
-
import {
|
|
32
|
-
import {
|
|
33
|
-
import {
|
|
34
|
-
import {
|
|
35
|
-
import {
|
|
36
|
-
import {
|
|
37
|
-
import {
|
|
38
|
-
import {
|
|
39
|
-
import {
|
|
40
|
-
import {
|
|
41
|
-
import {
|
|
42
|
-
import {
|
|
43
|
-
import {
|
|
44
|
-
import {
|
|
45
|
-
import {
|
|
46
|
-
import {
|
|
47
|
-
import {
|
|
48
|
-
import { default as
|
|
49
|
-
import { default as
|
|
50
|
-
import { default as
|
|
51
|
-
import {
|
|
52
|
-
import {
|
|
53
|
-
import {
|
|
54
|
-
import {
|
|
55
|
-
import {
|
|
56
|
-
import {
|
|
57
|
-
import {
|
|
58
|
-
import {
|
|
59
|
-
import {
|
|
60
|
-
import {
|
|
61
|
-
import {
|
|
62
|
-
import {
|
|
63
|
-
import {
|
|
64
|
-
import {
|
|
65
|
-
import {
|
|
66
|
-
import {
|
|
67
|
-
import {
|
|
68
|
-
import {
|
|
69
|
-
import {
|
|
70
|
-
import {
|
|
71
|
-
import {
|
|
72
|
-
import {
|
|
73
|
-
import {
|
|
74
|
-
import {
|
|
75
|
-
import {
|
|
76
|
-
import {
|
|
77
|
-
import {
|
|
78
|
-
import {
|
|
79
|
-
import {
|
|
80
|
-
import {
|
|
81
|
-
import {
|
|
82
|
-
import {
|
|
83
|
-
import {
|
|
84
|
-
import {
|
|
85
|
-
import {
|
|
86
|
-
import {
|
|
87
|
-
import {
|
|
88
|
-
import {
|
|
89
|
-
import {
|
|
90
|
-
import {
|
|
91
|
-
import {
|
|
92
|
-
import {
|
|
93
|
-
import {
|
|
94
|
-
import {
|
|
95
|
-
import {
|
|
96
|
-
import {
|
|
97
|
-
import {
|
|
98
|
-
import {
|
|
99
|
-
import {
|
|
100
|
-
import {
|
|
101
|
-
import {
|
|
102
|
-
import {
|
|
103
|
-
import {
|
|
104
|
-
import {
|
|
105
|
-
import {
|
|
106
|
-
import {
|
|
107
|
-
import {
|
|
108
|
-
import {
|
|
109
|
-
import {
|
|
110
|
-
import {
|
|
111
|
-
import {
|
|
112
|
-
import {
|
|
113
|
-
import {
|
|
114
|
-
import {
|
|
115
|
-
import {
|
|
116
|
-
import {
|
|
117
|
-
import {
|
|
118
|
-
import {
|
|
119
|
-
import {
|
|
120
|
-
import {
|
|
121
|
-
import {
|
|
122
|
-
import {
|
|
123
|
-
import {
|
|
124
|
-
import {
|
|
125
|
-
import {
|
|
126
|
-
import {
|
|
127
|
-
import {
|
|
128
|
-
import {
|
|
129
|
-
import {
|
|
130
|
-
import {
|
|
131
|
-
import {
|
|
132
|
-
import {
|
|
133
|
-
import {
|
|
12
|
+
import { VftMenu as F, VftMenuItem as _, VftMenuItemGroup as N, VftSubMenu as v } from "./components/menu/index.js";
|
|
13
|
+
import { createContextMenu as K, destroyContextMenu as O } from "./components/context-menu/createContextMenu.js";
|
|
14
|
+
import { useContextMenu as R } from "./components/context-menu/useContextMenu.js";
|
|
15
|
+
import { VftMultipleTabs as h } from "./components/multiple-tabs/index.js";
|
|
16
|
+
import { VftHeaderLayout as z } from "./components/header-layout/index.js";
|
|
17
|
+
import { VftFooterLayout as Y } from "./components/footer-layout/index.js";
|
|
18
|
+
import { VftIframeLayout as J } from "./components/iframe-layout/index.js";
|
|
19
|
+
import { VftRouterViewContent as W } from "./components/router-view-content/index.js";
|
|
20
|
+
import { VftLogo as j } from "./components/logo/index.js";
|
|
21
|
+
import { VftBackTop as q } from "./components/back-top/index.js";
|
|
22
|
+
import { VftAside as X, VftContainer as $, VftFooter as oo, VftHeader as eo, VftMain as ro } from "./components/container/index.js";
|
|
23
|
+
import { VftConfigProvider as fo } from "./components/config-provider/index.js";
|
|
24
|
+
import { VftDescriptions as mo, VftDescriptionsItem as ao } from "./components/descriptions/index.js";
|
|
25
|
+
import { VftFullScreen as io } from "./components/full-screen/index.js";
|
|
26
|
+
import { VftIconText as no } from "./components/icon-text/index.js";
|
|
27
|
+
import { VftImage as Vo } from "./components/image/index.js";
|
|
28
|
+
import { VftInput as co } from "./components/input/index.js";
|
|
29
|
+
import { VftLink as go } from "./components/link/index.js";
|
|
30
|
+
import { VftPagination as Io } from "./components/pagination/index.js";
|
|
31
|
+
import { VftTag as Po } from "./components/tag/index.js";
|
|
32
|
+
import { VftSideMenu as yo } from "./components/side-menu/index.js";
|
|
33
|
+
import { VftQrcode as So } from "./components/qrcode/index.js";
|
|
34
|
+
import { VftOverlay as Fo } from "./components/overlay/index.js";
|
|
35
|
+
import { VftClamp as No } from "./components/clamp/index.js";
|
|
36
|
+
import { VftClampToggle as Lo } from "./components/clamp-toggle/index.js";
|
|
37
|
+
import { VftPageWrapper as Oo } from "./components/page-wrapper/index.js";
|
|
38
|
+
import { VftException as Ro } from "./components/exception/index.js";
|
|
39
|
+
import { VftSearch as ho } from "./components/search/index.js";
|
|
40
|
+
import { VftForm as zo, VftFormItem as Go } from "./components/form/index.js";
|
|
41
|
+
import { VftButton as Bo, VftButtonGroup as Jo } from "./components/button/index.js";
|
|
42
|
+
import { VftCheckbox as Wo, VftCheckboxButton as Ho, VftCheckboxGroup as jo } from "./components/checkbox/index.js";
|
|
43
|
+
import { VftRadio as qo, VftRadioButton as Qo, VftRadioGroup as Xo } from "./components/radio/index.js";
|
|
44
|
+
import { VftSwitch as oe } from "./components/switch/index.js";
|
|
45
|
+
import { VftColorPicker as re } from "./components/color-picker/index.js";
|
|
46
|
+
import { VftScrollbar as fe } from "./components/scrollbar/index.js";
|
|
47
|
+
import { VftDropdown as me, VftDropdownItem as ae, VftDropdownMenu as xe } from "./components/dropdown/index.js";
|
|
48
|
+
import { default as se } from "./components/virtual-list/components/fixed-size-list.js";
|
|
49
|
+
import { default as le } from "./components/virtual-list/components/dynamic-size-list.js";
|
|
50
|
+
import { default as de } from "./components/virtual-list/components/fixed-size-grid.js";
|
|
51
|
+
import { default as ce } from "./components/virtual-list/components/dynamic-size-grid.js";
|
|
52
|
+
import { virtualizedGridProps as ge, virtualizedListProps as Te, virtualizedProps as Ie, virtualizedScrollbarProps as Ee } from "./components/virtual-list/props.js";
|
|
53
|
+
import { VftSelectV2 as De } from "./components/select-v2/index.js";
|
|
54
|
+
import { VftVerifyCode as be } from "./components/verify-code/index.js";
|
|
55
|
+
import { VftTable as Me } from "./components/table/index.js";
|
|
56
|
+
import { VftImageViewer as _e } from "./components/image-viewer/index.js";
|
|
57
|
+
import { VftListCell as ve } from "./components/list-cell/index.js";
|
|
58
|
+
import { VftDialog as Ke } from "./components/dialog/index.js";
|
|
59
|
+
import { VftDateTimeSelect as Ae } from "./components/date-time-select/index.js";
|
|
60
|
+
import { VftCol as we } from "./components/col/index.js";
|
|
61
|
+
import { VftRow as ke } from "./components/row/index.js";
|
|
62
|
+
import { VftHorizontalMenu as Ge } from "./components/horizontal-menu/index.js";
|
|
63
|
+
import { VftTimePicker as Be } from "./components/time-picker/index.js";
|
|
64
|
+
import { VftDatePicker as Ue } from "./components/date-picker/index.js";
|
|
65
|
+
import { VftMdContainer as He } from "./components/md-container/index.js";
|
|
66
|
+
import { VftMdComment as Ze } from "./components/md-comment/index.js";
|
|
67
|
+
import { VftMdTabs as Qe } from "./components/md-tabs/index.js";
|
|
68
|
+
import { VftMdVuePlayground as $e } from "./components/md-vue-playground/index.js";
|
|
69
|
+
import { VftMdCodeDemo as er } from "./components/md-code-demo/index.js";
|
|
70
|
+
import { VftMdCodeTabs as tr } from "./components/md-code-tabs/index.js";
|
|
71
|
+
import { VftMessage as pr, VftMessage as mr } from "./components/message/index.js";
|
|
72
|
+
import { VftLoading as xr } from "./components/loading/index.js";
|
|
73
|
+
import { EVENT_CODE as sr } from "./constants/aria.js";
|
|
74
|
+
import { WEEK_DAYS as lr, datePickTypes as Vr } from "./constants/date.js";
|
|
75
|
+
import { CHANGE_EVENT as ur, INPUT_EVENT as cr, UPDATE_MODEL_EVENT as Cr } from "./constants/event.js";
|
|
76
|
+
import { INSTALLED_KEY as Tr } from "./constants/key.js";
|
|
77
|
+
import { componentSizeMap as Er, componentSizes as Pr } from "./constants/size.js";
|
|
78
|
+
import { _bem as yr, defaultNamespace as br, namespaceContextKey as Sr, useGetDerivedNamespace as Mr, useNamespace as Fr } from "./hooks/use-namespace/index.js";
|
|
79
|
+
import { useCursor as Nr } from "./hooks/use-cursor/index.js";
|
|
80
|
+
import { usePopper as Lr } from "./hooks/use-popper/index.js";
|
|
81
|
+
import { defaultInitialZIndex as Or, useZIndex as Ar, zIndexContextKey as Rr } from "./hooks/use-z-index/index.js";
|
|
82
|
+
import { FORWARD_REF_INJECTION_KEY as hr, useForwardRef as kr, useForwardRefDirective as zr } from "./hooks/use-forward-ref/index.js";
|
|
83
|
+
import { ID_INJECTION_KEY as Yr, useId as Br, useIdInjection as Jr } from "./hooks/use-id/index.js";
|
|
84
|
+
import { usePopperContainer as Wr, usePopperContainerId as Hr } from "./hooks/use-popper-container/index.js";
|
|
85
|
+
import { useDelayedToggle as Zr } from "./hooks/use-delayed-toggle/index.js";
|
|
86
|
+
import { useTimeout as Qr } from "./hooks/use-timeout/index.js";
|
|
87
|
+
import { useOrderedChildren as $r } from "./hooks/use-ordered-children/index.js";
|
|
88
|
+
import { createModelToggleComposable as et, useModelToggle as rt, useModelToggleEmits as tt } from "./hooks/use-model-toggle/index.js";
|
|
89
|
+
import { useProp as pt } from "./hooks/use-prop/index.js";
|
|
90
|
+
import { SIZE_INJECTION_KEY as at, useGlobalSize as xt } from "./hooks/use-size/index.js";
|
|
91
|
+
import { useDraggable as st } from "./hooks/use-draggable/index.js";
|
|
92
|
+
import { useLockscreen as lt } from "./hooks/use-lockscreen/index.js";
|
|
93
|
+
import { useSameTarget as dt } from "./hooks/use-same-target/index.js";
|
|
94
|
+
import { withInstall as ct, withInstallDirective as Ct, withInstallFunction as gt, withNoopInstall as Tt } from "./utils/vue/install.js";
|
|
95
|
+
import { PatchFlags as Et, ensureOnlyChild as Pt, flattedChildren as Dt, getFirstValidNode as yt, getNormalizedProps as bt, isComment as St, isFragment as Mt, isTemplate as Ft, isText as _t, isValidElementNode as Nt, renderBlock as vt, renderIf as Lt } from "./utils/vue/vnode.js";
|
|
96
|
+
import { composeRefs as Ot } from "./utils/vue/refs.js";
|
|
97
|
+
import { buildProp as Rt, buildProps as wt, definePropType as ht, epPropKey as kt, isEpProp as zt } from "./utils/vue/props/runtime.js";
|
|
98
|
+
import { cAF as Yt, rAF as Bt } from "./utils/vue/raf.js";
|
|
99
|
+
import { escapeStringRegexp as Ut } from "./utils/vue/data-helper.js";
|
|
100
|
+
import { getSizeType as Ht } from "./utils/helper.js";
|
|
101
|
+
import { debugWarn as Zt, throwError as qt } from "./utils/error.js";
|
|
102
|
+
import { composeEventHandlers as Xt, whenMouse as $t } from "./utils/event.js";
|
|
103
|
+
import { mutable as ef } from "./utils/typescript.js";
|
|
104
|
+
import { cssVarValue as tf, generateCssVars as ff, primaryColor as pf, setCssVar as mf, setPrimaryColorCssvars as af } from "./utils/ns-cover.js";
|
|
105
|
+
import { getProp as sf } from "./utils/objects.js";
|
|
106
|
+
import { getClientXY as lf, getOffsetTop as Vf, getOffsetTopDistance as df, isInContainer as uf } from "./utils/dom/position.js";
|
|
107
|
+
import { getScrollBarWidth as Cf, getScrollContainer as gf, isScroll as Tf, scrollIntoView as If } from "./utils/dom/scroll.js";
|
|
108
|
+
import { makeInstaller as Pf } from "./make-installer.js";
|
|
109
|
+
import { CompResolver as yf } from "./comp-resolver.js";
|
|
110
|
+
import { default as Sf } from "dayjs";
|
|
111
|
+
import { EmptyEnum as Ff } from "./components/empty/constants.js";
|
|
112
|
+
import { TabsRootContextKey as Nf } from "./components/tabs/types.js";
|
|
113
|
+
import { default as Lf } from "./components/popper/arrow.vue2.js";
|
|
114
|
+
import { default as Of } from "./components/popper/trigger.vue2.js";
|
|
115
|
+
import { default as Rf } from "./components/popper/content.vue2.js";
|
|
116
|
+
import { TOOLTIP_INJECTION_KEY as hf } from "./components/tooltip/constants.js";
|
|
117
|
+
import { useTabDropdown as zf } from "./components/multiple-tabs/use/use-tab-dropdown.js";
|
|
118
|
+
import { initAffixTabs as Yf, useTabsDrag as Bf } from "./components/multiple-tabs/use/use-multiple-tabs.js";
|
|
119
|
+
import { configProviderContextKey as Uf, messageConfig as Wf } from "./components/config-provider/constants.js";
|
|
120
|
+
import { provideGlobalConfig as jf, useGlobalComponentSettings as Zf, useGlobalConfig as qf } from "./components/config-provider/hooks/use-global-config.js";
|
|
121
|
+
import { usePagination as Xf, vftPaginationKey as $f } from "./components/pagination/usePagination.js";
|
|
122
|
+
import { formItemValidateStates as ep } from "./components/form/types.js";
|
|
123
|
+
import { formContextKey as tp, formItemContextKey as fp } from "./components/form/constants.js";
|
|
124
|
+
import { useDisabled as mp, useFormDisabled as ap, useFormSize as xp, useSize as ip } from "./components/form/hooks/use-form-common-props.js";
|
|
125
|
+
import { useFormItem as np, useFormItemInputId as lp } from "./components/form/hooks/use-form-item.js";
|
|
126
|
+
import { buttonGroupContextKey as dp } from "./components/button/constants.js";
|
|
127
|
+
import { checkboxGroupContextKey as cp } from "./components/checkbox/constants.js";
|
|
128
|
+
import { radioGroupKey as gp } from "./components/radio/constants.js";
|
|
129
|
+
import { BAR_MAP as Ip, GAP as Ep, renderThumbStyle as Pp } from "./components/scrollbar/util.js";
|
|
130
|
+
import { scrollbarContextKey as yp } from "./components/scrollbar/constants.js";
|
|
131
|
+
import { DROPDOWN_INJECTION_KEY as Sp } from "./components/dropdown/tokens.js";
|
|
132
|
+
import { VftCollection as Fp, VftCollectionItem as _p } from "./components/dropdown/types.js";
|
|
133
|
+
import { OnlyChild as vp } from "./components/slot/only-child.js";
|
|
134
|
+
import { default as Kp } from "./components/dropdown/dropdown-item-impl.vue.js";
|
|
135
|
+
import { selectV2InjectionKey as Ap } from "./components/select-v2/token.js";
|
|
136
|
+
import { useDialog as wp } from "./components/dialog/hooks/use-dialog.js";
|
|
137
|
+
import { dialogInjectionKey as kp } from "./components/dialog/constants.js";
|
|
138
|
+
import { rowContextKey as Gp } from "./components/row/constants.js";
|
|
139
|
+
import { buildTimeList as Bp, dateEquals as Jp, extractDateFormat as Up, extractTimeFormat as Wp, formatter as Hp, makeList as jp, parseDate as Zp, rangeArr as qp, valueEquals as Qp } from "./components/time-picker/utils.js";
|
|
140
|
+
import { DEFAULT_FORMATS_DATE as $p, DEFAULT_FORMATS_DATEPICKER as om, DEFAULT_FORMATS_TIME as em, timeUnits as rm } from "./components/time-picker/constants.js";
|
|
141
|
+
import { timePickerDefaultProps as fm } from "./components/time-picker/common/props.js";
|
|
142
|
+
import { default as mm } from "./components/time-picker/common/picker.vue2.js";
|
|
143
|
+
import { default as xm } from "./components/time-picker/time-picker-com/panel-time-pick.vue2.js";
|
|
144
|
+
import { ROOT_PICKER_INJECTION_KEY as sm } from "./components/date-picker/constants.js";
|
|
145
|
+
import { datePickerProps as lm } from "./components/date-picker/props/date-picker.js";
|
|
146
|
+
import { messageDefaults as dm, messageTypes as um } from "./components/message/types.js";
|
|
147
|
+
import { vLoading as Cm, createLoadingDirective as gm, vLoading as Tm } from "./components/loading/directive.js";
|
|
148
|
+
import { Loading as Em } from "./components/loading/service.js";
|
|
134
149
|
const r = o.install, t = o.version;
|
|
135
150
|
export {
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
+
Ip as BAR_MAP,
|
|
152
|
+
ur as CHANGE_EVENT,
|
|
153
|
+
mm as CommonPicker,
|
|
154
|
+
yf as CompResolver,
|
|
155
|
+
$p as DEFAULT_FORMATS_DATE,
|
|
156
|
+
om as DEFAULT_FORMATS_DATEPICKER,
|
|
157
|
+
em as DEFAULT_FORMATS_TIME,
|
|
158
|
+
Sp as DROPDOWN_INJECTION_KEY,
|
|
159
|
+
ce as DynamicSizeGrid,
|
|
160
|
+
le as DynamicSizeList,
|
|
161
|
+
sr as EVENT_CODE,
|
|
162
|
+
Ff as EmptyEnum,
|
|
163
|
+
hr as FORWARD_REF_INJECTION_KEY,
|
|
164
|
+
de as FixedSizeGrid,
|
|
165
|
+
se as FixedSizeList,
|
|
166
|
+
Ep as GAP,
|
|
167
|
+
Yr as ID_INJECTION_KEY,
|
|
168
|
+
cr as INPUT_EVENT,
|
|
169
|
+
Tr as INSTALLED_KEY,
|
|
151
170
|
x as Icon,
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
171
|
+
pr as Message,
|
|
172
|
+
Et as PatchFlags,
|
|
173
|
+
sm as ROOT_PICKER_INJECTION_KEY,
|
|
174
|
+
at as SIZE_INJECTION_KEY,
|
|
175
|
+
hf as TOOLTIP_INJECTION_KEY,
|
|
176
|
+
Nf as TabsRootContextKey,
|
|
177
|
+
xm as TimePickPanel,
|
|
178
|
+
Cr as UPDATE_MODEL_EVENT,
|
|
179
|
+
X as VftAside,
|
|
157
180
|
n as VftAvatar,
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
181
|
+
q as VftBackTop,
|
|
182
|
+
Bo as VftButton,
|
|
183
|
+
Jo as VftButtonGroup,
|
|
184
|
+
Wo as VftCheckbox,
|
|
185
|
+
Ho as VftCheckboxButton,
|
|
186
|
+
jo as VftCheckboxGroup,
|
|
187
|
+
No as VftClamp,
|
|
188
|
+
Lo as VftClampToggle,
|
|
189
|
+
we as VftCol,
|
|
190
|
+
P as VftCollapseTransition,
|
|
191
|
+
re as VftColorPicker,
|
|
192
|
+
fo as VftConfigProvider,
|
|
193
|
+
$ as VftContainer,
|
|
194
|
+
Ue as VftDatePicker,
|
|
195
|
+
Ae as VftDateTimeSelect,
|
|
196
|
+
mo as VftDescriptions,
|
|
197
|
+
ao as VftDescriptionsItem,
|
|
198
|
+
Ke as VftDialog,
|
|
173
199
|
m as VftDivider,
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
200
|
+
me as VftDropdown,
|
|
201
|
+
Fp as VftDropdownCollection,
|
|
202
|
+
_p as VftDropdownCollectionItem,
|
|
203
|
+
ae as VftDropdownItem,
|
|
204
|
+
Kp as VftDropdownItemImpl,
|
|
205
|
+
xe as VftDropdownMenu,
|
|
180
206
|
V as VftEmpty,
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
207
|
+
Ro as VftException,
|
|
208
|
+
oo as VftFooter,
|
|
209
|
+
Y as VftFooterLayout,
|
|
210
|
+
zo as VftForm,
|
|
211
|
+
Go as VftFormItem,
|
|
212
|
+
io as VftFullScreen,
|
|
213
|
+
eo as VftHeader,
|
|
214
|
+
z as VftHeaderLayout,
|
|
215
|
+
Ge as VftHorizontalMenu,
|
|
216
|
+
i as VftIcon,
|
|
217
|
+
no as VftIconText,
|
|
218
|
+
J as VftIframeLayout,
|
|
219
|
+
Vo as VftImage,
|
|
220
|
+
_e as VftImageViewer,
|
|
221
|
+
co as VftInput,
|
|
222
|
+
go as VftLink,
|
|
223
|
+
ve as VftListCell,
|
|
224
|
+
xr as VftLoading,
|
|
225
|
+
Cm as VftLoadingDirective,
|
|
226
|
+
Em as VftLoadingService,
|
|
227
|
+
j as VftLogo,
|
|
228
|
+
ro as VftMain,
|
|
229
|
+
er as VftMdCodeDemo,
|
|
230
|
+
tr as VftMdCodeTabs,
|
|
231
|
+
Ze as VftMdComment,
|
|
232
|
+
He as VftMdContainer,
|
|
233
|
+
Qe as VftMdTabs,
|
|
234
|
+
$e as VftMdVuePlayground,
|
|
235
|
+
F as VftMenu,
|
|
236
|
+
_ as VftMenuItem,
|
|
237
|
+
N as VftMenuItemGroup,
|
|
238
|
+
mr as VftMessage,
|
|
239
|
+
h as VftMultipleTabs,
|
|
240
|
+
vp as VftOnlyChild,
|
|
241
|
+
Fo as VftOverlay,
|
|
242
|
+
Oo as VftPageWrapper,
|
|
243
|
+
Io as VftPagination,
|
|
214
244
|
S as VftPopover,
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
245
|
+
I as VftPopper,
|
|
246
|
+
Lf as VftPopperArrow,
|
|
247
|
+
Rf as VftPopperContent,
|
|
248
|
+
Of as VftPopperTrigger,
|
|
249
|
+
So as VftQrcode,
|
|
250
|
+
qo as VftRadio,
|
|
251
|
+
Qo as VftRadioButton,
|
|
252
|
+
Xo as VftRadioGroup,
|
|
223
253
|
u as VftResult,
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
254
|
+
W as VftRouterViewContent,
|
|
255
|
+
ke as VftRow,
|
|
256
|
+
fe as VftScrollbar,
|
|
257
|
+
ho as VftSearch,
|
|
258
|
+
De as VftSelectV2,
|
|
259
|
+
yo as VftSideMenu,
|
|
260
|
+
v as VftSubMenu,
|
|
261
|
+
oe as VftSwitch,
|
|
262
|
+
C as VftTabPane,
|
|
263
|
+
Me as VftTable,
|
|
264
|
+
g as VftTabs,
|
|
265
|
+
Po as VftTag,
|
|
266
|
+
Be as VftTimePicker,
|
|
267
|
+
y as VftTooltip,
|
|
268
|
+
be as VftVerifyCode,
|
|
269
|
+
lr as WEEK_DAYS,
|
|
270
|
+
yr as _bem,
|
|
271
|
+
Rt as buildProp,
|
|
272
|
+
wt as buildProps,
|
|
273
|
+
Bp as buildTimeList,
|
|
274
|
+
dp as buttonGroupContextKey,
|
|
275
|
+
Yt as cAF,
|
|
276
|
+
cp as checkboxGroupContextKey,
|
|
277
|
+
Er as componentSizeMap,
|
|
278
|
+
Pr as componentSizes,
|
|
279
|
+
Xt as composeEventHandlers,
|
|
280
|
+
Ot as composeRefs,
|
|
281
|
+
Uf as configProviderContextKey,
|
|
249
282
|
K as createContextMenu,
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
283
|
+
gm as createLoadingDirective,
|
|
284
|
+
et as createModelToggleComposable,
|
|
285
|
+
tf as cssVarValue,
|
|
286
|
+
Jp as dateEquals,
|
|
287
|
+
Vr as datePickTypes,
|
|
288
|
+
lm as datePickerProps,
|
|
289
|
+
Sf as dayjs,
|
|
290
|
+
Zt as debugWarn,
|
|
256
291
|
o as default,
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
292
|
+
Or as defaultInitialZIndex,
|
|
293
|
+
br as defaultNamespace,
|
|
294
|
+
ht as definePropType,
|
|
295
|
+
O as destroyContextMenu,
|
|
296
|
+
kp as dialogInjectionKey,
|
|
297
|
+
Pt as ensureOnlyChild,
|
|
298
|
+
kt as epPropKey,
|
|
299
|
+
Ut as escapeStringRegexp,
|
|
300
|
+
Up as extractDateFormat,
|
|
301
|
+
Wp as extractTimeFormat,
|
|
302
|
+
Dt as flattedChildren,
|
|
303
|
+
tp as formContextKey,
|
|
304
|
+
fp as formItemContextKey,
|
|
305
|
+
ep as formItemValidateStates,
|
|
306
|
+
Hp as formatter,
|
|
307
|
+
ff as generateCssVars,
|
|
308
|
+
lf as getClientXY,
|
|
309
|
+
yt as getFirstValidNode,
|
|
310
|
+
bt as getNormalizedProps,
|
|
311
|
+
Vf as getOffsetTop,
|
|
312
|
+
df as getOffsetTopDistance,
|
|
313
|
+
sf as getProp,
|
|
314
|
+
Cf as getScrollBarWidth,
|
|
315
|
+
gf as getScrollContainer,
|
|
316
|
+
Ht as getSizeType,
|
|
317
|
+
Yf as initAffixTabs,
|
|
280
318
|
r as install,
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
319
|
+
St as isComment,
|
|
320
|
+
zt as isEpProp,
|
|
321
|
+
Mt as isFragment,
|
|
322
|
+
uf as isInContainer,
|
|
323
|
+
Tf as isScroll,
|
|
324
|
+
Ft as isTemplate,
|
|
325
|
+
_t as isText,
|
|
326
|
+
Nt as isValidElementNode,
|
|
327
|
+
Pf as makeInstaller,
|
|
328
|
+
jp as makeList,
|
|
329
|
+
Wf as messageConfig,
|
|
330
|
+
dm as messageDefaults,
|
|
331
|
+
um as messageTypes,
|
|
332
|
+
ef as mutable,
|
|
333
|
+
Sr as namespaceContextKey,
|
|
334
|
+
Zp as parseDate,
|
|
335
|
+
pf as primaryColor,
|
|
336
|
+
jf as provideGlobalConfig,
|
|
337
|
+
Bt as rAF,
|
|
338
|
+
gp as radioGroupKey,
|
|
339
|
+
qp as rangeArr,
|
|
340
|
+
vt as renderBlock,
|
|
341
|
+
Lt as renderIf,
|
|
342
|
+
Pp as renderThumbStyle,
|
|
343
|
+
Gp as rowContextKey,
|
|
344
|
+
If as scrollIntoView,
|
|
345
|
+
yp as scrollbarContextKey,
|
|
346
|
+
Ap as selectV2InjectionKey,
|
|
347
|
+
mf as setCssVar,
|
|
348
|
+
af as setPrimaryColorCssvars,
|
|
349
|
+
qt as throwError,
|
|
350
|
+
fm as timePickerDefaultProps,
|
|
351
|
+
rm as timeUnits,
|
|
352
|
+
R as useContextMenu,
|
|
353
|
+
Nr as useCursor,
|
|
354
|
+
Zr as useDelayedToggle,
|
|
355
|
+
wp as useDialog,
|
|
356
|
+
mp as useDisabled,
|
|
357
|
+
st as useDraggable,
|
|
358
|
+
ap as useFormDisabled,
|
|
359
|
+
np as useFormItem,
|
|
360
|
+
lp as useFormItemInputId,
|
|
361
|
+
xp as useFormSize,
|
|
362
|
+
kr as useForwardRef,
|
|
363
|
+
zr as useForwardRefDirective,
|
|
364
|
+
Mr as useGetDerivedNamespace,
|
|
365
|
+
Zf as useGlobalComponentSettings,
|
|
366
|
+
qf as useGlobalConfig,
|
|
367
|
+
xt as useGlobalSize,
|
|
368
|
+
Br as useId,
|
|
369
|
+
Jr as useIdInjection,
|
|
370
|
+
lt as useLockscreen,
|
|
371
|
+
rt as useModelToggle,
|
|
372
|
+
tt as useModelToggleEmits,
|
|
373
|
+
Fr as useNamespace,
|
|
374
|
+
$r as useOrderedChildren,
|
|
375
|
+
Xf as usePagination,
|
|
376
|
+
Lr as usePopper,
|
|
377
|
+
Wr as usePopperContainer,
|
|
378
|
+
Hr as usePopperContainerId,
|
|
379
|
+
pt as useProp,
|
|
380
|
+
dt as useSameTarget,
|
|
381
|
+
ip as useSize,
|
|
382
|
+
zf as useTabDropdown,
|
|
383
|
+
Bf as useTabsDrag,
|
|
384
|
+
Qr as useTimeout,
|
|
385
|
+
Ar as useZIndex,
|
|
386
|
+
Tm as vLoading,
|
|
387
|
+
Qp as valueEquals,
|
|
343
388
|
t as version,
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
389
|
+
$f as vftPaginationKey,
|
|
390
|
+
ge as virtualizedGridProps,
|
|
391
|
+
Te as virtualizedListProps,
|
|
392
|
+
Ie as virtualizedProps,
|
|
393
|
+
Ee as virtualizedScrollbarProps,
|
|
394
|
+
$t as whenMouse,
|
|
395
|
+
ct as withInstall,
|
|
396
|
+
Ct as withInstallDirective,
|
|
397
|
+
gt as withInstallFunction,
|
|
398
|
+
Tt as withNoopInstall,
|
|
399
|
+
Rr as zIndexContextKey
|
|
355
400
|
};
|