@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,1123 @@
1
+ @charset "UTF-8";
2
+ .wd-progress {
3
+ --wd-progress-color-text: var(--wd-color-text-default);
4
+ --wd-progress-bg: var(--wd-color-gray-2);
5
+ --wd-progress-color-default: var(--wd-color-brand);
6
+ --wd-progress-color-success: var(--wd-color-success);
7
+ --wd-progress-color-error: var(--wd-color-error);
8
+ --wd-progress-radius: 0;
9
+ --wd-progress-height: 6px;
10
+ }
11
+
12
+ .wd-progress {
13
+ min-width: 100px;
14
+ background-color: var(--wd-progress-bg);
15
+ position: relative;
16
+ border: none;
17
+ border-radius: var(--wd-progress-radius);
18
+ color: var(--wd-progress-text-color);
19
+ }
20
+ .wd-progress__value {
21
+ background: var(--wd-progress-color-default);
22
+ content: "";
23
+ display: block;
24
+ border-radius: var(--wd-progress-radius);
25
+ position: static;
26
+ transition: width 0.2s ease 0s;
27
+ height: var(--wd-progress-height);
28
+ }
29
+
30
+ .wd-progress-container {
31
+ flex-grow: 1;
32
+ }
33
+
34
+ .wd-form,
35
+ .wd-form-item,
36
+ .gsd-h5-react-formitem {
37
+ --wd-form-item-mb: calc(var(--wd-space-base) * 5);
38
+ --wd-form-item-pd: calc(var(--wd-space-base) * 4);
39
+ --wd-form-item-label-width: 6em;
40
+ --wd-form-item-label-mr: calc(var(--wd-space-base) * 4);
41
+ --wd-form-item-label-height-xs: var(--wd-form-item-height-xs);
42
+ --wd-form-item-label-height-sm: var(--wd-form-item-height-sm);
43
+ --wd-form-item-label-height-md: var(--wd-form-item-height-md);
44
+ --wd-form-item-label-height-lg: var(--wd-form-item-height-lg);
45
+ --wd-form-container-width-sm: 31.75rem;
46
+ --wd-form-container-width-md: 39.25rem;
47
+ --wd-form-container-width-lg: 49.25rem;
48
+ --wd-form-item-width-sm: 20.25rem;
49
+ --wd-form-item-width-md: 27.75rem;
50
+ --wd-form-item-width-lg: 35.25rem;
51
+ --wd-form-item-label-color: var(--wd-color-text-form-label);
52
+ --wd-form-item-label-font-size: var(--wd-font-size-default);
53
+ --wd-form-item-label-font-weight: var(--wd-font-weight-regular);
54
+ --wd-form-item-label-color-disabled: var(--wd-color-text-form-disabled);
55
+ --wd-form-item-help-text-color: var(--wd-color-text-placeholder);
56
+ --wd-form-item-help-text-font-size: var(--wd-font-size-3);
57
+ --wd-form-item-border-color: var(--wd-color-border-default);
58
+ --wd-form-item-border-width: 0.5px;
59
+ --wd-form-title-size: var(--wd-font-size-6);
60
+ --wd-form-title-weight: 500;
61
+ --wd-form-title-line-height: calc(var(--wd-space-base) * 7);
62
+ --wd-form-title-border-color: var(--wd-color-border-separator);
63
+ --wd-form-title-pd-btm: calc(var(--wd-space-base) * 3);
64
+ --wd-form-readonly-font-weight: var(--wd-font-weight-regular);
65
+ --wd-form-readonly-font-size: var(--wd-font-size-4);
66
+ --wd-form-readonly-web-font-size: var(--wd-font-size-3);
67
+ --wd-form-readonly-font-color: var(--wd-font-gray-2);
68
+ --wd-input-limit-number-size: var(--wd-font-size-2);
69
+ --wd-input-limit-number-weight: var(--wd-font-weight-regular);
70
+ --wd-input-limit-number-color: var(--wd-color-text-placeholder);
71
+ }
72
+
73
+ .wd-form.wd-form--weui,
74
+ .wd-form-item.wd-form-item--weui {
75
+ --wd-form-item-mb: calc(var(--wd-space-base) * 4);
76
+ --wd-form-item-label-font-size: var(--wd-font-size-4);
77
+ --wd-form-weui-control-height: calc(var(--wd-space-base) * 14);
78
+ --wd-form-weui-item-label-pd: calc(var(--wd-space-base) * 3);
79
+ --wd-form-weui-item-press-border-radius: var(--wd-space-base);
80
+ --wd-form-weui-input-wrap-bg-focus: var(--wd-color-gray-1);
81
+ --wd-form-weui-input-wrap-text-disabled: var(--wd-color-text-form-disabled);
82
+ --wd-form-weui-input-group-addon-min-width: 5.125rem;
83
+ }
84
+
85
+ .wd-form__action {
86
+ padding-top: 24px;
87
+ padding-bottom: 24px;
88
+ }
89
+
90
+ @media screen and (max-width: 768px) {
91
+ .wd-form__action {
92
+ padding-top: 24px;
93
+ padding-bottom: var(--wd-form-item-mb);
94
+ padding-left: 16px;
95
+ padding-right: 16px;
96
+ }
97
+ }
98
+ .wd-form__action > .wd-h5-btn,
99
+ .wd-form__action > .wd-mp-btn {
100
+ display: block;
101
+ width: 100%;
102
+ margin-bottom: 8px;
103
+ }
104
+
105
+ .wd-form__action > .wd-pc-btn {
106
+ margin-right: 8px;
107
+ }
108
+
109
+ .wd-form {
110
+ color: var(--wd-color-text-default);
111
+ font-size: var(--wd-font-size-default);
112
+ line-height: var(--wd-font-line-height-default);
113
+ box-sizing: border-box;
114
+ margin: 0;
115
+ padding: 0;
116
+ list-style: none;
117
+ }
118
+ .wd-form-title__text {
119
+ /* 不启用,复用了文本组件
120
+ font-weight: var(--wd-form-title-weight);
121
+ font-size: var(--wd-form-title-size);
122
+ line-height: var(--wd-form-title-line-height);
123
+ width: auto;
124
+ */
125
+ padding-bottom: var(--wd-form-title-pd-btm);
126
+ border-bottom: 1px solid var(--wd-form-title-border-color);
127
+ }
128
+ .wd-form-title__text-left {
129
+ text-align: left;
130
+ }
131
+ .wd-form-title__text-right {
132
+ text-align: right;
133
+ }
134
+
135
+ .wd-form-item {
136
+ margin-bottom: unset;
137
+ padding: 0px;
138
+ }
139
+ .wd-form-item.size-width-hundred {
140
+ width: 100%;
141
+ }
142
+ .wd-form-item.size-width-sm {
143
+ width: var(--wd-form-item-width-sm);
144
+ }
145
+ .wd-form-item.size-width-md {
146
+ width: var(--wd-form-item-width-md);
147
+ }
148
+ .wd-form-item.size-width-lg {
149
+ width: var(--wd-form-item-width-lg);
150
+ }
151
+ .wd-form-item-wrap {
152
+ display: flex;
153
+ }
154
+ .wd-form-item-wrap__label {
155
+ word-break: break-all;
156
+ width: var(--wd-form-item-label-width);
157
+ margin-right: var(--wd-form-item-label-mr);
158
+ color: var(--wd-form-item-label-color);
159
+ font-size: var(--wd-form-item-label-font-size);
160
+ font-weight: var(--wd-form-item-label-font-weight);
161
+ line-height: var(--wd-form-height-md);
162
+ flex: 0 0 auto;
163
+ }
164
+ .wd-form-item-wrap__label.is-disabled {
165
+ color: var(--wd-form-item-label-color-disabled);
166
+ }
167
+ .wd-form-item-wrap__label > label {
168
+ display: inline-block;
169
+ line-height: var(--wd-font-line-height-default);
170
+ }
171
+ .wd-form-item-wrap__label-explain {
172
+ margin-left: var(--wd-space-base);
173
+ position: relative;
174
+ top: -1px;
175
+ }
176
+ .wd-form-item-wrap__label.is-nowrap .wd-form-item-wrap__label-text {
177
+ display: inline-block;
178
+ white-space: nowrap;
179
+ overflow: hidden;
180
+ text-overflow: ellipsis;
181
+ }
182
+ .wd-form-item-wrap__label.is-nowrap .wd-form-item-wrap__label-explain {
183
+ display: flex;
184
+ align-items: center;
185
+ }
186
+ .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label-explain {
187
+ display: flex;
188
+ align-items: center;
189
+ }
190
+ .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label {
191
+ display: flex;
192
+ }
193
+ .wd-form-item-wrap__control {
194
+ flex: auto;
195
+ width: 100%;
196
+ }
197
+ .wd-form-item-wrap__control-wrap {
198
+ display: flex;
199
+ align-items: center;
200
+ min-height: calc(var(--wd-space-base) * 6);
201
+ }
202
+ .wd-form-item-wrap__control-wrap--right {
203
+ justify-content: flex-end;
204
+ }
205
+ .wd-form-item-wrap__control-wrap .wd-form-input-wrap.wd-form-inherit--font {
206
+ font-family: inherit;
207
+ }
208
+ .wd-form-item-wrap__control.is-press {
209
+ border-color: transparent;
210
+ background-color: var(--wd-form-weui-input-wrap-bg-focus);
211
+ box-shadow: none;
212
+ border-radius: var(--wd-form-weui-item-press-border-radius);
213
+ }
214
+ .wd-form-item-wrap__control.is-press .wd-form-input-wrap {
215
+ border-color: transparent;
216
+ background-color: transparent;
217
+ box-shadow: none;
218
+ }
219
+ .wd-form-item-wrap__control.is-press .wd-form-input-wrap__label {
220
+ line-height: none;
221
+ }
222
+ .wd-form-item.is-required .wd-form-item-wrap__label-text::before {
223
+ content: "*";
224
+ color: var(--wd-color-text-error);
225
+ margin-right: var(--wd-space-base);
226
+ }
227
+ .wd-form-item.is-borderless .wd-form-input-wrap:not(.is-not-h5) {
228
+ padding: 0;
229
+ border: none;
230
+ border-radius: 0;
231
+ }
232
+ .wd-form-item.is-borderless .wd-form-input-wrap:not(.is-not-h5).is-focused:not(.is-disabled), .wd-form-item.is-borderless .wd-form-input-wrap:not(.is-not-h5):focus:not(.is-disabled) {
233
+ border-color: transparent;
234
+ background-color: transparent;
235
+ box-shadow: none;
236
+ border-radius: var(--wd-form-weui-item-press-border-radius);
237
+ }
238
+ .wd-form-item.is-borderless .wd-form-input-wrap:not(.is-not-h5).is-disabled {
239
+ border-color: transparent;
240
+ background-color: transparent;
241
+ box-shadow: none;
242
+ color: var(--wd-form-weui-input-wrap-text-disabled);
243
+ cursor: not-allowed;
244
+ }
245
+ .wd-form-item.is-borderless .wd-form-input-wrap:not(.is-not-h5).is-disabled input {
246
+ cursor: not-allowed;
247
+ }
248
+ .wd-form-item.is-borderless .wd-form-input-wrap:not(.is-not-h5).is-disabled ::-webkit-input-placeholder {
249
+ color: var(--wd-form-weui-input-wrap-text-disabled);
250
+ }
251
+ .wd-form-item.is-borderless .wd-form-input-wrap:not(.is-not-h5).is-disabled :-moz-placeholder {
252
+ color: var(--wd-form-weui-input-wrap-text-disabled);
253
+ }
254
+ .wd-form-item.is-borderless .wd-form-input-wrap:not(.is-not-h5).is-disabled ::-moz-placeholder {
255
+ color: var(--wd-form-weui-input-wrap-text-disabled);
256
+ }
257
+ .wd-form-item.is-borderless .wd-form-input-wrap:not(.is-not-h5).is-disabled :-ms-input-placeholder {
258
+ color: var(--wd-form-weui-input-wrap-text-disabled);
259
+ }
260
+ .wd-form-item.is-borderless .wd-form-textarea-wrap {
261
+ height: 100%;
262
+ padding-top: calc(var(--wd-space-base) * 2);
263
+ }
264
+ .wd-form-item.is-borderless .wd-form-input-group:not(.is-not-h5) .wd-form-input-group__addon {
265
+ background: none;
266
+ border: none;
267
+ position: relative;
268
+ min-width: auto;
269
+ padding: 0;
270
+ }
271
+ .wd-form-item.is-borderless .wd-form-input-group:not(.is-not-h5) .wd-form-input-group__addon-left {
272
+ padding-right: calc(var(--wd-space-base) * 4);
273
+ }
274
+ .wd-form-item.is-borderless .wd-form-input-group:not(.is-not-h5) .wd-form-input-group__addon-left::after {
275
+ position: absolute;
276
+ height: calc(var(--wd-space-base) * 4);
277
+ content: "";
278
+ right: calc(var(--wd-space-base) * 2);
279
+ background: var(--wd-form-item-border-color);
280
+ width: var(--wd-form-item-border-width);
281
+ }
282
+ .wd-form-item.is-borderless .wd-form-input-group:not(.is-not-h5) .wd-form-input-group__addon-right {
283
+ padding-left: calc(var(--wd-space-base) * 4);
284
+ }
285
+ .wd-form-item.is-borderless .wd-form-input-group:not(.is-not-h5) .wd-form-input-group__addon-right::before {
286
+ position: absolute;
287
+ height: calc(var(--wd-space-base) * 4);
288
+ content: "";
289
+ left: calc(var(--wd-space-base) * 2);
290
+ background: var(--wd-form-item-border-color);
291
+ width: var(--wd-form-item-border-width);
292
+ }
293
+ .wd-form-item.is-borderless .wd-form-input-wrap__input-number-right {
294
+ width: 100%;
295
+ }
296
+ .wd-form-item.is-borderless .wd-form-input-group.is-not-h5 {
297
+ height: var(--wd-form-input-group-height-md);
298
+ }
299
+ .wd-form-item.is-borderless .wd-form-input-group.is-not-h5 .wd-form-input-group__addon {
300
+ padding: var(--wd-form-input-addon-padding);
301
+ background: var(--wd-form-input-addon-bg);
302
+ border: 1px solid var(--wd-form-input-addon-border-default);
303
+ }
304
+ .wd-form-item.is-borderless .wd-form-input-group.is-not-h5 .wd-form-input-group__addon-left {
305
+ padding: var(--wd-form-input-addon-padding);
306
+ }
307
+ .wd-form-item.is-borderless .wd-form-input-group.is-not-h5 .wd-form-input-group__addon-left::after {
308
+ width: 0px;
309
+ }
310
+ .wd-form-item.is-borderless .wd-form-input-group.is-not-h5 .wd-form-input-group__addon-right {
311
+ padding: var(--wd-form-input-addon-padding);
312
+ }
313
+ .wd-form-item.is-borderless .wd-form-input-group.is-not-h5 .wd-form-input-group__addon-right::before {
314
+ width: 0px;
315
+ }
316
+ .wd-form-item.is-borderless .wd-form-input-wrap.is-not-h5 {
317
+ border-radius: var(--wd-form-input-wrap-border-radius);
318
+ padding: var(--wd-form-input-wrap-padding);
319
+ background-color: var(--wd-form-input-wrap-bg-default);
320
+ border: 1px solid var(--wd-form-input-wrap-border-default);
321
+ height: var(--wd-form-input-wrap-height-md);
322
+ }
323
+ .wd-form-item.is-borderless .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-radius-left {
324
+ border-radius: 0 var(--wd-form-input-group-border-radius) var(--wd-form-input-group-border-radius) 0;
325
+ }
326
+ .wd-form-item.is-borderless .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-radius-right {
327
+ border-radius: var(--wd-form-input-group-border-radius) 0 0 var(--wd-form-input-group-border-radius);
328
+ }
329
+ .wd-form-item.is-borderless .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-radius {
330
+ border-radius: 0;
331
+ }
332
+ .wd-form-item.is-borderless .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-border {
333
+ border: none;
334
+ }
335
+ .wd-form-item.is-borderless .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-border.is-focused:not(.is-disabled), .wd-form-item.is-borderless .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-border:focus:not(.is-disabled) {
336
+ border-bottom: none;
337
+ }
338
+ .wd-form-item.is-borderless .wd-form-input-wrap.is-not-h5.is-focused:not(.is-disabled), .wd-form-item.is-borderless .wd-form-input-wrap.is-not-h5:focus:not(.is-disabled) {
339
+ border-color: var(--wd-form-input-wrap-border-hover);
340
+ background-color: var(--wd-form-input-wrap-bg-focus);
341
+ color: var(--wd-form-input-wrap-text-focus);
342
+ box-shadow: 0px 0px 0px 0px;
343
+ }
344
+ .wd-form-item.is-borderless .wd-form-item-wrap {
345
+ border-bottom: none;
346
+ }
347
+ .wd-form-item__help {
348
+ display: flex;
349
+ margin-top: 0.25rem;
350
+ }
351
+ .wd-form-item__help .wd-form-item-wrap__label {
352
+ visibility: hidden;
353
+ height: 1px;
354
+ }
355
+ .wd-form-item__help-text {
356
+ flex: 1 1 0px;
357
+ color: var(--wd-form-item-help-text-color);
358
+ font-size: var(--wd-form-item-help-text-font-size);
359
+ }
360
+ .wd-form-item__readonly {
361
+ font-size: var(--wd-form-readonly-font-size);
362
+ font-weight: var(--wd-form-readonly-font-weight);
363
+ color: var(--wd-form-readonly-font-color);
364
+ width: 100%;
365
+ word-break: break-word;
366
+ }
367
+ .wd-form-item__readonly.size-font-sm {
368
+ font: var(--wd-typography-body-sm);
369
+ }
370
+ .wd-form-item__readonly.size-height-sm {
371
+ height: var(--wd-form-height-sm);
372
+ }
373
+ .wd-form-item__readonly.size-width-sm {
374
+ width: var(--wd-form-width-sm);
375
+ }
376
+ .wd-form-item__readonly.size-font-md {
377
+ font: var(--wd-typography-body-md);
378
+ }
379
+ .wd-form-item__readonly.size-height-md {
380
+ height: var(--wd-form-item-height-md);
381
+ }
382
+ .wd-form-item__readonly.size-width-md {
383
+ width: var(--wd-form-width-md);
384
+ }
385
+ .wd-form-item__readonly.size-font-lg {
386
+ font: var(--wd-typography-body-lg);
387
+ }
388
+ .wd-form-item__readonly.size-height-lg {
389
+ height: var(--wd-form-item-height-lg);
390
+ }
391
+ .wd-form-item__readonly.size-width-lg {
392
+ width: var(--wd-form-width-lg);
393
+ }
394
+ .wd-form-item__readonly.size-width-hundred {
395
+ width: 100%;
396
+ }
397
+ .wd-form-item__readonly-web {
398
+ font-size: var(--wd-form-readonly-web-font-size);
399
+ font-weight: var(--wd-form-readonly-font-weight);
400
+ color: var(--wd-form-readonly-font-color);
401
+ width: 100%;
402
+ word-break: break-word;
403
+ }
404
+ .wd-form-item__readonly-web.size-font-sm {
405
+ font: var(--wd-typography-body-sm);
406
+ }
407
+ .wd-form-item__readonly-web.size-height-sm {
408
+ height: var(--wd-form-height-sm);
409
+ }
410
+ .wd-form-item__readonly-web.size-width-sm {
411
+ width: var(--wd-form-width-sm);
412
+ }
413
+ .wd-form-item__readonly-web.size-font-md {
414
+ font: var(--wd-typography-body-md);
415
+ }
416
+ .wd-form-item__readonly-web.size-height-md {
417
+ height: var(--wd-form-item-height-md);
418
+ }
419
+ .wd-form-item__readonly-web.size-width-md {
420
+ width: var(--wd-form-width-md);
421
+ }
422
+ .wd-form-item__readonly-web.size-font-lg {
423
+ font: var(--wd-typography-body-lg);
424
+ }
425
+ .wd-form-item__readonly-web.size-height-lg {
426
+ height: var(--wd-form-item-height-lg);
427
+ }
428
+ .wd-form-item__readonly-web.size-width-lg {
429
+ width: var(--wd-form-width-lg);
430
+ }
431
+ .wd-form-item__readonly-web.size-width-hundred {
432
+ width: 100%;
433
+ }
434
+ .wd-form-item.wd-textarea-root .wd-form-item-wrap, .wd-form-item.wd-rich-text-root .wd-form-item-wrap {
435
+ height: 100%;
436
+ }
437
+ .wd-form-item.wd-textarea-root .wd-form-item-wrap__control, .wd-form-item.wd-rich-text-root .wd-form-item-wrap__control {
438
+ height: 100%;
439
+ }
440
+ .wd-form-item.wd-textarea-root .wd-form-item-wrap__control-wrap, .wd-form-item.wd-rich-text-root .wd-form-item-wrap__control-wrap {
441
+ height: 100%;
442
+ }
443
+ .wd-form-item.wd-textarea-root .wd-form-item-wrap__control-wrap .wd-form-textarea-wrap, .wd-form-item.wd-rich-text-root .wd-form-item-wrap__control-wrap .wd-form-textarea-wrap {
444
+ height: 100%;
445
+ }
446
+
447
+ .wd-form--horizontal-left .wd-form-item-wrap__label,
448
+ .wd-form-item.wd-form-item--horizontal-left .wd-form-item-wrap__label {
449
+ text-align: left;
450
+ }
451
+ .wd-form--horizontal-left .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
452
+ .wd-form-item.wd-form-item--horizontal-left .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label {
453
+ justify-content: flex-start;
454
+ }
455
+
456
+ .wd-form--horizontal-right .wd-form-item-wrap__label,
457
+ .wd-form-item.wd-form-item--horizontal-right .wd-form-item-wrap__label {
458
+ text-align: right;
459
+ }
460
+ .wd-form--horizontal-right .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
461
+ .wd-form-item.wd-form-item--horizontal-right .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label {
462
+ justify-content: flex-end;
463
+ }
464
+
465
+ .wd-form--horizontal-left .wd-form-item-wrap,
466
+ .wd-form-item.wd-form-item--horizontal-left .wd-form-item-wrap,
467
+ .wd-form--horizontal-right .wd-form-item-wrap,
468
+ .wd-form-item.wd-form-item--horizontal-right .wd-form-item-wrap {
469
+ flex-direction: row;
470
+ }
471
+ .wd-form--horizontal-left .wd-form-item-wrap__label,
472
+ .wd-form-item.wd-form-item--horizontal-left .wd-form-item-wrap__label,
473
+ .wd-form--horizontal-right .wd-form-item-wrap__label,
474
+ .wd-form-item.wd-form-item--horizontal-right .wd-form-item-wrap__label {
475
+ width: var(--wd-form-item-label-width);
476
+ margin-right: var(--wd-form-item-label-mr);
477
+ }
478
+
479
+ .wd-form--vertical-left .wd-form-item-wrap,
480
+ .wd-form-item.wd-form-item--vertical-left .wd-form-item-wrap {
481
+ align-items: flex-start;
482
+ flex-direction: column;
483
+ }
484
+ .wd-form--vertical-left .wd-form-item-wrap__label,
485
+ .wd-form-item.wd-form-item--vertical-left .wd-form-item-wrap__label {
486
+ width: 100%;
487
+ justify-content: flex-start;
488
+ margin-right: 0;
489
+ line-height: 0;
490
+ padding-bottom: calc(var(--wd-space-base) * 2);
491
+ }
492
+ .wd-form--vertical-left .wd-form-item-wrap__label > label,
493
+ .wd-form-item.wd-form-item--vertical-left .wd-form-item-wrap__label > label {
494
+ line-height: var(--wd-font-line-height-default) !important;
495
+ }
496
+ .wd-form--vertical-left .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
497
+ .wd-form-item.wd-form-item--vertical-left .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label {
498
+ justify-content: flex-start;
499
+ }
500
+ .wd-form--vertical-left .wd-form-item__help,
501
+ .wd-form-item.wd-form-item--vertical-left .wd-form-item__help {
502
+ padding-left: 0;
503
+ }
504
+
505
+ .wd-form--vertical-right .wd-form-item-wrap,
506
+ .wd-form-item.wd-form-item--vertical-right .wd-form-item-wrap {
507
+ align-items: flex-end;
508
+ flex-direction: column;
509
+ }
510
+ .wd-form--vertical-right .wd-form-item-wrap__label,
511
+ .wd-form-item.wd-form-item--vertical-right .wd-form-item-wrap__label {
512
+ width: 100%;
513
+ justify-content: flex-start;
514
+ margin-right: 0;
515
+ text-align: right;
516
+ line-height: 0;
517
+ padding-bottom: calc(var(--wd-space-base) * 2);
518
+ }
519
+ .wd-form--vertical-right .wd-form-item-wrap__label > label,
520
+ .wd-form-item.wd-form-item--vertical-right .wd-form-item-wrap__label > label {
521
+ line-height: var(--wd-font-line-height-default) !important;
522
+ }
523
+ .wd-form--vertical-right .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
524
+ .wd-form-item.wd-form-item--vertical-right .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label {
525
+ justify-content: flex-end;
526
+ }
527
+ .wd-form--vertical-right .wd-form-item__help,
528
+ .wd-form-item.wd-form-item--vertical-right .wd-form-item__help {
529
+ padding-left: 0;
530
+ }
531
+
532
+ .wd-form--inline {
533
+ display: flex;
534
+ gap: calc(var(--wd-space-base) * 6);
535
+ flex-wrap: wrap;
536
+ }
537
+ .wd-form--inline .wd-form-item {
538
+ display: inline-flex;
539
+ }
540
+ .wd-form--inline .wd-form-item-wrap {
541
+ display: inline-flex;
542
+ }
543
+ .wd-form--inline .wd-form-item-wrap__label {
544
+ width: auto;
545
+ }
546
+
547
+ input,
548
+ textarea {
549
+ caret-color: var(--wd-color-brand);
550
+ }
551
+
552
+ .wd-form.wd-form--weui.wd-form-item,
553
+ .wd-form-item--weui.wd-form-item {
554
+ margin-bottom: 0;
555
+ padding: 0px var(--wd-form-item-pd);
556
+ }
557
+ .wd-form.wd-form--weui .wd-form-item-wrap,
558
+ .wd-form-item--weui .wd-form-item-wrap {
559
+ border-bottom: var(--wd-form-item-border-width) solid var(--wd-form-item-border-color);
560
+ }
561
+ .wd-form.wd-form--weui .wd-form-item-wrap__label,
562
+ .wd-form-item--weui .wd-form-item-wrap__label {
563
+ margin-bottom: 0;
564
+ padding: calc(var(--wd-space-base) * 2) 0;
565
+ }
566
+ .wd-form.wd-form--weui .wd-form-item-wrap__label.wd-radio__label,
567
+ .wd-form-item--weui .wd-form-item-wrap__label.wd-radio__label {
568
+ padding-top: calc(var(--wd-space-base) * 4);
569
+ }
570
+ .wd-form.wd-form--weui .wd-form-item-wrap__label.wd-checkbox__label,
571
+ .wd-form-item--weui .wd-form-item-wrap__label.wd-checkbox__label {
572
+ padding-top: calc(var(--wd-space-base) * 4);
573
+ }
574
+ .wd-form.wd-form--weui .wd-form-item-wrap__control,
575
+ .wd-form-item--weui .wd-form-item-wrap__control {
576
+ padding: calc(var(--wd-space-base) * 2) 0;
577
+ }
578
+ .wd-form.wd-form--weui .wd-form-item.is-borderless .wd-form-item-wrap,
579
+ .wd-form-item--weui .wd-form-item.is-borderless .wd-form-item-wrap {
580
+ border-bottom: none;
581
+ }
582
+ .wd-form.wd-form--weui .wd-form-input-wrap:not(.is-not-h5),
583
+ .wd-form-item--weui .wd-form-input-wrap:not(.is-not-h5) {
584
+ padding: 0;
585
+ border: none;
586
+ border-radius: 0;
587
+ }
588
+ .wd-form.wd-form--weui .wd-form-input-wrap:not(.is-not-h5).is-focused:not(.is-disabled), .wd-form.wd-form--weui .wd-form-input-wrap:not(.is-not-h5):focus:not(.is-disabled),
589
+ .wd-form-item--weui .wd-form-input-wrap:not(.is-not-h5).is-focused:not(.is-disabled),
590
+ .wd-form-item--weui .wd-form-input-wrap:not(.is-not-h5):focus:not(.is-disabled) {
591
+ border-color: transparent;
592
+ background-color: transparent;
593
+ box-shadow: none;
594
+ border-radius: var(--wd-form-weui-item-press-border-radius);
595
+ }
596
+ .wd-form.wd-form--weui .wd-form-input-wrap:not(.is-not-h5).is-disabled,
597
+ .wd-form-item--weui .wd-form-input-wrap:not(.is-not-h5).is-disabled {
598
+ border-color: transparent;
599
+ background-color: transparent;
600
+ box-shadow: none;
601
+ color: var(--wd-form-weui-input-wrap-text-disabled);
602
+ cursor: not-allowed;
603
+ }
604
+ .wd-form.wd-form--weui .wd-form-input-wrap:not(.is-not-h5).is-disabled input,
605
+ .wd-form-item--weui .wd-form-input-wrap:not(.is-not-h5).is-disabled input {
606
+ cursor: not-allowed;
607
+ }
608
+ .wd-form.wd-form--weui .wd-form-input-wrap:not(.is-not-h5).is-disabled ::-webkit-input-placeholder,
609
+ .wd-form-item--weui .wd-form-input-wrap:not(.is-not-h5).is-disabled ::-webkit-input-placeholder {
610
+ color: var(--wd-form-weui-input-wrap-text-disabled);
611
+ }
612
+ .wd-form.wd-form--weui .wd-form-input-wrap:not(.is-not-h5).is-disabled :-moz-placeholder,
613
+ .wd-form-item--weui .wd-form-input-wrap:not(.is-not-h5).is-disabled :-moz-placeholder {
614
+ color: var(--wd-form-weui-input-wrap-text-disabled);
615
+ }
616
+ .wd-form.wd-form--weui .wd-form-input-wrap:not(.is-not-h5).is-disabled ::-moz-placeholder,
617
+ .wd-form-item--weui .wd-form-input-wrap:not(.is-not-h5).is-disabled ::-moz-placeholder {
618
+ color: var(--wd-form-weui-input-wrap-text-disabled);
619
+ }
620
+ .wd-form.wd-form--weui .wd-form-input-wrap:not(.is-not-h5).is-disabled :-ms-input-placeholder,
621
+ .wd-form-item--weui .wd-form-input-wrap:not(.is-not-h5).is-disabled :-ms-input-placeholder {
622
+ color: var(--wd-form-weui-input-wrap-text-disabled);
623
+ }
624
+ .wd-form.wd-form--weui .wd-form-textarea-wrap,
625
+ .wd-form-item--weui .wd-form-textarea-wrap {
626
+ height: 100%;
627
+ padding-top: calc(var(--wd-space-base) * 2);
628
+ }
629
+ .wd-form.wd-form--weui .wd-form-input-group:not(.is-not-h5) .wd-form-input-group__addon,
630
+ .wd-form-item--weui .wd-form-input-group:not(.is-not-h5) .wd-form-input-group__addon {
631
+ background: none;
632
+ border: none;
633
+ position: relative;
634
+ min-width: auto;
635
+ padding: 0;
636
+ }
637
+ .wd-form.wd-form--weui .wd-form-input-group:not(.is-not-h5) .wd-form-input-group__addon-left,
638
+ .wd-form-item--weui .wd-form-input-group:not(.is-not-h5) .wd-form-input-group__addon-left {
639
+ padding-right: calc(var(--wd-space-base) * 4);
640
+ }
641
+ .wd-form.wd-form--weui .wd-form-input-group:not(.is-not-h5) .wd-form-input-group__addon-left::after,
642
+ .wd-form-item--weui .wd-form-input-group:not(.is-not-h5) .wd-form-input-group__addon-left::after {
643
+ position: absolute;
644
+ height: calc(var(--wd-space-base) * 4);
645
+ content: "";
646
+ right: calc(var(--wd-space-base) * 2);
647
+ background: var(--wd-form-item-border-color);
648
+ width: var(--wd-form-item-border-width);
649
+ }
650
+ .wd-form.wd-form--weui .wd-form-input-group:not(.is-not-h5) .wd-form-input-group__addon-right,
651
+ .wd-form-item--weui .wd-form-input-group:not(.is-not-h5) .wd-form-input-group__addon-right {
652
+ padding-left: calc(var(--wd-space-base) * 4);
653
+ }
654
+ .wd-form.wd-form--weui .wd-form-input-group:not(.is-not-h5) .wd-form-input-group__addon-right::before,
655
+ .wd-form-item--weui .wd-form-input-group:not(.is-not-h5) .wd-form-input-group__addon-right::before {
656
+ position: absolute;
657
+ height: calc(var(--wd-space-base) * 4);
658
+ content: "";
659
+ left: calc(var(--wd-space-base) * 2);
660
+ background: var(--wd-form-item-border-color);
661
+ width: var(--wd-form-item-border-width);
662
+ }
663
+ .wd-form.wd-form--weui .wd-form-input-wrap__input-number-right,
664
+ .wd-form-item--weui .wd-form-input-wrap__input-number-right {
665
+ width: 100%;
666
+ }
667
+ .wd-form.wd-form--weui .wd-form-input-group.is-not-h5,
668
+ .wd-form-item--weui .wd-form-input-group.is-not-h5 {
669
+ height: var(--wd-form-input-group-height-md);
670
+ }
671
+ .wd-form.wd-form--weui .wd-form-input-group.is-not-h5 .wd-form-input-group__addon,
672
+ .wd-form-item--weui .wd-form-input-group.is-not-h5 .wd-form-input-group__addon {
673
+ padding: var(--wd-form-input-addon-padding);
674
+ background: var(--wd-form-input-addon-bg);
675
+ border: 1px solid var(--wd-form-input-addon-border-default);
676
+ }
677
+ .wd-form.wd-form--weui .wd-form-input-group.is-not-h5 .wd-form-input-group__addon-left,
678
+ .wd-form-item--weui .wd-form-input-group.is-not-h5 .wd-form-input-group__addon-left {
679
+ padding: var(--wd-form-input-addon-padding);
680
+ }
681
+ .wd-form.wd-form--weui .wd-form-input-group.is-not-h5 .wd-form-input-group__addon-left::after,
682
+ .wd-form-item--weui .wd-form-input-group.is-not-h5 .wd-form-input-group__addon-left::after {
683
+ width: 0px;
684
+ }
685
+ .wd-form.wd-form--weui .wd-form-input-group.is-not-h5 .wd-form-input-group__addon-right,
686
+ .wd-form-item--weui .wd-form-input-group.is-not-h5 .wd-form-input-group__addon-right {
687
+ padding: var(--wd-form-input-addon-padding);
688
+ }
689
+ .wd-form.wd-form--weui .wd-form-input-group.is-not-h5 .wd-form-input-group__addon-right::before,
690
+ .wd-form-item--weui .wd-form-input-group.is-not-h5 .wd-form-input-group__addon-right::before {
691
+ width: 0px;
692
+ }
693
+ .wd-form.wd-form--weui .wd-form-input-wrap.is-not-h5,
694
+ .wd-form-item--weui .wd-form-input-wrap.is-not-h5 {
695
+ border-radius: var(--wd-form-input-wrap-border-radius);
696
+ padding: var(--wd-form-input-wrap-padding);
697
+ background-color: var(--wd-form-input-wrap-bg-default);
698
+ border: 1px solid var(--wd-form-input-wrap-border-default);
699
+ height: var(--wd-form-input-wrap-height-md);
700
+ }
701
+ .wd-form.wd-form--weui .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-radius-left,
702
+ .wd-form-item--weui .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-radius-left {
703
+ border-radius: 0 var(--wd-form-input-group-border-radius) var(--wd-form-input-group-border-radius) 0;
704
+ }
705
+ .wd-form.wd-form--weui .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-radius-right,
706
+ .wd-form-item--weui .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-radius-right {
707
+ border-radius: var(--wd-form-input-group-border-radius) 0 0 var(--wd-form-input-group-border-radius);
708
+ }
709
+ .wd-form.wd-form--weui .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-radius,
710
+ .wd-form-item--weui .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-radius {
711
+ border-radius: 0;
712
+ }
713
+ .wd-form.wd-form--weui .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-border,
714
+ .wd-form-item--weui .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-border {
715
+ border: none;
716
+ }
717
+ .wd-form.wd-form--weui .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-border.is-focused:not(.is-disabled), .wd-form.wd-form--weui .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-border:focus:not(.is-disabled),
718
+ .wd-form-item--weui .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-border.is-focused:not(.is-disabled),
719
+ .wd-form-item--weui .wd-form-input-wrap.is-not-h5.wd-form-input-wrap--no-border:focus:not(.is-disabled) {
720
+ border-bottom: none;
721
+ }
722
+ .wd-form.wd-form--weui .wd-form-input-wrap.is-not-h5.is-focused:not(.is-disabled), .wd-form.wd-form--weui .wd-form-input-wrap.is-not-h5:focus:not(.is-disabled),
723
+ .wd-form-item--weui .wd-form-input-wrap.is-not-h5.is-focused:not(.is-disabled),
724
+ .wd-form-item--weui .wd-form-input-wrap.is-not-h5:focus:not(.is-disabled) {
725
+ border-color: var(--wd-form-input-wrap-border-hover);
726
+ background-color: var(--wd-form-input-wrap-bg-focus);
727
+ color: var(--wd-form-input-wrap-text-focus);
728
+ box-shadow: 0px 0px 0px 0px;
729
+ }
730
+ .wd-form.wd-form--weui .wd-upload__control,
731
+ .wd-form-item--weui .wd-upload__control {
732
+ height: auto;
733
+ width: 100%;
734
+ border: none;
735
+ border-radius: 0;
736
+ padding: 0;
737
+ }
738
+ .wd-form.wd-form--weui .wd-upload__item-file-right .wd-icon,
739
+ .wd-form-item--weui .wd-upload__item-file-right .wd-icon {
740
+ cursor: pointer;
741
+ font-size: 20px;
742
+ }
743
+ .wd-form.wd-form--weui .wd-upload__item-file-right > img.wd-icon,
744
+ .wd-form-item--weui .wd-upload__item-file-right > img.wd-icon {
745
+ width: 1.25rem;
746
+ height: 1.25rem;
747
+ }
748
+ .wd-form.wd-form--weui.wd-radio-root .wd-form-item-wrap__control,
749
+ .wd-form-item--weui.wd-radio-root .wd-form-item-wrap__control {
750
+ padding: var(--wd-space-base) 0;
751
+ }
752
+ .wd-form.wd-form--weui.wd-radio-root .wd-form-item-wrap__control-wrap,
753
+ .wd-form-item--weui.wd-radio-root .wd-form-item-wrap__control-wrap {
754
+ min-height: calc(var(--wd-space-base) * 6);
755
+ }
756
+ .wd-form.wd-form--weui.wd-radio-root .wd-form-item-wrap__control-wrap .wd-form-item__readonly,
757
+ .wd-form-item--weui.wd-radio-root .wd-form-item-wrap__control-wrap .wd-form-item__readonly {
758
+ line-height: calc(var(--wd-space-base) * 12);
759
+ }
760
+ .wd-form.wd-form--weui.wd-radio-root .wd-radio-group,
761
+ .wd-form-item--weui.wd-radio-root .wd-radio-group {
762
+ min-height: 48px;
763
+ padding-top: 1px;
764
+ }
765
+ .wd-form.wd-form--weui.wd-radio-root .wd-radio-wrap,
766
+ .wd-form-item--weui.wd-radio-root .wd-radio-wrap {
767
+ margin-top: 0px;
768
+ margin-bottom: 0px;
769
+ padding: calc(var(--wd-space-base) * 3) 0;
770
+ }
771
+ .wd-form.wd-form--weui.wd-checkbox-root .wd-form-item-wrap__control,
772
+ .wd-form-item--weui.wd-checkbox-root .wd-form-item-wrap__control {
773
+ padding: var(--wd-space-base) 0;
774
+ }
775
+ .wd-form.wd-form--weui.wd-checkbox-root .wd-form-item-wrap__control-wrap,
776
+ .wd-form-item--weui.wd-checkbox-root .wd-form-item-wrap__control-wrap {
777
+ min-height: calc(var(--wd-space-base) * 6);
778
+ }
779
+ .wd-form.wd-form--weui.wd-checkbox-root .wd-form-item-wrap__control-wrap .wd-form-item__readonly,
780
+ .wd-form-item--weui.wd-checkbox-root .wd-form-item-wrap__control-wrap .wd-form-item__readonly {
781
+ line-height: calc(var(--wd-space-base) * 12);
782
+ }
783
+ .wd-form.wd-form--weui.wd-checkbox-root .wd-checkbox-group,
784
+ .wd-form-item--weui.wd-checkbox-root .wd-checkbox-group {
785
+ min-height: 48px;
786
+ padding-top: 1px;
787
+ }
788
+ .wd-form.wd-form--weui.wd-checkbox-root .wd-checkbox-wrap,
789
+ .wd-form-item--weui.wd-checkbox-root .wd-checkbox-wrap {
790
+ margin-top: 0px;
791
+ margin-bottom: 0px;
792
+ padding: calc(var(--wd-space-base) * 3) 0;
793
+ }
794
+
795
+ .wd-form--weui.wd-form--vertical-left.wd-switch-root .wd-form-item-wrap__control,
796
+ .wd-form-item--weui.wd-form-item--vertical-left.wd-switch-root .wd-form-item-wrap__control,
797
+ .wd-form--weui.wd-form--vertical-right.wd-switch-root .wd-form-item-wrap__control,
798
+ .wd-form-item--weui.wd-form-item--vertical-right.wd-switch-root .wd-form-item-wrap__control {
799
+ min-height: 48px;
800
+ }
801
+ .wd-form--weui.wd-form--vertical-left.wd-switch-root .wd-form-item-wrap__control-wrap,
802
+ .wd-form-item--weui.wd-form-item--vertical-left.wd-switch-root .wd-form-item-wrap__control-wrap,
803
+ .wd-form--weui.wd-form--vertical-right.wd-switch-root .wd-form-item-wrap__control-wrap,
804
+ .wd-form-item--weui.wd-form-item--vertical-right.wd-switch-root .wd-form-item-wrap__control-wrap {
805
+ min-height: calc(var(--wd-space-base) * 6);
806
+ }
807
+
808
+ .wd-form--weui.wd-form--horizontal-left .wd-form-item--weui.wd-form-item--layout-.wd-textarea-root .wd-form-item-wrap__label-text,
809
+ .wd-form--weui.wd-form--horizontal-right .wd-form-item--weui.wd-form-item--layout-.wd-textarea-root .wd-form-item-wrap__label-text {
810
+ line-height: normal;
811
+ }
812
+
813
+ .wd-form-item--weui.wd-form-item--layout-.wd-textarea-root .wd-form-item-wrap__label-text,
814
+ .wd-form-item--weui.wd-form-item--layout-horizontal.wd-textarea-root .wd-form-item-wrap__label-text {
815
+ line-height: normal;
816
+ }
817
+
818
+ .wd-form--weui.wd-form--vertical-left .wd-form-item--weui.wd-form-item--layout-.wd-textarea-root .wd-form-item-wrap__label-text,
819
+ .wd-form--weui.wd-form--vertical-right .wd-form-item--weui.wd-form-item--layout-.wd-textarea-root .wd-form-item-wrap__label-text {
820
+ line-height: inherit;
821
+ }
822
+
823
+ .wd-form--weui.wd-form--vertical-left.wd-form-item,
824
+ .wd-form-item--weui.wd-form-item--vertical-left.wd-form-item {
825
+ margin-bottom: 0;
826
+ }
827
+ .wd-form--weui.wd-form--vertical-left .wd-form-textarea-wrap,
828
+ .wd-form-item--weui.wd-form-item--vertical-left .wd-form-textarea-wrap {
829
+ padding-top: 0;
830
+ }
831
+ .wd-form--weui.wd-form--vertical-left .wd-form-item,
832
+ .wd-form-item--weui.wd-form-item--vertical-left .wd-form-item {
833
+ margin-bottom: 0;
834
+ }
835
+ .wd-form--weui.wd-form--vertical-left .wd-form-item-wrap__label,
836
+ .wd-form-item--weui.wd-form-item--vertical-left .wd-form-item-wrap__label {
837
+ margin-bottom: 0;
838
+ padding: calc(var(--wd-space-base) * 4) 0 0 0;
839
+ }
840
+ .wd-form--weui.wd-form--vertical-left .wd-form-item-wrap__control,
841
+ .wd-form-item--weui.wd-form-item--vertical-left .wd-form-item-wrap__control {
842
+ padding: calc(var(--wd-space-base) * 2) 0;
843
+ flex: auto;
844
+ }
845
+ .wd-form--weui.wd-form--vertical-left .wd-form-item__help,
846
+ .wd-form-item--weui.wd-form-item--vertical-left .wd-form-item__help {
847
+ margin-left: 0;
848
+ padding-left: 0;
849
+ }
850
+
851
+ .wd-form--weui.wd-form--vertical-right.wd-form-item,
852
+ .wd-form-item--weui.wd-form-item--vertical-right.wd-form-item {
853
+ margin-bottom: 0;
854
+ }
855
+ .wd-form--weui.wd-form--vertical-right .wd-form-textarea-wrap,
856
+ .wd-form-item--weui.wd-form-item--vertical-right .wd-form-textarea-wrap {
857
+ padding-top: 0;
858
+ }
859
+ .wd-form--weui.wd-form--vertical-right .wd-form-item,
860
+ .wd-form-item--weui.wd-form-item--vertical-right .wd-form-item {
861
+ margin-bottom: 0;
862
+ }
863
+ .wd-form--weui.wd-form--vertical-right .wd-form-item-wrap__label,
864
+ .wd-form-item--weui.wd-form-item--vertical-right .wd-form-item-wrap__label {
865
+ margin-bottom: 0;
866
+ padding: calc(var(--wd-space-base) * 4) 0 0 0;
867
+ }
868
+ .wd-form--weui.wd-form--vertical-right .wd-form-item-wrap__control,
869
+ .wd-form-item--weui.wd-form-item--vertical-right .wd-form-item-wrap__control {
870
+ padding: calc(var(--wd-space-base) * 2) 0;
871
+ flex: auto;
872
+ }
873
+ .wd-form--weui.wd-form--vertical-right .wd-form-item__help,
874
+ .wd-form-item--weui.wd-form-item--vertical-right .wd-form-item__help {
875
+ margin-left: 0;
876
+ padding-left: 0;
877
+ }
878
+
879
+ .wd-form--weui.wd-form--horizontal-right .wd-form-item--weui.wd-form-item--vertical-right .wd-form-item-wrap__label,
880
+ .wd-form--weui.wd-form--horizontal-right .wd-form-item--weui.wd-form-item--vertical-left .wd-form-item-wrap__label,
881
+ .wd-form-item--weui.wd-form-item.wd-form-item--horizontal-right .wd-form-item--weui.wd-form-item--vertical-right .wd-form-item-wrap__label,
882
+ .wd-form-item--weui.wd-form-item.wd-form-item--horizontal-right .wd-form-item--weui.wd-form-item--vertical-left .wd-form-item-wrap__label {
883
+ width: 100%;
884
+ }
885
+ .wd-form--weui.wd-form--horizontal-right.wd-form-item,
886
+ .wd-form-item--weui.wd-form-item.wd-form-item--horizontal-right.wd-form-item {
887
+ margin-bottom: 0;
888
+ }
889
+ .wd-form--weui.wd-form--horizontal-right .wd-form-item,
890
+ .wd-form-item--weui.wd-form-item.wd-form-item--horizontal-right .wd-form-item {
891
+ margin-bottom: 0;
892
+ }
893
+ .wd-form--weui.wd-form--horizontal-right .wd-form-item-wrap__label,
894
+ .wd-form-item--weui.wd-form-item.wd-form-item--horizontal-right .wd-form-item-wrap__label {
895
+ width: var(--wd-form-item-label-width);
896
+ margin-right: var(--wd-form-item-label-mr);
897
+ text-align: right;
898
+ }
899
+ .wd-form--weui.wd-form--horizontal-right .wd-form-item-wrap__label.wd-radio__label,
900
+ .wd-form-item--weui.wd-form-item.wd-form-item--horizontal-right .wd-form-item-wrap__label.wd-radio__label {
901
+ padding-top: calc(var(--wd-space-base) * 4);
902
+ }
903
+ .wd-form--weui.wd-form--horizontal-right .wd-form-item-wrap__label.wd-checkbox__label,
904
+ .wd-form-item--weui.wd-form-item.wd-form-item--horizontal-right .wd-form-item-wrap__label.wd-checkbox__label {
905
+ padding-top: calc(var(--wd-space-base) * 4);
906
+ }
907
+ .wd-form--weui.wd-form--horizontal-right .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
908
+ .wd-form-item--weui.wd-form-item.wd-form-item--horizontal-right .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label {
909
+ justify-content: flex-end;
910
+ }
911
+
912
+ .wd-form--weui.wd-form--horizontal-left .wd-form-item--weui.wd-form-item--vertical-right .wd-form-item-wrap__label,
913
+ .wd-form--weui.wd-form--horizontal-left .wd-form-item--weui.wd-form-item--vertical-left .wd-form-item-wrap__label,
914
+ .wd-form-item--weui.wd-form-item.wd-form-item--horizontal-left .wd-form-item--weui.wd-form-item--vertical-right .wd-form-item-wrap__label,
915
+ .wd-form-item--weui.wd-form-item.wd-form-item--horizontal-left .wd-form-item--weui.wd-form-item--vertical-left .wd-form-item-wrap__label {
916
+ width: 100%;
917
+ }
918
+ .wd-form--weui.wd-form--horizontal-left.wd-form-item,
919
+ .wd-form-item--weui.wd-form-item.wd-form-item--horizontal-left.wd-form-item {
920
+ margin-bottom: 0;
921
+ }
922
+ .wd-form--weui.wd-form--horizontal-left .wd-form-item,
923
+ .wd-form-item--weui.wd-form-item.wd-form-item--horizontal-left .wd-form-item {
924
+ margin-bottom: 0;
925
+ }
926
+ .wd-form--weui.wd-form--horizontal-left .wd-form-item-wrap__label,
927
+ .wd-form-item--weui.wd-form-item.wd-form-item--horizontal-left .wd-form-item-wrap__label {
928
+ width: var(--wd-form-item-label-width);
929
+ margin-right: var(--wd-form-item-label-mr);
930
+ text-align: left;
931
+ }
932
+ .wd-form--weui.wd-form--horizontal-left .wd-form-item-wrap__label.wd-radio__label,
933
+ .wd-form-item--weui.wd-form-item.wd-form-item--horizontal-left .wd-form-item-wrap__label.wd-radio__label {
934
+ padding-top: calc(var(--wd-space-base) * 4);
935
+ }
936
+ .wd-form--weui.wd-form--horizontal-left .wd-form-item-wrap__label.wd-checkbox__label,
937
+ .wd-form-item--weui.wd-form-item.wd-form-item--horizontal-left .wd-form-item-wrap__label.wd-checkbox__label {
938
+ padding-top: calc(var(--wd-space-base) * 4);
939
+ }
940
+ .wd-form--weui.wd-form--horizontal-left .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
941
+ .wd-form-item--weui.wd-form-item.wd-form-item--horizontal-left .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label {
942
+ justify-content: flex-start;
943
+ }
944
+
945
+ .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label {
946
+ text-align: left;
947
+ }
948
+ .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label {
949
+ justify-content: flex-start;
950
+ }
951
+
952
+ .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label {
953
+ text-align: right;
954
+ }
955
+ .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label {
956
+ justify-content: flex-end;
957
+ }
958
+
959
+ .wd-form.wd-form--horizontal-left .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label,
960
+ .wd-form.wd-form--horizontal-right .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label,
961
+ .wd-form.wd-form--vertical-left .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label,
962
+ .wd-form.wd-form--vertical-right .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label,
963
+ .wd-form--weui.wd-form--horizontal-left .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label,
964
+ .wd-form--weui.wd-form--horizontal-right .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label,
965
+ .wd-form--weui.wd-form--vertical-left .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label,
966
+ .wd-form--weui.wd-form--vertical-right .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label {
967
+ text-align: left;
968
+ }
969
+ .wd-form.wd-form--horizontal-left .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
970
+ .wd-form.wd-form--horizontal-right .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
971
+ .wd-form.wd-form--vertical-left .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
972
+ .wd-form.wd-form--vertical-right .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
973
+ .wd-form--weui.wd-form--horizontal-left .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
974
+ .wd-form--weui.wd-form--horizontal-right .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
975
+ .wd-form--weui.wd-form--vertical-left .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
976
+ .wd-form--weui.wd-form--vertical-right .wd-form-item.wd-form-item--label-left .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label {
977
+ justify-content: flex-start;
978
+ }
979
+ .wd-form.wd-form--horizontal-left .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label,
980
+ .wd-form.wd-form--horizontal-right .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label,
981
+ .wd-form.wd-form--vertical-left .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label,
982
+ .wd-form.wd-form--vertical-right .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label,
983
+ .wd-form--weui.wd-form--horizontal-left .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label,
984
+ .wd-form--weui.wd-form--horizontal-right .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label,
985
+ .wd-form--weui.wd-form--vertical-left .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label,
986
+ .wd-form--weui.wd-form--vertical-right .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label {
987
+ text-align: right;
988
+ }
989
+ .wd-form.wd-form--horizontal-left .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
990
+ .wd-form.wd-form--horizontal-right .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
991
+ .wd-form.wd-form--vertical-left .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
992
+ .wd-form.wd-form--vertical-right .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
993
+ .wd-form--weui.wd-form--horizontal-left .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
994
+ .wd-form--weui.wd-form--horizontal-right .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
995
+ .wd-form--weui.wd-form--vertical-left .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label,
996
+ .wd-form--weui.wd-form--vertical-right .wd-form-item.wd-form-item--label-right .wd-form-item-wrap__label.is-nowrap.wd-form-item-wrap__label > label {
997
+ justify-content: flex-end;
998
+ }
999
+
1000
+ .item-size-height-xs .wd-form-item-wrap__label {
1001
+ line-height: var(--wd-form-item-label-height-xs);
1002
+ }
1003
+ .item-size-height-xs .wd-form-item-wrap .is-nowrap.wd-form-item-wrap__label > label {
1004
+ line-height: var(--wd-form-item-label-height-xs);
1005
+ }
1006
+ .item-size-height-xs .wd-form-item-wrap__control {
1007
+ flex: auto;
1008
+ width: 100%;
1009
+ }
1010
+ .item-size-height-xs .wd-form-item-wrap__control-wrap {
1011
+ min-height: var(--wd-form-item-label-height-xs);
1012
+ }
1013
+
1014
+ .item-size-height-sm .wd-form-item-wrap__label {
1015
+ line-height: var(--wd-form-item-label-height-sm);
1016
+ }
1017
+ .item-size-height-sm .wd-form-item-wrap .is-nowrap.wd-form-item-wrap__label > label {
1018
+ line-height: var(--wd-form-item-label-height-sm);
1019
+ }
1020
+ .item-size-height-sm .wd-form-item-wrap__control {
1021
+ flex: auto;
1022
+ width: 100%;
1023
+ }
1024
+ .item-size-height-sm .wd-form-item-wrap__control-wrap {
1025
+ min-height: var(--wd-form-item-label-height-sm);
1026
+ }
1027
+
1028
+ .item-size-height-md .wd-form-item-wrap__label {
1029
+ line-height: var(--wd-form-item-label-height-md);
1030
+ }
1031
+ .item-size-height-md .wd-form-item-wrap .is-nowrap.wd-form-item-wrap__label > label {
1032
+ line-height: var(--wd-form-item-label-height-md);
1033
+ }
1034
+ .item-size-height-md .wd-form-item-wrap__control {
1035
+ flex: auto;
1036
+ width: 100%;
1037
+ }
1038
+ .item-size-height-md .wd-form-item-wrap__control-wrap {
1039
+ min-height: var(--wd-form-item-label-height-md);
1040
+ }
1041
+
1042
+ .item-size-height-lg .wd-form-item-wrap__label {
1043
+ line-height: var(--wd-form-item-label-height-lg);
1044
+ }
1045
+ .item-size-height-lg .wd-form-item-wrap .is-nowrap.wd-form-item-wrap__label > label {
1046
+ line-height: var(--wd-form-item-label-height-lg);
1047
+ }
1048
+ .item-size-height-lg .wd-form-item-wrap__control {
1049
+ flex: auto;
1050
+ width: 100%;
1051
+ }
1052
+ .item-size-height-lg .wd-form-item-wrap__control-wrap {
1053
+ min-height: var(--wd-form-item-label-height-lg);
1054
+ }
1055
+
1056
+ .wd-input__limit-number {
1057
+ padding-left: calc(var(--wd-space-base) * 2);
1058
+ color: var(--wd-input-limit-number-color);
1059
+ font-weight: var(--wd-input-limit-number-weight);
1060
+ font-size: var(--wd-input-limit-number-size);
1061
+ }
1062
+
1063
+ .wd-form-read-value {
1064
+ padding-top: 2px;
1065
+ }
1066
+ .wd-form-read-value .wedatea2td-dropdown__header.wedatea2td-dropdown-btn {
1067
+ padding: 0;
1068
+ border: none;
1069
+ color: var(--wd-form-readonly-font-color);
1070
+ background: transparent;
1071
+ }
1072
+ .wd-form-read-value .wedatea2td-dropdown__header.wedatea2td-dropdown-btn:hover {
1073
+ background: transparent;
1074
+ }
1075
+ .wd-form-read-value .wedatea2td-dropdown__header.wedatea2td-dropdown-btn .wedatea2td-dropdown__value {
1076
+ line-height: inherit;
1077
+ }
1078
+ .wd-form-read-value .weui-input-arrow {
1079
+ display: none;
1080
+ }
1081
+ .wd-form-read-value .wedatea2td-icon.wedatea2td-icon-arrowdown {
1082
+ display: none;
1083
+ }
1084
+
1085
+ .wd-form-read-color {
1086
+ opacity: 0.6;
1087
+ }
1088
+ .wd-form-read-color .wedatea2td-tag {
1089
+ background-color: transparent;
1090
+ padding: 0;
1091
+ border: none;
1092
+ }
1093
+
1094
+ .wd-select__disabled {
1095
+ line-height: var(--wd-form-item-height-md);
1096
+ color: rgba(0, 0, 0, 0.6);
1097
+ }
1098
+
1099
+ .wd-form .wd-select__disabled {
1100
+ line-height: 1.38rem;
1101
+ color: rgba(0, 0, 0, 0.6);
1102
+ }
1103
+
1104
+ .wd-form.wd-pc-form .wd-form-item {
1105
+ width: 100%;
1106
+ padding-top: calc(var(--wd-space-base) * 2.5);
1107
+ padding-bottom: calc(var(--wd-space-base) * 2.5);
1108
+ }
1109
+ .wd-form.wd-pc-form .wd-form-input-group, .wd-form.wd-pc-form .wd-form-input-wrap {
1110
+ width: 100%;
1111
+ }
1112
+ .wd-form.size-width-sm {
1113
+ width: var(--wd-form-container-width-sm);
1114
+ }
1115
+ .wd-form.size-width-md {
1116
+ width: var(--wd-form-container-width-md);
1117
+ }
1118
+ .wd-form.size-width-lg {
1119
+ width: var(--wd-form-container-width-lg);
1120
+ }
1121
+ .wd-form.size-width-hundred {
1122
+ width: 100%;
1123
+ }