vxe-pc-ui 0.0.1 → 0.0.2
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/LICENSE +21 -0
- package/README.md +48 -5
- package/es/anchor/index.js +8 -0
- package/es/anchor/src/anchor.js +202 -0
- package/es/anchor/style.css +40 -0
- package/es/anchor/style.min.css +1 -0
- package/es/anchor-link/index.js +8 -0
- package/es/anchor-link/src/anchor-link.js +94 -0
- package/es/anchor-link/src/util.js +19 -0
- package/es/anchor-link/style.css +0 -0
- package/es/anchor-link/style.min.css +0 -0
- package/es/breadcrumb/index.js +8 -0
- package/es/breadcrumb/src/breadcrumb.js +44 -0
- package/es/breadcrumb/style.css +19 -0
- package/es/breadcrumb/style.min.css +1 -0
- package/es/breadcrumb-item/index.js +8 -0
- package/es/breadcrumb-item/src/breadcrumb-item.js +54 -0
- package/es/breadcrumb-item/style.css +0 -0
- package/es/breadcrumb-item/style.min.css +0 -0
- package/es/button/index.js +8 -0
- package/es/button/src/button.js +487 -0
- package/es/button/style.css +513 -0
- package/es/button/style.min.css +1 -0
- package/es/button-group/index.js +8 -0
- package/es/button-group/src/button-group.js +66 -0
- package/es/button-group/style.css +0 -0
- package/es/button-group/style.min.css +0 -0
- package/es/col/index.js +8 -0
- package/es/col/src/col.js +80 -0
- package/es/col/style.css +95 -0
- package/es/col/style.min.css +1 -0
- package/es/components.js +57 -0
- package/es/design/index.js +8 -0
- package/es/design/src/design.js +41 -0
- package/es/design/style.css +0 -0
- package/es/design/style.min.css +0 -0
- package/es/hooks/size.js +10 -0
- package/es/icon/index.js +8 -0
- package/es/icon/src/icon.js +24 -0
- package/es/icon/style.css +766 -0
- package/es/icon/style.min.css +1 -0
- package/es/index.esm.js +3 -0
- package/es/layout-aside/index.js +8 -0
- package/es/layout-aside/src/layout-aside.js +68 -0
- package/es/layout-aside/style.css +12 -0
- package/es/layout-aside/style.min.css +1 -0
- package/es/layout-body/index.js +8 -0
- package/es/layout-body/src/layout-body.js +37 -0
- package/es/layout-body/style.css +3 -0
- package/es/layout-body/style.min.css +1 -0
- package/es/layout-container/index.js +8 -0
- package/es/layout-container/src/layout-container.js +41 -0
- package/es/layout-container/style.css +10 -0
- package/es/layout-container/style.min.css +1 -0
- package/es/layout-footer/index.js +8 -0
- package/es/layout-footer/src/layout-footer.js +41 -0
- package/es/layout-footer/style.css +10 -0
- package/es/layout-footer/style.min.css +1 -0
- package/es/layout-header/index.js +8 -0
- package/es/layout-header/src/layout-header.js +41 -0
- package/es/layout-header/style.css +10 -0
- package/es/layout-header/style.min.css +1 -0
- package/es/locale/lang/en-US.d.ts +2 -0
- package/es/locale/lang/en-US.js +463 -0
- package/es/locale/lang/es-ES.d.ts +2 -0
- package/es/locale/lang/es-ES.js +463 -0
- package/es/locale/lang/ja-JP.d.ts +2 -0
- package/es/locale/lang/ja-JP.js +463 -0
- package/es/locale/lang/pt-BR.d.ts +2 -0
- package/es/locale/lang/pt-BR.js +463 -0
- package/es/locale/lang/zh-CN.d.ts +2 -0
- package/es/locale/lang/zh-CN.js +463 -0
- package/es/locale/lang/zh-HK.d.ts +2 -0
- package/es/locale/lang/zh-HK.js +2 -0
- package/es/locale/lang/zh-MO.d.ts +2 -0
- package/es/locale/lang/zh-MO.js +2 -0
- package/es/locale/lang/zh-TC.d.ts +2 -0
- package/es/locale/lang/zh-TC.js +463 -0
- package/es/locale/lang/zh-TW.d.ts +2 -0
- package/es/locale/lang/zh-TW.js +2 -0
- package/es/row/index.js +8 -0
- package/es/row/src/row.js +69 -0
- package/es/row/style.css +10 -0
- package/es/row/style.min.css +1 -0
- package/es/style.css +1 -0
- package/es/style.min.css +1 -0
- package/es/ui/index.js +4 -0
- package/es/ui/src/core.js +41 -0
- package/es/ui/src/dom.js +90 -0
- package/es/ui/src/event.js +75 -0
- package/es/ui/src/globalStore.js +8 -0
- package/es/ui/src/iconStore.js +76 -0
- package/es/ui/src/log.js +13 -0
- package/es/ui/src/theme.js +10 -0
- package/es/ui/src/utils.js +17 -0
- package/es/ui/style.css +0 -0
- package/es/ui/style.min.css +0 -0
- package/es/vxe-anchor/index.js +3 -0
- package/es/vxe-anchor/style.css +40 -0
- package/es/vxe-anchor/style.min.css +1 -0
- package/es/vxe-anchor-link/index.js +3 -0
- package/es/vxe-anchor-link/style.css +0 -0
- package/es/vxe-anchor-link/style.min.css +0 -0
- package/es/vxe-breadcrumb/index.js +3 -0
- package/es/vxe-breadcrumb/style.css +19 -0
- package/es/vxe-breadcrumb/style.min.css +1 -0
- package/es/vxe-breadcrumb-item/index.js +3 -0
- package/es/vxe-breadcrumb-item/style.css +0 -0
- package/es/vxe-breadcrumb-item/style.min.css +0 -0
- package/es/vxe-button/index.js +3 -0
- package/es/vxe-button/style.css +513 -0
- package/es/vxe-button/style.min.css +1 -0
- package/es/vxe-button-group/index.js +3 -0
- package/es/vxe-button-group/style.css +0 -0
- package/es/vxe-button-group/style.min.css +0 -0
- package/es/vxe-col/index.js +3 -0
- package/es/vxe-col/style.css +95 -0
- package/es/vxe-col/style.min.css +1 -0
- package/es/vxe-design/index.js +3 -0
- package/es/vxe-design/style.css +0 -0
- package/es/vxe-design/style.min.css +0 -0
- package/es/vxe-icon/index.js +3 -0
- package/es/vxe-icon/style.css +766 -0
- package/es/vxe-icon/style.min.css +1 -0
- package/es/vxe-layout-aside/index.js +3 -0
- package/es/vxe-layout-aside/style.css +12 -0
- package/es/vxe-layout-aside/style.min.css +1 -0
- package/es/vxe-layout-body/index.js +3 -0
- package/es/vxe-layout-body/style.css +3 -0
- package/es/vxe-layout-body/style.min.css +1 -0
- package/es/vxe-layout-container/index.js +3 -0
- package/es/vxe-layout-container/style.css +10 -0
- package/es/vxe-layout-container/style.min.css +1 -0
- package/es/vxe-layout-footer/index.js +3 -0
- package/es/vxe-layout-footer/style.css +10 -0
- package/es/vxe-layout-footer/style.min.css +1 -0
- package/es/vxe-layout-header/index.js +3 -0
- package/es/vxe-layout-header/style.css +10 -0
- package/es/vxe-layout-header/style.min.css +1 -0
- package/es/vxe-row/index.js +3 -0
- package/es/vxe-row/style.css +10 -0
- package/es/vxe-row/style.min.css +1 -0
- package/es/vxe-ui/index.js +3 -0
- package/es/vxe-ui/style.css +0 -0
- package/es/vxe-ui/style.min.css +0 -0
- package/lib/anchor/index.js +15 -0
- package/lib/anchor/index.min.js +1 -0
- package/lib/anchor/src/anchor.js +220 -0
- package/lib/anchor/src/anchor.min.js +1 -0
- package/lib/anchor/style/index.js +1 -0
- package/lib/anchor/style/style.css +40 -0
- package/lib/anchor/style/style.min.css +1 -0
- package/lib/anchor-link/index.js +15 -0
- package/lib/anchor-link/index.min.js +1 -0
- package/lib/anchor-link/src/anchor-link.js +106 -0
- package/lib/anchor-link/src/anchor-link.min.js +1 -0
- package/lib/anchor-link/src/util.js +29 -0
- package/lib/anchor-link/src/util.min.js +1 -0
- package/lib/anchor-link/style/index.js +1 -0
- package/lib/anchor-link/style/style.css +0 -0
- package/lib/anchor-link/style/style.min.css +0 -0
- package/lib/breadcrumb/index.js +15 -0
- package/lib/breadcrumb/index.min.js +1 -0
- package/lib/breadcrumb/src/breadcrumb.js +53 -0
- package/lib/breadcrumb/src/breadcrumb.min.js +1 -0
- package/lib/breadcrumb/style/index.js +1 -0
- package/lib/breadcrumb/style/style.css +19 -0
- package/lib/breadcrumb/style/style.min.css +1 -0
- package/lib/breadcrumb-item/index.js +15 -0
- package/lib/breadcrumb-item/index.min.js +1 -0
- package/lib/breadcrumb-item/src/breadcrumb-item.js +58 -0
- package/lib/breadcrumb-item/src/breadcrumb-item.min.js +1 -0
- package/lib/breadcrumb-item/style/index.js +1 -0
- package/lib/breadcrumb-item/style/style.css +0 -0
- package/lib/breadcrumb-item/style/style.min.css +0 -0
- package/lib/button/index.js +15 -0
- package/lib/button/index.min.js +1 -0
- package/lib/button/src/button.js +540 -0
- package/lib/button/src/button.min.js +1 -0
- package/lib/button/style/index.js +1 -0
- package/lib/button/style/style.css +513 -0
- package/lib/button/style/style.min.css +1 -0
- package/lib/button-group/index.js +15 -0
- package/lib/button-group/index.min.js +1 -0
- package/lib/button-group/src/button-group.js +88 -0
- package/lib/button-group/src/button-group.min.js +1 -0
- package/lib/button-group/style/index.js +1 -0
- package/lib/button-group/style/style.css +0 -0
- package/lib/button-group/style/style.min.css +0 -0
- package/lib/col/index.js +15 -0
- package/lib/col/index.min.js +1 -0
- package/lib/col/src/col.js +96 -0
- package/lib/col/src/col.min.js +1 -0
- package/lib/col/style/index.js +1 -0
- package/lib/col/style/style.css +95 -0
- package/lib/col/style/style.min.css +1 -0
- package/lib/components.js +230 -0
- package/lib/components.min.js +1 -0
- package/lib/design/index.js +15 -0
- package/lib/design/index.min.js +1 -0
- package/lib/design/src/design.js +48 -0
- package/lib/design/src/design.min.js +1 -0
- package/lib/design/style/index.js +1 -0
- package/lib/design/style/style.css +0 -0
- package/lib/design/style/style.min.css +0 -0
- package/lib/hooks/size.js +16 -0
- package/lib/hooks/size.min.js +1 -0
- package/lib/icon/index.js +15 -0
- package/lib/icon/index.min.js +1 -0
- package/lib/icon/src/icon.js +36 -0
- package/lib/icon/src/icon.min.js +1 -0
- package/lib/icon/style/index.js +1 -0
- package/lib/icon/style/style.css +766 -0
- package/lib/icon/style/style.min.css +1 -0
- package/lib/index.common.js +22 -0
- package/lib/index.umd.js +4461 -0
- package/lib/index.umd.min.js +1 -0
- package/lib/layout-aside/index.js +15 -0
- package/lib/layout-aside/index.min.js +1 -0
- package/lib/layout-aside/src/layout-aside.js +80 -0
- package/lib/layout-aside/src/layout-aside.min.js +1 -0
- package/lib/layout-aside/style/index.js +1 -0
- package/lib/layout-aside/style/style.css +12 -0
- package/lib/layout-aside/style/style.min.css +1 -0
- package/lib/layout-body/index.js +15 -0
- package/lib/layout-body/index.min.js +1 -0
- package/lib/layout-body/src/layout-body.js +46 -0
- package/lib/layout-body/src/layout-body.min.js +1 -0
- package/lib/layout-body/style/index.js +1 -0
- package/lib/layout-body/style/style.css +3 -0
- package/lib/layout-body/style/style.min.css +1 -0
- package/lib/layout-container/index.js +15 -0
- package/lib/layout-container/index.min.js +1 -0
- package/lib/layout-container/src/layout-container.js +50 -0
- package/lib/layout-container/src/layout-container.min.js +1 -0
- package/lib/layout-container/style/index.js +1 -0
- package/lib/layout-container/style/style.css +10 -0
- package/lib/layout-container/style/style.min.css +1 -0
- package/lib/layout-footer/index.js +15 -0
- package/lib/layout-footer/index.min.js +1 -0
- package/lib/layout-footer/src/layout-footer.js +50 -0
- package/lib/layout-footer/src/layout-footer.min.js +1 -0
- package/lib/layout-footer/style/index.js +1 -0
- package/lib/layout-footer/style/style.css +10 -0
- package/lib/layout-footer/style/style.min.css +1 -0
- package/lib/layout-header/index.js +15 -0
- package/lib/layout-header/index.min.js +1 -0
- package/lib/layout-header/src/layout-header.js +50 -0
- package/lib/layout-header/src/layout-header.min.js +1 -0
- package/lib/layout-header/style/index.js +1 -0
- package/lib/layout-header/style/style.css +10 -0
- package/lib/layout-header/style/style.min.css +1 -0
- package/lib/locale/lang/en-US.d.ts +2 -0
- package/lib/locale/lang/en-US.js +469 -0
- package/lib/locale/lang/en-US.min.js +1 -0
- package/lib/locale/lang/en-US.umd.js +483 -0
- package/lib/locale/lang/es-ES.d.ts +2 -0
- package/lib/locale/lang/es-ES.js +469 -0
- package/lib/locale/lang/es-ES.min.js +1 -0
- package/lib/locale/lang/es-ES.umd.js +483 -0
- package/lib/locale/lang/ja-JP.d.ts +2 -0
- package/lib/locale/lang/ja-JP.js +469 -0
- package/lib/locale/lang/ja-JP.min.js +1 -0
- package/lib/locale/lang/ja-JP.umd.js +483 -0
- package/lib/locale/lang/pt-BR.d.ts +2 -0
- package/lib/locale/lang/pt-BR.js +469 -0
- package/lib/locale/lang/pt-BR.min.js +1 -0
- package/lib/locale/lang/pt-BR.umd.js +483 -0
- package/lib/locale/lang/zh-CN.d.ts +2 -0
- package/lib/locale/lang/zh-CN.js +469 -0
- package/lib/locale/lang/zh-CN.min.js +1 -0
- package/lib/locale/lang/zh-CN.umd.js +483 -0
- package/lib/locale/lang/zh-HK.d.ts +2 -0
- package/lib/locale/lang/zh-HK.js +9 -0
- package/lib/locale/lang/zh-HK.min.js +1 -0
- package/lib/locale/lang/zh-HK.umd.js +483 -0
- package/lib/locale/lang/zh-MO.d.ts +2 -0
- package/lib/locale/lang/zh-MO.js +9 -0
- package/lib/locale/lang/zh-MO.min.js +1 -0
- package/lib/locale/lang/zh-MO.umd.js +483 -0
- package/lib/locale/lang/zh-TC.d.ts +2 -0
- package/lib/locale/lang/zh-TC.js +469 -0
- package/lib/locale/lang/zh-TC.min.js +1 -0
- package/lib/locale/lang/zh-TC.umd.js +483 -0
- package/lib/locale/lang/zh-TW.d.ts +2 -0
- package/lib/locale/lang/zh-TW.js +9 -0
- package/lib/locale/lang/zh-TW.min.js +1 -0
- package/lib/locale/lang/zh-TW.umd.js +483 -0
- package/lib/row/index.js +15 -0
- package/lib/row/index.min.js +1 -0
- package/lib/row/src/row.js +82 -0
- package/lib/row/src/row.min.js +1 -0
- package/lib/row/style/index.js +1 -0
- package/lib/row/style/style.css +10 -0
- package/lib/row/style/style.min.css +1 -0
- package/lib/style.css +1 -0
- package/lib/style.min.css +1 -0
- package/lib/ui/index.js +25 -0
- package/lib/ui/index.min.js +1 -0
- package/lib/ui/src/core.js +53 -0
- package/lib/ui/src/core.min.js +1 -0
- package/lib/ui/src/dom.js +127 -0
- package/lib/ui/src/dom.min.js +1 -0
- package/lib/ui/src/event.js +100 -0
- package/lib/ui/src/event.min.js +1 -0
- package/lib/ui/src/globalStore.js +14 -0
- package/lib/ui/src/globalStore.min.js +1 -0
- package/lib/ui/src/iconStore.js +82 -0
- package/lib/ui/src/iconStore.min.js +1 -0
- package/lib/ui/src/log.js +22 -0
- package/lib/ui/src/log.min.js +1 -0
- package/lib/ui/src/theme.js +17 -0
- package/lib/ui/src/theme.min.js +1 -0
- package/lib/ui/src/utils.js +28 -0
- package/lib/ui/src/utils.min.js +1 -0
- package/lib/ui/style/index.js +1 -0
- package/lib/ui/style/style.css +0 -0
- package/lib/ui/style/style.min.css +0 -0
- package/lib/vxe-anchor/index.js +22 -0
- package/lib/vxe-anchor/index.min.js +1 -0
- package/lib/vxe-anchor/style/index.js +1 -0
- package/lib/vxe-anchor/style/style.css +40 -0
- package/lib/vxe-anchor/style/style.min.css +1 -0
- package/lib/vxe-anchor-link/index.js +22 -0
- package/lib/vxe-anchor-link/index.min.js +1 -0
- package/lib/vxe-anchor-link/style/index.js +1 -0
- package/lib/vxe-anchor-link/style/style.css +0 -0
- package/lib/vxe-anchor-link/style/style.min.css +0 -0
- package/lib/vxe-breadcrumb/index.js +22 -0
- package/lib/vxe-breadcrumb/index.min.js +1 -0
- package/lib/vxe-breadcrumb/style/index.js +1 -0
- package/lib/vxe-breadcrumb/style/style.css +19 -0
- package/lib/vxe-breadcrumb/style/style.min.css +1 -0
- package/lib/vxe-breadcrumb-item/index.js +22 -0
- package/lib/vxe-breadcrumb-item/index.min.js +1 -0
- package/lib/vxe-breadcrumb-item/style/index.js +1 -0
- package/lib/vxe-breadcrumb-item/style/style.css +0 -0
- package/lib/vxe-breadcrumb-item/style/style.min.css +0 -0
- package/lib/vxe-button/index.js +22 -0
- package/lib/vxe-button/index.min.js +1 -0
- package/lib/vxe-button/style/index.js +1 -0
- package/lib/vxe-button/style/style.css +513 -0
- package/lib/vxe-button/style/style.min.css +1 -0
- package/lib/vxe-button-group/index.js +22 -0
- package/lib/vxe-button-group/index.min.js +1 -0
- package/lib/vxe-button-group/style/index.js +1 -0
- package/lib/vxe-button-group/style/style.css +0 -0
- package/lib/vxe-button-group/style/style.min.css +0 -0
- package/lib/vxe-col/index.js +22 -0
- package/lib/vxe-col/index.min.js +1 -0
- package/lib/vxe-col/style/index.js +1 -0
- package/lib/vxe-col/style/style.css +95 -0
- package/lib/vxe-col/style/style.min.css +1 -0
- package/lib/vxe-design/index.js +22 -0
- package/lib/vxe-design/index.min.js +1 -0
- package/lib/vxe-design/style/index.js +1 -0
- package/lib/vxe-design/style/style.css +0 -0
- package/lib/vxe-design/style/style.min.css +0 -0
- package/lib/vxe-icon/index.js +22 -0
- package/lib/vxe-icon/index.min.js +1 -0
- package/lib/vxe-icon/style/index.js +1 -0
- package/lib/vxe-icon/style/style.css +766 -0
- package/lib/vxe-icon/style/style.min.css +1 -0
- package/lib/vxe-layout-aside/index.js +22 -0
- package/lib/vxe-layout-aside/index.min.js +1 -0
- package/lib/vxe-layout-aside/style/index.js +1 -0
- package/lib/vxe-layout-aside/style/style.css +12 -0
- package/lib/vxe-layout-aside/style/style.min.css +1 -0
- package/lib/vxe-layout-body/index.js +22 -0
- package/lib/vxe-layout-body/index.min.js +1 -0
- package/lib/vxe-layout-body/style/index.js +1 -0
- package/lib/vxe-layout-body/style/style.css +3 -0
- package/lib/vxe-layout-body/style/style.min.css +1 -0
- package/lib/vxe-layout-container/index.js +22 -0
- package/lib/vxe-layout-container/index.min.js +1 -0
- package/lib/vxe-layout-container/style/index.js +1 -0
- package/lib/vxe-layout-container/style/style.css +10 -0
- package/lib/vxe-layout-container/style/style.min.css +1 -0
- package/lib/vxe-layout-footer/index.js +22 -0
- package/lib/vxe-layout-footer/index.min.js +1 -0
- package/lib/vxe-layout-footer/style/index.js +1 -0
- package/lib/vxe-layout-footer/style/style.css +10 -0
- package/lib/vxe-layout-footer/style/style.min.css +1 -0
- package/lib/vxe-layout-header/index.js +22 -0
- package/lib/vxe-layout-header/index.min.js +1 -0
- package/lib/vxe-layout-header/style/index.js +1 -0
- package/lib/vxe-layout-header/style/style.css +10 -0
- package/lib/vxe-layout-header/style/style.min.css +1 -0
- package/lib/vxe-row/index.js +22 -0
- package/lib/vxe-row/index.min.js +1 -0
- package/lib/vxe-row/style/index.js +1 -0
- package/lib/vxe-row/style/style.css +10 -0
- package/lib/vxe-row/style/style.min.css +1 -0
- package/lib/vxe-ui/index.js +22 -0
- package/lib/vxe-ui/index.min.js +1 -0
- package/lib/vxe-ui/style/index.js +1 -0
- package/lib/vxe-ui/style/style.css +0 -0
- package/lib/vxe-ui/style/style.min.css +0 -0
- package/package.json +83 -55
- package/packages/anchor/index.ts +11 -0
- package/packages/anchor/src/anchor.ts +233 -0
- package/packages/anchor-link/index.ts +11 -0
- package/packages/anchor-link/src/anchor-link.ts +118 -0
- package/packages/anchor-link/src/util.ts +23 -0
- package/packages/breadcrumb/index.ts +11 -0
- package/packages/breadcrumb/src/breadcrumb.ts +60 -0
- package/packages/breadcrumb-item/index.ts +11 -0
- package/packages/breadcrumb-item/src/breadcrumb-item.ts +71 -0
- package/packages/button/index.ts +11 -0
- package/packages/button/src/button.ts +526 -0
- package/packages/button-group/index.ts +11 -0
- package/packages/button-group/src/button-group.ts +81 -0
- package/packages/col/index.ts +11 -0
- package/packages/col/src/col.ts +98 -0
- package/packages/components.ts +66 -0
- package/packages/design/index.ts +11 -0
- package/packages/design/src/design.ts +55 -0
- package/packages/hooks/size.ts +14 -0
- package/packages/icon/index.ts +11 -0
- package/packages/icon/src/icon.ts +27 -0
- package/packages/index.ts +4 -0
- package/packages/layout-aside/index.ts +11 -0
- package/packages/layout-aside/src/layout-aside.ts +85 -0
- package/packages/layout-body/index.ts +11 -0
- package/packages/layout-body/src/layout-body.ts +52 -0
- package/packages/layout-container/index.ts +11 -0
- package/packages/layout-container/src/layout-container.ts +56 -0
- package/packages/layout-footer/index.ts +11 -0
- package/packages/layout-footer/src/layout-footer.ts +56 -0
- package/packages/layout-header/index.ts +11 -0
- package/packages/layout-header/src/layout-header.ts +56 -0
- package/packages/locale/lang/en-US.ts +465 -0
- package/packages/locale/lang/es-ES.ts +465 -0
- package/packages/locale/lang/ja-JP.ts +465 -0
- package/packages/locale/lang/pt-BR.ts +465 -0
- package/packages/locale/lang/zh-CN.ts +465 -0
- package/packages/locale/lang/zh-HK.ts +3 -0
- package/packages/locale/lang/zh-MO.ts +3 -0
- package/packages/locale/lang/zh-TC.ts +465 -0
- package/packages/locale/lang/zh-TW.ts +3 -0
- package/packages/row/index.ts +11 -0
- package/packages/row/src/row.ts +86 -0
- package/packages/ui/index.ts +6 -0
- package/packages/ui/src/core.ts +51 -0
- package/packages/ui/src/dom.ts +103 -0
- package/packages/ui/src/event.ts +88 -0
- package/packages/ui/src/globalStore.ts +11 -0
- package/packages/ui/src/iconStore.ts +88 -0
- package/packages/ui/src/log.ts +16 -0
- package/packages/ui/src/theme.ts +13 -0
- package/packages/ui/src/utils.ts +22 -0
- package/styles/all.scss +17 -0
- package/styles/base.scss +16 -0
- package/styles/components/anchor-link.scss +0 -0
- package/styles/components/anchor.scss +42 -0
- package/styles/components/breadcrumb-item.scss +0 -0
- package/styles/components/breadcrumb.scss +20 -0
- package/styles/components/button-group.scss +0 -0
- package/styles/components/button.scss +357 -0
- package/styles/components/col.scss +32 -0
- package/styles/components/design.scss +1 -0
- package/styles/components/icon.scss +785 -0
- package/styles/components/layout-aside.scss +14 -0
- package/styles/components/layout-body.scss +5 -0
- package/styles/components/layout-container.scss +12 -0
- package/styles/components/layout-footer.scss +12 -0
- package/styles/components/layout-header.scss +12 -0
- package/styles/components/row.scss +10 -0
- package/styles/components/ui.scss +0 -0
- package/styles/helpers/mixin.scss +82 -0
- package/styles/icon/iconfont.ttf +0 -0
- package/styles/icon/iconfont.woff +0 -0
- package/styles/icon/iconfont.woff2 +0 -0
- package/styles/theme/base.scss +81 -0
- package/styles/theme/dark.scss +7 -0
- package/styles/theme/default.scss +5 -0
- package/types/all.d.ts +67 -0
- package/types/component/anchor-link.d.ts +74 -0
- package/types/component/anchor.d.ts +79 -0
- package/types/component/breadcrumb-item.d.ts +58 -0
- package/types/component/breadcrumb.d.ts +61 -0
- package/types/component/button-group.d.ts +86 -0
- package/types/component/button.d.ts +157 -0
- package/types/component/col.d.ts +58 -0
- package/types/component/design.d.ts +63 -0
- package/types/component/icon.d.ts +67 -0
- package/types/component/layout-aside.d.ts +57 -0
- package/types/component/layout-body.d.ts +58 -0
- package/types/component/layout-container.d.ts +58 -0
- package/types/component/layout-footer.d.ts +58 -0
- package/types/component/layout-header.d.ts +58 -0
- package/types/component/row.d.ts +65 -0
- package/types/index.d.ts +4 -0
- package/types/tool/common.d.ts +52 -0
- package/types/tool/index.d.ts +6 -0
- package/types/ui/global-config.d.ts +15 -0
- package/types/ui/global-icon.d.ts +15 -0
- package/types/ui/index.d.ts +42 -0
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
import { RenderFunction, SetupContext, Ref } from 'vue'
|
|
2
|
+
import { defineVxeComponent, VxeComponentBase, VxeComponentEvent, VxeComponentSize, ValueOf } from '../tool'
|
|
3
|
+
|
|
4
|
+
/* eslint-disable no-use-before-define,@typescript-eslint/ban-types */
|
|
5
|
+
|
|
6
|
+
declare const VxeButton: defineVxeComponent<VxeButtonProps, VxeButtonEventProps>
|
|
7
|
+
|
|
8
|
+
export interface VxeButtonConstructor extends VxeComponentBase, VxeButtonMethods {
|
|
9
|
+
props: VxeButtonProps
|
|
10
|
+
context: SetupContext<VxeButtonEmits>
|
|
11
|
+
reactData: ButtonReactData
|
|
12
|
+
internalData: ButtonInternalData
|
|
13
|
+
getRefMaps(): ButtonPrivateRef
|
|
14
|
+
getComputeMaps(): ButtonPrivateComputed
|
|
15
|
+
renderVN: RenderFunction
|
|
16
|
+
}
|
|
17
|
+
|
|
18
|
+
export interface ButtonPrivateRef {
|
|
19
|
+
refElem: Ref<HTMLDivElement | undefined>
|
|
20
|
+
}
|
|
21
|
+
export interface VxeButtonPrivateRef extends ButtonPrivateRef { }
|
|
22
|
+
|
|
23
|
+
export namespace VxeButtonPropTypes {
|
|
24
|
+
export type Size = VxeComponentSize
|
|
25
|
+
export type Type = string
|
|
26
|
+
export type Mode = null | '' | 'button' | 'text'
|
|
27
|
+
export type ClassName = string | ((params: { $button: VxeButtonConstructor }) => string)
|
|
28
|
+
export type PopupClassName = string | ((params: { $button: VxeButtonConstructor }) => string)
|
|
29
|
+
export type Name = string | number
|
|
30
|
+
export type Content = string | number
|
|
31
|
+
export type Placement = string
|
|
32
|
+
export type Status = string
|
|
33
|
+
export type Title = string
|
|
34
|
+
export type Icon = string
|
|
35
|
+
export type Round = boolean
|
|
36
|
+
export type Circle = boolean
|
|
37
|
+
export type Disabled = boolean
|
|
38
|
+
export type Loading = boolean
|
|
39
|
+
export type DestroyOnClose = boolean
|
|
40
|
+
export type Transfer = boolean
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export type VxeButtonProps = {
|
|
44
|
+
size?: VxeButtonPropTypes.Size
|
|
45
|
+
/**
|
|
46
|
+
* 按钮类型
|
|
47
|
+
*/
|
|
48
|
+
type?: VxeButtonPropTypes.Type
|
|
49
|
+
/**
|
|
50
|
+
* 按钮的模式
|
|
51
|
+
*/
|
|
52
|
+
mode?: VxeButtonPropTypes.Mode
|
|
53
|
+
className?: VxeButtonPropTypes.ClassName
|
|
54
|
+
popupClassName?: VxeButtonPropTypes.PopupClassName
|
|
55
|
+
/**
|
|
56
|
+
* 用来标识这一项
|
|
57
|
+
*/
|
|
58
|
+
name?: VxeButtonPropTypes.Name
|
|
59
|
+
title?: VxeButtonPropTypes.Title
|
|
60
|
+
/**
|
|
61
|
+
* 按钮内容
|
|
62
|
+
*/
|
|
63
|
+
content?: VxeButtonPropTypes.Content
|
|
64
|
+
/**
|
|
65
|
+
* 固定显示下拉面板的方向
|
|
66
|
+
*/
|
|
67
|
+
placement?: VxeButtonPropTypes.Placement
|
|
68
|
+
/**
|
|
69
|
+
* 按钮状态
|
|
70
|
+
*/
|
|
71
|
+
status?: VxeButtonPropTypes.Status
|
|
72
|
+
/**
|
|
73
|
+
* 按钮的图标
|
|
74
|
+
*/
|
|
75
|
+
icon?: VxeButtonPropTypes.Icon
|
|
76
|
+
/**
|
|
77
|
+
* 圆角边框
|
|
78
|
+
*/
|
|
79
|
+
round?: VxeButtonPropTypes.Round
|
|
80
|
+
/**
|
|
81
|
+
* 圆角按钮
|
|
82
|
+
*/
|
|
83
|
+
circle?: VxeButtonPropTypes.Circle
|
|
84
|
+
/**
|
|
85
|
+
* 是否禁用
|
|
86
|
+
*/
|
|
87
|
+
disabled?: VxeButtonPropTypes.Disabled
|
|
88
|
+
/**
|
|
89
|
+
* 是否加载中
|
|
90
|
+
*/
|
|
91
|
+
loading?: VxeButtonPropTypes.Loading
|
|
92
|
+
/**
|
|
93
|
+
* 在下拉面板关闭时销毁内容
|
|
94
|
+
*/
|
|
95
|
+
destroyOnClose?: VxeButtonPropTypes.DestroyOnClose
|
|
96
|
+
/**
|
|
97
|
+
* 是否将弹框容器插入于 body 内
|
|
98
|
+
*/
|
|
99
|
+
transfer?: VxeButtonPropTypes.Transfer
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
export interface ButtonPrivateComputed {
|
|
103
|
+
}
|
|
104
|
+
export interface VxeButtonPrivateComputed extends ButtonPrivateComputed { }
|
|
105
|
+
|
|
106
|
+
export interface ButtonReactData {
|
|
107
|
+
inited: boolean
|
|
108
|
+
showPanel: boolean
|
|
109
|
+
animatVisible: boolean
|
|
110
|
+
panelIndex: number
|
|
111
|
+
panelStyle: VNodeStyle
|
|
112
|
+
panelPlacement: any
|
|
113
|
+
}
|
|
114
|
+
|
|
115
|
+
export interface ButtonInternalData {
|
|
116
|
+
showTime: any
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
export interface ButtonMethods {
|
|
120
|
+
dispatchEvent(type: ValueOf<VxeButtonEmits>, params: any, evnt: Event): void
|
|
121
|
+
/**
|
|
122
|
+
* 获取焦点
|
|
123
|
+
*/
|
|
124
|
+
focus(): Promise<any>
|
|
125
|
+
/**
|
|
126
|
+
* 失去焦点
|
|
127
|
+
*/
|
|
128
|
+
blur(): Promise<any>
|
|
129
|
+
}
|
|
130
|
+
export interface VxeButtonMethods extends ButtonMethods { }
|
|
131
|
+
|
|
132
|
+
export interface ButtonPrivateMethods { }
|
|
133
|
+
export interface VxeButtonPrivateMethods extends ButtonPrivateMethods { }
|
|
134
|
+
|
|
135
|
+
export type VxeButtonEmits = [
|
|
136
|
+
'click',
|
|
137
|
+
'mouseenter',
|
|
138
|
+
'mouseleave',
|
|
139
|
+
'dropdown-click'
|
|
140
|
+
]
|
|
141
|
+
|
|
142
|
+
export namespace VxeButtonDefines {
|
|
143
|
+
export interface ButtonEventParams extends VxeComponentEvent {
|
|
144
|
+
$button: VxeButtonConstructor
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
export type VxeButtonEventProps = {}
|
|
149
|
+
|
|
150
|
+
export interface VxeButtonListeners { }
|
|
151
|
+
|
|
152
|
+
export namespace VxeButtonEvents { }
|
|
153
|
+
|
|
154
|
+
export interface VxeButtonSlots {
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
export default VxeButton
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { RenderFunction, SetupContext, Ref } from 'vue'
|
|
2
|
+
import { defineVxeComponent, VxeComponentBase, VxeComponentEvent } from '../tool'
|
|
3
|
+
|
|
4
|
+
/* eslint-disable no-use-before-define,@typescript-eslint/ban-types */
|
|
5
|
+
|
|
6
|
+
declare const VxeCol: defineVxeComponent<VxeColProps, VxeColEventProps>
|
|
7
|
+
|
|
8
|
+
export interface VxeColConstructor extends VxeComponentBase, VxeColMethods {
|
|
9
|
+
props: VxeColProps
|
|
10
|
+
context: SetupContext<VxeColEmits>
|
|
11
|
+
reactData: ColReactData
|
|
12
|
+
getRefMaps(): ColPrivateRef
|
|
13
|
+
getComputeMaps(): ColPrivateComputed
|
|
14
|
+
renderVN: RenderFunction
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface ColPrivateRef {
|
|
18
|
+
refElem: Ref<HTMLDivElement | undefined>
|
|
19
|
+
}
|
|
20
|
+
export interface VxeColPrivateRef extends ColPrivateRef { }
|
|
21
|
+
|
|
22
|
+
export namespace VxeColPropTypes {
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export type VxeColProps = {}
|
|
26
|
+
|
|
27
|
+
export interface ColPrivateComputed {
|
|
28
|
+
}
|
|
29
|
+
export interface VxeColPrivateComputed extends ColPrivateComputed { }
|
|
30
|
+
|
|
31
|
+
export interface ColReactData {
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface ColMethods {
|
|
35
|
+
}
|
|
36
|
+
export interface VxeColMethods extends ColMethods { }
|
|
37
|
+
|
|
38
|
+
export interface ColPrivateMethods { }
|
|
39
|
+
export interface VxeColPrivateMethods extends ColPrivateMethods { }
|
|
40
|
+
|
|
41
|
+
export type VxeColEmits = []
|
|
42
|
+
|
|
43
|
+
export namespace VxeColDefines {
|
|
44
|
+
export interface ColEventParams extends VxeComponentEvent {
|
|
45
|
+
$col: VxeColConstructor
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export type VxeColEventProps = {}
|
|
50
|
+
|
|
51
|
+
export interface VxeColListeners { }
|
|
52
|
+
|
|
53
|
+
export namespace VxeColEvents { }
|
|
54
|
+
|
|
55
|
+
export interface VxeColSlots {
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export default VxeCol
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { RenderFunction, SetupContext, Ref } from 'vue'
|
|
2
|
+
import { defineVxeComponent, VxeComponentBase, VxeComponentEvent, VxeComponentSize, ValueOf } from '../tool'
|
|
3
|
+
|
|
4
|
+
/* eslint-disable no-use-before-define,@typescript-eslint/ban-types */
|
|
5
|
+
|
|
6
|
+
declare const VxeDesign: defineVxeComponent<VxeDesignProps, VxeDesignEventProps>
|
|
7
|
+
|
|
8
|
+
export interface VxeDesignConstructor extends VxeComponentBase, VxeDesignMethods {
|
|
9
|
+
props: VxeDesignProps
|
|
10
|
+
context: SetupContext<VxeDesignEmits>
|
|
11
|
+
reactData: DesignReactData
|
|
12
|
+
getRefMaps(): DesignPrivateRef
|
|
13
|
+
getComputeMaps(): DesignPrivateComputed
|
|
14
|
+
renderVN: RenderFunction
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface DesignPrivateRef {
|
|
18
|
+
refElem: Ref<HTMLDivElement | undefined>
|
|
19
|
+
}
|
|
20
|
+
export interface VxeDesignPrivateRef extends DesignPrivateRef { }
|
|
21
|
+
|
|
22
|
+
export namespace VxeDesignPropTypes {
|
|
23
|
+
export type Size = VxeComponentSize
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
export type VxeDesignProps = {
|
|
27
|
+
size?: VxeDesignPropTypes.Size
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
export interface DesignPrivateComputed {
|
|
31
|
+
}
|
|
32
|
+
export interface VxeDesignPrivateComputed extends DesignPrivateComputed { }
|
|
33
|
+
|
|
34
|
+
export interface DesignReactData {
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
export interface DesignMethods {
|
|
38
|
+
dispatchEvent(type: ValueOf<VxeDesignEmits>, params: any, evnt: Event): void
|
|
39
|
+
}
|
|
40
|
+
export interface VxeDesignMethods extends DesignMethods { }
|
|
41
|
+
|
|
42
|
+
export interface DesignPrivateMethods { }
|
|
43
|
+
export interface VxeDesignPrivateMethods extends DesignPrivateMethods { }
|
|
44
|
+
|
|
45
|
+
export type VxeDesignEmits = [
|
|
46
|
+
]
|
|
47
|
+
|
|
48
|
+
export namespace VxeDesignDefines {
|
|
49
|
+
export interface DesignEventParams extends VxeComponentEvent {
|
|
50
|
+
$design: VxeDesignConstructor
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export type VxeDesignEventProps = {}
|
|
55
|
+
|
|
56
|
+
export interface VxeDesignListeners { }
|
|
57
|
+
|
|
58
|
+
export namespace VxeDesignEvents { }
|
|
59
|
+
|
|
60
|
+
export interface VxeDesignSlots {
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
export default VxeDesign
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { RenderFunction, SetupContext, Ref } from 'vue'
|
|
2
|
+
import { defineVxeComponent, VxeComponentBase, VxeComponentEvent } from '../tool'
|
|
3
|
+
|
|
4
|
+
/* eslint-disable no-use-before-define,@typescript-eslint/ban-types */
|
|
5
|
+
|
|
6
|
+
declare const VxeIcon: defineVxeComponent<VxeIconProps, VxeIconEventProps>
|
|
7
|
+
|
|
8
|
+
export interface VxeIconConstructor extends VxeComponentBase, VxeIconMethods {
|
|
9
|
+
props: VxeIconProps
|
|
10
|
+
context: SetupContext<VxeIconEmits>
|
|
11
|
+
reactData: IconReactData
|
|
12
|
+
getRefMaps(): IconPrivateRef
|
|
13
|
+
getComputeMaps(): IconPrivateComputed
|
|
14
|
+
renderVN: RenderFunction
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface IconPrivateRef {
|
|
18
|
+
refElem: Ref<HTMLDivElement | undefined>
|
|
19
|
+
}
|
|
20
|
+
export interface VxeIconPrivateRef extends IconPrivateRef { }
|
|
21
|
+
|
|
22
|
+
export namespace VxeIconPropTypes {
|
|
23
|
+
export type Name = string
|
|
24
|
+
export type Roll = boolean
|
|
25
|
+
export type Status = string
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export type VxeIconProps = {
|
|
29
|
+
name?: VxeIconPropTypes.Name
|
|
30
|
+
roll?: VxeIconPropTypes.Roll
|
|
31
|
+
status?: VxeIconPropTypes.Status
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface IconPrivateComputed {
|
|
35
|
+
}
|
|
36
|
+
export interface VxeIconPrivateComputed extends IconPrivateComputed { }
|
|
37
|
+
|
|
38
|
+
export interface IconReactData {
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export interface IconMethods {
|
|
42
|
+
}
|
|
43
|
+
export interface VxeIconMethods extends IconMethods { }
|
|
44
|
+
|
|
45
|
+
export interface IconPrivateMethods { }
|
|
46
|
+
export interface VxeIconPrivateMethods extends IconPrivateMethods { }
|
|
47
|
+
|
|
48
|
+
export type VxeIconEmits = [
|
|
49
|
+
'click'
|
|
50
|
+
]
|
|
51
|
+
|
|
52
|
+
export namespace VxeIconDefines {
|
|
53
|
+
export interface IconEventParams extends VxeComponentEvent {
|
|
54
|
+
$icon: VxeIconConstructor
|
|
55
|
+
}
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export type VxeIconEventProps = {}
|
|
59
|
+
|
|
60
|
+
export interface VxeIconListeners { }
|
|
61
|
+
|
|
62
|
+
export namespace VxeIconEvents { }
|
|
63
|
+
|
|
64
|
+
export interface VxeIconSlots {
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
export default VxeIcon
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
import { RenderFunction, SetupContext, Ref } from 'vue'
|
|
2
|
+
import { defineVxeComponent, VxeComponentBase, VxeComponentEvent } from '../tool'
|
|
3
|
+
|
|
4
|
+
/* eslint-disable no-use-before-define,@typescript-eslint/ban-types */
|
|
5
|
+
|
|
6
|
+
declare const VxeLayoutAside: defineVxeComponent<VxeLayoutAsideProps, VxeLayoutAsideEventProps>
|
|
7
|
+
|
|
8
|
+
export interface VxeLayoutAsideConstructor extends VxeComponentBase, VxeLayoutAsideMethods {
|
|
9
|
+
props: VxeLayoutAsideProps
|
|
10
|
+
context: SetupContext<VxeLayoutAsideEmits>
|
|
11
|
+
reactData: LayoutAsideReactData
|
|
12
|
+
getRefMaps(): LayoutAsidePrivateRef
|
|
13
|
+
getComputeMaps(): LayoutAsidePrivateComputed
|
|
14
|
+
renderVN: RenderFunction
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface LayoutAsidePrivateRef {
|
|
18
|
+
refElem: Ref<HTMLDivElement | undefined>
|
|
19
|
+
}
|
|
20
|
+
export interface VxeLayoutAsidePrivateRef extends LayoutAsidePrivateRef { }
|
|
21
|
+
|
|
22
|
+
export namespace VxeLayoutAsidePropTypes {
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export type VxeLayoutAsideProps = {}
|
|
26
|
+
|
|
27
|
+
export interface LayoutAsidePrivateComputed {
|
|
28
|
+
}
|
|
29
|
+
export interface VxeLayoutAsidePrivateComputed extends LayoutAsidePrivateComputed { }
|
|
30
|
+
|
|
31
|
+
export interface LayoutAsideReactData {}
|
|
32
|
+
|
|
33
|
+
export interface LayoutAsideMethods {
|
|
34
|
+
}
|
|
35
|
+
export interface VxeLayoutAsideMethods extends LayoutAsideMethods { }
|
|
36
|
+
|
|
37
|
+
export interface LayoutAsidePrivateMethods { }
|
|
38
|
+
export interface VxeLayoutAsidePrivateMethods extends LayoutAsidePrivateMethods { }
|
|
39
|
+
|
|
40
|
+
export type VxeLayoutAsideEmits = []
|
|
41
|
+
|
|
42
|
+
export namespace VxeLayoutAsideDefines {
|
|
43
|
+
export interface LayoutAsideEventParams extends VxeComponentEvent {
|
|
44
|
+
$layoutAside: VxeLayoutAsideConstructor
|
|
45
|
+
}
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export type VxeLayoutAsideEventProps = {}
|
|
49
|
+
|
|
50
|
+
export interface VxeLayoutAsideListeners { }
|
|
51
|
+
|
|
52
|
+
export namespace VxeLayoutAsideEvents { }
|
|
53
|
+
|
|
54
|
+
export interface VxeLayoutAsideSlots {
|
|
55
|
+
}
|
|
56
|
+
|
|
57
|
+
export default VxeLayoutAside
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { RenderFunction, SetupContext, Ref } from 'vue'
|
|
2
|
+
import { defineVxeComponent, VxeComponentBase, VxeComponentEvent } from '../tool'
|
|
3
|
+
|
|
4
|
+
/* eslint-disable no-use-before-define,@typescript-eslint/ban-types */
|
|
5
|
+
|
|
6
|
+
declare const VxeLayoutBody: defineVxeComponent<VxeLayoutBodyProps, VxeLayoutBodyEventProps>
|
|
7
|
+
|
|
8
|
+
export interface VxeLayoutBodyConstructor extends VxeComponentBase, VxeLayoutBodyMethods {
|
|
9
|
+
props: VxeLayoutBodyProps
|
|
10
|
+
context: SetupContext<VxeLayoutBodyEmits>
|
|
11
|
+
reactData: LayoutBodyReactData
|
|
12
|
+
getRefMaps(): LayoutBodyPrivateRef
|
|
13
|
+
getComputeMaps(): LayoutBodyPrivateComputed
|
|
14
|
+
renderVN: RenderFunction
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface LayoutBodyPrivateRef {
|
|
18
|
+
refElem: Ref<HTMLDivElement | undefined>
|
|
19
|
+
}
|
|
20
|
+
export interface VxeLayoutBodyPrivateRef extends LayoutBodyPrivateRef { }
|
|
21
|
+
|
|
22
|
+
export namespace VxeLayoutBodyPropTypes {
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export type VxeLayoutBodyProps = {}
|
|
26
|
+
|
|
27
|
+
export interface LayoutBodyPrivateComputed {
|
|
28
|
+
}
|
|
29
|
+
export interface VxeLayoutBodyPrivateComputed extends LayoutBodyPrivateComputed { }
|
|
30
|
+
|
|
31
|
+
export interface LayoutBodyReactData {
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface LayoutBodyMethods {
|
|
35
|
+
}
|
|
36
|
+
export interface VxeLayoutBodyMethods extends LayoutBodyMethods { }
|
|
37
|
+
|
|
38
|
+
export interface LayoutBodyPrivateMethods { }
|
|
39
|
+
export interface VxeLayoutBodyPrivateMethods extends LayoutBodyPrivateMethods { }
|
|
40
|
+
|
|
41
|
+
export type VxeLayoutBodyEmits = []
|
|
42
|
+
|
|
43
|
+
export namespace VxeLayoutBodyDefines {
|
|
44
|
+
export interface LayoutBodyEventParams extends VxeComponentEvent {
|
|
45
|
+
$layoutBody: VxeLayoutBodyConstructor
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export type VxeLayoutBodyEventProps = {}
|
|
50
|
+
|
|
51
|
+
export interface VxeLayoutBodyListeners { }
|
|
52
|
+
|
|
53
|
+
export namespace VxeLayoutBodyEvents { }
|
|
54
|
+
|
|
55
|
+
export interface VxeLayoutBodySlots {
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export default VxeLayoutBody
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { RenderFunction, SetupContext, Ref } from 'vue'
|
|
2
|
+
import { defineVxeComponent, VxeComponentBase, VxeComponentEvent } from '../tool'
|
|
3
|
+
|
|
4
|
+
/* eslint-disable no-use-before-define,@typescript-eslint/ban-types */
|
|
5
|
+
|
|
6
|
+
declare const VxeLayoutContainer: defineVxeComponent<VxeLayoutContainerProps, VxeLayoutContainerEventProps>
|
|
7
|
+
|
|
8
|
+
export interface VxeLayoutContainerConstructor extends VxeComponentBase, VxeLayoutContainerMethods {
|
|
9
|
+
props: VxeLayoutContainerProps
|
|
10
|
+
context: SetupContext<VxeLayoutContainerEmits>
|
|
11
|
+
reactData: LayoutContainerReactData
|
|
12
|
+
getRefMaps(): LayoutContainerPrivateRef
|
|
13
|
+
getComputeMaps(): LayoutContainerPrivateComputed
|
|
14
|
+
renderVN: RenderFunction
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface LayoutContainerPrivateRef {
|
|
18
|
+
refElem: Ref<HTMLDivElement | undefined>
|
|
19
|
+
}
|
|
20
|
+
export interface VxeLayoutContainerPrivateRef extends LayoutContainerPrivateRef { }
|
|
21
|
+
|
|
22
|
+
export namespace VxeLayoutContainerPropTypes {
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export type VxeLayoutContainerProps = {}
|
|
26
|
+
|
|
27
|
+
export interface LayoutContainerPrivateComputed {
|
|
28
|
+
}
|
|
29
|
+
export interface VxeLayoutContainerPrivateComputed extends LayoutContainerPrivateComputed { }
|
|
30
|
+
|
|
31
|
+
export interface LayoutContainerReactData {
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface LayoutContainerMethods {
|
|
35
|
+
}
|
|
36
|
+
export interface VxeLayoutContainerMethods extends LayoutContainerMethods { }
|
|
37
|
+
|
|
38
|
+
export interface LayoutContainerPrivateMethods { }
|
|
39
|
+
export interface VxeLayoutContainerPrivateMethods extends LayoutContainerPrivateMethods { }
|
|
40
|
+
|
|
41
|
+
export type VxeLayoutContainerEmits = []
|
|
42
|
+
|
|
43
|
+
export namespace VxeLayoutContainerDefines {
|
|
44
|
+
export interface LayoutContainerEventParams extends VxeComponentEvent {
|
|
45
|
+
$layoutContainer: VxeLayoutContainerConstructor
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export type VxeLayoutContainerEventProps = {}
|
|
50
|
+
|
|
51
|
+
export interface VxeLayoutContainerListeners { }
|
|
52
|
+
|
|
53
|
+
export namespace VxeLayoutContainerEvents { }
|
|
54
|
+
|
|
55
|
+
export interface VxeLayoutContainerSlots {
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export default VxeLayoutContainer
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { RenderFunction, SetupContext, Ref } from 'vue'
|
|
2
|
+
import { defineVxeComponent, VxeComponentBase, VxeComponentEvent } from '../tool'
|
|
3
|
+
|
|
4
|
+
/* eslint-disable no-use-before-define,@typescript-eslint/ban-types */
|
|
5
|
+
|
|
6
|
+
declare const VxeLayoutFooter: defineVxeComponent<VxeLayoutFooterProps, VxeLayoutFooterEventProps>
|
|
7
|
+
|
|
8
|
+
export interface VxeLayoutFooterConstructor extends VxeComponentBase, VxeLayoutFooterMethods {
|
|
9
|
+
props: VxeLayoutFooterProps
|
|
10
|
+
context: SetupContext<VxeLayoutFooterEmits>
|
|
11
|
+
reactData: LayoutFooterReactData
|
|
12
|
+
getRefMaps(): LayoutFooterPrivateRef
|
|
13
|
+
getComputeMaps(): LayoutFooterPrivateComputed
|
|
14
|
+
renderVN: RenderFunction
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface LayoutFooterPrivateRef {
|
|
18
|
+
refElem: Ref<HTMLDivElement | undefined>
|
|
19
|
+
}
|
|
20
|
+
export interface VxeLayoutFooterPrivateRef extends LayoutFooterPrivateRef { }
|
|
21
|
+
|
|
22
|
+
export namespace VxeLayoutFooterPropTypes {
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export type VxeLayoutFooterProps = {}
|
|
26
|
+
|
|
27
|
+
export interface LayoutFooterPrivateComputed {
|
|
28
|
+
}
|
|
29
|
+
export interface VxeLayoutFooterPrivateComputed extends LayoutFooterPrivateComputed { }
|
|
30
|
+
|
|
31
|
+
export interface LayoutFooterReactData {
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface LayoutFooterMethods {
|
|
35
|
+
}
|
|
36
|
+
export interface VxeLayoutFooterMethods extends LayoutFooterMethods { }
|
|
37
|
+
|
|
38
|
+
export interface LayoutFooterPrivateMethods { }
|
|
39
|
+
export interface VxeLayoutFooterPrivateMethods extends LayoutFooterPrivateMethods { }
|
|
40
|
+
|
|
41
|
+
export type VxeLayoutFooterEmits = []
|
|
42
|
+
|
|
43
|
+
export namespace VxeLayoutFooterDefines {
|
|
44
|
+
export interface LayoutFooterEventParams extends VxeComponentEvent {
|
|
45
|
+
$layoutFooter: VxeLayoutFooterConstructor
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export type VxeLayoutFooterEventProps = {}
|
|
50
|
+
|
|
51
|
+
export interface VxeLayoutFooterListeners { }
|
|
52
|
+
|
|
53
|
+
export namespace VxeLayoutFooterEvents { }
|
|
54
|
+
|
|
55
|
+
export interface VxeLayoutFooterSlots {
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export default VxeLayoutFooter
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { RenderFunction, SetupContext, Ref } from 'vue'
|
|
2
|
+
import { defineVxeComponent, VxeComponentBase, VxeComponentEvent } from '../tool'
|
|
3
|
+
|
|
4
|
+
/* eslint-disable no-use-before-define,@typescript-eslint/ban-types */
|
|
5
|
+
|
|
6
|
+
declare const VxeLayoutHeader: defineVxeComponent<VxeLayoutHeaderProps, VxeLayoutHeaderEventProps>
|
|
7
|
+
|
|
8
|
+
export interface VxeLayoutHeaderConstructor extends VxeComponentBase, VxeLayoutHeaderMethods {
|
|
9
|
+
props: VxeLayoutHeaderProps
|
|
10
|
+
context: SetupContext<VxeLayoutHeaderEmits>
|
|
11
|
+
reactData: LayoutHeaderReactData
|
|
12
|
+
getRefMaps(): LayoutHeaderPrivateRef
|
|
13
|
+
getComputeMaps(): LayoutHeaderPrivateComputed
|
|
14
|
+
renderVN: RenderFunction
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface LayoutHeaderPrivateRef {
|
|
18
|
+
refElem: Ref<HTMLDivElement | undefined>
|
|
19
|
+
}
|
|
20
|
+
export interface VxeLayoutHeaderPrivateRef extends LayoutHeaderPrivateRef { }
|
|
21
|
+
|
|
22
|
+
export namespace VxeLayoutHeaderPropTypes {
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
export type VxeLayoutHeaderProps = {}
|
|
26
|
+
|
|
27
|
+
export interface LayoutHeaderPrivateComputed {
|
|
28
|
+
}
|
|
29
|
+
export interface VxeLayoutHeaderPrivateComputed extends LayoutHeaderPrivateComputed { }
|
|
30
|
+
|
|
31
|
+
export interface LayoutHeaderReactData {
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface LayoutHeaderMethods {
|
|
35
|
+
}
|
|
36
|
+
export interface VxeLayoutHeaderMethods extends LayoutHeaderMethods { }
|
|
37
|
+
|
|
38
|
+
export interface LayoutHeaderPrivateMethods { }
|
|
39
|
+
export interface VxeLayoutHeaderPrivateMethods extends LayoutHeaderPrivateMethods { }
|
|
40
|
+
|
|
41
|
+
export type VxeLayoutHeaderEmits = []
|
|
42
|
+
|
|
43
|
+
export namespace VxeLayoutHeaderDefines {
|
|
44
|
+
export interface LayoutHeaderEventParams extends VxeComponentEvent {
|
|
45
|
+
$layoutHeader: VxeLayoutHeaderConstructor
|
|
46
|
+
}
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export type VxeBLayoutHeaderEventProps = {}
|
|
50
|
+
|
|
51
|
+
export interface VxeLayoutHeaderListeners { }
|
|
52
|
+
|
|
53
|
+
export namespace VxeLayoutHeaderEvents { }
|
|
54
|
+
|
|
55
|
+
export interface VxeLayoutHeaderSlots {
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export default VxeLayoutHeader
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
import { RenderFunction, SetupContext, Ref } from 'vue'
|
|
2
|
+
import { defineVxeComponent, VxeComponentBase, VxeComponentEvent } from '../tool'
|
|
3
|
+
|
|
4
|
+
/* eslint-disable no-use-before-define,@typescript-eslint/ban-types */
|
|
5
|
+
|
|
6
|
+
declare const VxeRow: defineVxeComponent<VxeRowProps, VxeRowEventProps>
|
|
7
|
+
|
|
8
|
+
export interface VxeRowConstructor extends VxeComponentBase, VxeRowMethods {
|
|
9
|
+
props: VxeRowProps
|
|
10
|
+
context: SetupContext<VxeRowEmits>
|
|
11
|
+
reactData: RowReactData
|
|
12
|
+
getRefMaps(): RowPrivateRef
|
|
13
|
+
getComputeMaps(): RowPrivateComputed
|
|
14
|
+
renderVN: RenderFunction
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export interface RowPrivateRef {
|
|
18
|
+
refElem: Ref<HTMLDivElement | undefined>
|
|
19
|
+
}
|
|
20
|
+
export interface VxeRowPrivateRef extends RowPrivateRef { }
|
|
21
|
+
|
|
22
|
+
export namespace VxeRowPropTypes {
|
|
23
|
+
export type Gutter = string | number | (string | number)[]
|
|
24
|
+
export type Wrap = boolean
|
|
25
|
+
export type Vertical = boolean
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export type VxeRowProps = {
|
|
29
|
+
gutter?: VxeRowPropTypes.Gutter
|
|
30
|
+
wrap?: VxeRowPropTypes.Wrap
|
|
31
|
+
vertical?: VxeRowPropTypes.Vertical
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
export interface RowPrivateComputed {
|
|
35
|
+
}
|
|
36
|
+
export interface VxeRowPrivateComputed extends RowPrivateComputed { }
|
|
37
|
+
|
|
38
|
+
export interface RowReactData {
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
export interface RowMethods {
|
|
42
|
+
}
|
|
43
|
+
export interface VxeRowMethods extends RowMethods { }
|
|
44
|
+
|
|
45
|
+
export interface RowPrivateMethods { }
|
|
46
|
+
export interface VxeRowPrivateMethods extends RowPrivateMethods { }
|
|
47
|
+
|
|
48
|
+
export type VxeRowEmits = []
|
|
49
|
+
|
|
50
|
+
export namespace VxeRowDefines {
|
|
51
|
+
export interface RowEventParams extends VxeComponentEvent {
|
|
52
|
+
$row: VxeRowConstructor
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export type VxeRowEventProps = {}
|
|
57
|
+
|
|
58
|
+
export interface VxeRowListeners { }
|
|
59
|
+
|
|
60
|
+
export namespace VxeRowEvents { }
|
|
61
|
+
|
|
62
|
+
export interface VxeRowSlots {
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export default VxeRow
|