@cloudbase/weda-ui-mp 0.2.20

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