@10yun/cv-mobile-ui 0.5.29 → 0.5.31

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.
Files changed (350) hide show
  1. package/package.json +5 -1
  2. package/plugins/luch-request/adapters/index.js +131 -0
  3. package/plugins/luch-request/core/InterceptorManager.js +50 -0
  4. package/plugins/luch-request/core/Request.js +199 -0
  5. package/plugins/luch-request/core/buildFullPath.js +20 -0
  6. package/plugins/luch-request/core/defaults.js +32 -0
  7. package/plugins/luch-request/core/dispatchRequest.js +5 -0
  8. package/plugins/luch-request/core/mergeConfig.js +125 -0
  9. package/plugins/luch-request/core/settle.js +16 -0
  10. package/plugins/luch-request/helpers/buildURL.js +71 -0
  11. package/plugins/luch-request/helpers/combineURLs.js +12 -0
  12. package/plugins/luch-request/helpers/isAbsoluteURL.js +14 -0
  13. package/plugins/luch-request/index.d.ts +197 -0
  14. package/plugins/luch-request/index.js +2 -0
  15. package/plugins/luch-request/readme.md +3 -0
  16. package/plugins/luch-request/utils/clone.js +264 -0
  17. package/plugins/luch-request/utils.js +131 -0
  18. package/plugins/request.js +2 -2
  19. package/ui-cv/components/cv-btn-base/cv-btn-base.vue +1 -1
  20. package/ui-cv/components/cv-form-item/cv-form-item.vue +1 -1
  21. package/ui-fireui/fui-actionsheet/fui-actionsheet.vue +202 -0
  22. package/ui-fireui/fui-alert/fui-alert.vue +141 -0
  23. package/ui-fireui/fui-badge/fui-badge.vue +158 -0
  24. package/ui-fireui/fui-bottom-navigation/fui-bottom-navigation.vue +390 -0
  25. package/ui-fireui/fui-bottom-popup/fui-bottom-popup.vue +100 -0
  26. package/ui-fireui/fui-bubble-popup/fui-bubble-popup.vue +236 -0
  27. package/ui-fireui/fui-button/fui-button.vue +424 -0
  28. package/ui-fireui/fui-calendar/fui-calendar.js +915 -0
  29. package/ui-fireui/fui-calendar/fui-calendar.vue +868 -0
  30. package/ui-fireui/fui-card/fui-card.vue +231 -0
  31. package/ui-fireui/fui-cascade-selection/fui-cascade-selection.vue +538 -0
  32. package/ui-fireui/fui-circular-progress/fui-circular-progress.vue +261 -0
  33. package/ui-fireui/fui-collapse/fui-collapse.vue +179 -0
  34. package/ui-fireui/fui-countdown/fui-countdown.vue +301 -0
  35. package/ui-fireui/fui-datetime/fui-datetime.vue +570 -0
  36. package/ui-fireui/fui-divider/fui-divider.vue +118 -0
  37. package/ui-fireui/fui-drawer/fui-drawer.vue +103 -0
  38. package/ui-fireui/fui-dropdown-list/fui-dropdown-list.vue +70 -0
  39. package/ui-fireui/fui-fab/fui-fab.vue +284 -0
  40. package/ui-fireui/fui-footer/fui-footer.vue +131 -0
  41. package/ui-fireui/fui-grid/fui-grid.vue +42 -0
  42. package/ui-fireui/fui-grid-item/fui-grid-item.vue +142 -0
  43. package/ui-fireui/fui-icon/fui-icon.vue +820 -0
  44. package/ui-fireui/fui-image-cropper/fui-image-cropper.vue +1058 -0
  45. package/ui-fireui/fui-image-group/fui-image-group.vue +149 -0
  46. package/ui-fireui/fui-keyboard/fui-keyboard.vue +254 -0
  47. package/ui-fireui/fui-keyboard-input/fui-keyboard-input.vue +78 -0
  48. package/ui-fireui/fui-list-cell/fui-list-cell.vue +178 -0
  49. package/ui-fireui/fui-list-view/fui-list-view.vue +87 -0
  50. package/ui-fireui/fui-loading/fui-loading.vue +78 -0
  51. package/ui-fireui/fui-loadmore/fui-loadmore.vue +163 -0
  52. package/ui-fireui/fui-modal/fui-modal.vue +392 -0
  53. package/ui-fireui/fui-navigation-bar/fui-navigation-bar.vue +180 -0
  54. package/ui-fireui/fui-no-data/fui-no-data.vue +116 -0
  55. package/ui-fireui/fui-nomore/fui-nomore.vue +116 -0
  56. package/ui-fireui/fui-numberbox/fui-numberbox.vue +234 -0
  57. package/ui-fireui/fui-numberbox-border/fui-numberbox-border.vue +232 -0
  58. package/ui-fireui/fui-picture-cropper/fui-picture-cropper.vue +682 -0
  59. package/ui-fireui/fui-picture-cropper/fui-picture-cropper.wxs +560 -0
  60. package/ui-fireui/fui-rate/fui-rate.vue +167 -0
  61. package/ui-fireui/fui-round-progress/fui-round-progress.vue +306 -0
  62. package/ui-fireui/fui-scroll-top/fui-scroll-top.vue +189 -0
  63. package/ui-fireui/fui-sharemodel/fui-sharemodel.vue +181 -0
  64. package/ui-fireui/fui-skeleton/fui-skeleton.vue +248 -0
  65. package/ui-fireui/fui-steps/fui-steps.vue +214 -0
  66. package/ui-fireui/fui-sticky/fui-sticky.vue +155 -0
  67. package/ui-fireui/fui-sticky-wxs/fui-sticky-wxs.vue +133 -0
  68. package/ui-fireui/fui-sticky-wxs/fui-sticky.wxs +44 -0
  69. package/ui-fireui/fui-swipe-action/fui-swipe-action.vue +301 -0
  70. package/ui-fireui/fui-tabbar/fui-tabbar.vue +283 -0
  71. package/ui-fireui/fui-tabs/fui-tabs.vue +284 -0
  72. package/ui-fireui/fui-tabs2/fui-tabs2.vue +284 -0
  73. package/ui-fireui/fui-tag/fui-tag.vue +374 -0
  74. package/ui-fireui/fui-time-axis/fui-time-axis.vue +36 -0
  75. package/ui-fireui/fui-timeaxis-item/fui-timeaxis-item.vue +48 -0
  76. package/ui-fireui/fui-tips/fui-tips.vue +161 -0
  77. package/ui-fireui/fui-toast/fui-toast.vue +117 -0
  78. package/ui-fireui/fui-top-dropdown/fui-top-dropdown.vue +129 -0
  79. package/ui-fireui/fui-upload/fui-upload.vue +446 -0
  80. package/ui-fireui/fui-uploadsamll/fui-uploadsamll.vue +472 -0
  81. package/uview-plus/README.md +2 -2
  82. package/uview-plus/changelog-wu-tool.md +21 -0
  83. package/uview-plus/changelog-wu.md +91 -0
  84. package/uview-plus/components/u-action-sheet/_doc/changelog.md +12 -0
  85. package/uview-plus/components/u-action-sheet/_doc/package.json +92 -0
  86. package/uview-plus/components/u-action-sheet/_doc/readme.md +16 -0
  87. package/uview-plus/components/u-action-sheet/u-action-sheet.vue +8 -8
  88. package/uview-plus/components/u-album/u-album.vue +1 -1
  89. package/uview-plus/components/u-alert/u-alert.vue +5 -5
  90. package/uview-plus/components/u-app-update/_doc/changelog.md +26 -0
  91. package/uview-plus/components/u-app-update/_doc/package.json +89 -0
  92. package/uview-plus/components/u-app-update/_doc/readme.md +16 -0
  93. package/uview-plus/components/u-app-update/config.js +120 -0
  94. package/uview-plus/components/u-app-update/img/act.png +0 -0
  95. package/uview-plus/components/u-app-update/img/appUploadAlertBoxBg.png +0 -0
  96. package/uview-plus/components/u-app-update/img/close.png +0 -0
  97. package/uview-plus/components/u-app-update/js-sdk/checkVersion.js +81 -0
  98. package/uview-plus/components/u-app-update/js-sdk/silentlyAppUpdate.js +41 -0
  99. package/uview-plus/components/u-app-update/pages/index.vue +8 -0
  100. package/uview-plus/components/u-app-update/u-app-update.vue +583 -0
  101. package/uview-plus/components/u-avatar/u-avatar.vue +2 -2
  102. package/uview-plus/components/u-avatar-group/u-avatar-group.vue +79 -3
  103. package/uview-plus/components/u-back-top/u-back-top.vue +4 -4
  104. package/uview-plus/components/u-badge/u-badge.vue +1 -1
  105. package/uview-plus/components/u-button/u-button.vue +8 -8
  106. package/uview-plus/components/u-button-wu/_doc/changelog.md +6 -0
  107. package/uview-plus/components/u-button-wu/_doc/package.json +89 -0
  108. package/uview-plus/components/u-button-wu/_doc/readme.md +16 -0
  109. package/uview-plus/components/u-button-wu/u-button-wu.vue +522 -0
  110. package/uview-plus/components/u-button-wu/vue.scss +81 -0
  111. package/uview-plus/components/u-calendar/u-calendar.vue +5 -6
  112. package/uview-plus/components/u-calendar-wu/_doc/changelog.md +145 -0
  113. package/uview-plus/components/u-calendar-wu/_doc/package.json +90 -0
  114. package/uview-plus/components/u-calendar-wu/_doc/readme.md +16 -0
  115. package/uview-plus/components/u-calendar-wu/calendar.js +664 -0
  116. package/uview-plus/components/u-calendar-wu/i18n/en.json +14 -0
  117. package/uview-plus/components/u-calendar-wu/i18n/index.js +8 -0
  118. package/uview-plus/components/u-calendar-wu/i18n/zh-Hans.json +14 -0
  119. package/uview-plus/components/u-calendar-wu/i18n/zh-Hant.json +14 -0
  120. package/uview-plus/components/u-calendar-wu/props.js +166 -0
  121. package/uview-plus/components/u-calendar-wu/style.css +196 -0
  122. package/uview-plus/components/u-calendar-wu/u-calendar-wu.vue +921 -0
  123. package/uview-plus/components/u-calendar-wu/util.js +552 -0
  124. package/uview-plus/components/u-calendar-wu/wu-calendar-block/props.js +73 -0
  125. package/uview-plus/components/u-calendar-wu/wu-calendar-block/wu-calendar-block.vue +122 -0
  126. package/uview-plus/components/u-calendar-wu/wu-calendar-item/props.js +55 -0
  127. package/uview-plus/components/u-calendar-wu/wu-calendar-item/wu-calendar-item.vue +293 -0
  128. package/uview-plus/components/u-car-keyboard/u-car-keyboard.vue +2 -2
  129. package/uview-plus/components/u-card/u-card.vue +139 -3
  130. package/uview-plus/components/u-cell/_doc/changelog.md +6 -0
  131. package/uview-plus/components/u-cell/_doc/package.json +89 -0
  132. package/uview-plus/components/u-cell/_doc/readme.md +25 -0
  133. package/uview-plus/components/u-cell/u-cell.vue +4 -4
  134. package/uview-plus/components/u-cell-group/u-cell-group.vue +2 -2
  135. package/uview-plus/components/u-checkbox/_doc/changelog.md +8 -0
  136. package/uview-plus/components/u-checkbox/_doc/package.json +88 -0
  137. package/uview-plus/components/u-checkbox/_doc/readme.md +25 -0
  138. package/uview-plus/components/u-checkbox/u-checkbox.vue +4 -4
  139. package/uview-plus/components/u-checkbox-group/u-checkbox-group.vue +1 -1
  140. package/uview-plus/components/u-code/_doc/changelog.md +6 -0
  141. package/uview-plus/components/u-code/_doc/package.json +86 -0
  142. package/uview-plus/components/u-code/_doc/readme.md +16 -0
  143. package/uview-plus/components/u-code/u-code.vue +1 -1
  144. package/uview-plus/components/u-code-input/u-code-input.vue +1 -1
  145. package/uview-plus/components/u-col/u-col.vue +1 -1
  146. package/uview-plus/components/u-collapse/u-collapse.vue +2 -2
  147. package/uview-plus/components/u-collapse-item/u-collapse-item.vue +218 -3
  148. package/uview-plus/components/u-column-notice/u-column-notice.vue +3 -3
  149. package/uview-plus/components/u-count-down/u-count-down.vue +1 -1
  150. package/uview-plus/components/u-count-to/u-count-to.vue +1 -1
  151. package/uview-plus/components/u-datetime-picker/u-datetime-picker.vue +3 -3
  152. package/uview-plus/components/u-divider/u-divider.vue +3 -3
  153. package/uview-plus/components/u-drag-sort/_doc/changelog.md +0 -0
  154. package/uview-plus/components/u-drag-sort/_doc/package.json +85 -0
  155. package/uview-plus/components/u-drag-sort/_doc/readme.md +16 -0
  156. package/uview-plus/components/u-drag-sort/u-drag-sort.vue +3 -0
  157. package/uview-plus/components/u-dropdown/u-dropdown.vue +3 -3
  158. package/uview-plus/components/u-dropdown-item/u-dropdown-item.vue +1 -1
  159. package/uview-plus/components/u-empty/u-empty.vue +30 -4
  160. package/uview-plus/components/u-form-item/u-form-item.vue +4 -4
  161. package/uview-plus/components/u-gap/_doc/changelog.md +4 -0
  162. package/uview-plus/components/u-gap/_doc/package.json +86 -0
  163. package/uview-plus/components/u-gap/_doc/readme.md +22 -0
  164. package/uview-plus/components/u-gap/u-gap.vue +1 -1
  165. package/uview-plus/components/u-grid/u-grid.vue +1 -1
  166. package/uview-plus/components/u-grid-item/u-grid-item.vue +1 -1
  167. package/uview-plus/components/u-icon/_doc/changelog.md +10 -0
  168. package/uview-plus/components/u-icon/_doc/package.json +85 -0
  169. package/uview-plus/components/u-icon/_doc/readme.md +10 -0
  170. package/uview-plus/components/u-icon/icon.js +23 -25
  171. package/uview-plus/components/u-icon/icons.js +213 -213
  172. package/uview-plus/components/u-icon/style.css +3 -3
  173. package/uview-plus/components/u-icon/u-icon.vue +1 -1
  174. package/uview-plus/components/u-icon/u-icon2.vue +149 -0
  175. package/uview-plus/components/u-image/u-image.vue +5 -5
  176. package/uview-plus/components/u-image-wu/_doc/changelog.md +21 -0
  177. package/uview-plus/components/u-image-wu/_doc/package.json +88 -0
  178. package/uview-plus/components/u-image-wu/_doc/readme.md +11 -0
  179. package/uview-plus/components/u-image-wu/props.js +94 -0
  180. package/uview-plus/components/u-image-wu/u-image-wu.vue +243 -0
  181. package/uview-plus/components/u-index-anchor/u-index-anchor.vue +1 -1
  182. package/uview-plus/components/u-index-list/u-index-list.vue +2 -2
  183. package/uview-plus/components/u-input/_doc/changelog.md +6 -0
  184. package/uview-plus/components/u-input/_doc/package.json +88 -0
  185. package/uview-plus/components/u-input/_doc/readme.md +16 -0
  186. package/uview-plus/components/u-input/u-input.vue +4 -4
  187. package/uview-plus/components/u-keyboard/u-keyboard.vue +6 -6
  188. package/uview-plus/components/u-lazy-load/u-lazy-load.vue +257 -3
  189. package/uview-plus/components/u-line/_doc/changelog.md +8 -0
  190. package/uview-plus/components/u-line/_doc/package.json +86 -0
  191. package/uview-plus/components/u-line/_doc/readme.md +16 -0
  192. package/uview-plus/components/u-line/u-line.vue +1 -1
  193. package/uview-plus/components/u-line-progress/u-line-progress.vue +1 -1
  194. package/uview-plus/components/u-link/_doc/changelog.md +8 -0
  195. package/uview-plus/components/u-link/_doc/package.json +86 -0
  196. package/uview-plus/components/u-link/_doc/readme.md +20 -0
  197. package/uview-plus/components/u-link/u-link.vue +1 -1
  198. package/uview-plus/components/u-list/u-list.vue +1 -1
  199. package/uview-plus/components/u-list-item/u-list-item.vue +1 -1
  200. package/uview-plus/components/u-loading-icon/_doc/changelog.md +12 -0
  201. package/uview-plus/components/u-loading-icon/_doc/package.json +86 -0
  202. package/uview-plus/components/u-loading-icon/_doc/readme.md +16 -0
  203. package/uview-plus/components/u-loading-icon/props.js +1 -1
  204. package/uview-plus/components/u-loading-icon/u-loading-icon.vue +191 -3
  205. package/uview-plus/components/u-loading-page/u-loading-page.vue +4 -4
  206. package/uview-plus/components/u-loadmore/u-loadmore.vue +4 -4
  207. package/uview-plus/components/u-mask/u-mask.vue +120 -113
  208. package/uview-plus/components/u-message-input/u-message-input.vue +1 -1
  209. package/uview-plus/components/u-modal/u-modal.vue +6 -6
  210. package/uview-plus/components/u-navbar/_doc/changelog.md +6 -0
  211. package/uview-plus/components/u-navbar/_doc/package.json +89 -0
  212. package/uview-plus/components/u-navbar/_doc/readme.md +16 -0
  213. package/uview-plus/components/u-navbar/u-navbar.vue +4 -4
  214. package/uview-plus/components/u-navbar-mini/u-navbar-mini.vue +2 -2
  215. package/uview-plus/components/u-navbar-wu/props.js +102 -0
  216. package/uview-plus/components/u-navbar-wu/u-navbar-wu.vue +196 -0
  217. package/uview-plus/components/u-no-network/u-no-network.vue +5 -5
  218. package/uview-plus/components/u-notice-bar/u-notice-bar.vue +5 -5
  219. package/uview-plus/components/u-notify/u-notify.vue +6 -6
  220. package/uview-plus/components/u-number-box/_doc/changelog.md +19 -0
  221. package/uview-plus/components/u-number-box/_doc/package.json +88 -0
  222. package/uview-plus/components/u-number-box/_doc/readme.md +16 -0
  223. package/uview-plus/components/u-number-box/u-number-box.vue +9 -3
  224. package/uview-plus/components/u-number-keyboard/u-number-keyboard.vue +1 -1
  225. package/uview-plus/components/u-overlay/_doc/changelog.md +4 -0
  226. package/uview-plus/components/u-overlay/_doc/package.json +88 -0
  227. package/uview-plus/components/u-overlay/_doc/readme.md +16 -0
  228. package/uview-plus/components/u-overlay/u-overlay.vue +3 -3
  229. package/uview-plus/components/u-picker/u-picker.vue +5 -5
  230. package/uview-plus/components/u-popup/_doc/changelog.md +4 -0
  231. package/uview-plus/components/u-popup/_doc/package.json +92 -0
  232. package/uview-plus/components/u-popup/_doc/readme.md +16 -0
  233. package/uview-plus/components/u-popup/u-popup.vue +8 -8
  234. package/uview-plus/components/u-popup-wu/keypress.js +45 -0
  235. package/uview-plus/components/u-popup-wu/u-popup-wu.vue +519 -0
  236. package/uview-plus/components/u-radio/_doc/changelog.md +6 -0
  237. package/uview-plus/components/u-radio/_doc/package.json +88 -0
  238. package/uview-plus/components/u-radio/_doc/readme.md +25 -0
  239. package/uview-plus/components/u-radio/u-radio.vue +4 -4
  240. package/uview-plus/components/u-radio-group/u-radio-group.vue +1 -1
  241. package/uview-plus/components/u-rate/u-rate.vue +5 -5
  242. package/uview-plus/components/u-read-more/u-read-more.vue +126 -3
  243. package/uview-plus/components/u-row/_doc/changelog.md +8 -0
  244. package/uview-plus/components/u-row/_doc/package.json +86 -0
  245. package/uview-plus/components/u-row/_doc/readme.md +16 -0
  246. package/uview-plus/components/u-row/u-row.vue +1 -1
  247. package/uview-plus/components/u-row-notice/u-row-notice.vue +3 -3
  248. package/uview-plus/components/u-safe-bottom/_doc/changelog.md +6 -0
  249. package/uview-plus/components/u-safe-bottom/_doc/package.json +86 -0
  250. package/uview-plus/components/u-safe-bottom/_doc/readme.md +16 -0
  251. package/uview-plus/components/u-safe-bottom/u-safe-bottom.vue +48 -3
  252. package/uview-plus/components/u-search/u-search.vue +4 -4
  253. package/uview-plus/components/u-select/u-select.vue +175 -3
  254. package/uview-plus/components/u-skeleton/u-skeleton.vue +3 -3
  255. package/uview-plus/components/u-sku-wu/_doc/changelog.md +27 -0
  256. package/uview-plus/components/u-sku-wu/_doc/package.json +93 -0
  257. package/uview-plus/components/u-sku-wu/_doc/readme.md +16 -0
  258. package/uview-plus/components/u-sku-wu/props.js +86 -0
  259. package/uview-plus/components/u-sku-wu/style.css +271 -0
  260. package/uview-plus/components/u-sku-wu/u-sku-wu.vue +864 -0
  261. package/uview-plus/components/u-status-bar/_doc/changelog.md +4 -0
  262. package/uview-plus/components/u-status-bar/_doc/package.json +86 -0
  263. package/uview-plus/components/u-status-bar/_doc/readme.md +16 -0
  264. package/uview-plus/components/u-status-bar/u-status-bar.vue +1 -1
  265. package/uview-plus/components/u-steps/u-steps.vue +1 -1
  266. package/uview-plus/components/u-steps-item/u-steps-item.vue +7 -7
  267. package/uview-plus/components/u-sticky/u-sticky.vue +1 -1
  268. package/uview-plus/components/u-subsection/u-subsection.vue +1 -1
  269. package/uview-plus/components/u-swipe-action/u-swipe-action.vue +1 -1
  270. package/uview-plus/components/u-swipe-action-item/u-swipe-action-item.vue +3 -3
  271. package/uview-plus/components/u-swiper/u-swiper.vue +1 -1
  272. package/uview-plus/components/u-swiper-indicator/u-swiper-indicator.vue +1 -1
  273. package/uview-plus/components/u-switch/u-switch.vue +2 -2
  274. package/uview-plus/components/u-tabbar/u-tabbar.vue +2 -2
  275. package/uview-plus/components/u-tabbar-item/u-tabbar-item.vue +9 -4
  276. package/uview-plus/components/u-table/u-table.vue +1 -1
  277. package/uview-plus/components/u-tabs/u-tabs.vue +3 -3
  278. package/uview-plus/components/u-tag/u-tag.vue +5 -5
  279. package/uview-plus/components/u-text/_doc/changelog.md +10 -0
  280. package/uview-plus/components/u-text/_doc/package.json +89 -0
  281. package/uview-plus/components/u-text/_doc/readme.md +20 -0
  282. package/uview-plus/components/u-text/u-text.vue +159 -3
  283. package/uview-plus/components/u-textarea/_doc/changelog.md +6 -0
  284. package/uview-plus/components/u-textarea/_doc/package.json +86 -0
  285. package/uview-plus/components/u-textarea/_doc/readme.md +25 -0
  286. package/uview-plus/components/u-toast/u-toast.vue +8 -8
  287. package/uview-plus/components/u-tooltip/u-tooltip.vue +6 -6
  288. package/uview-plus/components/u-transition/_doc/changelog.md +14 -0
  289. package/uview-plus/components/u-transition/_doc/package.json +86 -0
  290. package/uview-plus/components/u-transition/_doc/readme.md +16 -0
  291. package/uview-plus/components/u-transition-wu/createAnimation.js +148 -0
  292. package/uview-plus/components/u-transition-wu/props.js +32 -0
  293. package/uview-plus/components/u-transition-wu/u-transition.vue +300 -0
  294. package/uview-plus/components/u-upload/u-upload.vue +10 -10
  295. package/uview-plus/components/u-verification-code/u-verification-code.vue +161 -0
  296. package/uview-plus/components/u-waterfall/u-waterfall.vue +221 -3
  297. package/uview-plus/index.js +109 -94
  298. package/uview-plus/libs/config/config.js +46 -48
  299. package/uview-plus/libs/css/color.scss +32 -311
  300. package/uview-plus/libs/css/components-wu.scss +30 -0
  301. package/uview-plus/libs/css/vue.scss +10 -10
  302. package/uview-plus/libs/ctocode/index.js +120 -0
  303. package/uview-plus/libs/function/calc.js +61 -55
  304. package/uview-plus/libs/function/color/color-convert/CHANGELOG.md +54 -0
  305. package/uview-plus/libs/function/color/color-convert/LICENSE +21 -0
  306. package/uview-plus/libs/function/color/color-convert/README.md +68 -0
  307. package/uview-plus/libs/function/color/color-convert/conversions.js +839 -0
  308. package/uview-plus/libs/function/color/color-convert/index.js +81 -0
  309. package/uview-plus/libs/function/color/color-convert/package.json +48 -0
  310. package/uview-plus/libs/function/color/color-convert/route.js +97 -0
  311. package/uview-plus/libs/function/color/color-name/LICENSE +8 -0
  312. package/uview-plus/libs/function/color/color-name/README.md +11 -0
  313. package/uview-plus/libs/function/color/color-name/index.js +152 -0
  314. package/uview-plus/libs/function/color/color-name/package.json +28 -0
  315. package/uview-plus/libs/function/color/color-string/LICENSE +21 -0
  316. package/uview-plus/libs/function/color/color-string/README.md +62 -0
  317. package/uview-plus/libs/function/color/color-string/index.js +244 -0
  318. package/uview-plus/libs/function/color/color-string/package.json +39 -0
  319. package/uview-plus/libs/function/color/color.js +496 -0
  320. package/uview-plus/libs/function/color/index.js +158 -0
  321. package/uview-plus/libs/function/color/is-arrayish/LICENSE +21 -0
  322. package/uview-plus/libs/function/color/is-arrayish/README.md +16 -0
  323. package/uview-plus/libs/function/color/is-arrayish/index.js +9 -0
  324. package/uview-plus/libs/function/color/is-arrayish/package.json +45 -0
  325. package/uview-plus/libs/function/color/is-arrayish/yarn-error.log +1443 -0
  326. package/uview-plus/libs/function/color/simple-swizzle/LICENSE +21 -0
  327. package/uview-plus/libs/function/color/simple-swizzle/README.md +39 -0
  328. package/uview-plus/libs/function/color/simple-swizzle/index.js +29 -0
  329. package/uview-plus/libs/function/color/simple-swizzle/package.json +36 -0
  330. package/uview-plus/libs/function/colorGradient.js +108 -106
  331. package/uview-plus/libs/function/debounce.js +17 -17
  332. package/uview-plus/libs/function/digit.js +1 -3
  333. package/uview-plus/libs/function/http.js +3 -3
  334. package/uview-plus/libs/function/index-wu.js +198 -0
  335. package/uview-plus/libs/function/index.js +579 -566
  336. package/uview-plus/libs/function/platform.js +18 -18
  337. package/uview-plus/libs/function/test.js +135 -137
  338. package/uview-plus/libs/function/throttle.js +17 -17
  339. package/uview-plus/libs/luch-request/core/Request.js +199 -199
  340. package/uview-plus/libs/mixin/mpMixin.js +1 -0
  341. package/uview-plus/libs/mixin/openType.js +33 -0
  342. package/uview-plus/libs/util/async-validator.js +1343 -1343
  343. package/uview-plus/libs/util/dayjs.js +404 -0
  344. package/uview-plus/libs/util/route.js +101 -105
  345. package/uview-plus/package-wu-tool.json +84 -0
  346. package/uview-plus/package-wu.json +112 -0
  347. package/uview-plus/package.json +106 -95
  348. package/uview-plus/readme-wu.md +148 -0
  349. package/uview-ui/index.js +51 -52
  350. package/plugins/uni-upgrade.js +0 -294
@@ -0,0 +1,472 @@
1
+ <template>
2
+ <view class="fui-container">
3
+ <view class="fui-upload-box" :class="[isShowAdd ? 'fui-uploadd' : 'fui-none']">
4
+ <view class="fui-image-item" v-for="(item, index) in imageList" :key="index">
5
+ <image
6
+ :src="item"
7
+ :style="[{ borderRadius: borderRadius + 'rpx' }]"
8
+ class="fui-item-img"
9
+ @tap.stop="previewImage(index)"
10
+ mode="aspectFill"
11
+ ></image>
12
+ <view v-if="!forbidDel" class="fui-img-del" @tap.stop="delImage(index)"></view>
13
+ <view v-if="statusArr[index] != 1" class="fui-upload-mask">
14
+ <view class="fui-upload-loading" v-if="statusArr[index] == 2"></view>
15
+ <text class="fui-tips">{{ statusArr[index] == 2 ? '上传中...' : '上传失败' }}</text>
16
+ <view
17
+ class="fui-mask-btn"
18
+ v-if="statusArr[index] == 3"
19
+ @tap.stop="reUpLoad(index)"
20
+ hover-class="fui-btn-hover"
21
+ :hover-stay-time="150"
22
+ >
23
+ 重新上传
24
+ </view>
25
+ </view>
26
+ </view>
27
+ <view v-if="isShowAdd" class="fui-upload-addicon" @tap="chooseImage">
28
+ <view class="fui-upload-item">
29
+ <image style="width: 45rpx; height: 45rpx" src="/static/images/img.png" mode="widthFix"></image>
30
+ <!-- <cv-icons type="media-camera-filled" size="44" color="#262871" /> -->
31
+ <!-- <view class="fontS_15" :style="[{ fontSize: fontSize + 'rpx' }]" style="margin-top: 10upx; color: #4fb49b">
32
+ 请上传照片
33
+ </view> -->
34
+ </view>
35
+ <!-- <view class="fui-upload-icon fui-icon-plus"></view> -->
36
+ </view>
37
+ </view>
38
+ </view>
39
+ </template>
40
+
41
+ <script>
42
+ export default {
43
+ name: 'fuiUpload',
44
+ props: {
45
+ //初始化图片路径
46
+ value: {
47
+ type: Array,
48
+ default() {
49
+ return [];
50
+ }
51
+ },
52
+ //禁用删除
53
+ forbidDel: {
54
+ type: Boolean,
55
+ default: false
56
+ },
57
+ //禁用添加
58
+ forbidAdd: {
59
+ type: Boolean,
60
+ default: false
61
+ },
62
+ //服务器地址
63
+ serverUrl: {
64
+ type: String,
65
+ default: ''
66
+ },
67
+ //限制数
68
+ limit: {
69
+ type: Number,
70
+ default: 9
71
+ },
72
+ //original 原图,compressed 压缩图,默认二者都有
73
+ sizeType: {
74
+ type: Array,
75
+ default() {
76
+ return ['original', 'compressed'];
77
+ }
78
+ },
79
+ //album 从相册选图,camera 使用相机,默认二者都有。如需直接开相机或直接选相册,请只使用一个选项
80
+ sourceType: {
81
+ type: Array,
82
+ default() {
83
+ return ['album', 'camera'];
84
+ }
85
+ },
86
+ //可上传图片类型,默认为空,不限制 Array<String> ['jpg','png','gif']
87
+ imageFormat: {
88
+ type: Array,
89
+ default() {
90
+ return [];
91
+ }
92
+ },
93
+ //单张图片大小限制 MB
94
+ size: {
95
+ type: Number,
96
+ default: 4
97
+ },
98
+ //字体大小
99
+ fontSize: {
100
+ type: Number,
101
+ default: 22
102
+ },
103
+ //高
104
+ height: {
105
+ type: Number,
106
+ default: 260
107
+ },
108
+ //圆角
109
+ borderRadius: {
110
+ type: Number,
111
+ default: 0
112
+ },
113
+ //项目名,默认为 file
114
+ fileKeyName: {
115
+ type: String,
116
+ default: 'file'
117
+ },
118
+ //HTTP 请求 Header, header 中不能设置 Referer。
119
+ header: {
120
+ type: Object,
121
+ default() {
122
+ return {};
123
+ }
124
+ },
125
+ //HTTP 请求中其他额外的 form data
126
+ formData: {
127
+ type: Object,
128
+ default() {
129
+ return {};
130
+ }
131
+ }
132
+ },
133
+ data() {
134
+ return {
135
+ //图片地址
136
+ imageList: [],
137
+ //上传状态:1-上传成功 2-上传中 3-上传失败
138
+ statusArr: [],
139
+ isShowAdd: false
140
+ };
141
+ },
142
+ created() {
143
+ this.initImages();
144
+ },
145
+ watch: {
146
+ value(val) {
147
+ let that = this;
148
+ console.log('监听', val);
149
+ if (val) {
150
+ that.initImages();
151
+ }
152
+ }
153
+ },
154
+ computed: {
155
+ // isShowAdd() {
156
+ // let isShow = true;
157
+ // if (this.forbidAdd || (this.limit && this.imageList.length >= this.limit)) {
158
+ // isShow = false;
159
+ // }
160
+ // return isShow;
161
+ // }
162
+ },
163
+ methods: {
164
+ initImages() {
165
+ this.imageList = [...this.value];
166
+ for (let item of this.imageList) {
167
+ this.statusArr.push('1');
168
+ }
169
+ },
170
+ // 重新上传
171
+ reUpLoad(index) {
172
+ this.statusArr[index] = '2';
173
+ this.change();
174
+ this.uploadImage(index, this.imageList[index])
175
+ .then(() => {
176
+ this.change();
177
+ })
178
+ .catch(() => {
179
+ this.change();
180
+ });
181
+ },
182
+ change() {
183
+ let status = ~this.statusArr.indexOf('2') ? 2 : 1;
184
+ if (status != 2 && ~this.statusArr.indexOf('3')) {
185
+ // 上传失败
186
+ status = 3;
187
+ }
188
+ this.$emit('complete', {
189
+ status: status,
190
+ imgArr: this.imageList
191
+ });
192
+ },
193
+ chooseImage() {
194
+ uni.chooseImage({
195
+ count: this.limit - this.imageList.length,
196
+ sizeType: this.sizeType,
197
+ sourceType: this.sourceType,
198
+ success: (e) => {
199
+ console.log('wwww', e);
200
+ let imageArr = [];
201
+ for (let i = 0; i < e.tempFiles.length; i++) {
202
+ let len = this.imageList.length;
203
+ if (len >= this.limit) {
204
+ this.showToast(`最多可上传${this.limit}张图片`);
205
+ break;
206
+ }
207
+ //过滤图片类型
208
+ let path = e.tempFiles[i].path;
209
+
210
+ if (this.imageFormat.length > 0) {
211
+ let format = '';
212
+ // #ifdef H5
213
+ let type = e.tempFiles[i].type;
214
+ format = type.split('/')[1];
215
+ // #endif
216
+
217
+ // #ifndef H5
218
+ format = path.split('.')[path.split('.').length - 1];
219
+ // #endif
220
+
221
+ if (this.imageFormat.indexOf(format) == -1) {
222
+ let text = `只能上传 ${this.imageFormat.join(',')} 格式图片!`;
223
+ this.showToast(text);
224
+ continue;
225
+ }
226
+ }
227
+
228
+ //过滤超出大小限制图片
229
+ let size = e.tempFiles[i].size;
230
+
231
+ if (this.size * 1024 * 1024 < size) {
232
+ let err = `单张图片大小不能超过:${this.size}MB`;
233
+ this.showToast(err);
234
+ continue;
235
+ }
236
+ imageArr.push(path);
237
+ this.imageList.push(path);
238
+ this.statusArr.push('2');
239
+ }
240
+ this.change();
241
+
242
+ let start = this.imageList.length - imageArr.length;
243
+ for (let j = 0; j < imageArr.length; j++) {
244
+ let index = start + j;
245
+ //服务器地址
246
+ if (this.serverUrl) {
247
+ this.uploadImage(index, imageArr[j])
248
+ .then(() => {
249
+ this.change();
250
+ })
251
+ .catch(() => {
252
+ this.change();
253
+ });
254
+ } else {
255
+ //无服务器地址则直接返回成功
256
+ this.statusArr[index] = '1';
257
+ this.change();
258
+ }
259
+ }
260
+ this.isShowAdd = false;
261
+ }
262
+ });
263
+ },
264
+ uploadImage(index, url) {
265
+ return new Promise((resolve, reject) => {
266
+ uni.uploadFile({
267
+ url: this.serverUrl,
268
+ name: this.fileKeyName,
269
+ header: this.header,
270
+ formData: this.formData,
271
+ filePath: url,
272
+ success: (res) => {
273
+ console.log('上传后处理数据', res);
274
+ if (res.statusCode == 200) {
275
+ //返回结果 此处需要按接口实际返回进行修改
276
+ let d = JSON.parse(res.data.replace(/\ufeff/g, '') || '{}');
277
+ //判断code,以实际接口规范判断
278
+ if (d.code % 100 === 0) {
279
+ // 上传成功 d.url 为上传后图片地址,以实际接口返回为准
280
+ d.url && (this.imageList[index] = d.url);
281
+ this.statusArr[index] = d.url ? '1' : '3';
282
+ } else {
283
+ // 上传失败
284
+ this.statusArr[index] = '3';
285
+ }
286
+ resolve(index);
287
+ } else {
288
+ this.statusArr[index] = '3';
289
+ reject(index);
290
+ }
291
+ },
292
+ fail: (res) => {
293
+ this.statusArr[index] = '3';
294
+ reject(index);
295
+ }
296
+ });
297
+ });
298
+ },
299
+ delImage(index) {
300
+ this.imageList.splice(index, 1);
301
+ this.statusArr.splice(index, 1);
302
+ this.$emit('remove', {
303
+ index: index
304
+ });
305
+ this.change();
306
+ this.isShowAdd = true;
307
+ console.log('监听1', this.value);
308
+ },
309
+ previewImage(index) {
310
+ if (!this.imageList.length) return;
311
+ uni.previewImage({
312
+ current: this.imageList[index],
313
+ loop: true,
314
+ urls: this.imageList
315
+ });
316
+ }
317
+ }
318
+ };
319
+ </script>
320
+
321
+ <style scoped>
322
+ @font-face {
323
+ font-family: 'fuiUpload';
324
+ src: url(data:application/font-woff;charset=utf-8;base64,d09GRgABAAAAAATcAA0AAAAAByQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAEwAAAABoAAAAciR52BUdERUYAAASgAAAAHgAAAB4AKQALT1MvMgAAAaAAAABCAAAAVjxvR/tjbWFwAAAB+AAAAEUAAAFK5ibpuGdhc3AAAASYAAAACAAAAAj//wADZ2x5ZgAAAkwAAADXAAABAAmNjcZoZWFkAAABMAAAAC8AAAA2FpiS+WhoZWEAAAFgAAAAHQAAACQH3QOFaG10eAAAAeQAAAARAAAAEgwAACBsb2NhAAACQAAAAAwAAAAMAEoAgG1heHAAAAGAAAAAHwAAACABEgA2bmFtZQAAAyQAAAFJAAACiCnmEVVwb3N0AAAEcAAAACgAAAA6OMUs4HjaY2BkYGAAYo3boY/i+W2+MnCzMIDAzb3qdQj6fwPzf+YGIJeDgQkkCgA/KAtvAHjaY2BkYGBu+N/AEMPCAALM/xkYGVABCwBZ4wNrAAAAeNpjYGRgYGBl0GJgZgABJiDmAkIGhv9gPgMADTABSQB42mNgZGFgnMDAysDA1Ml0hoGBoR9CM75mMGLkAIoysDIzYAUBaa4pDA7PGJ9xMjf8b2CIYW5gaAAKM4LkANt9C+UAAHjaY2GAABYIVmBgAAAA+gAtAAAAeNpjYGBgZoBgGQZGBhBwAfIYwXwWBg0gzQakGRmYnjE+4/z/n4EBQksxSf6GqgcCRjYGOIeRCUgwMaACRoZhDwCiLwmoAAAAAAAAAAAAAAAASgCAeNpdjkFKw0AARf/vkIR0BkPayWRKQZtYY90ohJju2kOIbtz0KD1HVm50UfEmWXoAr9ADOHFARHHzeY//Fx8Ci+FJfIgdJFa4AhgiMshbrCuIsLxhFJZVs+Vl1bT1GddtbXTC3OhohN4dg4BJ3zMJAnccyfm468ZzHXddrH9ZKbHzdf9n/vkY/xv9sPQXgGEvBrHHwst5kTbXLE+YpYVPkxepPmW94W16UbdNJd6f3SAzo5W7m1jaKd+8ZZIvk5nlKw9SK6Wle7BLS3f/bTzQLmfAF2T1NsQAeNp9kD1OAzEQhZ/zByQSQiCoXVEA2vyUKRMp9Ailo0g23pBo1155nUg5AS0VB6DlGByAGyDRcgpelkmTImvt6PObmeexAZzjGwr/3yXuhBWO8ShcwREy4Sr1F+Ea+V24jhY+hRvUf4SbuFUD4RYu1BsdVO2Eu5vSbcsKZxgIV3CKJ+Eq9ZVwjfwqXMcVPoQb1L+EmxjjV7iFa2WpDOFhMEFgnEFjig3jAjEcLJIyBtahOfRmEsxMTzd6ETubOBso71dilwMeaDnngCntPbdmvkon/mDLgdSYbh4FS7YpjS4idCgbXyyc1d2oc7D9nu22tNi/a4E1x+xRDWzU/D3bM9JIbAyvkJI18jK3pBJTj2hrrPG7ZynW814IiU68y/SIx5o0dTr3bmniwOLn8owcfbS5kj33qBw+Y1kIeb/dTsQgil2GP5PYcRkAAAB42mNgYoAALjDJyIAOWMGiTIxMjMxsKak5qSWpbFmZiRmJ+QAmgAUIAAAAAf//AAIAAQAAAAwAAAAWAAAAAgABAAMABAABAAQAAAACAAAAAHjaY2BgYGQAgqtL1DlA9M296nUwGgA+8QYgAAA=)
325
+ format('woff');
326
+ font-weight: normal;
327
+ font-style: normal;
328
+ }
329
+
330
+ .fui-upload-icon {
331
+ font-family: 'fuiUpload' !important;
332
+ font-style: normal;
333
+ -webkit-font-smoothing: antialiased;
334
+ -moz-osx-font-smoothing: grayscale;
335
+ padding: 10rpx;
336
+ }
337
+
338
+ .fui-icon-delete:before {
339
+ content: '\e601';
340
+ }
341
+
342
+ .fui-icon-plus:before {
343
+ content: '\e609';
344
+ }
345
+
346
+ .fui-upload-box {
347
+ width: 100%;
348
+ border-radius: 50%;
349
+ }
350
+ .fui-uploadd {
351
+ border: 1rpx solid #cccccc;
352
+ border-radius: 0;
353
+ }
354
+ .fui-none {
355
+ border: none;
356
+ }
357
+ .fui-upload-add {
358
+ width: 62rpx;
359
+ height: 62rpx;
360
+ font-weight: 100;
361
+ align-items: center;
362
+ justify-content: center;
363
+ padding: 0;
364
+ background-color: #fff;
365
+ }
366
+ .fui-upload-addicon {
367
+ width: 62rpx;
368
+ height: 62rpx;
369
+ background-color: #fff;
370
+ }
371
+ .fui-upload-item {
372
+ margin: auto;
373
+ vertical-align: middle;
374
+ text-align: center;
375
+ width: 62rpx;
376
+ height: 62rpx;
377
+ padding: 14rpx 0;
378
+ }
379
+ .fui-image-item {
380
+ width: 62rpx;
381
+ height: 62rpx;
382
+ position: relative;
383
+ margin: auto;
384
+ border-radius: 50%;
385
+ }
386
+
387
+ .fui-image-item:nth-of-type(3n) {
388
+ margin-right: 0;
389
+ }
390
+
391
+ .fui-item-img {
392
+ width: 100%;
393
+ height: 100%;
394
+ display: block;
395
+ }
396
+
397
+ .fui-img-del {
398
+ width: 36rpx;
399
+ height: 36rpx;
400
+ position: absolute;
401
+ right: -12rpx;
402
+ top: -12rpx;
403
+ background-color: #4fb49b;
404
+ border-radius: 50%;
405
+ color: white;
406
+ font-size: 34rpx;
407
+ z-index: 999;
408
+ }
409
+
410
+ .fui-img-del::before {
411
+ content: '';
412
+ width: 16rpx;
413
+ height: 1px;
414
+ position: absolute;
415
+ left: 10rpx;
416
+ top: 18rpx;
417
+ background-color: #fff;
418
+ }
419
+
420
+ .fui-upload-mask {
421
+ width: 100%;
422
+ height: 100%;
423
+ position: absolute;
424
+ left: 0;
425
+ top: 0;
426
+ flex-direction: column;
427
+ align-items: center;
428
+ justify-content: space-around;
429
+ padding: 40rpx 0;
430
+ box-sizing: border-box;
431
+ background-color: rgba(0, 0, 0, 0.6);
432
+ }
433
+
434
+ .fui-upload-loading {
435
+ width: 28rpx;
436
+ height: 28rpx;
437
+ border-radius: 50%;
438
+ border: 2px solid;
439
+ border-color: #b2b2b2 #b2b2b2 #b2b2b2 #fff;
440
+ animation: fui-rotate 0.7s linear infinite;
441
+ }
442
+
443
+ @keyframes fui-rotate {
444
+ 0% {
445
+ transform: rotate(0);
446
+ }
447
+
448
+ 100% {
449
+ transform: rotate(360deg);
450
+ }
451
+ }
452
+
453
+ .fui-tips {
454
+ font-size: 26rpx;
455
+ color: #fff;
456
+ }
457
+
458
+ .fui-mask-btn {
459
+ padding: 4rpx 16rpx;
460
+ border-radius: 40rpx;
461
+ text-align: center;
462
+ font-size: 24rpx;
463
+ color: #fff;
464
+ border: 1rpx solid #fff;
465
+ align-items: center;
466
+ justify-content: center;
467
+ }
468
+
469
+ .fui-btn-hover {
470
+ opacity: 0.8;
471
+ }
472
+ </style>
@@ -43,7 +43,7 @@ uview-plus现已推出免费可视化设计,可以方便的进行页面可视
43
43
 
44
44
  ## 交流反馈
45
45
 
46
- 欢迎加入我们的QQ群交流反馈:[点此跳转](https://uview-plus.jiangruyi.com/components/addQQGroup.html)
46
+ 欢迎加入我们的QQ群交流反馈:[点此跳转](http://cvjs.cn/cv-mobile-ui/guide/addQQGroup.html)
47
47
 
48
48
  ## 关于PR
49
49
 
@@ -65,7 +65,7 @@ uview-plus现已推出免费可视化设计,可以方便的进行页面可视
65
65
 
66
66
  ```html
67
67
  <template>
68
- <u-button text="按钮"></u-button>
68
+ <up-button text="按钮"></up-button>
69
69
  </template>
70
70
  ```
71
71
 
@@ -0,0 +1,21 @@
1
+ ## 1.1.0(2023-09-13)
2
+ 更新版本
3
+ ## 1.0.9(2023-09-08)
4
+ 修复Color方法引入路径错误
5
+ ## 1.0.8(2023-09-05)
6
+ Color不在使用npm包,改为本地方法
7
+ ## 1.0.7(2023-09-03)
8
+ 修复引入错误
9
+ ## 1.0.6(2023-09-03)
10
+ 发布1.0.6版本
11
+ ## 1.0.5(2023-08-30)
12
+ 修复api部分未导入
13
+ ## 1.0.4(2023-08-21)
14
+ 修复Color API引入错误
15
+ ## 1.0.3(2023-08-18)
16
+ 新增颜色API,支持任意颜色格式转换,颜色亮度调节、颜色饱和度调节、亮度获取、颜色是否深/亮等
17
+
18
+
19
+ ## 1.0.2(2023-08-16)
20
+ mixin交互节点信息根边距设置
21
+ mixin更新节点交互信息查询
@@ -0,0 +1,91 @@
1
+ // 下次更新的内容
2
+ 1. 统一尺寸
3
+ 2. 统一主题
4
+ 3. 暗黑主题
5
+ 4. 国际化
6
+
7
+ // 本次更新的内容
8
+ 1.修复u-calendar回到今日错误
9
+ 2.优化u-calendar picker日期与当前日历日期同步
10
+ 3.u-calendar新增mode属性,用来控制单日期、多日期、日期选择范围模式
11
+ 4.优化u-calendar date属性来更好的指定多日期、范围日期的默认值
12
+
13
+
14
+ ## 1.1.5(2024-05-08)
15
+ 更新域名
16
+ ## 1.1.4(2024-01-04)
17
+ 1. 日历增加节日
18
+ 2. 日历增加自定义高度
19
+ 3. vue页面日历折叠时增加动效
20
+ 4. 日历增加头部插槽
21
+ 5. 日历仅显示当月时自动扩大间距,不会再出现下面一排空白的尴尬情况了
22
+ ## 1.1.3(2023-11-19)
23
+ 1. 日历组件新增类型(周、月日历)
24
+ 2. 日历组件新增折叠功能
25
+ 3. 日历组件新增以周几开始的属性(周日、周一)
26
+ ## 1.1.2(2023-09-18)
27
+ 1.修复u-calendar回到今日错误
28
+ 2.优化u-calendar picker日期与当前日历日期同步
29
+ 3.u-calendar新增mode属性,用来控制单日期、多日期、日期选择范围模式
30
+ 4.优化u-calendar date属性来更好的指定多日期、范围日期的默认值
31
+ ## 1.1.1(2023-09-12)
32
+ 1. 新增u-popup弹出层组件
33
+ 2. 新增u-overlay遮罩层组件
34
+ 3. 新增u-action-sheet操作菜单组件
35
+ ## 1.1.0(2023-09-12)
36
+ 1. 新增u-popup弹出层组件
37
+ 2. 新增u-overlay遮罩层组件
38
+ 3. 新增u-action-sheet操作菜单组件
39
+ ## 1.0.9(2023-09-11)
40
+ 1. u-calendar修复每月仅展示当月数据时星期与日期对比错误
41
+ 2. 修复u-line在app端的线条表现
42
+ 3. 修复所有组件click事件会触发两次bug
43
+ 4. u-caleardar新增rangeEndRepick属性用来指定日期范围选择后点击范围内的日期是否可以重选结束日期
44
+ 5. 优化u-app-update比对版本成功后的安装方式改为强制安装,不在二次比对,因为客户手机可能存在安装包缓存
45
+ 6. 优化u-safe-bottom底部安全区域计算方法
46
+ ## 1.0.8(2023-09-05)
47
+ 更新pages.json文件
48
+ ## 1.0.7(2023-09-05)
49
+ 1. 新增app-update组建
50
+ 2. 优化工具Color方法依赖包,改为本地访问
51
+ 3. 优化u-calendar动态计算算法
52
+ 4. 优化u-calendar点击时加载缓慢
53
+ ## 1.0.6(2023-09-01)
54
+ 1. 新增gap组件
55
+ 2. 新增status-bar组件
56
+ 3. 新增safe-bottom组件
57
+ 4. 新增textarea组件
58
+ 5. 新增checkbox组件
59
+ 6. 新增cell组件
60
+ 7. 新增code组件
61
+ 8. 新增input组件
62
+ 9. 新增radio组件
63
+ 10. 新增navbar组件
64
+ ## 1.0.5(2023-08-21)
65
+ 新增项目示例
66
+ ## 1.0.4(2023-08-20)
67
+ 增加日历组件
68
+ ## 1.0.3(2023-08-12)
69
+ 1. 新增sku组件
70
+ 2. 新增layout组件
71
+ 3. 新增text组件
72
+ 4. 新增link组件
73
+ 5. 新增numberBox组件
74
+ 6. 新增loadingIcon组件
75
+ ## 1.0.2(2023-08-12)
76
+ 1. 新增sku组件
77
+ 2. 新增layout组件
78
+ 3. 新增text组件
79
+ 4. 新增link组件
80
+ 5. 新增numberBox组件
81
+ 6. 新增loadingIcon组件
82
+ ## 1.0.1(2023-08-08)
83
+ 1. 将内置组件方式改为连接式组件以此来增加产出
84
+ 2. 更新说明
85
+ ## 1.0.0(2023-08-08)
86
+ 1. 新增button组件
87
+ 2. 新增icon组件
88
+ 3. 新增loading-icon组件
89
+ 4. 新增tools工具库
90
+ ## 1.0.0(2023-08-01)
91
+ 工具库 全面兼容小程序、nvue、vue2、vue3等多端
@@ -0,0 +1,12 @@
1
+ ## 1.0.5(2024-05-09)
2
+ 取消按钮增加stop
3
+ ## 1.0.4(2024-05-08)
4
+ 更新域名
5
+ ## 1.0.3(2023-12-09)
6
+ 移除console
7
+ ## 1.0.2(2023-12-09)
8
+ 修复closeOnClickAction不生效的问题
9
+ ## 1.0.1(2023-10-26)
10
+ 修复错误引入
11
+ ## 1.0.0(2023-09-12)
12
+ u-action-sheet 操作菜单,全端兼容,无论平台,一致体验
@@ -0,0 +1,92 @@
1
+ {
2
+ "id": "u-action-sheet",
3
+ "displayName": "u-action-sheet 操作菜单,全端兼容,无论平台,一致体验",
4
+ "version": "1.0.5",
5
+ "description": "u-action-sheet 本组件用于从底部弹出一个操作菜单,供用户选择并返回结果。",
6
+ "keywords": [
7
+ "u-ui",
8
+ "wuui",
9
+ "u-action-sheet",
10
+ "action-sheet",
11
+ "操作菜单"
12
+ ],
13
+ "repository": "",
14
+ "engines": {
15
+ "HBuilderX": "^3.4.15"
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-popup",
40
+ "u-icon",
41
+ "u-line",
42
+ "u-gap",
43
+ "u-loading-icon"
44
+ ],
45
+ "encrypt": [],
46
+ "platforms": {
47
+ "cloud": {
48
+ "tcb": "y",
49
+ "aliyun": "y",
50
+ "alipay": "n"
51
+ },
52
+ "client": {
53
+ "Vue": {
54
+ "vue2": "y",
55
+ "vue3": "y"
56
+ },
57
+ "App": {
58
+ "app-vue": "y",
59
+ "app-nvue": "y"
60
+ },
61
+ "H5-mobile": {
62
+ "Safari": "y",
63
+ "Android Browser": "y",
64
+ "微信浏览器(Android)": "y",
65
+ "QQ浏览器(Android)": "y"
66
+ },
67
+ "H5-pc": {
68
+ "Chrome": "y",
69
+ "IE": "y",
70
+ "Edge": "y",
71
+ "Firefox": "y",
72
+ "Safari": "y"
73
+ },
74
+ "小程序": {
75
+ "微信": "y",
76
+ "阿里": "y",
77
+ "百度": "y",
78
+ "字节跳动": "y",
79
+ "QQ": "y",
80
+ "钉钉": "n",
81
+ "快手": "n",
82
+ "飞书": "n",
83
+ "京东": "n"
84
+ },
85
+ "快应用": {
86
+ "华为": "n",
87
+ "联盟": "n"
88
+ }
89
+ }
90
+ }
91
+ }
92
+ }