@10yun/cv-mobile-ui 0.5.29 → 0.5.30
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/package.json +1 -1
- package/plugins/luch-request/adapters/index.js +131 -0
- package/plugins/luch-request/core/InterceptorManager.js +50 -0
- package/plugins/luch-request/core/Request.js +199 -0
- package/plugins/luch-request/core/buildFullPath.js +20 -0
- package/plugins/luch-request/core/defaults.js +32 -0
- package/plugins/luch-request/core/dispatchRequest.js +5 -0
- package/plugins/luch-request/core/mergeConfig.js +125 -0
- package/plugins/luch-request/core/settle.js +16 -0
- package/plugins/luch-request/helpers/buildURL.js +71 -0
- package/plugins/luch-request/helpers/combineURLs.js +12 -0
- package/plugins/luch-request/helpers/isAbsoluteURL.js +14 -0
- package/plugins/luch-request/index.d.ts +197 -0
- package/plugins/luch-request/index.js +2 -0
- package/plugins/luch-request/readme.md +3 -0
- package/plugins/luch-request/utils/clone.js +264 -0
- package/plugins/luch-request/utils.js +131 -0
- package/plugins/request.js +2 -2
- package/ui-cv/components/cv-form-item/cv-form-item.vue +1 -1
- package/ui-fireui/fui-actionsheet/fui-actionsheet.vue +202 -0
- package/ui-fireui/fui-alert/fui-alert.vue +141 -0
- package/ui-fireui/fui-badge/fui-badge.vue +158 -0
- package/ui-fireui/fui-bottom-navigation/fui-bottom-navigation.vue +390 -0
- package/ui-fireui/fui-bottom-popup/fui-bottom-popup.vue +100 -0
- package/ui-fireui/fui-bubble-popup/fui-bubble-popup.vue +236 -0
- package/ui-fireui/fui-button/fui-button.vue +424 -0
- package/ui-fireui/fui-calendar/fui-calendar.js +915 -0
- package/ui-fireui/fui-calendar/fui-calendar.vue +868 -0
- package/ui-fireui/fui-card/fui-card.vue +231 -0
- package/ui-fireui/fui-cascade-selection/fui-cascade-selection.vue +538 -0
- package/ui-fireui/fui-circular-progress/fui-circular-progress.vue +261 -0
- package/ui-fireui/fui-collapse/fui-collapse.vue +179 -0
- package/ui-fireui/fui-countdown/fui-countdown.vue +301 -0
- package/ui-fireui/fui-datetime/fui-datetime.vue +570 -0
- package/ui-fireui/fui-divider/fui-divider.vue +118 -0
- package/ui-fireui/fui-drawer/fui-drawer.vue +103 -0
- package/ui-fireui/fui-dropdown-list/fui-dropdown-list.vue +70 -0
- package/ui-fireui/fui-fab/fui-fab.vue +284 -0
- package/ui-fireui/fui-footer/fui-footer.vue +131 -0
- package/ui-fireui/fui-grid/fui-grid.vue +42 -0
- package/ui-fireui/fui-grid-item/fui-grid-item.vue +142 -0
- package/ui-fireui/fui-icon/fui-icon.vue +820 -0
- package/ui-fireui/fui-image-cropper/fui-image-cropper.vue +1058 -0
- package/ui-fireui/fui-image-group/fui-image-group.vue +149 -0
- package/ui-fireui/fui-keyboard/fui-keyboard.vue +254 -0
- package/ui-fireui/fui-keyboard-input/fui-keyboard-input.vue +78 -0
- package/ui-fireui/fui-list-cell/fui-list-cell.vue +178 -0
- package/ui-fireui/fui-list-view/fui-list-view.vue +87 -0
- package/ui-fireui/fui-loading/fui-loading.vue +78 -0
- package/ui-fireui/fui-loadmore/fui-loadmore.vue +163 -0
- package/ui-fireui/fui-modal/fui-modal.vue +392 -0
- package/ui-fireui/fui-navigation-bar/fui-navigation-bar.vue +180 -0
- package/ui-fireui/fui-no-data/fui-no-data.vue +116 -0
- package/ui-fireui/fui-nomore/fui-nomore.vue +116 -0
- package/ui-fireui/fui-numberbox/fui-numberbox.vue +234 -0
- package/ui-fireui/fui-numberbox-border/fui-numberbox-border.vue +232 -0
- package/ui-fireui/fui-picture-cropper/fui-picture-cropper.vue +682 -0
- package/ui-fireui/fui-picture-cropper/fui-picture-cropper.wxs +560 -0
- package/ui-fireui/fui-rate/fui-rate.vue +167 -0
- package/ui-fireui/fui-round-progress/fui-round-progress.vue +306 -0
- package/ui-fireui/fui-scroll-top/fui-scroll-top.vue +189 -0
- package/ui-fireui/fui-sharemodel/fui-sharemodel.vue +181 -0
- package/ui-fireui/fui-skeleton/fui-skeleton.vue +248 -0
- package/ui-fireui/fui-steps/fui-steps.vue +214 -0
- package/ui-fireui/fui-sticky/fui-sticky.vue +155 -0
- package/ui-fireui/fui-sticky-wxs/fui-sticky-wxs.vue +133 -0
- package/ui-fireui/fui-sticky-wxs/fui-sticky.wxs +44 -0
- package/ui-fireui/fui-swipe-action/fui-swipe-action.vue +301 -0
- package/ui-fireui/fui-tabbar/fui-tabbar.vue +283 -0
- package/ui-fireui/fui-tabs/fui-tabs.vue +284 -0
- package/ui-fireui/fui-tabs2/fui-tabs2.vue +284 -0
- package/ui-fireui/fui-tag/fui-tag.vue +374 -0
- package/ui-fireui/fui-time-axis/fui-time-axis.vue +36 -0
- package/ui-fireui/fui-timeaxis-item/fui-timeaxis-item.vue +48 -0
- package/ui-fireui/fui-tips/fui-tips.vue +161 -0
- package/ui-fireui/fui-toast/fui-toast.vue +117 -0
- package/ui-fireui/fui-top-dropdown/fui-top-dropdown.vue +129 -0
- package/ui-fireui/fui-upload/fui-upload.vue +446 -0
- package/ui-fireui/fui-uploadsamll/fui-uploadsamll.vue +472 -0
- package/uview-plus/README.md +1 -1
- package/uview-plus/changelog-wu-tool.md +21 -0
- package/uview-plus/changelog-wu.md +91 -0
- package/uview-plus/components/u-action-sheet/_doc/changelog.md +12 -0
- package/uview-plus/components/u-action-sheet/_doc/package.json +92 -0
- package/uview-plus/components/u-action-sheet/_doc/readme.md +16 -0
- package/uview-plus/components/u-app-update/_doc/changelog.md +26 -0
- package/uview-plus/components/u-app-update/_doc/package.json +89 -0
- package/uview-plus/components/u-app-update/_doc/readme.md +16 -0
- package/uview-plus/components/u-app-update/config.js +120 -0
- package/uview-plus/components/u-app-update/img/act.png +0 -0
- package/uview-plus/components/u-app-update/img/appUploadAlertBoxBg.png +0 -0
- package/uview-plus/components/u-app-update/img/close.png +0 -0
- package/uview-plus/components/u-app-update/js-sdk/checkVersion.js +81 -0
- package/uview-plus/components/u-app-update/js-sdk/silentlyAppUpdate.js +41 -0
- package/uview-plus/components/u-app-update/pages/index.vue +8 -0
- package/uview-plus/components/u-app-update/u-app-update.vue +583 -0
- package/uview-plus/components/u-button-wu/_doc/changelog.md +6 -0
- package/uview-plus/components/u-button-wu/_doc/package.json +89 -0
- package/uview-plus/components/u-button-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-button-wu/u-button-wu.vue +522 -0
- package/uview-plus/components/u-button-wu/vue.scss +81 -0
- package/uview-plus/components/u-calendar-wu/_doc/changelog.md +145 -0
- package/uview-plus/components/u-calendar-wu/_doc/package.json +90 -0
- package/uview-plus/components/u-calendar-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-calendar-wu/calendar.js +664 -0
- package/uview-plus/components/u-calendar-wu/i18n/en.json +14 -0
- package/uview-plus/components/u-calendar-wu/i18n/index.js +8 -0
- package/uview-plus/components/u-calendar-wu/i18n/zh-Hans.json +14 -0
- package/uview-plus/components/u-calendar-wu/i18n/zh-Hant.json +14 -0
- package/uview-plus/components/u-calendar-wu/props.js +166 -0
- package/uview-plus/components/u-calendar-wu/style.css +196 -0
- package/uview-plus/components/u-calendar-wu/u-calendar-wu.vue +921 -0
- package/uview-plus/components/u-calendar-wu/util.js +552 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-block/props.js +73 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-block/wu-calendar-block.vue +122 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-item/props.js +55 -0
- package/uview-plus/components/u-calendar-wu/wu-calendar-item/wu-calendar-item.vue +293 -0
- package/uview-plus/components/u-cell/_doc/changelog.md +6 -0
- package/uview-plus/components/u-cell/_doc/package.json +89 -0
- package/uview-plus/components/u-cell/_doc/readme.md +25 -0
- package/uview-plus/components/u-checkbox/_doc/changelog.md +8 -0
- package/uview-plus/components/u-checkbox/_doc/package.json +88 -0
- package/uview-plus/components/u-checkbox/_doc/readme.md +25 -0
- package/uview-plus/components/u-code/_doc/changelog.md +6 -0
- package/uview-plus/components/u-code/_doc/package.json +86 -0
- package/uview-plus/components/u-code/_doc/readme.md +16 -0
- package/uview-plus/components/u-drag-sort/_doc/changelog.md +0 -0
- package/uview-plus/components/u-drag-sort/_doc/package.json +85 -0
- package/uview-plus/components/u-drag-sort/_doc/readme.md +16 -0
- package/uview-plus/components/u-drag-sort/u-drag-sort.vue +3 -0
- package/uview-plus/components/u-empty/u-empty.vue +27 -1
- package/uview-plus/components/u-gap/_doc/changelog.md +4 -0
- package/uview-plus/components/u-gap/_doc/package.json +86 -0
- package/uview-plus/components/u-gap/_doc/readme.md +22 -0
- package/uview-plus/components/u-icon/_doc/changelog.md +10 -0
- package/uview-plus/components/u-icon/_doc/package.json +85 -0
- package/uview-plus/components/u-icon/_doc/readme.md +10 -0
- package/uview-plus/components/u-icon/icon.js +23 -25
- package/uview-plus/components/u-icon/icons.js +213 -213
- package/uview-plus/components/u-icon/style.css +3 -3
- package/uview-plus/components/u-icon/u-icon2.vue +149 -0
- package/uview-plus/components/u-image-wu/_doc/changelog.md +21 -0
- package/uview-plus/components/u-image-wu/_doc/package.json +88 -0
- package/uview-plus/components/u-image-wu/_doc/readme.md +11 -0
- package/uview-plus/components/u-image-wu/props.js +94 -0
- package/uview-plus/components/u-image-wu/u-image-wu.vue +243 -0
- package/uview-plus/components/u-input/_doc/changelog.md +6 -0
- package/uview-plus/components/u-input/_doc/package.json +88 -0
- package/uview-plus/components/u-input/_doc/readme.md +16 -0
- package/uview-plus/components/u-line/_doc/changelog.md +8 -0
- package/uview-plus/components/u-line/_doc/package.json +86 -0
- package/uview-plus/components/u-line/_doc/readme.md +16 -0
- package/uview-plus/components/u-link/_doc/changelog.md +8 -0
- package/uview-plus/components/u-link/_doc/package.json +86 -0
- package/uview-plus/components/u-link/_doc/readme.md +20 -0
- package/uview-plus/components/u-loading-icon/_doc/changelog.md +12 -0
- package/uview-plus/components/u-loading-icon/_doc/package.json +86 -0
- package/uview-plus/components/u-loading-icon/_doc/readme.md +16 -0
- package/uview-plus/components/u-loading-icon/props.js +1 -1
- package/uview-plus/components/u-navbar/_doc/changelog.md +6 -0
- package/uview-plus/components/u-navbar/_doc/package.json +89 -0
- package/uview-plus/components/u-navbar/_doc/readme.md +16 -0
- package/uview-plus/components/u-navbar-wu/props.js +102 -0
- package/uview-plus/components/u-navbar-wu/u-navbar-wu.vue +196 -0
- package/uview-plus/components/u-number-box/_doc/changelog.md +19 -0
- package/uview-plus/components/u-number-box/_doc/package.json +88 -0
- package/uview-plus/components/u-number-box/_doc/readme.md +16 -0
- package/uview-plus/components/u-overlay/_doc/changelog.md +4 -0
- package/uview-plus/components/u-overlay/_doc/package.json +88 -0
- package/uview-plus/components/u-overlay/_doc/readme.md +16 -0
- package/uview-plus/components/u-popup/_doc/changelog.md +4 -0
- package/uview-plus/components/u-popup/_doc/package.json +92 -0
- package/uview-plus/components/u-popup/_doc/readme.md +16 -0
- package/uview-plus/components/u-popup-wu/keypress.js +45 -0
- package/uview-plus/components/u-popup-wu/u-popup-wu.vue +519 -0
- package/uview-plus/components/u-radio/_doc/changelog.md +6 -0
- package/uview-plus/components/u-radio/_doc/package.json +88 -0
- package/uview-plus/components/u-radio/_doc/readme.md +25 -0
- package/uview-plus/components/u-row/_doc/changelog.md +8 -0
- package/uview-plus/components/u-row/_doc/package.json +86 -0
- package/uview-plus/components/u-row/_doc/readme.md +16 -0
- package/uview-plus/components/u-safe-bottom/_doc/changelog.md +6 -0
- package/uview-plus/components/u-safe-bottom/_doc/package.json +86 -0
- package/uview-plus/components/u-safe-bottom/_doc/readme.md +16 -0
- package/uview-plus/components/u-sku-wu/_doc/changelog.md +27 -0
- package/uview-plus/components/u-sku-wu/_doc/package.json +93 -0
- package/uview-plus/components/u-sku-wu/_doc/readme.md +16 -0
- package/uview-plus/components/u-sku-wu/props.js +86 -0
- package/uview-plus/components/u-sku-wu/style.css +271 -0
- package/uview-plus/components/u-sku-wu/u-sku-wu.vue +864 -0
- package/uview-plus/components/u-status-bar/_doc/changelog.md +4 -0
- package/uview-plus/components/u-status-bar/_doc/package.json +86 -0
- package/uview-plus/components/u-status-bar/_doc/readme.md +16 -0
- package/uview-plus/components/u-text/_doc/changelog.md +10 -0
- package/uview-plus/components/u-text/_doc/package.json +89 -0
- package/uview-plus/components/u-text/_doc/readme.md +20 -0
- package/uview-plus/components/u-textarea/_doc/changelog.md +6 -0
- package/uview-plus/components/u-textarea/_doc/package.json +86 -0
- package/uview-plus/components/u-textarea/_doc/readme.md +25 -0
- package/uview-plus/components/u-transition/_doc/changelog.md +14 -0
- package/uview-plus/components/u-transition/_doc/package.json +86 -0
- package/uview-plus/components/u-transition/_doc/readme.md +16 -0
- package/uview-plus/components/u-transition-wu/createAnimation.js +148 -0
- package/uview-plus/components/u-transition-wu/props.js +32 -0
- package/uview-plus/components/u-transition-wu/u-transition.vue +300 -0
- package/uview-plus/components/u-verification-code/u-verification-code.vue +161 -0
- package/uview-plus/index.js +107 -94
- package/uview-plus/libs/config/config.js +46 -48
- package/uview-plus/libs/css/color.scss +32 -311
- package/uview-plus/libs/css/components-wu.scss +30 -0
- package/uview-plus/libs/css/vue.scss +10 -10
- package/uview-plus/libs/function/calc.js +61 -55
- package/uview-plus/libs/function/cc.js +66 -0
- package/uview-plus/libs/function/color/color-convert/CHANGELOG.md +54 -0
- package/uview-plus/libs/function/color/color-convert/LICENSE +21 -0
- package/uview-plus/libs/function/color/color-convert/README.md +68 -0
- package/uview-plus/libs/function/color/color-convert/conversions.js +839 -0
- package/uview-plus/libs/function/color/color-convert/index.js +81 -0
- package/uview-plus/libs/function/color/color-convert/package.json +48 -0
- package/uview-plus/libs/function/color/color-convert/route.js +97 -0
- package/uview-plus/libs/function/color/color-name/LICENSE +8 -0
- package/uview-plus/libs/function/color/color-name/README.md +11 -0
- package/uview-plus/libs/function/color/color-name/index.js +152 -0
- package/uview-plus/libs/function/color/color-name/package.json +28 -0
- package/uview-plus/libs/function/color/color-string/LICENSE +21 -0
- package/uview-plus/libs/function/color/color-string/README.md +62 -0
- package/uview-plus/libs/function/color/color-string/index.js +244 -0
- package/uview-plus/libs/function/color/color-string/package.json +39 -0
- package/uview-plus/libs/function/color/color.js +496 -0
- package/uview-plus/libs/function/color/index.js +158 -0
- package/uview-plus/libs/function/color/is-arrayish/LICENSE +21 -0
- package/uview-plus/libs/function/color/is-arrayish/README.md +16 -0
- package/uview-plus/libs/function/color/is-arrayish/index.js +9 -0
- package/uview-plus/libs/function/color/is-arrayish/package.json +45 -0
- package/uview-plus/libs/function/color/is-arrayish/yarn-error.log +1443 -0
- package/uview-plus/libs/function/color/simple-swizzle/LICENSE +21 -0
- package/uview-plus/libs/function/color/simple-swizzle/README.md +39 -0
- package/uview-plus/libs/function/color/simple-swizzle/index.js +29 -0
- package/uview-plus/libs/function/color/simple-swizzle/package.json +36 -0
- package/uview-plus/libs/function/colorGradient.js +108 -106
- package/uview-plus/libs/function/debounce.js +17 -17
- package/uview-plus/libs/function/digit.js +1 -3
- package/uview-plus/libs/function/http.js +3 -3
- package/uview-plus/libs/function/index-wu.js +231 -0
- package/uview-plus/libs/function/index.js +579 -566
- package/uview-plus/libs/function/platform.js +18 -18
- package/uview-plus/libs/function/test.js +135 -137
- package/uview-plus/libs/function/throttle.js +17 -17
- package/uview-plus/libs/luch-request/core/Request.js +199 -199
- package/uview-plus/libs/mixin/mpMixin.js +1 -0
- package/uview-plus/libs/mixin/openType.js +33 -0
- package/uview-plus/libs/util/async-validator.js +1343 -1343
- package/uview-plus/libs/util/dayjs.js +404 -0
- package/uview-plus/libs/util/route.js +101 -105
- package/uview-plus/package-wu-tool.json +84 -0
- package/uview-plus/package-wu.json +112 -0
- package/uview-plus/package.json +106 -95
- package/uview-plus/readme-wu.md +148 -0
- package/uview-ui/index.js +51 -52
- package/plugins/uni-upgrade.js +0 -294
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "",
|
|
3
|
+
"displayName": " 工具库 全面兼容小程序、nvue、vue2、vue3",
|
|
4
|
+
"version": "1.1.0",
|
|
5
|
+
"description": ",集成工具库,强大的Http请求封装,清晰的文档说明,开箱即用。方便使用,可以全局使用",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"u-ui",
|
|
8
|
+
"工具库",
|
|
9
|
+
"多端全兼容"
|
|
10
|
+
],
|
|
11
|
+
"dependencies": {
|
|
12
|
+
"color": "^4.2.3"
|
|
13
|
+
},
|
|
14
|
+
"repository": "",
|
|
15
|
+
"engines": {},
|
|
16
|
+
"dcloudext": {
|
|
17
|
+
"type": "component-vue",
|
|
18
|
+
"sale": {
|
|
19
|
+
"regular": {
|
|
20
|
+
"price": "0.00"
|
|
21
|
+
},
|
|
22
|
+
"sourcecode": {
|
|
23
|
+
"price": "0.00"
|
|
24
|
+
}
|
|
25
|
+
},
|
|
26
|
+
"contact": {
|
|
27
|
+
"qq": ""
|
|
28
|
+
},
|
|
29
|
+
"declaration": {
|
|
30
|
+
"ads": "无",
|
|
31
|
+
"data": "插件不采集任何数据",
|
|
32
|
+
"permissions": "无"
|
|
33
|
+
},
|
|
34
|
+
"npmurl": ""
|
|
35
|
+
},
|
|
36
|
+
"uni_modules": {
|
|
37
|
+
"dependencies": [],
|
|
38
|
+
"encrypt": [],
|
|
39
|
+
"platforms": {
|
|
40
|
+
"cloud": {
|
|
41
|
+
"tcb": "y",
|
|
42
|
+
"aliyun": "y"
|
|
43
|
+
},
|
|
44
|
+
"client": {
|
|
45
|
+
"Vue": {
|
|
46
|
+
"vue2": "y",
|
|
47
|
+
"vue3": "y"
|
|
48
|
+
},
|
|
49
|
+
"App": {
|
|
50
|
+
"app-vue": "y",
|
|
51
|
+
"app-nvue": "y"
|
|
52
|
+
},
|
|
53
|
+
"H5-mobile": {
|
|
54
|
+
"Safari": "y",
|
|
55
|
+
"Android Browser": "y",
|
|
56
|
+
"微信浏览器(Android)": "y",
|
|
57
|
+
"QQ浏览器(Android)": "y"
|
|
58
|
+
},
|
|
59
|
+
"H5-pc": {
|
|
60
|
+
"Chrome": "y",
|
|
61
|
+
"IE": "y",
|
|
62
|
+
"Edge": "y",
|
|
63
|
+
"Firefox": "y",
|
|
64
|
+
"Safari": "y"
|
|
65
|
+
},
|
|
66
|
+
"小程序": {
|
|
67
|
+
"微信": "y",
|
|
68
|
+
"阿里": "y",
|
|
69
|
+
"百度": "y",
|
|
70
|
+
"字节跳动": "y",
|
|
71
|
+
"QQ": "y",
|
|
72
|
+
"钉钉": "y",
|
|
73
|
+
"快手": "y",
|
|
74
|
+
"飞书": "y",
|
|
75
|
+
"京东": "y"
|
|
76
|
+
},
|
|
77
|
+
"快应用": {
|
|
78
|
+
"华为": "y",
|
|
79
|
+
"联盟": "y"
|
|
80
|
+
}
|
|
81
|
+
}
|
|
82
|
+
}
|
|
83
|
+
}
|
|
84
|
+
}
|
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
{
|
|
2
|
+
"id": "u--ui",
|
|
3
|
+
"displayName": "u-ui如虎添翼 之兼容vue3+2、app、h5、小程序等多端,无论平台,一致体验。",
|
|
4
|
+
"version": "1.1.5",
|
|
5
|
+
"description": "u-ui 是 全面兼容多端的uni-app生态框架,基于vue2、vue3和nvue开发。丰富UI组件库,便捷工具库,简单高效。无论平台,一致体验。选择我们,开发更轻松!",
|
|
6
|
+
"keywords": [
|
|
7
|
+
"u-ui,",
|
|
8
|
+
"wuui,",
|
|
9
|
+
"ui框架,",
|
|
10
|
+
"uni-app,",
|
|
11
|
+
"nvue"
|
|
12
|
+
],
|
|
13
|
+
"repository": "",
|
|
14
|
+
"engines": {
|
|
15
|
+
"HBuilderX": "^3.5.4"
|
|
16
|
+
},
|
|
17
|
+
"dcloudext": {
|
|
18
|
+
"type": "component-vue",
|
|
19
|
+
"sale": {
|
|
20
|
+
"regular": {
|
|
21
|
+
"price": "0.00"
|
|
22
|
+
},
|
|
23
|
+
"sourcecode": {
|
|
24
|
+
"price": "0.00"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"contact": {
|
|
28
|
+
"qq": ""
|
|
29
|
+
},
|
|
30
|
+
"declaration": {
|
|
31
|
+
"ads": "无",
|
|
32
|
+
"data": "插件不采集任何数据",
|
|
33
|
+
"permissions": "无"
|
|
34
|
+
},
|
|
35
|
+
"npmurl": ""
|
|
36
|
+
},
|
|
37
|
+
"uni_modules": {
|
|
38
|
+
"dependencies": [
|
|
39
|
+
"u-calendar",
|
|
40
|
+
"u-sku",
|
|
41
|
+
"u-image",
|
|
42
|
+
"u-button",
|
|
43
|
+
"u-icon",
|
|
44
|
+
"u-loading-icon",
|
|
45
|
+
"u-row",
|
|
46
|
+
"u-link",
|
|
47
|
+
"u-text",
|
|
48
|
+
"u-number-box",
|
|
49
|
+
"u-transition",
|
|
50
|
+
"u-input",
|
|
51
|
+
"u-code",
|
|
52
|
+
"u-navbar",
|
|
53
|
+
"u-status-bar",
|
|
54
|
+
"u-safe-bottom",
|
|
55
|
+
"u-radio",
|
|
56
|
+
"u-checkbox",
|
|
57
|
+
"u-textarea",
|
|
58
|
+
"u-gap",
|
|
59
|
+
"u-cell",
|
|
60
|
+
"u-app-update",
|
|
61
|
+
"u-popup",
|
|
62
|
+
"u-overlay",
|
|
63
|
+
"u-action-sheet"
|
|
64
|
+
],
|
|
65
|
+
"encrypt": [],
|
|
66
|
+
"platforms": {
|
|
67
|
+
"cloud": {
|
|
68
|
+
"tcb": "y",
|
|
69
|
+
"aliyun": "y",
|
|
70
|
+
"alipay": "n"
|
|
71
|
+
},
|
|
72
|
+
"client": {
|
|
73
|
+
"Vue": {
|
|
74
|
+
"vue2": "y",
|
|
75
|
+
"vue3": "y"
|
|
76
|
+
},
|
|
77
|
+
"App": {
|
|
78
|
+
"app-vue": "y",
|
|
79
|
+
"app-nvue": "y"
|
|
80
|
+
},
|
|
81
|
+
"H5-mobile": {
|
|
82
|
+
"Safari": "y",
|
|
83
|
+
"Android Browser": "y",
|
|
84
|
+
"微信浏览器(Android)": "y",
|
|
85
|
+
"QQ浏览器(Android)": "y"
|
|
86
|
+
},
|
|
87
|
+
"H5-pc": {
|
|
88
|
+
"Chrome": "y",
|
|
89
|
+
"IE": "y",
|
|
90
|
+
"Edge": "y",
|
|
91
|
+
"Firefox": "y",
|
|
92
|
+
"Safari": "y"
|
|
93
|
+
},
|
|
94
|
+
"小程序": {
|
|
95
|
+
"微信": "y",
|
|
96
|
+
"阿里": "y",
|
|
97
|
+
"百度": "y",
|
|
98
|
+
"字节跳动": "y",
|
|
99
|
+
"QQ": "y",
|
|
100
|
+
"钉钉": "n",
|
|
101
|
+
"快手": "n",
|
|
102
|
+
"飞书": "n",
|
|
103
|
+
"京东": "n"
|
|
104
|
+
},
|
|
105
|
+
"快应用": {
|
|
106
|
+
"华为": "n",
|
|
107
|
+
"联盟": "n"
|
|
108
|
+
}
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
}
|
package/uview-plus/package.json
CHANGED
|
@@ -1,96 +1,107 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
}
|
|
2
|
+
"id": "uview-plus",
|
|
3
|
+
"name": "uview-plus",
|
|
4
|
+
"displayName": "零云®uview-plus3.0重磅发布,全面的Vue3鸿蒙移动组件库。",
|
|
5
|
+
"displayName2": "工具库 全面兼容小程序、nvue、vue2、vue3",
|
|
6
|
+
"version": "3.4.27",
|
|
7
|
+
"description": "零云®uview-plus已兼容vue3,全面的组件和便捷的工具会让您信手拈来,如鱼得水。",
|
|
8
|
+
"description2": "集成工具库,强大的Http请求封装,清晰的文档说明,开箱即用。方便使用,可以全局使用",
|
|
9
|
+
"keywords": [
|
|
10
|
+
"uview",
|
|
11
|
+
"uview-plus",
|
|
12
|
+
"ui",
|
|
13
|
+
"ui",
|
|
14
|
+
"uni-app",
|
|
15
|
+
"uni-app",
|
|
16
|
+
"ui",
|
|
17
|
+
"可视化设计",
|
|
18
|
+
"工具库",
|
|
19
|
+
"多端全兼容"
|
|
20
|
+
],
|
|
21
|
+
"main": "index.js",
|
|
22
|
+
"repository": "https://github.com/ijry/uview-plus",
|
|
23
|
+
"engines": {
|
|
24
|
+
"HBuilderX": "^3.1.0"
|
|
25
|
+
},
|
|
26
|
+
"dcloudext": {
|
|
27
|
+
"sale": {
|
|
28
|
+
"regular": {
|
|
29
|
+
"price": "0.00"
|
|
30
|
+
},
|
|
31
|
+
"sourcecode": {
|
|
32
|
+
"price": "0.00"
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"contact": {
|
|
36
|
+
"qq": "598821125"
|
|
37
|
+
},
|
|
38
|
+
"declaration": {
|
|
39
|
+
"ads": "请注意本插件开发文档包含弹窗广告每日展示一次,源码纯净无广告。",
|
|
40
|
+
"data": "无",
|
|
41
|
+
"permissions": "无"
|
|
42
|
+
},
|
|
43
|
+
"npmurl": "https://www.npmjs.com/package/uview-plus",
|
|
44
|
+
"type": "component-vue"
|
|
45
|
+
},
|
|
46
|
+
"uni_modules": {
|
|
47
|
+
"dependencies": [],
|
|
48
|
+
"encrypt": [],
|
|
49
|
+
"platforms": {
|
|
50
|
+
"cloud": {
|
|
51
|
+
"tcb": "y",
|
|
52
|
+
"aliyun": "y",
|
|
53
|
+
"alipay": "n"
|
|
54
|
+
},
|
|
55
|
+
"client": {
|
|
56
|
+
"Vue": {
|
|
57
|
+
"vue2": "n",
|
|
58
|
+
"vue3": "y"
|
|
59
|
+
},
|
|
60
|
+
"App": {
|
|
61
|
+
"app-vue": "y",
|
|
62
|
+
"app-nvue": "y",
|
|
63
|
+
"app-harmony": "u",
|
|
64
|
+
"app-uvue": "u"
|
|
65
|
+
},
|
|
66
|
+
"H5-mobile": {
|
|
67
|
+
"Safari": "y",
|
|
68
|
+
"Android Browser": "y",
|
|
69
|
+
"微信浏览器(Android)": "y",
|
|
70
|
+
"QQ浏览器(Android)": "y"
|
|
71
|
+
},
|
|
72
|
+
"H5-pc": {
|
|
73
|
+
"Chrome": "y",
|
|
74
|
+
"IE": "y",
|
|
75
|
+
"Edge": "y",
|
|
76
|
+
"Firefox": "y",
|
|
77
|
+
"Safari": "y"
|
|
78
|
+
},
|
|
79
|
+
"小程序": {
|
|
80
|
+
"微信": "y",
|
|
81
|
+
"阿里": "y",
|
|
82
|
+
"百度": "y",
|
|
83
|
+
"字节跳动": "y",
|
|
84
|
+
"QQ": "y",
|
|
85
|
+
"钉钉": "y",
|
|
86
|
+
"快手": "y",
|
|
87
|
+
"飞书": "y",
|
|
88
|
+
"京东": "y"
|
|
89
|
+
},
|
|
90
|
+
"快应用": {
|
|
91
|
+
"华为": "y",
|
|
92
|
+
"联盟": "y"
|
|
93
|
+
}
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
"dependencies": {
|
|
98
|
+
"clipboard": "^2.0.11",
|
|
99
|
+
"dayjs": "^1.11.3"
|
|
100
|
+
},
|
|
101
|
+
"dependencies2": {
|
|
102
|
+
"color": "^4.2.3"
|
|
103
|
+
},
|
|
104
|
+
"publishConfig": {
|
|
105
|
+
"registry": "https://registry.npmjs.org/"
|
|
106
|
+
}
|
|
107
|
+
}
|
|
@@ -0,0 +1,148 @@
|
|
|
1
|
+
<p></p>
|
|
2
|
+
<p align="center">
|
|
3
|
+
<img alt="logo" src="https://wuui.cn/logo.png?v2" width="120">
|
|
4
|
+
</p>
|
|
5
|
+
<h3 align="center" size="40px" style="
|
|
6
|
+
margin: 0 0 30px;
|
|
7
|
+
line-height: 40px !important;
|
|
8
|
+
font-size: 40px !important;
|
|
9
|
+
font-weight: bold;
|
|
10
|
+
background: linear-gradient(to right, #94fcf0 0%, #6696ff 60%);
|
|
11
|
+
-webkit-background-clip: text;
|
|
12
|
+
color: transparent;">
|
|
13
|
+
WU-UI
|
|
14
|
+
</h3>
|
|
15
|
+
<h3 align="center" size="20px" style="
|
|
16
|
+
font-size: 20px;
|
|
17
|
+
font-weight: bold;
|
|
18
|
+
background: linear-gradient(to right, #94fcf0 0%, #6696ff 60%);
|
|
19
|
+
-webkit-background-clip: text;
|
|
20
|
+
color: transparent;">多平台快速开发的UI框架(无论平台,一致体验)
|
|
21
|
+
</h3>
|
|
22
|
+
|
|
23
|
+
[](https://gitee.com/ardentlys/u-ui)
|
|
24
|
+
[](https://gitee.com/ardentlys/u-ui)
|
|
25
|
+
[](https://github.com/ardentlys/u-ui)
|
|
26
|
+
[](https://github.com/ardentlys/u-ui)
|
|
27
|
+
[](https://github.com/ardentlys/u-ui/issues)
|
|
28
|
+
[](https://wuui.cn/)
|
|
29
|
+
[](https://wuui.cn/zh-CN/components/changelog.html)
|
|
30
|
+
[](https://en.wikipedia.org/wiki/MIT_License)
|
|
31
|
+
|
|
32
|
+
## 官方群
|
|
33
|
+
### u-ui官方1群: <a href="https://qm.qq.com/cgi-bin/qm/qr?k=wMDUlZILOnS_yBmzBYH1ADD85NqdC9uE&jump_from=webapi&authKey=8RK3knFoAV6/a/HnDEUWorC8EKN1RNezJJ4Y0CZoVU4RcOOGLoYwK79FhKEorai0" target="_blank">767943089</a>
|
|
34
|
+
|
|
35
|
+
## 说明
|
|
36
|
+
u-ui(如虎添翼) 是 全面兼容多端的uniapp生态框架,基于vue2、vue3和nvue开发。丰富组件库,便捷工具库,简单高效。无论平台,一致体验。选择我们,开发更轻松!
|
|
37
|
+
|
|
38
|
+
## [官方文档:https://wuui.cn](https://wuui.cn)
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
## 预览
|
|
42
|
+
通过微信或浏览器扫码查看演示效果,后续上线小程序端等。
|
|
43
|
+
<br>
|
|
44
|
+
<br>
|
|
45
|
+
<img src="https://wuui.cn/ys.png?v2" width="250" height="250" >
|
|
46
|
+
|
|
47
|
+
## 链接
|
|
48
|
+
|
|
49
|
+
- [官方文档](https://wuui.cn)
|
|
50
|
+
- [演示地址](https://h5.wu.geeks.ink)
|
|
51
|
+
- [更新日志](https://wuui.cn/zh-CN/components/changelog.html)
|
|
52
|
+
- [关于我们](https://wuui.cn/cooperation/about.html)
|
|
53
|
+
- [组件列表](#组件列表)
|
|
54
|
+
|
|
55
|
+
## 交流反馈
|
|
56
|
+
欢迎加入我们的QQ群交流反馈:[点此跳转](https://wuui.cn/zh-CN/components/qqFeedBack.html)
|
|
57
|
+
|
|
58
|
+
## cv-mobile-ui 产品特点
|
|
59
|
+
1. **`cv-mobile-ui ` 是基于 `uview2.x` 改造而来,增加了对vue3的兼容、新的组件(未来这些组件甚至可能包含原生组件与业务中常用的组件),无论平台,一致体验。感谢 `uview-ui` 作者的开源奉献,在这里再次感谢作者和所有开源的开发者,因为有了你们,社区才变得更加美好。**
|
|
60
|
+
2. **全端兼容: `cv-mobile-ui` 支持 vue2、vue3、app-vue、app-nvue、h5、小程序等。**
|
|
61
|
+
3. **扩展配置: 由于`cv-mobile-ui`特殊的组件单独导入的方式,内置的方法默认不再挂载到uni对象之上,也就意味着默认情况下不能在项目中直接使用uni.$w.xxx使用内置方法。但是可以通过扩展配置进行使用,使用方式请参考[扩展配置](https://wuui.cn/zh-CN/components/extendedConfiguration.html)。其中包括 [JS工具库](https://wuui.cn/zh-CN/components/extendedConfiguration.html#扩展配置-js-工具库)、 [自定义主题](https://wuui.cn/zh-CN/components/extendedConfiguration.html#扩展配置-自定义主题)、 [基础样式](https://wuui.cn/zh-CN/components/extendedConfiguration.html#扩展配置-基础样式)、 [内置配置](https://wuui.cn/zh-CN/components/extendedConfiguration.html#扩展配置-内置配置)等。**
|
|
62
|
+
|
|
63
|
+
## 快速开始
|
|
64
|
+
`cv-mobile-ui` 强烈建议通过 `下载插件并导入HbuilderX` 导入组件。
|
|
65
|
+
或者下载完整 [cv-mobile-ui](https://ext.dcloud.net.cn/plugin?id=13992) 项目 将 `uni_modules` 复制到自己的项目。
|
|
66
|
+
|
|
67
|
+
请通过[快速上手](https://wuui.cn/zh-CN/components/quickStart.html)了解更详细的内容。
|
|
68
|
+
|
|
69
|
+
## 使用方法
|
|
70
|
+
组件导入 `uni_modules` 后,直接在项目中使用,无需通过import引入组件。
|
|
71
|
+
|
|
72
|
+
```html
|
|
73
|
+
<template>
|
|
74
|
+
<u-button text="今朝有酒今朝醉,明日愁来明日愁"></u-button>
|
|
75
|
+
</template>
|
|
76
|
+
```
|
|
77
|
+
|
|
78
|
+
## 扩展功能
|
|
79
|
+
`u-ui` 内置了强大的工具函数、请求封装等,可以根据自身需求进行扩展配置,详情请查看扩展配置。
|
|
80
|
+
|
|
81
|
+
**注意:只有扩展配置后才能在自己的项目页面中使用组件库内置方法和变量等。**
|
|
82
|
+
|
|
83
|
+
## 组件列表
|
|
84
|
+
下表为 `u-ui` 的组件单独下载列表,点击每个组件**点击下载&安装**即可在详情页面导入组件到项目,导入后请重新运行即可直接使用,符合[esaycom](https://uniapp.dcloud.net.cn/component/#easycom%E7%BB%84%E4%BB%B6%E8%A7%84%E8%8C%83)的规范,因此无需引入。
|
|
85
|
+
|
|
86
|
+
| 组件名 | 组件说明 |
|
|
87
|
+
| -------------- | ------------------------------------------------------------------- |
|
|
88
|
+
| u-calendar | [最全日历](https://wuui.cn/zh-CN/components/calendar.html) |
|
|
89
|
+
| u-sku | [商品多规格选择器](https://wuui.cn/zh-CN/components/sku.html) |
|
|
90
|
+
| u-image | [图片](https://wuui.cn/zh-CN/components/image.html) |
|
|
91
|
+
| u-button | [按钮](https://wuui.cn/zh-CN/components/button.html) |
|
|
92
|
+
| u-icon | [图标](https://wuui.cn/zh-CN/components/icon.html) |
|
|
93
|
+
| u-loading-icon | [加载动画](https://wuui.cn/zh-CN/components/loadingIcon.html) |
|
|
94
|
+
| u-layout | [布局](https://wuui.cn/zh-CN/components/layout.html) |
|
|
95
|
+
| u-link | [超链接](https://wuui.cn/zh-CN/components/link.html) |
|
|
96
|
+
| u-text | [文本](https://wuui.cn/zh-CN/components/text.html) |
|
|
97
|
+
| u-number-box | [步进器](https://wuui.cn/zh-CN/components/numberBox.html) |
|
|
98
|
+
| u-transition | [动画](https://wuui.cn/zh-CN/components/transition.html) |
|
|
99
|
+
| u-input | [输入框](https://wuui.cn/zh-CN/components/input.html) |
|
|
100
|
+
| u-code | [验证码](https://wuui.cn/zh-CN/components/code.html) |
|
|
101
|
+
| u-navbar | [自定义导航栏](https://wuui.cn/zh-CN/components/navbar.html) |
|
|
102
|
+
| u-status-bar | [顶部安全区域](https://ext.dcloud.net.cn/plugin?name=u-status-bar) |
|
|
103
|
+
| u-safe-bottom | [底部安全区域](https://ext.dcloud.net.cn/plugin?name=u-safe-bottom) |
|
|
104
|
+
| u-radio | [单选框](https://wuui.cn/zh-CN/components/radio.html) |
|
|
105
|
+
| u-checkbox | [复选框](https://wuui.cn/zh-CN/components/checkbox.html) |
|
|
106
|
+
| u-textarea | [文本域](https://wuui.cn/zh-CN/components/textarea.html) |
|
|
107
|
+
| u-gap | [间隔槽](https://wuui.cn/zh-CN/components/gap.html) |
|
|
108
|
+
| u-cell | [单元格](https://wuui.cn/zh-CN/components/cell.html) |
|
|
109
|
+
| u-app-update | [app更新](https://wuui.cn/zh-CN/components/appUpdate.html) |
|
|
110
|
+
| u-popup | [弹出层](https://wuui.cn/zh-CN/components/popup.html) |
|
|
111
|
+
| u-overlay | [遮罩层](https://wuui.cn/zh-CN/components/overlay.html) |
|
|
112
|
+
| u-action-sheet | [操作菜单](https://wuui.cn/zh-CN/components/actionSheet.html) |
|
|
113
|
+
|
|
114
|
+
// 待开发
|
|
115
|
+
| u-form | [表单](https://wuui.cn/zh-CN/components/form.html) |
|
|
116
|
+
| u-qrcode | [二维码](https://wuui.cn/zh-CN/components/qrcode.html) |
|
|
117
|
+
| u-action | [滑动菜单](https://wuui.cn/zh-CN/components/action.html) |
|
|
118
|
+
| u-refresh | [下拉刷新](https://wuui.cn/zh-CN/components/pullRefresh.html) |
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
## 版权信息
|
|
122
|
+
cv-mobile-ui遵循[MIT](https://en.wikipedia.org/wiki/MIT_License)开源协议,意味着您无需支付任何费用,也无需授权,即可将cv-mobile-ui应用到您的产品中。
|
|
123
|
+
|
|
124
|
+
## **bug**
|
|
125
|
+
`cv-mobile-ui` 目前仍处于开发阶段,并且由于目前开发速度有限,难免会产生bug,如果您遇见组件无法使用的情况,请您先不要生气,添加[官网q群](https://wuui.cn/zh-CN/components/qqFeedBack.html)反馈即可,会在核实后,在官网产生bug的组件中会有专属的地方来展示您对组件的贡献(好的建议或好的组件提议(不需要您写,只需要您提出规划即可)也会享有同样的待遇)。
|
|
126
|
+
|
|
127
|
+
### **在此郑重谢过各位大佬,作者不图大家的钱财,只希望您体验感不错的情况下可以作者一个五星好评,您的好评亦是我们开源的动力。**
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
## 工具集
|
|
132
|
+
|
|
133
|
+
> **组件名:**
|
|
134
|
+
|
|
135
|
+
cv-mobile-ui 工具集成,包括网络Http请求、便捷工具、节流防抖、对象操作、时间格式化、路由跳转、全局唯一标识符、规则校验等等。
|
|
136
|
+
|
|
137
|
+
需要在自己的项目中使用请参考[扩展配置](https://wu.geeks.ink/zh-CN/components/extendedConfiguration.html)。
|
|
138
|
+
|
|
139
|
+
## <a href="https://wu.geeks.ink/js/intro.html" target="_blank">查看文档</a>
|
|
140
|
+
|
|
141
|
+
## [完整示例项目下载 | 关注更多组件](https://ext.dcloud.net.cn/plugin?name=u--ui)
|
|
142
|
+
(请勿下载插件zip)
|
|
143
|
+
|
|
144
|
+
<a href="https://ext.dcloud.net.cn/plugin?name=u--ui">
|
|
145
|
+
<img src="https://wu.geeks.ink/intr.png">
|
|
146
|
+
</a>
|
|
147
|
+
|
|
148
|
+
**如使用过程中有任何问题,或者您对cv-mobile-ui有一些好的建议,欢迎加入 [cv-mobile-ui 交流群](https://wu.geeks.ink/zh-CN/components/qqFeedBack.html)**
|