uview-ultra-plus 1.0.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/README.md +9 -0
- package/lime-dayuts/changelog.md +33 -0
- package/lime-dayuts/common/constant.ts +32 -0
- package/lime-dayuts/common/dates.ts +194 -0
- package/lime-dayuts/common/index.ts +1103 -0
- package/lime-dayuts/common/locale/en/index.ts +57 -0
- package/lime-dayuts/common/locale/zh-cn/index.ts +75 -0
- package/lime-dayuts/common/test.ts +106 -0
- package/lime-dayuts/common/use.ts +63 -0
- package/lime-dayuts/common/utils.ts +106 -0
- package/lime-dayuts/index.ts +6 -0
- package/lime-dayuts/package.json +106 -0
- package/lime-dayuts/readme - /345/211/257/346/234/254.md" +445 -0
- package/lime-dayuts/readme.md +264 -0
- package/lime-dayuts/utssdk/app-js/config.json +3 -0
- package/lime-dayuts/utssdk/app-js/index.uts +3 -0
- package/lime-dayuts/utssdk/interface.uts +405 -0
- package/lime-dayuts/utssdk/unierror.uts +39 -0
- package/package.json +42 -0
- package/uview-ultra/LICENSE +20 -0
- package/uview-ultra/README.md +76 -0
- package/uview-ultra/changelog.md +449 -0
- package/uview-ultra/components/up-action-sheet/actionSheet.js +26 -0
- package/uview-ultra/components/up-action-sheet/actionSheet.uts +28 -0
- package/uview-ultra/components/up-action-sheet/props.js +62 -0
- package/uview-ultra/components/up-action-sheet/props.uts +66 -0
- package/uview-ultra/components/up-action-sheet/types.uts +86 -0
- package/uview-ultra/components/up-action-sheet/up-action-sheet.uvue +337 -0
- package/uview-ultra/components/up-action-sheet/up-action-sheet.vue +283 -0
- package/uview-ultra/components/up-album/album.js +27 -0
- package/uview-ultra/components/up-album/album.uts +27 -0
- package/uview-ultra/components/up-album/props.js +81 -0
- package/uview-ultra/components/up-album/props.uts +84 -0
- package/uview-ultra/components/up-album/up-album.uvue +347 -0
- package/uview-ultra/components/up-album/up-album.vue +278 -0
- package/uview-ultra/components/up-alert/alert.js +22 -0
- package/uview-ultra/components/up-alert/alert.uts +22 -0
- package/uview-ultra/components/up-alert/props.js +46 -0
- package/uview-ultra/components/up-alert/props.uts +48 -0
- package/uview-ultra/components/up-alert/up-alert.uvue +287 -0
- package/uview-ultra/components/up-alert/up-alert.vue +249 -0
- package/uview-ultra/components/up-avatar/avatar.js +28 -0
- package/uview-ultra/components/up-avatar/avatar.uts +28 -0
- package/uview-ultra/components/up-avatar/props.js +82 -0
- package/uview-ultra/components/up-avatar/props.uts +82 -0
- package/uview-ultra/components/up-avatar/up-avatar.uvue +235 -0
- package/uview-ultra/components/up-avatar/up-avatar.vue +180 -0
- package/uview-ultra/components/up-avatar-group/avatarGroup.js +23 -0
- package/uview-ultra/components/up-avatar-group/avatarGroup.uts +23 -0
- package/uview-ultra/components/up-avatar-group/props.js +54 -0
- package/uview-ultra/components/up-avatar-group/props.uts +55 -0
- package/uview-ultra/components/up-avatar-group/up-avatar-group.uvue +160 -0
- package/uview-ultra/components/up-avatar-group/up-avatar-group.vue +110 -0
- package/uview-ultra/components/up-back-top/backtop.js +27 -0
- package/uview-ultra/components/up-back-top/backtop.uts +27 -0
- package/uview-ultra/components/up-back-top/props.js +56 -0
- package/uview-ultra/components/up-back-top/props.uts +57 -0
- package/uview-ultra/components/up-back-top/up-back-top.uvue +157 -0
- package/uview-ultra/components/up-back-top/up-back-top.vue +133 -0
- package/uview-ultra/components/up-badge/badge.js +27 -0
- package/uview-ultra/components/up-badge/badge.uts +27 -0
- package/uview-ultra/components/up-badge/props.js +79 -0
- package/uview-ultra/components/up-badge/props.uts +89 -0
- package/uview-ultra/components/up-badge/up-badge.uvue +260 -0
- package/uview-ultra/components/up-badge/up-badge.vue +179 -0
- package/uview-ultra/components/up-box/box.js +24 -0
- package/uview-ultra/components/up-box/box.uts +24 -0
- package/uview-ultra/components/up-box/props.js +57 -0
- package/uview-ultra/components/up-box/props.uts +58 -0
- package/uview-ultra/components/up-box/up-box.uvue +137 -0
- package/uview-ultra/components/up-box/up-box.vue +107 -0
- package/uview-ultra/components/up-button/button.js +42 -0
- package/uview-ultra/components/up-button/button.uts +42 -0
- package/uview-ultra/components/up-button/props.js +155 -0
- package/uview-ultra/components/up-button/props.uts +164 -0
- package/uview-ultra/components/up-button/up-button.uvue +609 -0
- package/uview-ultra/components/up-button/up-button.vue +442 -0
- package/uview-ultra/components/up-button/vue.scss +85 -0
- package/uview-ultra/components/up-calendar/calendar.js +42 -0
- package/uview-ultra/components/up-calendar/calendar.uts +42 -0
- package/uview-ultra/components/up-calendar/header.uvue +103 -0
- package/uview-ultra/components/up-calendar/header.vue +103 -0
- package/uview-ultra/components/up-calendar/month.uvue +608 -0
- package/uview-ultra/components/up-calendar/month.vue +587 -0
- package/uview-ultra/components/up-calendar/props.js +147 -0
- package/uview-ultra/components/up-calendar/props.uts +149 -0
- package/uview-ultra/components/up-calendar/up-calendar.uvue +632 -0
- package/uview-ultra/components/up-calendar/up-calendar.vue +409 -0
- package/uview-ultra/components/up-calendar/util.js +86 -0
- package/uview-ultra/components/up-calendar/util.uts +93 -0
- package/uview-ultra/components/up-car-keyboard/carKeyboard.js +15 -0
- package/uview-ultra/components/up-car-keyboard/carKeyboard.uts +16 -0
- package/uview-ultra/components/up-car-keyboard/props.js +17 -0
- package/uview-ultra/components/up-car-keyboard/props.uts +27 -0
- package/uview-ultra/components/up-car-keyboard/up-car-keyboard.uvue +337 -0
- package/uview-ultra/components/up-car-keyboard/up-car-keyboard.vue +315 -0
- package/uview-ultra/components/up-card/card.uts +58 -0
- package/uview-ultra/components/up-card/props.js +140 -0
- package/uview-ultra/components/up-card/props.uts +150 -0
- package/uview-ultra/components/up-card/up-card.uvue +292 -0
- package/uview-ultra/components/up-card/up-card.vue +186 -0
- package/uview-ultra/components/up-cell/cell.js +35 -0
- package/uview-ultra/components/up-cell/cell.uts +35 -0
- package/uview-ultra/components/up-cell/props.js +113 -0
- package/uview-ultra/components/up-cell/props.uts +108 -0
- package/uview-ultra/components/up-cell/up-cell.uvue +301 -0
- package/uview-ultra/components/up-cell/up-cell.vue +268 -0
- package/uview-ultra/components/up-cell-group/cellGroup.js +16 -0
- package/uview-ultra/components/up-cell-group/cellGroup.uts +16 -0
- package/uview-ultra/components/up-cell-group/props.js +16 -0
- package/uview-ultra/components/up-cell-group/props.uts +26 -0
- package/uview-ultra/components/up-cell-group/up-cell-group.uvue +61 -0
- package/uview-ultra/components/up-cell-group/up-cell-group.vue +67 -0
- package/uview-ultra/components/up-checkbox/checkbox.js +27 -0
- package/uview-ultra/components/up-checkbox/checkbox.uts +27 -0
- package/uview-ultra/components/up-checkbox/props.js +76 -0
- package/uview-ultra/components/up-checkbox/props.uts +77 -0
- package/uview-ultra/components/up-checkbox/up-checkbox.uvue +523 -0
- package/uview-ultra/components/up-checkbox/up-checkbox.vue +386 -0
- package/uview-ultra/components/up-checkbox-group/checkboxGroup.js +29 -0
- package/uview-ultra/components/up-checkbox-group/checkboxGroup.uts +29 -0
- package/uview-ultra/components/up-checkbox-group/props.js +93 -0
- package/uview-ultra/components/up-checkbox-group/props.uts +84 -0
- package/uview-ultra/components/up-checkbox-group/up-checkbox-group.uvue +195 -0
- package/uview-ultra/components/up-checkbox-group/up-checkbox-group.vue +137 -0
- package/uview-ultra/components/up-circle-progress/circleProgress.js +15 -0
- package/uview-ultra/components/up-circle-progress/props.js +10 -0
- package/uview-ultra/components/up-circle-progress/up-circle-progress.vue +201 -0
- package/uview-ultra/components/up-code/code.js +21 -0
- package/uview-ultra/components/up-code/code.uts +20 -0
- package/uview-ultra/components/up-code/props.js +36 -0
- package/uview-ultra/components/up-code/props.uts +47 -0
- package/uview-ultra/components/up-code/up-code.uvue +183 -0
- package/uview-ultra/components/up-code/up-code.vue +132 -0
- package/uview-ultra/components/up-code-input/codeInput.js +29 -0
- package/uview-ultra/components/up-code-input/codeInput.uts +29 -0
- package/uview-ultra/components/up-code-input/props.js +90 -0
- package/uview-ultra/components/up-code-input/props.uts +83 -0
- package/uview-ultra/components/up-code-input/up-code-input.uvue +321 -0
- package/uview-ultra/components/up-code-input/up-code-input.vue +300 -0
- package/uview-ultra/components/up-col/col.js +19 -0
- package/uview-ultra/components/up-col/col.uts +19 -0
- package/uview-ultra/components/up-col/props.js +32 -0
- package/uview-ultra/components/up-col/props.uts +41 -0
- package/uview-ultra/components/up-col/up-col.uvue +193 -0
- package/uview-ultra/components/up-col/up-col.vue +172 -0
- package/uview-ultra/components/up-collapse/collapse.js +17 -0
- package/uview-ultra/components/up-collapse/collapse.uts +17 -0
- package/uview-ultra/components/up-collapse/props.js +21 -0
- package/uview-ultra/components/up-collapse/props.uts +23 -0
- package/uview-ultra/components/up-collapse/up-collapse.uvue +116 -0
- package/uview-ultra/components/up-collapse/up-collapse.vue +91 -0
- package/uview-ultra/components/up-collapse-item/collapseItem.js +26 -0
- package/uview-ultra/components/up-collapse-item/collapseItem.uts +26 -0
- package/uview-ultra/components/up-collapse-item/props.js +66 -0
- package/uview-ultra/components/up-collapse-item/props.uts +69 -0
- package/uview-ultra/components/up-collapse-item/up-collapse-item.uvue +266 -0
- package/uview-ultra/components/up-collapse-item/up-collapse-item.vue +242 -0
- package/uview-ultra/components/up-column-notice/columnNotice.js +24 -0
- package/uview-ultra/components/up-column-notice/columnNotice.uts +24 -0
- package/uview-ultra/components/up-column-notice/props.js +57 -0
- package/uview-ultra/components/up-column-notice/props.uts +59 -0
- package/uview-ultra/components/up-column-notice/up-column-notice.uvue +194 -0
- package/uview-ultra/components/up-column-notice/up-column-notice.vue +165 -0
- package/uview-ultra/components/up-copy/up-copy.uvue +74 -0
- package/uview-ultra/components/up-copy/up-copy.vue +70 -0
- package/uview-ultra/components/up-count-down/countDown.js +18 -0
- package/uview-ultra/components/up-count-down/countDown.uts +18 -0
- package/uview-ultra/components/up-count-down/props.js +26 -0
- package/uview-ultra/components/up-count-down/props.uts +37 -0
- package/uview-ultra/components/up-count-down/up-count-down.uvue +194 -0
- package/uview-ultra/components/up-count-down/up-count-down.vue +166 -0
- package/uview-ultra/components/up-count-down/utils.js +62 -0
- package/uview-ultra/components/up-count-down/utils.uts +67 -0
- package/uview-ultra/components/up-count-to/countTo.js +25 -0
- package/uview-ultra/components/up-count-to/countTo.uts +25 -0
- package/uview-ultra/components/up-count-to/props.js +61 -0
- package/uview-ultra/components/up-count-to/props.uts +72 -0
- package/uview-ultra/components/up-count-to/up-count-to.uvue +307 -0
- package/uview-ultra/components/up-count-to/up-count-to.vue +189 -0
- package/uview-ultra/components/up-datetime-picker/datetimePicker.js +37 -0
- package/uview-ultra/components/up-datetime-picker/datetimePicker.uts +42 -0
- package/uview-ultra/components/up-datetime-picker/dayjs.esm.min.js +7 -0
- package/uview-ultra/components/up-datetime-picker/props.js +150 -0
- package/uview-ultra/components/up-datetime-picker/props.uts +154 -0
- package/uview-ultra/components/up-datetime-picker/up-datetime-picker.uvue +657 -0
- package/uview-ultra/components/up-datetime-picker/up-datetime-picker.vue +472 -0
- package/uview-ultra/components/up-divider/divider.js +23 -0
- package/uview-ultra/components/up-divider/divider.uts +22 -0
- package/uview-ultra/components/up-divider/props.js +46 -0
- package/uview-ultra/components/up-divider/props.uts +57 -0
- package/uview-ultra/components/up-divider/up-divider.uvue +142 -0
- package/uview-ultra/components/up-divider/up-divider.vue +121 -0
- package/uview-ultra/components/up-dropdown/dropdown.uts +25 -0
- package/uview-ultra/components/up-dropdown/props.js +61 -0
- package/uview-ultra/components/up-dropdown/props.uts +72 -0
- package/uview-ultra/components/up-dropdown/types.uts +5 -0
- package/uview-ultra/components/up-dropdown/up-dropdown.uvue +349 -0
- package/uview-ultra/components/up-dropdown/up-dropdown.vue +259 -0
- package/uview-ultra/components/up-dropdown-item/dropdown-item.uts +25 -0
- package/uview-ultra/components/up-dropdown-item/props.js +47 -0
- package/uview-ultra/components/up-dropdown-item/props.uts +56 -0
- package/uview-ultra/components/up-dropdown-item/up-dropdown-item.uvue +170 -0
- package/uview-ultra/components/up-dropdown-item/up-dropdown-item.vue +120 -0
- package/uview-ultra/components/up-empty/empty.js +26 -0
- package/uview-ultra/components/up-empty/empty.uts +24 -0
- package/uview-ultra/components/up-empty/props.js +61 -0
- package/uview-ultra/components/up-empty/props.uts +71 -0
- package/uview-ultra/components/up-empty/up-empty.uvue +179 -0
- package/uview-ultra/components/up-empty/up-empty.vue +133 -0
- package/uview-ultra/components/up-form/form.js +22 -0
- package/uview-ultra/components/up-form/form.uts +22 -0
- package/uview-ultra/components/up-form/props.js +47 -0
- package/uview-ultra/components/up-form/props.uts +57 -0
- package/uview-ultra/components/up-form/up-form.uvue +248 -0
- package/uview-ultra/components/up-form/up-form.vue +252 -0
- package/uview-ultra/components/up-form-item/formItem.js +24 -0
- package/uview-ultra/components/up-form-item/formItem.uts +24 -0
- package/uview-ultra/components/up-form-item/props.js +55 -0
- package/uview-ultra/components/up-form-item/props.uts +65 -0
- package/uview-ultra/components/up-form-item/up-form-item.uvue +264 -0
- package/uview-ultra/components/up-form-item/up-form-item.vue +261 -0
- package/uview-ultra/components/up-gap/gap.js +19 -0
- package/uview-ultra/components/up-gap/gap.uts +19 -0
- package/uview-ultra/components/up-gap/props.js +27 -0
- package/uview-ultra/components/up-gap/props.uts +36 -0
- package/uview-ultra/components/up-gap/up-gap.uvue +54 -0
- package/uview-ultra/components/up-gap/up-gap.vue +41 -0
- package/uview-ultra/components/up-grid/grid.js +17 -0
- package/uview-ultra/components/up-grid/grid.uts +17 -0
- package/uview-ultra/components/up-grid/props.js +28 -0
- package/uview-ultra/components/up-grid/props.uts +37 -0
- package/uview-ultra/components/up-grid/up-grid.uvue +145 -0
- package/uview-ultra/components/up-grid/up-grid.vue +114 -0
- package/uview-ultra/components/up-grid-item/gridItem.js +16 -0
- package/uview-ultra/components/up-grid-item/gridItem.uts +16 -0
- package/uview-ultra/components/up-grid-item/props.js +16 -0
- package/uview-ultra/components/up-grid-item/props.uts +27 -0
- package/uview-ultra/components/up-grid-item/up-grid-item.uvue +211 -0
- package/uview-ultra/components/up-grid-item/up-grid-item.vue +219 -0
- package/uview-ultra/components/up-icon/icon.js +36 -0
- package/uview-ultra/components/up-icon/icon.uts +33 -0
- package/uview-ultra/components/up-icon/icons.js +426 -0
- package/uview-ultra/components/up-icon/icons.uts +222 -0
- package/uview-ultra/components/up-icon/props.js +92 -0
- package/uview-ultra/components/up-icon/props.uts +101 -0
- package/uview-ultra/components/up-icon/up-icon.uvue +278 -0
- package/uview-ultra/components/up-icon/up-icon.vue +242 -0
- package/uview-ultra/components/up-image/image.js +30 -0
- package/uview-ultra/components/up-image/image.uts +30 -0
- package/uview-ultra/components/up-image/props.js +87 -0
- package/uview-ultra/components/up-image/props.uts +88 -0
- package/uview-ultra/components/up-image/up-image.uvue +246 -0
- package/uview-ultra/components/up-image/up-image.vue +237 -0
- package/uview-ultra/components/up-index-anchor/indexAnchor.js +19 -0
- package/uview-ultra/components/up-index-anchor/indexAnchor.uts +19 -0
- package/uview-ultra/components/up-index-anchor/props.js +31 -0
- package/uview-ultra/components/up-index-anchor/props.uts +41 -0
- package/uview-ultra/components/up-index-anchor/up-index-anchor.uvue +129 -0
- package/uview-ultra/components/up-index-anchor/up-index-anchor.vue +110 -0
- package/uview-ultra/components/up-index-item/indexItem.uts +15 -0
- package/uview-ultra/components/up-index-item/props.js +8 -0
- package/uview-ultra/components/up-index-item/props.uts +15 -0
- package/uview-ultra/components/up-index-item/up-index-item.uvue +92 -0
- package/uview-ultra/components/up-index-item/up-index-item.vue +89 -0
- package/uview-ultra/components/up-index-list/indexList.js +21 -0
- package/uview-ultra/components/up-index-list/indexList.uts +21 -0
- package/uview-ultra/components/up-index-list/props.js +41 -0
- package/uview-ultra/components/up-index-list/props.uts +51 -0
- package/uview-ultra/components/up-index-list/up-index-list.uvue +564 -0
- package/uview-ultra/components/up-index-list/up-index-list.vue +598 -0
- package/uview-ultra/components/up-input/input.js +48 -0
- package/uview-ultra/components/up-input/input.uts +49 -0
- package/uview-ultra/components/up-input/props.js +198 -0
- package/uview-ultra/components/up-input/props.uts +198 -0
- package/uview-ultra/components/up-input/up-input.uvue +545 -0
- package/uview-ultra/components/up-input/up-input.vue +394 -0
- package/uview-ultra/components/up-keyboard/keyboard.js +30 -0
- package/uview-ultra/components/up-keyboard/keyboard.uts +30 -0
- package/uview-ultra/components/up-keyboard/props.js +86 -0
- package/uview-ultra/components/up-keyboard/props.uts +97 -0
- package/uview-ultra/components/up-keyboard/up-keyboard.uvue +166 -0
- package/uview-ultra/components/up-keyboard/up-keyboard.vue +167 -0
- package/uview-ultra/components/up-lazy-load/lazyLoad.uts +19 -0
- package/uview-ultra/components/up-lazy-load/props.uts +74 -0
- package/uview-ultra/components/up-lazy-load/up-lazy-load.uvue +211 -0
- package/uview-ultra/components/up-lazy-load/up-lazy-load.vue +258 -0
- package/uview-ultra/components/up-line/line.js +20 -0
- package/uview-ultra/components/up-line/line.uts +20 -0
- package/uview-ultra/components/up-line/props.js +36 -0
- package/uview-ultra/components/up-line/props.uts +37 -0
- package/uview-ultra/components/up-line/up-line.uvue +61 -0
- package/uview-ultra/components/up-line/up-line.vue +66 -0
- package/uview-ultra/components/up-line-progress/lineProgress.js +19 -0
- package/uview-ultra/components/up-line-progress/props.js +30 -0
- package/uview-ultra/components/up-line-progress/up-line-progress.vue +149 -0
- package/uview-ultra/components/up-link/link.js +26 -0
- package/uview-ultra/components/up-link/link.uts +23 -0
- package/uview-ultra/components/up-link/props.js +41 -0
- package/uview-ultra/components/up-link/props.uts +43 -0
- package/uview-ultra/components/up-link/up-link.uvue +90 -0
- package/uview-ultra/components/up-link/up-link.vue +87 -0
- package/uview-ultra/components/up-list/list.js +28 -0
- package/uview-ultra/components/up-list/list.uts +33 -0
- package/uview-ultra/components/up-list/props.js +101 -0
- package/uview-ultra/components/up-list/props.uts +111 -0
- package/uview-ultra/components/up-list/up-list.uvue +146 -0
- package/uview-ultra/components/up-list/up-list.vue +185 -0
- package/uview-ultra/components/up-list-item/listItem.js +15 -0
- package/uview-ultra/components/up-list-item/listItem.uts +15 -0
- package/uview-ultra/components/up-list-item/props.js +11 -0
- package/uview-ultra/components/up-list-item/props.uts +21 -0
- package/uview-ultra/components/up-list-item/up-list-item.uvue +125 -0
- package/uview-ultra/components/up-list-item/up-list-item.vue +118 -0
- package/uview-ultra/components/up-loading-icon/loadingIcon.js +30 -0
- package/uview-ultra/components/up-loading-icon/loadingIcon.uts +28 -0
- package/uview-ultra/components/up-loading-icon/props.js +62 -0
- package/uview-ultra/components/up-loading-icon/props.uts +71 -0
- package/uview-ultra/components/up-loading-icon/up-loading-icon.uvue +311 -0
- package/uview-ultra/components/up-loading-icon/up-loading-icon.vue +349 -0
- package/uview-ultra/components/up-loading-page/loadingPage.js +24 -0
- package/uview-ultra/components/up-loading-page/loadingPage.uts +24 -0
- package/uview-ultra/components/up-loading-page/props.js +57 -0
- package/uview-ultra/components/up-loading-page/props.uts +58 -0
- package/uview-ultra/components/up-loading-page/up-loading-page.uvue +129 -0
- package/uview-ultra/components/up-loading-page/up-loading-page.vue +123 -0
- package/uview-ultra/components/up-loadmore/loadmore.js +32 -0
- package/uview-ultra/components/up-loadmore/loadmore.uts +32 -0
- package/uview-ultra/components/up-loadmore/props.js +96 -0
- package/uview-ultra/components/up-loadmore/props.uts +107 -0
- package/uview-ultra/components/up-loadmore/up-loadmore.uvue +160 -0
- package/uview-ultra/components/up-loadmore/up-loadmore.vue +155 -0
- package/uview-ultra/components/up-modal/modal.js +36 -0
- package/uview-ultra/components/up-modal/modal.uts +36 -0
- package/uview-ultra/components/up-modal/props.js +111 -0
- package/uview-ultra/components/up-modal/props.uts +113 -0
- package/uview-ultra/components/up-modal/up-modal.uvue +269 -0
- package/uview-ultra/components/up-modal/up-modal.vue +265 -0
- package/uview-ultra/components/up-navbar/navbar.js +33 -0
- package/uview-ultra/components/up-navbar/navbar.uts +32 -0
- package/uview-ultra/components/up-navbar/props.js +87 -0
- package/uview-ultra/components/up-navbar/props.uts +88 -0
- package/uview-ultra/components/up-navbar/up-navbar.uvue +205 -0
- package/uview-ultra/components/up-navbar/up-navbar.vue +193 -0
- package/uview-ultra/components/up-navbar-mini/navbarMini.js +23 -0
- package/uview-ultra/components/up-navbar-mini/navbarMini.uts +23 -0
- package/uview-ultra/components/up-navbar-mini/props.js +51 -0
- package/uview-ultra/components/up-navbar-mini/props.uts +53 -0
- package/uview-ultra/components/up-navbar-mini/up-navbar-mini.uvue +146 -0
- package/uview-ultra/components/up-navbar-mini/up-navbar-mini.vue +137 -0
- package/uview-ultra/components/up-no-network/noNetwork.js +18 -0
- package/uview-ultra/components/up-no-network/noNetwork.uts +18 -0
- package/uview-ultra/components/up-no-network/props.js +21 -0
- package/uview-ultra/components/up-no-network/props.uts +31 -0
- package/uview-ultra/components/up-no-network/up-no-network.uvue +227 -0
- package/uview-ultra/components/up-no-network/up-no-network.vue +224 -0
- package/uview-ultra/components/up-notice-bar/noticeBar.js +27 -0
- package/uview-ultra/components/up-notice-bar/noticeBar.uts +27 -0
- package/uview-ultra/components/up-notice-bar/props.js +72 -0
- package/uview-ultra/components/up-notice-bar/props.uts +74 -0
- package/uview-ultra/components/up-notice-bar/up-notice-bar.uvue +108 -0
- package/uview-ultra/components/up-notice-bar/up-notice-bar.vue +105 -0
- package/uview-ultra/components/up-notify/notify.js +22 -0
- package/uview-ultra/components/up-notify/notify.uts +22 -0
- package/uview-ultra/components/up-notify/props.js +51 -0
- package/uview-ultra/components/up-notify/props.uts +56 -0
- package/uview-ultra/components/up-notify/up-notify.uvue +253 -0
- package/uview-ultra/components/up-notify/up-notify.vue +217 -0
- package/uview-ultra/components/up-number-box/numberBox.js +40 -0
- package/uview-ultra/components/up-number-box/numberBox.uts +40 -0
- package/uview-ultra/components/up-number-box/props.js +145 -0
- package/uview-ultra/components/up-number-box/props.uts +148 -0
- package/uview-ultra/components/up-number-box/up-number-box.uvue +447 -0
- package/uview-ultra/components/up-number-box/up-number-box.vue +479 -0
- package/uview-ultra/components/up-number-keyboard/numberKeyboard.js +17 -0
- package/uview-ultra/components/up-number-keyboard/numberKeyboard.uts +17 -0
- package/uview-ultra/components/up-number-keyboard/props.js +21 -0
- package/uview-ultra/components/up-number-keyboard/props.uts +32 -0
- package/uview-ultra/components/up-number-keyboard/up-number-keyboard.uvue +208 -0
- package/uview-ultra/components/up-number-keyboard/up-number-keyboard.vue +199 -0
- package/uview-ultra/components/up-overlay/overlay.js +18 -0
- package/uview-ultra/components/up-overlay/overlay.uts +18 -0
- package/uview-ultra/components/up-overlay/props.js +26 -0
- package/uview-ultra/components/up-overlay/props.uts +28 -0
- package/uview-ultra/components/up-overlay/up-overlay.uvue +71 -0
- package/uview-ultra/components/up-overlay/up-overlay.vue +71 -0
- package/uview-ultra/components/up-parse/node/node.vue +584 -0
- package/uview-ultra/components/up-parse/parse.js +22 -0
- package/uview-ultra/components/up-parse/parser.js +1333 -0
- package/uview-ultra/components/up-parse/props.js +48 -0
- package/uview-ultra/components/up-parse/up-parse.vue +499 -0
- package/uview-ultra/components/up-picker/picker.js +30 -0
- package/uview-ultra/components/up-picker/picker.uts +30 -0
- package/uview-ultra/components/up-picker/props.js +103 -0
- package/uview-ultra/components/up-picker/props.uts +114 -0
- package/uview-ultra/components/up-picker/up-picker.uvue +391 -0
- package/uview-ultra/components/up-picker/up-picker.vue +345 -0
- package/uview-ultra/components/up-picker-column/props.js +7 -0
- package/uview-ultra/components/up-picker-column/props.uts +7 -0
- package/uview-ultra/components/up-picker-column/up-picker-column.uvue +28 -0
- package/uview-ultra/components/up-picker-column/up-picker-column.vue +28 -0
- package/uview-ultra/components/up-popup/popup.js +29 -0
- package/uview-ultra/components/up-popup/popup.uts +28 -0
- package/uview-ultra/components/up-popup/props.js +81 -0
- package/uview-ultra/components/up-popup/props.uts +91 -0
- package/uview-ultra/components/up-popup/up-popup.uvue +318 -0
- package/uview-ultra/components/up-popup/up-popup.vue +310 -0
- package/uview-ultra/components/up-qrcode/qrcode.js +1281 -0
- package/uview-ultra/components/up-qrcode/up-qrcode.vue +536 -0
- package/uview-ultra/components/up-radio/props.js +71 -0
- package/uview-ultra/components/up-radio/props.uts +81 -0
- package/uview-ultra/components/up-radio/radio.js +27 -0
- package/uview-ultra/components/up-radio/radio.uts +27 -0
- package/uview-ultra/components/up-radio/up-radio.uvue +393 -0
- package/uview-ultra/components/up-radio/up-radio.vue +348 -0
- package/uview-ultra/components/up-radio-group/props.js +95 -0
- package/uview-ultra/components/up-radio-group/props.uts +90 -0
- package/uview-ultra/components/up-radio-group/radioGroup.js +30 -0
- package/uview-ultra/components/up-radio-group/radioGroup.uts +30 -0
- package/uview-ultra/components/up-radio-group/up-radio-group.uvue +113 -0
- package/uview-ultra/components/up-radio-group/up-radio-group.vue +128 -0
- package/uview-ultra/components/up-rate/props.js +80 -0
- package/uview-ultra/components/up-rate/props.uts +82 -0
- package/uview-ultra/components/up-rate/rate.js +26 -0
- package/uview-ultra/components/up-rate/rate.uts +27 -0
- package/uview-ultra/components/up-rate/up-rate.uvue +316 -0
- package/uview-ultra/components/up-rate/up-rate.vue +327 -0
- package/uview-ultra/components/up-read-more/props.js +63 -0
- package/uview-ultra/components/up-read-more/props.uts +61 -0
- package/uview-ultra/components/up-read-more/readMore.js +23 -0
- package/uview-ultra/components/up-read-more/readMore.uts +23 -0
- package/uview-ultra/components/up-read-more/up-read-more.uvue +160 -0
- package/uview-ultra/components/up-read-more/up-read-more.vue +165 -0
- package/uview-ultra/components/up-row/props.js +22 -0
- package/uview-ultra/components/up-row/props.uts +31 -0
- package/uview-ultra/components/up-row/row.js +17 -0
- package/uview-ultra/components/up-row/row.uts +17 -0
- package/uview-ultra/components/up-row/up-row.uvue +118 -0
- package/uview-ultra/components/up-row/up-row.vue +97 -0
- package/uview-ultra/components/up-row-notice/props.js +41 -0
- package/uview-ultra/components/up-row-notice/props.uts +43 -0
- package/uview-ultra/components/up-row-notice/rowNotice.js +21 -0
- package/uview-ultra/components/up-row-notice/rowNotice.uts +21 -0
- package/uview-ultra/components/up-row-notice/up-row-notice.uvue +304 -0
- package/uview-ultra/components/up-row-notice/up-row-notice.vue +337 -0
- package/uview-ultra/components/up-safe-bottom/props.js +7 -0
- package/uview-ultra/components/up-safe-bottom/props.uts +6 -0
- package/uview-ultra/components/up-safe-bottom/up-safe-bottom.uvue +59 -0
- package/uview-ultra/components/up-safe-bottom/up-safe-bottom.vue +59 -0
- package/uview-ultra/components/up-scroll-list/nvue.js +31 -0
- package/uview-ultra/components/up-scroll-list/props.js +36 -0
- package/uview-ultra/components/up-scroll-list/props.uts +38 -0
- package/uview-ultra/components/up-scroll-list/scrollList.js +20 -0
- package/uview-ultra/components/up-scroll-list/scrollList.uts +20 -0
- package/uview-ultra/components/up-scroll-list/scrollWxs.wxs +50 -0
- package/uview-ultra/components/up-scroll-list/up-scroll-list.uvue +212 -0
- package/uview-ultra/components/up-scroll-list/up-scroll-list.vue +233 -0
- package/uview-ultra/components/up-search/props.js +156 -0
- package/uview-ultra/components/up-search/props.uts +152 -0
- package/uview-ultra/components/up-search/search.js +41 -0
- package/uview-ultra/components/up-search/search.uts +41 -0
- package/uview-ultra/components/up-search/up-search.uvue +364 -0
- package/uview-ultra/components/up-search/up-search.vue +354 -0
- package/uview-ultra/components/up-skeleton/props.js +61 -0
- package/uview-ultra/components/up-skeleton/props.uts +69 -0
- package/uview-ultra/components/up-skeleton/skeleton.js +25 -0
- package/uview-ultra/components/up-skeleton/skeleton.uts +22 -0
- package/uview-ultra/components/up-skeleton/up-skeleton.uvue +228 -0
- package/uview-ultra/components/up-skeleton/up-skeleton.vue +248 -0
- package/uview-ultra/components/up-slider/props.js +95 -0
- package/uview-ultra/components/up-slider/props.uts +102 -0
- package/uview-ultra/components/up-slider/slider.js +28 -0
- package/uview-ultra/components/up-slider/slider.uts +25 -0
- package/uview-ultra/components/up-slider/up-slider.uvue +547 -0
- package/uview-ultra/components/up-slider/up-slider.vue +511 -0
- package/uview-ultra/components/up-status-bar/props.js +10 -0
- package/uview-ultra/components/up-status-bar/props.uts +12 -0
- package/uview-ultra/components/up-status-bar/statusBar.js +15 -0
- package/uview-ultra/components/up-status-bar/statusBar.uts +15 -0
- package/uview-ultra/components/up-status-bar/up-status-bar.uvue +47 -0
- package/uview-ultra/components/up-status-bar/up-status-bar.vue +49 -0
- package/uview-ultra/components/up-steps/props.js +41 -0
- package/uview-ultra/components/up-steps/props.uts +43 -0
- package/uview-ultra/components/up-steps/steps.js +21 -0
- package/uview-ultra/components/up-steps/steps.uts +22 -0
- package/uview-ultra/components/up-steps/up-steps.uvue +93 -0
- package/uview-ultra/components/up-steps/up-steps.vue +94 -0
- package/uview-ultra/components/up-steps-item/props.js +31 -0
- package/uview-ultra/components/up-steps-item/props.uts +33 -0
- package/uview-ultra/components/up-steps-item/stepsItem.js +18 -0
- package/uview-ultra/components/up-steps-item/stepsItem.uts +18 -0
- package/uview-ultra/components/up-steps-item/up-steps-item.uvue +412 -0
- package/uview-ultra/components/up-steps-item/up-steps-item.vue +349 -0
- package/uview-ultra/components/up-sticky/props.js +42 -0
- package/uview-ultra/components/up-sticky/props.uts +52 -0
- package/uview-ultra/components/up-sticky/sticky.js +20 -0
- package/uview-ultra/components/up-sticky/sticky.uts +20 -0
- package/uview-ultra/components/up-sticky/up-sticky.uvue +173 -0
- package/uview-ultra/components/up-sticky/up-sticky.vue +221 -0
- package/uview-ultra/components/up-subsection/props.js +51 -0
- package/uview-ultra/components/up-subsection/props.uts +53 -0
- package/uview-ultra/components/up-subsection/subsection.js +23 -0
- package/uview-ultra/components/up-subsection/subsection.uts +23 -0
- package/uview-ultra/components/up-subsection/up-subsection.uvue +301 -0
- package/uview-ultra/components/up-subsection/up-subsection.vue +318 -0
- package/uview-ultra/components/up-swipe-action/props.js +16 -0
- package/uview-ultra/components/up-swipe-action/props.uts +18 -0
- package/uview-ultra/components/up-swipe-action/swipeAction.js +15 -0
- package/uview-ultra/components/up-swipe-action/swipeAction.uts +16 -0
- package/uview-ultra/components/up-swipe-action/up-swipe-action.uvue +88 -0
- package/uview-ultra/components/up-swipe-action/up-swipe-action.vue +84 -0
- package/uview-ultra/components/up-swipe-action-item/alipay.sjs +229 -0
- package/uview-ultra/components/up-swipe-action-item/index.wxs +234 -0
- package/uview-ultra/components/up-swipe-action-item/nvue.js +174 -0
- package/uview-ultra/components/up-swipe-action-item/other.js +178 -0
- package/uview-ultra/components/up-swipe-action-item/other.uts +176 -0
- package/uview-ultra/components/up-swipe-action-item/props.js +47 -0
- package/uview-ultra/components/up-swipe-action-item/props.uts +48 -0
- package/uview-ultra/components/up-swipe-action-item/swipeActionItem.js +22 -0
- package/uview-ultra/components/up-swipe-action-item/swipeActionItem.uts +23 -0
- package/uview-ultra/components/up-swipe-action-item/types.uts +11 -0
- package/uview-ultra/components/up-swipe-action-item/up-swipe-action-item.uvue +382 -0
- package/uview-ultra/components/up-swipe-action-item/up-swipe-action-item.vue +249 -0
- package/uview-ultra/components/up-swipe-action-item/wxs.js +15 -0
- package/uview-ultra/components/up-swiper/props.js +127 -0
- package/uview-ultra/components/up-swiper/props.uts +137 -0
- package/uview-ultra/components/up-swiper/swiper.js +39 -0
- package/uview-ultra/components/up-swiper/swiper.uts +38 -0
- package/uview-ultra/components/up-swiper/up-swiper.uvue +290 -0
- package/uview-ultra/components/up-swiper/up-swiper.vue +269 -0
- package/uview-ultra/components/up-swiper-indicator/props.js +31 -0
- package/uview-ultra/components/up-swiper-indicator/props.uts +41 -0
- package/uview-ultra/components/up-swiper-indicator/swipterIndicator.js +19 -0
- package/uview-ultra/components/up-swiper-indicator/swipterIndicator.uts +19 -0
- package/uview-ultra/components/up-swiper-indicator/up-swiper-indicator.uvue +123 -0
- package/uview-ultra/components/up-swiper-indicator/up-swiper-indicator.vue +114 -0
- package/uview-ultra/components/up-switch/props.js +64 -0
- package/uview-ultra/components/up-switch/props.uts +82 -0
- package/uview-ultra/components/up-switch/switch.js +24 -0
- package/uview-ultra/components/up-switch/switch.uts +27 -0
- package/uview-ultra/components/up-switch/up-switch.uvue +193 -0
- package/uview-ultra/components/up-switch/up-switch.vue +215 -0
- package/uview-ultra/components/up-tabbar/props.js +57 -0
- package/uview-ultra/components/up-tabbar/props.uts +66 -0
- package/uview-ultra/components/up-tabbar/tabbar.js +24 -0
- package/uview-ultra/components/up-tabbar/tabbar.uts +24 -0
- package/uview-ultra/components/up-tabbar/up-tabbar.uvue +149 -0
- package/uview-ultra/components/up-tabbar/up-tabbar.vue +151 -0
- package/uview-ultra/components/up-tabbar-item/props.js +41 -0
- package/uview-ultra/components/up-tabbar-item/props.uts +51 -0
- package/uview-ultra/components/up-tabbar-item/tabbarItem.js +21 -0
- package/uview-ultra/components/up-tabbar-item/tabbarItem.uts +21 -0
- package/uview-ultra/components/up-tabbar-item/up-tabbar-item.uvue +207 -0
- package/uview-ultra/components/up-tabbar-item/up-tabbar-item.vue +197 -0
- package/uview-ultra/components/up-table/props.js +7 -0
- package/uview-ultra/components/up-table/props.uts +39 -0
- package/uview-ultra/components/up-table/table.uts +21 -0
- package/uview-ultra/components/up-table/up-table.uvue +111 -0
- package/uview-ultra/components/up-table/up-table.vue +104 -0
- package/uview-ultra/components/up-tabs/props.js +71 -0
- package/uview-ultra/components/up-tabs/props.uts +73 -0
- package/uview-ultra/components/up-tabs/tabs.js +33 -0
- package/uview-ultra/components/up-tabs/tabs.uts +34 -0
- package/uview-ultra/components/up-tabs/types.uts +19 -0
- package/uview-ultra/components/up-tabs/up-tabs.uvue +417 -0
- package/uview-ultra/components/up-tabs/up-tabs.vue +413 -0
- package/uview-ultra/components/up-tabs-item/props.js +7 -0
- package/uview-ultra/components/up-tabs-item/props.uts +7 -0
- package/uview-ultra/components/up-tabs-item/up-tabs-item.uvue +31 -0
- package/uview-ultra/components/up-tabs-item/up-tabs-item.vue +31 -0
- package/uview-ultra/components/up-tag/props.js +91 -0
- package/uview-ultra/components/up-tag/props.uts +100 -0
- package/uview-ultra/components/up-tag/tag.js +30 -0
- package/uview-ultra/components/up-tag/tag.uts +30 -0
- package/uview-ultra/components/up-tag/up-tag.uvue +370 -0
- package/uview-ultra/components/up-tag/up-tag.vue +368 -0
- package/uview-ultra/components/up-td/props.js +7 -0
- package/uview-ultra/components/up-td/props.uts +7 -0
- package/uview-ultra/components/up-td/td.uts +19 -0
- package/uview-ultra/components/up-td/up-td.uvue +105 -0
- package/uview-ultra/components/up-td/up-td.vue +98 -0
- package/uview-ultra/components/up-text/props.js +118 -0
- package/uview-ultra/components/up-text/props.uts +154 -0
- package/uview-ultra/components/up-text/text.js +39 -0
- package/uview-ultra/components/up-text/text.uts +44 -0
- package/uview-ultra/components/up-text/up-text.uvue +339 -0
- package/uview-ultra/components/up-text/up-text.vue +228 -0
- package/uview-ultra/components/up-text/value.js +87 -0
- package/uview-ultra/components/up-textarea/props.js +127 -0
- package/uview-ultra/components/up-textarea/props.uts +125 -0
- package/uview-ultra/components/up-textarea/textarea.js +36 -0
- package/uview-ultra/components/up-textarea/textarea.uts +36 -0
- package/uview-ultra/components/up-textarea/up-textarea.uvue +258 -0
- package/uview-ultra/components/up-textarea/up-textarea.vue +278 -0
- package/uview-ultra/components/up-th/props.js +7 -0
- package/uview-ultra/components/up-th/props.uts +7 -0
- package/uview-ultra/components/up-th/th.uts +16 -0
- package/uview-ultra/components/up-th/up-th.uvue +74 -0
- package/uview-ultra/components/up-th/up-th.vue +66 -0
- package/uview-ultra/components/up-title/up-title.uvue +36 -0
- package/uview-ultra/components/up-title/up-title.vue +36 -0
- package/uview-ultra/components/up-toast/toast.js +30 -0
- package/uview-ultra/components/up-toast/toast.uts +29 -0
- package/uview-ultra/components/up-toast/up-toast.uvue +330 -0
- package/uview-ultra/components/up-toast/up-toast.vue +304 -0
- package/uview-ultra/components/up-toolbar/props.js +41 -0
- package/uview-ultra/components/up-toolbar/props.uts +43 -0
- package/uview-ultra/components/up-toolbar/toolbar.js +21 -0
- package/uview-ultra/components/up-toolbar/toolbar.uts +20 -0
- package/uview-ultra/components/up-toolbar/up-toolbar.uvue +125 -0
- package/uview-ultra/components/up-toolbar/up-toolbar.vue +125 -0
- package/uview-ultra/components/up-tooltip/props.js +61 -0
- package/uview-ultra/components/up-tooltip/tooltip.js +25 -0
- package/uview-ultra/components/up-tooltip/up-tooltip.vue +342 -0
- package/uview-ultra/components/up-tr/props.js +7 -0
- package/uview-ultra/components/up-tr/props.uts +7 -0
- package/uview-ultra/components/up-tr/up-tr.uvue +22 -0
- package/uview-ultra/components/up-tr/up-tr.vue +34 -0
- package/uview-ultra/components/up-transition/nvue-ani-map.js +68 -0
- package/uview-ultra/components/up-transition/props.js +27 -0
- package/uview-ultra/components/up-transition/props.uts +36 -0
- package/uview-ultra/components/up-transition/transition.js +18 -0
- package/uview-ultra/components/up-transition/transition.uts +18 -0
- package/uview-ultra/components/up-transition/transitionMixin.js +163 -0
- package/uview-ultra/components/up-transition/up-transition.uvue +161 -0
- package/uview-ultra/components/up-transition/up-transition.vue +96 -0
- package/uview-ultra/components/up-transition/vue.ani-style.scss +113 -0
- package/uview-ultra/components/up-upload/mixin.js +23 -0
- package/uview-ultra/components/up-upload/mixin.uts +24 -0
- package/uview-ultra/components/up-upload/props.js +176 -0
- package/uview-ultra/components/up-upload/props.uts +176 -0
- package/uview-ultra/components/up-upload/types.uts +38 -0
- package/uview-ultra/components/up-upload/up-upload.uvue +965 -0
- package/uview-ultra/components/up-upload/up-upload.vue +927 -0
- package/uview-ultra/components/up-upload/upload.js +46 -0
- package/uview-ultra/components/up-upload/upload.uts +46 -0
- package/uview-ultra/components/up-upload/utils.js +180 -0
- package/uview-ultra/components/up-upload/utils.uts +213 -0
- package/uview-ultra/components/up-waterfall/props.uts +49 -0
- package/uview-ultra/components/up-waterfall/up-waterfall.uvue +344 -0
- package/uview-ultra/components/up-waterfall/up-waterfall.vue +416 -0
- package/uview-ultra/components/up-waterfall/waterfall.uts +20 -0
- package/uview-ultra/index.js +145 -0
- package/uview-ultra/index.scss +18 -0
- package/uview-ultra/index.uts +67 -0
- package/uview-ultra/libs/composable/useButton.uts +61 -0
- package/uview-ultra/libs/composable/useFuncIndex.uts +861 -0
- package/uview-ultra/libs/composable/useMp.uts +6 -0
- package/uview-ultra/libs/composable/useOpenType.uts +63 -0
- package/uview-ultra/libs/composable/useUltraUI.uts +206 -0
- package/uview-ultra/libs/config/color.js +17 -0
- package/uview-ultra/libs/config/color.uts +17 -0
- package/uview-ultra/libs/config/config.js +33 -0
- package/uview-ultra/libs/config/config.uts +33 -0
- package/uview-ultra/libs/config/props.js +190 -0
- package/uview-ultra/libs/config/props.uts +3 -0
- package/uview-ultra/libs/config/zIndex.js +20 -0
- package/uview-ultra/libs/config/zIndex.uts +20 -0
- package/uview-ultra/libs/css/color.scss +311 -0
- package/uview-ultra/libs/css/common.scss +121 -0
- package/uview-ultra/libs/css/components.scss +34 -0
- package/uview-ultra/libs/css/flex.scss +368 -0
- package/uview-ultra/libs/css/h5.scss +0 -0
- package/uview-ultra/libs/css/mixin.scss +8 -0
- package/uview-ultra/libs/css/mp.scss +0 -0
- package/uview-ultra/libs/css/vue.scss +35 -0
- package/uview-ultra/libs/function/colorGradient.js +134 -0
- package/uview-ultra/libs/function/colorGradient.uts +316 -0
- package/uview-ultra/libs/function/debounce.js +29 -0
- package/uview-ultra/libs/function/debounce.uts +33 -0
- package/uview-ultra/libs/function/digit.js +167 -0
- package/uview-ultra/libs/function/digit.uts +182 -0
- package/uview-ultra/libs/function/index.js +747 -0
- package/uview-ultra/libs/function/index.uts +826 -0
- package/uview-ultra/libs/function/platform.js +75 -0
- package/uview-ultra/libs/function/platform.uts +75 -0
- package/uview-ultra/libs/function/test.js +330 -0
- package/uview-ultra/libs/function/test.uts +343 -0
- package/uview-ultra/libs/function/throttle.js +30 -0
- package/uview-ultra/libs/function/throttle.uts +36 -0
- package/uview-ultra/libs/i18n/index.js +55 -0
- package/uview-ultra/libs/i18n/index.uts +65 -0
- package/uview-ultra/libs/i18n/locales/de.json +85 -0
- package/uview-ultra/libs/i18n/locales/en.json +85 -0
- package/uview-ultra/libs/i18n/locales/es.json +85 -0
- package/uview-ultra/libs/i18n/locales/fr.json +85 -0
- package/uview-ultra/libs/i18n/locales/ja.json +85 -0
- package/uview-ultra/libs/i18n/locales/ko.json +85 -0
- package/uview-ultra/libs/i18n/locales/ru.json +85 -0
- package/uview-ultra/libs/i18n/locales/th.json +85 -0
- package/uview-ultra/libs/i18n/locales/zh-Hans.json +85 -0
- package/uview-ultra/libs/i18n/locales/zh-Hant.json +85 -0
- package/uview-ultra/libs/luch-request/adapters/index.js +97 -0
- package/uview-ultra/libs/luch-request/core/InterceptorManager.js +50 -0
- package/uview-ultra/libs/luch-request/core/Request.js +198 -0
- package/uview-ultra/libs/luch-request/core/buildFullPath.js +20 -0
- package/uview-ultra/libs/luch-request/core/defaults.js +29 -0
- package/uview-ultra/libs/luch-request/core/dispatchRequest.js +3 -0
- package/uview-ultra/libs/luch-request/core/mergeConfig.js +103 -0
- package/uview-ultra/libs/luch-request/core/settle.js +16 -0
- package/uview-ultra/libs/luch-request/helpers/buildURL.js +69 -0
- package/uview-ultra/libs/luch-request/helpers/combineURLs.js +14 -0
- package/uview-ultra/libs/luch-request/helpers/isAbsoluteURL.js +14 -0
- package/uview-ultra/libs/luch-request/index.d.ts +116 -0
- package/uview-ultra/libs/luch-request/index.js +3 -0
- package/uview-ultra/libs/luch-request/utils/clone.js +264 -0
- package/uview-ultra/libs/luch-request/utils.js +131 -0
- package/uview-ultra/libs/mixin/button.js +18 -0
- package/uview-ultra/libs/mixin/button.uts +15 -0
- package/uview-ultra/libs/mixin/mixin.js +201 -0
- package/uview-ultra/libs/mixin/mixin.uts +220 -0
- package/uview-ultra/libs/mixin/mpMixin.js +13 -0
- package/uview-ultra/libs/mixin/mpMixin.uts +10 -0
- package/uview-ultra/libs/mixin/mpShare.js +27 -0
- package/uview-ultra/libs/mixin/mpShare.uts +26 -0
- package/uview-ultra/libs/mixin/openType.js +27 -0
- package/uview-ultra/libs/mixin/openType.uts +36 -0
- package/uview-ultra/libs/mixin/style.js +249 -0
- package/uview-ultra/libs/mixin/touch.js +61 -0
- package/uview-ultra/libs/mixin/touch.uts +72 -0
- package/uview-ultra/libs/util/async-validator.js +1343 -0
- package/uview-ultra/libs/util/async-validator.uts +1339 -0
- package/uview-ultra/libs/util/calendar.js +546 -0
- package/uview-ultra/libs/util/calendar.uts +546 -0
- package/uview-ultra/libs/util/emitter.js +51 -0
- package/uview-ultra/libs/util/route.js +124 -0
- package/uview-ultra/libs/util/route.uts +130 -0
- package/uview-ultra/libs/vue.js +3 -0
- package/uview-ultra/libs/vue.uts +8 -0
- package/uview-ultra/package.json +108 -0
- package/uview-ultra/theme.scss +77 -0
- package/uview-ultra/types/common.uts +14 -0
- package/uview-ultra/types/comps/_common.d.ts +9 -0
- package/uview-ultra/types/comps/actionSheet.d.ts +121 -0
- package/uview-ultra/types/comps/album.d.ts +82 -0
- package/uview-ultra/types/comps/alert.d.ts +55 -0
- package/uview-ultra/types/comps/avatar.d.ts +85 -0
- package/uview-ultra/types/comps/avatarGroup.d.ts +62 -0
- package/uview-ultra/types/comps/backTop.d.ts +74 -0
- package/uview-ultra/types/comps/badge.d.ts +76 -0
- package/uview-ultra/types/comps/button.d.ts +169 -0
- package/uview-ultra/types/comps/calendar.d.ts +164 -0
- package/uview-ultra/types/comps/cell.d.ts +133 -0
- package/uview-ultra/types/comps/cellGroup.d.ts +27 -0
- package/uview-ultra/types/comps/checkbox.d.ts +69 -0
- package/uview-ultra/types/comps/checkboxGroup.d.ts +93 -0
- package/uview-ultra/types/comps/code.d.ts +69 -0
- package/uview-ultra/types/comps/codeInput.d.ts +98 -0
- package/uview-ultra/types/comps/col.d.ts +43 -0
- package/uview-ultra/types/comps/collapse.d.ts +52 -0
- package/uview-ultra/types/comps/collapseItem.d.ts +83 -0
- package/uview-ultra/types/comps/countDown.d.ts +60 -0
- package/uview-ultra/types/comps/countTo.d.ts +88 -0
- package/uview-ultra/types/comps/datetimePicker.d.ts +146 -0
- package/uview-ultra/types/comps/divider.d.ts +58 -0
- package/uview-ultra/types/comps/empty.d.ts +72 -0
- package/uview-ultra/types/comps/form.d.ts +76 -0
- package/uview-ultra/types/comps/formItem.d.ts +68 -0
- package/uview-ultra/types/comps/gap.d.ts +35 -0
- package/uview-ultra/types/comps/grid.d.ts +34 -0
- package/uview-ultra/types/comps/gridItem.d.ts +28 -0
- package/uview-ultra/types/comps/icon.d.ts +93 -0
- package/uview-ultra/types/comps/image.d.ts +119 -0
- package/uview-ultra/types/comps/indexAnchor.d.ts +38 -0
- package/uview-ultra/types/comps/indexItem.d.ts +18 -0
- package/uview-ultra/types/comps/indexList.d.ts +39 -0
- package/uview-ultra/types/comps/input.d.ts +234 -0
- package/uview-ultra/types/comps/keyboard.d.ts +125 -0
- package/uview-ultra/types/comps/line.d.ts +44 -0
- package/uview-ultra/types/comps/lineProgress.d.ts +51 -0
- package/uview-ultra/types/comps/link.d.ts +51 -0
- package/uview-ultra/types/comps/list.d.ts +92 -0
- package/uview-ultra/types/comps/listItem.d.ts +18 -0
- package/uview-ultra/types/comps/loadMore.d.ts +108 -0
- package/uview-ultra/types/comps/loadingIcon.d.ts +68 -0
- package/uview-ultra/types/comps/loadingPage.d.ts +58 -0
- package/uview-ultra/types/comps/modal.d.ts +115 -0
- package/uview-ultra/types/comps/navbar.d.ts +113 -0
- package/uview-ultra/types/comps/navbarMini.d.ts +78 -0
- package/uview-ultra/types/comps/noNetwork.d.ts +40 -0
- package/uview-ultra/types/comps/noticeBar.d.ts +85 -0
- package/uview-ultra/types/comps/notify.d.ts +73 -0
- package/uview-ultra/types/comps/numberBox.d.ts +155 -0
- package/uview-ultra/types/comps/overlay.d.ts +46 -0
- package/uview-ultra/types/comps/parse.d.ts +101 -0
- package/uview-ultra/types/comps/picker.d.ts +115 -0
- package/uview-ultra/types/comps/popup.d.ts +103 -0
- package/uview-ultra/types/comps/radio.d.ts +77 -0
- package/uview-ultra/types/comps/radioGroup.d.ts +97 -0
- package/uview-ultra/types/comps/rate.d.ts +85 -0
- package/uview-ultra/types/comps/readMore.d.ts +80 -0
- package/uview-ultra/types/comps/row.d.ts +34 -0
- package/uview-ultra/types/comps/safeBottom.d.ts +16 -0
- package/uview-ultra/types/comps/scrollList.d.ts +51 -0
- package/uview-ultra/types/comps/search.d.ts +167 -0
- package/uview-ultra/types/comps/skeleton.d.ts +70 -0
- package/uview-ultra/types/comps/slider.d.ts +79 -0
- package/uview-ultra/types/comps/statusBar.d.ts +22 -0
- package/uview-ultra/types/comps/steps.d.ts +48 -0
- package/uview-ultra/types/comps/stepsItem.d.ts +41 -0
- package/uview-ultra/types/comps/sticky.d.ts +48 -0
- package/uview-ultra/types/comps/subsection.d.ts +64 -0
- package/uview-ultra/types/comps/swipeAction.d.ts +24 -0
- package/uview-ultra/types/comps/swipeActionItem.d.ts +58 -0
- package/uview-ultra/types/comps/swiper.d.ts +142 -0
- package/uview-ultra/types/comps/swiperIndicator.d.ts +37 -0
- package/uview-ultra/types/comps/switch.d.ts +73 -0
- package/uview-ultra/types/comps/tabbar.d.ts +54 -0
- package/uview-ultra/types/comps/tabbarItem.d.ts +52 -0
- package/uview-ultra/types/comps/tabs.d.ts +85 -0
- package/uview-ultra/types/comps/tag.d.ts +93 -0
- package/uview-ultra/types/comps/text.d.ts +110 -0
- package/uview-ultra/types/comps/textarea.d.ts +158 -0
- package/uview-ultra/types/comps/toast.d.ts +59 -0
- package/uview-ultra/types/comps/tooltip.d.ts +71 -0
- package/uview-ultra/types/comps/transition.d.ts +61 -0
- package/uview-ultra/types/comps/upload.d.ts +163 -0
- package/uview-ultra/types/comps.d.ts +101 -0
- package/uview-ultra/types/index.d.ts +172 -0
- package/uview-ultra/types/index.uts +7 -0
- package/uview-ultra/types/package.json +26 -0
|
@@ -0,0 +1,449 @@
|
|
|
1
|
+
## 4.2.48(2026-02-23)
|
|
2
|
+
refactor: 【组合式API重构】 up-input输入框组件(uni-app-x)
|
|
3
|
+
|
|
4
|
+
## 4.2.47(2026-02-14)
|
|
5
|
+
refactor: 【组合式API重构】 up-grid宫格组件(uni-app-x)
|
|
6
|
+
|
|
7
|
+
## 4.2.46(2026-02-13)
|
|
8
|
+
refactor: 【组合式API重构】 up-index-list索引列表组件(uni-app-x)
|
|
9
|
+
|
|
10
|
+
## 4.2.45(2026-02-12)
|
|
11
|
+
refactor: 【组合式API重构】 修复up-row-notice组件在app-android箭头函数导致递归报错(uni-app-x)
|
|
12
|
+
|
|
13
|
+
## 4.2.44(2026-02-12)
|
|
14
|
+
refactor: 【组合式API重构】 up-datetime-picker组件(uni-app-x)
|
|
15
|
+
|
|
16
|
+
## 4.2.43(2026-02-09)
|
|
17
|
+
refactor: 【组合式API重构】 up-row-notice组件(uni-app-x)
|
|
18
|
+
|
|
19
|
+
## 4.2.42(2026-02-07)
|
|
20
|
+
refactor: 【组合式API重构】 up-collapse组件(uni-app-x)
|
|
21
|
+
|
|
22
|
+
## 4.2.41(2026-02-07)
|
|
23
|
+
refactor: 【组合式API重构】 优化up-action-sheet组件(uni-app-x)
|
|
24
|
+
|
|
25
|
+
## 4.2.40(2026-02-06)
|
|
26
|
+
refactor: 【组合式API重构】 修复up-cell组件(uni-app-x)
|
|
27
|
+
|
|
28
|
+
## 4.2.39(2026-02-06)
|
|
29
|
+
improvment: 优化mixin等
|
|
30
|
+
|
|
31
|
+
## 4.2.38(2026-02-05)
|
|
32
|
+
refactor: 【组合式API重构】 支持template中使用$u.addUnit $u.addStyle $u.timeFormat(uni-app-x)
|
|
33
|
+
|
|
34
|
+
## 4.2.37(2026-02-05)
|
|
35
|
+
refactor: 【组合式API重构】 新增up-title组件(uni-app-x)
|
|
36
|
+
|
|
37
|
+
## 4.2.36(2026-02-05)
|
|
38
|
+
refactor: 【组合式API重构】 up-card组件(uni-app-x)
|
|
39
|
+
|
|
40
|
+
## 4.2.35(2026-02-04)
|
|
41
|
+
refactor: 【组合式API重构】 up-cell组件(uni-app-x)
|
|
42
|
+
|
|
43
|
+
## 4.2.34(2026-02-03)
|
|
44
|
+
refactor: 【组合式API重构】 up-cell-group组件(uni-app-x)
|
|
45
|
+
|
|
46
|
+
## 4.2.33(2026-02-03)
|
|
47
|
+
refactor: 【组合式API重构】 up-box组件(uni-app-x)
|
|
48
|
+
|
|
49
|
+
## 4.2.32(2026-02-02)
|
|
50
|
+
refactor: 【组合式API重构】 优化up-avatar组件(uni-app-x)
|
|
51
|
+
|
|
52
|
+
## 4.2.31(2026-02-02)
|
|
53
|
+
refactor: 【组合式API重构】 优化up-col组件(uni-app-x)
|
|
54
|
+
|
|
55
|
+
## 4.2.30(2026-02-02)
|
|
56
|
+
refactor: 【组合式API重构】 修复up-number-box组件(uni-app-x)
|
|
57
|
+
|
|
58
|
+
## 4.2.29(2026-01-31)
|
|
59
|
+
refactor: 【组合式API重构】 修复up-col组件(uni-app-x)
|
|
60
|
+
|
|
61
|
+
## 4.2.28(2026-01-31)
|
|
62
|
+
refactor: 【组合式API重构】 steps示例优化warning(uni-app-x)
|
|
63
|
+
|
|
64
|
+
## 4.2.27(2026-01-30)
|
|
65
|
+
refactor: 【组合式API重构】 subsection示例优化warning(uni-app-x)
|
|
66
|
+
|
|
67
|
+
## 4.2.26(2026-01-30)
|
|
68
|
+
refactor: 【组合式API重构】 swiper示例优化warning(uni-app-x)
|
|
69
|
+
|
|
70
|
+
## 4.2.25(2026-01-30)
|
|
71
|
+
refactor: 【组合式API重构】 tabs示例优化warning(uni-app-x)
|
|
72
|
+
|
|
73
|
+
## 4.2.24(2026-01-29)
|
|
74
|
+
refactor: 【组合式API重构】 text示例优化warning(uni-app-x)
|
|
75
|
+
|
|
76
|
+
## 4.2.23(2026-01-29)
|
|
77
|
+
refactor: 【组合式API重构】 textarea示例优化warning(uni-app-x)
|
|
78
|
+
|
|
79
|
+
## 4.2.22(2026-01-29)
|
|
80
|
+
refactor: 【组合式API重构】 tooltip示例优化warning(uni-app-x)
|
|
81
|
+
|
|
82
|
+
## 4.2.21(2026-01-28)
|
|
83
|
+
refactor: 【组合式API重构】 up-count-downr优化(uni-app-x)
|
|
84
|
+
|
|
85
|
+
## 4.2.20(2026-01-28)
|
|
86
|
+
refactor: 【组合式API重构】 up- picker优化(uni-app-x)
|
|
87
|
+
|
|
88
|
+
## 4.2.19(2026-01-28)
|
|
89
|
+
refactor: 【组合式API重构】 up-item-steps优化(uni-app-x)
|
|
90
|
+
|
|
91
|
+
## 4.2.18(2026-01-28)
|
|
92
|
+
refactor: 【组合式API重构】 up-subsection优化(uni-app-x)
|
|
93
|
+
|
|
94
|
+
## 4.2.17(2026-01-28)
|
|
95
|
+
refactor: 【组合式API重构】 up-textarea优化(uni-app-x)
|
|
96
|
+
|
|
97
|
+
## 4.2.16(2026-01-28)
|
|
98
|
+
refactor: 【组合式API重构】 up-checkbox-group组件与up-collapse-item优化(uni-app-x)
|
|
99
|
+
|
|
100
|
+
## 4.2.15(2026-01-27)
|
|
101
|
+
fix: 修复refactor: 【组合式API重构】 up-badge组件(uni-app-x)
|
|
102
|
+
|
|
103
|
+
## 4.2.14(2026-01-27)
|
|
104
|
+
fix: 修复refactor: 【组合式API重构】 up-badge组件(uni-app-x)
|
|
105
|
+
|
|
106
|
+
## 4.2.13(2026-01-27)
|
|
107
|
+
fix: 修复refactor: 【组合式API重构】 up-code-input组件(uni-app-x)
|
|
108
|
+
|
|
109
|
+
## 4.2.12(2026-01-27)
|
|
110
|
+
fix: 修复refactor: 【组合式API重构】 up-col组件(uni-app-x)
|
|
111
|
+
|
|
112
|
+
## 4.2.11(2026-01-27)
|
|
113
|
+
fix: 修复refactor: 【组合式API重构】 up-row组件(uni-app-x)
|
|
114
|
+
|
|
115
|
+
## 4.2.10(2026-01-27)
|
|
116
|
+
refactor: 【组合式API重构】 up-upload组件优化(uni-app-x)
|
|
117
|
+
|
|
118
|
+
## 4.2.9(2026-01-27)
|
|
119
|
+
refactor: 【组合式API重构】 up-checkbox组件优化(uni-app-x)
|
|
120
|
+
|
|
121
|
+
## 4.2.8(2026-01-26)
|
|
122
|
+
refactor: 【组合式API重构】 up-table组件(uni-app-x)
|
|
123
|
+
|
|
124
|
+
## 4.2.7(2026-01-26)
|
|
125
|
+
refactor: 【组合式API重构】 up-td组件(uni-app-x)
|
|
126
|
+
|
|
127
|
+
## 4.2.6(2026-01-26)
|
|
128
|
+
refactor: 【组合式API重构】 up-th组件(uni-app-x)
|
|
129
|
+
|
|
130
|
+
## 4.2.5(2026-01-26)
|
|
131
|
+
refactor: 【组合式API重构】 up-tr组件(uni-app-x)
|
|
132
|
+
|
|
133
|
+
## 4.2.4(2026-01-26)
|
|
134
|
+
refactor: 【组合式API重构】 优化完善组件父子关系管理组合式函数(uni-app-x)
|
|
135
|
+
|
|
136
|
+
## 4.2.3(2026-01-25)
|
|
137
|
+
refactor: 【组合式API重构】 修复addUnit错误返回auto导致样式异常(uni-app-x)
|
|
138
|
+
|
|
139
|
+
## 4.2.2(2026-01-24)
|
|
140
|
+
refactor: 【组合式API重构】 up-code组件(uni-app-x)
|
|
141
|
+
|
|
142
|
+
## 4.2.1(2026-01-24)
|
|
143
|
+
fix: 修复upload类型报错
|
|
144
|
+
|
|
145
|
+
## 4.2.0(2026-01-24)
|
|
146
|
+
fix: 处理H5端编译大量warning
|
|
147
|
+
|
|
148
|
+
change: LICENSE协议变更
|
|
149
|
+
|
|
150
|
+
## 4.1.29(2026-01-24)
|
|
151
|
+
refactor: 【组合式API重构】 父子组件架构支持组合式函数hooks方式(uni-app-x)
|
|
152
|
+
|
|
153
|
+
refactor: 【组合式API重构】 up-checkbox组件(uni-app-x)
|
|
154
|
+
|
|
155
|
+
refactor: 【组合式API重构】 up-checkbox-group组件(uni-app-x)
|
|
156
|
+
|
|
157
|
+
## 4.1.28(2026-01-23)
|
|
158
|
+
refactor: 【组合式API重构】 back-top组件(uni-app-x)
|
|
159
|
+
|
|
160
|
+
## 4.1.27(2026-01-23)
|
|
161
|
+
fix: 修复index.uts
|
|
162
|
+
|
|
163
|
+
## 4.1.26(2026-01-23)
|
|
164
|
+
fix: 修复input组件warning
|
|
165
|
+
|
|
166
|
+
## 4.1.25(2026-01-23)
|
|
167
|
+
fix: 优化up-tabbar组件change事件(uni-app-x)
|
|
168
|
+
|
|
169
|
+
## 4.1.24(2026-01-23)
|
|
170
|
+
fix: 修复throttle方法及up-button点击事件不触发问题(uni-app-x)
|
|
171
|
+
|
|
172
|
+
## 4.1.23(2026-01-23)
|
|
173
|
+
fix: up-picker组件warning处理
|
|
174
|
+
|
|
175
|
+
## 4.1.22(2026-01-22)
|
|
176
|
+
fix: code-input组件warning处理
|
|
177
|
+
|
|
178
|
+
## 4.1.21(2026-01-22)
|
|
179
|
+
refactor: 【组合式API重构】 avatar-group组件(uni-app-x)
|
|
180
|
+
|
|
181
|
+
## 4.1.20(2026-01-22)
|
|
182
|
+
refactor: 【组合式API重构】avatar组件(uni-app-x)
|
|
183
|
+
|
|
184
|
+
## 4.1.19(2026-01-22)
|
|
185
|
+
fix: 完善up-code组件
|
|
186
|
+
|
|
187
|
+
## 4.1.18(2026-01-21)
|
|
188
|
+
improvment: 优化inedx.uts导出
|
|
189
|
+
|
|
190
|
+
## 4.1.17(2026-01-21)
|
|
191
|
+
refactor: 【组合式API重构】 up-alert组件(uni-app-x)
|
|
192
|
+
|
|
193
|
+
## 4.1.16(2026-01-21)
|
|
194
|
+
fix: 修复checkbox组件warning
|
|
195
|
+
|
|
196
|
+
## 4.1.15(2026-01-21)
|
|
197
|
+
fix: 修复action-sheet组件warning
|
|
198
|
+
|
|
199
|
+
## 4.1.14(2026-01-21)
|
|
200
|
+
fix: 修复calendar组件warning
|
|
201
|
+
|
|
202
|
+
## 4.1.13(2026-01-21)
|
|
203
|
+
fix: 修复datetimepicker组件warning
|
|
204
|
+
|
|
205
|
+
## 4.1.12(2026-01-21)
|
|
206
|
+
fix: 修复picker组件warning
|
|
207
|
+
|
|
208
|
+
## 4.1.11(2026-01-20)
|
|
209
|
+
fix: 修复scroll-list组件warning
|
|
210
|
+
|
|
211
|
+
## 4.1.10(2026-01-20)
|
|
212
|
+
fix: 修复avatar组件warning
|
|
213
|
+
|
|
214
|
+
## 4.1.9(2026-01-20)
|
|
215
|
+
add: 在template中无法使用addStyle所以新增内置$upAddStyle支持
|
|
216
|
+
|
|
217
|
+
## 4.1.8(2026-01-20)
|
|
218
|
+
add: 在template中无法使用addUnit所以新增内置$upAddUnit支持
|
|
219
|
+
|
|
220
|
+
## 4.1.7(2026-01-20)
|
|
221
|
+
fix: 修复完善up-collapse-item子组件
|
|
222
|
+
|
|
223
|
+
## 4.1.6(2026-01-20)
|
|
224
|
+
refactor: 【组合式API重构】 常用方法优化(uni-app-x)
|
|
225
|
+
|
|
226
|
+
## 4.1.5(2026-01-20)
|
|
227
|
+
fix: 修复up-count-to组件语法(uni-app-x)
|
|
228
|
+
|
|
229
|
+
## 4.1.4(2026-01-20)
|
|
230
|
+
fix: 修复touch.uts语法(uni-app-x)
|
|
231
|
+
|
|
232
|
+
## 4.1.3(2026-01-19)
|
|
233
|
+
refactor: 【组合式API重构】album组件和action-sheet组件(uni-app-x)
|
|
234
|
+
|
|
235
|
+
## 4.1.2(2026-01-19)
|
|
236
|
+
refactor: 【组合式API重构】album组件(uni-app-x)
|
|
237
|
+
|
|
238
|
+
## 4.1.1(2026-01-19)
|
|
239
|
+
refactor: 组合式API重构之全局mixin转为组合式API(uni-app-x)
|
|
240
|
+
|
|
241
|
+
## 4.1.0(2026-01-19)
|
|
242
|
+
refactor: 【组合式API重构】action-sheet组件(uni-app-x)
|
|
243
|
+
|
|
244
|
+
## 4.0.146(2026-01-17)
|
|
245
|
+
fix: 修复radio组件props类型转换
|
|
246
|
+
|
|
247
|
+
## 4.0.145(2026-01-16)
|
|
248
|
+
fix: 修复radio组件props报warning
|
|
249
|
+
|
|
250
|
+
## 4.0.144(2026-01-16)
|
|
251
|
+
fix: 修复count-to组件props报warning
|
|
252
|
+
|
|
253
|
+
## 4.0.143(2026-01-16)
|
|
254
|
+
fix: 修复grid-item报wanning Object is possibly 'null'
|
|
255
|
+
|
|
256
|
+
## 4.0.142(2026-01-15)
|
|
257
|
+
fix: 修复bem方法冗余语句
|
|
258
|
+
|
|
259
|
+
## 4.0.141(2026-01-15)
|
|
260
|
+
fix: 修复radio组件使用size参数warning
|
|
261
|
+
|
|
262
|
+
## 4.0.140(2026-01-15)
|
|
263
|
+
fix: 修复throttle方法Function类型
|
|
264
|
+
|
|
265
|
+
## 4.0.139(2026-01-15)
|
|
266
|
+
fix: 修复throttle方法Function类型
|
|
267
|
+
|
|
268
|
+
## 4.0.138(2026-01-15)
|
|
269
|
+
fix: warning: Identity equality for arguments of types 'Number' and 'Int' can be unstable because of implicit boxing
|
|
270
|
+
|
|
271
|
+
## 4.0.137(2026-01-15)
|
|
272
|
+
fix: 修复button和avatar-group语法
|
|
273
|
+
|
|
274
|
+
## 4.0.136(2026-01-15)
|
|
275
|
+
fix: 修复button组件warning: Type 'String' is not assignable to type 'string'
|
|
276
|
+
|
|
277
|
+
## 4.0.135(2026-01-15)
|
|
278
|
+
fix: 修复badge组件value参数warning
|
|
279
|
+
|
|
280
|
+
## 4.0.134(2026-01-15)
|
|
281
|
+
fix: 修复avatar-group组件warning
|
|
282
|
+
|
|
283
|
+
## 4.0.133(2026-01-15)
|
|
284
|
+
fix: 修复parse组件props缺少)(uni-app)
|
|
285
|
+
|
|
286
|
+
## 4.0.132(2026-01-15)
|
|
287
|
+
improvment: upGetRect方法从mixin迁移至function为组合式API适配(uni-app-x)
|
|
288
|
+
|
|
289
|
+
## 4.0.131(2026-01-15)
|
|
290
|
+
improvment: bem方法迁移至function工具中(uni-app-x)
|
|
291
|
+
|
|
292
|
+
## 4.0.130(2026-01-14)
|
|
293
|
+
fix:恢复code组件props类型
|
|
294
|
+
|
|
295
|
+
## 4.0.129(2026-01-14)
|
|
296
|
+
fix: 优化digit工具方法(uni-app-x)
|
|
297
|
+
|
|
298
|
+
## 4.0.128(2026-01-14)
|
|
299
|
+
fix: 修复tabs组建warning
|
|
300
|
+
|
|
301
|
+
## 4.0.127(2026-01-13)
|
|
302
|
+
fix: 修复list组件在支付宝小程序下scrolltolower无法触发(uni-app、uni-app-x) #422
|
|
303
|
+
|
|
304
|
+
## 4.0.126(2026-01-13)
|
|
305
|
+
fix: 修复throttle
|
|
306
|
+
|
|
307
|
+
## 4.0.125(2026-01-13)
|
|
308
|
+
fix: 修复upload组件类型转换问题
|
|
309
|
+
|
|
310
|
+
## 4.0.124(2026-01-13)
|
|
311
|
+
fix: 修复icon组件报错
|
|
312
|
+
|
|
313
|
+
## 4.0.123(2026-01-13)
|
|
314
|
+
fix: 修复icon组件warning
|
|
315
|
+
|
|
316
|
+
## 4.0.122(2026-01-12)
|
|
317
|
+
fix: 修复swiper-action组件warning
|
|
318
|
+
|
|
319
|
+
## 4.0.121(2026-01-12)
|
|
320
|
+
fix: 修复sticky组件warning
|
|
321
|
+
|
|
322
|
+
## 4.0.120(2026-01-12)
|
|
323
|
+
fix: 修复mixin语法问题(uin-app-x)
|
|
324
|
+
|
|
325
|
+
## 4.0.119(2026-01-10)
|
|
326
|
+
improvment: dropdown组建warning修复
|
|
327
|
+
|
|
328
|
+
## 4.0.118(2026-01-10)
|
|
329
|
+
improvment: 内置dayjs防止未安装依赖(uni-app)
|
|
330
|
+
|
|
331
|
+
## 4.0.117(2026-01-09)
|
|
332
|
+
fix: 修复tabs组件props使用相关warning
|
|
333
|
+
|
|
334
|
+
## 4.0.116(2026-01-09)
|
|
335
|
+
fix: 修复loading-icon组件toString使用warning
|
|
336
|
+
|
|
337
|
+
## 4.0.115(2026-01-09)
|
|
338
|
+
improvment: 优化getParent方法warning
|
|
339
|
+
|
|
340
|
+
## 4.0.114(2026-01-09)
|
|
341
|
+
improvment: 修复tag组件warning(uni-app-x)
|
|
342
|
+
|
|
343
|
+
## 4.0.113(2026-01-08)
|
|
344
|
+
fix: 修复code-input组件animation样式warning
|
|
345
|
+
|
|
346
|
+
## 4.0.112(2026-01-08)
|
|
347
|
+
fix: 修复count-down数值对比warning
|
|
348
|
+
|
|
349
|
+
## 4.0.111(2026-01-08)
|
|
350
|
+
fix: 修复loading-icon样式warning
|
|
351
|
+
|
|
352
|
+
## 4.0.110(2026-01-08)
|
|
353
|
+
fix: 修复qrcode组件在App不显示logo(uni-app)
|
|
354
|
+
|
|
355
|
+
improvment: qrcode逻辑优化封装(uni-app)
|
|
356
|
+
|
|
357
|
+
fix: nvue下采用webview支持二维码显示logo(因为gcanvas不支持图片渲染)(uni-app)
|
|
358
|
+
|
|
359
|
+
## 4.0.109(2026-01-08)
|
|
360
|
+
improvment: 使用官方已经支持的uni.setClipboardData代替三方插件
|
|
361
|
+
|
|
362
|
+
## 4.0.108(2026-01-07)
|
|
363
|
+
fix: 优化多个组件props增强鸿蒙兼容性
|
|
364
|
+
|
|
365
|
+
## 4.0.107(2026-01-07)
|
|
366
|
+
fix: 修复count-to组件warning
|
|
367
|
+
|
|
368
|
+
## 4.0.106(2026-01-07)
|
|
369
|
+
fix: 修复upload组件warning
|
|
370
|
+
|
|
371
|
+
## 4.0.105(2026-01-07)
|
|
372
|
+
fix: 临时去除qrcode引起报错
|
|
373
|
+
|
|
374
|
+
## 4.0.104(2026-01-07)
|
|
375
|
+
fix: 修复fles.scss样式兼容性warning
|
|
376
|
+
|
|
377
|
+
## 4.0.103(2026-01-06)
|
|
378
|
+
fix: 修复--uni-safe-area-inset缺少var
|
|
379
|
+
|
|
380
|
+
## 4.0.102(2026-01-06)
|
|
381
|
+
fix: 修复i18n的warning
|
|
382
|
+
|
|
383
|
+
## 4.0.101(2026-01-06)
|
|
384
|
+
fix: property value `inherit` is not supported for `line-height`
|
|
385
|
+
|
|
386
|
+
## 4.0.100(2026-01-06)
|
|
387
|
+
fix: 修复loading-icon组件颜色样式默认值
|
|
388
|
+
|
|
389
|
+
## 4.0.99(2026-01-06)
|
|
390
|
+
fix: 修复number-box样式warning
|
|
391
|
+
|
|
392
|
+
## 4.0.98(2026-01-05)
|
|
393
|
+
fix: 修复loading-page样式warning
|
|
394
|
+
|
|
395
|
+
## 4.0.97(2026-01-05)
|
|
396
|
+
fix: uni-app-x下安全区域使用--uni-safe-area-inset
|
|
397
|
+
|
|
398
|
+
## 4.0.96(2026-01-05)
|
|
399
|
+
fix: 修复digit工具方法
|
|
400
|
+
|
|
401
|
+
## 4.0.95(2026-01-05)
|
|
402
|
+
fix: 修复icon组件部分warning
|
|
403
|
+
|
|
404
|
+
## 4.0.94(2026-01-04)
|
|
405
|
+
improvment: 修复transition组件warning
|
|
406
|
+
|
|
407
|
+
## 4.0.93(2026-01-04)
|
|
408
|
+
improvment: 修复tabs组件css警告
|
|
409
|
+
|
|
410
|
+
## 4.0.92(2026-01-04)
|
|
411
|
+
fix: 修复演示首页图标不显示
|
|
412
|
+
|
|
413
|
+
fix: list-item等组件报错
|
|
414
|
+
|
|
415
|
+
## 4.0.91(2026-01-04)
|
|
416
|
+
更新Readme
|
|
417
|
+
|
|
418
|
+
## 4.0.90(2026-01-03)
|
|
419
|
+
fix: 修复box组件示例sass变量前缀
|
|
420
|
+
|
|
421
|
+
## 4.0.89(2025-12-31)
|
|
422
|
+
improvment: number-box等组件warning处理
|
|
423
|
+
|
|
424
|
+
## 4.0.8(2025-12-30)
|
|
425
|
+
fix: 修复 transition组件适配后warning
|
|
426
|
+
|
|
427
|
+
## 4.0.7(2025-12-29)
|
|
428
|
+
fix: 修复list-item组件warning
|
|
429
|
+
|
|
430
|
+
## 4.0.6(2025-12-29)
|
|
431
|
+
fix: transition动画warning修复
|
|
432
|
+
|
|
433
|
+
## 4.0.5(2025-12-29)
|
|
434
|
+
fix: 修复Readme标签内容
|
|
435
|
+
|
|
436
|
+
## 4.0.4(2025-12-29)
|
|
437
|
+
fix: colorGradient方法适配uts
|
|
438
|
+
|
|
439
|
+
## 4.0.3(2025-12-27)
|
|
440
|
+
fix: 增加uni_modules插件依赖
|
|
441
|
+
|
|
442
|
+
## 4.0.2(2025-12-26)
|
|
443
|
+
LICENSE更新
|
|
444
|
+
|
|
445
|
+
## 4.0.1(2025-12-26)
|
|
446
|
+
fix: 修复文档网址
|
|
447
|
+
|
|
448
|
+
## 4.0.0(2025-12-26)
|
|
449
|
+
初步发布uni-app-x版本
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : LQ,jry
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 3.0
|
|
5
|
+
* @Date : 2021-08-20 16:44:21
|
|
6
|
+
* @LastAuthor : jry
|
|
7
|
+
* @lastTime : 2024-08-20 14:20:58
|
|
8
|
+
* @FilePath : /uview-ultra/libs/config/props/actionSheet.js
|
|
9
|
+
*/
|
|
10
|
+
export default {
|
|
11
|
+
// action-sheet组件
|
|
12
|
+
actionSheet: {
|
|
13
|
+
show: false,
|
|
14
|
+
title: '',
|
|
15
|
+
description: '',
|
|
16
|
+
actions: [],
|
|
17
|
+
index: '',
|
|
18
|
+
cancelText: '',
|
|
19
|
+
closeOnClickAction: true,
|
|
20
|
+
safeAreaInsetBottom: true,
|
|
21
|
+
openType: '',
|
|
22
|
+
closeOnClickOverlay: true,
|
|
23
|
+
round: 0,
|
|
24
|
+
wrapMaxHeight: '600px'
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* @Author : jry
|
|
3
|
+
* @Description :
|
|
4
|
+
* @version : 4.0
|
|
5
|
+
* @Date : 2024-12-22 19:21:21
|
|
6
|
+
* @LastAuthor : jry
|
|
7
|
+
* @lastTime : 2024-12-22 19:21:21
|
|
8
|
+
* @FilePath : /uview-ultra/libs/config/props/actionSheet
|
|
9
|
+
*/
|
|
10
|
+
import { UPActionSheetItem } from './types.uts'
|
|
11
|
+
export default {
|
|
12
|
+
// action-sheet组件
|
|
13
|
+
actionSheet: {
|
|
14
|
+
show: false,
|
|
15
|
+
title: '',
|
|
16
|
+
description: '',
|
|
17
|
+
// actions: [] as Array<UPActionSheetItem>,
|
|
18
|
+
actions: [] as Array<UTSJSONObject>,
|
|
19
|
+
index: '',
|
|
20
|
+
cancelText: '',
|
|
21
|
+
closeOnClickAction: true,
|
|
22
|
+
safeAreaInsetBottom: true,
|
|
23
|
+
openType: '',
|
|
24
|
+
closeOnClickOverlay: true,
|
|
25
|
+
round: 0,
|
|
26
|
+
wrapMaxHeight: '600px'
|
|
27
|
+
}
|
|
28
|
+
} as UTSJSONObject
|
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
import { defineMixin } from '../../libs/vue.js'
|
|
2
|
+
import defProps from './actionSheet.js'
|
|
3
|
+
|
|
4
|
+
export const props = defineMixin({
|
|
5
|
+
props: {
|
|
6
|
+
// 操作菜单是否展示 (默认false)
|
|
7
|
+
show: {
|
|
8
|
+
type: Boolean,
|
|
9
|
+
default: () => defProps.actionSheet.show
|
|
10
|
+
},
|
|
11
|
+
// 标题
|
|
12
|
+
title: {
|
|
13
|
+
type: String,
|
|
14
|
+
default: () => defProps.actionSheet.title
|
|
15
|
+
},
|
|
16
|
+
// 选项上方的描述信息
|
|
17
|
+
description: {
|
|
18
|
+
type: String,
|
|
19
|
+
default: () => defProps.actionSheet.description
|
|
20
|
+
},
|
|
21
|
+
// 数据
|
|
22
|
+
actions: {
|
|
23
|
+
type: Array,
|
|
24
|
+
default: () => defProps.actionSheet.actions
|
|
25
|
+
},
|
|
26
|
+
// 取消按钮的文字,不为空时显示按钮
|
|
27
|
+
cancelText: {
|
|
28
|
+
type: String,
|
|
29
|
+
default: () => defProps.actionSheet.cancelText
|
|
30
|
+
},
|
|
31
|
+
// 点击某个菜单项时是否关闭弹窗
|
|
32
|
+
closeOnClickAction: {
|
|
33
|
+
type: Boolean,
|
|
34
|
+
default: () => defProps.actionSheet.closeOnClickAction
|
|
35
|
+
},
|
|
36
|
+
// 处理底部安全区(默认true)
|
|
37
|
+
safeAreaInsetBottom: {
|
|
38
|
+
type: Boolean,
|
|
39
|
+
default: () => defProps.actionSheet.safeAreaInsetBottom
|
|
40
|
+
},
|
|
41
|
+
// 小程序的打开方式
|
|
42
|
+
openType: {
|
|
43
|
+
type: String,
|
|
44
|
+
default: () => defProps.actionSheet.openType
|
|
45
|
+
},
|
|
46
|
+
// 点击遮罩是否允许关闭 (默认true)
|
|
47
|
+
closeOnClickOverlay: {
|
|
48
|
+
type: Boolean,
|
|
49
|
+
default: () => defProps.actionSheet.closeOnClickOverlay
|
|
50
|
+
},
|
|
51
|
+
// 圆角值
|
|
52
|
+
round: {
|
|
53
|
+
type: [Boolean, String, Number],
|
|
54
|
+
default: () => defProps.actionSheet.round
|
|
55
|
+
},
|
|
56
|
+
// 选项区域最大高度
|
|
57
|
+
wrapMaxHeight: {
|
|
58
|
+
type: [String],
|
|
59
|
+
default: () => defProps.actionSheet.wrapMaxHeight
|
|
60
|
+
},
|
|
61
|
+
}
|
|
62
|
+
})
|
|
@@ -0,0 +1,66 @@
|
|
|
1
|
+
import type { PropType } from 'vue'
|
|
2
|
+
import defProps from './actionSheet.uts'
|
|
3
|
+
let crtProp = defProps['actionSheet'] as UTSJSONObject
|
|
4
|
+
|
|
5
|
+
import { UPActionSheetItem } from './types.uts'
|
|
6
|
+
export const propsActionSheet = {
|
|
7
|
+
props: {
|
|
8
|
+
// 操作菜单是否展示 (默认false)
|
|
9
|
+
show: {
|
|
10
|
+
type: Boolean,
|
|
11
|
+
default: crtProp['show']
|
|
12
|
+
},
|
|
13
|
+
// 标题
|
|
14
|
+
title: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: crtProp['title']
|
|
17
|
+
},
|
|
18
|
+
// 选项上方的描述信息
|
|
19
|
+
description: {
|
|
20
|
+
type: String,
|
|
21
|
+
default: crtProp['description']
|
|
22
|
+
},
|
|
23
|
+
// 数据
|
|
24
|
+
actions: {
|
|
25
|
+
type: Array as PropType<UTSJSONObject[]>,
|
|
26
|
+
default: () : Array<UTSJSONObject> => {
|
|
27
|
+
return crtProp['actions']
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
// 取消按钮的文字,不为空时显示按钮
|
|
31
|
+
cancelText: {
|
|
32
|
+
type: String,
|
|
33
|
+
default: crtProp['cancelText']
|
|
34
|
+
},
|
|
35
|
+
// 点击某个菜单项时是否关闭弹窗
|
|
36
|
+
closeOnClickAction: {
|
|
37
|
+
type: Boolean,
|
|
38
|
+
default: crtProp['closeOnClickAction']
|
|
39
|
+
},
|
|
40
|
+
// 处理底部安全区(默认true)
|
|
41
|
+
safeAreaInsetBottom: {
|
|
42
|
+
type: Boolean,
|
|
43
|
+
default: crtProp['safeAreaInsetBottom']
|
|
44
|
+
},
|
|
45
|
+
// 小程序的打开方式
|
|
46
|
+
openType: {
|
|
47
|
+
type: String,
|
|
48
|
+
default: crtProp['openType']
|
|
49
|
+
},
|
|
50
|
+
// 点击遮罩是否允许关闭 (默认true)
|
|
51
|
+
closeOnClickOverlay: {
|
|
52
|
+
type: Boolean,
|
|
53
|
+
default: crtProp['closeOnClickOverlay']
|
|
54
|
+
},
|
|
55
|
+
// 圆角值
|
|
56
|
+
round: {
|
|
57
|
+
type: [Boolean, String, Number],
|
|
58
|
+
default: crtProp['round']
|
|
59
|
+
},
|
|
60
|
+
// 选项区域最大高度
|
|
61
|
+
wrapMaxHeight: {
|
|
62
|
+
type: [String],
|
|
63
|
+
default: crtProp['wrapMaxHeight']
|
|
64
|
+
},
|
|
65
|
+
}
|
|
66
|
+
}
|
|
@@ -0,0 +1,86 @@
|
|
|
1
|
+
export type UPActionSheetItem = {
|
|
2
|
+
name?: string,
|
|
3
|
+
title?: string,
|
|
4
|
+
subname?: string,
|
|
5
|
+
loading?: boolean,
|
|
6
|
+
disabled?: boolean,
|
|
7
|
+
color?: string,
|
|
8
|
+
fontSize?: string,
|
|
9
|
+
openType?: string,
|
|
10
|
+
iconUrl?: string,
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
export type UPActionSheetProps = {
|
|
14
|
+
/**
|
|
15
|
+
* 操作菜单是否展示 (默认false)
|
|
16
|
+
*/
|
|
17
|
+
show?: boolean
|
|
18
|
+
/**
|
|
19
|
+
* 标题
|
|
20
|
+
*/
|
|
21
|
+
title?: string
|
|
22
|
+
/**
|
|
23
|
+
* 选项上方的描述信息
|
|
24
|
+
*/
|
|
25
|
+
description?: string
|
|
26
|
+
/**
|
|
27
|
+
* 数据
|
|
28
|
+
*/
|
|
29
|
+
actions?: Array<UPActionSheetItem>
|
|
30
|
+
/**
|
|
31
|
+
* 取消按钮的文字,不为空时显示按钮
|
|
32
|
+
*/
|
|
33
|
+
cancelText?: string
|
|
34
|
+
/**
|
|
35
|
+
* 点击某个菜单项时是否关闭弹窗
|
|
36
|
+
*/
|
|
37
|
+
closeOnClickAction?: boolean
|
|
38
|
+
/**
|
|
39
|
+
* 处理底部安全区(默认true)
|
|
40
|
+
*/
|
|
41
|
+
safeAreaInsetBottom?: boolean
|
|
42
|
+
/**
|
|
43
|
+
* 小程序的打开方式
|
|
44
|
+
*/
|
|
45
|
+
openType?: string
|
|
46
|
+
/**
|
|
47
|
+
* 点击遮罩是否允许关闭 (默认true)
|
|
48
|
+
*/
|
|
49
|
+
closeOnClickOverlay?: boolean
|
|
50
|
+
/**
|
|
51
|
+
* 圆角值
|
|
52
|
+
*/
|
|
53
|
+
round?: number | string
|
|
54
|
+
/**
|
|
55
|
+
* 语言
|
|
56
|
+
*/
|
|
57
|
+
lang?: string
|
|
58
|
+
/**
|
|
59
|
+
* 会话来源
|
|
60
|
+
*/
|
|
61
|
+
sessionFrom?: string
|
|
62
|
+
/**
|
|
63
|
+
* 发送的消息标题
|
|
64
|
+
*/
|
|
65
|
+
sendMessageTitle?: string
|
|
66
|
+
/**
|
|
67
|
+
* 发送的消息路径
|
|
68
|
+
*/
|
|
69
|
+
sendMessagePath?: string
|
|
70
|
+
/**
|
|
71
|
+
* 发送的消息图片
|
|
72
|
+
*/
|
|
73
|
+
sendMessageImg?: string
|
|
74
|
+
/**
|
|
75
|
+
* 显示会话内消息卡片
|
|
76
|
+
*/
|
|
77
|
+
showMessageCard?: boolean
|
|
78
|
+
/**
|
|
79
|
+
* 打开 APP 时,向 APP 传递的参数
|
|
80
|
+
*/
|
|
81
|
+
appParameter?: string
|
|
82
|
+
/**
|
|
83
|
+
* 选项区域最大高度
|
|
84
|
+
*/
|
|
85
|
+
wrapMaxHeight?: string
|
|
86
|
+
}
|