@cloudbase/weda-ui 3.1.9 → 3.2.1

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 (422) hide show
  1. package/dist/configs/components/chart/bar.json +3 -3
  2. package/dist/configs/components/chart/line.json +3 -3
  3. package/dist/configs/components/chart/pie.json +3 -3
  4. package/dist/configs/components/form/departTreeSelect.json +124 -0
  5. package/dist/configs/components/form/userTreeSelect.json +128 -0
  6. package/dist/configs/components/formdetail.json +105 -0
  7. package/dist/configs/components/listView.json +9 -1
  8. package/dist/configs/components/lottery.json +1 -1
  9. package/dist/configs/components/tabs.json +10 -9
  10. package/dist/configs/components/wxOpenApi/share.json +5 -2
  11. package/dist/configs/index.d.ts +6 -0
  12. package/dist/configs/index.js +6 -0
  13. package/dist/cypress/support/commands.d.ts +1 -0
  14. package/dist/cypress/support/commands.js +40 -0
  15. package/dist/cypress/support/e2e.d.ts +24 -0
  16. package/dist/cypress/support/e2e.js +22 -0
  17. package/dist/src/configs/actions/showModal.json +48 -0
  18. package/dist/src/configs/actions/showToast.json +41 -0
  19. package/dist/src/configs/components/auth.json +16 -0
  20. package/dist/src/configs/components/button.json +239 -0
  21. package/dist/src/configs/components/calendar.json +81 -0
  22. package/dist/src/configs/components/carousel.json +292 -0
  23. package/dist/src/configs/components/chart/bar.json +954 -0
  24. package/dist/src/configs/components/chart/line.json +870 -0
  25. package/dist/src/configs/components/chart/pie.json +677 -0
  26. package/dist/src/configs/components/chart/statisticsCard.json +376 -0
  27. package/dist/src/configs/components/container.json +50 -0
  28. package/dist/src/configs/components/dataView.json +247 -0
  29. package/dist/src/configs/components/drawer.json +115 -0
  30. package/dist/src/configs/components/form/checkbox.json +179 -0
  31. package/dist/src/configs/components/form/departTreeSelect.json +124 -0
  32. package/dist/src/configs/components/form/form.json +73 -0
  33. package/dist/src/configs/components/form/input.json +154 -0
  34. package/dist/src/configs/components/form/location.json +216 -0
  35. package/dist/src/configs/components/form/radio.json +203 -0
  36. package/dist/src/configs/components/form/richText.json +133 -0
  37. package/dist/src/configs/components/form/select.json +449 -0
  38. package/dist/src/configs/components/form/switch.json +58 -0
  39. package/dist/src/configs/components/form/textarea.json +116 -0
  40. package/dist/src/configs/components/form/tips.json +34 -0
  41. package/dist/src/configs/components/form/uploader.json +171 -0
  42. package/dist/src/configs/components/form/uploaderFile.json +158 -0
  43. package/dist/src/configs/components/form/userTreeSelect.json +128 -0
  44. package/dist/src/configs/components/formdetail.json +105 -0
  45. package/dist/src/configs/components/graphicCard.json +413 -0
  46. package/dist/src/configs/components/image.json +187 -0
  47. package/dist/src/configs/components/link.json +79 -0
  48. package/dist/src/configs/components/listView.json +378 -0
  49. package/dist/src/configs/components/lottery.json +163 -0
  50. package/dist/src/configs/components/modal.json +72 -0
  51. package/dist/src/configs/components/navLayout.json +368 -0
  52. package/dist/src/configs/components/navigationBar.json +62 -0
  53. package/dist/src/configs/components/richtextview.json +26 -0
  54. package/dist/src/configs/components/scrollVeiw.json +253 -0
  55. package/dist/src/configs/components/slot.json +17 -0
  56. package/dist/src/configs/components/swiper.json +90 -0
  57. package/dist/src/configs/components/tabs.json +122 -0
  58. package/dist/src/configs/components/text.json +95 -0
  59. package/dist/src/configs/components/wedaVideo.json +89 -0
  60. package/dist/src/configs/components/wxOpenApi/phone.json +127 -0
  61. package/dist/src/configs/components/wxOpenApi/phoneCode.json +109 -0
  62. package/dist/src/configs/components/wxOpenApi/share.json +160 -0
  63. package/dist/src/configs/components/wxOpenApi/userInfo.json +156 -0
  64. package/dist/src/configs/index.d.ts +103 -0
  65. package/dist/src/configs/index.js +111 -0
  66. package/dist/src/docs/common/format.d.ts +13 -0
  67. package/dist/src/docs/common/format.js +122 -0
  68. package/dist/src/docs/common/tableView.d.ts +30 -0
  69. package/dist/src/docs/common/tableView.js +156 -0
  70. package/dist/src/index.d.ts +2 -0
  71. package/dist/src/index.js +3 -0
  72. package/dist/src/setupTests.d.ts +2 -0
  73. package/dist/src/setupTests.js +19 -0
  74. package/dist/src/web/actions/index.d.ts +2 -0
  75. package/dist/src/web/actions/index.js +2 -0
  76. package/dist/src/web/actions/showModal/index.d.ts +4 -0
  77. package/dist/src/web/actions/showModal/index.js +67 -0
  78. package/dist/src/web/actions/showToast/index.d.ts +1 -0
  79. package/dist/src/web/actions/showToast/index.js +3 -0
  80. package/dist/src/web/components/button/index.d.ts +32 -0
  81. package/dist/src/web/components/button/index.js +48 -0
  82. package/dist/src/web/components/calendar/index.d.ts +19 -0
  83. package/dist/src/web/components/calendar/index.js +189 -0
  84. package/dist/src/web/components/calendar/util.d.ts +13 -0
  85. package/dist/src/web/components/calendar/util.js +74 -0
  86. package/dist/src/web/components/carousel/index.d.ts +41 -0
  87. package/dist/src/web/components/carousel/index.js +244 -0
  88. package/dist/src/web/components/chart/bar/index.d.ts +3 -0
  89. package/dist/src/web/components/chart/bar/index.js +41 -0
  90. package/dist/src/web/components/chart/bar/index.old.d.ts +40 -0
  91. package/dist/src/web/components/chart/bar/index.old.js +56 -0
  92. package/dist/src/web/components/chart/common/Chart.d.ts +9 -0
  93. package/dist/src/web/components/chart/common/Chart.js +23 -0
  94. package/dist/src/web/components/chart/common/chart-custom-connector.d.ts +6 -0
  95. package/dist/src/web/components/chart/common/chart-custom-connector.js +35 -0
  96. package/dist/src/web/components/chart/common/chart-error.d.ts +2 -0
  97. package/dist/src/web/components/chart/common/chart-error.js +2 -0
  98. package/dist/src/web/components/chart/common/config/bar.d.ts +48 -0
  99. package/dist/src/web/components/chart/common/config/bar.js +49 -0
  100. package/dist/src/web/components/chart/common/config/global.d.ts +13 -0
  101. package/dist/src/web/components/chart/common/config/global.js +16 -0
  102. package/dist/src/web/components/chart/common/config/line.d.ts +46 -0
  103. package/dist/src/web/components/chart/common/config/line.js +49 -0
  104. package/dist/src/web/components/chart/common/config/pie.d.ts +29 -0
  105. package/dist/src/web/components/chart/common/config/pie.js +36 -0
  106. package/dist/src/web/components/chart/common/core/eChartBar.d.ts +66 -0
  107. package/dist/src/web/components/chart/common/core/eChartBar.js +201 -0
  108. package/dist/src/web/components/chart/common/core/eChartBase.d.ts +127 -0
  109. package/dist/src/web/components/chart/common/core/eChartBase.js +394 -0
  110. package/dist/src/web/components/chart/common/core/eChartLine.d.ts +60 -0
  111. package/dist/src/web/components/chart/common/core/eChartLine.js +173 -0
  112. package/dist/src/web/components/chart/common/core/eChartPie.d.ts +48 -0
  113. package/dist/src/web/components/chart/common/core/eChartPie.js +135 -0
  114. package/dist/src/web/components/chart/common/core/type.d.ts +35 -0
  115. package/dist/src/web/components/chart/common/core/type.js +9 -0
  116. package/dist/src/web/components/chart/common/data-transform.d.ts +6 -0
  117. package/dist/src/web/components/chart/common/data-transform.js +246 -0
  118. package/dist/src/web/components/chart/common/echarts.d.ts +5 -0
  119. package/dist/src/web/components/chart/common/echarts.js +24 -0
  120. package/dist/src/web/components/chart/common/error-boundary.d.ts +5 -0
  121. package/dist/src/web/components/chart/common/error-boundary.js +26 -0
  122. package/dist/src/web/components/chart/common/useChart.d.ts +8 -0
  123. package/dist/src/web/components/chart/common/useChart.js +61 -0
  124. package/dist/src/web/components/chart/line/index.d.ts +3 -0
  125. package/dist/src/web/components/chart/line/index.js +42 -0
  126. package/dist/src/web/components/chart/line/index.old.d.ts +38 -0
  127. package/dist/src/web/components/chart/line/index.old.js +53 -0
  128. package/dist/src/web/components/chart/pie/index.d.ts +3 -0
  129. package/dist/src/web/components/chart/pie/index.js +42 -0
  130. package/dist/src/web/components/chart/pie/index.old.d.ts +27 -0
  131. package/dist/src/web/components/chart/pie/index.old.js +40 -0
  132. package/dist/src/web/components/chart/statisticsCard/index.d.ts +85 -0
  133. package/dist/src/web/components/chart/statisticsCard/index.js +203 -0
  134. package/dist/src/web/components/chart/statisticsCard/interface.d.ts +13 -0
  135. package/dist/src/web/components/chart/statisticsCard/interface.js +1 -0
  136. package/dist/src/web/components/common/portal.d.ts +7 -0
  137. package/dist/src/web/components/common/portal.js +14 -0
  138. package/dist/src/web/components/container/index.d.ts +6 -0
  139. package/dist/src/web/components/container/index.js +6 -0
  140. package/dist/src/web/components/dataView/index.d.ts +6 -0
  141. package/dist/src/web/components/dataView/index.js +8 -0
  142. package/dist/src/web/components/dataView/interface.d.ts +5 -0
  143. package/dist/src/web/components/dataView/interface.js +1 -0
  144. package/dist/src/web/components/drawer/index.d.ts +13 -0
  145. package/dist/src/web/components/drawer/index.js +12 -0
  146. package/dist/src/web/components/form/checkbox/index.d.ts +13 -0
  147. package/dist/src/web/components/form/checkbox/index.js +167 -0
  148. package/dist/src/web/components/form/enumSelect/MultipleSelect.d.ts +78 -0
  149. package/dist/src/web/components/form/enumSelect/MultipleSelect.js +52 -0
  150. package/dist/src/web/components/form/enumSelect/NormalSelect.d.ts +83 -0
  151. package/dist/src/web/components/form/enumSelect/NormalSelect.js +52 -0
  152. package/dist/src/web/components/form/enumSelect/SelectContainer.d.ts +16 -0
  153. package/dist/src/web/components/form/enumSelect/SelectContainer.js +30 -0
  154. package/dist/src/web/components/form/enumSelect/index.d.ts +82 -0
  155. package/dist/src/web/components/form/enumSelect/index.js +6 -0
  156. package/dist/src/web/components/form/enumSelect/props/defaultProps.d.ts +34 -0
  157. package/dist/src/web/components/form/enumSelect/props/defaultProps.js +40 -0
  158. package/dist/src/web/components/form/enumSelect/props/propsTypes.d.ts +39 -0
  159. package/dist/src/web/components/form/enumSelect/props/propsTypes.js +47 -0
  160. package/dist/src/web/components/form/form/index.d.ts +32 -0
  161. package/dist/src/web/components/form/form/index.js +141 -0
  162. package/dist/src/web/components/form/formcell/index.d.ts +8 -0
  163. package/dist/src/web/components/form/formcell/index.js +40 -0
  164. package/dist/src/web/components/form/input/index.d.ts +14 -0
  165. package/dist/src/web/components/form/input/index.js +86 -0
  166. package/dist/src/web/components/form/location/common/mapChoose.d.ts +15 -0
  167. package/dist/src/web/components/form/location/common/mapChoose.js +495 -0
  168. package/dist/src/web/components/form/location/common/mapView.d.ts +19 -0
  169. package/dist/src/web/components/form/location/common/mapView.js +172 -0
  170. package/dist/src/web/components/form/location/common/propsConfig.d.ts +59 -0
  171. package/dist/src/web/components/form/location/common/propsConfig.js +50 -0
  172. package/dist/src/web/components/form/location/common/selectModal.d.ts +21 -0
  173. package/dist/src/web/components/form/location/common/selectModal.js +44 -0
  174. package/dist/src/web/components/form/location/common/useLocationInfo.d.ts +36 -0
  175. package/dist/src/web/components/form/location/common/useLocationInfo.js +104 -0
  176. package/dist/src/web/components/form/location/components/LocationH5/location.h5.d.ts +8 -0
  177. package/dist/src/web/components/form/location/components/LocationH5/location.h5.js +325 -0
  178. package/dist/src/web/components/form/location/components/LocationPC/Header.d.ts +12 -0
  179. package/dist/src/web/components/form/location/components/LocationPC/Header.js +43 -0
  180. package/dist/src/web/components/form/location/components/LocationPC/location.PC.d.ts +8 -0
  181. package/dist/src/web/components/form/location/components/LocationPC/location.PC.js +224 -0
  182. package/dist/src/web/components/form/location/constants.d.ts +2 -0
  183. package/dist/src/web/components/form/location/constants.js +3 -0
  184. package/dist/src/web/components/form/location/index.d.ts +1 -0
  185. package/dist/src/web/components/form/location/index.js +17 -0
  186. package/dist/src/web/components/form/radio/index.d.ts +11 -0
  187. package/dist/src/web/components/form/radio/index.js +115 -0
  188. package/dist/src/web/components/form/renderDecorator.d.ts +6 -0
  189. package/dist/src/web/components/form/renderDecorator.js +20 -0
  190. package/dist/src/web/components/form/select/allTimePicker/calendar.d.ts +13 -0
  191. package/dist/src/web/components/form/select/allTimePicker/calendar.js +104 -0
  192. package/dist/src/web/components/form/select/allTimePicker/dataUtils.d.ts +24 -0
  193. package/dist/src/web/components/form/select/allTimePicker/dataUtils.js +265 -0
  194. package/dist/src/web/components/form/select/allTimePicker/index.d.ts +14 -0
  195. package/dist/src/web/components/form/select/allTimePicker/index.js +943 -0
  196. package/dist/src/web/components/form/select/dropdown-select/ui.d.ts +15 -0
  197. package/dist/src/web/components/form/select/dropdown-select/ui.js +55 -0
  198. package/dist/src/web/components/form/select/h5.d.ts +16 -0
  199. package/dist/src/web/components/form/select/h5.js +452 -0
  200. package/dist/src/web/components/form/select/index.d.ts +66 -0
  201. package/dist/src/web/components/form/select/index.js +241 -0
  202. package/dist/src/web/components/form/select/region/index.d.ts +6 -0
  203. package/dist/src/web/components/form/select/region/index.js +147 -0
  204. package/dist/src/web/components/form/select/time.d.ts +9 -0
  205. package/dist/src/web/components/form/select/time.js +146 -0
  206. package/dist/src/web/components/form/select/use-options.d.ts +26 -0
  207. package/dist/src/web/components/form/select/use-options.js +103 -0
  208. package/dist/src/web/components/form/select/year.d.ts +7 -0
  209. package/dist/src/web/components/form/select/year.js +72 -0
  210. package/dist/src/web/components/form/switch/index.d.ts +6 -0
  211. package/dist/src/web/components/form/switch/index.js +58 -0
  212. package/dist/src/web/components/form/textarea/index.d.ts +12 -0
  213. package/dist/src/web/components/form/textarea/index.js +66 -0
  214. package/dist/src/web/components/form/tips/index.d.ts +8 -0
  215. package/dist/src/web/components/form/tips/index.js +17 -0
  216. package/dist/src/web/components/form/uploader/index.d.ts +3 -0
  217. package/dist/src/web/components/form/uploader/index.js +42 -0
  218. package/dist/src/web/components/form/uploader/uploader.h5.d.ts +20 -0
  219. package/dist/src/web/components/form/uploader/uploader.h5.js +199 -0
  220. package/dist/src/web/components/form/uploader/uploader.pc.d.ts +29 -0
  221. package/dist/src/web/components/form/uploader/uploader.pc.js +208 -0
  222. package/dist/src/web/components/form/uploaderFile/index.d.ts +4 -0
  223. package/dist/src/web/components/form/uploaderFile/index.js +19 -0
  224. package/dist/src/web/components/form/uploaderFile/uploadFile.h5.d.ts +23 -0
  225. package/dist/src/web/components/form/uploaderFile/uploadFile.h5.js +328 -0
  226. package/dist/src/web/components/form/uploaderFile/uploadFile.pc.d.ts +24 -0
  227. package/dist/src/web/components/form/uploaderFile/uploadFile.pc.js +299 -0
  228. package/dist/src/web/components/form/userOrgSelect/comTool.d.ts +8 -0
  229. package/dist/src/web/components/form/userOrgSelect/comTool.js +107 -0
  230. package/dist/src/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.h5.d.ts +19 -0
  231. package/dist/src/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.h5.js +247 -0
  232. package/dist/src/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.pc.d.ts +4 -0
  233. package/dist/src/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.pc.js +158 -0
  234. package/dist/src/web/components/form/userOrgSelect/departTreeSelect/index.d.ts +2 -0
  235. package/dist/src/web/components/form/userOrgSelect/departTreeSelect/index.js +17 -0
  236. package/dist/src/web/components/form/userOrgSelect/index.d.ts +2 -0
  237. package/dist/src/web/components/form/userOrgSelect/index.js +17 -0
  238. package/dist/src/web/components/form/userOrgSelect/userTreeSelect.h5.d.ts +26 -0
  239. package/dist/src/web/components/form/userOrgSelect/userTreeSelect.h5.js +258 -0
  240. package/dist/src/web/components/form/userOrgSelect/userTreeSelect.pc.d.ts +9 -0
  241. package/dist/src/web/components/form/userOrgSelect/userTreeSelect.pc.js +271 -0
  242. package/dist/src/web/components/form/userOrgSelect/utils.d.ts +35 -0
  243. package/dist/src/web/components/form/userOrgSelect/utils.js +72 -0
  244. package/dist/src/web/components/formdetail/index.d.ts +28 -0
  245. package/dist/src/web/components/formdetail/index.js +170 -0
  246. package/dist/src/web/components/graphicCard/index.d.ts +46 -0
  247. package/dist/src/web/components/graphicCard/index.js +179 -0
  248. package/dist/src/web/components/image/image.d.ts +9 -0
  249. package/dist/src/web/components/image/image.js +119 -0
  250. package/dist/src/web/components/image/index.d.ts +13 -0
  251. package/dist/src/web/components/image/index.js +77 -0
  252. package/dist/src/web/components/index.d.ts +50 -0
  253. package/dist/src/web/components/index.js +99 -0
  254. package/dist/src/web/components/link/index.d.ts +24 -0
  255. package/dist/src/web/components/link/index.js +71 -0
  256. package/dist/src/web/components/listView/index.d.ts +7 -0
  257. package/dist/src/web/components/listView/index.js +296 -0
  258. package/dist/src/web/components/listView/interface.d.ts +127 -0
  259. package/dist/src/web/components/listView/interface.js +1 -0
  260. package/dist/src/web/components/lottery/index.d.ts +22 -0
  261. package/dist/src/web/components/lottery/index.js +391 -0
  262. package/dist/src/web/components/lottery/lotteryUtil.d.ts +23 -0
  263. package/dist/src/web/components/lottery/lotteryUtil.js +181 -0
  264. package/dist/src/web/components/modal/index.d.ts +17 -0
  265. package/dist/src/web/components/modal/index.js +11 -0
  266. package/dist/src/web/components/modal/modal.h5.d.ts +4 -0
  267. package/dist/src/web/components/modal/modal.h5.js +46 -0
  268. package/dist/src/web/components/modal/modal.pc.d.ts +3 -0
  269. package/dist/src/web/components/modal/modal.pc.js +31 -0
  270. package/dist/src/web/components/navLayout/index.d.ts +61 -0
  271. package/dist/src/web/components/navLayout/index.js +127 -0
  272. package/dist/src/web/components/navigationBar/common.d.ts +15 -0
  273. package/dist/src/web/components/navigationBar/common.js +127 -0
  274. package/dist/src/web/components/navigationBar/h5Menu.d.ts +14 -0
  275. package/dist/src/web/components/navigationBar/h5Menu.js +72 -0
  276. package/dist/src/web/components/navigationBar/horizontalMenu.d.ts +12 -0
  277. package/dist/src/web/components/navigationBar/horizontalMenu.js +99 -0
  278. package/dist/src/web/components/navigationBar/index.d.ts +13 -0
  279. package/dist/src/web/components/navigationBar/index.js +157 -0
  280. package/dist/src/web/components/navigationBar/verticalMenu.d.ts +13 -0
  281. package/dist/src/web/components/navigationBar/verticalMenu.js +38 -0
  282. package/dist/src/web/components/phone/index.d.ts +18 -0
  283. package/dist/src/web/components/phone/index.js +4 -0
  284. package/dist/src/web/components/phoneCode/index.d.ts +18 -0
  285. package/dist/src/web/components/phoneCode/index.js +4 -0
  286. package/dist/src/web/components/picker/datePicker.d.ts +10 -0
  287. package/dist/src/web/components/picker/datePicker.js +31 -0
  288. package/dist/src/web/components/picker/picker.d.ts +6 -0
  289. package/dist/src/web/components/picker/picker.js +45 -0
  290. package/dist/src/web/components/picker/timePicker.d.ts +7 -0
  291. package/dist/src/web/components/picker/timePicker.js +42 -0
  292. package/dist/src/web/components/richText/const.d.ts +1 -0
  293. package/dist/src/web/components/richText/const.js +2 -0
  294. package/dist/src/web/components/richText/index.d.ts +50 -0
  295. package/dist/src/web/components/richText/index.js +352 -0
  296. package/dist/src/web/components/richTextView/index.d.ts +7 -0
  297. package/dist/src/web/components/richTextView/index.js +44 -0
  298. package/dist/src/web/components/scrollView/index.d.ts +27 -0
  299. package/dist/src/web/components/scrollView/index.js +95 -0
  300. package/dist/src/web/components/share/index.d.ts +34 -0
  301. package/dist/src/web/components/share/index.js +4 -0
  302. package/dist/src/web/components/slot/index.d.ts +6 -0
  303. package/dist/src/web/components/slot/index.js +9 -0
  304. package/dist/src/web/components/swiper/index.d.ts +24 -0
  305. package/dist/src/web/components/swiper/index.js +153 -0
  306. package/dist/src/web/components/tabs/index.d.ts +13 -0
  307. package/dist/src/web/components/tabs/index.js +15 -0
  308. package/dist/src/web/components/tabs/tabs.h5.d.ts +4 -0
  309. package/dist/src/web/components/tabs/tabs.h5.js +42 -0
  310. package/dist/src/web/components/tabs/tabs.pc.d.ts +3 -0
  311. package/dist/src/web/components/tabs/tabs.pc.js +40 -0
  312. package/dist/src/web/components/text/index.d.ts +14 -0
  313. package/dist/src/web/components/text/index.js +17 -0
  314. package/dist/src/web/components/uploaderFileView/index.d.ts +10 -0
  315. package/dist/src/web/components/uploaderFileView/index.js +46 -0
  316. package/dist/src/web/components/uploaderView/index.d.ts +17 -0
  317. package/dist/src/web/components/uploaderView/index.js +48 -0
  318. package/dist/src/web/components/userInfo/index.d.ts +26 -0
  319. package/dist/src/web/components/userInfo/index.js +4 -0
  320. package/dist/src/web/components/wedaVideo/index.d.ts +17 -0
  321. package/dist/src/web/components/wedaVideo/index.js +144 -0
  322. package/dist/src/web/index.d.ts +8 -0
  323. package/dist/src/web/index.js +4 -0
  324. package/dist/src/web/utils/classnames.d.ts +2 -0
  325. package/dist/src/web/utils/classnames.js +37 -0
  326. package/dist/src/web/utils/constant.d.ts +23 -0
  327. package/dist/src/web/utils/constant.js +24 -0
  328. package/dist/src/web/utils/debounce.d.ts +2 -0
  329. package/dist/src/web/utils/debounce.js +92 -0
  330. package/dist/src/web/utils/getLocalCounter.d.ts +1 -0
  331. package/dist/src/web/utils/getLocalCounter.js +4 -0
  332. package/dist/src/web/utils/getUserService.d.ts +11 -0
  333. package/dist/src/web/utils/getUserService.js +156 -0
  334. package/dist/src/web/utils/isObjectEqual.d.ts +2 -0
  335. package/dist/src/web/utils/isObjectEqual.js +12 -0
  336. package/dist/src/web/utils/loading-fallback.d.ts +2 -0
  337. package/dist/src/web/utils/loading-fallback.js +2 -0
  338. package/dist/src/web/utils/lodash.d.ts +1 -0
  339. package/dist/src/web/utils/lodash.js +2 -0
  340. package/dist/src/web/utils/platform.d.ts +18 -0
  341. package/dist/src/web/utils/platform.js +193 -0
  342. package/dist/src/web/utils/tcb.d.ts +33 -0
  343. package/dist/src/web/utils/tcb.js +118 -0
  344. package/dist/src/web/utils/tmap.d.ts +3 -0
  345. package/dist/src/web/utils/tmap.js +21 -0
  346. package/dist/src/web/utils/use-cloud-id-temp-url.d.ts +1 -0
  347. package/dist/src/web/utils/use-cloud-id-temp-url.js +15 -0
  348. package/dist/src/web/utils/useSetState.d.ts +1 -0
  349. package/dist/src/web/utils/useSetState.js +8 -0
  350. package/dist/src/web/utils/useSyncValue.d.ts +4 -0
  351. package/dist/src/web/utils/useSyncValue.js +15 -0
  352. package/dist/src/web/utils/weui.d.ts +1 -0
  353. package/dist/src/web/utils/weui.js +2 -0
  354. package/dist/web/components/calendar/index.js +10 -2
  355. package/dist/web/components/carousel/index.js +4 -0
  356. package/dist/web/components/chart/common/core/eChartBase.js +8 -2
  357. package/dist/web/components/form/form/index.js +10 -7
  358. package/dist/web/components/form/location/common/mapChoose.js +2 -0
  359. package/dist/web/components/form/location/common/mapView.js +2 -0
  360. package/dist/web/components/form/location/components/LocationH5/location.h5.js +3 -1
  361. package/dist/web/components/form/location/components/LocationH5/location.module.css +3 -0
  362. package/dist/web/components/form/select/allTimePicker/calendar.css +114 -0
  363. package/dist/web/components/form/select/allTimePicker/index.css +136 -0
  364. package/dist/web/components/form/select/h5.js +4 -0
  365. package/dist/web/components/form/select/index.js +2 -8
  366. package/dist/web/components/form/switch/index.js +3 -2
  367. package/dist/web/components/form/switch/switch.module.css +7 -0
  368. package/dist/web/components/form/uploader/uploader.h5.d.ts +1 -0
  369. package/dist/web/components/form/uploader/uploader.h5.js +14 -10
  370. package/dist/web/components/form/uploader/uploader.pc.js +1 -1
  371. package/dist/web/components/form/uploaderFile/uploadFile.h5.js +14 -12
  372. package/dist/web/components/form/uploaderFile/uploadFile.pc.js +8 -8
  373. package/dist/web/components/form/userOrgSelect/comTool.d.ts +7 -0
  374. package/dist/web/components/form/userOrgSelect/comTool.js +89 -0
  375. package/dist/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.h5.d.ts +20 -0
  376. package/dist/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.h5.js +259 -0
  377. package/dist/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.pc.d.ts +4 -0
  378. package/dist/web/components/form/userOrgSelect/departTreeSelect/departTreeSelect.pc.js +153 -0
  379. package/dist/web/components/form/userOrgSelect/departTreeSelect/index.d.ts +2 -0
  380. package/dist/web/components/form/userOrgSelect/departTreeSelect/index.js +17 -0
  381. package/dist/web/components/form/userOrgSelect/index.d.ts +2 -0
  382. package/dist/web/components/form/userOrgSelect/index.js +17 -0
  383. package/dist/web/components/form/userOrgSelect/userOrgSelect.css +805 -0
  384. package/dist/web/components/form/userOrgSelect/userOrgSelect.less +643 -0
  385. package/dist/web/components/form/userOrgSelect/userTreeSelect.h5.d.ts +24 -0
  386. package/dist/web/components/form/userOrgSelect/userTreeSelect.h5.js +276 -0
  387. package/dist/web/components/form/userOrgSelect/userTreeSelect.pc.d.ts +9 -0
  388. package/dist/web/components/form/userOrgSelect/userTreeSelect.pc.js +229 -0
  389. package/dist/web/components/form/userOrgSelect/utils.d.ts +35 -0
  390. package/dist/web/components/form/userOrgSelect/utils.js +72 -0
  391. package/dist/web/components/formdetail/index.css +115 -0
  392. package/dist/web/components/formdetail/index.d.ts +28 -0
  393. package/dist/web/components/formdetail/index.js +170 -0
  394. package/dist/web/components/index.d.ts +3 -0
  395. package/dist/web/components/index.js +3 -0
  396. package/dist/web/components/listView/index.css +35 -5
  397. package/dist/web/components/listView/index.js +92 -68
  398. package/dist/web/components/listView/interface.d.ts +5 -0
  399. package/dist/web/components/lottery/index.js +2 -1
  400. package/dist/web/components/lottery/lotteryUtil.js +1 -0
  401. package/dist/web/components/navigationBar/index.css +21 -29
  402. package/dist/web/components/richText/index.css +1 -0
  403. package/dist/web/components/swiper/index.js +5 -1
  404. package/dist/web/components/wedaVideo/index.js +1 -0
  405. package/dist/web/utils/getUserService.d.ts +17 -0
  406. package/dist/web/utils/getUserService.js +148 -0
  407. package/dist/web/utils/platform.js +2 -0
  408. package/dist/web/weda-ui.css +9 -0
  409. package/package.json +27 -13
  410. package/dist/asset-manifest.json +0 -17
  411. package/dist/index.html +0 -88
  412. package/dist/static/js/bundle.js +0 -963
  413. package/dist/static/js/bundle.js.map +0 -1
  414. package/dist/static/js/main.chunk.js +0 -8841
  415. package/dist/static/js/main.chunk.js.map +0 -1
  416. package/dist/static/js/vendors~main.chunk.js +0 -247885
  417. package/dist/static/js/vendors~main.chunk.js.map +0 -1
  418. package/dist/static/media/ef6fa527e24e354765d806b826b41391.fa67580a.svg +0 -627
  419. package/dist/web/components/auth/index.d.ts +0 -10
  420. package/dist/web/components/auth/index.js +0 -37
  421. package/dist/web/utils/events.d.ts +0 -1
  422. package/dist/web/utils/events.js +0 -2
@@ -1,963 +0,0 @@
1
- /******/ (function(modules) { // webpackBootstrap
2
- /******/ // install a JSONP callback for chunk loading
3
- /******/ function webpackJsonpCallback(data) {
4
- /******/ var chunkIds = data[0];
5
- /******/ var moreModules = data[1];
6
- /******/ var executeModules = data[2];
7
- /******/
8
- /******/ // add "moreModules" to the modules object,
9
- /******/ // then flag all "chunkIds" as loaded and fire callback
10
- /******/ var moduleId, chunkId, i = 0, resolves = [];
11
- /******/ for(;i < chunkIds.length; i++) {
12
- /******/ chunkId = chunkIds[i];
13
- /******/ if(Object.prototype.hasOwnProperty.call(installedChunks, chunkId) && installedChunks[chunkId]) {
14
- /******/ resolves.push(installedChunks[chunkId][0]);
15
- /******/ }
16
- /******/ installedChunks[chunkId] = 0;
17
- /******/ }
18
- /******/ for(moduleId in moreModules) {
19
- /******/ if(Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {
20
- /******/ modules[moduleId] = moreModules[moduleId];
21
- /******/ }
22
- /******/ }
23
- /******/ if(parentJsonpFunction) parentJsonpFunction(data);
24
- /******/
25
- /******/ while(resolves.length) {
26
- /******/ resolves.shift()();
27
- /******/ }
28
- /******/
29
- /******/ // add entry modules from loaded chunk to deferred list
30
- /******/ deferredModules.push.apply(deferredModules, executeModules || []);
31
- /******/
32
- /******/ // run deferred modules when all chunks ready
33
- /******/ return checkDeferredModules();
34
- /******/ };
35
- /******/ function checkDeferredModules() {
36
- /******/ var result;
37
- /******/ for(var i = 0; i < deferredModules.length; i++) {
38
- /******/ var deferredModule = deferredModules[i];
39
- /******/ var fulfilled = true;
40
- /******/ for(var j = 1; j < deferredModule.length; j++) {
41
- /******/ var depId = deferredModule[j];
42
- /******/ if(installedChunks[depId] !== 0) fulfilled = false;
43
- /******/ }
44
- /******/ if(fulfilled) {
45
- /******/ deferredModules.splice(i--, 1);
46
- /******/ result = __webpack_require__(__webpack_require__.s = deferredModule[0]);
47
- /******/ }
48
- /******/ }
49
- /******/
50
- /******/ return result;
51
- /******/ }
52
- /******/ function hotDisposeChunk(chunkId) {
53
- /******/ delete installedChunks[chunkId];
54
- /******/ }
55
- /******/ var parentHotUpdateCallback = this["webpackHotUpdate"];
56
- /******/ this["webpackHotUpdate"] = // eslint-disable-next-line no-unused-vars
57
- /******/ function webpackHotUpdateCallback(chunkId, moreModules) {
58
- /******/ hotAddUpdateChunk(chunkId, moreModules);
59
- /******/ if (parentHotUpdateCallback) parentHotUpdateCallback(chunkId, moreModules);
60
- /******/ } ;
61
- /******/
62
- /******/ // eslint-disable-next-line no-unused-vars
63
- /******/ function hotDownloadUpdateChunk(chunkId) {
64
- /******/ var script = document.createElement("script");
65
- /******/ script.charset = "utf-8";
66
- /******/ script.src = __webpack_require__.p + "" + chunkId + "." + hotCurrentHash + ".hot-update.js";
67
- /******/ if (null) script.crossOrigin = null;
68
- /******/ document.head.appendChild(script);
69
- /******/ }
70
- /******/
71
- /******/ // eslint-disable-next-line no-unused-vars
72
- /******/ function hotDownloadManifest(requestTimeout) {
73
- /******/ requestTimeout = requestTimeout || 10000;
74
- /******/ return new Promise(function(resolve, reject) {
75
- /******/ if (typeof XMLHttpRequest === "undefined") {
76
- /******/ return reject(new Error("No browser support"));
77
- /******/ }
78
- /******/ try {
79
- /******/ var request = new XMLHttpRequest();
80
- /******/ var requestPath = __webpack_require__.p + "" + hotCurrentHash + ".hot-update.json";
81
- /******/ request.open("GET", requestPath, true);
82
- /******/ request.timeout = requestTimeout;
83
- /******/ request.send(null);
84
- /******/ } catch (err) {
85
- /******/ return reject(err);
86
- /******/ }
87
- /******/ request.onreadystatechange = function() {
88
- /******/ if (request.readyState !== 4) return;
89
- /******/ if (request.status === 0) {
90
- /******/ // timeout
91
- /******/ reject(
92
- /******/ new Error("Manifest request to " + requestPath + " timed out.")
93
- /******/ );
94
- /******/ } else if (request.status === 404) {
95
- /******/ // no update available
96
- /******/ resolve();
97
- /******/ } else if (request.status !== 200 && request.status !== 304) {
98
- /******/ // other failure
99
- /******/ reject(new Error("Manifest request to " + requestPath + " failed."));
100
- /******/ } else {
101
- /******/ // success
102
- /******/ try {
103
- /******/ var update = JSON.parse(request.responseText);
104
- /******/ } catch (e) {
105
- /******/ reject(e);
106
- /******/ return;
107
- /******/ }
108
- /******/ resolve(update);
109
- /******/ }
110
- /******/ };
111
- /******/ });
112
- /******/ }
113
- /******/
114
- /******/ var hotApplyOnUpdate = true;
115
- /******/ // eslint-disable-next-line no-unused-vars
116
- /******/ var hotCurrentHash = "cba9e9a38ae75c5d0c36";
117
- /******/ var hotRequestTimeout = 10000;
118
- /******/ var hotCurrentModuleData = {};
119
- /******/ var hotCurrentChildModule;
120
- /******/ // eslint-disable-next-line no-unused-vars
121
- /******/ var hotCurrentParents = [];
122
- /******/ // eslint-disable-next-line no-unused-vars
123
- /******/ var hotCurrentParentsTemp = [];
124
- /******/
125
- /******/ // eslint-disable-next-line no-unused-vars
126
- /******/ function hotCreateRequire(moduleId) {
127
- /******/ var me = installedModules[moduleId];
128
- /******/ if (!me) return __webpack_require__;
129
- /******/ var fn = function(request) {
130
- /******/ if (me.hot.active) {
131
- /******/ if (installedModules[request]) {
132
- /******/ if (installedModules[request].parents.indexOf(moduleId) === -1) {
133
- /******/ installedModules[request].parents.push(moduleId);
134
- /******/ }
135
- /******/ } else {
136
- /******/ hotCurrentParents = [moduleId];
137
- /******/ hotCurrentChildModule = request;
138
- /******/ }
139
- /******/ if (me.children.indexOf(request) === -1) {
140
- /******/ me.children.push(request);
141
- /******/ }
142
- /******/ } else {
143
- /******/ console.warn(
144
- /******/ "[HMR] unexpected require(" +
145
- /******/ request +
146
- /******/ ") from disposed module " +
147
- /******/ moduleId
148
- /******/ );
149
- /******/ hotCurrentParents = [];
150
- /******/ }
151
- /******/ return __webpack_require__(request);
152
- /******/ };
153
- /******/ var ObjectFactory = function ObjectFactory(name) {
154
- /******/ return {
155
- /******/ configurable: true,
156
- /******/ enumerable: true,
157
- /******/ get: function() {
158
- /******/ return __webpack_require__[name];
159
- /******/ },
160
- /******/ set: function(value) {
161
- /******/ __webpack_require__[name] = value;
162
- /******/ }
163
- /******/ };
164
- /******/ };
165
- /******/ for (var name in __webpack_require__) {
166
- /******/ if (
167
- /******/ Object.prototype.hasOwnProperty.call(__webpack_require__, name) &&
168
- /******/ name !== "e" &&
169
- /******/ name !== "t"
170
- /******/ ) {
171
- /******/ Object.defineProperty(fn, name, ObjectFactory(name));
172
- /******/ }
173
- /******/ }
174
- /******/ fn.e = function(chunkId) {
175
- /******/ if (hotStatus === "ready") hotSetStatus("prepare");
176
- /******/ hotChunksLoading++;
177
- /******/ return __webpack_require__.e(chunkId).then(finishChunkLoading, function(err) {
178
- /******/ finishChunkLoading();
179
- /******/ throw err;
180
- /******/ });
181
- /******/
182
- /******/ function finishChunkLoading() {
183
- /******/ hotChunksLoading--;
184
- /******/ if (hotStatus === "prepare") {
185
- /******/ if (!hotWaitingFilesMap[chunkId]) {
186
- /******/ hotEnsureUpdateChunk(chunkId);
187
- /******/ }
188
- /******/ if (hotChunksLoading === 0 && hotWaitingFiles === 0) {
189
- /******/ hotUpdateDownloaded();
190
- /******/ }
191
- /******/ }
192
- /******/ }
193
- /******/ };
194
- /******/ fn.t = function(value, mode) {
195
- /******/ if (mode & 1) value = fn(value);
196
- /******/ return __webpack_require__.t(value, mode & ~1);
197
- /******/ };
198
- /******/ return fn;
199
- /******/ }
200
- /******/
201
- /******/ // eslint-disable-next-line no-unused-vars
202
- /******/ function hotCreateModule(moduleId) {
203
- /******/ var hot = {
204
- /******/ // private stuff
205
- /******/ _acceptedDependencies: {},
206
- /******/ _declinedDependencies: {},
207
- /******/ _selfAccepted: false,
208
- /******/ _selfDeclined: false,
209
- /******/ _selfInvalidated: false,
210
- /******/ _disposeHandlers: [],
211
- /******/ _main: hotCurrentChildModule !== moduleId,
212
- /******/
213
- /******/ // Module API
214
- /******/ active: true,
215
- /******/ accept: function(dep, callback) {
216
- /******/ if (dep === undefined) hot._selfAccepted = true;
217
- /******/ else if (typeof dep === "function") hot._selfAccepted = dep;
218
- /******/ else if (typeof dep === "object")
219
- /******/ for (var i = 0; i < dep.length; i++)
220
- /******/ hot._acceptedDependencies[dep[i]] = callback || function() {};
221
- /******/ else hot._acceptedDependencies[dep] = callback || function() {};
222
- /******/ },
223
- /******/ decline: function(dep) {
224
- /******/ if (dep === undefined) hot._selfDeclined = true;
225
- /******/ else if (typeof dep === "object")
226
- /******/ for (var i = 0; i < dep.length; i++)
227
- /******/ hot._declinedDependencies[dep[i]] = true;
228
- /******/ else hot._declinedDependencies[dep] = true;
229
- /******/ },
230
- /******/ dispose: function(callback) {
231
- /******/ hot._disposeHandlers.push(callback);
232
- /******/ },
233
- /******/ addDisposeHandler: function(callback) {
234
- /******/ hot._disposeHandlers.push(callback);
235
- /******/ },
236
- /******/ removeDisposeHandler: function(callback) {
237
- /******/ var idx = hot._disposeHandlers.indexOf(callback);
238
- /******/ if (idx >= 0) hot._disposeHandlers.splice(idx, 1);
239
- /******/ },
240
- /******/ invalidate: function() {
241
- /******/ this._selfInvalidated = true;
242
- /******/ switch (hotStatus) {
243
- /******/ case "idle":
244
- /******/ hotUpdate = {};
245
- /******/ hotUpdate[moduleId] = modules[moduleId];
246
- /******/ hotSetStatus("ready");
247
- /******/ break;
248
- /******/ case "ready":
249
- /******/ hotApplyInvalidatedModule(moduleId);
250
- /******/ break;
251
- /******/ case "prepare":
252
- /******/ case "check":
253
- /******/ case "dispose":
254
- /******/ case "apply":
255
- /******/ (hotQueuedInvalidatedModules =
256
- /******/ hotQueuedInvalidatedModules || []).push(moduleId);
257
- /******/ break;
258
- /******/ default:
259
- /******/ // ignore requests in error states
260
- /******/ break;
261
- /******/ }
262
- /******/ },
263
- /******/
264
- /******/ // Management API
265
- /******/ check: hotCheck,
266
- /******/ apply: hotApply,
267
- /******/ status: function(l) {
268
- /******/ if (!l) return hotStatus;
269
- /******/ hotStatusHandlers.push(l);
270
- /******/ },
271
- /******/ addStatusHandler: function(l) {
272
- /******/ hotStatusHandlers.push(l);
273
- /******/ },
274
- /******/ removeStatusHandler: function(l) {
275
- /******/ var idx = hotStatusHandlers.indexOf(l);
276
- /******/ if (idx >= 0) hotStatusHandlers.splice(idx, 1);
277
- /******/ },
278
- /******/
279
- /******/ //inherit from previous dispose call
280
- /******/ data: hotCurrentModuleData[moduleId]
281
- /******/ };
282
- /******/ hotCurrentChildModule = undefined;
283
- /******/ return hot;
284
- /******/ }
285
- /******/
286
- /******/ var hotStatusHandlers = [];
287
- /******/ var hotStatus = "idle";
288
- /******/
289
- /******/ function hotSetStatus(newStatus) {
290
- /******/ hotStatus = newStatus;
291
- /******/ for (var i = 0; i < hotStatusHandlers.length; i++)
292
- /******/ hotStatusHandlers[i].call(null, newStatus);
293
- /******/ }
294
- /******/
295
- /******/ // while downloading
296
- /******/ var hotWaitingFiles = 0;
297
- /******/ var hotChunksLoading = 0;
298
- /******/ var hotWaitingFilesMap = {};
299
- /******/ var hotRequestedFilesMap = {};
300
- /******/ var hotAvailableFilesMap = {};
301
- /******/ var hotDeferred;
302
- /******/
303
- /******/ // The update info
304
- /******/ var hotUpdate, hotUpdateNewHash, hotQueuedInvalidatedModules;
305
- /******/
306
- /******/ function toModuleId(id) {
307
- /******/ var isNumber = +id + "" === id;
308
- /******/ return isNumber ? +id : id;
309
- /******/ }
310
- /******/
311
- /******/ function hotCheck(apply) {
312
- /******/ if (hotStatus !== "idle") {
313
- /******/ throw new Error("check() is only allowed in idle status");
314
- /******/ }
315
- /******/ hotApplyOnUpdate = apply;
316
- /******/ hotSetStatus("check");
317
- /******/ return hotDownloadManifest(hotRequestTimeout).then(function(update) {
318
- /******/ if (!update) {
319
- /******/ hotSetStatus(hotApplyInvalidatedModules() ? "ready" : "idle");
320
- /******/ return null;
321
- /******/ }
322
- /******/ hotRequestedFilesMap = {};
323
- /******/ hotWaitingFilesMap = {};
324
- /******/ hotAvailableFilesMap = update.c;
325
- /******/ hotUpdateNewHash = update.h;
326
- /******/
327
- /******/ hotSetStatus("prepare");
328
- /******/ var promise = new Promise(function(resolve, reject) {
329
- /******/ hotDeferred = {
330
- /******/ resolve: resolve,
331
- /******/ reject: reject
332
- /******/ };
333
- /******/ });
334
- /******/ hotUpdate = {};
335
- /******/ for(var chunkId in installedChunks)
336
- /******/ // eslint-disable-next-line no-lone-blocks
337
- /******/ {
338
- /******/ hotEnsureUpdateChunk(chunkId);
339
- /******/ }
340
- /******/ if (
341
- /******/ hotStatus === "prepare" &&
342
- /******/ hotChunksLoading === 0 &&
343
- /******/ hotWaitingFiles === 0
344
- /******/ ) {
345
- /******/ hotUpdateDownloaded();
346
- /******/ }
347
- /******/ return promise;
348
- /******/ });
349
- /******/ }
350
- /******/
351
- /******/ // eslint-disable-next-line no-unused-vars
352
- /******/ function hotAddUpdateChunk(chunkId, moreModules) {
353
- /******/ if (!hotAvailableFilesMap[chunkId] || !hotRequestedFilesMap[chunkId])
354
- /******/ return;
355
- /******/ hotRequestedFilesMap[chunkId] = false;
356
- /******/ for (var moduleId in moreModules) {
357
- /******/ if (Object.prototype.hasOwnProperty.call(moreModules, moduleId)) {
358
- /******/ hotUpdate[moduleId] = moreModules[moduleId];
359
- /******/ }
360
- /******/ }
361
- /******/ if (--hotWaitingFiles === 0 && hotChunksLoading === 0) {
362
- /******/ hotUpdateDownloaded();
363
- /******/ }
364
- /******/ }
365
- /******/
366
- /******/ function hotEnsureUpdateChunk(chunkId) {
367
- /******/ if (!hotAvailableFilesMap[chunkId]) {
368
- /******/ hotWaitingFilesMap[chunkId] = true;
369
- /******/ } else {
370
- /******/ hotRequestedFilesMap[chunkId] = true;
371
- /******/ hotWaitingFiles++;
372
- /******/ hotDownloadUpdateChunk(chunkId);
373
- /******/ }
374
- /******/ }
375
- /******/
376
- /******/ function hotUpdateDownloaded() {
377
- /******/ hotSetStatus("ready");
378
- /******/ var deferred = hotDeferred;
379
- /******/ hotDeferred = null;
380
- /******/ if (!deferred) return;
381
- /******/ if (hotApplyOnUpdate) {
382
- /******/ // Wrap deferred object in Promise to mark it as a well-handled Promise to
383
- /******/ // avoid triggering uncaught exception warning in Chrome.
384
- /******/ // See https://bugs.chromium.org/p/chromium/issues/detail?id=465666
385
- /******/ Promise.resolve()
386
- /******/ .then(function() {
387
- /******/ return hotApply(hotApplyOnUpdate);
388
- /******/ })
389
- /******/ .then(
390
- /******/ function(result) {
391
- /******/ deferred.resolve(result);
392
- /******/ },
393
- /******/ function(err) {
394
- /******/ deferred.reject(err);
395
- /******/ }
396
- /******/ );
397
- /******/ } else {
398
- /******/ var outdatedModules = [];
399
- /******/ for (var id in hotUpdate) {
400
- /******/ if (Object.prototype.hasOwnProperty.call(hotUpdate, id)) {
401
- /******/ outdatedModules.push(toModuleId(id));
402
- /******/ }
403
- /******/ }
404
- /******/ deferred.resolve(outdatedModules);
405
- /******/ }
406
- /******/ }
407
- /******/
408
- /******/ function hotApply(options) {
409
- /******/ if (hotStatus !== "ready")
410
- /******/ throw new Error("apply() is only allowed in ready status");
411
- /******/ options = options || {};
412
- /******/ return hotApplyInternal(options);
413
- /******/ }
414
- /******/
415
- /******/ function hotApplyInternal(options) {
416
- /******/ hotApplyInvalidatedModules();
417
- /******/
418
- /******/ var cb;
419
- /******/ var i;
420
- /******/ var j;
421
- /******/ var module;
422
- /******/ var moduleId;
423
- /******/
424
- /******/ function getAffectedStuff(updateModuleId) {
425
- /******/ var outdatedModules = [updateModuleId];
426
- /******/ var outdatedDependencies = {};
427
- /******/
428
- /******/ var queue = outdatedModules.map(function(id) {
429
- /******/ return {
430
- /******/ chain: [id],
431
- /******/ id: id
432
- /******/ };
433
- /******/ });
434
- /******/ while (queue.length > 0) {
435
- /******/ var queueItem = queue.pop();
436
- /******/ var moduleId = queueItem.id;
437
- /******/ var chain = queueItem.chain;
438
- /******/ module = installedModules[moduleId];
439
- /******/ if (
440
- /******/ !module ||
441
- /******/ (module.hot._selfAccepted && !module.hot._selfInvalidated)
442
- /******/ )
443
- /******/ continue;
444
- /******/ if (module.hot._selfDeclined) {
445
- /******/ return {
446
- /******/ type: "self-declined",
447
- /******/ chain: chain,
448
- /******/ moduleId: moduleId
449
- /******/ };
450
- /******/ }
451
- /******/ if (module.hot._main) {
452
- /******/ return {
453
- /******/ type: "unaccepted",
454
- /******/ chain: chain,
455
- /******/ moduleId: moduleId
456
- /******/ };
457
- /******/ }
458
- /******/ for (var i = 0; i < module.parents.length; i++) {
459
- /******/ var parentId = module.parents[i];
460
- /******/ var parent = installedModules[parentId];
461
- /******/ if (!parent) continue;
462
- /******/ if (parent.hot._declinedDependencies[moduleId]) {
463
- /******/ return {
464
- /******/ type: "declined",
465
- /******/ chain: chain.concat([parentId]),
466
- /******/ moduleId: moduleId,
467
- /******/ parentId: parentId
468
- /******/ };
469
- /******/ }
470
- /******/ if (outdatedModules.indexOf(parentId) !== -1) continue;
471
- /******/ if (parent.hot._acceptedDependencies[moduleId]) {
472
- /******/ if (!outdatedDependencies[parentId])
473
- /******/ outdatedDependencies[parentId] = [];
474
- /******/ addAllToSet(outdatedDependencies[parentId], [moduleId]);
475
- /******/ continue;
476
- /******/ }
477
- /******/ delete outdatedDependencies[parentId];
478
- /******/ outdatedModules.push(parentId);
479
- /******/ queue.push({
480
- /******/ chain: chain.concat([parentId]),
481
- /******/ id: parentId
482
- /******/ });
483
- /******/ }
484
- /******/ }
485
- /******/
486
- /******/ return {
487
- /******/ type: "accepted",
488
- /******/ moduleId: updateModuleId,
489
- /******/ outdatedModules: outdatedModules,
490
- /******/ outdatedDependencies: outdatedDependencies
491
- /******/ };
492
- /******/ }
493
- /******/
494
- /******/ function addAllToSet(a, b) {
495
- /******/ for (var i = 0; i < b.length; i++) {
496
- /******/ var item = b[i];
497
- /******/ if (a.indexOf(item) === -1) a.push(item);
498
- /******/ }
499
- /******/ }
500
- /******/
501
- /******/ // at begin all updates modules are outdated
502
- /******/ // the "outdated" status can propagate to parents if they don't accept the children
503
- /******/ var outdatedDependencies = {};
504
- /******/ var outdatedModules = [];
505
- /******/ var appliedUpdate = {};
506
- /******/
507
- /******/ var warnUnexpectedRequire = function warnUnexpectedRequire() {
508
- /******/ console.warn(
509
- /******/ "[HMR] unexpected require(" + result.moduleId + ") to disposed module"
510
- /******/ );
511
- /******/ };
512
- /******/
513
- /******/ for (var id in hotUpdate) {
514
- /******/ if (Object.prototype.hasOwnProperty.call(hotUpdate, id)) {
515
- /******/ moduleId = toModuleId(id);
516
- /******/ /** @type {TODO} */
517
- /******/ var result;
518
- /******/ if (hotUpdate[id]) {
519
- /******/ result = getAffectedStuff(moduleId);
520
- /******/ } else {
521
- /******/ result = {
522
- /******/ type: "disposed",
523
- /******/ moduleId: id
524
- /******/ };
525
- /******/ }
526
- /******/ /** @type {Error|false} */
527
- /******/ var abortError = false;
528
- /******/ var doApply = false;
529
- /******/ var doDispose = false;
530
- /******/ var chainInfo = "";
531
- /******/ if (result.chain) {
532
- /******/ chainInfo = "\nUpdate propagation: " + result.chain.join(" -> ");
533
- /******/ }
534
- /******/ switch (result.type) {
535
- /******/ case "self-declined":
536
- /******/ if (options.onDeclined) options.onDeclined(result);
537
- /******/ if (!options.ignoreDeclined)
538
- /******/ abortError = new Error(
539
- /******/ "Aborted because of self decline: " +
540
- /******/ result.moduleId +
541
- /******/ chainInfo
542
- /******/ );
543
- /******/ break;
544
- /******/ case "declined":
545
- /******/ if (options.onDeclined) options.onDeclined(result);
546
- /******/ if (!options.ignoreDeclined)
547
- /******/ abortError = new Error(
548
- /******/ "Aborted because of declined dependency: " +
549
- /******/ result.moduleId +
550
- /******/ " in " +
551
- /******/ result.parentId +
552
- /******/ chainInfo
553
- /******/ );
554
- /******/ break;
555
- /******/ case "unaccepted":
556
- /******/ if (options.onUnaccepted) options.onUnaccepted(result);
557
- /******/ if (!options.ignoreUnaccepted)
558
- /******/ abortError = new Error(
559
- /******/ "Aborted because " + moduleId + " is not accepted" + chainInfo
560
- /******/ );
561
- /******/ break;
562
- /******/ case "accepted":
563
- /******/ if (options.onAccepted) options.onAccepted(result);
564
- /******/ doApply = true;
565
- /******/ break;
566
- /******/ case "disposed":
567
- /******/ if (options.onDisposed) options.onDisposed(result);
568
- /******/ doDispose = true;
569
- /******/ break;
570
- /******/ default:
571
- /******/ throw new Error("Unexception type " + result.type);
572
- /******/ }
573
- /******/ if (abortError) {
574
- /******/ hotSetStatus("abort");
575
- /******/ return Promise.reject(abortError);
576
- /******/ }
577
- /******/ if (doApply) {
578
- /******/ appliedUpdate[moduleId] = hotUpdate[moduleId];
579
- /******/ addAllToSet(outdatedModules, result.outdatedModules);
580
- /******/ for (moduleId in result.outdatedDependencies) {
581
- /******/ if (
582
- /******/ Object.prototype.hasOwnProperty.call(
583
- /******/ result.outdatedDependencies,
584
- /******/ moduleId
585
- /******/ )
586
- /******/ ) {
587
- /******/ if (!outdatedDependencies[moduleId])
588
- /******/ outdatedDependencies[moduleId] = [];
589
- /******/ addAllToSet(
590
- /******/ outdatedDependencies[moduleId],
591
- /******/ result.outdatedDependencies[moduleId]
592
- /******/ );
593
- /******/ }
594
- /******/ }
595
- /******/ }
596
- /******/ if (doDispose) {
597
- /******/ addAllToSet(outdatedModules, [result.moduleId]);
598
- /******/ appliedUpdate[moduleId] = warnUnexpectedRequire;
599
- /******/ }
600
- /******/ }
601
- /******/ }
602
- /******/
603
- /******/ // Store self accepted outdated modules to require them later by the module system
604
- /******/ var outdatedSelfAcceptedModules = [];
605
- /******/ for (i = 0; i < outdatedModules.length; i++) {
606
- /******/ moduleId = outdatedModules[i];
607
- /******/ if (
608
- /******/ installedModules[moduleId] &&
609
- /******/ installedModules[moduleId].hot._selfAccepted &&
610
- /******/ // removed self-accepted modules should not be required
611
- /******/ appliedUpdate[moduleId] !== warnUnexpectedRequire &&
612
- /******/ // when called invalidate self-accepting is not possible
613
- /******/ !installedModules[moduleId].hot._selfInvalidated
614
- /******/ ) {
615
- /******/ outdatedSelfAcceptedModules.push({
616
- /******/ module: moduleId,
617
- /******/ parents: installedModules[moduleId].parents.slice(),
618
- /******/ errorHandler: installedModules[moduleId].hot._selfAccepted
619
- /******/ });
620
- /******/ }
621
- /******/ }
622
- /******/
623
- /******/ // Now in "dispose" phase
624
- /******/ hotSetStatus("dispose");
625
- /******/ Object.keys(hotAvailableFilesMap).forEach(function(chunkId) {
626
- /******/ if (hotAvailableFilesMap[chunkId] === false) {
627
- /******/ hotDisposeChunk(chunkId);
628
- /******/ }
629
- /******/ });
630
- /******/
631
- /******/ var idx;
632
- /******/ var queue = outdatedModules.slice();
633
- /******/ while (queue.length > 0) {
634
- /******/ moduleId = queue.pop();
635
- /******/ module = installedModules[moduleId];
636
- /******/ if (!module) continue;
637
- /******/
638
- /******/ var data = {};
639
- /******/
640
- /******/ // Call dispose handlers
641
- /******/ var disposeHandlers = module.hot._disposeHandlers;
642
- /******/ for (j = 0; j < disposeHandlers.length; j++) {
643
- /******/ cb = disposeHandlers[j];
644
- /******/ cb(data);
645
- /******/ }
646
- /******/ hotCurrentModuleData[moduleId] = data;
647
- /******/
648
- /******/ // disable module (this disables requires from this module)
649
- /******/ module.hot.active = false;
650
- /******/
651
- /******/ // remove module from cache
652
- /******/ delete installedModules[moduleId];
653
- /******/
654
- /******/ // when disposing there is no need to call dispose handler
655
- /******/ delete outdatedDependencies[moduleId];
656
- /******/
657
- /******/ // remove "parents" references from all children
658
- /******/ for (j = 0; j < module.children.length; j++) {
659
- /******/ var child = installedModules[module.children[j]];
660
- /******/ if (!child) continue;
661
- /******/ idx = child.parents.indexOf(moduleId);
662
- /******/ if (idx >= 0) {
663
- /******/ child.parents.splice(idx, 1);
664
- /******/ }
665
- /******/ }
666
- /******/ }
667
- /******/
668
- /******/ // remove outdated dependency from module children
669
- /******/ var dependency;
670
- /******/ var moduleOutdatedDependencies;
671
- /******/ for (moduleId in outdatedDependencies) {
672
- /******/ if (
673
- /******/ Object.prototype.hasOwnProperty.call(outdatedDependencies, moduleId)
674
- /******/ ) {
675
- /******/ module = installedModules[moduleId];
676
- /******/ if (module) {
677
- /******/ moduleOutdatedDependencies = outdatedDependencies[moduleId];
678
- /******/ for (j = 0; j < moduleOutdatedDependencies.length; j++) {
679
- /******/ dependency = moduleOutdatedDependencies[j];
680
- /******/ idx = module.children.indexOf(dependency);
681
- /******/ if (idx >= 0) module.children.splice(idx, 1);
682
- /******/ }
683
- /******/ }
684
- /******/ }
685
- /******/ }
686
- /******/
687
- /******/ // Now in "apply" phase
688
- /******/ hotSetStatus("apply");
689
- /******/
690
- /******/ if (hotUpdateNewHash !== undefined) {
691
- /******/ hotCurrentHash = hotUpdateNewHash;
692
- /******/ hotUpdateNewHash = undefined;
693
- /******/ }
694
- /******/ hotUpdate = undefined;
695
- /******/
696
- /******/ // insert new code
697
- /******/ for (moduleId in appliedUpdate) {
698
- /******/ if (Object.prototype.hasOwnProperty.call(appliedUpdate, moduleId)) {
699
- /******/ modules[moduleId] = appliedUpdate[moduleId];
700
- /******/ }
701
- /******/ }
702
- /******/
703
- /******/ // call accept handlers
704
- /******/ var error = null;
705
- /******/ for (moduleId in outdatedDependencies) {
706
- /******/ if (
707
- /******/ Object.prototype.hasOwnProperty.call(outdatedDependencies, moduleId)
708
- /******/ ) {
709
- /******/ module = installedModules[moduleId];
710
- /******/ if (module) {
711
- /******/ moduleOutdatedDependencies = outdatedDependencies[moduleId];
712
- /******/ var callbacks = [];
713
- /******/ for (i = 0; i < moduleOutdatedDependencies.length; i++) {
714
- /******/ dependency = moduleOutdatedDependencies[i];
715
- /******/ cb = module.hot._acceptedDependencies[dependency];
716
- /******/ if (cb) {
717
- /******/ if (callbacks.indexOf(cb) !== -1) continue;
718
- /******/ callbacks.push(cb);
719
- /******/ }
720
- /******/ }
721
- /******/ for (i = 0; i < callbacks.length; i++) {
722
- /******/ cb = callbacks[i];
723
- /******/ try {
724
- /******/ cb(moduleOutdatedDependencies);
725
- /******/ } catch (err) {
726
- /******/ if (options.onErrored) {
727
- /******/ options.onErrored({
728
- /******/ type: "accept-errored",
729
- /******/ moduleId: moduleId,
730
- /******/ dependencyId: moduleOutdatedDependencies[i],
731
- /******/ error: err
732
- /******/ });
733
- /******/ }
734
- /******/ if (!options.ignoreErrored) {
735
- /******/ if (!error) error = err;
736
- /******/ }
737
- /******/ }
738
- /******/ }
739
- /******/ }
740
- /******/ }
741
- /******/ }
742
- /******/
743
- /******/ // Load self accepted modules
744
- /******/ for (i = 0; i < outdatedSelfAcceptedModules.length; i++) {
745
- /******/ var item = outdatedSelfAcceptedModules[i];
746
- /******/ moduleId = item.module;
747
- /******/ hotCurrentParents = item.parents;
748
- /******/ hotCurrentChildModule = moduleId;
749
- /******/ try {
750
- /******/ __webpack_require__(moduleId);
751
- /******/ } catch (err) {
752
- /******/ if (typeof item.errorHandler === "function") {
753
- /******/ try {
754
- /******/ item.errorHandler(err);
755
- /******/ } catch (err2) {
756
- /******/ if (options.onErrored) {
757
- /******/ options.onErrored({
758
- /******/ type: "self-accept-error-handler-errored",
759
- /******/ moduleId: moduleId,
760
- /******/ error: err2,
761
- /******/ originalError: err
762
- /******/ });
763
- /******/ }
764
- /******/ if (!options.ignoreErrored) {
765
- /******/ if (!error) error = err2;
766
- /******/ }
767
- /******/ if (!error) error = err;
768
- /******/ }
769
- /******/ } else {
770
- /******/ if (options.onErrored) {
771
- /******/ options.onErrored({
772
- /******/ type: "self-accept-errored",
773
- /******/ moduleId: moduleId,
774
- /******/ error: err
775
- /******/ });
776
- /******/ }
777
- /******/ if (!options.ignoreErrored) {
778
- /******/ if (!error) error = err;
779
- /******/ }
780
- /******/ }
781
- /******/ }
782
- /******/ }
783
- /******/
784
- /******/ // handle errors in accept handlers and self accepted module load
785
- /******/ if (error) {
786
- /******/ hotSetStatus("fail");
787
- /******/ return Promise.reject(error);
788
- /******/ }
789
- /******/
790
- /******/ if (hotQueuedInvalidatedModules) {
791
- /******/ return hotApplyInternal(options).then(function(list) {
792
- /******/ outdatedModules.forEach(function(moduleId) {
793
- /******/ if (list.indexOf(moduleId) < 0) list.push(moduleId);
794
- /******/ });
795
- /******/ return list;
796
- /******/ });
797
- /******/ }
798
- /******/
799
- /******/ hotSetStatus("idle");
800
- /******/ return new Promise(function(resolve) {
801
- /******/ resolve(outdatedModules);
802
- /******/ });
803
- /******/ }
804
- /******/
805
- /******/ function hotApplyInvalidatedModules() {
806
- /******/ if (hotQueuedInvalidatedModules) {
807
- /******/ if (!hotUpdate) hotUpdate = {};
808
- /******/ hotQueuedInvalidatedModules.forEach(hotApplyInvalidatedModule);
809
- /******/ hotQueuedInvalidatedModules = undefined;
810
- /******/ return true;
811
- /******/ }
812
- /******/ }
813
- /******/
814
- /******/ function hotApplyInvalidatedModule(moduleId) {
815
- /******/ if (!Object.prototype.hasOwnProperty.call(hotUpdate, moduleId))
816
- /******/ hotUpdate[moduleId] = modules[moduleId];
817
- /******/ }
818
- /******/
819
- /******/ // The module cache
820
- /******/ var installedModules = {};
821
- /******/
822
- /******/ // object to store loaded and loading chunks
823
- /******/ // undefined = chunk not loaded, null = chunk preloaded/prefetched
824
- /******/ // Promise = chunk loading, 0 = chunk loaded
825
- /******/ var installedChunks = {
826
- /******/ "runtime-main": 0
827
- /******/ };
828
- /******/
829
- /******/ var deferredModules = [];
830
- /******/
831
- /******/ // The require function
832
- /******/ function __webpack_require__(moduleId) {
833
- /******/
834
- /******/ // Check if module is in cache
835
- /******/ if(installedModules[moduleId]) {
836
- /******/ return installedModules[moduleId].exports;
837
- /******/ }
838
- /******/ // Create a new module (and put it into the cache)
839
- /******/ var module = installedModules[moduleId] = {
840
- /******/ i: moduleId,
841
- /******/ l: false,
842
- /******/ exports: {},
843
- /******/ hot: hotCreateModule(moduleId),
844
- /******/ parents: (hotCurrentParentsTemp = hotCurrentParents, hotCurrentParents = [], hotCurrentParentsTemp),
845
- /******/ children: []
846
- /******/ };
847
- /******/
848
- /******/ // Execute the module function
849
- /******/
850
- /******/ __webpack_require__.$Refresh$.init();
851
- /******/ try {
852
- /******/ modules[moduleId].call(module.exports, module, module.exports, hotCreateRequire(moduleId));
853
- /******/ } finally {
854
- /******/ __webpack_require__.$Refresh$.cleanup(moduleId);
855
- /******/ }
856
- /******/
857
- /******/
858
- /******/ // Flag the module as loaded
859
- /******/ module.l = true;
860
- /******/
861
- /******/ // Return the exports of the module
862
- /******/ return module.exports;
863
- /******/ }
864
- /******/
865
- /******/
866
- /******/ // expose the modules object (__webpack_modules__)
867
- /******/ __webpack_require__.m = modules;
868
- /******/
869
- /******/ // expose the module cache
870
- /******/ __webpack_require__.c = installedModules;
871
- /******/
872
- /******/ // define getter function for harmony exports
873
- /******/ __webpack_require__.d = function(exports, name, getter) {
874
- /******/ if(!__webpack_require__.o(exports, name)) {
875
- /******/ Object.defineProperty(exports, name, { enumerable: true, get: getter });
876
- /******/ }
877
- /******/ };
878
- /******/
879
- /******/ // define __esModule on exports
880
- /******/ __webpack_require__.r = function(exports) {
881
- /******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
882
- /******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
883
- /******/ }
884
- /******/ Object.defineProperty(exports, '__esModule', { value: true });
885
- /******/ };
886
- /******/
887
- /******/ // create a fake namespace object
888
- /******/ // mode & 1: value is a module id, require it
889
- /******/ // mode & 2: merge all properties of value into the ns
890
- /******/ // mode & 4: return value when already ns object
891
- /******/ // mode & 8|1: behave like require
892
- /******/ __webpack_require__.t = function(value, mode) {
893
- /******/ if(mode & 1) value = __webpack_require__(value);
894
- /******/ if(mode & 8) return value;
895
- /******/ if((mode & 4) && typeof value === 'object' && value && value.__esModule) return value;
896
- /******/ var ns = Object.create(null);
897
- /******/ __webpack_require__.r(ns);
898
- /******/ Object.defineProperty(ns, 'default', { enumerable: true, value: value });
899
- /******/ if(mode & 2 && typeof value != 'string') for(var key in value) __webpack_require__.d(ns, key, function(key) { return value[key]; }.bind(null, key));
900
- /******/ return ns;
901
- /******/ };
902
- /******/
903
- /******/ // getDefaultExport function for compatibility with non-harmony modules
904
- /******/ __webpack_require__.n = function(module) {
905
- /******/ var getter = module && module.__esModule ?
906
- /******/ function getDefault() { return module['default']; } :
907
- /******/ function getModuleExports() { return module; };
908
- /******/ __webpack_require__.d(getter, 'a', getter);
909
- /******/ return getter;
910
- /******/ };
911
- /******/
912
- /******/ // Object.prototype.hasOwnProperty.call
913
- /******/ __webpack_require__.o = function(object, property) { return Object.prototype.hasOwnProperty.call(object, property); };
914
- /******/
915
- /******/ // __webpack_public_path__
916
- /******/ __webpack_require__.p = "/";
917
- /******/
918
- /******/ // __webpack_hash__
919
- /******/ __webpack_require__.h = function() { return hotCurrentHash; };
920
- /******/
921
- /******/ __webpack_require__.$Refresh$ = {
922
- /******/ init: function() {
923
- /******/ __webpack_require__.$Refresh$.cleanup = function() { return undefined; };
924
- /******/ __webpack_require__.$Refresh$.register = function() { return undefined; };
925
- /******/ __webpack_require__.$Refresh$.runtime = {};
926
- /******/ __webpack_require__.$Refresh$.signature = function() { return function(type) { return type; }; };
927
- /******/ },
928
- /******/ setup: function(currentModuleId) {
929
- /******/ var prevCleanup = __webpack_require__.$Refresh$.cleanup;
930
- /******/ var prevReg = __webpack_require__.$Refresh$.register;
931
- /******/ var prevSig = __webpack_require__.$Refresh$.signature;
932
- /******/
933
- /******/ __webpack_require__.$Refresh$.register = function(type, id) {
934
- /******/ var typeId = currentModuleId + " " + id;
935
- /******/ __webpack_require__.$Refresh$.runtime.register(type, typeId);
936
- /******/ }
937
- /******/
938
- /******/ __webpack_require__.$Refresh$.signature = __webpack_require__.$Refresh$.runtime.createSignatureFunctionForTransform;
939
- /******/
940
- /******/ __webpack_require__.$Refresh$.cleanup = function(cleanupModuleId) {
941
- /******/ if (currentModuleId === cleanupModuleId) {
942
- /******/ __webpack_require__.$Refresh$.register = prevReg;
943
- /******/ __webpack_require__.$Refresh$.signature = prevSig;
944
- /******/ __webpack_require__.$Refresh$.cleanup = prevCleanup;
945
- /******/ }
946
- /******/ }
947
- /******/ },
948
- /******/ };
949
- /******/
950
- /******/ var jsonpArray = this["webpackJsonp@cloudbase/weda-ui"] = this["webpackJsonp@cloudbase/weda-ui"] || [];
951
- /******/ var oldJsonpFunction = jsonpArray.push.bind(jsonpArray);
952
- /******/ jsonpArray.push = webpackJsonpCallback;
953
- /******/ jsonpArray = jsonpArray.slice();
954
- /******/ for(var i = 0; i < jsonpArray.length; i++) webpackJsonpCallback(jsonpArray[i]);
955
- /******/ var parentJsonpFunction = oldJsonpFunction;
956
- /******/
957
- /******/
958
- /******/ // run deferred modules from other chunks
959
- /******/ checkDeferredModules();
960
- /******/ })
961
- /************************************************************************/
962
- /******/ ([]);
963
- //# sourceMappingURL=bundle.js.map