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.
Files changed (821) hide show
  1. package/README.md +9 -0
  2. package/lime-dayuts/changelog.md +33 -0
  3. package/lime-dayuts/common/constant.ts +32 -0
  4. package/lime-dayuts/common/dates.ts +194 -0
  5. package/lime-dayuts/common/index.ts +1103 -0
  6. package/lime-dayuts/common/locale/en/index.ts +57 -0
  7. package/lime-dayuts/common/locale/zh-cn/index.ts +75 -0
  8. package/lime-dayuts/common/test.ts +106 -0
  9. package/lime-dayuts/common/use.ts +63 -0
  10. package/lime-dayuts/common/utils.ts +106 -0
  11. package/lime-dayuts/index.ts +6 -0
  12. package/lime-dayuts/package.json +106 -0
  13. package/lime-dayuts/readme - /345/211/257/346/234/254.md" +445 -0
  14. package/lime-dayuts/readme.md +264 -0
  15. package/lime-dayuts/utssdk/app-js/config.json +3 -0
  16. package/lime-dayuts/utssdk/app-js/index.uts +3 -0
  17. package/lime-dayuts/utssdk/interface.uts +405 -0
  18. package/lime-dayuts/utssdk/unierror.uts +39 -0
  19. package/package.json +42 -0
  20. package/uview-ultra/LICENSE +20 -0
  21. package/uview-ultra/README.md +76 -0
  22. package/uview-ultra/changelog.md +449 -0
  23. package/uview-ultra/components/up-action-sheet/actionSheet.js +26 -0
  24. package/uview-ultra/components/up-action-sheet/actionSheet.uts +28 -0
  25. package/uview-ultra/components/up-action-sheet/props.js +62 -0
  26. package/uview-ultra/components/up-action-sheet/props.uts +66 -0
  27. package/uview-ultra/components/up-action-sheet/types.uts +86 -0
  28. package/uview-ultra/components/up-action-sheet/up-action-sheet.uvue +337 -0
  29. package/uview-ultra/components/up-action-sheet/up-action-sheet.vue +283 -0
  30. package/uview-ultra/components/up-album/album.js +27 -0
  31. package/uview-ultra/components/up-album/album.uts +27 -0
  32. package/uview-ultra/components/up-album/props.js +81 -0
  33. package/uview-ultra/components/up-album/props.uts +84 -0
  34. package/uview-ultra/components/up-album/up-album.uvue +347 -0
  35. package/uview-ultra/components/up-album/up-album.vue +278 -0
  36. package/uview-ultra/components/up-alert/alert.js +22 -0
  37. package/uview-ultra/components/up-alert/alert.uts +22 -0
  38. package/uview-ultra/components/up-alert/props.js +46 -0
  39. package/uview-ultra/components/up-alert/props.uts +48 -0
  40. package/uview-ultra/components/up-alert/up-alert.uvue +287 -0
  41. package/uview-ultra/components/up-alert/up-alert.vue +249 -0
  42. package/uview-ultra/components/up-avatar/avatar.js +28 -0
  43. package/uview-ultra/components/up-avatar/avatar.uts +28 -0
  44. package/uview-ultra/components/up-avatar/props.js +82 -0
  45. package/uview-ultra/components/up-avatar/props.uts +82 -0
  46. package/uview-ultra/components/up-avatar/up-avatar.uvue +235 -0
  47. package/uview-ultra/components/up-avatar/up-avatar.vue +180 -0
  48. package/uview-ultra/components/up-avatar-group/avatarGroup.js +23 -0
  49. package/uview-ultra/components/up-avatar-group/avatarGroup.uts +23 -0
  50. package/uview-ultra/components/up-avatar-group/props.js +54 -0
  51. package/uview-ultra/components/up-avatar-group/props.uts +55 -0
  52. package/uview-ultra/components/up-avatar-group/up-avatar-group.uvue +160 -0
  53. package/uview-ultra/components/up-avatar-group/up-avatar-group.vue +110 -0
  54. package/uview-ultra/components/up-back-top/backtop.js +27 -0
  55. package/uview-ultra/components/up-back-top/backtop.uts +27 -0
  56. package/uview-ultra/components/up-back-top/props.js +56 -0
  57. package/uview-ultra/components/up-back-top/props.uts +57 -0
  58. package/uview-ultra/components/up-back-top/up-back-top.uvue +157 -0
  59. package/uview-ultra/components/up-back-top/up-back-top.vue +133 -0
  60. package/uview-ultra/components/up-badge/badge.js +27 -0
  61. package/uview-ultra/components/up-badge/badge.uts +27 -0
  62. package/uview-ultra/components/up-badge/props.js +79 -0
  63. package/uview-ultra/components/up-badge/props.uts +89 -0
  64. package/uview-ultra/components/up-badge/up-badge.uvue +260 -0
  65. package/uview-ultra/components/up-badge/up-badge.vue +179 -0
  66. package/uview-ultra/components/up-box/box.js +24 -0
  67. package/uview-ultra/components/up-box/box.uts +24 -0
  68. package/uview-ultra/components/up-box/props.js +57 -0
  69. package/uview-ultra/components/up-box/props.uts +58 -0
  70. package/uview-ultra/components/up-box/up-box.uvue +137 -0
  71. package/uview-ultra/components/up-box/up-box.vue +107 -0
  72. package/uview-ultra/components/up-button/button.js +42 -0
  73. package/uview-ultra/components/up-button/button.uts +42 -0
  74. package/uview-ultra/components/up-button/props.js +155 -0
  75. package/uview-ultra/components/up-button/props.uts +164 -0
  76. package/uview-ultra/components/up-button/up-button.uvue +609 -0
  77. package/uview-ultra/components/up-button/up-button.vue +442 -0
  78. package/uview-ultra/components/up-button/vue.scss +85 -0
  79. package/uview-ultra/components/up-calendar/calendar.js +42 -0
  80. package/uview-ultra/components/up-calendar/calendar.uts +42 -0
  81. package/uview-ultra/components/up-calendar/header.uvue +103 -0
  82. package/uview-ultra/components/up-calendar/header.vue +103 -0
  83. package/uview-ultra/components/up-calendar/month.uvue +608 -0
  84. package/uview-ultra/components/up-calendar/month.vue +587 -0
  85. package/uview-ultra/components/up-calendar/props.js +147 -0
  86. package/uview-ultra/components/up-calendar/props.uts +149 -0
  87. package/uview-ultra/components/up-calendar/up-calendar.uvue +632 -0
  88. package/uview-ultra/components/up-calendar/up-calendar.vue +409 -0
  89. package/uview-ultra/components/up-calendar/util.js +86 -0
  90. package/uview-ultra/components/up-calendar/util.uts +93 -0
  91. package/uview-ultra/components/up-car-keyboard/carKeyboard.js +15 -0
  92. package/uview-ultra/components/up-car-keyboard/carKeyboard.uts +16 -0
  93. package/uview-ultra/components/up-car-keyboard/props.js +17 -0
  94. package/uview-ultra/components/up-car-keyboard/props.uts +27 -0
  95. package/uview-ultra/components/up-car-keyboard/up-car-keyboard.uvue +337 -0
  96. package/uview-ultra/components/up-car-keyboard/up-car-keyboard.vue +315 -0
  97. package/uview-ultra/components/up-card/card.uts +58 -0
  98. package/uview-ultra/components/up-card/props.js +140 -0
  99. package/uview-ultra/components/up-card/props.uts +150 -0
  100. package/uview-ultra/components/up-card/up-card.uvue +292 -0
  101. package/uview-ultra/components/up-card/up-card.vue +186 -0
  102. package/uview-ultra/components/up-cell/cell.js +35 -0
  103. package/uview-ultra/components/up-cell/cell.uts +35 -0
  104. package/uview-ultra/components/up-cell/props.js +113 -0
  105. package/uview-ultra/components/up-cell/props.uts +108 -0
  106. package/uview-ultra/components/up-cell/up-cell.uvue +301 -0
  107. package/uview-ultra/components/up-cell/up-cell.vue +268 -0
  108. package/uview-ultra/components/up-cell-group/cellGroup.js +16 -0
  109. package/uview-ultra/components/up-cell-group/cellGroup.uts +16 -0
  110. package/uview-ultra/components/up-cell-group/props.js +16 -0
  111. package/uview-ultra/components/up-cell-group/props.uts +26 -0
  112. package/uview-ultra/components/up-cell-group/up-cell-group.uvue +61 -0
  113. package/uview-ultra/components/up-cell-group/up-cell-group.vue +67 -0
  114. package/uview-ultra/components/up-checkbox/checkbox.js +27 -0
  115. package/uview-ultra/components/up-checkbox/checkbox.uts +27 -0
  116. package/uview-ultra/components/up-checkbox/props.js +76 -0
  117. package/uview-ultra/components/up-checkbox/props.uts +77 -0
  118. package/uview-ultra/components/up-checkbox/up-checkbox.uvue +523 -0
  119. package/uview-ultra/components/up-checkbox/up-checkbox.vue +386 -0
  120. package/uview-ultra/components/up-checkbox-group/checkboxGroup.js +29 -0
  121. package/uview-ultra/components/up-checkbox-group/checkboxGroup.uts +29 -0
  122. package/uview-ultra/components/up-checkbox-group/props.js +93 -0
  123. package/uview-ultra/components/up-checkbox-group/props.uts +84 -0
  124. package/uview-ultra/components/up-checkbox-group/up-checkbox-group.uvue +195 -0
  125. package/uview-ultra/components/up-checkbox-group/up-checkbox-group.vue +137 -0
  126. package/uview-ultra/components/up-circle-progress/circleProgress.js +15 -0
  127. package/uview-ultra/components/up-circle-progress/props.js +10 -0
  128. package/uview-ultra/components/up-circle-progress/up-circle-progress.vue +201 -0
  129. package/uview-ultra/components/up-code/code.js +21 -0
  130. package/uview-ultra/components/up-code/code.uts +20 -0
  131. package/uview-ultra/components/up-code/props.js +36 -0
  132. package/uview-ultra/components/up-code/props.uts +47 -0
  133. package/uview-ultra/components/up-code/up-code.uvue +183 -0
  134. package/uview-ultra/components/up-code/up-code.vue +132 -0
  135. package/uview-ultra/components/up-code-input/codeInput.js +29 -0
  136. package/uview-ultra/components/up-code-input/codeInput.uts +29 -0
  137. package/uview-ultra/components/up-code-input/props.js +90 -0
  138. package/uview-ultra/components/up-code-input/props.uts +83 -0
  139. package/uview-ultra/components/up-code-input/up-code-input.uvue +321 -0
  140. package/uview-ultra/components/up-code-input/up-code-input.vue +300 -0
  141. package/uview-ultra/components/up-col/col.js +19 -0
  142. package/uview-ultra/components/up-col/col.uts +19 -0
  143. package/uview-ultra/components/up-col/props.js +32 -0
  144. package/uview-ultra/components/up-col/props.uts +41 -0
  145. package/uview-ultra/components/up-col/up-col.uvue +193 -0
  146. package/uview-ultra/components/up-col/up-col.vue +172 -0
  147. package/uview-ultra/components/up-collapse/collapse.js +17 -0
  148. package/uview-ultra/components/up-collapse/collapse.uts +17 -0
  149. package/uview-ultra/components/up-collapse/props.js +21 -0
  150. package/uview-ultra/components/up-collapse/props.uts +23 -0
  151. package/uview-ultra/components/up-collapse/up-collapse.uvue +116 -0
  152. package/uview-ultra/components/up-collapse/up-collapse.vue +91 -0
  153. package/uview-ultra/components/up-collapse-item/collapseItem.js +26 -0
  154. package/uview-ultra/components/up-collapse-item/collapseItem.uts +26 -0
  155. package/uview-ultra/components/up-collapse-item/props.js +66 -0
  156. package/uview-ultra/components/up-collapse-item/props.uts +69 -0
  157. package/uview-ultra/components/up-collapse-item/up-collapse-item.uvue +266 -0
  158. package/uview-ultra/components/up-collapse-item/up-collapse-item.vue +242 -0
  159. package/uview-ultra/components/up-column-notice/columnNotice.js +24 -0
  160. package/uview-ultra/components/up-column-notice/columnNotice.uts +24 -0
  161. package/uview-ultra/components/up-column-notice/props.js +57 -0
  162. package/uview-ultra/components/up-column-notice/props.uts +59 -0
  163. package/uview-ultra/components/up-column-notice/up-column-notice.uvue +194 -0
  164. package/uview-ultra/components/up-column-notice/up-column-notice.vue +165 -0
  165. package/uview-ultra/components/up-copy/up-copy.uvue +74 -0
  166. package/uview-ultra/components/up-copy/up-copy.vue +70 -0
  167. package/uview-ultra/components/up-count-down/countDown.js +18 -0
  168. package/uview-ultra/components/up-count-down/countDown.uts +18 -0
  169. package/uview-ultra/components/up-count-down/props.js +26 -0
  170. package/uview-ultra/components/up-count-down/props.uts +37 -0
  171. package/uview-ultra/components/up-count-down/up-count-down.uvue +194 -0
  172. package/uview-ultra/components/up-count-down/up-count-down.vue +166 -0
  173. package/uview-ultra/components/up-count-down/utils.js +62 -0
  174. package/uview-ultra/components/up-count-down/utils.uts +67 -0
  175. package/uview-ultra/components/up-count-to/countTo.js +25 -0
  176. package/uview-ultra/components/up-count-to/countTo.uts +25 -0
  177. package/uview-ultra/components/up-count-to/props.js +61 -0
  178. package/uview-ultra/components/up-count-to/props.uts +72 -0
  179. package/uview-ultra/components/up-count-to/up-count-to.uvue +307 -0
  180. package/uview-ultra/components/up-count-to/up-count-to.vue +189 -0
  181. package/uview-ultra/components/up-datetime-picker/datetimePicker.js +37 -0
  182. package/uview-ultra/components/up-datetime-picker/datetimePicker.uts +42 -0
  183. package/uview-ultra/components/up-datetime-picker/dayjs.esm.min.js +7 -0
  184. package/uview-ultra/components/up-datetime-picker/props.js +150 -0
  185. package/uview-ultra/components/up-datetime-picker/props.uts +154 -0
  186. package/uview-ultra/components/up-datetime-picker/up-datetime-picker.uvue +657 -0
  187. package/uview-ultra/components/up-datetime-picker/up-datetime-picker.vue +472 -0
  188. package/uview-ultra/components/up-divider/divider.js +23 -0
  189. package/uview-ultra/components/up-divider/divider.uts +22 -0
  190. package/uview-ultra/components/up-divider/props.js +46 -0
  191. package/uview-ultra/components/up-divider/props.uts +57 -0
  192. package/uview-ultra/components/up-divider/up-divider.uvue +142 -0
  193. package/uview-ultra/components/up-divider/up-divider.vue +121 -0
  194. package/uview-ultra/components/up-dropdown/dropdown.uts +25 -0
  195. package/uview-ultra/components/up-dropdown/props.js +61 -0
  196. package/uview-ultra/components/up-dropdown/props.uts +72 -0
  197. package/uview-ultra/components/up-dropdown/types.uts +5 -0
  198. package/uview-ultra/components/up-dropdown/up-dropdown.uvue +349 -0
  199. package/uview-ultra/components/up-dropdown/up-dropdown.vue +259 -0
  200. package/uview-ultra/components/up-dropdown-item/dropdown-item.uts +25 -0
  201. package/uview-ultra/components/up-dropdown-item/props.js +47 -0
  202. package/uview-ultra/components/up-dropdown-item/props.uts +56 -0
  203. package/uview-ultra/components/up-dropdown-item/up-dropdown-item.uvue +170 -0
  204. package/uview-ultra/components/up-dropdown-item/up-dropdown-item.vue +120 -0
  205. package/uview-ultra/components/up-empty/empty.js +26 -0
  206. package/uview-ultra/components/up-empty/empty.uts +24 -0
  207. package/uview-ultra/components/up-empty/props.js +61 -0
  208. package/uview-ultra/components/up-empty/props.uts +71 -0
  209. package/uview-ultra/components/up-empty/up-empty.uvue +179 -0
  210. package/uview-ultra/components/up-empty/up-empty.vue +133 -0
  211. package/uview-ultra/components/up-form/form.js +22 -0
  212. package/uview-ultra/components/up-form/form.uts +22 -0
  213. package/uview-ultra/components/up-form/props.js +47 -0
  214. package/uview-ultra/components/up-form/props.uts +57 -0
  215. package/uview-ultra/components/up-form/up-form.uvue +248 -0
  216. package/uview-ultra/components/up-form/up-form.vue +252 -0
  217. package/uview-ultra/components/up-form-item/formItem.js +24 -0
  218. package/uview-ultra/components/up-form-item/formItem.uts +24 -0
  219. package/uview-ultra/components/up-form-item/props.js +55 -0
  220. package/uview-ultra/components/up-form-item/props.uts +65 -0
  221. package/uview-ultra/components/up-form-item/up-form-item.uvue +264 -0
  222. package/uview-ultra/components/up-form-item/up-form-item.vue +261 -0
  223. package/uview-ultra/components/up-gap/gap.js +19 -0
  224. package/uview-ultra/components/up-gap/gap.uts +19 -0
  225. package/uview-ultra/components/up-gap/props.js +27 -0
  226. package/uview-ultra/components/up-gap/props.uts +36 -0
  227. package/uview-ultra/components/up-gap/up-gap.uvue +54 -0
  228. package/uview-ultra/components/up-gap/up-gap.vue +41 -0
  229. package/uview-ultra/components/up-grid/grid.js +17 -0
  230. package/uview-ultra/components/up-grid/grid.uts +17 -0
  231. package/uview-ultra/components/up-grid/props.js +28 -0
  232. package/uview-ultra/components/up-grid/props.uts +37 -0
  233. package/uview-ultra/components/up-grid/up-grid.uvue +145 -0
  234. package/uview-ultra/components/up-grid/up-grid.vue +114 -0
  235. package/uview-ultra/components/up-grid-item/gridItem.js +16 -0
  236. package/uview-ultra/components/up-grid-item/gridItem.uts +16 -0
  237. package/uview-ultra/components/up-grid-item/props.js +16 -0
  238. package/uview-ultra/components/up-grid-item/props.uts +27 -0
  239. package/uview-ultra/components/up-grid-item/up-grid-item.uvue +211 -0
  240. package/uview-ultra/components/up-grid-item/up-grid-item.vue +219 -0
  241. package/uview-ultra/components/up-icon/icon.js +36 -0
  242. package/uview-ultra/components/up-icon/icon.uts +33 -0
  243. package/uview-ultra/components/up-icon/icons.js +426 -0
  244. package/uview-ultra/components/up-icon/icons.uts +222 -0
  245. package/uview-ultra/components/up-icon/props.js +92 -0
  246. package/uview-ultra/components/up-icon/props.uts +101 -0
  247. package/uview-ultra/components/up-icon/up-icon.uvue +278 -0
  248. package/uview-ultra/components/up-icon/up-icon.vue +242 -0
  249. package/uview-ultra/components/up-image/image.js +30 -0
  250. package/uview-ultra/components/up-image/image.uts +30 -0
  251. package/uview-ultra/components/up-image/props.js +87 -0
  252. package/uview-ultra/components/up-image/props.uts +88 -0
  253. package/uview-ultra/components/up-image/up-image.uvue +246 -0
  254. package/uview-ultra/components/up-image/up-image.vue +237 -0
  255. package/uview-ultra/components/up-index-anchor/indexAnchor.js +19 -0
  256. package/uview-ultra/components/up-index-anchor/indexAnchor.uts +19 -0
  257. package/uview-ultra/components/up-index-anchor/props.js +31 -0
  258. package/uview-ultra/components/up-index-anchor/props.uts +41 -0
  259. package/uview-ultra/components/up-index-anchor/up-index-anchor.uvue +129 -0
  260. package/uview-ultra/components/up-index-anchor/up-index-anchor.vue +110 -0
  261. package/uview-ultra/components/up-index-item/indexItem.uts +15 -0
  262. package/uview-ultra/components/up-index-item/props.js +8 -0
  263. package/uview-ultra/components/up-index-item/props.uts +15 -0
  264. package/uview-ultra/components/up-index-item/up-index-item.uvue +92 -0
  265. package/uview-ultra/components/up-index-item/up-index-item.vue +89 -0
  266. package/uview-ultra/components/up-index-list/indexList.js +21 -0
  267. package/uview-ultra/components/up-index-list/indexList.uts +21 -0
  268. package/uview-ultra/components/up-index-list/props.js +41 -0
  269. package/uview-ultra/components/up-index-list/props.uts +51 -0
  270. package/uview-ultra/components/up-index-list/up-index-list.uvue +564 -0
  271. package/uview-ultra/components/up-index-list/up-index-list.vue +598 -0
  272. package/uview-ultra/components/up-input/input.js +48 -0
  273. package/uview-ultra/components/up-input/input.uts +49 -0
  274. package/uview-ultra/components/up-input/props.js +198 -0
  275. package/uview-ultra/components/up-input/props.uts +198 -0
  276. package/uview-ultra/components/up-input/up-input.uvue +545 -0
  277. package/uview-ultra/components/up-input/up-input.vue +394 -0
  278. package/uview-ultra/components/up-keyboard/keyboard.js +30 -0
  279. package/uview-ultra/components/up-keyboard/keyboard.uts +30 -0
  280. package/uview-ultra/components/up-keyboard/props.js +86 -0
  281. package/uview-ultra/components/up-keyboard/props.uts +97 -0
  282. package/uview-ultra/components/up-keyboard/up-keyboard.uvue +166 -0
  283. package/uview-ultra/components/up-keyboard/up-keyboard.vue +167 -0
  284. package/uview-ultra/components/up-lazy-load/lazyLoad.uts +19 -0
  285. package/uview-ultra/components/up-lazy-load/props.uts +74 -0
  286. package/uview-ultra/components/up-lazy-load/up-lazy-load.uvue +211 -0
  287. package/uview-ultra/components/up-lazy-load/up-lazy-load.vue +258 -0
  288. package/uview-ultra/components/up-line/line.js +20 -0
  289. package/uview-ultra/components/up-line/line.uts +20 -0
  290. package/uview-ultra/components/up-line/props.js +36 -0
  291. package/uview-ultra/components/up-line/props.uts +37 -0
  292. package/uview-ultra/components/up-line/up-line.uvue +61 -0
  293. package/uview-ultra/components/up-line/up-line.vue +66 -0
  294. package/uview-ultra/components/up-line-progress/lineProgress.js +19 -0
  295. package/uview-ultra/components/up-line-progress/props.js +30 -0
  296. package/uview-ultra/components/up-line-progress/up-line-progress.vue +149 -0
  297. package/uview-ultra/components/up-link/link.js +26 -0
  298. package/uview-ultra/components/up-link/link.uts +23 -0
  299. package/uview-ultra/components/up-link/props.js +41 -0
  300. package/uview-ultra/components/up-link/props.uts +43 -0
  301. package/uview-ultra/components/up-link/up-link.uvue +90 -0
  302. package/uview-ultra/components/up-link/up-link.vue +87 -0
  303. package/uview-ultra/components/up-list/list.js +28 -0
  304. package/uview-ultra/components/up-list/list.uts +33 -0
  305. package/uview-ultra/components/up-list/props.js +101 -0
  306. package/uview-ultra/components/up-list/props.uts +111 -0
  307. package/uview-ultra/components/up-list/up-list.uvue +146 -0
  308. package/uview-ultra/components/up-list/up-list.vue +185 -0
  309. package/uview-ultra/components/up-list-item/listItem.js +15 -0
  310. package/uview-ultra/components/up-list-item/listItem.uts +15 -0
  311. package/uview-ultra/components/up-list-item/props.js +11 -0
  312. package/uview-ultra/components/up-list-item/props.uts +21 -0
  313. package/uview-ultra/components/up-list-item/up-list-item.uvue +125 -0
  314. package/uview-ultra/components/up-list-item/up-list-item.vue +118 -0
  315. package/uview-ultra/components/up-loading-icon/loadingIcon.js +30 -0
  316. package/uview-ultra/components/up-loading-icon/loadingIcon.uts +28 -0
  317. package/uview-ultra/components/up-loading-icon/props.js +62 -0
  318. package/uview-ultra/components/up-loading-icon/props.uts +71 -0
  319. package/uview-ultra/components/up-loading-icon/up-loading-icon.uvue +311 -0
  320. package/uview-ultra/components/up-loading-icon/up-loading-icon.vue +349 -0
  321. package/uview-ultra/components/up-loading-page/loadingPage.js +24 -0
  322. package/uview-ultra/components/up-loading-page/loadingPage.uts +24 -0
  323. package/uview-ultra/components/up-loading-page/props.js +57 -0
  324. package/uview-ultra/components/up-loading-page/props.uts +58 -0
  325. package/uview-ultra/components/up-loading-page/up-loading-page.uvue +129 -0
  326. package/uview-ultra/components/up-loading-page/up-loading-page.vue +123 -0
  327. package/uview-ultra/components/up-loadmore/loadmore.js +32 -0
  328. package/uview-ultra/components/up-loadmore/loadmore.uts +32 -0
  329. package/uview-ultra/components/up-loadmore/props.js +96 -0
  330. package/uview-ultra/components/up-loadmore/props.uts +107 -0
  331. package/uview-ultra/components/up-loadmore/up-loadmore.uvue +160 -0
  332. package/uview-ultra/components/up-loadmore/up-loadmore.vue +155 -0
  333. package/uview-ultra/components/up-modal/modal.js +36 -0
  334. package/uview-ultra/components/up-modal/modal.uts +36 -0
  335. package/uview-ultra/components/up-modal/props.js +111 -0
  336. package/uview-ultra/components/up-modal/props.uts +113 -0
  337. package/uview-ultra/components/up-modal/up-modal.uvue +269 -0
  338. package/uview-ultra/components/up-modal/up-modal.vue +265 -0
  339. package/uview-ultra/components/up-navbar/navbar.js +33 -0
  340. package/uview-ultra/components/up-navbar/navbar.uts +32 -0
  341. package/uview-ultra/components/up-navbar/props.js +87 -0
  342. package/uview-ultra/components/up-navbar/props.uts +88 -0
  343. package/uview-ultra/components/up-navbar/up-navbar.uvue +205 -0
  344. package/uview-ultra/components/up-navbar/up-navbar.vue +193 -0
  345. package/uview-ultra/components/up-navbar-mini/navbarMini.js +23 -0
  346. package/uview-ultra/components/up-navbar-mini/navbarMini.uts +23 -0
  347. package/uview-ultra/components/up-navbar-mini/props.js +51 -0
  348. package/uview-ultra/components/up-navbar-mini/props.uts +53 -0
  349. package/uview-ultra/components/up-navbar-mini/up-navbar-mini.uvue +146 -0
  350. package/uview-ultra/components/up-navbar-mini/up-navbar-mini.vue +137 -0
  351. package/uview-ultra/components/up-no-network/noNetwork.js +18 -0
  352. package/uview-ultra/components/up-no-network/noNetwork.uts +18 -0
  353. package/uview-ultra/components/up-no-network/props.js +21 -0
  354. package/uview-ultra/components/up-no-network/props.uts +31 -0
  355. package/uview-ultra/components/up-no-network/up-no-network.uvue +227 -0
  356. package/uview-ultra/components/up-no-network/up-no-network.vue +224 -0
  357. package/uview-ultra/components/up-notice-bar/noticeBar.js +27 -0
  358. package/uview-ultra/components/up-notice-bar/noticeBar.uts +27 -0
  359. package/uview-ultra/components/up-notice-bar/props.js +72 -0
  360. package/uview-ultra/components/up-notice-bar/props.uts +74 -0
  361. package/uview-ultra/components/up-notice-bar/up-notice-bar.uvue +108 -0
  362. package/uview-ultra/components/up-notice-bar/up-notice-bar.vue +105 -0
  363. package/uview-ultra/components/up-notify/notify.js +22 -0
  364. package/uview-ultra/components/up-notify/notify.uts +22 -0
  365. package/uview-ultra/components/up-notify/props.js +51 -0
  366. package/uview-ultra/components/up-notify/props.uts +56 -0
  367. package/uview-ultra/components/up-notify/up-notify.uvue +253 -0
  368. package/uview-ultra/components/up-notify/up-notify.vue +217 -0
  369. package/uview-ultra/components/up-number-box/numberBox.js +40 -0
  370. package/uview-ultra/components/up-number-box/numberBox.uts +40 -0
  371. package/uview-ultra/components/up-number-box/props.js +145 -0
  372. package/uview-ultra/components/up-number-box/props.uts +148 -0
  373. package/uview-ultra/components/up-number-box/up-number-box.uvue +447 -0
  374. package/uview-ultra/components/up-number-box/up-number-box.vue +479 -0
  375. package/uview-ultra/components/up-number-keyboard/numberKeyboard.js +17 -0
  376. package/uview-ultra/components/up-number-keyboard/numberKeyboard.uts +17 -0
  377. package/uview-ultra/components/up-number-keyboard/props.js +21 -0
  378. package/uview-ultra/components/up-number-keyboard/props.uts +32 -0
  379. package/uview-ultra/components/up-number-keyboard/up-number-keyboard.uvue +208 -0
  380. package/uview-ultra/components/up-number-keyboard/up-number-keyboard.vue +199 -0
  381. package/uview-ultra/components/up-overlay/overlay.js +18 -0
  382. package/uview-ultra/components/up-overlay/overlay.uts +18 -0
  383. package/uview-ultra/components/up-overlay/props.js +26 -0
  384. package/uview-ultra/components/up-overlay/props.uts +28 -0
  385. package/uview-ultra/components/up-overlay/up-overlay.uvue +71 -0
  386. package/uview-ultra/components/up-overlay/up-overlay.vue +71 -0
  387. package/uview-ultra/components/up-parse/node/node.vue +584 -0
  388. package/uview-ultra/components/up-parse/parse.js +22 -0
  389. package/uview-ultra/components/up-parse/parser.js +1333 -0
  390. package/uview-ultra/components/up-parse/props.js +48 -0
  391. package/uview-ultra/components/up-parse/up-parse.vue +499 -0
  392. package/uview-ultra/components/up-picker/picker.js +30 -0
  393. package/uview-ultra/components/up-picker/picker.uts +30 -0
  394. package/uview-ultra/components/up-picker/props.js +103 -0
  395. package/uview-ultra/components/up-picker/props.uts +114 -0
  396. package/uview-ultra/components/up-picker/up-picker.uvue +391 -0
  397. package/uview-ultra/components/up-picker/up-picker.vue +345 -0
  398. package/uview-ultra/components/up-picker-column/props.js +7 -0
  399. package/uview-ultra/components/up-picker-column/props.uts +7 -0
  400. package/uview-ultra/components/up-picker-column/up-picker-column.uvue +28 -0
  401. package/uview-ultra/components/up-picker-column/up-picker-column.vue +28 -0
  402. package/uview-ultra/components/up-popup/popup.js +29 -0
  403. package/uview-ultra/components/up-popup/popup.uts +28 -0
  404. package/uview-ultra/components/up-popup/props.js +81 -0
  405. package/uview-ultra/components/up-popup/props.uts +91 -0
  406. package/uview-ultra/components/up-popup/up-popup.uvue +318 -0
  407. package/uview-ultra/components/up-popup/up-popup.vue +310 -0
  408. package/uview-ultra/components/up-qrcode/qrcode.js +1281 -0
  409. package/uview-ultra/components/up-qrcode/up-qrcode.vue +536 -0
  410. package/uview-ultra/components/up-radio/props.js +71 -0
  411. package/uview-ultra/components/up-radio/props.uts +81 -0
  412. package/uview-ultra/components/up-radio/radio.js +27 -0
  413. package/uview-ultra/components/up-radio/radio.uts +27 -0
  414. package/uview-ultra/components/up-radio/up-radio.uvue +393 -0
  415. package/uview-ultra/components/up-radio/up-radio.vue +348 -0
  416. package/uview-ultra/components/up-radio-group/props.js +95 -0
  417. package/uview-ultra/components/up-radio-group/props.uts +90 -0
  418. package/uview-ultra/components/up-radio-group/radioGroup.js +30 -0
  419. package/uview-ultra/components/up-radio-group/radioGroup.uts +30 -0
  420. package/uview-ultra/components/up-radio-group/up-radio-group.uvue +113 -0
  421. package/uview-ultra/components/up-radio-group/up-radio-group.vue +128 -0
  422. package/uview-ultra/components/up-rate/props.js +80 -0
  423. package/uview-ultra/components/up-rate/props.uts +82 -0
  424. package/uview-ultra/components/up-rate/rate.js +26 -0
  425. package/uview-ultra/components/up-rate/rate.uts +27 -0
  426. package/uview-ultra/components/up-rate/up-rate.uvue +316 -0
  427. package/uview-ultra/components/up-rate/up-rate.vue +327 -0
  428. package/uview-ultra/components/up-read-more/props.js +63 -0
  429. package/uview-ultra/components/up-read-more/props.uts +61 -0
  430. package/uview-ultra/components/up-read-more/readMore.js +23 -0
  431. package/uview-ultra/components/up-read-more/readMore.uts +23 -0
  432. package/uview-ultra/components/up-read-more/up-read-more.uvue +160 -0
  433. package/uview-ultra/components/up-read-more/up-read-more.vue +165 -0
  434. package/uview-ultra/components/up-row/props.js +22 -0
  435. package/uview-ultra/components/up-row/props.uts +31 -0
  436. package/uview-ultra/components/up-row/row.js +17 -0
  437. package/uview-ultra/components/up-row/row.uts +17 -0
  438. package/uview-ultra/components/up-row/up-row.uvue +118 -0
  439. package/uview-ultra/components/up-row/up-row.vue +97 -0
  440. package/uview-ultra/components/up-row-notice/props.js +41 -0
  441. package/uview-ultra/components/up-row-notice/props.uts +43 -0
  442. package/uview-ultra/components/up-row-notice/rowNotice.js +21 -0
  443. package/uview-ultra/components/up-row-notice/rowNotice.uts +21 -0
  444. package/uview-ultra/components/up-row-notice/up-row-notice.uvue +304 -0
  445. package/uview-ultra/components/up-row-notice/up-row-notice.vue +337 -0
  446. package/uview-ultra/components/up-safe-bottom/props.js +7 -0
  447. package/uview-ultra/components/up-safe-bottom/props.uts +6 -0
  448. package/uview-ultra/components/up-safe-bottom/up-safe-bottom.uvue +59 -0
  449. package/uview-ultra/components/up-safe-bottom/up-safe-bottom.vue +59 -0
  450. package/uview-ultra/components/up-scroll-list/nvue.js +31 -0
  451. package/uview-ultra/components/up-scroll-list/props.js +36 -0
  452. package/uview-ultra/components/up-scroll-list/props.uts +38 -0
  453. package/uview-ultra/components/up-scroll-list/scrollList.js +20 -0
  454. package/uview-ultra/components/up-scroll-list/scrollList.uts +20 -0
  455. package/uview-ultra/components/up-scroll-list/scrollWxs.wxs +50 -0
  456. package/uview-ultra/components/up-scroll-list/up-scroll-list.uvue +212 -0
  457. package/uview-ultra/components/up-scroll-list/up-scroll-list.vue +233 -0
  458. package/uview-ultra/components/up-search/props.js +156 -0
  459. package/uview-ultra/components/up-search/props.uts +152 -0
  460. package/uview-ultra/components/up-search/search.js +41 -0
  461. package/uview-ultra/components/up-search/search.uts +41 -0
  462. package/uview-ultra/components/up-search/up-search.uvue +364 -0
  463. package/uview-ultra/components/up-search/up-search.vue +354 -0
  464. package/uview-ultra/components/up-skeleton/props.js +61 -0
  465. package/uview-ultra/components/up-skeleton/props.uts +69 -0
  466. package/uview-ultra/components/up-skeleton/skeleton.js +25 -0
  467. package/uview-ultra/components/up-skeleton/skeleton.uts +22 -0
  468. package/uview-ultra/components/up-skeleton/up-skeleton.uvue +228 -0
  469. package/uview-ultra/components/up-skeleton/up-skeleton.vue +248 -0
  470. package/uview-ultra/components/up-slider/props.js +95 -0
  471. package/uview-ultra/components/up-slider/props.uts +102 -0
  472. package/uview-ultra/components/up-slider/slider.js +28 -0
  473. package/uview-ultra/components/up-slider/slider.uts +25 -0
  474. package/uview-ultra/components/up-slider/up-slider.uvue +547 -0
  475. package/uview-ultra/components/up-slider/up-slider.vue +511 -0
  476. package/uview-ultra/components/up-status-bar/props.js +10 -0
  477. package/uview-ultra/components/up-status-bar/props.uts +12 -0
  478. package/uview-ultra/components/up-status-bar/statusBar.js +15 -0
  479. package/uview-ultra/components/up-status-bar/statusBar.uts +15 -0
  480. package/uview-ultra/components/up-status-bar/up-status-bar.uvue +47 -0
  481. package/uview-ultra/components/up-status-bar/up-status-bar.vue +49 -0
  482. package/uview-ultra/components/up-steps/props.js +41 -0
  483. package/uview-ultra/components/up-steps/props.uts +43 -0
  484. package/uview-ultra/components/up-steps/steps.js +21 -0
  485. package/uview-ultra/components/up-steps/steps.uts +22 -0
  486. package/uview-ultra/components/up-steps/up-steps.uvue +93 -0
  487. package/uview-ultra/components/up-steps/up-steps.vue +94 -0
  488. package/uview-ultra/components/up-steps-item/props.js +31 -0
  489. package/uview-ultra/components/up-steps-item/props.uts +33 -0
  490. package/uview-ultra/components/up-steps-item/stepsItem.js +18 -0
  491. package/uview-ultra/components/up-steps-item/stepsItem.uts +18 -0
  492. package/uview-ultra/components/up-steps-item/up-steps-item.uvue +412 -0
  493. package/uview-ultra/components/up-steps-item/up-steps-item.vue +349 -0
  494. package/uview-ultra/components/up-sticky/props.js +42 -0
  495. package/uview-ultra/components/up-sticky/props.uts +52 -0
  496. package/uview-ultra/components/up-sticky/sticky.js +20 -0
  497. package/uview-ultra/components/up-sticky/sticky.uts +20 -0
  498. package/uview-ultra/components/up-sticky/up-sticky.uvue +173 -0
  499. package/uview-ultra/components/up-sticky/up-sticky.vue +221 -0
  500. package/uview-ultra/components/up-subsection/props.js +51 -0
  501. package/uview-ultra/components/up-subsection/props.uts +53 -0
  502. package/uview-ultra/components/up-subsection/subsection.js +23 -0
  503. package/uview-ultra/components/up-subsection/subsection.uts +23 -0
  504. package/uview-ultra/components/up-subsection/up-subsection.uvue +301 -0
  505. package/uview-ultra/components/up-subsection/up-subsection.vue +318 -0
  506. package/uview-ultra/components/up-swipe-action/props.js +16 -0
  507. package/uview-ultra/components/up-swipe-action/props.uts +18 -0
  508. package/uview-ultra/components/up-swipe-action/swipeAction.js +15 -0
  509. package/uview-ultra/components/up-swipe-action/swipeAction.uts +16 -0
  510. package/uview-ultra/components/up-swipe-action/up-swipe-action.uvue +88 -0
  511. package/uview-ultra/components/up-swipe-action/up-swipe-action.vue +84 -0
  512. package/uview-ultra/components/up-swipe-action-item/alipay.sjs +229 -0
  513. package/uview-ultra/components/up-swipe-action-item/index.wxs +234 -0
  514. package/uview-ultra/components/up-swipe-action-item/nvue.js +174 -0
  515. package/uview-ultra/components/up-swipe-action-item/other.js +178 -0
  516. package/uview-ultra/components/up-swipe-action-item/other.uts +176 -0
  517. package/uview-ultra/components/up-swipe-action-item/props.js +47 -0
  518. package/uview-ultra/components/up-swipe-action-item/props.uts +48 -0
  519. package/uview-ultra/components/up-swipe-action-item/swipeActionItem.js +22 -0
  520. package/uview-ultra/components/up-swipe-action-item/swipeActionItem.uts +23 -0
  521. package/uview-ultra/components/up-swipe-action-item/types.uts +11 -0
  522. package/uview-ultra/components/up-swipe-action-item/up-swipe-action-item.uvue +382 -0
  523. package/uview-ultra/components/up-swipe-action-item/up-swipe-action-item.vue +249 -0
  524. package/uview-ultra/components/up-swipe-action-item/wxs.js +15 -0
  525. package/uview-ultra/components/up-swiper/props.js +127 -0
  526. package/uview-ultra/components/up-swiper/props.uts +137 -0
  527. package/uview-ultra/components/up-swiper/swiper.js +39 -0
  528. package/uview-ultra/components/up-swiper/swiper.uts +38 -0
  529. package/uview-ultra/components/up-swiper/up-swiper.uvue +290 -0
  530. package/uview-ultra/components/up-swiper/up-swiper.vue +269 -0
  531. package/uview-ultra/components/up-swiper-indicator/props.js +31 -0
  532. package/uview-ultra/components/up-swiper-indicator/props.uts +41 -0
  533. package/uview-ultra/components/up-swiper-indicator/swipterIndicator.js +19 -0
  534. package/uview-ultra/components/up-swiper-indicator/swipterIndicator.uts +19 -0
  535. package/uview-ultra/components/up-swiper-indicator/up-swiper-indicator.uvue +123 -0
  536. package/uview-ultra/components/up-swiper-indicator/up-swiper-indicator.vue +114 -0
  537. package/uview-ultra/components/up-switch/props.js +64 -0
  538. package/uview-ultra/components/up-switch/props.uts +82 -0
  539. package/uview-ultra/components/up-switch/switch.js +24 -0
  540. package/uview-ultra/components/up-switch/switch.uts +27 -0
  541. package/uview-ultra/components/up-switch/up-switch.uvue +193 -0
  542. package/uview-ultra/components/up-switch/up-switch.vue +215 -0
  543. package/uview-ultra/components/up-tabbar/props.js +57 -0
  544. package/uview-ultra/components/up-tabbar/props.uts +66 -0
  545. package/uview-ultra/components/up-tabbar/tabbar.js +24 -0
  546. package/uview-ultra/components/up-tabbar/tabbar.uts +24 -0
  547. package/uview-ultra/components/up-tabbar/up-tabbar.uvue +149 -0
  548. package/uview-ultra/components/up-tabbar/up-tabbar.vue +151 -0
  549. package/uview-ultra/components/up-tabbar-item/props.js +41 -0
  550. package/uview-ultra/components/up-tabbar-item/props.uts +51 -0
  551. package/uview-ultra/components/up-tabbar-item/tabbarItem.js +21 -0
  552. package/uview-ultra/components/up-tabbar-item/tabbarItem.uts +21 -0
  553. package/uview-ultra/components/up-tabbar-item/up-tabbar-item.uvue +207 -0
  554. package/uview-ultra/components/up-tabbar-item/up-tabbar-item.vue +197 -0
  555. package/uview-ultra/components/up-table/props.js +7 -0
  556. package/uview-ultra/components/up-table/props.uts +39 -0
  557. package/uview-ultra/components/up-table/table.uts +21 -0
  558. package/uview-ultra/components/up-table/up-table.uvue +111 -0
  559. package/uview-ultra/components/up-table/up-table.vue +104 -0
  560. package/uview-ultra/components/up-tabs/props.js +71 -0
  561. package/uview-ultra/components/up-tabs/props.uts +73 -0
  562. package/uview-ultra/components/up-tabs/tabs.js +33 -0
  563. package/uview-ultra/components/up-tabs/tabs.uts +34 -0
  564. package/uview-ultra/components/up-tabs/types.uts +19 -0
  565. package/uview-ultra/components/up-tabs/up-tabs.uvue +417 -0
  566. package/uview-ultra/components/up-tabs/up-tabs.vue +413 -0
  567. package/uview-ultra/components/up-tabs-item/props.js +7 -0
  568. package/uview-ultra/components/up-tabs-item/props.uts +7 -0
  569. package/uview-ultra/components/up-tabs-item/up-tabs-item.uvue +31 -0
  570. package/uview-ultra/components/up-tabs-item/up-tabs-item.vue +31 -0
  571. package/uview-ultra/components/up-tag/props.js +91 -0
  572. package/uview-ultra/components/up-tag/props.uts +100 -0
  573. package/uview-ultra/components/up-tag/tag.js +30 -0
  574. package/uview-ultra/components/up-tag/tag.uts +30 -0
  575. package/uview-ultra/components/up-tag/up-tag.uvue +370 -0
  576. package/uview-ultra/components/up-tag/up-tag.vue +368 -0
  577. package/uview-ultra/components/up-td/props.js +7 -0
  578. package/uview-ultra/components/up-td/props.uts +7 -0
  579. package/uview-ultra/components/up-td/td.uts +19 -0
  580. package/uview-ultra/components/up-td/up-td.uvue +105 -0
  581. package/uview-ultra/components/up-td/up-td.vue +98 -0
  582. package/uview-ultra/components/up-text/props.js +118 -0
  583. package/uview-ultra/components/up-text/props.uts +154 -0
  584. package/uview-ultra/components/up-text/text.js +39 -0
  585. package/uview-ultra/components/up-text/text.uts +44 -0
  586. package/uview-ultra/components/up-text/up-text.uvue +339 -0
  587. package/uview-ultra/components/up-text/up-text.vue +228 -0
  588. package/uview-ultra/components/up-text/value.js +87 -0
  589. package/uview-ultra/components/up-textarea/props.js +127 -0
  590. package/uview-ultra/components/up-textarea/props.uts +125 -0
  591. package/uview-ultra/components/up-textarea/textarea.js +36 -0
  592. package/uview-ultra/components/up-textarea/textarea.uts +36 -0
  593. package/uview-ultra/components/up-textarea/up-textarea.uvue +258 -0
  594. package/uview-ultra/components/up-textarea/up-textarea.vue +278 -0
  595. package/uview-ultra/components/up-th/props.js +7 -0
  596. package/uview-ultra/components/up-th/props.uts +7 -0
  597. package/uview-ultra/components/up-th/th.uts +16 -0
  598. package/uview-ultra/components/up-th/up-th.uvue +74 -0
  599. package/uview-ultra/components/up-th/up-th.vue +66 -0
  600. package/uview-ultra/components/up-title/up-title.uvue +36 -0
  601. package/uview-ultra/components/up-title/up-title.vue +36 -0
  602. package/uview-ultra/components/up-toast/toast.js +30 -0
  603. package/uview-ultra/components/up-toast/toast.uts +29 -0
  604. package/uview-ultra/components/up-toast/up-toast.uvue +330 -0
  605. package/uview-ultra/components/up-toast/up-toast.vue +304 -0
  606. package/uview-ultra/components/up-toolbar/props.js +41 -0
  607. package/uview-ultra/components/up-toolbar/props.uts +43 -0
  608. package/uview-ultra/components/up-toolbar/toolbar.js +21 -0
  609. package/uview-ultra/components/up-toolbar/toolbar.uts +20 -0
  610. package/uview-ultra/components/up-toolbar/up-toolbar.uvue +125 -0
  611. package/uview-ultra/components/up-toolbar/up-toolbar.vue +125 -0
  612. package/uview-ultra/components/up-tooltip/props.js +61 -0
  613. package/uview-ultra/components/up-tooltip/tooltip.js +25 -0
  614. package/uview-ultra/components/up-tooltip/up-tooltip.vue +342 -0
  615. package/uview-ultra/components/up-tr/props.js +7 -0
  616. package/uview-ultra/components/up-tr/props.uts +7 -0
  617. package/uview-ultra/components/up-tr/up-tr.uvue +22 -0
  618. package/uview-ultra/components/up-tr/up-tr.vue +34 -0
  619. package/uview-ultra/components/up-transition/nvue-ani-map.js +68 -0
  620. package/uview-ultra/components/up-transition/props.js +27 -0
  621. package/uview-ultra/components/up-transition/props.uts +36 -0
  622. package/uview-ultra/components/up-transition/transition.js +18 -0
  623. package/uview-ultra/components/up-transition/transition.uts +18 -0
  624. package/uview-ultra/components/up-transition/transitionMixin.js +163 -0
  625. package/uview-ultra/components/up-transition/up-transition.uvue +161 -0
  626. package/uview-ultra/components/up-transition/up-transition.vue +96 -0
  627. package/uview-ultra/components/up-transition/vue.ani-style.scss +113 -0
  628. package/uview-ultra/components/up-upload/mixin.js +23 -0
  629. package/uview-ultra/components/up-upload/mixin.uts +24 -0
  630. package/uview-ultra/components/up-upload/props.js +176 -0
  631. package/uview-ultra/components/up-upload/props.uts +176 -0
  632. package/uview-ultra/components/up-upload/types.uts +38 -0
  633. package/uview-ultra/components/up-upload/up-upload.uvue +965 -0
  634. package/uview-ultra/components/up-upload/up-upload.vue +927 -0
  635. package/uview-ultra/components/up-upload/upload.js +46 -0
  636. package/uview-ultra/components/up-upload/upload.uts +46 -0
  637. package/uview-ultra/components/up-upload/utils.js +180 -0
  638. package/uview-ultra/components/up-upload/utils.uts +213 -0
  639. package/uview-ultra/components/up-waterfall/props.uts +49 -0
  640. package/uview-ultra/components/up-waterfall/up-waterfall.uvue +344 -0
  641. package/uview-ultra/components/up-waterfall/up-waterfall.vue +416 -0
  642. package/uview-ultra/components/up-waterfall/waterfall.uts +20 -0
  643. package/uview-ultra/index.js +145 -0
  644. package/uview-ultra/index.scss +18 -0
  645. package/uview-ultra/index.uts +67 -0
  646. package/uview-ultra/libs/composable/useButton.uts +61 -0
  647. package/uview-ultra/libs/composable/useFuncIndex.uts +861 -0
  648. package/uview-ultra/libs/composable/useMp.uts +6 -0
  649. package/uview-ultra/libs/composable/useOpenType.uts +63 -0
  650. package/uview-ultra/libs/composable/useUltraUI.uts +206 -0
  651. package/uview-ultra/libs/config/color.js +17 -0
  652. package/uview-ultra/libs/config/color.uts +17 -0
  653. package/uview-ultra/libs/config/config.js +33 -0
  654. package/uview-ultra/libs/config/config.uts +33 -0
  655. package/uview-ultra/libs/config/props.js +190 -0
  656. package/uview-ultra/libs/config/props.uts +3 -0
  657. package/uview-ultra/libs/config/zIndex.js +20 -0
  658. package/uview-ultra/libs/config/zIndex.uts +20 -0
  659. package/uview-ultra/libs/css/color.scss +311 -0
  660. package/uview-ultra/libs/css/common.scss +121 -0
  661. package/uview-ultra/libs/css/components.scss +34 -0
  662. package/uview-ultra/libs/css/flex.scss +368 -0
  663. package/uview-ultra/libs/css/h5.scss +0 -0
  664. package/uview-ultra/libs/css/mixin.scss +8 -0
  665. package/uview-ultra/libs/css/mp.scss +0 -0
  666. package/uview-ultra/libs/css/vue.scss +35 -0
  667. package/uview-ultra/libs/function/colorGradient.js +134 -0
  668. package/uview-ultra/libs/function/colorGradient.uts +316 -0
  669. package/uview-ultra/libs/function/debounce.js +29 -0
  670. package/uview-ultra/libs/function/debounce.uts +33 -0
  671. package/uview-ultra/libs/function/digit.js +167 -0
  672. package/uview-ultra/libs/function/digit.uts +182 -0
  673. package/uview-ultra/libs/function/index.js +747 -0
  674. package/uview-ultra/libs/function/index.uts +826 -0
  675. package/uview-ultra/libs/function/platform.js +75 -0
  676. package/uview-ultra/libs/function/platform.uts +75 -0
  677. package/uview-ultra/libs/function/test.js +330 -0
  678. package/uview-ultra/libs/function/test.uts +343 -0
  679. package/uview-ultra/libs/function/throttle.js +30 -0
  680. package/uview-ultra/libs/function/throttle.uts +36 -0
  681. package/uview-ultra/libs/i18n/index.js +55 -0
  682. package/uview-ultra/libs/i18n/index.uts +65 -0
  683. package/uview-ultra/libs/i18n/locales/de.json +85 -0
  684. package/uview-ultra/libs/i18n/locales/en.json +85 -0
  685. package/uview-ultra/libs/i18n/locales/es.json +85 -0
  686. package/uview-ultra/libs/i18n/locales/fr.json +85 -0
  687. package/uview-ultra/libs/i18n/locales/ja.json +85 -0
  688. package/uview-ultra/libs/i18n/locales/ko.json +85 -0
  689. package/uview-ultra/libs/i18n/locales/ru.json +85 -0
  690. package/uview-ultra/libs/i18n/locales/th.json +85 -0
  691. package/uview-ultra/libs/i18n/locales/zh-Hans.json +85 -0
  692. package/uview-ultra/libs/i18n/locales/zh-Hant.json +85 -0
  693. package/uview-ultra/libs/luch-request/adapters/index.js +97 -0
  694. package/uview-ultra/libs/luch-request/core/InterceptorManager.js +50 -0
  695. package/uview-ultra/libs/luch-request/core/Request.js +198 -0
  696. package/uview-ultra/libs/luch-request/core/buildFullPath.js +20 -0
  697. package/uview-ultra/libs/luch-request/core/defaults.js +29 -0
  698. package/uview-ultra/libs/luch-request/core/dispatchRequest.js +3 -0
  699. package/uview-ultra/libs/luch-request/core/mergeConfig.js +103 -0
  700. package/uview-ultra/libs/luch-request/core/settle.js +16 -0
  701. package/uview-ultra/libs/luch-request/helpers/buildURL.js +69 -0
  702. package/uview-ultra/libs/luch-request/helpers/combineURLs.js +14 -0
  703. package/uview-ultra/libs/luch-request/helpers/isAbsoluteURL.js +14 -0
  704. package/uview-ultra/libs/luch-request/index.d.ts +116 -0
  705. package/uview-ultra/libs/luch-request/index.js +3 -0
  706. package/uview-ultra/libs/luch-request/utils/clone.js +264 -0
  707. package/uview-ultra/libs/luch-request/utils.js +131 -0
  708. package/uview-ultra/libs/mixin/button.js +18 -0
  709. package/uview-ultra/libs/mixin/button.uts +15 -0
  710. package/uview-ultra/libs/mixin/mixin.js +201 -0
  711. package/uview-ultra/libs/mixin/mixin.uts +220 -0
  712. package/uview-ultra/libs/mixin/mpMixin.js +13 -0
  713. package/uview-ultra/libs/mixin/mpMixin.uts +10 -0
  714. package/uview-ultra/libs/mixin/mpShare.js +27 -0
  715. package/uview-ultra/libs/mixin/mpShare.uts +26 -0
  716. package/uview-ultra/libs/mixin/openType.js +27 -0
  717. package/uview-ultra/libs/mixin/openType.uts +36 -0
  718. package/uview-ultra/libs/mixin/style.js +249 -0
  719. package/uview-ultra/libs/mixin/touch.js +61 -0
  720. package/uview-ultra/libs/mixin/touch.uts +72 -0
  721. package/uview-ultra/libs/util/async-validator.js +1343 -0
  722. package/uview-ultra/libs/util/async-validator.uts +1339 -0
  723. package/uview-ultra/libs/util/calendar.js +546 -0
  724. package/uview-ultra/libs/util/calendar.uts +546 -0
  725. package/uview-ultra/libs/util/emitter.js +51 -0
  726. package/uview-ultra/libs/util/route.js +124 -0
  727. package/uview-ultra/libs/util/route.uts +130 -0
  728. package/uview-ultra/libs/vue.js +3 -0
  729. package/uview-ultra/libs/vue.uts +8 -0
  730. package/uview-ultra/package.json +108 -0
  731. package/uview-ultra/theme.scss +77 -0
  732. package/uview-ultra/types/common.uts +14 -0
  733. package/uview-ultra/types/comps/_common.d.ts +9 -0
  734. package/uview-ultra/types/comps/actionSheet.d.ts +121 -0
  735. package/uview-ultra/types/comps/album.d.ts +82 -0
  736. package/uview-ultra/types/comps/alert.d.ts +55 -0
  737. package/uview-ultra/types/comps/avatar.d.ts +85 -0
  738. package/uview-ultra/types/comps/avatarGroup.d.ts +62 -0
  739. package/uview-ultra/types/comps/backTop.d.ts +74 -0
  740. package/uview-ultra/types/comps/badge.d.ts +76 -0
  741. package/uview-ultra/types/comps/button.d.ts +169 -0
  742. package/uview-ultra/types/comps/calendar.d.ts +164 -0
  743. package/uview-ultra/types/comps/cell.d.ts +133 -0
  744. package/uview-ultra/types/comps/cellGroup.d.ts +27 -0
  745. package/uview-ultra/types/comps/checkbox.d.ts +69 -0
  746. package/uview-ultra/types/comps/checkboxGroup.d.ts +93 -0
  747. package/uview-ultra/types/comps/code.d.ts +69 -0
  748. package/uview-ultra/types/comps/codeInput.d.ts +98 -0
  749. package/uview-ultra/types/comps/col.d.ts +43 -0
  750. package/uview-ultra/types/comps/collapse.d.ts +52 -0
  751. package/uview-ultra/types/comps/collapseItem.d.ts +83 -0
  752. package/uview-ultra/types/comps/countDown.d.ts +60 -0
  753. package/uview-ultra/types/comps/countTo.d.ts +88 -0
  754. package/uview-ultra/types/comps/datetimePicker.d.ts +146 -0
  755. package/uview-ultra/types/comps/divider.d.ts +58 -0
  756. package/uview-ultra/types/comps/empty.d.ts +72 -0
  757. package/uview-ultra/types/comps/form.d.ts +76 -0
  758. package/uview-ultra/types/comps/formItem.d.ts +68 -0
  759. package/uview-ultra/types/comps/gap.d.ts +35 -0
  760. package/uview-ultra/types/comps/grid.d.ts +34 -0
  761. package/uview-ultra/types/comps/gridItem.d.ts +28 -0
  762. package/uview-ultra/types/comps/icon.d.ts +93 -0
  763. package/uview-ultra/types/comps/image.d.ts +119 -0
  764. package/uview-ultra/types/comps/indexAnchor.d.ts +38 -0
  765. package/uview-ultra/types/comps/indexItem.d.ts +18 -0
  766. package/uview-ultra/types/comps/indexList.d.ts +39 -0
  767. package/uview-ultra/types/comps/input.d.ts +234 -0
  768. package/uview-ultra/types/comps/keyboard.d.ts +125 -0
  769. package/uview-ultra/types/comps/line.d.ts +44 -0
  770. package/uview-ultra/types/comps/lineProgress.d.ts +51 -0
  771. package/uview-ultra/types/comps/link.d.ts +51 -0
  772. package/uview-ultra/types/comps/list.d.ts +92 -0
  773. package/uview-ultra/types/comps/listItem.d.ts +18 -0
  774. package/uview-ultra/types/comps/loadMore.d.ts +108 -0
  775. package/uview-ultra/types/comps/loadingIcon.d.ts +68 -0
  776. package/uview-ultra/types/comps/loadingPage.d.ts +58 -0
  777. package/uview-ultra/types/comps/modal.d.ts +115 -0
  778. package/uview-ultra/types/comps/navbar.d.ts +113 -0
  779. package/uview-ultra/types/comps/navbarMini.d.ts +78 -0
  780. package/uview-ultra/types/comps/noNetwork.d.ts +40 -0
  781. package/uview-ultra/types/comps/noticeBar.d.ts +85 -0
  782. package/uview-ultra/types/comps/notify.d.ts +73 -0
  783. package/uview-ultra/types/comps/numberBox.d.ts +155 -0
  784. package/uview-ultra/types/comps/overlay.d.ts +46 -0
  785. package/uview-ultra/types/comps/parse.d.ts +101 -0
  786. package/uview-ultra/types/comps/picker.d.ts +115 -0
  787. package/uview-ultra/types/comps/popup.d.ts +103 -0
  788. package/uview-ultra/types/comps/radio.d.ts +77 -0
  789. package/uview-ultra/types/comps/radioGroup.d.ts +97 -0
  790. package/uview-ultra/types/comps/rate.d.ts +85 -0
  791. package/uview-ultra/types/comps/readMore.d.ts +80 -0
  792. package/uview-ultra/types/comps/row.d.ts +34 -0
  793. package/uview-ultra/types/comps/safeBottom.d.ts +16 -0
  794. package/uview-ultra/types/comps/scrollList.d.ts +51 -0
  795. package/uview-ultra/types/comps/search.d.ts +167 -0
  796. package/uview-ultra/types/comps/skeleton.d.ts +70 -0
  797. package/uview-ultra/types/comps/slider.d.ts +79 -0
  798. package/uview-ultra/types/comps/statusBar.d.ts +22 -0
  799. package/uview-ultra/types/comps/steps.d.ts +48 -0
  800. package/uview-ultra/types/comps/stepsItem.d.ts +41 -0
  801. package/uview-ultra/types/comps/sticky.d.ts +48 -0
  802. package/uview-ultra/types/comps/subsection.d.ts +64 -0
  803. package/uview-ultra/types/comps/swipeAction.d.ts +24 -0
  804. package/uview-ultra/types/comps/swipeActionItem.d.ts +58 -0
  805. package/uview-ultra/types/comps/swiper.d.ts +142 -0
  806. package/uview-ultra/types/comps/swiperIndicator.d.ts +37 -0
  807. package/uview-ultra/types/comps/switch.d.ts +73 -0
  808. package/uview-ultra/types/comps/tabbar.d.ts +54 -0
  809. package/uview-ultra/types/comps/tabbarItem.d.ts +52 -0
  810. package/uview-ultra/types/comps/tabs.d.ts +85 -0
  811. package/uview-ultra/types/comps/tag.d.ts +93 -0
  812. package/uview-ultra/types/comps/text.d.ts +110 -0
  813. package/uview-ultra/types/comps/textarea.d.ts +158 -0
  814. package/uview-ultra/types/comps/toast.d.ts +59 -0
  815. package/uview-ultra/types/comps/tooltip.d.ts +71 -0
  816. package/uview-ultra/types/comps/transition.d.ts +61 -0
  817. package/uview-ultra/types/comps/upload.d.ts +163 -0
  818. package/uview-ultra/types/comps.d.ts +101 -0
  819. package/uview-ultra/types/index.d.ts +172 -0
  820. package/uview-ultra/types/index.uts +7 -0
  821. package/uview-ultra/types/package.json +26 -0
@@ -0,0 +1,1333 @@
1
+ /**
2
+ * @fileoverview html 解析器
3
+ */
4
+
5
+ // 配置
6
+ const config = {
7
+ // 信任的标签(保持标签名不变)
8
+ trustTags: makeMap('a,abbr,ad,audio,b,blockquote,br,code,col,colgroup,dd,del,dl,dt,div,em,fieldset,h1,h2,h3,h4,h5,h6,hr,i,img,ins,label,legend,li,ol,p,q,ruby,rt,source,span,strong,sub,sup,table,tbody,td,tfoot,th,thead,tr,title,ul,video'),
9
+
10
+ // 块级标签(转为 div,其他的非信任标签转为 span)
11
+ blockTags: makeMap('address,article,aside,body,caption,center,cite,footer,header,html,nav,pre,section'),
12
+
13
+ // #ifdef (MP-WEIXIN || MP-QQ || APP-PLUS || MP-360) && VUE3
14
+ // 行内标签
15
+ inlineTags: makeMap('abbr,b,big,code,del,em,i,ins,label,q,small,span,strong,sub,sup'),
16
+ // #endif
17
+
18
+ // 要移除的标签
19
+ ignoreTags: makeMap('area,base,canvas,embed,frame,head,iframe,input,link,map,meta,param,rp,script,source,style,textarea,title,track,wbr'),
20
+
21
+ // 自闭合的标签
22
+ voidTags: makeMap('area,base,br,col,circle,ellipse,embed,frame,hr,img,input,line,link,meta,param,path,polygon,rect,source,track,use,wbr'),
23
+
24
+ // html 实体
25
+ entities: {
26
+ lt: '<',
27
+ gt: '>',
28
+ quot: '"',
29
+ apos: "'",
30
+ ensp: '\u2002',
31
+ emsp: '\u2003',
32
+ nbsp: '\xA0',
33
+ semi: ';',
34
+ ndash: '–',
35
+ mdash: '—',
36
+ middot: '·',
37
+ lsquo: '‘',
38
+ rsquo: '’',
39
+ ldquo: '“',
40
+ rdquo: '”',
41
+ bull: '•',
42
+ hellip: '…',
43
+ larr: '←',
44
+ uarr: '↑',
45
+ rarr: '→',
46
+ darr: '↓'
47
+ },
48
+
49
+ // 默认的标签样式
50
+ tagStyle: {
51
+ // #ifndef APP-PLUS-NVUE
52
+ address: 'font-style:italic',
53
+ big: 'display:inline;font-size:1.2em',
54
+ caption: 'display:table-caption;text-align:center',
55
+ center: 'text-align:center',
56
+ cite: 'font-style:italic',
57
+ dd: 'margin-left:40px',
58
+ mark: 'background-color:yellow',
59
+ pre: 'font-family:monospace;white-space:pre',
60
+ s: 'text-decoration:line-through',
61
+ small: 'display:inline;font-size:0.8em',
62
+ strike: 'text-decoration:line-through',
63
+ u: 'text-decoration:underline'
64
+ // #endif
65
+ },
66
+
67
+ // svg 大小写对照表
68
+ svgDict: {
69
+ animatetransform: 'animateTransform',
70
+ lineargradient: 'linearGradient',
71
+ viewbox: 'viewBox',
72
+ attributename: 'attributeName',
73
+ repeatcount: 'repeatCount',
74
+ repeatdur: 'repeatDur'
75
+ }
76
+ }
77
+ const tagSelector={}
78
+ const {
79
+ windowWidth,
80
+ // #ifdef MP-WEIXIN
81
+ system
82
+ // #endif
83
+ } = uni.getSystemInfoSync()
84
+ const blankChar = makeMap(' ,\r,\n,\t,\f')
85
+ let idIndex = 0
86
+
87
+ // #ifdef H5 || APP-PLUS
88
+ config.ignoreTags.iframe = undefined
89
+ config.trustTags.iframe = true
90
+ config.ignoreTags.embed = undefined
91
+ config.trustTags.embed = true
92
+ // #endif
93
+ // #ifdef APP-PLUS-NVUE
94
+ config.ignoreTags.source = undefined
95
+ config.ignoreTags.style = undefined
96
+ // #endif
97
+
98
+ /**
99
+ * @description 创建 map
100
+ * @param {String} str 逗号分隔
101
+ */
102
+ function makeMap (str) {
103
+ const map = Object.create(null)
104
+ const list = str.split(',')
105
+ for (let i = list.length; i--;) {
106
+ map[list[i]] = true
107
+ }
108
+ return map
109
+ }
110
+
111
+ /**
112
+ * @description 解码 html 实体
113
+ * @param {String} str 要解码的字符串
114
+ * @param {Boolean} amp 要不要解码 &amp;
115
+ * @returns {String} 解码后的字符串
116
+ */
117
+ function decodeEntity (str, amp) {
118
+ let i = str.indexOf('&')
119
+ while (i !== -1) {
120
+ const j = str.indexOf(';', i + 3)
121
+ let code
122
+ if (j === -1) break
123
+ if (str[i + 1] === '#') {
124
+ // &#123; 形式的实体
125
+ code = parseInt((str[i + 2] === 'x' ? '0' : '') + str.substring(i + 2, j))
126
+ if (!isNaN(code)) {
127
+ str = str.substr(0, i) + String.fromCharCode(code) + str.substr(j + 1)
128
+ }
129
+ } else {
130
+ // &nbsp; 形式的实体
131
+ code = str.substring(i + 1, j)
132
+ if (config.entities[code] || (code === 'amp' && amp)) {
133
+ str = str.substr(0, i) + (config.entities[code] || '&') + str.substr(j + 1)
134
+ }
135
+ }
136
+ i = str.indexOf('&', i + 1)
137
+ }
138
+ return str
139
+ }
140
+
141
+ /**
142
+ * @description 合并多个块级标签,加快长内容渲染
143
+ * @param {Array} nodes 要合并的标签数组
144
+ */
145
+ function mergeNodes (nodes) {
146
+ let i = nodes.length - 1
147
+ for (let j = i; j >= -1; j--) {
148
+ if (j === -1 || nodes[j].c || !nodes[j].name || (nodes[j].name !== 'div' && nodes[j].name !== 'p' && nodes[j].name[0] !== 'h') || (nodes[j].attrs.style || '').includes('inline')) {
149
+ if (i - j >= 5) {
150
+ nodes.splice(j + 1, i - j, {
151
+ name: 'div',
152
+ attrs: {},
153
+ children: nodes.slice(j + 1, i + 1)
154
+ })
155
+ }
156
+ i = j - 1
157
+ }
158
+ }
159
+ }
160
+
161
+ /**
162
+ * @description html 解析器
163
+ * @param {Object} vm 组件实例
164
+ */
165
+ function Parser (vm) {
166
+ this.options = vm || {}
167
+ this.tagStyle = Object.assign({}, config.tagStyle, this.options.tagStyle)
168
+ this.imgList = vm.imgList || []
169
+ this.imgList._unloadimgs = 0
170
+ this.plugins = vm.plugins || []
171
+ this.attrs = Object.create(null)
172
+ this.stack = []
173
+ this.nodes = []
174
+ this.pre = (this.options.containerStyle || '').includes('white-space') && this.options.containerStyle.includes('pre') ? 2 : 0
175
+ }
176
+
177
+ /**
178
+ * @description 执行解析
179
+ * @param {String} content 要解析的文本
180
+ */
181
+ Parser.prototype.parse = function (content) {
182
+ // 插件处理
183
+ for (let i = this.plugins.length; i--;) {
184
+ if (this.plugins[i].onUpdate) {
185
+ content = this.plugins[i].onUpdate(content, config) || content
186
+ }
187
+ }
188
+
189
+ new Lexer(this).parse(content)
190
+ // 出栈未闭合的标签
191
+ while (this.stack.length) {
192
+ this.popNode()
193
+ }
194
+ if (this.nodes.length > 50) {
195
+ mergeNodes(this.nodes)
196
+ }
197
+ return this.nodes
198
+ }
199
+
200
+ /**
201
+ * @description 将标签暴露出来(不被 rich-text 包含)
202
+ */
203
+ Parser.prototype.expose = function () {
204
+ // #ifndef APP-PLUS-NVUE
205
+ for (let i = this.stack.length; i--;) {
206
+ const item = this.stack[i]
207
+ if (item.c || item.name === 'a' || item.name === 'video' || item.name === 'audio') return
208
+ item.c = 1
209
+ }
210
+ // #endif
211
+ }
212
+
213
+ /**
214
+ * @description 处理插件
215
+ * @param {Object} node 要处理的标签
216
+ * @returns {Boolean} 是否要移除此标签
217
+ */
218
+ Parser.prototype.hook = function (node) {
219
+ for (let i = this.plugins.length; i--;) {
220
+ if (this.plugins[i].onParse && this.plugins[i].onParse(node, this) === false) {
221
+ return false
222
+ }
223
+ }
224
+ return true
225
+ }
226
+
227
+ /**
228
+ * @description 将链接拼接上主域名
229
+ * @param {String} url 需要拼接的链接
230
+ * @returns {String} 拼接后的链接
231
+ */
232
+ Parser.prototype.getUrl = function (url) {
233
+ const domain = this.options.domain
234
+ if (url[0] === '/') {
235
+ if (url[1] === '/') {
236
+ // // 开头的补充协议名
237
+ url = (domain ? domain.split('://')[0] : 'http') + ':' + url
238
+ } else if (domain) {
239
+ // 否则补充整个域名
240
+ url = domain + url
241
+ } /* #ifdef APP-PLUS */ else {
242
+ url = plus.io.convertLocalFileSystemURL(url)
243
+ } /* #endif */
244
+ } else if (!url.includes('data:') && !url.includes('://')) {
245
+ if (domain) {
246
+ url = domain + '/' + url
247
+ } /* #ifdef APP-PLUS */ else {
248
+ url = plus.io.convertLocalFileSystemURL(url)
249
+ } /* #endif */
250
+ }
251
+ return url
252
+ }
253
+
254
+ /**
255
+ * @description 解析样式表
256
+ * @param {Object} node 标签
257
+ * @returns {Object}
258
+ */
259
+ Parser.prototype.parseStyle = function (node) {
260
+ const attrs = node.attrs
261
+ const list = (this.tagStyle[node.name] || '').split(';').concat((attrs.style || '').split(';'))
262
+ const styleObj = {}
263
+ let tmp = ''
264
+
265
+ if (attrs.id && !this.xml) {
266
+ // 暴露锚点
267
+ if (this.options.useAnchor) {
268
+ this.expose()
269
+ } else if (node.name !== 'img' && node.name !== 'a' && node.name !== 'video' && node.name !== 'audio') {
270
+ attrs.id = undefined
271
+ }
272
+ }
273
+
274
+ // 转换 width 和 height 属性
275
+ if (attrs.width) {
276
+ styleObj.width = parseFloat(attrs.width) + (attrs.width.includes('%') ? '%' : 'px')
277
+ attrs.width = undefined
278
+ }
279
+ if (attrs.height) {
280
+ styleObj.height = parseFloat(attrs.height) + (attrs.height.includes('%') ? '%' : 'px')
281
+ attrs.height = undefined
282
+ }
283
+
284
+ for (let i = 0, len = list.length; i < len; i++) {
285
+ const info = list[i].split(':')
286
+ if (info.length < 2) continue
287
+ const key = info.shift().trim().toLowerCase()
288
+ let value = info.join(':').trim()
289
+ if ((value[0] === '-' && value.lastIndexOf('-') > 0) || value.includes('safe')) {
290
+ // 兼容性的 css 不压缩
291
+ tmp += `;${key}:${value}`
292
+ } else if (!styleObj[key] || value.includes('import') || !styleObj[key].includes('import')) {
293
+ // 重复的样式进行覆盖
294
+ if (value.includes('url')) {
295
+ // 填充链接
296
+ let j = value.indexOf('(') + 1
297
+ if (j) {
298
+ while (value[j] === '"' || value[j] === "'" || blankChar[value[j]]) {
299
+ j++
300
+ }
301
+ value = value.substr(0, j) + this.getUrl(value.substr(j))
302
+ }
303
+ } else if (value.includes('rpx')) {
304
+ // 转换 rpx(rich-text 内部不支持 rpx)
305
+ value = value.replace(/[0-9.]+\s*rpx/g, $ => parseFloat($) * windowWidth / 750 + 'px')
306
+ }
307
+ styleObj[key] = value
308
+ }
309
+ }
310
+
311
+ node.attrs.style = tmp
312
+ return styleObj
313
+ }
314
+
315
+ /**
316
+ * @description 解析到标签名
317
+ * @param {String} name 标签名
318
+ * @private
319
+ */
320
+ Parser.prototype.onTagName = function (name) {
321
+ this.tagName = this.xml ? name : name.toLowerCase()
322
+ if (this.tagName === 'svg') {
323
+ this.xml = (this.xml || 0) + 1 // svg 标签内大小写敏感
324
+ }
325
+ }
326
+
327
+ /**
328
+ * @description 解析到属性名
329
+ * @param {String} name 属性名
330
+ * @private
331
+ */
332
+ Parser.prototype.onAttrName = function (name) {
333
+ name = this.xml ? name : name.toLowerCase()
334
+ if (name.substr(0, 5) === 'data-') {
335
+ if (name === 'data-src' && !this.attrs.src) {
336
+ // data-src 自动转为 src
337
+ this.attrName = 'src'
338
+ } else if (this.tagName === 'img' || this.tagName === 'a') {
339
+ // a 和 img 标签保留 data- 的属性,可以在 imgTap 和 linkTap 事件中使用
340
+ this.attrName = name
341
+ } else {
342
+ // 剩余的移除以减小大小
343
+ this.attrName = undefined
344
+ }
345
+ } else {
346
+ this.attrName = name
347
+ this.attrs[name] = 'T' // boolean 型属性缺省设置
348
+ }
349
+ }
350
+
351
+ /**
352
+ * @description 解析到属性值
353
+ * @param {String} val 属性值
354
+ * @private
355
+ */
356
+ Parser.prototype.onAttrVal = function (val) {
357
+ const name = this.attrName || ''
358
+ if (name === 'style' || name === 'href') {
359
+ // 部分属性进行实体解码
360
+ this.attrs[name] = decodeEntity(val, true)
361
+ } else if (name.includes('src')) {
362
+ // 拼接主域名
363
+ this.attrs[name] = this.getUrl(decodeEntity(val, true))
364
+ } else if (name) {
365
+ this.attrs[name] = val
366
+ }
367
+ }
368
+
369
+ /**
370
+ * @description 解析到标签开始
371
+ * @param {Boolean} selfClose 是否有自闭合标识 />
372
+ * @private
373
+ */
374
+ Parser.prototype.onOpenTag = function (selfClose) {
375
+ // 拼装 node
376
+ const node = Object.create(null)
377
+ node.name = this.tagName
378
+ node.attrs = this.attrs
379
+ // 避免因为自动 diff 使得 type 被设置为 null 导致部分内容不显示
380
+ if (this.options.nodes.length) {
381
+ node.type = 'node'
382
+ }
383
+ this.attrs = Object.create(null)
384
+
385
+ const attrs = node.attrs
386
+ const parent = this.stack[this.stack.length - 1]
387
+ const siblings = parent ? parent.children : this.nodes
388
+ const close = this.xml ? selfClose : config.voidTags[node.name]
389
+
390
+ // 替换标签名选择器
391
+ if (tagSelector[node.name]) {
392
+ attrs.class = tagSelector[node.name] + (attrs.class ? ' ' + attrs.class : '')
393
+ }
394
+
395
+ // 转换 embed 标签
396
+ if (node.name === 'embed') {
397
+ // #ifndef H5 || APP-PLUS
398
+ const src = attrs.src || ''
399
+ // 按照后缀名和 type 将 embed 转为 video 或 audio
400
+ if (src.includes('.mp4') || src.includes('.3gp') || src.includes('.m3u8') || (attrs.type || '').includes('video')) {
401
+ node.name = 'video'
402
+ } else if (src.includes('.mp3') || src.includes('.wav') || src.includes('.aac') || src.includes('.m4a') || (attrs.type || '').includes('audio')) {
403
+ node.name = 'audio'
404
+ }
405
+ if (attrs.autostart) {
406
+ attrs.autoplay = 'T'
407
+ }
408
+ attrs.controls = 'T'
409
+ // #endif
410
+ // #ifdef H5 || APP-PLUS
411
+ this.expose()
412
+ // #endif
413
+ }
414
+
415
+ // #ifndef APP-PLUS-NVUE
416
+ // 处理音视频
417
+ if (node.name === 'video' || node.name === 'audio') {
418
+ // 设置 id 以便获取 context
419
+ if (node.name === 'video' && !attrs.id) {
420
+ attrs.id = 'v' + idIndex++
421
+ }
422
+ // 没有设置 controls 也没有设置 autoplay 的自动设置 controls
423
+ if (!attrs.controls && !attrs.autoplay) {
424
+ attrs.controls = 'T'
425
+ }
426
+ // 用数组存储所有可用的 source
427
+ node.src = []
428
+ if (attrs.src) {
429
+ node.src.push(attrs.src)
430
+ attrs.src = undefined
431
+ }
432
+ this.expose()
433
+ }
434
+ // #endif
435
+
436
+ // 处理自闭合标签
437
+ if (close) {
438
+ if (!this.hook(node) || config.ignoreTags[node.name]) {
439
+ // 通过 base 标签设置主域名
440
+ if (node.name === 'base' && !this.options.domain) {
441
+ this.options.domain = attrs.href
442
+ } /* #ifndef APP-PLUS-NVUE */ else if (node.name === 'source' && parent && (parent.name === 'video' || parent.name === 'audio') && attrs.src) {
443
+ // 设置 source 标签(仅父节点为 video 或 audio 时有效)
444
+ parent.src.push(attrs.src)
445
+ } /* #endif */
446
+ return
447
+ }
448
+
449
+ // 解析 style
450
+ const styleObj = this.parseStyle(node)
451
+
452
+ // 处理图片
453
+ if (node.name === 'img') {
454
+ if (attrs.src) {
455
+ // 标记 webp
456
+ if (attrs.src.includes('webp')) {
457
+ node.webp = 'T'
458
+ }
459
+ // data url 图片如果没有设置 original-src 默认为不可预览的小图片
460
+ if (attrs.src.includes('data:') && !attrs['original-src']) {
461
+ attrs.ignore = 'T'
462
+ }
463
+ if (!attrs.ignore || node.webp || attrs.src.includes('cloud://')) {
464
+ for (let i = this.stack.length; i--;) {
465
+ const item = this.stack[i]
466
+ if (item.name === 'a') {
467
+ node.a = item.attrs
468
+ }
469
+ if (item.name === 'table' && !node.webp && !attrs.src.includes('cloud://')) {
470
+ if (!styleObj.display || styleObj.display.includes('inline')) {
471
+ node.t = 'inline-block'
472
+ } else {
473
+ node.t = styleObj.display
474
+ }
475
+ styleObj.display = undefined
476
+ }
477
+ // #ifndef H5 || APP-PLUS
478
+ const style = item.attrs.style || ''
479
+ if (style.includes('flex:') && !style.includes('flex:0') && !style.includes('flex: 0') && (!styleObj.width || parseInt(styleObj.width) > 100)) {
480
+ styleObj.width = '100% !important'
481
+ styleObj.height = ''
482
+ for (let j = i + 1; j < this.stack.length; j++) {
483
+ this.stack[j].attrs.style = (this.stack[j].attrs.style || '').replace('inline-', '')
484
+ }
485
+ } else if (style.includes('flex') && styleObj.width === '100%') {
486
+ for (let j = i + 1; j < this.stack.length; j++) {
487
+ const style = this.stack[j].attrs.style || ''
488
+ if (!style.includes(';width') && !style.includes(' width') && style.indexOf('width') !== 0) {
489
+ styleObj.width = ''
490
+ break
491
+ }
492
+ }
493
+ } else if (style.includes('inline-block')) {
494
+ if (styleObj.width && styleObj.width[styleObj.width.length - 1] === '%') {
495
+ item.attrs.style += ';max-width:' + styleObj.width
496
+ styleObj.width = ''
497
+ } else {
498
+ item.attrs.style += ';max-width:100%'
499
+ }
500
+ }
501
+ // #endif
502
+ item.c = 1
503
+ }
504
+ attrs.i = this.imgList.length.toString()
505
+ let src = attrs['original-src'] || attrs.src
506
+ // #ifndef H5 || MP-ALIPAY || APP-PLUS || MP-360
507
+ if (this.imgList.includes(src)) {
508
+ // 如果有重复的链接则对域名进行随机大小写变换避免预览时错位
509
+ let i = src.indexOf('://')
510
+ if (i !== -1) {
511
+ i += 3
512
+ let newSrc = src.substr(0, i)
513
+ for (; i < src.length; i++) {
514
+ if (src[i] === '/') break
515
+ newSrc += Math.random() > 0.5 ? src[i].toUpperCase() : src[i]
516
+ }
517
+ newSrc += src.substr(i)
518
+ src = newSrc
519
+ }
520
+ }
521
+ // #endif
522
+ this.imgList.push(src)
523
+ if (!node.t) {
524
+ this.imgList._unloadimgs += 1
525
+ }
526
+ // #ifdef H5 || APP-PLUS
527
+ if (this.options.lazyLoad) {
528
+ attrs['data-src'] = attrs.src
529
+ attrs.src = undefined
530
+ }
531
+ // #endif
532
+ }
533
+ }
534
+ if (styleObj.display === 'inline') {
535
+ styleObj.display = ''
536
+ }
537
+ // #ifndef APP-PLUS-NVUE
538
+ if (attrs.ignore) {
539
+ styleObj['max-width'] = styleObj['max-width'] || '100%'
540
+ attrs.style += ';-webkit-touch-callout:none'
541
+ }
542
+ // #endif
543
+ // 设置的宽度超出屏幕,为避免变形,高度转为自动
544
+ if (parseInt(styleObj.width) > windowWidth) {
545
+ styleObj.height = undefined
546
+ }
547
+ // 记录是否设置了宽高
548
+ if (!isNaN(parseInt(styleObj.width))) {
549
+ node.w = 'T'
550
+ }
551
+ if (!isNaN(parseInt(styleObj.height)) && (!styleObj.height.includes('%') || (parent && (parent.attrs.style || '').includes('height')))) {
552
+ node.h = 'T'
553
+ }
554
+ } else if (node.name === 'svg') {
555
+ siblings.push(node)
556
+ this.stack.push(node)
557
+ this.popNode()
558
+ return
559
+ }
560
+ for (const key in styleObj) {
561
+ if (styleObj[key]) {
562
+ attrs.style += `;${key}:${styleObj[key].replace(' !important', '')}`
563
+ }
564
+ }
565
+ attrs.style = attrs.style.substr(1) || undefined
566
+ // #ifdef (MP-WEIXIN || MP-QQ) && VUE3
567
+ if (!attrs.style) {
568
+ delete attrs.style
569
+ }
570
+ // #endif
571
+ } else {
572
+ if ((node.name === 'pre' || ((attrs.style || '').includes('white-space') && attrs.style.includes('pre'))) && this.pre !== 2) {
573
+ this.pre = node.pre = 1
574
+ }
575
+ node.children = []
576
+ this.stack.push(node)
577
+ }
578
+
579
+ // 加入节点树
580
+ siblings.push(node)
581
+ }
582
+
583
+ /**
584
+ * @description 解析到标签结束
585
+ * @param {String} name 标签名
586
+ * @private
587
+ */
588
+ Parser.prototype.onCloseTag = function (name) {
589
+ // 依次出栈到匹配为止
590
+ name = this.xml ? name : name.toLowerCase()
591
+ let i
592
+ for (i = this.stack.length; i--;) {
593
+ if (this.stack[i].name === name) break
594
+ }
595
+ if (i !== -1) {
596
+ while (this.stack.length > i) {
597
+ this.popNode()
598
+ }
599
+ } else if (name === 'p' || name === 'br') {
600
+ const siblings = this.stack.length ? this.stack[this.stack.length - 1].children : this.nodes
601
+ siblings.push({
602
+ name,
603
+ attrs: {
604
+ class: tagSelector[name] || '',
605
+ style: this.tagStyle[name] || ''
606
+ }
607
+ })
608
+ }
609
+ }
610
+
611
+ /**
612
+ * @description 处理标签出栈
613
+ * @private
614
+ */
615
+ Parser.prototype.popNode = function () {
616
+ const node = this.stack.pop()
617
+ let attrs = node.attrs
618
+ const children = node.children
619
+ const parent = this.stack[this.stack.length - 1]
620
+ const siblings = parent ? parent.children : this.nodes
621
+
622
+ if (!this.hook(node) || config.ignoreTags[node.name]) {
623
+ // 获取标题
624
+ if (node.name === 'title' && children.length && children[0].type === 'text' && this.options.setTitle) {
625
+ uni.setNavigationBarTitle({
626
+ title: children[0].text
627
+ })
628
+ }
629
+ siblings.pop()
630
+ return
631
+ }
632
+
633
+ if (node.pre && this.pre !== 2) {
634
+ // 是否合并空白符标识
635
+ this.pre = node.pre = undefined
636
+ for (let i = this.stack.length; i--;) {
637
+ if (this.stack[i].pre) {
638
+ this.pre = 1
639
+ }
640
+ }
641
+ }
642
+
643
+ const styleObj = {}
644
+
645
+ // 转换 svg
646
+ if (node.name === 'svg') {
647
+ if (this.xml > 1) {
648
+ // 多层 svg 嵌套
649
+ this.xml--
650
+ return
651
+ }
652
+ // #ifdef APP-PLUS-NVUE
653
+ (function traversal (node) {
654
+ if (node.name) {
655
+ // 调整 svg 的大小写
656
+ node.name = config.svgDict[node.name] || node.name
657
+ for (const item in node.attrs) {
658
+ if (config.svgDict[item]) {
659
+ node.attrs[config.svgDict[item]] = node.attrs[item]
660
+ node.attrs[item] = undefined
661
+ }
662
+ }
663
+ for (let i = 0; i < (node.children || []).length; i++) {
664
+ traversal(node.children[i])
665
+ }
666
+ }
667
+ })(node)
668
+ // #endif
669
+ // #ifndef APP-PLUS-NVUE
670
+ let src = ''
671
+ const style = attrs.style
672
+ attrs.style = ''
673
+ attrs.xmlns = 'http://www.w3.org/2000/svg';
674
+ (function traversal (node) {
675
+ if (node.type === 'text') {
676
+ src += node.text
677
+ return
678
+ }
679
+ const name = config.svgDict[node.name] || node.name
680
+ src += '<' + name
681
+ for (const item in node.attrs) {
682
+ const val = node.attrs[item]
683
+ if (val) {
684
+ src += ` ${config.svgDict[item] || item}="${val}"`
685
+ }
686
+ }
687
+ if (!node.children) {
688
+ src += '/>'
689
+ } else {
690
+ src += '>'
691
+ for (let i = 0; i < node.children.length; i++) {
692
+ traversal(node.children[i])
693
+ }
694
+ src += '</' + name + '>'
695
+ }
696
+ })(node)
697
+ node.name = 'img'
698
+ node.attrs = {
699
+ src: 'data:image/svg+xml;utf8,' + src.replace(/#/g, '%23'),
700
+ style,
701
+ ignore: 'T'
702
+ }
703
+ node.children = undefined
704
+ // #endif
705
+ this.xml = false
706
+ return
707
+ }
708
+
709
+ // #ifndef APP-PLUS-NVUE
710
+ // 转换 align 属性
711
+ if (attrs.align) {
712
+ if (node.name === 'table') {
713
+ if (attrs.align === 'center') {
714
+ styleObj['margin-inline-start'] = styleObj['margin-inline-end'] = 'auto'
715
+ } else {
716
+ styleObj.float = attrs.align
717
+ }
718
+ } else {
719
+ styleObj['text-align'] = attrs.align
720
+ }
721
+ attrs.align = undefined
722
+ }
723
+
724
+ // 转换 dir 属性
725
+ if (attrs.dir) {
726
+ styleObj.direction = attrs.dir
727
+ attrs.dir = undefined
728
+ }
729
+
730
+ // 转换 font 标签的属性
731
+ if (node.name === 'font') {
732
+ if (attrs.color) {
733
+ styleObj.color = attrs.color
734
+ attrs.color = undefined
735
+ }
736
+ if (attrs.face) {
737
+ styleObj['font-family'] = attrs.face
738
+ attrs.face = undefined
739
+ }
740
+ if (attrs.size) {
741
+ let size = parseInt(attrs.size)
742
+ if (!isNaN(size)) {
743
+ if (size < 1) {
744
+ size = 1
745
+ } else if (size > 7) {
746
+ size = 7
747
+ }
748
+ styleObj['font-size'] = ['x-small', 'small', 'medium', 'large', 'x-large', 'xx-large', 'xxx-large'][size - 1]
749
+ }
750
+ attrs.size = undefined
751
+ }
752
+ }
753
+ // #endif
754
+
755
+ // 一些编辑器的自带 class
756
+ if ((attrs.class || '').includes('align-center')) {
757
+ styleObj['text-align'] = 'center'
758
+ }
759
+
760
+ Object.assign(styleObj, this.parseStyle(node))
761
+
762
+ if (node.name !== 'table' && parseInt(styleObj.width) > windowWidth) {
763
+ styleObj['max-width'] = '100%'
764
+ styleObj['box-sizing'] = 'border-box'
765
+ }
766
+
767
+ // #ifndef APP-PLUS-NVUE
768
+ if (config.blockTags[node.name]) {
769
+ node.name = 'div'
770
+ } else if (!config.trustTags[node.name] && !this.xml) {
771
+ // 未知标签转为 span,避免无法显示
772
+ node.name = 'span'
773
+ }
774
+
775
+ if (node.name === 'a' || node.name === 'ad'
776
+ // #ifdef H5 || APP-PLUS
777
+ || node.name === 'iframe' // eslint-disable-line
778
+ // #endif
779
+ ) {
780
+ this.expose()
781
+ } else if (node.name === 'video') {
782
+ if ((styleObj.height || '').includes('auto')) {
783
+ styleObj.height = undefined
784
+ }
785
+ /* #ifdef APP-PLUS */
786
+ let str = '<video style="width:100%;height:100%"'
787
+ for (const item in attrs) {
788
+ if (attrs[item]) {
789
+ str += ' ' + item + '="' + attrs[item] + '"'
790
+ }
791
+ }
792
+ if (this.options.pauseVideo) {
793
+ str += ' onplay="this.dispatchEvent(new CustomEvent(\'vplay\',{bubbles:!0}));for(var e=document.getElementsByTagName(\'video\'),t=0;t<e.length;t++)e[t]!=this&&e[t].pause()"'
794
+ }
795
+ str += '>'
796
+ for (let i = 0; i < node.src.length; i++) {
797
+ str += '<source src="' + node.src[i] + '">'
798
+ }
799
+ str += '</video>'
800
+ node.html = str
801
+ /* #endif */
802
+ } else if ((node.name === 'ul' || node.name === 'ol') && node.c) {
803
+ // 列表处理
804
+ const types = {
805
+ a: 'lower-alpha',
806
+ A: 'upper-alpha',
807
+ i: 'lower-roman',
808
+ I: 'upper-roman'
809
+ }
810
+ if (types[attrs.type]) {
811
+ attrs.style += ';list-style-type:' + types[attrs.type]
812
+ attrs.type = undefined
813
+ }
814
+ for (let i = children.length; i--;) {
815
+ if (children[i].name === 'li') {
816
+ children[i].c = 1
817
+ }
818
+ }
819
+ } else if (node.name === 'table') {
820
+ // 表格处理
821
+ // cellpadding、cellspacing、border 这几个常用表格属性需要通过转换实现
822
+ let padding = parseFloat(attrs.cellpadding)
823
+ let spacing = parseFloat(attrs.cellspacing)
824
+ const border = parseFloat(attrs.border)
825
+ const bordercolor = styleObj['border-color']
826
+ const borderstyle = styleObj['border-style']
827
+ if (node.c) {
828
+ // padding 和 spacing 默认 2
829
+ if (isNaN(padding)) {
830
+ padding = 2
831
+ }
832
+ if (isNaN(spacing)) {
833
+ spacing = 2
834
+ }
835
+ }
836
+ if (border) {
837
+ attrs.style += `;border:${border}px ${borderstyle || 'solid'} ${bordercolor || 'gray'}`
838
+ }
839
+ if (node.flag && node.c) {
840
+ // 有 colspan 或 rowspan 且含有链接的表格通过 grid 布局实现
841
+ styleObj.display = 'grid'
842
+ if (spacing) {
843
+ styleObj['grid-gap'] = spacing + 'px'
844
+ styleObj.padding = spacing + 'px'
845
+ } else if (border) {
846
+ // 无间隔的情况下避免边框重叠
847
+ attrs.style += ';border-left:0;border-top:0'
848
+ }
849
+
850
+ const width = [] // 表格的列宽
851
+ const trList = [] // tr 列表
852
+ const cells = [] // 保存新的单元格
853
+ const map = {}; // 被合并单元格占用的格子
854
+
855
+ (function traversal (nodes) {
856
+ for (let i = 0; i < nodes.length; i++) {
857
+ if (nodes[i].name === 'tr') {
858
+ trList.push(nodes[i])
859
+ } else {
860
+ traversal(nodes[i].children || [])
861
+ }
862
+ }
863
+ })(children)
864
+
865
+ for (let row = 1; row <= trList.length; row++) {
866
+ let col = 1
867
+ for (let j = 0; j < trList[row - 1].children.length; j++) {
868
+ const td = trList[row - 1].children[j]
869
+ if (td.name === 'td' || td.name === 'th') {
870
+ // 这个格子被上面的单元格占用,则列号++
871
+ while (map[row + '.' + col]) {
872
+ col++
873
+ }
874
+ let style = td.attrs.style || ''
875
+ let start = style.indexOf('width') ? style.indexOf(';width') : 0
876
+ // 提取出 td 的宽度
877
+ if (start !== -1) {
878
+ let end = style.indexOf(';', start + 6)
879
+ if (end === -1) {
880
+ end = style.length
881
+ }
882
+ if (!td.attrs.colspan) {
883
+ width[col] = style.substring(start ? start + 7 : 6, end)
884
+ }
885
+ style = style.substr(0, start) + style.substr(end)
886
+ }
887
+ // 设置竖直对齐
888
+ style += ';display:flex'
889
+ start = style.indexOf('vertical-align')
890
+ if (start !== -1) {
891
+ const val = style.substr(start + 15, 10)
892
+ if (val.includes('middle')) {
893
+ style += ';align-items:center'
894
+ } else if (val.includes('bottom')) {
895
+ style += ';align-items:flex-end'
896
+ }
897
+ } else {
898
+ style += ';align-items:center'
899
+ }
900
+ // 设置水平对齐
901
+ start = style.indexOf('text-align')
902
+ if (start !== -1) {
903
+ const val = style.substr(start + 11, 10)
904
+ if (val.includes('center')) {
905
+ style += ';justify-content: center'
906
+ } else if (val.includes('right')) {
907
+ style += ';justify-content: right'
908
+ }
909
+ }
910
+ style = (border ? `;border:${border}px ${borderstyle || 'solid'} ${bordercolor || 'gray'}` + (spacing ? '' : ';border-right:0;border-bottom:0') : '') + (padding ? `;padding:${padding}px` : '') + ';' + style
911
+ // 处理列合并
912
+ if (td.attrs.colspan) {
913
+ style += `;grid-column-start:${col};grid-column-end:${col + parseInt(td.attrs.colspan)}`
914
+ if (!td.attrs.rowspan) {
915
+ style += `;grid-row-start:${row};grid-row-end:${row + 1}`
916
+ }
917
+ col += parseInt(td.attrs.colspan) - 1
918
+ }
919
+ // 处理行合并
920
+ if (td.attrs.rowspan) {
921
+ style += `;grid-row-start:${row};grid-row-end:${row + parseInt(td.attrs.rowspan)}`
922
+ if (!td.attrs.colspan) {
923
+ style += `;grid-column-start:${col};grid-column-end:${col + 1}`
924
+ }
925
+ // 记录下方单元格被占用
926
+ for (let rowspan = 1; rowspan < td.attrs.rowspan; rowspan++) {
927
+ for (let colspan = 0; colspan < (td.attrs.colspan || 1); colspan++) {
928
+ map[(row + rowspan) + '.' + (col - colspan)] = 1
929
+ }
930
+ }
931
+ }
932
+ if (style) {
933
+ td.attrs.style = style
934
+ }
935
+ cells.push(td)
936
+ col++
937
+ }
938
+ }
939
+ if (row === 1) {
940
+ let temp = ''
941
+ for (let i = 1; i < col; i++) {
942
+ temp += (width[i] ? width[i] : 'auto') + ' '
943
+ }
944
+ styleObj['grid-template-columns'] = temp
945
+ }
946
+ }
947
+ node.children = cells
948
+ } else {
949
+ // 没有使用合并单元格的表格通过 table 布局实现
950
+ if (node.c) {
951
+ styleObj.display = 'table'
952
+ }
953
+ if (!isNaN(spacing)) {
954
+ styleObj['border-spacing'] = spacing + 'px'
955
+ }
956
+ if (border || padding) {
957
+ // 遍历
958
+ (function traversal (nodes) {
959
+ for (let i = 0; i < nodes.length; i++) {
960
+ const td = nodes[i]
961
+ if (td.name === 'th' || td.name === 'td') {
962
+ if (border) {
963
+ td.attrs.style = `border:${border}px ${borderstyle || 'solid'} ${bordercolor || 'gray'};${td.attrs.style || ''}`
964
+ }
965
+ if (padding) {
966
+ td.attrs.style = `padding:${padding}px;${td.attrs.style || ''}`
967
+ }
968
+ } else if (td.children) {
969
+ traversal(td.children)
970
+ }
971
+ }
972
+ })(children)
973
+ }
974
+ }
975
+ // 给表格添加一个单独的横向滚动层
976
+ if (this.options.scrollTable && !(attrs.style || '').includes('inline')) {
977
+ const table = Object.assign({}, node)
978
+ node.name = 'div'
979
+ node.attrs = {
980
+ style: 'overflow:auto'
981
+ }
982
+ node.children = [table]
983
+ attrs = table.attrs
984
+ }
985
+ } else if ((node.name === 'td' || node.name === 'th') && (attrs.colspan || attrs.rowspan)) {
986
+ for (let i = this.stack.length; i--;) {
987
+ if (this.stack[i].name === 'table') {
988
+ this.stack[i].flag = 1 // 指示含有合并单元格
989
+ break
990
+ }
991
+ }
992
+ } else if (node.name === 'ruby') {
993
+ // 转换 ruby
994
+ node.name = 'span'
995
+ for (let i = 0; i < children.length - 1; i++) {
996
+ if (children[i].type === 'text' && children[i + 1].name === 'rt') {
997
+ children[i] = {
998
+ name: 'div',
999
+ attrs: {
1000
+ style: 'display:inline-block;text-align:center'
1001
+ },
1002
+ children: [{
1003
+ name: 'div',
1004
+ attrs: {
1005
+ style: 'font-size:50%;' + (children[i + 1].attrs.style || '')
1006
+ },
1007
+ children: children[i + 1].children
1008
+ }, children[i]]
1009
+ }
1010
+ children.splice(i + 1, 1)
1011
+ }
1012
+ }
1013
+ } else if (node.c) {
1014
+ (function traversal (node) {
1015
+ node.c = 2
1016
+ for (let i = node.children.length; i--;) {
1017
+ const child = node.children[i]
1018
+ // #ifdef (MP-WEIXIN || MP-QQ || APP-PLUS || MP-360) && VUE3
1019
+ if (child.name && (config.inlineTags[child.name] || ((child.attrs.style || '').includes('inline') && child.children)) && !child.c) {
1020
+ traversal(child)
1021
+ }
1022
+ // #endif
1023
+ if (!child.c || child.name === 'table') {
1024
+ node.c = 1
1025
+ }
1026
+ }
1027
+ })(node)
1028
+ }
1029
+
1030
+ if ((styleObj.display || '').includes('flex') && !node.c) {
1031
+ for (let i = children.length; i--;) {
1032
+ const item = children[i]
1033
+ if (item.f) {
1034
+ item.attrs.style = (item.attrs.style || '') + item.f
1035
+ item.f = undefined
1036
+ }
1037
+ }
1038
+ }
1039
+ // flex 布局时部分样式需要提取到 rich-text 外层
1040
+ const flex = parent && ((parent.attrs.style || '').includes('flex') || (parent.attrs.style || '').includes('grid'))
1041
+ // #ifdef MP-WEIXIN
1042
+ // 检查基础库版本 virtualHost 是否可用
1043
+ && !(node.c && wx.getNFCAdapter) // eslint-disable-line
1044
+ // #endif
1045
+ // #ifndef MP-WEIXIN || MP-QQ || MP-BAIDU || MP-TOUTIAO
1046
+ && !node.c // eslint-disable-line
1047
+ // #endif
1048
+ if (flex) {
1049
+ node.f = ';max-width:100%'
1050
+ }
1051
+
1052
+ if (children.length >= 50 && node.c && !(styleObj.display || '').includes('flex')) {
1053
+ mergeNodes(children)
1054
+ }
1055
+ // #endif
1056
+
1057
+ for (const key in styleObj) {
1058
+ if (styleObj[key]) {
1059
+ const val = `;${key}:${styleObj[key].replace(' !important', '')}`
1060
+ /* #ifndef APP-PLUS-NVUE */
1061
+ if (flex && ((key.includes('flex') && key !== 'flex-direction') || key === 'align-self' || key.includes('grid') || styleObj[key][0] === '-' || (key.includes('width') && val.includes('%')))) {
1062
+ node.f += val
1063
+ if (key === 'width') {
1064
+ attrs.style += ';width:100%'
1065
+ }
1066
+ } else /* #endif */ {
1067
+ attrs.style += val
1068
+ }
1069
+ }
1070
+ }
1071
+ attrs.style = attrs.style.substr(1) || undefined
1072
+ // #ifdef (MP-WEIXIN || MP-QQ) && VUE3
1073
+ for (const key in attrs) {
1074
+ if (!attrs[key]) {
1075
+ delete attrs[key]
1076
+ }
1077
+ }
1078
+ // #endif
1079
+ }
1080
+
1081
+ /**
1082
+ * @description 解析到文本
1083
+ * @param {String} text 文本内容
1084
+ */
1085
+ Parser.prototype.onText = function (text) {
1086
+ if (!this.pre) {
1087
+ // 合并空白符
1088
+ let trim = ''
1089
+ let flag
1090
+ for (let i = 0, len = text.length; i < len; i++) {
1091
+ if (!blankChar[text[i]]) {
1092
+ trim += text[i]
1093
+ } else {
1094
+ if (trim[trim.length - 1] !== ' ') {
1095
+ trim += ' '
1096
+ }
1097
+ if (text[i] === '\n' && !flag) {
1098
+ flag = true
1099
+ }
1100
+ }
1101
+ }
1102
+ // 去除含有换行符的空串
1103
+ if (trim === ' ') {
1104
+ if (flag) return
1105
+ // #ifdef VUE3
1106
+ else {
1107
+ const parent = this.stack[this.stack.length - 1]
1108
+ if (parent && parent.name[0] === 't') return
1109
+ }
1110
+ // #endif
1111
+ }
1112
+ text = trim
1113
+ }
1114
+ const node = Object.create(null)
1115
+ node.type = 'text'
1116
+ // #ifdef (MP-BAIDU || MP-ALIPAY || MP-TOUTIAO) && VUE3
1117
+ node.attrs = {}
1118
+ // #endif
1119
+ node.text = decodeEntity(text)
1120
+ if (this.hook(node)) {
1121
+ // #ifdef MP-WEIXIN
1122
+ if (this.options.selectable === 'force' && system.includes('iOS') && !uni.canIUse('rich-text.user-select')) {
1123
+ this.expose()
1124
+ }
1125
+ // #endif
1126
+ const siblings = this.stack.length ? this.stack[this.stack.length - 1].children : this.nodes
1127
+ siblings.push(node)
1128
+ }
1129
+ }
1130
+
1131
+ /**
1132
+ * @description html 词法分析器
1133
+ * @param {Object} handler 高层处理器
1134
+ */
1135
+ function Lexer (handler) {
1136
+ this.handler = handler
1137
+ }
1138
+
1139
+ /**
1140
+ * @description 执行解析
1141
+ * @param {String} content 要解析的文本
1142
+ */
1143
+ Lexer.prototype.parse = function (content) {
1144
+ this.content = content || ''
1145
+ this.i = 0 // 标记解析位置
1146
+ this.start = 0 // 标记一个单词的开始位置
1147
+ this.state = this.text // 当前状态
1148
+ for (let len = this.content.length; this.i !== -1 && this.i < len;) {
1149
+ this.state()
1150
+ }
1151
+ }
1152
+
1153
+ /**
1154
+ * @description 检查标签是否闭合
1155
+ * @param {String} method 如果闭合要进行的操作
1156
+ * @returns {Boolean} 是否闭合
1157
+ * @private
1158
+ */
1159
+ Lexer.prototype.checkClose = function (method) {
1160
+ const selfClose = this.content[this.i] === '/'
1161
+ if (this.content[this.i] === '>' || (selfClose && this.content[this.i + 1] === '>')) {
1162
+ if (method) {
1163
+ this.handler[method](this.content.substring(this.start, this.i))
1164
+ }
1165
+ this.i += selfClose ? 2 : 1
1166
+ this.start = this.i
1167
+ this.handler.onOpenTag(selfClose)
1168
+ if (this.handler.tagName === 'script') {
1169
+ this.i = this.content.indexOf('</', this.i)
1170
+ if (this.i !== -1) {
1171
+ this.i += 2
1172
+ this.start = this.i
1173
+ }
1174
+ this.state = this.endTag
1175
+ } else {
1176
+ this.state = this.text
1177
+ }
1178
+ return true
1179
+ }
1180
+ return false
1181
+ }
1182
+
1183
+ /**
1184
+ * @description 文本状态
1185
+ * @private
1186
+ */
1187
+ Lexer.prototype.text = function () {
1188
+ this.i = this.content.indexOf('<', this.i) // 查找最近的标签
1189
+ if (this.i === -1) {
1190
+ // 没有标签了
1191
+ if (this.start < this.content.length) {
1192
+ this.handler.onText(this.content.substring(this.start, this.content.length))
1193
+ }
1194
+ return
1195
+ }
1196
+ const c = this.content[this.i + 1]
1197
+ if ((c >= 'a' && c <= 'z') || (c >= 'A' && c <= 'Z')) {
1198
+ // 标签开头
1199
+ if (this.start !== this.i) {
1200
+ this.handler.onText(this.content.substring(this.start, this.i))
1201
+ }
1202
+ this.start = ++this.i
1203
+ this.state = this.tagName
1204
+ } else if (c === '/' || c === '!' || c === '?') {
1205
+ if (this.start !== this.i) {
1206
+ this.handler.onText(this.content.substring(this.start, this.i))
1207
+ }
1208
+ const next = this.content[this.i + 2]
1209
+ if (c === '/' && ((next >= 'a' && next <= 'z') || (next >= 'A' && next <= 'Z'))) {
1210
+ // 标签结尾
1211
+ this.i += 2
1212
+ this.start = this.i
1213
+ this.state = this.endTag
1214
+ return
1215
+ }
1216
+ // 处理注释
1217
+ let end = '-->'
1218
+ if (c !== '!' || this.content[this.i + 2] !== '-' || this.content[this.i + 3] !== '-') {
1219
+ end = '>'
1220
+ }
1221
+ this.i = this.content.indexOf(end, this.i)
1222
+ if (this.i !== -1) {
1223
+ this.i += end.length
1224
+ this.start = this.i
1225
+ }
1226
+ } else {
1227
+ this.i++
1228
+ }
1229
+ }
1230
+
1231
+ /**
1232
+ * @description 标签名状态
1233
+ * @private
1234
+ */
1235
+ Lexer.prototype.tagName = function () {
1236
+ if (blankChar[this.content[this.i]]) {
1237
+ // 解析到标签名
1238
+ this.handler.onTagName(this.content.substring(this.start, this.i))
1239
+ while (blankChar[this.content[++this.i]]);
1240
+ if (this.i < this.content.length && !this.checkClose()) {
1241
+ this.start = this.i
1242
+ this.state = this.attrName
1243
+ }
1244
+ } else if (!this.checkClose('onTagName')) {
1245
+ this.i++
1246
+ }
1247
+ }
1248
+
1249
+ /**
1250
+ * @description 属性名状态
1251
+ * @private
1252
+ */
1253
+ Lexer.prototype.attrName = function () {
1254
+ let c = this.content[this.i]
1255
+ if (blankChar[c] || c === '=') {
1256
+ // 解析到属性名
1257
+ this.handler.onAttrName(this.content.substring(this.start, this.i))
1258
+ let needVal = c === '='
1259
+ const len = this.content.length
1260
+ while (++this.i < len) {
1261
+ c = this.content[this.i]
1262
+ if (!blankChar[c]) {
1263
+ if (this.checkClose()) return
1264
+ if (needVal) {
1265
+ // 等号后遇到第一个非空字符
1266
+ this.start = this.i
1267
+ this.state = this.attrVal
1268
+ return
1269
+ }
1270
+ if (this.content[this.i] === '=') {
1271
+ needVal = true
1272
+ } else {
1273
+ this.start = this.i
1274
+ this.state = this.attrName
1275
+ return
1276
+ }
1277
+ }
1278
+ }
1279
+ } else if (!this.checkClose('onAttrName')) {
1280
+ this.i++
1281
+ }
1282
+ }
1283
+
1284
+ /**
1285
+ * @description 属性值状态
1286
+ * @private
1287
+ */
1288
+ Lexer.prototype.attrVal = function () {
1289
+ const c = this.content[this.i]
1290
+ const len = this.content.length
1291
+ if (c === '"' || c === "'") {
1292
+ // 有冒号的属性
1293
+ this.start = ++this.i
1294
+ this.i = this.content.indexOf(c, this.i)
1295
+ if (this.i === -1) return
1296
+ this.handler.onAttrVal(this.content.substring(this.start, this.i))
1297
+ } else {
1298
+ // 没有冒号的属性
1299
+ for (; this.i < len; this.i++) {
1300
+ if (blankChar[this.content[this.i]]) {
1301
+ this.handler.onAttrVal(this.content.substring(this.start, this.i))
1302
+ break
1303
+ } else if (this.checkClose('onAttrVal')) return
1304
+ }
1305
+ }
1306
+ while (blankChar[this.content[++this.i]]);
1307
+ if (this.i < len && !this.checkClose()) {
1308
+ this.start = this.i
1309
+ this.state = this.attrName
1310
+ }
1311
+ }
1312
+
1313
+ /**
1314
+ * @description 结束标签状态
1315
+ * @returns {String} 结束的标签名
1316
+ * @private
1317
+ */
1318
+ Lexer.prototype.endTag = function () {
1319
+ const c = this.content[this.i]
1320
+ if (blankChar[c] || c === '>' || c === '/') {
1321
+ this.handler.onCloseTag(this.content.substring(this.start, this.i))
1322
+ if (c !== '>') {
1323
+ this.i = this.content.indexOf('>', this.i)
1324
+ if (this.i === -1) return
1325
+ }
1326
+ this.start = ++this.i
1327
+ this.state = this.text
1328
+ } else {
1329
+ this.i++
1330
+ }
1331
+ }
1332
+
1333
+ export default Parser