vxe-pc-ui 0.0.2 → 0.1.0
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/es/anchor/src/anchor.js +1 -1
- package/es/anchor-link/index.js +1 -1
- package/es/{button-group → button}/src/button-group.js +2 -2
- package/es/button/src/button.js +3 -3
- package/es/button/style.css +17 -17
- package/es/button/style.min.css +1 -1
- package/es/button-group/index.js +1 -1
- package/es/checkbox/index.js +10 -0
- package/es/checkbox/src/checkbox.js +116 -0
- package/es/checkbox/src/group.js +108 -0
- package/es/checkbox/style.css +107 -0
- package/es/checkbox/style.min.css +1 -0
- package/es/checkbox-group/index.js +10 -0
- package/es/col/index.js +1 -1
- package/es/components.js +98 -35
- package/es/dynamics/index.js +27 -0
- package/es/form/index.js +8 -0
- package/es/form/src/form-config-item.js +178 -0
- package/es/form/src/form-gather.js +47 -0
- package/es/form/src/form-item.js +228 -0
- package/es/form/src/form.js +665 -0
- package/es/form/src/itemInfo.js +39 -0
- package/es/form/src/render.js +68 -0
- package/es/form/src/util.js +65 -0
- package/es/form/style.css +321 -0
- package/es/form/style.min.css +1 -0
- package/es/form-design/index.js +8 -0
- package/es/form-design/src/form-design.js +79 -0
- package/es/form-design/src/setting.js +12 -0
- package/es/form-design/src/util.js +8 -0
- package/es/form-design/src/view.js +113 -0
- package/es/form-design/src/widget.js +104 -0
- package/es/form-design/style.css +97 -0
- package/es/form-design/style.min.css +1 -0
- package/es/form-gather/index.js +8 -0
- package/es/form-item/index.js +8 -0
- package/es/icon/style.css +540 -1
- package/es/icon/style.min.css +1 -1
- package/es/input/index.js +10 -0
- package/es/input/src/date.js +41 -0
- package/es/input/src/input.js +2333 -0
- package/es/input/src/number.js +10 -0
- package/es/input/style.css +1000 -0
- package/es/input/style.min.css +1 -0
- package/es/layout-aside/style.css +1 -0
- package/es/layout-aside/style.min.css +1 -1
- package/es/layout-body/style.css +1 -0
- package/es/layout-body/style.min.css +1 -1
- package/es/layout-footer/style.css +1 -0
- package/es/layout-footer/style.min.css +1 -1
- package/es/layout-header/style.css +1 -0
- package/es/layout-header/style.min.css +1 -1
- package/es/list-design/index.js +8 -0
- package/es/{design/src/design.js → list-design/src/list-design.js} +7 -7
- package/es/loading/index.js +8 -0
- package/es/loading/src/loading.js +53 -0
- package/es/loading/style.css +75 -0
- package/es/loading/style.min.css +1 -0
- package/es/modal/index.js +96 -0
- package/es/modal/src/modal.js +876 -0
- package/es/modal/style.css +323 -0
- package/es/modal/style.min.css +1 -0
- package/es/optgroup/index.js +10 -0
- package/es/optgroup/style.css +0 -0
- package/es/optgroup/style.min.css +0 -0
- package/es/option/index.js +10 -0
- package/es/option/style.css +0 -0
- package/es/option/style.min.css +0 -0
- package/es/pager/index.js +10 -0
- package/es/pager/src/pager.js +539 -0
- package/es/pager/style.css +319 -0
- package/es/pager/style.min.css +1 -0
- package/es/pulldown/index.js +10 -0
- package/es/pulldown/src/pulldown.js +328 -0
- package/es/pulldown/style.css +57 -0
- package/es/pulldown/style.min.css +1 -0
- package/es/radio/index.js +10 -0
- package/es/radio/src/button.js +113 -0
- package/es/radio/src/group.js +93 -0
- package/es/radio/src/radio.js +118 -0
- package/es/radio/style.css +143 -0
- package/es/radio/style.min.css +1 -0
- package/es/radio-button/index.js +10 -0
- package/es/radio-button/style.css +0 -0
- package/es/radio-button/style.min.css +0 -0
- package/es/radio-group/index.js +10 -0
- package/es/radio-group/style.css +0 -0
- package/es/radio-group/style.min.css +0 -0
- package/es/select/index.js +10 -0
- package/es/select/src/optgroup.js +31 -0
- package/es/select/src/option.js +31 -0
- package/es/select/src/optionInfo.js +16 -0
- package/es/select/src/select.js +992 -0
- package/es/select/src/util.js +36 -0
- package/es/select/style.css +201 -0
- package/es/select/style.min.css +1 -0
- package/es/style.css +1 -1
- package/es/style.min.css +1 -1
- package/es/switch/index.js +10 -0
- package/es/switch/src/switch.js +151 -0
- package/es/switch/style.css +97 -0
- package/es/switch/style.min.css +1 -0
- package/es/textarea/index.js +10 -0
- package/es/textarea/src/textarea.js +245 -0
- package/es/textarea/style.css +102 -0
- package/es/textarea/style.min.css +1 -0
- package/es/tooltip/index.js +8 -0
- package/es/tooltip/src/tooltip.js +336 -0
- package/es/tooltip/style.css +103 -0
- package/es/tooltip/style.min.css +1 -0
- package/es/ui/src/core.js +12 -2
- package/es/ui/src/dom.js +20 -0
- package/es/ui/src/globalStore.js +119 -4
- package/es/ui/src/i18n.js +7 -0
- package/es/ui/src/log.js +2 -2
- package/es/ui/src/renderer.js +67 -0
- package/es/ui/src/store.js +41 -0
- package/es/ui/src/utils.js +10 -0
- package/es/ui/src/validators.js +5 -0
- package/es/ui/src/vn.js +10 -0
- package/es/vxe-button/style.css +17 -17
- package/es/vxe-button/style.min.css +1 -1
- package/es/vxe-checkbox/index.js +3 -0
- package/es/vxe-checkbox/style.css +107 -0
- package/es/vxe-checkbox/style.min.css +1 -0
- package/es/vxe-checkbox-group/index.js +3 -0
- package/es/vxe-checkbox-group/style.css +0 -0
- package/es/vxe-checkbox-group/style.min.css +0 -0
- package/es/vxe-form/index.js +3 -0
- package/es/vxe-form/style.css +321 -0
- package/es/vxe-form/style.min.css +1 -0
- package/es/vxe-form-design/index.js +3 -0
- package/es/vxe-form-design/style.css +97 -0
- package/es/vxe-form-design/style.min.css +1 -0
- package/es/vxe-form-gather/index.js +3 -0
- package/es/vxe-form-gather/style.css +0 -0
- package/es/vxe-form-gather/style.min.css +0 -0
- package/es/vxe-form-item/index.js +3 -0
- package/es/vxe-form-item/style.css +0 -0
- package/es/vxe-form-item/style.min.css +0 -0
- package/es/vxe-icon/style.css +540 -1
- package/es/vxe-icon/style.min.css +1 -1
- package/es/vxe-input/index.js +3 -0
- package/es/vxe-input/style.css +1000 -0
- package/es/vxe-input/style.min.css +1 -0
- package/es/vxe-layout-aside/style.css +1 -0
- package/es/vxe-layout-aside/style.min.css +1 -1
- package/es/vxe-layout-body/style.css +1 -0
- package/es/vxe-layout-body/style.min.css +1 -1
- package/es/vxe-layout-footer/style.css +1 -0
- package/es/vxe-layout-footer/style.min.css +1 -1
- package/es/vxe-layout-header/style.css +1 -0
- package/es/vxe-layout-header/style.min.css +1 -1
- package/es/vxe-list-design/index.js +3 -0
- package/es/vxe-list-design/style.css +0 -0
- package/es/vxe-list-design/style.min.css +0 -0
- package/es/vxe-loading/index.js +3 -0
- package/es/vxe-loading/style.css +75 -0
- package/es/vxe-loading/style.min.css +1 -0
- package/es/vxe-modal/index.js +3 -0
- package/es/vxe-modal/style.css +323 -0
- package/es/vxe-modal/style.min.css +1 -0
- package/es/vxe-optgroup/index.js +3 -0
- package/es/vxe-optgroup/style.css +0 -0
- package/es/vxe-optgroup/style.min.css +0 -0
- package/es/vxe-option/index.js +3 -0
- package/es/vxe-option/style.css +0 -0
- package/es/vxe-option/style.min.css +0 -0
- package/es/vxe-pager/index.js +3 -0
- package/es/vxe-pager/style.css +319 -0
- package/es/vxe-pager/style.min.css +1 -0
- package/es/vxe-pulldown/index.js +3 -0
- package/es/vxe-pulldown/style.css +57 -0
- package/es/vxe-pulldown/style.min.css +1 -0
- package/es/vxe-radio/index.js +3 -0
- package/es/vxe-radio/style.css +143 -0
- package/es/vxe-radio/style.min.css +1 -0
- package/es/vxe-radio-button/index.js +3 -0
- package/es/vxe-radio-button/style.css +0 -0
- package/es/vxe-radio-button/style.min.css +0 -0
- package/es/vxe-radio-group/index.js +3 -0
- package/es/vxe-radio-group/style.css +0 -0
- package/es/vxe-radio-group/style.min.css +0 -0
- package/es/vxe-select/index.js +3 -0
- package/es/vxe-select/style.css +201 -0
- package/es/vxe-select/style.min.css +1 -0
- package/es/vxe-switch/index.js +3 -0
- package/es/vxe-switch/style.css +97 -0
- package/es/vxe-switch/style.min.css +1 -0
- package/es/vxe-textarea/index.js +3 -0
- package/es/vxe-textarea/style.css +102 -0
- package/es/vxe-textarea/style.min.css +1 -0
- package/es/vxe-tooltip/index.js +3 -0
- package/es/vxe-tooltip/style.css +103 -0
- package/es/vxe-tooltip/style.min.css +1 -0
- package/lib/anchor/src/anchor.js +1 -1
- package/lib/anchor/src/anchor.min.js +1 -1
- package/lib/anchor-link/index.js +1 -1
- package/lib/anchor-link/index.min.js +1 -1
- package/lib/{button-group → button}/src/button-group.js +2 -2
- package/lib/button/src/button-group.min.js +1 -0
- package/lib/button/src/button.js +3 -3
- package/lib/button/src/button.min.js +1 -1
- package/lib/button/style/style.css +17 -17
- package/lib/button/style/style.min.css +1 -1
- package/lib/button-group/index.js +1 -1
- package/lib/button-group/index.min.js +1 -1
- package/lib/checkbox/index.js +17 -0
- package/lib/checkbox/index.min.js +1 -0
- package/lib/checkbox/src/checkbox.js +144 -0
- package/lib/checkbox/src/checkbox.min.js +1 -0
- package/lib/checkbox/src/group.js +129 -0
- package/lib/checkbox/src/group.min.js +1 -0
- package/lib/checkbox/style/style.css +107 -0
- package/lib/checkbox/style/style.min.css +1 -0
- package/lib/checkbox-group/index.js +17 -0
- package/lib/checkbox-group/index.min.js +1 -0
- package/lib/checkbox-group/style/style.css +0 -0
- package/lib/checkbox-group/style/style.min.css +0 -0
- package/lib/col/index.js +1 -1
- package/lib/col/index.min.js +1 -1
- package/lib/components.js +290 -63
- package/lib/components.min.js +1 -1
- package/lib/dynamics/index.js +36 -0
- package/lib/dynamics/index.min.js +1 -0
- package/lib/form/index.js +15 -0
- package/lib/form/index.min.js +1 -0
- package/lib/form/src/form-config-item.js +192 -0
- package/lib/form/src/form-config-item.min.js +1 -0
- package/lib/form/src/form-gather.js +57 -0
- package/lib/form/src/form-gather.min.js +1 -0
- package/lib/form/src/form-item.js +247 -0
- package/lib/form/src/form-item.min.js +1 -0
- package/lib/form/src/form.js +768 -0
- package/lib/form/src/form.min.js +1 -0
- package/lib/form/src/itemInfo.js +47 -0
- package/lib/form/src/itemInfo.min.js +1 -0
- package/lib/form/src/render.js +84 -0
- package/lib/form/src/render.min.js +1 -0
- package/lib/form/src/util.js +108 -0
- package/lib/form/src/util.min.js +1 -0
- package/lib/form/style/index.js +1 -0
- package/lib/form/style/style.css +321 -0
- package/lib/form/style/style.min.css +1 -0
- package/lib/form-design/index.js +15 -0
- package/lib/form-design/index.min.js +1 -0
- package/lib/form-design/src/form-design.js +87 -0
- package/lib/form-design/src/form-design.min.js +1 -0
- package/lib/form-design/src/setting.js +18 -0
- package/lib/form-design/src/setting.min.js +1 -0
- package/lib/form-design/src/util.js +17 -0
- package/lib/form-design/src/util.min.js +1 -0
- package/lib/form-design/src/view.js +147 -0
- package/lib/form-design/src/view.min.js +1 -0
- package/lib/form-design/src/widget.js +114 -0
- package/lib/form-design/src/widget.min.js +1 -0
- package/lib/form-design/style/index.js +1 -0
- package/lib/form-design/style/style.css +97 -0
- package/lib/form-design/style/style.min.css +1 -0
- package/lib/form-gather/index.js +15 -0
- package/lib/form-gather/index.min.js +1 -0
- package/lib/form-gather/style/index.js +1 -0
- package/lib/form-gather/style/style.css +0 -0
- package/lib/form-gather/style/style.min.css +0 -0
- package/lib/form-item/index.js +15 -0
- package/lib/form-item/index.min.js +1 -0
- package/lib/form-item/style/index.js +1 -0
- package/lib/form-item/style/style.css +0 -0
- package/lib/form-item/style/style.min.css +0 -0
- package/lib/icon/style/style.css +540 -1
- package/lib/icon/style/style.min.css +1 -1
- package/lib/index.umd.js +10741 -782
- package/lib/index.umd.min.js +1 -1
- package/lib/input/index.js +17 -0
- package/lib/input/index.min.js +1 -0
- package/lib/input/src/date.js +46 -0
- package/lib/input/src/date.min.js +1 -0
- package/lib/input/src/input.js +2546 -0
- package/lib/input/src/input.min.js +1 -0
- package/lib/input/src/number.js +18 -0
- package/lib/input/src/number.min.js +1 -0
- package/lib/input/style/index.js +1 -0
- package/lib/input/style/style.css +1000 -0
- package/lib/input/style/style.min.css +1 -0
- package/lib/layout-aside/style/style.css +1 -0
- package/lib/layout-aside/style/style.min.css +1 -1
- package/lib/layout-body/style/style.css +1 -0
- package/lib/layout-body/style/style.min.css +1 -1
- package/lib/layout-footer/style/style.css +1 -0
- package/lib/layout-footer/style/style.min.css +1 -1
- package/lib/layout-header/style/style.css +1 -0
- package/lib/layout-header/style/style.min.css +1 -1
- package/lib/list-design/index.js +15 -0
- package/lib/list-design/index.min.js +1 -0
- package/lib/{design/src/design.js → list-design/src/list-design.js} +7 -7
- package/lib/list-design/src/list-design.min.js +1 -0
- package/lib/list-design/style/index.js +1 -0
- package/lib/list-design/style/style.css +0 -0
- package/lib/list-design/style/style.min.css +0 -0
- package/lib/loading/index.js +15 -0
- package/lib/loading/index.min.js +1 -0
- package/lib/loading/src/loading.js +49 -0
- package/lib/loading/src/loading.min.js +1 -0
- package/lib/loading/style/index.js +1 -0
- package/lib/loading/style/style.css +75 -0
- package/lib/loading/style/style.min.css +1 -0
- package/lib/modal/index.js +110 -0
- package/lib/modal/index.min.js +1 -0
- package/lib/modal/src/modal.js +1064 -0
- package/lib/modal/src/modal.min.js +1 -0
- package/lib/modal/style/index.js +1 -0
- package/lib/modal/style/style.css +323 -0
- package/lib/modal/style/style.min.css +1 -0
- package/lib/optgroup/index.js +17 -0
- package/lib/optgroup/index.min.js +1 -0
- package/lib/optgroup/style/index.js +1 -0
- package/lib/optgroup/style/style.css +0 -0
- package/lib/optgroup/style/style.min.css +0 -0
- package/lib/option/index.js +17 -0
- package/lib/option/index.min.js +1 -0
- package/lib/option/style/index.js +1 -0
- package/lib/option/style/style.css +0 -0
- package/lib/option/style/style.min.css +0 -0
- package/lib/pager/index.js +17 -0
- package/lib/pager/index.min.js +1 -0
- package/lib/pager/src/pager.js +593 -0
- package/lib/pager/src/pager.min.js +1 -0
- package/lib/pager/style/index.js +1 -0
- package/lib/pager/style/style.css +319 -0
- package/lib/pager/style/style.min.css +1 -0
- package/lib/pulldown/index.js +17 -0
- package/lib/pulldown/index.min.js +1 -0
- package/lib/pulldown/src/pulldown.js +359 -0
- package/lib/pulldown/src/pulldown.min.js +1 -0
- package/lib/pulldown/style/index.js +1 -0
- package/lib/pulldown/style/style.css +57 -0
- package/lib/pulldown/style/style.min.css +1 -0
- package/lib/radio/index.js +17 -0
- package/lib/radio/index.min.js +1 -0
- package/lib/radio/src/button.js +135 -0
- package/lib/radio/src/button.min.js +1 -0
- package/lib/radio/src/group.js +108 -0
- package/lib/radio/src/group.min.js +1 -0
- package/lib/radio/src/radio.js +139 -0
- package/lib/radio/src/radio.min.js +1 -0
- package/lib/radio/style/index.js +1 -0
- package/lib/radio/style/style.css +143 -0
- package/lib/radio/style/style.min.css +1 -0
- package/lib/radio-button/index.js +17 -0
- package/lib/radio-button/index.min.js +1 -0
- package/lib/radio-button/style/index.js +1 -0
- package/lib/radio-button/style/style.css +0 -0
- package/lib/radio-button/style/style.min.css +0 -0
- package/lib/radio-group/index.js +17 -0
- package/lib/radio-group/index.min.js +1 -0
- package/lib/radio-group/style/index.js +1 -0
- package/lib/radio-group/style/style.css +0 -0
- package/lib/radio-group/style/style.min.css +0 -0
- package/lib/select/index.js +17 -0
- package/lib/select/index.min.js +1 -0
- package/lib/select/src/optgroup.js +47 -0
- package/lib/select/src/optgroup.min.js +1 -0
- package/lib/select/src/option.js +45 -0
- package/lib/select/src/option.min.js +1 -0
- package/lib/select/src/optionInfo.js +24 -0
- package/lib/select/src/optionInfo.min.js +1 -0
- package/lib/select/src/select.js +1104 -0
- package/lib/select/src/select.min.js +1 -0
- package/lib/select/src/util.js +57 -0
- package/lib/select/src/util.min.js +1 -0
- package/lib/select/style/index.js +1 -0
- package/lib/select/style/style.css +201 -0
- package/lib/select/style/style.min.css +1 -0
- package/lib/style.css +1 -1
- package/lib/style.min.css +1 -1
- package/lib/switch/index.js +17 -0
- package/lib/switch/index.min.js +1 -0
- package/lib/switch/src/switch.js +161 -0
- package/lib/switch/src/switch.min.js +1 -0
- package/lib/switch/style/index.js +1 -0
- package/lib/switch/style/style.css +97 -0
- package/lib/switch/style/style.min.css +1 -0
- package/lib/textarea/index.js +17 -0
- package/lib/textarea/index.min.js +1 -0
- package/lib/textarea/src/textarea.js +298 -0
- package/lib/textarea/src/textarea.min.js +1 -0
- package/lib/textarea/style/index.js +1 -0
- package/lib/textarea/style/style.css +102 -0
- package/lib/textarea/style/style.min.css +1 -0
- package/lib/tooltip/index.js +15 -0
- package/lib/tooltip/index.min.js +1 -0
- package/lib/tooltip/src/tooltip.js +418 -0
- package/lib/tooltip/src/tooltip.min.js +1 -0
- package/lib/tooltip/style/index.js +1 -0
- package/lib/tooltip/style/style.css +103 -0
- package/lib/tooltip/style/style.min.css +1 -0
- package/lib/ui/src/core.js +49 -2
- package/lib/ui/src/core.min.js +1 -1
- package/lib/ui/src/dom.js +22 -0
- package/lib/ui/src/dom.min.js +1 -1
- package/lib/ui/src/globalStore.js +119 -4
- package/lib/ui/src/globalStore.min.js +1 -1
- package/lib/ui/src/i18n.js +14 -0
- package/lib/ui/src/i18n.min.js +1 -0
- package/lib/ui/src/log.js +2 -3
- package/lib/ui/src/log.min.js +1 -1
- package/lib/ui/src/renderer.js +77 -0
- package/lib/ui/src/renderer.min.js +1 -0
- package/lib/ui/src/store.js +49 -0
- package/lib/ui/src/store.min.js +1 -0
- package/lib/ui/src/utils.js +12 -0
- package/lib/ui/src/utils.min.js +1 -1
- package/lib/ui/src/validators.js +14 -0
- package/lib/ui/src/validators.min.js +1 -0
- package/lib/ui/src/vn.js +18 -0
- package/lib/ui/src/vn.min.js +1 -0
- package/lib/vxe-button/style/style.css +17 -17
- package/lib/vxe-button/style/style.min.css +1 -1
- package/lib/vxe-checkbox/index.js +22 -0
- package/lib/vxe-checkbox/index.min.js +1 -0
- package/lib/vxe-checkbox/style/index.js +1 -0
- package/lib/vxe-checkbox/style/style.css +107 -0
- package/lib/vxe-checkbox/style/style.min.css +1 -0
- package/lib/vxe-checkbox-group/index.js +22 -0
- package/lib/vxe-checkbox-group/index.min.js +1 -0
- package/lib/vxe-checkbox-group/style/index.js +1 -0
- package/lib/vxe-checkbox-group/style/style.css +0 -0
- package/lib/vxe-checkbox-group/style/style.min.css +0 -0
- package/lib/{vxe-design → vxe-form}/index.js +5 -5
- package/lib/vxe-form/index.min.js +1 -0
- package/lib/vxe-form/style/index.js +1 -0
- package/lib/vxe-form/style/style.css +321 -0
- package/lib/vxe-form/style/style.min.css +1 -0
- package/lib/vxe-form-design/index.js +22 -0
- package/lib/vxe-form-design/index.min.js +1 -0
- package/lib/vxe-form-design/style/index.js +1 -0
- package/lib/vxe-form-design/style/style.css +97 -0
- package/lib/vxe-form-design/style/style.min.css +1 -0
- package/lib/vxe-form-gather/index.js +22 -0
- package/lib/vxe-form-gather/index.min.js +1 -0
- package/lib/vxe-form-gather/style/index.js +1 -0
- package/lib/vxe-form-gather/style/style.css +0 -0
- package/lib/vxe-form-gather/style/style.min.css +0 -0
- package/lib/vxe-form-item/index.js +22 -0
- package/lib/vxe-form-item/index.min.js +1 -0
- package/lib/vxe-form-item/style/index.js +1 -0
- package/lib/vxe-form-item/style/style.css +0 -0
- package/lib/vxe-form-item/style/style.min.css +0 -0
- package/lib/vxe-icon/style/style.css +540 -1
- package/lib/vxe-icon/style/style.min.css +1 -1
- package/lib/vxe-input/index.js +22 -0
- package/lib/vxe-input/index.min.js +1 -0
- package/lib/vxe-input/style/index.js +1 -0
- package/lib/vxe-input/style/style.css +1000 -0
- package/lib/vxe-input/style/style.min.css +1 -0
- package/lib/vxe-layout-aside/style/style.css +1 -0
- package/lib/vxe-layout-aside/style/style.min.css +1 -1
- package/lib/vxe-layout-body/style/style.css +1 -0
- package/lib/vxe-layout-body/style/style.min.css +1 -1
- package/lib/vxe-layout-footer/style/style.css +1 -0
- package/lib/vxe-layout-footer/style/style.min.css +1 -1
- package/lib/vxe-layout-header/style/style.css +1 -0
- package/lib/vxe-layout-header/style/style.min.css +1 -1
- package/lib/vxe-list-design/index.js +22 -0
- package/lib/vxe-list-design/index.min.js +1 -0
- package/lib/vxe-list-design/style/index.js +1 -0
- package/lib/vxe-list-design/style/style.css +0 -0
- package/lib/vxe-list-design/style/style.min.css +0 -0
- package/lib/vxe-loading/index.js +22 -0
- package/lib/vxe-loading/index.min.js +1 -0
- package/lib/vxe-loading/style/index.js +1 -0
- package/lib/vxe-loading/style/style.css +75 -0
- package/lib/vxe-loading/style/style.min.css +1 -0
- package/lib/vxe-modal/index.js +22 -0
- package/lib/vxe-modal/index.min.js +1 -0
- package/lib/vxe-modal/style/index.js +1 -0
- package/lib/vxe-modal/style/style.css +323 -0
- package/lib/vxe-modal/style/style.min.css +1 -0
- package/lib/vxe-optgroup/index.js +22 -0
- package/lib/vxe-optgroup/index.min.js +1 -0
- package/lib/vxe-optgroup/style/index.js +1 -0
- package/lib/vxe-optgroup/style/style.css +0 -0
- package/lib/vxe-optgroup/style/style.min.css +0 -0
- package/lib/vxe-option/index.js +22 -0
- package/lib/vxe-option/index.min.js +1 -0
- package/lib/vxe-option/style/index.js +1 -0
- package/lib/vxe-option/style/style.css +0 -0
- package/lib/vxe-option/style/style.min.css +0 -0
- package/lib/vxe-pager/index.js +22 -0
- package/lib/vxe-pager/index.min.js +1 -0
- package/lib/vxe-pager/style/index.js +1 -0
- package/lib/vxe-pager/style/style.css +319 -0
- package/lib/vxe-pager/style/style.min.css +1 -0
- package/lib/vxe-pulldown/index.js +22 -0
- package/lib/vxe-pulldown/index.min.js +1 -0
- package/lib/vxe-pulldown/style/index.js +1 -0
- package/lib/vxe-pulldown/style/style.css +57 -0
- package/lib/vxe-pulldown/style/style.min.css +1 -0
- package/lib/vxe-radio/index.js +22 -0
- package/lib/vxe-radio/index.min.js +1 -0
- package/lib/vxe-radio/style/index.js +1 -0
- package/lib/vxe-radio/style/style.css +143 -0
- package/lib/vxe-radio/style/style.min.css +1 -0
- package/lib/vxe-radio-button/index.js +22 -0
- package/lib/vxe-radio-button/index.min.js +1 -0
- package/lib/vxe-radio-button/style/index.js +1 -0
- package/lib/vxe-radio-button/style/style.css +0 -0
- package/lib/vxe-radio-button/style/style.min.css +0 -0
- package/lib/vxe-radio-group/index.js +22 -0
- package/lib/vxe-radio-group/index.min.js +1 -0
- package/lib/vxe-radio-group/style/index.js +1 -0
- package/lib/vxe-radio-group/style/style.css +0 -0
- package/lib/vxe-radio-group/style/style.min.css +0 -0
- package/lib/vxe-select/index.js +22 -0
- package/lib/vxe-select/index.min.js +1 -0
- package/lib/vxe-select/style/index.js +1 -0
- package/lib/vxe-select/style/style.css +201 -0
- package/lib/vxe-select/style/style.min.css +1 -0
- package/lib/vxe-switch/index.js +22 -0
- package/lib/vxe-switch/index.min.js +1 -0
- package/lib/vxe-switch/style/index.js +1 -0
- package/lib/vxe-switch/style/style.css +97 -0
- package/lib/vxe-switch/style/style.min.css +1 -0
- package/lib/vxe-textarea/index.js +22 -0
- package/lib/vxe-textarea/index.min.js +1 -0
- package/lib/vxe-textarea/style/index.js +1 -0
- package/lib/vxe-textarea/style/style.css +102 -0
- package/lib/vxe-textarea/style/style.min.css +1 -0
- package/lib/vxe-tooltip/index.js +22 -0
- package/lib/vxe-tooltip/index.min.js +1 -0
- package/lib/vxe-tooltip/style/index.js +1 -0
- package/lib/vxe-tooltip/style/style.css +103 -0
- package/lib/vxe-tooltip/style/style.min.css +1 -0
- package/package.json +1 -1
- package/packages/anchor/src/anchor.ts +1 -1
- package/packages/anchor-link/index.ts +1 -1
- package/packages/{button-group → button}/src/button-group.ts +2 -2
- package/packages/button/src/button.ts +3 -3
- package/packages/button-group/index.ts +1 -1
- package/packages/checkbox/index.ts +15 -0
- package/packages/checkbox/src/checkbox.ts +131 -0
- package/packages/checkbox/src/group.ts +127 -0
- package/packages/checkbox-group/index.ts +15 -0
- package/packages/col/index.ts +1 -1
- package/packages/components.ts +100 -35
- package/packages/dynamics/index.ts +34 -0
- package/packages/form/index.ts +11 -0
- package/packages/form/src/form-config-item.ts +193 -0
- package/packages/form/src/form-gather.ts +60 -0
- package/packages/form/src/form-item.ts +253 -0
- package/packages/form/src/form.ts +716 -0
- package/packages/form/src/itemInfo.ts +43 -0
- package/packages/form/src/render.ts +83 -0
- package/packages/form/src/util.ts +79 -0
- package/packages/form-design/index.ts +11 -0
- package/packages/form-design/src/form-design.ts +99 -0
- package/packages/form-design/src/setting.ts +13 -0
- package/packages/form-design/src/util.ts +10 -0
- package/packages/form-design/src/view.ts +125 -0
- package/packages/form-design/src/widget.ts +117 -0
- package/packages/form-gather/index.ts +11 -0
- package/packages/form-item/index.ts +11 -0
- package/packages/icon/src/icon.ts +1 -1
- package/packages/input/index.ts +15 -0
- package/packages/input/src/date.ts +42 -0
- package/packages/input/src/input.ts +2480 -0
- package/packages/input/src/number.ts +12 -0
- package/packages/list-design/index.ts +11 -0
- package/packages/list-design/src/list-design.ts +55 -0
- package/packages/loading/index.ts +11 -0
- package/packages/loading/src/loading.ts +56 -0
- package/packages/modal/index.ts +110 -0
- package/packages/modal/src/modal.ts +950 -0
- package/packages/optgroup/index.ts +15 -0
- package/packages/option/index.ts +15 -0
- package/packages/pager/index.ts +15 -0
- package/packages/pager/src/pager.ts +595 -0
- package/packages/pulldown/index.ts +15 -0
- package/packages/pulldown/src/pulldown.ts +349 -0
- package/packages/radio/index.ts +15 -0
- package/packages/radio/src/button.ts +132 -0
- package/packages/radio/src/group.ts +110 -0
- package/packages/radio/src/radio.ts +137 -0
- package/packages/radio-button/index.ts +15 -0
- package/packages/radio-group/index.ts +15 -0
- package/packages/select/index.ts +15 -0
- package/packages/select/src/optgroup.ts +39 -0
- package/packages/select/src/option.ts +38 -0
- package/packages/select/src/optionInfo.ts +20 -0
- package/packages/select/src/select.ts +1034 -0
- package/packages/select/src/util.ts +47 -0
- package/packages/switch/index.ts +15 -0
- package/packages/switch/src/switch.ts +171 -0
- package/packages/textarea/index.ts +15 -0
- package/packages/textarea/src/textarea.ts +273 -0
- package/packages/tooltip/index.ts +11 -0
- package/packages/tooltip/src/tooltip.ts +360 -0
- package/packages/ui/src/core.ts +13 -1
- package/packages/ui/src/dom.ts +23 -0
- package/packages/ui/src/globalStore.ts +122 -5
- package/packages/ui/src/i18n.ts +8 -0
- package/packages/ui/src/log.ts +2 -2
- package/packages/ui/src/renderer.ts +71 -0
- package/packages/ui/src/store.ts +49 -0
- package/packages/ui/src/utils.ts +12 -0
- package/packages/ui/src/validators.ts +9 -0
- package/packages/ui/src/vn.ts +14 -0
- package/styles/all.scss +30 -10
- package/styles/base/common.scss +13 -0
- package/styles/components/button.scss +8 -8
- package/styles/components/checkbox-group.scss +0 -0
- package/styles/components/checkbox.scss +91 -0
- package/styles/components/form-design.scss +93 -0
- package/styles/components/form-gather.scss +0 -0
- package/styles/components/form-item.scss +0 -0
- package/styles/components/form.scss +339 -0
- package/styles/components/icon.scss +3 -1
- package/styles/components/input.scss +911 -0
- package/styles/components/layout-aside.scss +1 -0
- package/styles/components/layout-body.scss +1 -0
- package/styles/components/layout-footer.scss +1 -0
- package/styles/components/layout-header.scss +1 -0
- package/styles/components/list-design.scss +0 -0
- package/styles/components/list.scss +26 -0
- package/styles/components/loading.scss +84 -0
- package/styles/components/modal.scss +383 -0
- package/styles/components/old-icon.scss +712 -0
- package/styles/components/optgroup.scss +0 -0
- package/styles/components/option.scss +0 -0
- package/styles/components/pager.scss +287 -0
- package/styles/components/pulldown.scss +55 -0
- package/styles/components/radio-button.scss +0 -0
- package/styles/components/radio-group.scss +0 -0
- package/styles/components/radio.scss +149 -0
- package/styles/components/select.scss +226 -0
- package/styles/components/switch.scss +113 -0
- package/styles/components/textarea.scss +102 -0
- package/styles/components/tooltip.scss +124 -0
- package/styles/helpers/mixin.scss +12 -12
- package/styles/theme/base.scss +143 -6
- package/types/all.d.ts +66 -33
- package/types/{component → components}/anchor-link.d.ts +17 -2
- package/types/{component → components}/anchor.d.ts +10 -2
- package/types/{component → components}/breadcrumb-item.d.ts +12 -1
- package/types/{component → components}/breadcrumb.d.ts +10 -2
- package/types/{component → components}/button-group.d.ts +11 -3
- package/types/{component → components}/button.d.ts +14 -3
- package/types/components/checkbox-group.d.ts +112 -0
- package/types/components/checkbox.d.ts +119 -0
- package/types/{component → components}/col.d.ts +9 -1
- package/types/components/form-design.d.ts +88 -0
- package/types/components/form-gather.d.ts +75 -0
- package/types/components/form-item.d.ts +231 -0
- package/types/components/form.d.ts +349 -0
- package/types/{component → components}/icon.d.ts +7 -2
- package/types/components/input.d.ts +375 -0
- package/types/{component → components}/layout-aside.d.ts +10 -2
- package/types/{component → components}/layout-body.d.ts +10 -2
- package/types/{component → components}/layout-container.d.ts +10 -2
- package/types/{component → components}/layout-footer.d.ts +10 -2
- package/types/{component → components}/layout-header.d.ts +7 -1
- package/types/components/list-design.d.ts +67 -0
- package/types/components/loading.d.ts +66 -0
- package/types/components/modal.d.ts +381 -0
- package/types/components/optgroup.d.ts +80 -0
- package/types/components/option.d.ts +99 -0
- package/types/components/pager.d.ts +208 -0
- package/types/components/pulldown.d.ts +134 -0
- package/types/components/radio-button.d.ts +99 -0
- package/types/components/radio-group.d.ts +107 -0
- package/types/components/radio.d.ts +119 -0
- package/types/{component → components}/row.d.ts +10 -2
- package/types/components/select.d.ts +274 -0
- package/types/components/switch.d.ts +118 -0
- package/types/components/textarea.d.ts +212 -0
- package/types/components/tooltip.d.ts +122 -0
- package/types/ui/global-config.d.ts +43 -6
- package/types/ui/global-icon.d.ts +80 -10
- package/types/ui/index.d.ts +25 -2
- package/types/ui/renderer.d.ts +239 -0
- package/types/ui/validators.d.ts +26 -0
- package/es/design/index.js +0 -8
- package/es/vxe-design/index.js +0 -3
- package/lib/button-group/src/button-group.min.js +0 -1
- package/lib/design/index.js +0 -15
- package/lib/design/index.min.js +0 -1
- package/lib/design/src/design.min.js +0 -1
- package/lib/vxe-design/index.min.js +0 -1
- package/packages/design/index.ts +0 -11
- package/packages/design/src/design.ts +0 -55
- package/styles/components/design.scss +0 -1
- package/types/component/design.d.ts +0 -63
- /package/es/{anchor-link → anchor}/src/anchor-link.js +0 -0
- /package/es/{anchor-link → anchor}/src/util.js +0 -0
- /package/es/{design → checkbox-group}/style.css +0 -0
- /package/es/{design → checkbox-group}/style.min.css +0 -0
- /package/es/{vxe-design → form-gather}/style.css +0 -0
- /package/es/{vxe-design → form-gather}/style.min.css +0 -0
- /package/{lib/design/style → es/form-item}/style.css +0 -0
- /package/{lib/design/style → es/form-item}/style.min.css +0 -0
- /package/{lib/vxe-design/style → es/list-design}/style.css +0 -0
- /package/{lib/vxe-design/style → es/list-design}/style.min.css +0 -0
- /package/es/{col → row}/src/col.js +0 -0
- /package/lib/{anchor-link → anchor}/src/anchor-link.js +0 -0
- /package/lib/{anchor-link → anchor}/src/anchor-link.min.js +0 -0
- /package/lib/{anchor-link → anchor}/src/util.js +0 -0
- /package/lib/{anchor-link → anchor}/src/util.min.js +0 -0
- /package/lib/{vxe-design → checkbox}/style/index.js +0 -0
- /package/lib/{design → checkbox-group}/style/index.js +0 -0
- /package/lib/{col → row}/src/col.js +0 -0
- /package/lib/{col → row}/src/col.min.js +0 -0
- /package/packages/{anchor-link → anchor}/src/anchor-link.ts +0 -0
- /package/packages/{anchor-link → anchor}/src/util.ts +0 -0
- /package/packages/{col → row}/src/col.ts +0 -0
|
@@ -0,0 +1,375 @@
|
|
|
1
|
+
import { RenderFunction, SetupContext, Ref, ComponentPublicInstance } from 'vue'
|
|
2
|
+
import { defineVxeComponent, VxeComponentBase, VxeComponentEvent, VxeComponentStyle, VxeComponentSize } from '../tool'
|
|
3
|
+
|
|
4
|
+
/* eslint-disable no-use-before-define,@typescript-eslint/ban-types */
|
|
5
|
+
|
|
6
|
+
export declare const VxeInput: defineVxeComponent<VxeInputProps, VxeInputEventProps>
|
|
7
|
+
|
|
8
|
+
export type VxeInputInstance = ComponentPublicInstance<VxeInputProps, VxeInputConstructor>
|
|
9
|
+
|
|
10
|
+
export interface VxeInputConstructor extends VxeComponentBase, VxeInputMethods {
|
|
11
|
+
props: VxeInputProps
|
|
12
|
+
context: SetupContext<VxeInputEmits>
|
|
13
|
+
reactData: InputReactData
|
|
14
|
+
getRefMaps(): InputPrivateRef
|
|
15
|
+
getComputeMaps(): InputPrivateComputed
|
|
16
|
+
renderVN: RenderFunction
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export interface InputPrivateRef {
|
|
20
|
+
refElem: Ref<HTMLDivElement | undefined>
|
|
21
|
+
refInput: Ref<HTMLInputElement>
|
|
22
|
+
}
|
|
23
|
+
export interface VxeInputPrivateRef extends InputPrivateRef { }
|
|
24
|
+
|
|
25
|
+
export namespace VxeInputPropTypes {
|
|
26
|
+
export type Size = VxeComponentSize
|
|
27
|
+
export type ModelValue = string | number | Date | null
|
|
28
|
+
export type ClassName = string
|
|
29
|
+
export type Immediate = boolean
|
|
30
|
+
export type Name = string
|
|
31
|
+
export type Type = 'text' | 'search' | 'number' | 'integer' | 'float' | 'password' | 'date' | 'time' | 'datetime' | 'week' | 'month' | 'quarter' | 'year'
|
|
32
|
+
export type Clearable = boolean
|
|
33
|
+
export type Readonly = boolean
|
|
34
|
+
export type Disabled = boolean
|
|
35
|
+
export type Placeholder = string
|
|
36
|
+
export type Maxlength = string | number
|
|
37
|
+
export type Multiple = boolean
|
|
38
|
+
export type ShowWordCount = boolean
|
|
39
|
+
export type CountMethod = (params: {
|
|
40
|
+
value: string
|
|
41
|
+
}) => number
|
|
42
|
+
export type Autocomplete = string
|
|
43
|
+
export type Align = string
|
|
44
|
+
export type Form = string
|
|
45
|
+
export type Min = string | number
|
|
46
|
+
export type Max = string | number
|
|
47
|
+
export type Step = string | number
|
|
48
|
+
export type Exponential = boolean
|
|
49
|
+
export type Controls = boolean
|
|
50
|
+
export type Digits = string | number
|
|
51
|
+
export type StartDate = string | number | Date
|
|
52
|
+
export type EndDate = string | number | Date
|
|
53
|
+
export type MinDate = string | number | Date
|
|
54
|
+
export type MaxDate = string | number | Date
|
|
55
|
+
export type StartDay = 0 | 1 | 2 | 3 | 4 | 5 | 6
|
|
56
|
+
export type SelectDay = 0 | 1 | 2 | 3 | 4 | 5 | 6
|
|
57
|
+
export type LabelFormat = string
|
|
58
|
+
export type ValueFormat = string
|
|
59
|
+
export type Editable = boolean
|
|
60
|
+
export type FestivalMethod = (params: VxeInputDefines.DateFestivalParams) => VxeInputDefines.DateFestivalInfo | null | void
|
|
61
|
+
export type DisabledMethod = (params: VxeInputDefines.DateDisabledParams) => boolean
|
|
62
|
+
export type PrefixIcon = string
|
|
63
|
+
export type SuffixIcon = string
|
|
64
|
+
export type Placement = 'top' | 'bottom' | '' | null
|
|
65
|
+
export type Transfer = boolean
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
type DatePanelType = 'year' | 'quarter' | 'month' | 'week' | 'day'
|
|
69
|
+
|
|
70
|
+
export type VxeInputProps = {
|
|
71
|
+
size?: VxeInputPropTypes.Size
|
|
72
|
+
modelValue?: VxeInputPropTypes.ModelValue
|
|
73
|
+
className?: VxeInputPropTypes.ClassName
|
|
74
|
+
immediate?: VxeInputPropTypes.Immediate
|
|
75
|
+
name?: VxeInputPropTypes.Name
|
|
76
|
+
type?: VxeInputPropTypes.Type
|
|
77
|
+
clearable?: VxeInputPropTypes.Clearable
|
|
78
|
+
readonly?: VxeInputPropTypes.Readonly
|
|
79
|
+
disabled?: VxeInputPropTypes.Disabled
|
|
80
|
+
placeholder?: VxeInputPropTypes.Placeholder
|
|
81
|
+
maxlength?: VxeInputPropTypes.Maxlength
|
|
82
|
+
multiple?: VxeInputPropTypes.Multiple
|
|
83
|
+
/**
|
|
84
|
+
* 是否显示字数统计
|
|
85
|
+
*/
|
|
86
|
+
showWordCount?: VxeInputPropTypes.ShowWordCount
|
|
87
|
+
/**
|
|
88
|
+
* 自定义字数统计方法
|
|
89
|
+
*/
|
|
90
|
+
countMethod?: VxeInputPropTypes.CountMethod
|
|
91
|
+
autocomplete?: VxeInputPropTypes.Autocomplete
|
|
92
|
+
align?: VxeInputPropTypes.Align
|
|
93
|
+
form?: VxeInputPropTypes.Form
|
|
94
|
+
|
|
95
|
+
// number、integer、float
|
|
96
|
+
min?: VxeInputPropTypes.Min
|
|
97
|
+
max?: VxeInputPropTypes.Max
|
|
98
|
+
step?: VxeInputPropTypes.Step
|
|
99
|
+
exponential?: VxeInputPropTypes.Exponential
|
|
100
|
+
|
|
101
|
+
// number、integer、float、password
|
|
102
|
+
controls?: VxeInputPropTypes.Controls
|
|
103
|
+
|
|
104
|
+
// float
|
|
105
|
+
digits?: VxeInputPropTypes.Digits
|
|
106
|
+
|
|
107
|
+
// date、week、month、quarter、year
|
|
108
|
+
startDate?: VxeInputPropTypes.StartDate
|
|
109
|
+
endDate?: VxeInputPropTypes.EndDate
|
|
110
|
+
minDate?: VxeInputPropTypes.MinDate
|
|
111
|
+
maxDate?: VxeInputPropTypes.MaxDate
|
|
112
|
+
/**
|
|
113
|
+
* @deprecated
|
|
114
|
+
*/
|
|
115
|
+
startWeek?: VxeInputPropTypes.StartDay
|
|
116
|
+
startDay?: VxeInputPropTypes.StartDay
|
|
117
|
+
labelFormat?: VxeInputPropTypes.LabelFormat
|
|
118
|
+
valueFormat?: VxeInputPropTypes.ValueFormat
|
|
119
|
+
editable?: VxeInputPropTypes.Editable
|
|
120
|
+
festivalMethod?: VxeInputPropTypes.FestivalMethod
|
|
121
|
+
disabledMethod?: VxeInputPropTypes.DisabledMethod
|
|
122
|
+
|
|
123
|
+
// week
|
|
124
|
+
selectDay?: VxeInputPropTypes.SelectDay
|
|
125
|
+
|
|
126
|
+
prefixIcon?: VxeInputPropTypes.PrefixIcon
|
|
127
|
+
suffixIcon?: VxeInputPropTypes.SuffixIcon
|
|
128
|
+
placement?: VxeInputPropTypes.Placement
|
|
129
|
+
transfer?: VxeInputPropTypes.Transfer
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
export interface InputPrivateComputed {
|
|
133
|
+
}
|
|
134
|
+
export interface VxeInputPrivateComputed extends InputPrivateComputed { }
|
|
135
|
+
|
|
136
|
+
export interface InputReactData {
|
|
137
|
+
inited: boolean
|
|
138
|
+
panelIndex: number
|
|
139
|
+
showPwd: boolean
|
|
140
|
+
visiblePanel: boolean
|
|
141
|
+
animatVisible: boolean
|
|
142
|
+
panelStyle: VxeComponentStyle | null
|
|
143
|
+
panelPlacement: VxeInputPropTypes.Placement
|
|
144
|
+
isActivated: boolean
|
|
145
|
+
inputValue: any
|
|
146
|
+
datetimePanelValue: any
|
|
147
|
+
datePanelValue: Date | null
|
|
148
|
+
datePanelLabel: string
|
|
149
|
+
datePanelType: DatePanelType
|
|
150
|
+
selectMonth: any
|
|
151
|
+
currentDate: any
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
export interface InputMethods {
|
|
155
|
+
dispatchEvent: (type: ValueOf<VxeInputEmits>, params: any, evnt?: Event | { type: string }) => void
|
|
156
|
+
/**
|
|
157
|
+
* 获取焦点
|
|
158
|
+
*/
|
|
159
|
+
focus(): Promise<any>
|
|
160
|
+
/**
|
|
161
|
+
* 失去焦点
|
|
162
|
+
*/
|
|
163
|
+
blur(): Promise<any>
|
|
164
|
+
/**
|
|
165
|
+
* 选中内容
|
|
166
|
+
*/
|
|
167
|
+
select(): Promise<any>
|
|
168
|
+
/**
|
|
169
|
+
* 弹出面板,用于带下拉面板的功能,
|
|
170
|
+
*/
|
|
171
|
+
showPanel(): Promise<any>
|
|
172
|
+
/**
|
|
173
|
+
* 关闭面板,用于带下拉面板的功能,
|
|
174
|
+
*/
|
|
175
|
+
hidePanel(): Promise<any>
|
|
176
|
+
updatePlacement(): Promise<any>
|
|
177
|
+
}
|
|
178
|
+
export interface VxeInputMethods extends InputMethods { }
|
|
179
|
+
|
|
180
|
+
export interface InputPrivateMethods { }
|
|
181
|
+
export interface VxeInputPrivateMethods extends InputPrivateMethods { }
|
|
182
|
+
|
|
183
|
+
export type VxeInputEmits = [
|
|
184
|
+
'update:modelValue',
|
|
185
|
+
'input',
|
|
186
|
+
'change',
|
|
187
|
+
'keydown',
|
|
188
|
+
'keyup',
|
|
189
|
+
'wheel',
|
|
190
|
+
'click',
|
|
191
|
+
'focus',
|
|
192
|
+
'blur',
|
|
193
|
+
'clear',
|
|
194
|
+
'search-click',
|
|
195
|
+
'toggle-visible',
|
|
196
|
+
'prev-number',
|
|
197
|
+
'next-number',
|
|
198
|
+
'prefix-click',
|
|
199
|
+
'suffix-click',
|
|
200
|
+
'date-prev',
|
|
201
|
+
'date-today',
|
|
202
|
+
'date-next'
|
|
203
|
+
]
|
|
204
|
+
|
|
205
|
+
export namespace VxeInputDefines {
|
|
206
|
+
interface DateFestivalItem {
|
|
207
|
+
/**
|
|
208
|
+
* 显示名称
|
|
209
|
+
*/
|
|
210
|
+
label?: string
|
|
211
|
+
/**
|
|
212
|
+
* 标记为重要信息
|
|
213
|
+
*/
|
|
214
|
+
important?: boolean
|
|
215
|
+
className?: string
|
|
216
|
+
style?: VxeComponentStyle
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* 日期节日对象
|
|
221
|
+
*/
|
|
222
|
+
export interface DateFestivalInfo extends DateFestivalItem {
|
|
223
|
+
/**
|
|
224
|
+
* 显示左上角小圆点通知
|
|
225
|
+
*/
|
|
226
|
+
notice?: boolean
|
|
227
|
+
/**
|
|
228
|
+
* 显示右上角信息
|
|
229
|
+
*/
|
|
230
|
+
extra?: string | DateFestivalItem
|
|
231
|
+
}
|
|
232
|
+
|
|
233
|
+
export interface DateFestivalParams {
|
|
234
|
+
$input: VxeInputConstructor
|
|
235
|
+
type: string
|
|
236
|
+
viewType: DatePanelType
|
|
237
|
+
date: Date
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
export interface DateDisabledParams {
|
|
241
|
+
$input: VxeInputConstructor
|
|
242
|
+
type: string
|
|
243
|
+
viewType: DatePanelType
|
|
244
|
+
date: Date
|
|
245
|
+
}
|
|
246
|
+
|
|
247
|
+
interface InputKeyboardEventParams {
|
|
248
|
+
$input: VxeInputConstructor
|
|
249
|
+
$event: KeyboardEvent
|
|
250
|
+
}
|
|
251
|
+
|
|
252
|
+
export interface InputParams {
|
|
253
|
+
value: string
|
|
254
|
+
}
|
|
255
|
+
export interface InputEventParams extends InputKeyboardEventParams, InputParams { }
|
|
256
|
+
|
|
257
|
+
export interface ChangeParams extends InputParams {}
|
|
258
|
+
export interface ChangeEventParams extends InputKeyboardEventParams, ChangeParams { }
|
|
259
|
+
|
|
260
|
+
export interface KeyupParams extends InputParams {}
|
|
261
|
+
export interface KeyupEventParams extends InputKeyboardEventParams, KeyupParams { }
|
|
262
|
+
|
|
263
|
+
export interface KeydownParams extends InputParams {}
|
|
264
|
+
export interface KeydownEventParams extends InputKeyboardEventParams, KeydownParams { }
|
|
265
|
+
|
|
266
|
+
export interface ClickParams extends InputParams {}
|
|
267
|
+
export interface ClickEventParams extends InputKeyboardEventParams, ClickParams { }
|
|
268
|
+
|
|
269
|
+
export interface FocusParams extends InputParams {}
|
|
270
|
+
export interface FocusEventParams extends InputKeyboardEventParams, FocusParams { }
|
|
271
|
+
|
|
272
|
+
export interface BlurParams extends InputParams {}
|
|
273
|
+
export interface BlurEventParams extends InputKeyboardEventParams, BlurParams { }
|
|
274
|
+
|
|
275
|
+
export interface ClearParams extends InputParams {}
|
|
276
|
+
export interface ClearEventParams extends InputKeyboardEventParams, ClearParams { }
|
|
277
|
+
|
|
278
|
+
export interface SearchClickParams extends InputParams {}
|
|
279
|
+
export interface SearchClickEventParams extends InputKeyboardEventParams, SearchClickParams { }
|
|
280
|
+
|
|
281
|
+
export interface ToggleVisibleParams extends InputParams {}
|
|
282
|
+
export interface ToggleVisibleEventParams extends InputKeyboardEventParams, ToggleVisibleParams { }
|
|
283
|
+
|
|
284
|
+
export interface PrevNumberParams extends InputParams {}
|
|
285
|
+
export interface PrevNumberEventParams extends InputKeyboardEventParams, PrevNumberParams { }
|
|
286
|
+
|
|
287
|
+
export interface NextNumberParams extends InputParams {}
|
|
288
|
+
export interface NextNumberEventParams extends InputKeyboardEventParams, NextNumberParams { }
|
|
289
|
+
|
|
290
|
+
export interface PrefixClickParams extends InputParams {}
|
|
291
|
+
export interface PrefixClickEventParams extends InputKeyboardEventParams, PrefixClickParams { }
|
|
292
|
+
|
|
293
|
+
export interface SuffixClickParams extends InputParams {}
|
|
294
|
+
export interface SuffixClickEventParams extends InputKeyboardEventParams, SuffixClickParams { }
|
|
295
|
+
|
|
296
|
+
export interface DatePrevParams extends InputParams {}
|
|
297
|
+
export interface DatePrevEventParams extends InputKeyboardEventParams, DatePrevParams { }
|
|
298
|
+
|
|
299
|
+
export interface DateTodayParams extends InputParams {}
|
|
300
|
+
export interface DateTodayEventParams extends InputKeyboardEventParams, DateTodayParams { }
|
|
301
|
+
|
|
302
|
+
export interface DateNextParams extends InputParams {}
|
|
303
|
+
export interface DateNextEventParams extends InputKeyboardEventParams, DateNextParams { }
|
|
304
|
+
}
|
|
305
|
+
|
|
306
|
+
export type VxeInputEventProps = {
|
|
307
|
+
onInput?: VxeInputEvents.Input
|
|
308
|
+
onChange?: VxeInputEvents.Change
|
|
309
|
+
onKeydown?: VxeInputEvents.Keydown
|
|
310
|
+
onKeyup?: VxeInputEvents.Keyup
|
|
311
|
+
onClick?: VxeInputEvents.Click
|
|
312
|
+
onFocus?: VxeInputEvents.Focus
|
|
313
|
+
onBlur?: VxeInputEvents.Blur
|
|
314
|
+
onClear?: VxeInputEvents.Clear
|
|
315
|
+
onSearchClick?: VxeInputEvents.SearchClick
|
|
316
|
+
onToggleVisible?: VxeInputEvents.ToggleVisible
|
|
317
|
+
onPrevNumber?: VxeInputEvents.PrevNumber
|
|
318
|
+
onNextNumber?: VxeInputEvents.NextNumber
|
|
319
|
+
onPrefixClick?: VxeInputEvents.PrefixClick
|
|
320
|
+
onSuffixClick?: VxeInputEvents.SuffixClick
|
|
321
|
+
onDatePrev?: VxeInputEvents.DatePrev
|
|
322
|
+
onDateToday?: VxeInputEvents.DateToday
|
|
323
|
+
onDateNext?: VxeInputEvents.DateNext
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
export interface VxeInputListeners {
|
|
327
|
+
input?: VxeInputEvents.Input
|
|
328
|
+
change?: VxeInputEvents.Change
|
|
329
|
+
keydown?: VxeInputEvents.Keydown
|
|
330
|
+
keyup?: VxeInputEvents.Keyup
|
|
331
|
+
click?: VxeInputEvents.Click
|
|
332
|
+
focus?: VxeInputEvents.Focus
|
|
333
|
+
blur?: VxeInputEvents.Blur
|
|
334
|
+
clear?: VxeInputEvents.Clear
|
|
335
|
+
searchClick?: VxeInputEvents.SearchClick
|
|
336
|
+
toggleVisible?: VxeInputEvents.ToggleVisible
|
|
337
|
+
prevNumber?: VxeInputEvents.PrevNumber
|
|
338
|
+
nextNumber?: VxeInputEvents.NextNumber
|
|
339
|
+
prefixClick?: VxeInputEvents.PrefixClick
|
|
340
|
+
suffixClick?: VxeInputEvents.SuffixClick
|
|
341
|
+
datePrev?: VxeInputEvents.DatePrev
|
|
342
|
+
dateToday?: VxeInputEvents.DateToday
|
|
343
|
+
dateNext?: VxeInputEvents.DateNext
|
|
344
|
+
}
|
|
345
|
+
|
|
346
|
+
export namespace VxeInputEvents {
|
|
347
|
+
export type Input = (params: VxeInputDefines.InputEventParams) => void
|
|
348
|
+
export type Change = (params: VxeInputDefines.ChangeEventParams) => void
|
|
349
|
+
export type Keydown = (params: VxeInputDefines.KeydownEventParams) => void
|
|
350
|
+
export type Keyup = (params: VxeInputDefines.KeyupEventParams) => void
|
|
351
|
+
export type Click = (params: VxeInputDefines.ClickEventParams) => void
|
|
352
|
+
export type Focus = (params: VxeInputDefines.FocusEventParams) => void
|
|
353
|
+
export type Blur = (params: VxeInputDefines.BlurEventParams) => void
|
|
354
|
+
export type Clear = (params: VxeInputDefines.ClearEventParams) => void
|
|
355
|
+
export type SearchClick = (params: VxeInputDefines.SearchClickEventParams) => void
|
|
356
|
+
export type ToggleVisible = (params: VxeInputDefines.ToggleVisibleEventParams) => void
|
|
357
|
+
export type PrevNumber = (params: VxeInputDefines.PrevNumberEventParams) => void
|
|
358
|
+
export type NextNumber = (params: VxeInputDefines.NextNumberEventParams) => void
|
|
359
|
+
export type PrefixClick = (params: VxeInputDefines.PrefixClickEventParams) => void
|
|
360
|
+
export type SuffixClick = (params: VxeInputDefines.SuffixClickEventParams) => void
|
|
361
|
+
export type DatePrev = (params: VxeInputDefines.DatePrevEventParams) => void
|
|
362
|
+
export type DateToday = (params: VxeInputDefines.DateTodayEventParams) => void
|
|
363
|
+
export type DateNext = (params: VxeInputDefines.DateNextEventParams) => void
|
|
364
|
+
}
|
|
365
|
+
|
|
366
|
+
export namespace VxeInputSlotTypes {
|
|
367
|
+
export interface DefaultSlotParams {}
|
|
368
|
+
}
|
|
369
|
+
|
|
370
|
+
export interface VxeInputSlots {
|
|
371
|
+
default: (params: VxeInputSlotTypes.DefaultSlotParams) => any
|
|
372
|
+
}
|
|
373
|
+
|
|
374
|
+
export const Input: typeof VxeInput
|
|
375
|
+
export default VxeInput
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import { RenderFunction, SetupContext, Ref } from 'vue'
|
|
1
|
+
import { RenderFunction, SetupContext, Ref, ComponentPublicInstance } from 'vue'
|
|
2
2
|
import { defineVxeComponent, VxeComponentBase, VxeComponentEvent } from '../tool'
|
|
3
3
|
|
|
4
4
|
/* eslint-disable no-use-before-define,@typescript-eslint/ban-types */
|
|
5
5
|
|
|
6
|
-
declare const VxeLayoutAside: defineVxeComponent<VxeLayoutAsideProps, VxeLayoutAsideEventProps>
|
|
6
|
+
export declare const VxeLayoutAside: defineVxeComponent<VxeLayoutAsideProps, VxeLayoutAsideEventProps>
|
|
7
|
+
|
|
8
|
+
export type VxeLayoutAsideInstance = ComponentPublicInstance<VxeLayoutAsideProps, VxeLayoutAsideConstructor>
|
|
7
9
|
|
|
8
10
|
export interface VxeLayoutAsideConstructor extends VxeComponentBase, VxeLayoutAsideMethods {
|
|
9
11
|
props: VxeLayoutAsideProps
|
|
@@ -51,7 +53,13 @@ export interface VxeLayoutAsideListeners { }
|
|
|
51
53
|
|
|
52
54
|
export namespace VxeLayoutAsideEvents { }
|
|
53
55
|
|
|
56
|
+
export namespace VxeLayoutAsideSlotTypes {
|
|
57
|
+
export interface DefaultSlotParams {}
|
|
58
|
+
}
|
|
59
|
+
|
|
54
60
|
export interface VxeLayoutAsideSlots {
|
|
61
|
+
default: (params: VxeLayoutAsideSlotTypes.DefaultSlotParams) => any
|
|
55
62
|
}
|
|
56
63
|
|
|
64
|
+
export const LayoutAside: typeof VxeLayoutAside
|
|
57
65
|
export default VxeLayoutAside
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import { RenderFunction, SetupContext, Ref } from 'vue'
|
|
1
|
+
import { RenderFunction, SetupContext, Ref, ComponentPublicInstance } from 'vue'
|
|
2
2
|
import { defineVxeComponent, VxeComponentBase, VxeComponentEvent } from '../tool'
|
|
3
3
|
|
|
4
4
|
/* eslint-disable no-use-before-define,@typescript-eslint/ban-types */
|
|
5
5
|
|
|
6
|
-
declare const VxeLayoutBody: defineVxeComponent<VxeLayoutBodyProps, VxeLayoutBodyEventProps>
|
|
6
|
+
export declare const VxeLayoutBody: defineVxeComponent<VxeLayoutBodyProps, VxeLayoutBodyEventProps>
|
|
7
|
+
|
|
8
|
+
export type VxeLayoutBodyInstance = ComponentPublicInstance<VxeLayoutBodyProps, VxeLayoutBodyConstructor>
|
|
7
9
|
|
|
8
10
|
export interface VxeLayoutBodyConstructor extends VxeComponentBase, VxeLayoutBodyMethods {
|
|
9
11
|
props: VxeLayoutBodyProps
|
|
@@ -52,7 +54,13 @@ export interface VxeLayoutBodyListeners { }
|
|
|
52
54
|
|
|
53
55
|
export namespace VxeLayoutBodyEvents { }
|
|
54
56
|
|
|
57
|
+
export namespace VxeLayoutBodySlotTypes {
|
|
58
|
+
export interface DefaultSlotParams {}
|
|
59
|
+
}
|
|
60
|
+
|
|
55
61
|
export interface VxeLayoutBodySlots {
|
|
62
|
+
default: (params: VxeLayoutBodySlotTypes.DefaultSlotParams) => any
|
|
56
63
|
}
|
|
57
64
|
|
|
65
|
+
export const LayoutBody: typeof VxeLayoutBody
|
|
58
66
|
export default VxeLayoutBody
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import { RenderFunction, SetupContext, Ref } from 'vue'
|
|
1
|
+
import { RenderFunction, SetupContext, Ref, ComponentPublicInstance } from 'vue'
|
|
2
2
|
import { defineVxeComponent, VxeComponentBase, VxeComponentEvent } from '../tool'
|
|
3
3
|
|
|
4
4
|
/* eslint-disable no-use-before-define,@typescript-eslint/ban-types */
|
|
5
5
|
|
|
6
|
-
declare const VxeLayoutContainer: defineVxeComponent<VxeLayoutContainerProps, VxeLayoutContainerEventProps>
|
|
6
|
+
export declare const VxeLayoutContainer: defineVxeComponent<VxeLayoutContainerProps, VxeLayoutContainerEventProps>
|
|
7
|
+
|
|
8
|
+
export type VxeLayoutContainerInstance = ComponentPublicInstance<VxeLayoutContainerProps, VxeLayoutContainerConstructor>
|
|
7
9
|
|
|
8
10
|
export interface VxeLayoutContainerConstructor extends VxeComponentBase, VxeLayoutContainerMethods {
|
|
9
11
|
props: VxeLayoutContainerProps
|
|
@@ -52,7 +54,13 @@ export interface VxeLayoutContainerListeners { }
|
|
|
52
54
|
|
|
53
55
|
export namespace VxeLayoutContainerEvents { }
|
|
54
56
|
|
|
57
|
+
export namespace VxeLayoutContainerSlotTypes {
|
|
58
|
+
export interface DefaultSlotParams {}
|
|
59
|
+
}
|
|
60
|
+
|
|
55
61
|
export interface VxeLayoutContainerSlots {
|
|
62
|
+
default: (params: VxeLayoutContainerSlotTypes.DefaultSlotParams) => any
|
|
56
63
|
}
|
|
57
64
|
|
|
65
|
+
export const LayoutContainer: typeof VxeLayoutContainer
|
|
58
66
|
export default VxeLayoutContainer
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
-
import { RenderFunction, SetupContext, Ref } from 'vue'
|
|
1
|
+
import { RenderFunction, SetupContext, Ref, ComponentPublicInstance } from 'vue'
|
|
2
2
|
import { defineVxeComponent, VxeComponentBase, VxeComponentEvent } from '../tool'
|
|
3
3
|
|
|
4
4
|
/* eslint-disable no-use-before-define,@typescript-eslint/ban-types */
|
|
5
5
|
|
|
6
|
-
declare const VxeLayoutFooter: defineVxeComponent<VxeLayoutFooterProps, VxeLayoutFooterEventProps>
|
|
6
|
+
export declare const VxeLayoutFooter: defineVxeComponent<VxeLayoutFooterProps, VxeLayoutFooterEventProps>
|
|
7
|
+
|
|
8
|
+
export type VxeLayoutFooterInstance = ComponentPublicInstance<VxeLayoutFooterProps, VxeLayoutFooterConstructor>
|
|
7
9
|
|
|
8
10
|
export interface VxeLayoutFooterConstructor extends VxeComponentBase, VxeLayoutFooterMethods {
|
|
9
11
|
props: VxeLayoutFooterProps
|
|
@@ -52,7 +54,13 @@ export interface VxeLayoutFooterListeners { }
|
|
|
52
54
|
|
|
53
55
|
export namespace VxeLayoutFooterEvents { }
|
|
54
56
|
|
|
57
|
+
export namespace VxeLayoutFooterSlotTypes {
|
|
58
|
+
export interface DefaultSlotParams {}
|
|
59
|
+
}
|
|
60
|
+
|
|
55
61
|
export interface VxeLayoutFooterSlots {
|
|
62
|
+
default: (params: VxeLayoutFooterSlotTypes.DefaultSlotParams) => any
|
|
56
63
|
}
|
|
57
64
|
|
|
65
|
+
export const LayoutFooter: typeof VxeLayoutFooter
|
|
58
66
|
export default VxeLayoutFooter
|
|
@@ -3,7 +3,7 @@ import { defineVxeComponent, VxeComponentBase, VxeComponentEvent } from '../tool
|
|
|
3
3
|
|
|
4
4
|
/* eslint-disable no-use-before-define,@typescript-eslint/ban-types */
|
|
5
5
|
|
|
6
|
-
declare const VxeLayoutHeader: defineVxeComponent<VxeLayoutHeaderProps, VxeLayoutHeaderEventProps>
|
|
6
|
+
export declare const VxeLayoutHeader: defineVxeComponent<VxeLayoutHeaderProps, VxeLayoutHeaderEventProps>
|
|
7
7
|
|
|
8
8
|
export interface VxeLayoutHeaderConstructor extends VxeComponentBase, VxeLayoutHeaderMethods {
|
|
9
9
|
props: VxeLayoutHeaderProps
|
|
@@ -52,7 +52,13 @@ export interface VxeLayoutHeaderListeners { }
|
|
|
52
52
|
|
|
53
53
|
export namespace VxeLayoutHeaderEvents { }
|
|
54
54
|
|
|
55
|
+
export namespace VxeLayoutHeaderSlotTypes {
|
|
56
|
+
export interface DefaultSlotParams {}
|
|
57
|
+
}
|
|
58
|
+
|
|
55
59
|
export interface VxeLayoutHeaderSlots {
|
|
60
|
+
default: (params: VxeLayoutHeaderSlotTypes.DefaultSlotParams) => any
|
|
56
61
|
}
|
|
57
62
|
|
|
63
|
+
export const LayoutHeader: typeof VxeLayoutHeader
|
|
58
64
|
export default VxeLayoutHeader
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import { RenderFunction, SetupContext, Ref, ComponentPublicInstance } 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
|
+
export declare const VxeListDesign: defineVxeComponent<VxeListDesignProps, VxeListDesignEventProps>
|
|
7
|
+
|
|
8
|
+
export type VxeListDesignInstance = ComponentPublicInstance<VxeListDesignProps, VxeListDesignConstructor>
|
|
9
|
+
|
|
10
|
+
export interface VxeListDesignConstructor extends VxeComponentBase, VxeListDesignMethods {
|
|
11
|
+
props: VxeListDesignProps
|
|
12
|
+
context: SetupContext<VxeListDesignEmits>
|
|
13
|
+
reactData: ListDesignReactData
|
|
14
|
+
getRefMaps(): ListDesignPrivateRef
|
|
15
|
+
getComputeMaps(): ListDesignPrivateComputed
|
|
16
|
+
renderVN: RenderFunction
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export interface ListDesignPrivateRef {
|
|
20
|
+
refElem: Ref<HTMLDivElement | undefined>
|
|
21
|
+
}
|
|
22
|
+
export interface VxeListDesignPrivateRef extends ListDesignPrivateRef { }
|
|
23
|
+
|
|
24
|
+
export namespace VxeListDesignPropTypes {
|
|
25
|
+
export type Size = VxeComponentSize
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export type VxeListDesignProps = {
|
|
29
|
+
size?: VxeListDesignPropTypes.Size
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
export interface ListDesignPrivateComputed {
|
|
33
|
+
}
|
|
34
|
+
export interface VxeListDesignPrivateComputed extends ListDesignPrivateComputed { }
|
|
35
|
+
|
|
36
|
+
export interface ListDesignReactData {
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
export interface ListDesignMethods {
|
|
40
|
+
dispatchEvent(type: ValueOf<VxeListDesignEmits>, params: any, evnt: Event): void
|
|
41
|
+
}
|
|
42
|
+
export interface VxeListDesignMethods extends ListDesignMethods { }
|
|
43
|
+
|
|
44
|
+
export interface ListDesignPrivateMethods { }
|
|
45
|
+
export interface VxeListDesignPrivateMethods extends ListDesignPrivateMethods { }
|
|
46
|
+
|
|
47
|
+
export type VxeListDesignEmits = [
|
|
48
|
+
]
|
|
49
|
+
|
|
50
|
+
export namespace VxeListDesignDefines {
|
|
51
|
+
export interface ListDesignEventParams extends VxeComponentEvent {
|
|
52
|
+
$listDesign: VxeListDesignConstructor
|
|
53
|
+
}
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export type VxeListDesignEventProps = {}
|
|
57
|
+
|
|
58
|
+
export interface VxeListDesignListeners { }
|
|
59
|
+
|
|
60
|
+
export namespace VxeListDesignEvents { }
|
|
61
|
+
|
|
62
|
+
export namespace VxeListDesignSlotTypes {}
|
|
63
|
+
export interface VxeListDesignSlots {
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
export const ListDesign: typeof VxeListDesign
|
|
67
|
+
export default VxeListDesign
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import { RenderFunction, SetupContext, Ref, ComponentPublicInstance } from 'vue'
|
|
2
|
+
import { defineVxeComponent, VxeComponentBase, VxeComponentEvent } from '../tool'
|
|
3
|
+
|
|
4
|
+
/* eslint-disable no-use-before-define,@typescript-eslint/ban-types */
|
|
5
|
+
|
|
6
|
+
export declare const VxeLoading: defineVxeComponent<VxeLoadingProps, VxeLoadingEventProps>
|
|
7
|
+
|
|
8
|
+
export type VxeLoadingInstance = ComponentPublicInstance<VxeLoadingProps, VxeLoadingConstructor>
|
|
9
|
+
|
|
10
|
+
export interface VxeLoadingConstructor extends VxeComponentBase, VxeLoadingMethods {
|
|
11
|
+
props: VxeLoadingProps
|
|
12
|
+
context: SetupContext<VxeLoadingEmits>
|
|
13
|
+
reactData: LoadingReactData
|
|
14
|
+
getRefMaps(): LoadingPrivateRef
|
|
15
|
+
getComputeMaps(): LoadingPrivateComputed
|
|
16
|
+
renderVN: RenderFunction
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
export interface LoadingPrivateRef {
|
|
20
|
+
refElem: Ref<HTMLDivElement | undefined>
|
|
21
|
+
}
|
|
22
|
+
export interface VxeLoadingPrivateRef extends LoadingPrivateRef { }
|
|
23
|
+
|
|
24
|
+
export namespace VxeLoadingPropTypes {
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
export type VxeLoadingProps = {}
|
|
28
|
+
|
|
29
|
+
export interface LoadingPrivateComputed {
|
|
30
|
+
}
|
|
31
|
+
export interface VxeLoadingPrivateComputed extends LoadingPrivateComputed { }
|
|
32
|
+
|
|
33
|
+
export interface LoadingReactData {
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
export interface LoadingMethods {
|
|
37
|
+
}
|
|
38
|
+
export interface VxeLoadingMethods extends LoadingMethods { }
|
|
39
|
+
|
|
40
|
+
export interface LoadingPrivateMethods { }
|
|
41
|
+
export interface VxeLoadingPrivateMethods extends LoadingPrivateMethods { }
|
|
42
|
+
|
|
43
|
+
export type VxeLoadingEmits = []
|
|
44
|
+
|
|
45
|
+
export namespace VxeLoadingDefines {
|
|
46
|
+
export interface LoadingEventParams extends VxeComponentEvent {
|
|
47
|
+
$loading: VxeLoadingConstructor
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
export type VxeLoadingEventProps = {}
|
|
52
|
+
|
|
53
|
+
export interface VxeLoadingListeners { }
|
|
54
|
+
|
|
55
|
+
export namespace VxeLoadingEvents { }
|
|
56
|
+
|
|
57
|
+
export namespace VxeLoadingSlotTypes {
|
|
58
|
+
export interface DefaultSlotParams {}
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
export interface VxeLoadingSlots {
|
|
62
|
+
default: (params: VxeLoadingSlotTypes.DefaultSlotParams) => any
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export const Loading: typeof VxeLoading
|
|
66
|
+
export default VxeLoading
|