@cloudbase/weda-ui-mp 3.6.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 (597) hide show
  1. package/README.md +1 -0
  2. package/actions/showMessage/index.js +3 -0
  3. package/actions/showModal/index.js +3 -0
  4. package/actions/showToast/index.js +3 -0
  5. package/app.js +0 -0
  6. package/components/button/index.js +89 -0
  7. package/components/button/index.json +4 -0
  8. package/components/button/index.wxml +22 -0
  9. package/components/button/index.wxss +13 -0
  10. package/components/calendar/arrowright--line.svg +3 -0
  11. package/components/calendar/index.js +439 -0
  12. package/components/calendar/index.json +5 -0
  13. package/components/calendar/index.wxml +35 -0
  14. package/components/calendar/index.wxss +203 -0
  15. package/components/carousel/index.js +91 -0
  16. package/components/carousel/index.json +7 -0
  17. package/components/carousel/index.wxml +6 -0
  18. package/components/chart/bar/index.js +331 -0
  19. package/components/chart/bar/index.json +6 -0
  20. package/components/chart/bar/index.wxml +1 -0
  21. package/components/chart/bar/index.wxss +9 -0
  22. package/components/chart/common/config/bar.js +50 -0
  23. package/components/chart/common/config/global.js +16 -0
  24. package/components/chart/common/config/line.js +48 -0
  25. package/components/chart/common/config/pie.js +36 -0
  26. package/components/chart/common/core/eChartBar.js +267 -0
  27. package/components/chart/common/core/eChartBase.js +450 -0
  28. package/components/chart/common/core/eChartLine.js +251 -0
  29. package/components/chart/common/core/eChartPie.js +169 -0
  30. package/components/chart/common/data-transform.js +284 -0
  31. package/components/chart/common/lib/echarts.min.js +18 -0
  32. package/components/chart/ec-canvas/ec-canvas.js +277 -0
  33. package/components/chart/ec-canvas/ec-canvas.json +4 -0
  34. package/components/chart/ec-canvas/ec-canvas.wxml +4 -0
  35. package/components/chart/ec-canvas/ec-canvas.wxss +4 -0
  36. package/components/chart/ec-canvas/wx-canvas.js +111 -0
  37. package/components/chart/line/index.js +326 -0
  38. package/components/chart/line/index.json +6 -0
  39. package/components/chart/line/index.wxml +1 -0
  40. package/components/chart/line/index.wxss +9 -0
  41. package/components/chart/pie/index.js +257 -0
  42. package/components/chart/pie/index.json +6 -0
  43. package/components/chart/pie/index.wxml +1 -0
  44. package/components/chart/pie/index.wxss +9 -0
  45. package/components/chart/statisticsCard/index.js +255 -0
  46. package/components/chart/statisticsCard/index.json +4 -0
  47. package/components/chart/statisticsCard/index.wxml +9 -0
  48. package/components/chart/statisticsCard/index.wxss +42 -0
  49. package/components/common/form-item-wrapper/index.js +20 -0
  50. package/components/common/form-item-wrapper/index.json +5 -0
  51. package/components/common/form-item-wrapper/index.wxml +3 -0
  52. package/components/container/index.js +32 -0
  53. package/components/container/index.json +4 -0
  54. package/components/container/index.wxml +3 -0
  55. package/components/customer-service/index.js +41 -0
  56. package/components/customer-service/index.json +5 -0
  57. package/components/customer-service/index.wxml +3 -0
  58. package/components/customer-service/index.wxss +7 -0
  59. package/components/dataView/index.js +109 -0
  60. package/components/dataView/index.json +7 -0
  61. package/components/dataView/index.wxml +25 -0
  62. package/components/dataView/index.wxss +0 -0
  63. package/components/form/checkbox/index.js +145 -0
  64. package/components/form/checkbox/index.json +7 -0
  65. package/components/form/checkbox/index.wxml +13 -0
  66. package/components/form/checkbox/index.wxss +1 -0
  67. package/components/form/form/index.js +189 -0
  68. package/components/form/form/index.json +4 -0
  69. package/components/form/form/index.wxml +5 -0
  70. package/components/form/form/index.wxss +3 -0
  71. package/components/form/form/wd-form.wxss +1091 -0
  72. package/components/form/formcell/index.js +57 -0
  73. package/components/form/formcell/index.json +4 -0
  74. package/components/form/formcell/index.wxml +11 -0
  75. package/components/form/formcell/index.wxss +31 -0
  76. package/components/form/input/index.js +116 -0
  77. package/components/form/input/index.json +7 -0
  78. package/components/form/input/index.wxml +25 -0
  79. package/components/form/input/index.wxss +22 -0
  80. package/components/form/location/components/mapChoose/index.js +495 -0
  81. package/components/form/location/components/mapChoose/index.json +4 -0
  82. package/components/form/location/components/mapChoose/index.wxml +54 -0
  83. package/components/form/location/components/mapChoose/index.wxss +301 -0
  84. package/components/form/location/index.js +494 -0
  85. package/components/form/location/index.json +10 -0
  86. package/components/form/location/index.wxml +29 -0
  87. package/components/form/location/index.wxss +151 -0
  88. package/components/form/location/location-btn.svg +4 -0
  89. package/components/form/location/location.svg +4 -0
  90. package/components/form/radio/index.js +124 -0
  91. package/components/form/radio/index.json +7 -0
  92. package/components/form/radio/index.wxml +13 -0
  93. package/components/form/radio/index.wxss +1 -0
  94. package/components/form/select/allTimePicker/dataUtils.js +377 -0
  95. package/components/form/select/allTimePicker/index.js +487 -0
  96. package/components/form/select/allTimePicker/index.json +7 -0
  97. package/components/form/select/allTimePicker/index.wxml +35 -0
  98. package/components/form/select/allTimePicker/index.wxss +118 -0
  99. package/components/form/select/dropdown-select/index.js +262 -0
  100. package/components/form/select/dropdown-select/index.json +4 -0
  101. package/components/form/select/dropdown-select/index.wxml +35 -0
  102. package/components/form/select/dropdown-select/index.wxss +293 -0
  103. package/components/form/select/formats-util.js +15 -0
  104. package/components/form/select/index.js +1017 -0
  105. package/components/form/select/index.json +10 -0
  106. package/components/form/select/index.wxml +56 -0
  107. package/components/form/select/index.wxss +61 -0
  108. package/components/form/select/region/index.js +120 -0
  109. package/components/form/selectMultiple/dropdown-select/index.js +202 -0
  110. package/components/form/selectMultiple/dropdown-select/index.json +4 -0
  111. package/components/form/selectMultiple/dropdown-select/index.wxml +37 -0
  112. package/components/form/selectMultiple/dropdown-select/index.wxss +305 -0
  113. package/components/form/selectMultiple/index.js +328 -0
  114. package/components/form/selectMultiple/index.json +9 -0
  115. package/components/form/selectMultiple/index.wxml +20 -0
  116. package/components/form/selectMultiple/index.wxss +127 -0
  117. package/components/form/switch/index.js +90 -0
  118. package/components/form/switch/index.json +7 -0
  119. package/components/form/switch/index.wxml +11 -0
  120. package/components/form/switch/index.wxss +1 -0
  121. package/components/form/textarea/index.js +90 -0
  122. package/components/form/textarea/index.json +7 -0
  123. package/components/form/textarea/index.wxml +8 -0
  124. package/components/form/textarea/index.wxss +10 -0
  125. package/components/form/tips/index.js +41 -0
  126. package/components/form/tips/index.json +4 -0
  127. package/components/form/tips/index.wxml +1 -0
  128. package/components/form/tips/index.wxss +5 -0
  129. package/components/form/uploader/compress.js +31 -0
  130. package/components/form/uploader/index.js +289 -0
  131. package/components/form/uploader/index.json +10 -0
  132. package/components/form/uploader/index.wxml +38 -0
  133. package/components/form/uploader/index.wxss +47 -0
  134. package/components/form/uploader/weui-uploader.js +310 -0
  135. package/components/form/uploader/weui-uploader.json +7 -0
  136. package/components/form/uploader/weui-uploader.wxml +49 -0
  137. package/components/form/uploader/weui-uploader.wxss +19 -0
  138. package/components/form/uploaderFile/index.js +481 -0
  139. package/components/form/uploaderFile/index.json +9 -0
  140. package/components/form/uploaderFile/index.wxml +52 -0
  141. package/components/form/uploaderFile/index.wxss +171 -0
  142. package/components/form-checkbox/index.js +78 -0
  143. package/components/form-checkbox/index.json +9 -0
  144. package/components/form-checkbox/index.wxml +6 -0
  145. package/components/form-date/index.js +72 -0
  146. package/components/form-date/index.json +9 -0
  147. package/components/form-date/index.wxml +25 -0
  148. package/components/form-email/index.js +99 -0
  149. package/components/form-email/index.json +9 -0
  150. package/components/form-email/index.wxml +28 -0
  151. package/components/form-field-behavior/form-field-behavior.js +423 -0
  152. package/components/form-field-behavior/item-behavior.js +445 -0
  153. package/components/form-field-behavior/validator.js +132 -0
  154. package/components/form-image-uploader/index.js +83 -0
  155. package/components/form-image-uploader/index.json +9 -0
  156. package/components/form-image-uploader/index.wxml +27 -0
  157. package/components/form-input/index.js +103 -0
  158. package/components/form-input/index.json +9 -0
  159. package/components/form-input/index.wxml +29 -0
  160. package/components/form-location/index.js +98 -0
  161. package/components/form-location/index.json +9 -0
  162. package/components/form-location/index.wxml +28 -0
  163. package/components/form-multi-region/index.js +62 -0
  164. package/components/form-multi-region/index.json +9 -0
  165. package/components/form-multi-region/index.wxml +6 -0
  166. package/components/form-phone/index.js +95 -0
  167. package/components/form-phone/index.json +9 -0
  168. package/components/form-phone/index.wxml +28 -0
  169. package/components/form-radio/index.js +70 -0
  170. package/components/form-radio/index.json +9 -0
  171. package/components/form-radio/index.wxml +6 -0
  172. package/components/form-region/index.js +59 -0
  173. package/components/form-region/index.json +9 -0
  174. package/components/form-region/index.wxml +6 -0
  175. package/components/form-select/index.js +114 -0
  176. package/components/form-select/index.json +9 -0
  177. package/components/form-select/index.wxml +31 -0
  178. package/components/form-select-multiple/index.js +97 -0
  179. package/components/form-select-multiple/index.json +9 -0
  180. package/components/form-select-multiple/index.wxml +29 -0
  181. package/components/form-switch/index.js +43 -0
  182. package/components/form-switch/index.json +9 -0
  183. package/components/form-switch/index.wxml +6 -0
  184. package/components/form-text-area/index.js +95 -0
  185. package/components/form-text-area/index.json +9 -0
  186. package/components/form-text-area/index.wxml +26 -0
  187. package/components/form-time/index.js +72 -0
  188. package/components/form-time/index.json +9 -0
  189. package/components/form-time/index.wxml +6 -0
  190. package/components/form-upload-file/index.js +73 -0
  191. package/components/form-upload-file/index.json +9 -0
  192. package/components/form-upload-file/index.wxml +26 -0
  193. package/components/form-url/index.js +104 -0
  194. package/components/form-url/index.json +9 -0
  195. package/components/form-url/index.wxml +28 -0
  196. package/components/formdetail/index.js +330 -0
  197. package/components/formdetail/index.json +7 -0
  198. package/components/formdetail/index.wxml +7 -0
  199. package/components/formdetail/index.wxss +277 -0
  200. package/components/formdetail/wd-form-detail.wxss +245 -0
  201. package/components/graphicCard/chevron-right.svg +3 -0
  202. package/components/graphicCard/index.js +205 -0
  203. package/components/graphicCard/index.json +7 -0
  204. package/components/graphicCard/index.wxml +27 -0
  205. package/components/graphicCard/index.wxss +165 -0
  206. package/components/grid/_util.wxss +67 -0
  207. package/components/grid/col/index.js +110 -0
  208. package/components/grid/col/index.json +4 -0
  209. package/components/grid/col/index.wxml +3 -0
  210. package/components/grid/index.js +94 -0
  211. package/components/grid/index.json +4 -0
  212. package/components/grid/index.wxml +3 -0
  213. package/components/grid/index.wxss +1206 -0
  214. package/components/grid/row/index.js +78 -0
  215. package/components/grid/row/index.json +4 -0
  216. package/components/grid/row/index.wxml +3 -0
  217. package/components/image/index.js +203 -0
  218. package/components/image/index.json +7 -0
  219. package/components/image/index.wxml +9 -0
  220. package/components/image/index.wxss +49 -0
  221. package/components/listView/arrow-right-line.svg +3 -0
  222. package/components/listView/emptyText.svg +7 -0
  223. package/components/listView/index.js +656 -0
  224. package/components/listView/index.json +7 -0
  225. package/components/listView/index.wxml +82 -0
  226. package/components/listView/index.wxss +290 -0
  227. package/components/listView/more-line.svg +3 -0
  228. package/components/lottery/index.js +301 -0
  229. package/components/lottery/index.json +4 -0
  230. package/components/lottery/index.wxml +41 -0
  231. package/components/lottery/index.wxss +340 -0
  232. package/components/modal/index.js +65 -0
  233. package/components/modal/index.json +9 -0
  234. package/components/modal/index.wxml +18 -0
  235. package/components/modal/index.wxss +56 -0
  236. package/components/navLayout/index.js +123 -0
  237. package/components/navLayout/index.json +8 -0
  238. package/components/navLayout/index.wxml +22 -0
  239. package/components/navLayout/index.wxss +131 -0
  240. package/components/navigationBar/index.js +205 -0
  241. package/components/navigationBar/index.json +5 -0
  242. package/components/navigationBar/index.wxml +83 -0
  243. package/components/navigationBar/index.wxss +205 -0
  244. package/components/qrcode/index.js +155 -0
  245. package/components/qrcode/index.json +5 -0
  246. package/components/qrcode/index.wxml +2 -0
  247. package/components/qrcode/index.wxss +10 -0
  248. package/components/richText/index.js +90 -0
  249. package/components/richText/index.json +4 -0
  250. package/components/richText/index.wxml +3 -0
  251. package/components/richText/index.wxss +67 -0
  252. package/components/scrollView/index.js +119 -0
  253. package/components/scrollView/index.json +4 -0
  254. package/components/scrollView/index.wxml +38 -0
  255. package/components/slot/index.js +25 -0
  256. package/components/slot/index.json +4 -0
  257. package/components/slot/index.wxml +3 -0
  258. package/components/status-content/arrow-right.svg +1 -0
  259. package/components/status-content/close.svg +1 -0
  260. package/components/status-content/error.svg +6 -0
  261. package/components/status-content/index.js +51 -0
  262. package/components/status-content/index.json +4 -0
  263. package/components/status-content/index.wxml +28 -0
  264. package/components/status-content/index.wxss +145 -0
  265. package/components/swiper/index.js +65 -0
  266. package/components/swiper/index.json +4 -0
  267. package/components/swiper/index.wxml +3 -0
  268. package/components/tabs/index.js +67 -0
  269. package/components/tabs/index.json +4 -0
  270. package/components/tabs/index.wxml +10 -0
  271. package/components/tabs/index.wxss +61 -0
  272. package/components/text/index.js +40 -0
  273. package/components/text/index.json +4 -0
  274. package/components/text/index.wxml +7 -0
  275. package/components/text/index.wxss +27 -0
  276. package/components/tooltip/index.js +290 -0
  277. package/components/tooltip/index.json +4 -0
  278. package/components/tooltip/index.wxml +18 -0
  279. package/components/tooltip/index.wxss +72 -0
  280. package/components/tooltip/wd-tooltip.wxss +25 -0
  281. package/components/wd-ad/index.js +66 -0
  282. package/components/wd-ad/index.json +5 -0
  283. package/components/wd-ad/index.wxml +3 -0
  284. package/components/wd-ad/index.wxss +3 -0
  285. package/components/wd-audio/index.js +273 -0
  286. package/components/wd-audio/index.json +5 -0
  287. package/components/wd-audio/index.wxml +3 -0
  288. package/components/wd-audio/index.wxss +0 -0
  289. package/components/wd-button/index.js +284 -0
  290. package/components/wd-button/index.json +7 -0
  291. package/components/wd-button/index.wxml +32 -0
  292. package/components/wd-button/index.wxss +2 -0
  293. package/components/wd-button/wd-button.wxss +498 -0
  294. package/components/wd-calendar/arrowright--line.svg +3 -0
  295. package/components/wd-calendar/index.js +157 -0
  296. package/components/wd-calendar/index.json +5 -0
  297. package/components/wd-calendar/index.wxml +36 -0
  298. package/components/wd-calendar/index.wxss +203 -0
  299. package/components/wd-calendar/weeks.js +41 -0
  300. package/components/wd-canvas/index.js +250 -0
  301. package/components/wd-canvas/index.json +5 -0
  302. package/components/wd-canvas/index.wxml +2 -0
  303. package/components/wd-canvas/index.wxss +0 -0
  304. package/components/wd-card/index.js +76 -0
  305. package/components/wd-card/index.json +5 -0
  306. package/components/wd-card/index.wxml +11 -0
  307. package/components/wd-card/index.wxss +6 -0
  308. package/components/wd-card/wd-card.wxss +114 -0
  309. package/components/wd-checkbox-list/index.js +170 -0
  310. package/components/wd-checkbox-list/index.json +7 -0
  311. package/components/wd-checkbox-list/index.wxml +37 -0
  312. package/components/wd-checkbox-list/index.wxss +2 -0
  313. package/components/wd-checkbox-list/wd-checkbox-list.wxss +253 -0
  314. package/components/wd-date/calendar/index.js +111 -0
  315. package/components/wd-date/calendar/index.json +7 -0
  316. package/components/wd-date/calendar/index.wxml +38 -0
  317. package/components/wd-date/calendar/index.wxss +0 -0
  318. package/components/wd-date/date-picker/index.js +101 -0
  319. package/components/wd-date/date-picker/index.json +9 -0
  320. package/components/wd-date/date-picker/index.wxml +41 -0
  321. package/components/wd-date/date-picker/index.wxss +7 -0
  322. package/components/wd-date/index.js +129 -0
  323. package/components/wd-date/index.json +10 -0
  324. package/components/wd-date/index.wxml +36 -0
  325. package/components/wd-date/index.wxss +9 -0
  326. package/components/wd-date/modal/index.js +28 -0
  327. package/components/wd-date/modal/index.json +5 -0
  328. package/components/wd-date/modal/index.wxml +14 -0
  329. package/components/wd-date/modal/index.wxss +3 -0
  330. package/components/wd-date/time-picker/index.js +202 -0
  331. package/components/wd-date/time-picker/index.json +5 -0
  332. package/components/wd-date/time-picker/index.wxml +13 -0
  333. package/components/wd-date/time-picker/index.wxss +9 -0
  334. package/components/wd-date/wd-date.wxss +0 -0
  335. package/components/wd-date/year-month-picker/index.js +128 -0
  336. package/components/wd-date/year-month-picker/index.json +5 -0
  337. package/components/wd-date/year-month-picker/index.wxml +8 -0
  338. package/components/wd-date/year-month-picker/index.wxss +9 -0
  339. package/components/wd-date-range/index.js +172 -0
  340. package/components/wd-date-range/index.json +10 -0
  341. package/components/wd-date-range/index.wxml +41 -0
  342. package/components/wd-date-range/index.wxss +9 -0
  343. package/components/wd-date-range/wd-date-range.wxss +0 -0
  344. package/components/wd-divider/index.js +46 -0
  345. package/components/wd-divider/index.json +5 -0
  346. package/components/wd-divider/index.wxml +1 -0
  347. package/components/wd-divider/index.wxss +2 -0
  348. package/components/wd-divider/wd-divider.wxss +26 -0
  349. package/components/wd-form/form-utils.js +55 -0
  350. package/components/wd-form/index.js +748 -0
  351. package/components/wd-form/index.json +5 -0
  352. package/components/wd-form/index.wxml +13 -0
  353. package/components/wd-form/index.wxss +23 -0
  354. package/components/wd-form/remote-value.js +76 -0
  355. package/components/wd-form/wd-form.wxss +1091 -0
  356. package/components/wd-form-item/index.js +106 -0
  357. package/components/wd-form-item/index.json +7 -0
  358. package/components/wd-form-item/index.wxml +47 -0
  359. package/components/wd-form-item/index.wxss +2 -0
  360. package/components/wd-form-item/wd-form-item.wxss +1091 -0
  361. package/components/wd-form-item-read-only/index.js +59 -0
  362. package/components/wd-form-item-read-only/index.json +5 -0
  363. package/components/wd-form-item-read-only/index.wxml +10 -0
  364. package/components/wd-icon/index.js +140 -0
  365. package/components/wd-icon/index.json +7 -0
  366. package/components/wd-icon/index.wxml +4 -0
  367. package/components/wd-icon/index.wxss +4 -0
  368. package/components/wd-icon/wd-font-icon.wxss +4432 -0
  369. package/components/wd-icon/wd-icon.wxss +148 -0
  370. package/components/wd-image/index.js +244 -0
  371. package/components/wd-image/index.json +7 -0
  372. package/components/wd-image/index.wxml +11 -0
  373. package/components/wd-image/index.wxss +11 -0
  374. package/components/wd-image/wd-image.wxss +80 -0
  375. package/components/wd-input/index.js +62 -0
  376. package/components/wd-input/index.json +7 -0
  377. package/components/wd-input/index.wxml +57 -0
  378. package/components/wd-input/inner-input/index.js +202 -0
  379. package/components/wd-input/inner-input/index.json +9 -0
  380. package/components/wd-input/inner-input/index.wxml +79 -0
  381. package/components/wd-input/inner-input/index.wxss +2 -0
  382. package/components/wd-input/inner-input/wd-input.wxss +1574 -0
  383. package/components/wd-input-email/index.js +63 -0
  384. package/components/wd-input-email/index.json +7 -0
  385. package/components/wd-input-email/index.wxml +55 -0
  386. package/components/wd-input-group/index.js +57 -0
  387. package/components/wd-input-group/index.json +5 -0
  388. package/components/wd-input-group/index.wxml +16 -0
  389. package/components/wd-input-group/index.wxss +1 -0
  390. package/components/wd-input-group/wd-input-group.wxss +99 -0
  391. package/components/wd-input-number/index.js +575 -0
  392. package/components/wd-input-number/index.json +10 -0
  393. package/components/wd-input-number/index.wxml +66 -0
  394. package/components/wd-input-number/index.wxss +8 -0
  395. package/components/wd-input-number/number.js +309 -0
  396. package/components/wd-input-number/wd-input-number.wxss +243 -0
  397. package/components/wd-input-phone/index.js +80 -0
  398. package/components/wd-input-phone/index.json +7 -0
  399. package/components/wd-input-phone/index.wxml +55 -0
  400. package/components/wd-input-url/index.js +63 -0
  401. package/components/wd-input-url/index.json +7 -0
  402. package/components/wd-input-url/index.wxml +55 -0
  403. package/components/wd-input-wrap/index.js +112 -0
  404. package/components/wd-input-wrap/index.json +7 -0
  405. package/components/wd-input-wrap/index.wxml +32 -0
  406. package/components/wd-input-wrap/index.wxss +2 -0
  407. package/components/wd-input-wrap/wd-input-wrap.wxss +220 -0
  408. package/components/wd-layout/index.js +33 -0
  409. package/components/wd-layout/index.json +5 -0
  410. package/components/wd-layout/index.wxml +13 -0
  411. package/components/wd-layout/index.wxss +2 -0
  412. package/components/wd-layout/wd-layout.wxss +78 -0
  413. package/components/wd-location/index.js +49 -0
  414. package/components/wd-location/index.json +10 -0
  415. package/components/wd-location/index.wxml +47 -0
  416. package/components/wd-menu-base-layout/index.js +20 -0
  417. package/components/wd-menu-base-layout/index.json +5 -0
  418. package/components/wd-menu-base-layout/index.wxml +3 -0
  419. package/components/wd-menu-horizontal-layout/index.js +20 -0
  420. package/components/wd-menu-horizontal-layout/index.json +5 -0
  421. package/components/wd-menu-horizontal-layout/index.wxml +3 -0
  422. package/components/wd-menu-layout/index.js +69 -0
  423. package/components/wd-menu-layout/index.json +8 -0
  424. package/components/wd-menu-layout/index.wxml +57 -0
  425. package/components/wd-menu-layout/index.wxss +13 -0
  426. package/components/wd-menu-layout/utils/index.js +40 -0
  427. package/components/wd-menu-layout/wd-menu-layout.wxss +632 -0
  428. package/components/wd-menu-list/index.js +246 -0
  429. package/components/wd-menu-list/index.json +7 -0
  430. package/components/wd-menu-list/index.wxml +50 -0
  431. package/components/wd-menu-list/index.wxss +146 -0
  432. package/components/wd-menu-list/wd-menu-list.wxss +621 -0
  433. package/components/wd-menu-nav-layout/index.js +20 -0
  434. package/components/wd-menu-nav-layout/index.json +5 -0
  435. package/components/wd-menu-nav-layout/index.wxml +3 -0
  436. package/components/wd-menu-plant-layout/index.js +20 -0
  437. package/components/wd-menu-plant-layout/index.json +5 -0
  438. package/components/wd-menu-plant-layout/index.wxml +3 -0
  439. package/components/wd-menu-tab-layout/index.js +20 -0
  440. package/components/wd-menu-tab-layout/index.json +5 -0
  441. package/components/wd-menu-tab-layout/index.wxml +3 -0
  442. package/components/wd-menu-vertical-layout/index.js +20 -0
  443. package/components/wd-menu-vertical-layout/index.json +5 -0
  444. package/components/wd-menu-vertical-layout/index.wxml +3 -0
  445. package/components/wd-modal/index.js +184 -0
  446. package/components/wd-modal/index.json +5 -0
  447. package/components/wd-modal/index.wxml +16 -0
  448. package/components/wd-modal/index.wxss +2 -0
  449. package/components/wd-modal/wd-modal.wxss +206 -0
  450. package/components/wd-official-account/index.js +28 -0
  451. package/components/wd-official-account/index.json +5 -0
  452. package/components/wd-official-account/index.wxml +1 -0
  453. package/components/wd-official-account/index.wxss +4 -0
  454. package/components/wd-progress/index.js +127 -0
  455. package/components/wd-progress/index.json +7 -0
  456. package/components/wd-progress/index.wxml +29 -0
  457. package/components/wd-progress/index.wxss +2 -0
  458. package/components/wd-progress/wd-progress.wxss +1123 -0
  459. package/components/wd-radio-list/index.js +157 -0
  460. package/components/wd-radio-list/index.json +7 -0
  461. package/components/wd-radio-list/index.wxml +37 -0
  462. package/components/wd-radio-list/index.wxss +2 -0
  463. package/components/wd-radio-list/wd-radio-list.wxss +181 -0
  464. package/components/wd-rating/index.js +359 -0
  465. package/components/wd-rating/index.json +9 -0
  466. package/components/wd-rating/index.wxml +37 -0
  467. package/components/wd-rating/index.wxss +2 -0
  468. package/components/wd-rating/wd-rating.wxss +1116 -0
  469. package/components/wd-region/index.js +38 -0
  470. package/components/wd-region/index.json +10 -0
  471. package/components/wd-region/index.wxml +28 -0
  472. package/components/wd-region/index.wxss +4 -0
  473. package/components/wd-select/index.js +78 -0
  474. package/components/wd-select/index.json +10 -0
  475. package/components/wd-select/index.wxml +51 -0
  476. package/components/wd-select/select.wxss +728 -0
  477. package/components/wd-select-multiple/index.js +74 -0
  478. package/components/wd-select-multiple/index.json +10 -0
  479. package/components/wd-select-multiple/index.wxml +51 -0
  480. package/components/wd-side-tab/index.js +113 -0
  481. package/components/wd-side-tab/index.json +7 -0
  482. package/components/wd-side-tab/index.wxml +6 -0
  483. package/components/wd-side-tab/index.wxss +1 -0
  484. package/components/wd-switch/index.js +67 -0
  485. package/components/wd-switch/index.json +7 -0
  486. package/components/wd-switch/index.wxml +28 -0
  487. package/components/wd-switch/index.wxss +2 -0
  488. package/components/wd-switch/wd-switch.wxss +1212 -0
  489. package/components/wd-tabbar/index.js +196 -0
  490. package/components/wd-tabbar/index.json +7 -0
  491. package/components/wd-tabbar/index.wxml +10 -0
  492. package/components/wd-tabbar/index.wxss +2 -0
  493. package/components/wd-tabbar/wd-tabbar.wxss +87 -0
  494. package/components/wd-tabs/index.js +62 -0
  495. package/components/wd-tabs/index.json +5 -0
  496. package/components/wd-tabs/index.wxml +34 -0
  497. package/components/wd-tabs/index.wxss +8 -0
  498. package/components/wd-tabs/wd-tabs.wxss +265 -0
  499. package/components/wd-tag/index.js +171 -0
  500. package/components/wd-tag/index.json +7 -0
  501. package/components/wd-tag/index.wxml +22 -0
  502. package/components/wd-tag/index.wxss +3 -0
  503. package/components/wd-tag/tag-behavior.js +57 -0
  504. package/components/wd-tag/tag-item/index.js +198 -0
  505. package/components/wd-tag/tag-item/index.json +7 -0
  506. package/components/wd-tag/tag-item/index.wxml +15 -0
  507. package/components/wd-tag/wd-tag.wxss +319 -0
  508. package/components/wd-tag-select/index.js +107 -0
  509. package/components/wd-tag-select/index.json +8 -0
  510. package/components/wd-tag-select/index.wxml +42 -0
  511. package/components/wd-tag-select/index.wxss +4 -0
  512. package/components/wd-tag-select/wd-tag-select.wxss +1253 -0
  513. package/components/wd-text/index.js +162 -0
  514. package/components/wd-text/index.json +5 -0
  515. package/components/wd-text/index.wxml +8 -0
  516. package/components/wd-text/index.wxss +2 -0
  517. package/components/wd-text/wd-text.wxss +256 -0
  518. package/components/wd-textarea/index.js +94 -0
  519. package/components/wd-textarea/index.json +7 -0
  520. package/components/wd-textarea/index.wxml +31 -0
  521. package/components/wd-textarea/index.wxss +7 -0
  522. package/components/wd-textarea/wd-textarea.wxss +91 -0
  523. package/components/wd-time/index.js +124 -0
  524. package/components/wd-time/index.json +11 -0
  525. package/components/wd-time/index.wxml +36 -0
  526. package/components/wd-time/index.wxss +9 -0
  527. package/components/wd-time/wd-time.wxss +0 -0
  528. package/components/wd-top-tab/index.js +113 -0
  529. package/components/wd-top-tab/index.json +7 -0
  530. package/components/wd-top-tab/index.wxml +6 -0
  531. package/components/wd-top-tab/index.wxss +5 -0
  532. package/components/wd-unified-link/index.js +115 -0
  533. package/components/wd-unified-link/index.json +5 -0
  534. package/components/wd-unified-link/index.wxml +3 -0
  535. package/components/wd-unified-link/index.wxss +2 -0
  536. package/components/wd-unified-link/wd-link.wxss +45 -0
  537. package/components/wd-upload-file/index.js +46 -0
  538. package/components/wd-upload-file/index.json +8 -0
  539. package/components/wd-upload-file/index.wxml +39 -0
  540. package/components/wd-upload-image/index.js +64 -0
  541. package/components/wd-upload-image/index.json +8 -0
  542. package/components/wd-upload-image/index.wxml +45 -0
  543. package/components/web-view/index.js +69 -0
  544. package/components/web-view/index.json +5 -0
  545. package/components/web-view/index.wxml +1 -0
  546. package/components/web-view/index.wxss +1 -0
  547. package/components/wedaVideo/index.js +179 -0
  548. package/components/wedaVideo/index.json +4 -0
  549. package/components/wedaVideo/index.wxml +29 -0
  550. package/components/wedaVideo/index.wxss +20 -0
  551. package/components/wxOpenApi/phone/index.js +122 -0
  552. package/components/wxOpenApi/phone/index.json +4 -0
  553. package/components/wxOpenApi/phone/index.wxml +4 -0
  554. package/components/wxOpenApi/phone/index.wxss +22 -0
  555. package/components/wxOpenApi/phoneCode/index.js +102 -0
  556. package/components/wxOpenApi/phoneCode/index.json +4 -0
  557. package/components/wxOpenApi/phoneCode/index.wxml +4 -0
  558. package/components/wxOpenApi/phoneCode/index.wxss +22 -0
  559. package/components/wxOpenApi/share/index.js +134 -0
  560. package/components/wxOpenApi/share/index.json +4 -0
  561. package/components/wxOpenApi/share/index.wxml +4 -0
  562. package/components/wxOpenApi/share/index.wxss +22 -0
  563. package/components/wxOpenApi/userInfo/index.js +97 -0
  564. package/components/wxOpenApi/userInfo/index.json +4 -0
  565. package/components/wxOpenApi/userInfo/index.wxml +4 -0
  566. package/components/wxOpenApi/userInfo/index.wxss +22 -0
  567. package/index.json +128 -0
  568. package/package.json +16 -0
  569. package/style/utils.wxss +162 -0
  570. package/style/wd-design.wxss +606 -0
  571. package/style/weda-ui.wxss +1412 -0
  572. package/style/wedatea2td.wxss +56 -0
  573. package/utils/classnames.js +39 -0
  574. package/utils/color.js +76 -0
  575. package/utils/common-behavior.js +1 -0
  576. package/utils/constant.js +132 -0
  577. package/utils/date.js +47 -0
  578. package/utils/dayjs.min.js +1 -0
  579. package/utils/debounce.js +134 -0
  580. package/utils/deepEqual.js +42 -0
  581. package/utils/destr.js +49 -0
  582. package/utils/dr_square_point.js +29 -0
  583. package/utils/enum.js +1247 -0
  584. package/utils/error.js +12 -0
  585. package/utils/getCustomInfo.js +34 -0
  586. package/utils/getFormLegacy.js +401 -0
  587. package/utils/getModelParams.js +43 -0
  588. package/utils/getWedaApi.js +1 -0
  589. package/utils/handleEvents.js +34 -0
  590. package/utils/lodash.js +65 -0
  591. package/utils/platform.js +158 -0
  592. package/utils/qqmap-wx-jssdk1.2/qqmap-wx-jssdk.js +1323 -0
  593. package/utils/qrcode/weapp.qrcode.min.js +911 -0
  594. package/utils/range.js +82 -0
  595. package/utils/tcb.js +162 -0
  596. package/utils/tool.js +74 -0
  597. package/utils/widget-api.js +28 -0
@@ -0,0 +1,1412 @@
1
+ @import './wd-design.wxss';
2
+
3
+ /*!
4
+ * Weda 自定义样式
5
+ */
6
+
7
+ page .weda-ui {
8
+ --weui-BRAND: #006eff;
9
+ --weui-TAG-TEXT-BLUE: #0067eb;
10
+ --weui-BTN-DEFAULT-COLOR: #576b95;
11
+ --weui-WECHAT: #07c160;
12
+ --weui-TAG-TEXT-GREEN: #06ae56;
13
+ --weui-BG-2: rgba(255, 255, 255, 0);
14
+ }
15
+
16
+ .weui-form {
17
+ min-height: 0%;
18
+ padding: 0;
19
+ }
20
+
21
+ .weui-cells {
22
+ margin-top: 0;
23
+ }
24
+
25
+ .weda-ui.weui-form .weui-cells__tips {
26
+ margin-bottom: 16px;
27
+ }
28
+
29
+ .weui-cells__group_form .weui-cells__tips_warn {
30
+ color: var(--wd-color-text-error);
31
+ font-family: var(--wd-font-family);
32
+ font-size: var(--wd-font-size-default);
33
+ }
34
+
35
+ .weda-ui .weui-btn_input-clear {
36
+ display: none;
37
+ }
38
+
39
+ .weda-ui.weda-picker .weui-btn_primary:not(.weui-btn_disabled):active {
40
+ background-color: var(--weui-TAG-TEXT-BLUE);
41
+ }
42
+
43
+ .weda-ui .weui-cell {
44
+ font-size: inherit;
45
+ }
46
+
47
+ .weda-ui .weui-cells {
48
+ font-size: 1em;
49
+ }
50
+
51
+ .weui-cells__group_form .weui-cell::before,
52
+ .weui-cells__group_form .weui-cells::before {
53
+ left: 16px;
54
+ right: 16px;
55
+ }
56
+
57
+ .weui-cells__group_form .weui-cells::after {
58
+ left: 16px;
59
+ right: 16px;
60
+ }
61
+
62
+ .weui-picker a:link:hover {
63
+ text-decoration: none;
64
+ }
65
+
66
+ .weda-ui .weui-input {
67
+ padding: 14px 0;
68
+ }
69
+
70
+ .weda-ui .weui-btn_input-clear {
71
+ visibility: hidden;
72
+ /* visibility 防止居中而且宽度auto时,出现输入时宽度抖动 */
73
+ display: inline;
74
+ }
75
+
76
+ .weda-ui .weui-input.focus.not-placeholder-shown + .weui-btn_input-clear {
77
+ visibility: visible;
78
+ display: inline;
79
+ }
80
+
81
+ .weda-ui .weui-check[disabled] + .weui-icon-checked {
82
+ opacity: 0.4;
83
+ }
84
+
85
+ .weui-cell_switch.weui-cell_readonly,
86
+ .weui-cell_switch.weui-cell_disabled {
87
+ color: rgba(0, 0, 0, 0.4);
88
+ }
89
+
90
+ .weui-check__label.weui-cell_readonly,
91
+ .weui-check__label.weui-cell_disabled {
92
+ color: rgba(0, 0, 0, 0.4);
93
+ }
94
+
95
+ .weui-cell_switch.weui-cell_disabled .weui-switch-cp__box {
96
+ opacity: 0.4;
97
+ }
98
+
99
+ @font-face {
100
+ font-family: 'lcap-icon';
101
+ font-weight: normal;
102
+ font-style: normal;
103
+ src: url(data:application/font-woff2;charset=utf-8;base64,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)
104
+ format('woff2');
105
+ }
106
+
107
+ .t-icon {
108
+ /* use !important to prevent issues with browser extensions that change fonts */
109
+ font-family: 't' !important;
110
+ display: inline-block;
111
+ speak: none;
112
+ font-style: normal;
113
+ font-weight: normal;
114
+ font-variant: normal;
115
+ text-transform: none;
116
+ line-height: 1;
117
+ text-align: center;
118
+ /* Better Font Rendering =========== */
119
+ -webkit-font-smoothing: antialiased;
120
+ -moz-osx-font-smoothing: grayscale;
121
+ }
122
+
123
+ .t-icon-add-circle:before {
124
+ content: '\E001';
125
+ }
126
+
127
+ .t-icon-add-rectangle:before {
128
+ content: '\E002';
129
+ }
130
+
131
+ .t-icon-add:before {
132
+ content: '\E003';
133
+ }
134
+
135
+ .t-icon-app:before {
136
+ content: '\E004';
137
+ }
138
+
139
+ .t-icon-arrow-down-rectangle:before {
140
+ content: '\E005';
141
+ }
142
+
143
+ .t-icon-arrow-down:before {
144
+ content: '\E006';
145
+ }
146
+
147
+ .t-icon-arrow-left:before {
148
+ content: '\E007';
149
+ }
150
+
151
+ .t-icon-arrow-right:before {
152
+ content: '\E008';
153
+ }
154
+
155
+ .t-icon-arrow-up:before {
156
+ content: '\E009';
157
+ }
158
+
159
+ .t-icon-attach:before {
160
+ content: '\E00A';
161
+ }
162
+
163
+ .t-icon-backtop-rectangle:before {
164
+ content: '\E00B';
165
+ }
166
+
167
+ .t-icon-backtop:before {
168
+ content: '\E00C';
169
+ }
170
+
171
+ .t-icon-backward:before {
172
+ content: '\E00D';
173
+ }
174
+
175
+ .t-icon-barcode:before {
176
+ content: '\E00E';
177
+ }
178
+
179
+ .t-icon-books:before {
180
+ content: '\E00F';
181
+ }
182
+
183
+ .t-icon-browse-off:before {
184
+ content: '\E010';
185
+ }
186
+
187
+ .t-icon-browse:before {
188
+ content: '\E011';
189
+ }
190
+
191
+ .t-icon-bulletpoint:before {
192
+ content: '\E012';
193
+ }
194
+
195
+ .t-icon-calendar:before {
196
+ content: '\E013';
197
+ }
198
+
199
+ .t-icon-call:before {
200
+ content: '\E014';
201
+ }
202
+
203
+ .t-icon-caret-down-small:before {
204
+ content: '\E015';
205
+ }
206
+
207
+ .t-icon-caret-down:before {
208
+ content: '\E016';
209
+ }
210
+
211
+ .t-icon-caret-left-small:before {
212
+ content: '\E017';
213
+ }
214
+
215
+ .t-icon-caret-left:before {
216
+ content: '\E018';
217
+ }
218
+
219
+ .t-icon-caret-right-small:before {
220
+ content: '\E019';
221
+ }
222
+
223
+ .t-icon-caret-right:before {
224
+ content: '\E01A';
225
+ }
226
+
227
+ .t-icon-caret-up-small:before {
228
+ content: '\E01B';
229
+ }
230
+
231
+ .t-icon-caret-up:before {
232
+ content: '\E01C';
233
+ }
234
+
235
+ .t-icon-cart:before {
236
+ content: '\E01D';
237
+ }
238
+
239
+ .t-icon-chart-bar:before {
240
+ content: '\E01E';
241
+ }
242
+
243
+ .t-icon-chart-bubble:before {
244
+ content: '\E01F';
245
+ }
246
+
247
+ .t-icon-chart-pie:before {
248
+ content: '\E020';
249
+ }
250
+
251
+ .t-icon-chart:before {
252
+ content: '\E021';
253
+ }
254
+
255
+ .t-icon-chat:before {
256
+ content: '\E022';
257
+ }
258
+
259
+ .t-icon-check-circle-filled:before {
260
+ content: '\E023';
261
+ }
262
+
263
+ .t-icon-check-circle:before {
264
+ content: '\E024';
265
+ }
266
+
267
+ .t-icon-check-rectangle-filled:before {
268
+ content: '\E025';
269
+ }
270
+
271
+ .t-icon-check-rectangle:before {
272
+ content: '\E026';
273
+ }
274
+
275
+ .t-icon-check:before {
276
+ content: '\E027';
277
+ }
278
+
279
+ .t-icon-chevron-down-circle:before {
280
+ content: '\E028';
281
+ }
282
+
283
+ .t-icon-chevron-down-rectangle:before {
284
+ content: '\E029';
285
+ }
286
+
287
+ .t-icon-chevron-down:before {
288
+ content: '\E02A';
289
+ }
290
+
291
+ .t-icon-chevron-left-circle:before {
292
+ content: '\E02B';
293
+ }
294
+
295
+ .t-icon-chevron-left-double:before {
296
+ content: '\E02C';
297
+ }
298
+
299
+ .t-icon-chevron-left-rectangle:before {
300
+ content: '\E02D';
301
+ }
302
+
303
+ .t-icon-chevron-left:before {
304
+ content: '\E02E';
305
+ }
306
+
307
+ .t-icon-chevron-right-circle:before {
308
+ content: '\E02F';
309
+ }
310
+
311
+ .t-icon-chevron-right-double:before {
312
+ content: '\E030';
313
+ }
314
+
315
+ .t-icon-chevron-right-rectangle:before {
316
+ content: '\E031';
317
+ }
318
+
319
+ .t-icon-chevron-right:before {
320
+ content: '\E032';
321
+ }
322
+
323
+ .t-icon-chevron-up-circle:before {
324
+ content: '\E033';
325
+ }
326
+
327
+ .t-icon-chevron-up-rectangle:before {
328
+ content: '\E034';
329
+ }
330
+
331
+ .t-icon-chevron-up:before {
332
+ content: '\E035';
333
+ }
334
+
335
+ .t-icon-circle:before {
336
+ content: '\E036';
337
+ }
338
+
339
+ .t-icon-clear:before {
340
+ content: '\E037';
341
+ }
342
+
343
+ .t-icon-close-circle-filled:before {
344
+ content: '\E038';
345
+ }
346
+
347
+ .t-icon-close-circle:before {
348
+ content: '\E039';
349
+ }
350
+
351
+ .t-icon-close-rectangle:before {
352
+ content: '\E03A';
353
+ }
354
+
355
+ .t-icon-close:before {
356
+ content: '\E03B';
357
+ }
358
+
359
+ .t-icon-cloud-download:before {
360
+ content: '\E03C';
361
+ }
362
+
363
+ .t-icon-cloud-upload:before {
364
+ content: '\E03D';
365
+ }
366
+
367
+ .t-icon-cloud:before {
368
+ content: '\E03E';
369
+ }
370
+
371
+ .t-icon-code:before {
372
+ content: '\E03F';
373
+ }
374
+
375
+ .t-icon-control-platform:before {
376
+ content: '\E040';
377
+ }
378
+
379
+ .t-icon-creditcard:before {
380
+ content: '\E041';
381
+ }
382
+
383
+ .t-icon-dashboard:before {
384
+ content: '\E042';
385
+ }
386
+
387
+ .t-icon-delete:before {
388
+ content: '\E043';
389
+ }
390
+
391
+ .t-icon-desktop:before {
392
+ content: '\E044';
393
+ }
394
+
395
+ .t-icon-discount-filled:before {
396
+ content: '\E045';
397
+ }
398
+
399
+ .t-icon-discount:before {
400
+ content: '\E046';
401
+ }
402
+
403
+ .t-icon-download:before {
404
+ content: '\E047';
405
+ }
406
+
407
+ .t-icon-edit-1:before {
408
+ content: '\E048';
409
+ }
410
+
411
+ .t-icon-edit:before {
412
+ content: '\E049';
413
+ }
414
+
415
+ .t-icon-ellipsis:before {
416
+ content: '\E04A';
417
+ }
418
+
419
+ .t-icon-enter:before {
420
+ content: '\E04B';
421
+ }
422
+
423
+ .t-icon-error-circle-filled:before {
424
+ content: '\E04C';
425
+ }
426
+
427
+ .t-icon-error-circle:before {
428
+ content: '\E04D';
429
+ }
430
+
431
+ .t-icon-error:before {
432
+ content: '\E04E';
433
+ }
434
+
435
+ .t-icon-file-add:before {
436
+ content: '\E04F';
437
+ }
438
+
439
+ .t-icon-file-copy:before {
440
+ content: '\E050';
441
+ }
442
+
443
+ .t-icon-file-excel:before {
444
+ content: '\E051';
445
+ }
446
+
447
+ .t-icon-file-image:before {
448
+ content: '\E052';
449
+ }
450
+
451
+ .t-icon-file-paste:before {
452
+ content: '\E053';
453
+ }
454
+
455
+ .t-icon-file-pdf:before {
456
+ content: '\E054';
457
+ }
458
+
459
+ .t-icon-file-powerpoint:before {
460
+ content: '\E055';
461
+ }
462
+
463
+ .t-icon-file-unknown:before {
464
+ content: '\E056';
465
+ }
466
+
467
+ .t-icon-file-word:before {
468
+ content: '\E057';
469
+ }
470
+
471
+ .t-icon-file:before {
472
+ content: '\E058';
473
+ }
474
+
475
+ .t-icon-filter-clear:before {
476
+ content: '\E059';
477
+ }
478
+
479
+ .t-icon-filter:before {
480
+ content: '\E05A';
481
+ }
482
+
483
+ .t-icon-flag:before {
484
+ content: '\E05B';
485
+ }
486
+
487
+ .t-icon-folder-add:before {
488
+ content: '\E05C';
489
+ }
490
+
491
+ .t-icon-folder-open:before {
492
+ content: '\E05D';
493
+ }
494
+
495
+ .t-icon-folder:before {
496
+ content: '\E05E';
497
+ }
498
+
499
+ .t-icon-fork:before {
500
+ content: '\E05F';
501
+ }
502
+
503
+ .t-icon-format-horizontal-align-bottom:before {
504
+ content: '\E060';
505
+ }
506
+
507
+ .t-icon-format-horizontal-align-center:before {
508
+ content: '\E061';
509
+ }
510
+
511
+ .t-icon-format-horizontal-align-top:before {
512
+ content: '\E062';
513
+ }
514
+
515
+ .t-icon-format-vertical-align-center:before {
516
+ content: '\E063';
517
+ }
518
+
519
+ .t-icon-format-vertical-align-left:before {
520
+ content: '\E064';
521
+ }
522
+
523
+ .t-icon-format-vertical-align-right:before {
524
+ content: '\E065';
525
+ }
526
+
527
+ .t-icon-forward:before {
528
+ content: '\E066';
529
+ }
530
+
531
+ .t-icon-fullscreen-exit:before {
532
+ content: '\E067';
533
+ }
534
+
535
+ .t-icon-fullscreen:before {
536
+ content: '\E068';
537
+ }
538
+
539
+ .t-icon-gender-female:before {
540
+ content: '\E069';
541
+ }
542
+
543
+ .t-icon-gender-male:before {
544
+ content: '\E06A';
545
+ }
546
+
547
+ .t-icon-gift:before {
548
+ content: '\E06B';
549
+ }
550
+
551
+ .t-icon-heart-filled:before {
552
+ content: '\E06C';
553
+ }
554
+
555
+ .t-icon-heart:before {
556
+ content: '\E06D';
557
+ }
558
+
559
+ .t-icon-help-circle-filled:before {
560
+ content: '\E06E';
561
+ }
562
+
563
+ .t-icon-help-circle:before {
564
+ content: '\E06F';
565
+ }
566
+
567
+ .t-icon-help:before {
568
+ content: '\E070';
569
+ }
570
+
571
+ .t-icon-history:before {
572
+ content: '\E071';
573
+ }
574
+
575
+ .t-icon-home:before {
576
+ content: '\E072';
577
+ }
578
+
579
+ .t-icon-hourglass:before {
580
+ content: '\E073';
581
+ }
582
+
583
+ .t-icon-image:before {
584
+ content: '\E074';
585
+ }
586
+
587
+ .t-icon-info-circle-filled:before {
588
+ content: '\E075';
589
+ }
590
+
591
+ .t-icon-info-circle:before {
592
+ content: '\E076';
593
+ }
594
+
595
+ .t-icon-internet:before {
596
+ content: '\E077';
597
+ }
598
+
599
+ .t-icon-jump:before {
600
+ content: '\E078';
601
+ }
602
+
603
+ .t-icon-laptop:before {
604
+ content: '\E079';
605
+ }
606
+
607
+ .t-icon-layers:before {
608
+ content: '\E07A';
609
+ }
610
+
611
+ .t-icon-link-unlink:before {
612
+ content: '\E07B';
613
+ }
614
+
615
+ .t-icon-link:before {
616
+ content: '\E07C';
617
+ }
618
+
619
+ .t-icon-loading:before {
620
+ content: '\E07D';
621
+ }
622
+
623
+ .t-icon-location:before {
624
+ content: '\E07E';
625
+ }
626
+
627
+ .t-icon-lock-off:before {
628
+ content: '\E07F';
629
+ }
630
+
631
+ .t-icon-lock-on:before {
632
+ content: '\E080';
633
+ }
634
+
635
+ .t-icon-login:before {
636
+ content: '\E081';
637
+ }
638
+
639
+ .t-icon-logo-android:before {
640
+ content: '\E082';
641
+ }
642
+
643
+ .t-icon-logo-apple-filled:before {
644
+ content: '\E083';
645
+ }
646
+
647
+ .t-icon-logo-apple:before {
648
+ content: '\E084';
649
+ }
650
+
651
+ .t-icon-logo-chrome-filled:before {
652
+ content: '\E085';
653
+ }
654
+
655
+ .t-icon-logo-chrome:before {
656
+ content: '\E086';
657
+ }
658
+
659
+ .t-icon-logo-codepen:before {
660
+ content: '\E087';
661
+ }
662
+
663
+ .t-icon-logo-github-filled:before {
664
+ content: '\E088';
665
+ }
666
+
667
+ .t-icon-logo-github:before {
668
+ content: '\E089';
669
+ }
670
+
671
+ .t-icon-logo-ie-filled:before {
672
+ content: '\E08A';
673
+ }
674
+
675
+ .t-icon-logo-ie:before {
676
+ content: '\E08B';
677
+ }
678
+
679
+ .t-icon-logo-windows-filled:before {
680
+ content: '\E08C';
681
+ }
682
+
683
+ .t-icon-logo-windows:before {
684
+ content: '\E08D';
685
+ }
686
+
687
+ .t-icon-logout:before {
688
+ content: '\E08E';
689
+ }
690
+
691
+ .t-icon-mail:before {
692
+ content: '\E08F';
693
+ }
694
+
695
+ .t-icon-menu-fold:before {
696
+ content: '\E090';
697
+ }
698
+
699
+ .t-icon-menu-unfold:before {
700
+ content: '\E091';
701
+ }
702
+
703
+ .t-icon-minus-circle-filled:before {
704
+ content: '\E092';
705
+ }
706
+
707
+ .t-icon-minus-circle:before {
708
+ content: '\E093';
709
+ }
710
+
711
+ .t-icon-minus-rectangle:before {
712
+ content: '\E094';
713
+ }
714
+
715
+ .t-icon-mobile-vibrate:before {
716
+ content: '\E095';
717
+ }
718
+
719
+ .t-icon-mobile:before {
720
+ content: '\E096';
721
+ }
722
+
723
+ .t-icon-money-circle:before {
724
+ content: '\E097';
725
+ }
726
+
727
+ .t-icon-more:before {
728
+ content: '\E098';
729
+ }
730
+
731
+ .t-icon-move:before {
732
+ content: '\E099';
733
+ }
734
+
735
+ .t-icon-next:before {
736
+ content: '\E09A';
737
+ }
738
+
739
+ .t-icon-notification-filled:before {
740
+ content: '\E09B';
741
+ }
742
+
743
+ .t-icon-notification:before {
744
+ content: '\E09C';
745
+ }
746
+
747
+ .t-icon-order-adjustment-column:before {
748
+ content: '\E09D';
749
+ }
750
+
751
+ .t-icon-order-ascending:before {
752
+ content: '\E09E';
753
+ }
754
+
755
+ .t-icon-order-descending:before {
756
+ content: '\E09F';
757
+ }
758
+
759
+ .t-icon-page-first:before {
760
+ content: '\E0A0';
761
+ }
762
+
763
+ .t-icon-page-last:before {
764
+ content: '\E0A1';
765
+ }
766
+
767
+ .t-icon-pause-circle-filled:before {
768
+ content: '\E0A2';
769
+ }
770
+
771
+ .t-icon-photo:before {
772
+ content: '\E0A3';
773
+ }
774
+
775
+ .t-icon-pin:before {
776
+ content: '\E0A4';
777
+ }
778
+
779
+ .t-icon-play-circle-filled:before {
780
+ content: '\E0A5';
781
+ }
782
+
783
+ .t-icon-play-circle-stroke:before {
784
+ content: '\E0A6';
785
+ }
786
+
787
+ .t-icon-play-circle:before {
788
+ content: '\E0A7';
789
+ }
790
+
791
+ .t-icon-play:before {
792
+ content: '\E0A8';
793
+ }
794
+
795
+ .t-icon-poweroff:before {
796
+ content: '\E0A9';
797
+ }
798
+
799
+ .t-icon-precise-monitor:before {
800
+ content: '\E0AA';
801
+ }
802
+
803
+ .t-icon-previous:before {
804
+ content: '\E0AB';
805
+ }
806
+
807
+ .t-icon-print:before {
808
+ content: '\E0AC';
809
+ }
810
+
811
+ .t-icon-qrcode:before {
812
+ content: '\E0AD';
813
+ }
814
+
815
+ .t-icon-queue:before {
816
+ content: '\E0AE';
817
+ }
818
+
819
+ .t-icon-rectangle:before {
820
+ content: '\E0AF';
821
+ }
822
+
823
+ .t-icon-refresh:before {
824
+ content: '\E0B0';
825
+ }
826
+
827
+ .t-icon-remove:before {
828
+ content: '\E0B1';
829
+ }
830
+
831
+ .t-icon-rollback:before {
832
+ content: '\E0B2';
833
+ }
834
+
835
+ .t-icon-root-list:before {
836
+ content: '\E0B3';
837
+ }
838
+
839
+ .t-icon-round:before {
840
+ content: '\E0B4';
841
+ }
842
+
843
+ .t-icon-save:before {
844
+ content: '\E0B5';
845
+ }
846
+
847
+ .t-icon-scan:before {
848
+ content: '\E0B6';
849
+ }
850
+
851
+ .t-icon-search:before {
852
+ content: '\E0B7';
853
+ }
854
+
855
+ .t-icon-secured:before {
856
+ content: '\E0B8';
857
+ }
858
+
859
+ .t-icon-server:before {
860
+ content: '\E0B9';
861
+ }
862
+
863
+ .t-icon-service:before {
864
+ content: '\E0BA';
865
+ }
866
+
867
+ .t-icon-setting:before {
868
+ content: '\E0BB';
869
+ }
870
+
871
+ .t-icon-share:before {
872
+ content: '\E0BC';
873
+ }
874
+
875
+ .t-icon-shop:before {
876
+ content: '\E0BD';
877
+ }
878
+
879
+ .t-icon-slash:before {
880
+ content: '\E0BE';
881
+ }
882
+
883
+ .t-icon-sound:before {
884
+ content: '\E0BF';
885
+ }
886
+
887
+ .t-icon-star-filled:before {
888
+ content: '\E0C0';
889
+ }
890
+
891
+ .t-icon-star:before {
892
+ content: '\E0C1';
893
+ }
894
+
895
+ .t-icon-stop-circle-1:before {
896
+ content: '\E0C2';
897
+ }
898
+
899
+ .t-icon-stop-circle-filled:before {
900
+ content: '\E0C3';
901
+ }
902
+
903
+ .t-icon-stop-circle:before {
904
+ content: '\E0C4';
905
+ }
906
+
907
+ .t-icon-stop:before {
908
+ content: '\E0C5';
909
+ }
910
+
911
+ .t-icon-swap-left:before {
912
+ content: '\E0C6';
913
+ }
914
+
915
+ .t-icon-swap-right:before {
916
+ content: '\E0C7';
917
+ }
918
+
919
+ .t-icon-swap:before {
920
+ content: '\E0C8';
921
+ }
922
+
923
+ .t-icon-thumb-down:before {
924
+ content: '\E0C9';
925
+ }
926
+
927
+ .t-icon-thumb-up:before {
928
+ content: '\E0CA';
929
+ }
930
+
931
+ .t-icon-time-filled:before {
932
+ content: '\E0CB';
933
+ }
934
+
935
+ .t-icon-time:before {
936
+ content: '\E0CC';
937
+ }
938
+
939
+ .t-icon-tips:before {
940
+ content: '\E0CD';
941
+ }
942
+
943
+ .t-icon-tools:before {
944
+ content: '\E0CE';
945
+ }
946
+
947
+ .t-icon-unfold-less:before {
948
+ content: '\E0CF';
949
+ }
950
+
951
+ .t-icon-unfold-more:before {
952
+ content: '\E0D0';
953
+ }
954
+
955
+ .t-icon-upload:before {
956
+ content: '\E0D1';
957
+ }
958
+
959
+ .t-icon-usb:before {
960
+ content: '\E0D2';
961
+ }
962
+
963
+ .t-icon-user-add:before {
964
+ content: '\E0D3';
965
+ }
966
+
967
+ .t-icon-user-avatar:before {
968
+ content: '\E0D4';
969
+ }
970
+
971
+ .t-icon-user-circle:before {
972
+ content: '\E0D5';
973
+ }
974
+
975
+ .t-icon-user-clear:before {
976
+ content: '\E0D6';
977
+ }
978
+
979
+ .t-icon-user-talk:before {
980
+ content: '\E0D7';
981
+ }
982
+
983
+ .t-icon-user:before {
984
+ content: '\E0D8';
985
+ }
986
+
987
+ .t-icon-usergroup-add:before {
988
+ content: '\E0D9';
989
+ }
990
+
991
+ .t-icon-usergroup-clear:before {
992
+ content: '\E0DA';
993
+ }
994
+
995
+ .t-icon-usergroup:before {
996
+ content: '\E0DB';
997
+ }
998
+
999
+ .t-icon-video:before {
1000
+ content: '\E0DC';
1001
+ }
1002
+
1003
+ .t-icon-view-column:before {
1004
+ content: '\E0DD';
1005
+ }
1006
+
1007
+ .t-icon-view-list:before {
1008
+ content: '\E0DE';
1009
+ }
1010
+
1011
+ .t-icon-view-module:before {
1012
+ content: '\E0DF';
1013
+ }
1014
+
1015
+ .t-icon-wallet:before {
1016
+ content: '\E0E0';
1017
+ }
1018
+
1019
+ .t-icon-wifi:before {
1020
+ content: '\E0E1';
1021
+ }
1022
+
1023
+ .t-icon-zoom-in:before {
1024
+ content: '\E0E2';
1025
+ }
1026
+
1027
+ .t-icon-zoom-out:before {
1028
+ content: '\E0E3';
1029
+ }
1030
+
1031
+ @font-face {
1032
+ font-family: 't';
1033
+ src: url('https://tdesign.gtimg.com/icon/0.0.3/fonts/t.eot'),
1034
+ /* for IE 9*/ url('https://tdesign.gtimg.com/icon/0.0.3/fonts/t.eot?#iefix')
1035
+ format('embedded-opentype'),
1036
+ /* under IE9 */ url('https://tdesign.gtimg.com/icon/0.0.3/fonts/t.woff')
1037
+ format('woff'),
1038
+ /* chrome, firefox */
1039
+ url('https://tdesign.gtimg.com/icon/0.0.3/fonts/t.ttf') format('truetype'),
1040
+ /* opera, Safari, Android, iOS 4.2+ */
1041
+ url('https://tdesign.gtimg.com/icon/0.0.3/fonts/t.svg') format('svg');
1042
+ /* iOS 4.1- */
1043
+ font-weight: normal;
1044
+ font-style: normal;
1045
+ }
1046
+
1047
+ :host {
1048
+ display: inline-flex;
1049
+ align-items: center;
1050
+ justify-content: center;
1051
+ }
1052
+
1053
+ .lcap-icon {
1054
+ font-size: 34px;
1055
+ display: inline-block;
1056
+ font-family: 'lcap-icon' !important;
1057
+ speak: none;
1058
+ font-style: normal;
1059
+ font-weight: normal;
1060
+ font-variant: normal;
1061
+ text-transform: none;
1062
+ text-rendering: auto;
1063
+ line-height: 1;
1064
+ -webkit-font-smoothing: antialiased;
1065
+ -moz-osx-font-smoothing: grayscale;
1066
+ }
1067
+
1068
+ .lcap-icon-nointernet:before {
1069
+ content: '\e900';
1070
+ }
1071
+
1072
+ .lcap-icon-success:before {
1073
+ content: '\e901';
1074
+ }
1075
+
1076
+ .lcap-icon-warning:before {
1077
+ content: '\e902';
1078
+ }
1079
+
1080
+ .lcap-icon-pending:before {
1081
+ content: '\e903';
1082
+ }
1083
+
1084
+ .lcap-icon-refresh:before {
1085
+ content: '\e904';
1086
+ }
1087
+
1088
+ .lcap-icon-folder:before {
1089
+ content: '\e905';
1090
+ }
1091
+
1092
+ .lcap-icon-arrowup:before {
1093
+ content: '\e906';
1094
+ }
1095
+
1096
+ .lcap-icon-arrowdown:before {
1097
+ content: '\e907';
1098
+ }
1099
+
1100
+ .lcap-icon-arrowleft:before {
1101
+ content: '\e908';
1102
+ }
1103
+
1104
+ .lcap-icon-arrowright:before {
1105
+ content: '\e909';
1106
+ }
1107
+
1108
+ .lcap-icon-chevronup:before {
1109
+ content: '\e90a';
1110
+ }
1111
+
1112
+ .lcap-icon-chevrondown:before {
1113
+ content: '\e90b';
1114
+ }
1115
+
1116
+ .lcap-icon-chevronleft:before {
1117
+ content: '\e90c';
1118
+ }
1119
+
1120
+ .lcap-icon-chevronright:before {
1121
+ content: '\e90d';
1122
+ }
1123
+
1124
+ .lcap-icon-delete:before {
1125
+ content: '\e90e';
1126
+ }
1127
+
1128
+ .lcap-icon-edit:before {
1129
+ content: '\e90f';
1130
+ }
1131
+
1132
+ .lcap-icon-search:before {
1133
+ content: '\e910';
1134
+ }
1135
+
1136
+ .lcap-icon-check:before {
1137
+ content: '\e911';
1138
+ }
1139
+
1140
+ .lcap-icon-close:before {
1141
+ content: '\e912';
1142
+ }
1143
+
1144
+ .lcap-icon-add:before {
1145
+ content: '\e913';
1146
+ }
1147
+
1148
+ .lcap-icon-download:before {
1149
+ content: '\e914';
1150
+ }
1151
+
1152
+ .lcap-icon-success-fill:before {
1153
+ content: '\e915';
1154
+ }
1155
+
1156
+ .lcap-icon-close-fill:before {
1157
+ content: '\e916';
1158
+ }
1159
+
1160
+ .lcap-icon-minus-fill:before {
1161
+ content: '\e917';
1162
+ }
1163
+
1164
+ .lcap-icon-add-fill:before {
1165
+ content: '\e918';
1166
+ }
1167
+
1168
+ .lcap-icon-info-fill:before {
1169
+ content: '\e919';
1170
+ }
1171
+
1172
+ .lcap-icon-pending-fill:before {
1173
+ content: '\e91a';
1174
+ }
1175
+
1176
+ .lcap-icon-warning-fill:before {
1177
+ content: '\e91b';
1178
+ }
1179
+
1180
+ .lcap-icon-more:before {
1181
+ content: '\e91c';
1182
+ }
1183
+
1184
+ .lcap-icon-star:before {
1185
+ content: '\e91d';
1186
+ }
1187
+
1188
+ .lcap-icon-star-fill:before {
1189
+ content: '\e91e';
1190
+ }
1191
+
1192
+ .lcap-icon-location:before {
1193
+ content: '\e91f';
1194
+ }
1195
+
1196
+ .lcap-icon-question:before {
1197
+ content: '\e920';
1198
+ }
1199
+
1200
+ .wd-lcap-icon-nointernet:before {
1201
+ content: '\e900';
1202
+ }
1203
+
1204
+ .wd-lcap-icon-success:before {
1205
+ content: '\e901';
1206
+ }
1207
+
1208
+ .wd-lcap-icon-warning:before {
1209
+ content: '\e902';
1210
+ }
1211
+
1212
+ .wd-lcap-icon-pending:before {
1213
+ content: '\e903';
1214
+ }
1215
+
1216
+ .wd-lcap-icon-refresh:before {
1217
+ content: '\e904';
1218
+ }
1219
+
1220
+ .wd-lcap-icon-folder:before {
1221
+ content: '\e905';
1222
+ }
1223
+
1224
+ .wd-lcap-icon-arrowup:before {
1225
+ content: '\e906';
1226
+ }
1227
+
1228
+ .wd-lcap-icon-arrowdown:before {
1229
+ content: '\e907';
1230
+ }
1231
+
1232
+ .wd-lcap-icon-arrowleft:before {
1233
+ content: '\e908';
1234
+ }
1235
+
1236
+ .wd-lcap-icon-arrowright:before {
1237
+ content: '\e909';
1238
+ }
1239
+
1240
+ .wd-lcap-icon-chevronup:before {
1241
+ content: '\e90a';
1242
+ }
1243
+
1244
+ .wd-lcap-icon-chevrondown:before {
1245
+ content: '\e90b';
1246
+ }
1247
+
1248
+ .wd-lcap-icon-chevronleft:before {
1249
+ content: '\e90c';
1250
+ }
1251
+
1252
+ .wd-lcap-icon-chevronright:before {
1253
+ content: '\e90d';
1254
+ }
1255
+
1256
+ .wd-lcap-icon-delete:before {
1257
+ content: '\e90e';
1258
+ }
1259
+
1260
+ .wd-lcap-icon-edit:before {
1261
+ content: '\e90f';
1262
+ }
1263
+
1264
+ .wd-lcap-icon-search:before {
1265
+ content: '\e910';
1266
+ }
1267
+
1268
+ .wd-lcap-icon-check:before {
1269
+ content: '\e911';
1270
+ }
1271
+
1272
+ .wd-lcap-icon-close:before {
1273
+ content: '\e912';
1274
+ }
1275
+
1276
+ .wd-lcap-icon-add:before {
1277
+ content: '\e913';
1278
+ }
1279
+
1280
+ .wd-lcap-icon-download:before {
1281
+ content: '\e914';
1282
+ }
1283
+
1284
+ .wd-lcap-icon-success-fill:before {
1285
+ content: '\e915';
1286
+ }
1287
+
1288
+ .wd-lcap-icon-close-fill:before {
1289
+ content: '\e916';
1290
+ }
1291
+
1292
+ .wd-lcap-icon-minus-fill:before {
1293
+ content: '\e917';
1294
+ }
1295
+
1296
+ .wd-lcap-icon-add-fill:before {
1297
+ content: '\e918';
1298
+ }
1299
+
1300
+ .wd-lcap-icon-info-fill:before {
1301
+ content: '\e919';
1302
+ }
1303
+
1304
+ .wd-lcap-icon-pending-fill:before {
1305
+ content: '\e91a';
1306
+ }
1307
+
1308
+ .wd-lcap-icon-warning-fill:before {
1309
+ content: '\e91b';
1310
+ }
1311
+
1312
+ .wd-lcap-icon-more:before {
1313
+ content: '\e91c';
1314
+ }
1315
+
1316
+ .wd-lcap-icon-star:before {
1317
+ content: '\e91d';
1318
+ }
1319
+
1320
+ .wd-lcap-icon-star-fill:before {
1321
+ content: '\e91e';
1322
+ }
1323
+
1324
+ .wd-lcap-icon-location:before {
1325
+ content: '\e91f';
1326
+ }
1327
+
1328
+ .wd-lcap-icon-question:before {
1329
+ content: '\e920';
1330
+ }
1331
+
1332
+ /* 占位符 */
1333
+ .weda-ui.weda-ui-to-wd .weui-input__placeholder,
1334
+ .wd-form-item.wd-mp-form-item .weui-input__placeholder {
1335
+ color: var(--wd-color-text-placeholder);
1336
+ }
1337
+
1338
+ /* 外边框 */
1339
+ .weui-cells__group_form .weui-cells::before,
1340
+ .weda-ui.gsd-h5-react-formitem.weda-ui-to-wd .weui-cells::before {
1341
+ border-top-color: transparent;
1342
+ left: 0;
1343
+ right: 0;
1344
+ }
1345
+
1346
+ .weui-cells__group_form .weui-cells::after,
1347
+ .weda-ui.gsd-h5-react-formitem.weda-ui-to-wd .weui-cells::after {
1348
+ border-bottom-width: var(--wd-form-item-border-width);
1349
+ border-bottom-color: var(--wd-form-item-border-color);
1350
+ left: 0;
1351
+ right: 0;
1352
+ transform: none;
1353
+ -webkit-transform: none;
1354
+ }
1355
+
1356
+ /* 标题 */
1357
+ .weda-ui.gsd-h5-react-formitem.weda-ui-to-wd
1358
+ .weda-formcells.weui-flex
1359
+ .weda-formcells__label {
1360
+ width: var(--wd-form-item-label-width);
1361
+ padding-left: 0;
1362
+ padding-right: 0;
1363
+ margin-right: var(--wd-form-item-label-mr);
1364
+ align-items: flex-start;
1365
+ }
1366
+
1367
+ /* 两边间距 */
1368
+ .weda-ui.gsd-h5-react-formitem.weda-ui-to-wd > .weda-ui {
1369
+ padding-left: var(--wd-form-item-pd);
1370
+ padding-right: var(--wd-form-item-pd);
1371
+ }
1372
+
1373
+ .weui-cells__group_form
1374
+ .weda-ui.gsd-h5-react-formitem.weda-ui-to-wd
1375
+ .weui-cells {
1376
+ margin-left: 0;
1377
+ margin-right: 0;
1378
+ }
1379
+
1380
+ /* 必填标识 */
1381
+ .weda-ui.gsd-h5-react-formitem.weda-ui-to-wd .weda-formcells__flag {
1382
+ margin-right: var(--wd-space-base);
1383
+ color: var(--wd-color-text-error);
1384
+ margin-left: 0;
1385
+ font-size: var(--wd-font-size-default);
1386
+ font-family: inherit;
1387
+ }
1388
+
1389
+ /* 垂直时 */
1390
+ .weda-ui.gsd-h5-react-formitem.weda-ui-to-wd.wa-comp-CLOUDBASE_STANDARD-FormItem
1391
+ .weda-formcells
1392
+ .weda-formcells__label,
1393
+ .weda-formcells .weda-formcells__content .weui-cell {
1394
+ padding-left: 0;
1395
+ }
1396
+
1397
+ /* 页头/页脚覆盖低码样式 */
1398
+ .wa-comp-CLOUDBASE_STANDARD-Footer.lcap-footer.fixed,
1399
+ .wa-comp-CLOUDBASE_STANDARD-Header.lcap-header.fixed {
1400
+ z-index: 1;
1401
+ }
1402
+
1403
+ /* 事件样式 start */
1404
+ .wd-event-tap:active {
1405
+ box-shadow: inset 0 -100vh var(--wd-color-bg-active);
1406
+ }
1407
+
1408
+ /* 规避组件样式: WdButton */
1409
+ .wd-btn.wd-event-tap:active {
1410
+ box-shadow: unset;
1411
+ }
1412
+ /* 事件样式 end */