amis 1.5.6 → 1.6.1-beta.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (538) hide show
  1. package/.husky/pre-commit +1 -1
  2. package/README.md +1 -0
  3. package/lib/RootRenderer.d.ts +2 -0
  4. package/lib/RootRenderer.js +19 -1
  5. package/lib/RootRenderer.js.map +2 -2
  6. package/lib/Schema.d.ts +3 -2
  7. package/lib/Schema.js.map +1 -1
  8. package/lib/SchemaRenderer.js +52 -1
  9. package/lib/SchemaRenderer.js.map +2 -2
  10. package/lib/Scoped.d.ts +2 -0
  11. package/lib/Scoped.js +27 -1
  12. package/lib/Scoped.js.map +2 -2
  13. package/lib/actions/Action.d.ts +33 -0
  14. package/lib/actions/Action.js +100 -0
  15. package/lib/actions/Action.js.map +13 -0
  16. package/lib/actions/AjaxAction.d.ts +14 -0
  17. package/lib/actions/AjaxAction.js +68 -0
  18. package/lib/actions/AjaxAction.js.map +13 -0
  19. package/lib/actions/BreakAction.d.ts +12 -0
  20. package/lib/actions/BreakAction.js +28 -0
  21. package/lib/actions/BreakAction.js.map +13 -0
  22. package/lib/actions/BroadcastAction.d.ts +12 -0
  23. package/lib/actions/BroadcastAction.js +40 -0
  24. package/lib/actions/BroadcastAction.js.map +13 -0
  25. package/lib/actions/CmptAction.d.ts +12 -0
  26. package/lib/actions/CmptAction.js +40 -0
  27. package/lib/actions/CmptAction.js.map +13 -0
  28. package/lib/actions/ContinueAction.d.ts +12 -0
  29. package/lib/actions/ContinueAction.js +28 -0
  30. package/lib/actions/ContinueAction.js.map +13 -0
  31. package/lib/actions/CopyAction.d.ts +12 -0
  32. package/lib/actions/CopyAction.js +35 -0
  33. package/lib/actions/CopyAction.js.map +13 -0
  34. package/lib/actions/CustomAction.d.ts +12 -0
  35. package/lib/actions/CustomAction.js +43 -0
  36. package/lib/actions/CustomAction.js.map +13 -0
  37. package/lib/actions/DialogAction.d.ts +12 -0
  38. package/lib/actions/DialogAction.js +31 -0
  39. package/lib/actions/DialogAction.js.map +13 -0
  40. package/lib/actions/DrawerAction.d.ts +12 -0
  41. package/lib/actions/DrawerAction.js +31 -0
  42. package/lib/actions/DrawerAction.js.map +13 -0
  43. package/lib/actions/EmailAction.d.ts +12 -0
  44. package/lib/actions/EmailAction.js +37 -0
  45. package/lib/actions/EmailAction.js.map +13 -0
  46. package/lib/actions/LoopAction.d.ts +12 -0
  47. package/lib/actions/LoopAction.js +93 -0
  48. package/lib/actions/LoopAction.js.map +13 -0
  49. package/lib/actions/OpenPageAction.d.ts +12 -0
  50. package/lib/actions/OpenPageAction.js +33 -0
  51. package/lib/actions/OpenPageAction.js.map +13 -0
  52. package/lib/actions/ParallelAction.d.ts +5 -0
  53. package/lib/actions/ParallelAction.js +33 -0
  54. package/lib/actions/ParallelAction.js.map +13 -0
  55. package/lib/actions/SwitchAction.d.ts +8 -0
  56. package/lib/actions/SwitchAction.js +45 -0
  57. package/lib/actions/SwitchAction.js.map +13 -0
  58. package/lib/actions/index.d.ts +18 -0
  59. package/lib/actions/index.js +22 -0
  60. package/lib/actions/index.js.map +13 -0
  61. package/lib/components/AnchorNav.d.ts +20 -20
  62. package/lib/components/AssociatedSelection.d.ts +84 -84
  63. package/lib/components/AssociatedSelection.js +2 -2
  64. package/lib/components/AssociatedSelection.js.map +2 -2
  65. package/lib/components/Avatar.d.ts +135 -0
  66. package/lib/components/Avatar.js +120 -0
  67. package/lib/components/Avatar.js.map +13 -0
  68. package/lib/components/BaiduMapPicker.js.map +2 -2
  69. package/lib/components/Button.d.ts +20 -20
  70. package/lib/components/CalendarMobile.d.ts +573 -0
  71. package/lib/components/CalendarMobile.js +486 -0
  72. package/lib/components/CalendarMobile.js.map +13 -0
  73. package/lib/components/Cascader.d.ts +123 -0
  74. package/lib/components/Cascader.js +487 -0
  75. package/lib/components/Cascader.js.map +13 -0
  76. package/lib/components/ChainedSelection.d.ts +84 -84
  77. package/lib/components/ChainedSelection.js +15 -3
  78. package/lib/components/ChainedSelection.js.map +2 -2
  79. package/lib/components/CityArea.d.ts +527 -0
  80. package/lib/components/CityArea.js +177 -0
  81. package/lib/components/CityArea.js.map +13 -0
  82. package/lib/components/Collapse.d.ts +20 -20
  83. package/lib/components/ColorPicker.d.ts +84 -84
  84. package/lib/components/ColorPicker.js +4 -3
  85. package/lib/components/ColorPicker.js.map +2 -2
  86. package/lib/components/DatePicker.d.ts +85 -84
  87. package/lib/components/DatePicker.js +21 -8
  88. package/lib/components/DatePicker.js.map +2 -2
  89. package/lib/components/DateRangePicker.d.ts +85 -84
  90. package/lib/components/DateRangePicker.js +19 -6
  91. package/lib/components/DateRangePicker.js.map +2 -2
  92. package/lib/components/GroupedSelection.d.ts +84 -84
  93. package/lib/components/GroupedSelection.js +14 -2
  94. package/lib/components/GroupedSelection.js.map +2 -2
  95. package/lib/components/InputBox.d.ts +21 -21
  96. package/lib/components/ListGroup.d.ts +21 -21
  97. package/lib/components/ListMenu.d.ts +84 -84
  98. package/lib/components/MonthRangePicker.d.ts +85 -84
  99. package/lib/components/MonthRangePicker.js +18 -7
  100. package/lib/components/MonthRangePicker.js.map +2 -2
  101. package/lib/components/Overlay.d.ts +1 -1
  102. package/lib/components/Overlay.js.map +1 -1
  103. package/lib/components/Picker.d.ts +1 -0
  104. package/lib/components/Picker.js +16 -7
  105. package/lib/components/Picker.js.map +2 -2
  106. package/lib/components/PickerColumn.d.ts +1 -0
  107. package/lib/components/PickerColumn.js +21 -18
  108. package/lib/components/PickerColumn.js.map +2 -2
  109. package/lib/components/PickerContainer.d.ts +3 -0
  110. package/lib/components/PickerContainer.js +12 -5
  111. package/lib/components/PickerContainer.js.map +2 -2
  112. package/lib/components/PopOverContainer.d.ts +1 -0
  113. package/lib/components/PopOverContainer.js +5 -3
  114. package/lib/components/PopOverContainer.js.map +2 -2
  115. package/lib/components/PopUp.d.ts +1041 -28
  116. package/lib/components/PopUp.js +32 -8
  117. package/lib/components/PopUp.js.map +2 -2
  118. package/lib/components/Radios.d.ts +21 -21
  119. package/lib/components/Rating.d.ts +21 -21
  120. package/lib/components/ResultBox.d.ts +85 -84
  121. package/lib/components/ResultBox.js +9 -4
  122. package/lib/components/ResultBox.js.map +2 -2
  123. package/lib/components/ResultList.d.ts +9 -2
  124. package/lib/components/ResultList.js +22 -2
  125. package/lib/components/ResultList.js.map +2 -2
  126. package/lib/components/Select.d.ts +238 -238
  127. package/lib/components/Select.js +13 -9
  128. package/lib/components/Select.js.map +2 -2
  129. package/lib/components/Selection.d.ts +94 -86
  130. package/lib/components/Selection.js +11 -2
  131. package/lib/components/Selection.js.map +2 -2
  132. package/lib/components/Steps.js.map +2 -2
  133. package/lib/components/TableSelection.d.ts +85 -85
  134. package/lib/components/TableSelection.js +1 -9
  135. package/lib/components/TableSelection.js.map +2 -2
  136. package/lib/components/Tabs.js +31 -33
  137. package/lib/components/Tabs.js.map +2 -2
  138. package/lib/components/TabsTransfer.d.ts +87 -256
  139. package/lib/components/TabsTransfer.js +52 -9
  140. package/lib/components/TabsTransfer.js.map +2 -2
  141. package/lib/components/TabsTransferPicker.d.ts +1 -1
  142. package/lib/components/TabsTransferPicker.js +20 -18
  143. package/lib/components/TabsTransferPicker.js.map +2 -2
  144. package/lib/components/Timeline.d.ts +69 -0
  145. package/lib/components/Timeline.js +16 -0
  146. package/lib/components/Timeline.js.map +13 -0
  147. package/lib/components/TimelineItem.d.ts +517 -0
  148. package/lib/components/TimelineItem.js +40 -0
  149. package/lib/components/TimelineItem.js.map +13 -0
  150. package/lib/components/Transfer.d.ts +100 -98
  151. package/lib/components/Transfer.js +2 -3
  152. package/lib/components/Transfer.js.map +2 -2
  153. package/lib/components/TransferDropDown.d.ts +85 -84
  154. package/lib/components/TransferDropDown.js +9 -10
  155. package/lib/components/TransferDropDown.js.map +2 -2
  156. package/lib/components/TransferPicker.d.ts +1 -0
  157. package/lib/components/TransferPicker.js +19 -4
  158. package/lib/components/TransferPicker.js.map +2 -2
  159. package/lib/components/Tree.d.ts +84 -84
  160. package/lib/components/TreeSelection.d.ts +85 -85
  161. package/lib/components/TreeSelection.js +7 -1
  162. package/lib/components/TreeSelection.js.map +2 -2
  163. package/lib/components/calendar/Calendar.d.ts +19 -0
  164. package/lib/components/calendar/Calendar.js +71 -1
  165. package/lib/components/calendar/Calendar.js.map +2 -2
  166. package/lib/components/calendar/DaysView.d.ts +21 -0
  167. package/lib/components/calendar/DaysView.js +76 -17
  168. package/lib/components/calendar/DaysView.js.map +2 -2
  169. package/lib/components/calendar/MonthsView.d.ts +34 -0
  170. package/lib/components/calendar/MonthsView.js +68 -3
  171. package/lib/components/calendar/MonthsView.js.map +2 -2
  172. package/lib/components/calendar/QuartersView.d.ts +1 -0
  173. package/lib/components/calendar/QuartersView.js +2 -2
  174. package/lib/components/calendar/QuartersView.js.map +2 -2
  175. package/lib/components/calendar/TimeView.d.ts +30 -18
  176. package/lib/components/calendar/TimeView.js +47 -8
  177. package/lib/components/calendar/TimeView.js.map +2 -2
  178. package/lib/components/calendar/YearsView.d.ts +6 -0
  179. package/lib/components/calendar/YearsView.js +21 -10
  180. package/lib/components/calendar/YearsView.js.map +2 -2
  181. package/lib/components/condition-builder/Field.js +1 -4
  182. package/lib/components/condition-builder/Field.js.map +2 -2
  183. package/lib/components/condition-builder/Func.js +1 -1
  184. package/lib/components/condition-builder/Func.js.map +2 -2
  185. package/lib/components/formula/Editor.d.ts +3 -0
  186. package/lib/components/formula/Editor.js +3 -2
  187. package/lib/components/formula/Editor.js.map +2 -2
  188. package/lib/components/formula/FuncList.js +2 -1
  189. package/lib/components/formula/FuncList.js.map +2 -2
  190. package/lib/components/formula/Picker.js +1 -1
  191. package/lib/components/formula/Picker.js.map +2 -2
  192. package/lib/components/formula/plugin.js +0 -1
  193. package/lib/components/formula/plugin.js.map +2 -2
  194. package/lib/components/icons.js +2 -0
  195. package/lib/components/icons.js.map +2 -2
  196. package/lib/components/index.d.ts +2 -1
  197. package/lib/components/index.js +4 -2
  198. package/lib/components/index.js.map +2 -2
  199. package/lib/components/virtual-list/SizeAndPositionManager.js.map +2 -2
  200. package/lib/components/virtual-list/index.js +1 -2
  201. package/lib/components/virtual-list/index.js.map +2 -2
  202. package/lib/env.d.ts +4 -0
  203. package/lib/env.js.map +2 -2
  204. package/lib/factory.d.ts +2 -1
  205. package/lib/factory.js +83 -0
  206. package/lib/factory.js.map +2 -2
  207. package/lib/helper.css.map +1 -1
  208. package/lib/icons/tree-down.js +7 -0
  209. package/lib/index.d.ts +3 -0
  210. package/lib/index.js +4 -1
  211. package/lib/index.js.map +2 -2
  212. package/lib/locale/de-DE.js +17 -2
  213. package/lib/locale/de-DE.js.map +2 -2
  214. package/lib/locale/en-US.js +17 -2
  215. package/lib/locale/en-US.js.map +2 -2
  216. package/lib/locale/zh-CN.js +16 -1
  217. package/lib/locale/zh-CN.js.map +2 -2
  218. package/lib/renderers/Action.d.ts +1 -1
  219. package/lib/renderers/Action.js +26 -10
  220. package/lib/renderers/Action.js.map +2 -2
  221. package/lib/renderers/Avatar.d.ts +35 -26
  222. package/lib/renderers/Avatar.js +14 -19
  223. package/lib/renderers/Avatar.js.map +2 -2
  224. package/lib/renderers/CRUD.js +1 -2
  225. package/lib/renderers/CRUD.js.map +2 -2
  226. package/lib/renderers/Card.js +6 -5
  227. package/lib/renderers/Card.js.map +2 -2
  228. package/lib/renderers/Custom.d.ts +1 -1
  229. package/lib/renderers/Custom.js +1 -1
  230. package/lib/renderers/Custom.js.map +2 -2
  231. package/lib/renderers/DropDownButton.d.ts +11 -2
  232. package/lib/renderers/DropDownButton.js +30 -12
  233. package/lib/renderers/DropDownButton.js.map +2 -2
  234. package/lib/renderers/Each.js +5 -2
  235. package/lib/renderers/Each.js.map +2 -2
  236. package/lib/renderers/Flex.js +1 -5
  237. package/lib/renderers/Flex.js.map +2 -2
  238. package/lib/renderers/Form/ChartRadios.js.map +2 -2
  239. package/lib/renderers/Form/Checkboxes.js.map +2 -2
  240. package/lib/renderers/Form/CityDB.js +526 -2
  241. package/lib/renderers/Form/CityDB.js.map +2 -2
  242. package/lib/renderers/Form/DiffEditor.d.ts +6 -0
  243. package/lib/renderers/Form/DiffEditor.js +2 -1
  244. package/lib/renderers/Form/DiffEditor.js.map +2 -2
  245. package/lib/renderers/Form/Editor.d.ts +6 -0
  246. package/lib/renderers/Form/InputCity.d.ts +85 -84
  247. package/lib/renderers/Form/InputCity.js +4 -2
  248. package/lib/renderers/Form/InputCity.js.map +2 -2
  249. package/lib/renderers/Form/InputColor.d.ts +84 -84
  250. package/lib/renderers/Form/InputColor.js +6 -2
  251. package/lib/renderers/Form/InputColor.js.map +2 -2
  252. package/lib/renderers/Form/InputDate.js +10 -5
  253. package/lib/renderers/Form/InputDate.js.map +2 -2
  254. package/lib/renderers/Form/InputDateRange.js +6 -2
  255. package/lib/renderers/Form/InputDateRange.js.map +2 -2
  256. package/lib/renderers/Form/InputFormula.d.ts +4 -1
  257. package/lib/renderers/Form/InputFormula.js +2 -2
  258. package/lib/renderers/Form/InputFormula.js.map +2 -2
  259. package/lib/renderers/Form/InputImage.d.ts +1 -0
  260. package/lib/renderers/Form/InputImage.js +8 -4
  261. package/lib/renderers/Form/InputImage.js.map +2 -2
  262. package/lib/renderers/Form/InputMonthRange.js +1 -1
  263. package/lib/renderers/Form/InputMonthRange.js.map +2 -2
  264. package/lib/renderers/Form/InputQuarterRange.js +1 -1
  265. package/lib/renderers/Form/InputQuarterRange.js.map +2 -2
  266. package/lib/renderers/Form/InputYearRange.js +1 -1
  267. package/lib/renderers/Form/InputYearRange.js.map +2 -2
  268. package/lib/renderers/Form/Item.d.ts +10 -14
  269. package/lib/renderers/Form/Item.js +18 -9
  270. package/lib/renderers/Form/Item.js.map +2 -2
  271. package/lib/renderers/Form/NestedSelect.d.ts +1 -0
  272. package/lib/renderers/Form/NestedSelect.js +8 -4
  273. package/lib/renderers/Form/NestedSelect.js.map +2 -2
  274. package/lib/renderers/Form/Options.js +9 -7
  275. package/lib/renderers/Form/Options.js.map +2 -2
  276. package/lib/renderers/Form/Select.d.ts +2 -0
  277. package/lib/renderers/Form/Select.js +9 -6
  278. package/lib/renderers/Form/Select.js.map +2 -2
  279. package/lib/renderers/Form/TabsTransfer.d.ts +5 -32
  280. package/lib/renderers/Form/TabsTransfer.js +20 -1
  281. package/lib/renderers/Form/TabsTransfer.js.map +2 -2
  282. package/lib/renderers/Form/TabsTransferPicker.d.ts +5 -35
  283. package/lib/renderers/Form/TabsTransferPicker.js +21 -2
  284. package/lib/renderers/Form/TabsTransferPicker.js.map +2 -2
  285. package/lib/renderers/Form/Transfer.d.ts +15 -4
  286. package/lib/renderers/Form/Transfer.js +55 -18
  287. package/lib/renderers/Form/Transfer.js.map +2 -2
  288. package/lib/renderers/Form/TransferPicker.d.ts +3 -32
  289. package/lib/renderers/Form/TransferPicker.js +1 -1
  290. package/lib/renderers/Form/TransferPicker.js.map +2 -2
  291. package/lib/renderers/Form/TreeSelect.js +4 -4
  292. package/lib/renderers/Form/TreeSelect.js.map +2 -2
  293. package/lib/renderers/Form/index.js +10 -2
  294. package/lib/renderers/Form/index.js.map +2 -2
  295. package/lib/renderers/IFrame.js +0 -2
  296. package/lib/renderers/IFrame.js.map +2 -2
  297. package/lib/renderers/Link.d.ts +1 -1
  298. package/lib/renderers/Link.js +27 -6
  299. package/lib/renderers/Link.js.map +2 -2
  300. package/lib/renderers/Nav.d.ts +21 -21
  301. package/lib/renderers/Nav.js +4 -1
  302. package/lib/renderers/Nav.js.map +2 -2
  303. package/lib/renderers/Remark.d.ts +5 -1
  304. package/lib/renderers/Remark.js +39 -7
  305. package/lib/renderers/Remark.js.map +2 -2
  306. package/lib/renderers/Steps.js +5 -5
  307. package/lib/renderers/Steps.js.map +2 -2
  308. package/lib/renderers/Table/TableRow.js +4 -1
  309. package/lib/renderers/Table/TableRow.js.map +2 -2
  310. package/lib/renderers/Table/index.js +4 -1
  311. package/lib/renderers/Table/index.js.map +2 -2
  312. package/lib/renderers/Tabs.js +1 -1
  313. package/lib/renderers/Tabs.js.map +2 -2
  314. package/lib/renderers/Timeline.d.ts +65 -0
  315. package/lib/renderers/Timeline.js +54 -0
  316. package/lib/renderers/Timeline.js.map +13 -0
  317. package/lib/renderers/Video.js.map +2 -2
  318. package/lib/schemaExtend.js +23 -9
  319. package/lib/schemaExtend.js.map +2 -2
  320. package/lib/store/combo.js.map +2 -2
  321. package/lib/store/formItem.js +7 -7
  322. package/lib/store/formItem.js.map +2 -2
  323. package/lib/store/table.js +1 -1
  324. package/lib/store/table.js.map +2 -2
  325. package/lib/themes/ang-ie11.css +1149 -53
  326. package/lib/themes/ang.css +1149 -53
  327. package/lib/themes/ang.css.map +1 -1
  328. package/lib/themes/antd-ie11.css +1187 -53
  329. package/lib/themes/antd.css +1187 -53
  330. package/lib/themes/antd.css.map +1 -1
  331. package/lib/themes/cxd-ie11.css +1190 -71
  332. package/lib/themes/cxd.css +1190 -71
  333. package/lib/themes/cxd.css.map +1 -1
  334. package/lib/themes/dark-ie11.css +1152 -53
  335. package/lib/themes/dark.css +1152 -53
  336. package/lib/themes/dark.css.map +1 -1
  337. package/lib/themes/default.css +1190 -71
  338. package/lib/themes/default.css.map +1 -1
  339. package/lib/utils/RootClose.js +3 -1
  340. package/lib/utils/RootClose.js.map +2 -2
  341. package/lib/utils/api.js +14 -3
  342. package/lib/utils/api.js.map +2 -2
  343. package/lib/utils/debug.d.ts +26 -0
  344. package/lib/utils/debug.js +351 -0
  345. package/lib/utils/debug.js.map +13 -0
  346. package/lib/utils/helper.d.ts +1 -6
  347. package/lib/utils/helper.js +6 -17
  348. package/lib/utils/helper.js.map +2 -2
  349. package/lib/utils/renderer-event.d.ts +38 -0
  350. package/lib/utils/renderer-event.js +28 -0
  351. package/lib/utils/renderer-event.js.map +13 -0
  352. package/package.json +12 -6
  353. package/schema.json +3483 -810
  354. package/scss/_properties.scss +20 -6
  355. package/scss/_variables.scss +1 -0
  356. package/scss/components/_avatar.scss +27 -9
  357. package/scss/components/_calendar.scss +291 -0
  358. package/scss/components/_card.scss +1 -1
  359. package/scss/components/_cascader.scss +102 -0
  360. package/scss/components/_city-area.scss +27 -0
  361. package/scss/components/_collapse-group.scss +1 -3
  362. package/scss/components/_debug.scss +167 -0
  363. package/scss/components/_dropdown.scss +39 -9
  364. package/scss/components/_formula.scss +30 -6
  365. package/scss/components/_modal.scss +18 -0
  366. package/scss/components/_panel.scss +45 -0
  367. package/scss/components/_picker-columns.scss +15 -5
  368. package/scss/components/_popup.scss +43 -16
  369. package/scss/components/_result-box.scss +31 -0
  370. package/scss/components/_timeline.scss +198 -0
  371. package/scss/components/form/_checks.scss +2 -0
  372. package/scss/components/form/_color.scss +2 -2
  373. package/scss/components/form/_date-range.scss +34 -1
  374. package/scss/components/form/_date.scss +46 -1
  375. package/scss/components/form/_form.scss +170 -0
  376. package/scss/components/form/_nested-select.scss +3 -0
  377. package/scss/components/form/_result-list.scss +2 -0
  378. package/scss/components/form/_select.scss +32 -3
  379. package/scss/components/form/_selection.scss +5 -4
  380. package/scss/components/form/_transfer.scss +3 -0
  381. package/scss/components/form/_tree-select.scss +1 -1
  382. package/scss/themes/_antd-variables.scss +45 -0
  383. package/scss/themes/_common.scss +5 -0
  384. package/scss/themes/_cxd-variables.scss +51 -2
  385. package/scss/themes/_dark-variables.scss +4 -0
  386. package/scss/themes/cxd.scss +0 -19
  387. package/sdk/ang-ie11.css +1450 -142
  388. package/sdk/ang.css +1473 -159
  389. package/sdk/antd-ie11.css +1451 -142
  390. package/sdk/antd.css +1511 -159
  391. package/sdk/charts.js +15 -15
  392. package/sdk/codemirror.js +7 -7
  393. package/sdk/color-picker.js +65 -65
  394. package/sdk/cropperjs.js +2 -2
  395. package/sdk/cxd-ie11.css +1449 -159
  396. package/sdk/cxd.css +1514 -179
  397. package/sdk/dark-ie11.css +1450 -142
  398. package/sdk/dark.css +1476 -159
  399. package/sdk/exceljs.js +1 -1
  400. package/sdk/helper.css.map +1 -1
  401. package/sdk/locale/de-DE.js +17 -2
  402. package/sdk/markdown.js +69 -69
  403. package/sdk/papaparse.js +1 -1
  404. package/sdk/renderers/Form/CityDB.js +1 -1
  405. package/sdk/rest.js +18 -18
  406. package/sdk/rich-text.js +62 -62
  407. package/sdk/sdk-ie11.css +1449 -159
  408. package/sdk/sdk.css +1514 -179
  409. package/sdk/sdk.js +1311 -1253
  410. package/sdk/thirds/hls.js/hls.js +1 -1
  411. package/sdk/thirds/mpegts.js/mpegts.js +1 -1
  412. package/sdk/tinymce.js +57 -57
  413. package/src/RootRenderer.tsx +27 -1
  414. package/src/Schema.ts +3 -0
  415. package/src/SchemaRenderer.tsx +70 -4
  416. package/src/Scoped.tsx +46 -4
  417. package/src/actions/Action.ts +138 -0
  418. package/src/actions/AjaxAction.ts +58 -0
  419. package/src/actions/BreakAction.ts +27 -0
  420. package/src/actions/BroadcastAction.ts +41 -0
  421. package/src/actions/CmptAction.ts +36 -0
  422. package/src/actions/ContinueAction.ts +27 -0
  423. package/src/actions/CopyAction.ts +41 -0
  424. package/src/actions/CustomAction.ts +46 -0
  425. package/src/actions/DialogAction.ts +28 -0
  426. package/src/actions/DrawerAction.ts +28 -0
  427. package/src/actions/EmailAction.ts +38 -0
  428. package/src/actions/LoopAction.ts +77 -0
  429. package/src/actions/OpenPageAction.ts +39 -0
  430. package/src/actions/ParallelAction.ts +26 -0
  431. package/src/actions/SwitchAction.ts +35 -0
  432. package/src/actions/index.ts +20 -0
  433. package/src/components/AssociatedSelection.tsx +5 -1
  434. package/src/components/Avatar.tsx +253 -0
  435. package/src/components/BaiduMapPicker.tsx +19 -14
  436. package/src/components/CalendarMobile.tsx +658 -0
  437. package/src/components/Cascader.tsx +564 -0
  438. package/src/components/ChainedSelection.tsx +16 -3
  439. package/src/components/CityArea.tsx +315 -0
  440. package/src/components/ColorPicker.tsx +41 -40
  441. package/src/components/DatePicker.tsx +80 -34
  442. package/src/components/DateRangePicker.tsx +85 -30
  443. package/src/components/GroupedSelection.tsx +14 -2
  444. package/src/components/MonthRangePicker.tsx +78 -31
  445. package/src/components/Overlay.tsx +1 -1
  446. package/src/components/Picker.tsx +55 -35
  447. package/src/components/PickerColumn.tsx +43 -36
  448. package/src/components/PickerContainer.tsx +13 -1
  449. package/src/components/PopOverContainer.tsx +31 -17
  450. package/src/components/PopUp.tsx +84 -57
  451. package/src/components/ResultBox.tsx +14 -2
  452. package/src/components/ResultList.tsx +36 -6
  453. package/src/components/Select.tsx +24 -26
  454. package/src/components/Selection.tsx +21 -3
  455. package/src/components/Steps.tsx +23 -10
  456. package/src/components/TableSelection.tsx +1 -44
  457. package/src/components/Tabs.tsx +65 -54
  458. package/src/components/TabsTransfer.tsx +78 -9
  459. package/src/components/TabsTransferPicker.tsx +25 -13
  460. package/src/components/Timeline.tsx +36 -0
  461. package/src/components/TimelineItem.tsx +140 -0
  462. package/src/components/Transfer.tsx +11 -8
  463. package/src/components/TransferDropDown.tsx +20 -12
  464. package/src/components/TransferPicker.tsx +25 -4
  465. package/src/components/TreeSelection.tsx +7 -1
  466. package/src/components/calendar/Calendar.tsx +101 -4
  467. package/src/components/calendar/DaysView.tsx +165 -33
  468. package/src/components/calendar/MonthsView.tsx +108 -1
  469. package/src/components/calendar/QuartersView.tsx +3 -2
  470. package/src/components/calendar/TimeView.tsx +104 -41
  471. package/src/components/calendar/YearsView.tsx +34 -17
  472. package/src/components/condition-builder/Field.tsx +1 -3
  473. package/src/components/condition-builder/Func.tsx +1 -1
  474. package/src/components/formula/Editor.tsx +16 -11
  475. package/src/components/formula/FuncList.tsx +3 -1
  476. package/src/components/formula/Picker.tsx +2 -1
  477. package/src/components/formula/plugin.ts +0 -2
  478. package/src/components/icons.tsx +2 -0
  479. package/src/components/index.tsx +2 -0
  480. package/src/components/virtual-list/SizeAndPositionManager.ts +6 -3
  481. package/src/components/virtual-list/index.tsx +4 -6
  482. package/src/env.tsx +22 -0
  483. package/src/factory.tsx +93 -1
  484. package/src/icons/tree-down.svg +5 -0
  485. package/src/index.tsx +5 -0
  486. package/src/locale/de-DE.ts +17 -2
  487. package/src/locale/en-US.ts +17 -2
  488. package/src/locale/zh-CN.ts +16 -1
  489. package/src/renderers/Action.tsx +11 -2
  490. package/src/renderers/Avatar.tsx +83 -74
  491. package/src/renderers/CRUD.tsx +1 -3
  492. package/src/renderers/Card.tsx +10 -6
  493. package/src/renderers/Custom.tsx +7 -4
  494. package/src/renderers/DropDownButton.tsx +69 -35
  495. package/src/renderers/Each.tsx +4 -4
  496. package/src/renderers/Flex.tsx +3 -7
  497. package/src/renderers/Form/ChartRadios.tsx +2 -7
  498. package/src/renderers/Form/Checkboxes.tsx +1 -1
  499. package/src/renderers/Form/CityDB.ts +526 -2
  500. package/src/renderers/Form/DiffEditor.tsx +2 -3
  501. package/src/renderers/Form/InputCity.tsx +23 -3
  502. package/src/renderers/Form/InputColor.tsx +21 -2
  503. package/src/renderers/Form/InputDate.tsx +48 -20
  504. package/src/renderers/Form/InputDateRange.tsx +9 -2
  505. package/src/renderers/Form/InputFormula.tsx +9 -4
  506. package/src/renderers/Form/InputImage.tsx +9 -4
  507. package/src/renderers/Form/InputMonthRange.tsx +0 -1
  508. package/src/renderers/Form/InputQuarterRange.tsx +0 -1
  509. package/src/renderers/Form/InputYearRange.tsx +0 -1
  510. package/src/renderers/Form/Item.tsx +29 -8
  511. package/src/renderers/Form/NestedSelect.tsx +32 -4
  512. package/src/renderers/Form/Options.tsx +15 -7
  513. package/src/renderers/Form/Select.tsx +21 -5
  514. package/src/renderers/Form/TabsTransfer.tsx +28 -38
  515. package/src/renderers/Form/TabsTransferPicker.tsx +28 -46
  516. package/src/renderers/Form/Transfer.tsx +75 -24
  517. package/src/renderers/Form/TransferPicker.tsx +6 -38
  518. package/src/renderers/Form/TreeSelect.tsx +18 -16
  519. package/src/renderers/Form/index.tsx +9 -2
  520. package/src/renderers/IFrame.tsx +0 -2
  521. package/src/renderers/Link.tsx +18 -3
  522. package/src/renderers/Nav.tsx +4 -1
  523. package/src/renderers/Remark.tsx +68 -18
  524. package/src/renderers/Steps.tsx +11 -13
  525. package/src/renderers/Table/TableRow.tsx +3 -1
  526. package/src/renderers/Table/index.tsx +7 -1
  527. package/src/renderers/Tabs.tsx +6 -2
  528. package/src/renderers/Timeline.tsx +141 -0
  529. package/src/renderers/Video.tsx +4 -20
  530. package/src/schemaExtend.ts +22 -10
  531. package/src/store/combo.ts +1 -3
  532. package/src/store/formItem.ts +3 -3
  533. package/src/store/table.ts +2 -1
  534. package/src/utils/RootClose.ts +5 -1
  535. package/src/utils/api.ts +15 -2
  536. package/src/utils/debug.tsx +438 -0
  537. package/src/utils/helper.ts +6 -16
  538. package/src/utils/renderer-event.ts +75 -0
package/sdk/cxd-ie11.css CHANGED
@@ -21917,7 +21917,7 @@ readers do not read off random characters that represent icons */
21917
21917
  }
21918
21918
 
21919
21919
  .amis-scope .cxd-Button--light {
21920
- color: #fff;
21920
+ color: #151a26;
21921
21921
  background: #eaf6fe;
21922
21922
  border-color: #eaf6fe;
21923
21923
  box-shadow: none;
@@ -21925,13 +21925,13 @@ readers do not read off random characters that represent icons */
21925
21925
  }
21926
21926
 
21927
21927
  .amis-scope .cxd-Button--light:not(:disabled):not(.is-disabled):hover {
21928
- color: #fff;
21928
+ color: #151a26;
21929
21929
  background: #c5e6fc;
21930
21930
  border-color: #b9e1fc;
21931
21931
  }
21932
21932
 
21933
21933
  .amis-scope .cxd-Button--light:not(:disabled):not(.is-disabled):hover:active {
21934
- color: #fff;
21934
+ color: #151a26;
21935
21935
  background: #b9e1fc;
21936
21936
  border-color: #addcfb;
21937
21937
  }
@@ -22256,6 +22256,7 @@ readers do not read off random characters that represent icons */
22256
22256
  width: 2.5rem;
22257
22257
  height: 2.5rem;
22258
22258
  line-height: 2.5rem;
22259
+ position: relative;
22259
22260
  display: inline-block;
22260
22261
  overflow: hidden;
22261
22262
  flex-shrink: 0;
@@ -22263,6 +22264,36 @@ readers do not read off random characters that represent icons */
22263
22264
  text-align: center;
22264
22265
  }
22265
22266
 
22267
+ .amis-scope .cxd-Avatar i {
22268
+ font-size: 1rem;
22269
+ }
22270
+
22271
+ .amis-scope .cxd-Avatar--lg {
22272
+ width: 3rem;
22273
+ height: 3rem;
22274
+ line-height: 3rem;
22275
+ }
22276
+
22277
+ .amis-scope .cxd-Avatar--lg i {
22278
+ font-size: 1.25rem;
22279
+ }
22280
+
22281
+ .amis-scope .cxd-Avatar--sm {
22282
+ width: 2rem;
22283
+ height: 2rem;
22284
+ line-height: 2rem;
22285
+ }
22286
+
22287
+ .amis-scope .cxd-Avatar--sm i {
22288
+ font-size: 0.75rem;
22289
+ }
22290
+
22291
+ .amis-scope .cxd-Avatar--text {
22292
+ position: absolute;
22293
+ left: 50%;
22294
+ transform-origin: 0 center;
22295
+ }
22296
+
22266
22297
  .amis-scope .cxd-Avatar--square {
22267
22298
  border-radius: 0%;
22268
22299
  }
@@ -22271,15 +22302,9 @@ readers do not read off random characters that represent icons */
22271
22302
  border-radius: 10%;
22272
22303
  }
22273
22304
 
22274
- .amis-scope .cxd-Avatar i {
22275
- font-size: 1rem;
22276
- }
22277
-
22278
22305
  .amis-scope .cxd-Avatar img {
22279
- color: transparent;
22280
22306
  width: 100%;
22281
22307
  height: 100%;
22282
- object-fit: cover;
22283
22308
  }
22284
22309
 
22285
22310
  .amis-scope .cxd-Avatar:hover img,
@@ -22693,6 +22718,23 @@ readers do not read off random characters that represent icons */
22693
22718
  overflow: auto;
22694
22719
  }
22695
22720
 
22721
+ /* 移动端样式调整 */
22722
+
22723
+ @media (max-width: 767px) {
22724
+ .amis-scope .cxd-Modal .cxd-Modal-footer {
22725
+ display: flex;
22726
+ }
22727
+
22728
+ .amis-scope .cxd-Modal .cxd-Modal-footer > .cxd-Button {
22729
+ flex: 1;
22730
+ height: 2.75rem;
22731
+ }
22732
+
22733
+ .amis-scope .cxd-Modal .cxd-Modal-footer > .cxd-Button:first-child {
22734
+ margin-left: 0;
22735
+ }
22736
+ }
22737
+
22696
22738
  .amis-scope .cxd-Drawer {
22697
22739
  position: fixed;
22698
22740
  top: 0;
@@ -23370,11 +23412,12 @@ readers do not read off random characters that represent icons */
23370
23412
 
23371
23413
  .amis-scope .cxd-PopUp {
23372
23414
  width: 100%;
23415
+ height: 25rem;
23373
23416
  position: fixed;
23374
23417
  background: white;
23375
23418
  left: 0;
23376
23419
  bottom: 0;
23377
- z-index: 1300;
23420
+ z-index: 3000;
23378
23421
  padding: 0;
23379
23422
  margin: 0;
23380
23423
  font-weight: 400;
@@ -23424,27 +23467,51 @@ readers do not read off random characters that represent icons */
23424
23467
  height: 100%;
23425
23468
  box-sizing: border-box;
23426
23469
  background: #fff;
23427
- padding-top: 2.25rem;
23470
+ display: flex;
23471
+ flex-direction: column;
23428
23472
  }
23429
23473
 
23430
23474
  .amis-scope .cxd-PopUp-closeWrap {
23431
- width: 100%;
23432
- position: absolute !important;
23433
- left: 0;
23434
- top: 0;
23475
+ position: relative;
23476
+ text-align: center;
23477
+ height: 3rem;
23478
+ line-height: 3rem;
23435
23479
  }
23436
23480
 
23437
- .amis-scope .cxd-PopUp-close {
23438
- width: 2.125rem !important;
23439
- height: 2.125rem !important;
23440
- padding: 0.75rem;
23481
+ .amis-scope .cxd-PopUp-closeWrap .cxd-PopUp-close {
23482
+ position: absolute;
23483
+ z-index: 1;
23484
+ color: #999;
23441
23485
  cursor: pointer;
23486
+ top: 0.9375rem;
23487
+ right: 0.9375rem;
23488
+ }
23489
+
23490
+ .amis-scope .cxd-PopUp-toolbar {
23491
+ display: flex;
23492
+ align-items: center;
23493
+ justify-content: space-between;
23494
+ height: 3.75rem;
23495
+ }
23496
+
23497
+ .amis-scope .cxd-PopUp-title {
23498
+ font-size: 0.875rem;
23499
+ }
23500
+
23501
+ .amis-scope .cxd-PopUp-cancel {
23502
+ color: #666;
23503
+ margin-left: 0.5rem;
23504
+ }
23505
+
23506
+ .amis-scope .cxd-PopUp-confirm {
23507
+ margin-right: 0.5rem;
23442
23508
  }
23443
23509
 
23444
23510
  .amis-scope .cxd-PopUp-content {
23445
23511
  overflow-y: auto;
23446
23512
  height: 100%;
23447
23513
  display: flex;
23514
+ flex: 1;
23448
23515
  }
23449
23516
 
23450
23517
  .amis-scope .cxd-PopUp > * {
@@ -23473,6 +23540,10 @@ readers do not read off random characters that represent icons */
23473
23540
  margin-top: -0.25rem;
23474
23541
  }
23475
23542
 
23543
+ .amis-scope .cxd-PopUp-safearea {
23544
+ height: 1rem;
23545
+ }
23546
+
23476
23547
  .amis-scope .cxd-PickerColumns {
23477
23548
  position: relative;
23478
23549
  background-color: white;
@@ -23482,7 +23553,11 @@ readers do not read off random characters that represent icons */
23482
23553
  font-size: 1rem;
23483
23554
  }
23484
23555
 
23485
- .amis-scope .cxd-PickerColumns-toolbar {
23556
+ .amis-scope .cxd-PickerColumns li:focus {
23557
+ outline: none;
23558
+ }
23559
+
23560
+ .amis-scope .cxd-PickerColumns-header {
23486
23561
  display: flex;
23487
23562
  align-items: center;
23488
23563
  justify-content: space-between;
@@ -23492,16 +23567,16 @@ readers do not read off random characters that represent icons */
23492
23567
  .amis-scope .cxd-PickerColumns-cancel,
23493
23568
  .amis-scope .cxd-PickerColumns-confirm {
23494
23569
  height: 100%;
23495
- padding: 0 0.5rem;
23496
- font-size: 0.875rem;
23497
- background-color: transparent;
23570
+ padding: 0 1rem;
23571
+ font-size: 1rem;
23572
+ background-color: transparent !important;
23498
23573
  border: none;
23499
23574
  cursor: pointer;
23500
23575
  }
23501
23576
 
23502
23577
  .amis-scope .cxd-PickerColumns-cancel:active,
23503
23578
  .amis-scope .cxd-PickerColumns-confirm:active {
23504
- opacity: 0.7;
23579
+ background-color: none !important;
23505
23580
  }
23506
23581
 
23507
23582
  .amis-scope .cxd-PickerColumns-cancel:hover,
@@ -23510,11 +23585,11 @@ readers do not read off random characters that represent icons */
23510
23585
  }
23511
23586
 
23512
23587
  .amis-scope .cxd-PickerColumns-confirm {
23513
- color: #425278;
23588
+ color: #2468f2 !important;
23514
23589
  }
23515
23590
 
23516
23591
  .amis-scope .cxd-PickerColumns-cancel {
23517
- color: #8191b9;
23592
+ color: #666 !important;
23518
23593
  }
23519
23594
 
23520
23595
  .amis-scope .cxd-PickerColumns-title {
@@ -23523,6 +23598,7 @@ readers do not read off random characters that represent icons */
23523
23598
  font-size: 1rem;
23524
23599
  line-height: 1.5;
23525
23600
  text-align: center;
23601
+ color: #222;
23526
23602
  }
23527
23603
 
23528
23604
  .amis-scope .cxd-PickerColumns-columns {
@@ -23601,6 +23677,11 @@ readers do not read off random characters that represent icons */
23601
23677
  opacity: 0.3;
23602
23678
  }
23603
23679
 
23680
+ .amis-scope .cxd-PickerColumns-columnItemis-selected {
23681
+ font-size: 18px;
23682
+ color: --PickerColumns-title-color;
23683
+ }
23684
+
23604
23685
  @keyframes bounceIn {
23605
23686
  from, 20%, 40%, 60%, 80%, to {
23606
23687
  animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
@@ -25489,6 +25570,50 @@ readers do not read off random characters that represent icons */
25489
25570
  display: none;
25490
25571
  }
25491
25572
 
25573
+ /* 移动端样式调整 */
25574
+
25575
+ @media (max-width: 767px) {
25576
+ .amis-scope .cxd-Panel--form {
25577
+ border: none;
25578
+ box-shadow: none;
25579
+ margin: 0 calc(0.75rem * -1) calc(1.25rem / 2);
25580
+ }
25581
+
25582
+ .amis-scope .cxd-Panel--form .cxd-Panel-body {
25583
+ padding: 0 1rem 1rem;
25584
+ }
25585
+
25586
+ .amis-scope .cxd-Panel--form > .cxd-Panel-heading {
25587
+ background: none;
25588
+ border: none;
25589
+ border-radius: 0;
25590
+ }
25591
+
25592
+ .amis-scope .cxd-Panel--form > .cxd-Panel-heading .cxd-Panel-title {
25593
+ padding-left: 0.75rem;
25594
+ border-left: 0.1875rem solid #2468f2;
25595
+ font-size: 1rem;
25596
+ }
25597
+
25598
+ .amis-scope .cxd-Panel--form .cxd-Panel-footerWrap {
25599
+ padding-bottom: 0.75rem;
25600
+ }
25601
+
25602
+ .amis-scope .cxd-Panel--form .cxd-Panel-footer {
25603
+ border-top: none;
25604
+ display: flex;
25605
+ padding: 0 0.75rem;
25606
+ }
25607
+
25608
+ .amis-scope .cxd-Panel--form .cxd-Panel-footer > .cxd-Button {
25609
+ flex: 1;
25610
+ }
25611
+
25612
+ .amis-scope .cxd-Panel--form .cxd-Panel-footer > .cxd-Button:first-child {
25613
+ margin-left: 0;
25614
+ }
25615
+ }
25616
+
25492
25617
  .amis-scope .cxd-Service {
25493
25618
  position: relative;
25494
25619
  }
@@ -25752,19 +25877,28 @@ readers do not read off random characters that represent icons */
25752
25877
  }
25753
25878
 
25754
25879
  .amis-scope .cxd-DropDown-menu {
25880
+ background: #fff;
25881
+ list-style: none;
25882
+ padding: 0.25rem 0;
25883
+ min-width: 10rem;
25884
+ text-align: left;
25885
+ border: none;
25886
+ user-select: none;
25887
+ }
25888
+
25889
+ .amis-scope .cxd-DropDown-menu-root {
25755
25890
  position: absolute;
25756
25891
  z-index: 1000;
25757
25892
  top: 100%;
25758
25893
  left: 0;
25759
25894
  margin: 0.0625rem 0 0;
25760
- background: #fff;
25761
- list-style: none;
25762
- padding: 0.25rem 0;
25763
- border: 0.0625rem solid #eceff8;
25895
+ border: none;
25764
25896
  border-radius: 0.25rem;
25765
25897
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
25766
25898
  min-width: 10rem;
25767
- text-align: left;
25899
+ overflow-y: auto;
25900
+ overflow-x: hidden;
25901
+ max-height: 18.75rem;
25768
25902
  }
25769
25903
 
25770
25904
  .amis-scope .cxd-DropDown--alignRight .cxd-DropDown-menu {
@@ -25822,6 +25956,32 @@ readers do not read off random characters that represent icons */
25822
25956
  padding: 0;
25823
25957
  }
25824
25958
 
25959
+ .amis-scope .cxd-DropDown-menuItem.cxd-DropDown-groupTitle,
25960
+ .amis-scope .cxd-DropDown-menu > li.cxd-DropDown-groupTitle {
25961
+ height: inherit;
25962
+ font-size: 0.75rem;
25963
+ padding: 0.25rem 0.25rem;
25964
+ padding-left: 0.5rem;
25965
+ color: #848b99;
25966
+ flex-grow: 1;
25967
+ cursor: default;
25968
+ }
25969
+
25970
+ .amis-scope .cxd-DropDown-menuItem.cxd-DropDown-groupTitle:hover,
25971
+ .amis-scope .cxd-DropDown-menu > li.cxd-DropDown-groupTitle:hover {
25972
+ background: none;
25973
+ }
25974
+
25975
+ .amis-scope .cxd-DropDown-menuItem.cxd-DropDown-groupTitle span,
25976
+ .amis-scope .cxd-DropDown-menu > li.cxd-DropDown-groupTitle span {
25977
+ white-space: nowrap;
25978
+ }
25979
+
25980
+ .amis-scope .cxd-DropDown-menuItem.cxd-DropDown-groupTitle ~ .cxd-DropDown-button,
25981
+ .amis-scope .cxd-DropDown-menu > li.cxd-DropDown-groupTitle ~ .cxd-DropDown-button {
25982
+ padding-left: 1.25rem;
25983
+ }
25984
+
25825
25985
  .amis-scope .cxd-DropDown-menu > li a {
25826
25986
  color: inherit;
25827
25987
  display: block;
@@ -25928,100 +26088,402 @@ readers do not read off random characters that represent icons */
25928
26088
  position: relative;
25929
26089
  }
25930
26090
 
25931
- .amis-scope .cxd-Collapse {
25932
- border: 0.0625rem solid #dadbdd;
25933
- padding: 0;
25934
- line-height: 1.25rem;
26091
+ .amis-scope .cxd-CalendarMobile {
26092
+ height: 100%;
26093
+ width: 100%;
26094
+ overflow: scroll;
25935
26095
  }
25936
26096
 
25937
- .amis-scope .cxd-Collapse-header {
25938
- font-size: 14px;
25939
- font-weight: 400;
25940
- color: #333;
25941
- padding: 1rem;
25942
- margin: 0;
25943
- cursor: pointer;
25944
- background: #f2f2f4;
26097
+ .amis-scope .cxd-CalendarMobile-pop {
26098
+ position: fixed;
26099
+ bottom: 0;
26100
+ left: 0;
26101
+ width: 100vw;
26102
+ height: 90vh;
26103
+ background: #fff;
26104
+ border-radius: 1rem 1rem 0 0;
26105
+ overflow: hidden;
26106
+ border-width: 0;
25945
26107
  }
25946
26108
 
25947
- .amis-scope .cxd-Collapse-header-wrapper {
25948
- display: inline-flex;
25949
- flex-direction: row-reverse;
26109
+ .amis-scope .cxd-CalendarMobile-wrap {
26110
+ display: flex;
26111
+ flex-direction: column;
26112
+ height: 100%;
25950
26113
  }
25951
26114
 
25952
- .amis-scope .cxd-Collapse-header-tpl {
25953
- margin-right: 0.5rem;
26115
+ .amis-scope .cxd-CalendarMobile-header {
26116
+ flex-shrink: 0;
26117
+ box-shadow: 0 2px 10px rgba(125, 126, 128, 0.16);
26118
+ position: relative;
25954
26119
  }
25955
26120
 
25956
- .amis-scope .cxd-Collapse-header:hover {
25957
- background: #e6e6e8;
26121
+ .amis-scope .cxd-CalendarMobile-header .subtitle-text {
26122
+ display: inline-block;
26123
+ width: 6.875rem;
26124
+ position: relative;
25958
26125
  }
25959
26126
 
25960
- .amis-scope .cxd-Collapse-arrow {
25961
- display: inline-block;
25962
- width: 1rem;
25963
- text-align: center;
25964
- margin-right: 0.5rem;
26127
+ .amis-scope .cxd-CalendarMobile-header .rdtPrev {
26128
+ width: 1.25rem;
26129
+ height: 2.75rem;
26130
+ display: block;
26131
+ position: absolute;
26132
+ top: 0;
26133
+ left: -1.25rem;
25965
26134
  }
25966
26135
 
25967
- .amis-scope .cxd-Collapse-arrow:before {
25968
- content: "";
25969
- position: relative;
25970
- display: inline-block;
25971
- width: 0.375rem;
25972
- height: 0.375rem;
25973
- top: -0.125rem;
25974
- border-color: #151a26;
25975
- border-style: solid;
25976
- border-width: 0.0625rem 0.0625rem 0 0;
25977
- transform: rotate(45deg);
25978
- transform-origin: 50% 50%;
26136
+ .amis-scope .cxd-CalendarMobile-header .rdtNext {
26137
+ width: 1.25rem;
26138
+ height: 2.75rem;
26139
+ display: block;
26140
+ position: absolute;
26141
+ top: 0;
26142
+ right: -1.25rem;
25979
26143
  }
25980
26144
 
25981
- .amis-scope .cxd-Collapse-icon-tranform {
25982
- display: inline-block;
25983
- width: 1rem;
26145
+ .amis-scope .cxd-CalendarMobile-title,
26146
+ .amis-scope .cxd-CalendarMobile-subtitle {
26147
+ height: 2.75rem;
26148
+ font-weight: 500;
26149
+ line-height: 2.75rem;
25984
26150
  text-align: center;
25985
- margin-right: 0.25rem;
25986
26151
  }
25987
26152
 
25988
- .amis-scope .cxd-Collapse .cxd-TplField {
25989
- display: inline-block;
26153
+ .amis-scope .cxd-CalendarMobile-title {
26154
+ font-size: 1rem;
25990
26155
  }
25991
26156
 
25992
- .amis-scope .cxd-Collapse.is-active .cxd-Collapse-arrow:before {
25993
- transform: rotate(135deg);
25994
- transform-origin: 50% 30%;
26157
+ .amis-scope .cxd-CalendarMobile-weekdays {
26158
+ display: flex;
25995
26159
  }
25996
26160
 
25997
- .amis-scope .cxd-Collapse.is-active .cxd-Collapse-icon-tranform {
25998
- transform: rotate(90deg);
26161
+ .amis-scope .cxd-CalendarMobile-weekdays .weekday {
26162
+ flex: 1;
26163
+ line-height: 1.875rem;
26164
+ text-align: center;
25999
26165
  }
26000
26166
 
26001
- .amis-scope .cxd-Collapse--disabled .cxd-Collapse-header {
26002
- cursor: not-allowed;
26003
- user-select: none;
26004
- color: #b4b6ba;
26167
+ .amis-scope .cxd-CalendarMobile-close {
26168
+ position: absolute;
26169
+ z-index: 1;
26170
+ color: #c8c9cc;
26171
+ font-size: 1rem;
26172
+ cursor: pointer;
26173
+ top: 0.6875rem;
26174
+ right: 1rem;
26005
26175
  }
26006
26176
 
26007
- .amis-scope .cxd-Collapse--disabled .cxd-Collapse-header:hover {
26008
- background-color: #f2f2f4;
26177
+ .amis-scope .cxd-CalendarMobile-body::-webkit-scrollbar {
26178
+ width: 0;
26009
26179
  }
26010
26180
 
26011
- .amis-scope .cxd-Collapse--disabled .cxd-Collapse-arrow:before {
26012
- border-color: #b4b6ba;
26181
+ .amis-scope .cxd-CalendarMobile-body {
26182
+ flex: 1;
26183
+ overflow-y: scroll;
26013
26184
  }
26014
26185
 
26015
- .amis-scope .cxd-Collapse--title-bottom .cxd-Collapse-header {
26016
- text-align: center;
26017
- font-size: 0.875rem;
26018
- border-top: none;
26019
- border-bottom: none;
26186
+ .amis-scope .cxd-CalendarMobile-body table {
26187
+ border-spacing: 0 0.25rem;
26020
26188
  }
26021
26189
 
26022
- .amis-scope .cxd-Collapse--title-bottom.is-collapsed .cxd-Collapse-header {
26023
- border-top: none;
26024
- }
26190
+ .amis-scope .cxd-CalendarMobile-body .rdt .rdtPicker td.rdtActive,
26191
+ .amis-scope .cxd-CalendarMobile-body .rdt .rdtPicker td.rdtActive:hover {
26192
+ background: transparent;
26193
+ color: #151a26;
26194
+ text-shadow: none;
26195
+ }
26196
+
26197
+ .amis-scope .cxd-CalendarMobile-body .rdt .rdtPicker tr td.rdtDisabled,
26198
+ .amis-scope .cxd-CalendarMobile-body .rdt .rdtPicker tr td.rdtDisabled:hover {
26199
+ color: #999;
26200
+ }
26201
+
26202
+ .amis-scope .cxd-CalendarMobile-body .rdtOldNone td.rdtOld {
26203
+ display: none;
26204
+ }
26205
+
26206
+ .amis-scope .cxd-CalendarMobile-body .rdtPicker td {
26207
+ height: 3.5rem;
26208
+ position: relative;
26209
+ }
26210
+
26211
+ .amis-scope .cxd-CalendarMobile-body .rdt .rdtPicker td.rdtDay,
26212
+ .amis-scope .cxd-CalendarMobile-body .rdt .rdtPicker td.rdtDay:hover,
26213
+ .amis-scope .cxd-CalendarMobile-body .rdt .rdtPicker td.rdtDisabled,
26214
+ .amis-scope .cxd-CalendarMobile-body .rdt .rdtPicker td.rdtDisabled:hover {
26215
+ background: transparent;
26216
+ }
26217
+
26218
+ .amis-scope .cxd-CalendarMobile-body .calendar-wrap {
26219
+ position: relative;
26220
+ width: 3.125rem;
26221
+ height: 100%;
26222
+ text-align: center;
26223
+ display: inline-flex;
26224
+ align-items: center;
26225
+ justify-content: center;
26226
+ border-radius: 0.25rem;
26227
+ }
26228
+
26229
+ .amis-scope .cxd-CalendarMobile-embed .cxd-CalendarMobile-body .calendar-wrap {
26230
+ width: auto;
26231
+ max-width: 3.125rem;
26232
+ }
26233
+
26234
+ .amis-scope .cxd-CalendarMobile-footer {
26235
+ flex-shrink: 0;
26236
+ }
26237
+
26238
+ .amis-scope .cxd-CalendarMobile-footer .date-range-confirm {
26239
+ height: 2.25rem;
26240
+ margin: 0.4375rem 0;
26241
+ border-radius: 0.285rem;
26242
+ display: block;
26243
+ }
26244
+
26245
+ .amis-scope .cxd-CalendarMobile-footer .is-disabled {
26246
+ opacity: 0.5;
26247
+ color: #fff;
26248
+ background: #2468f2;
26249
+ border-color: #2468f2;
26250
+ filter: none;
26251
+ }
26252
+
26253
+ .amis-scope .cxd-CalendarMobile-footer-toolbar {
26254
+ padding: 0 1rem;
26255
+ }
26256
+
26257
+ .amis-scope .cxd-CalendarMobile-footer-ranges {
26258
+ background: #fff;
26259
+ box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.02);
26260
+ border-radius: 24px;
26261
+ overflow-x: auto;
26262
+ position: relative;
26263
+ height: 3rem;
26264
+ line-height: 3rem;
26265
+ }
26266
+
26267
+ .amis-scope .cxd-CalendarMobile-footer .cxd-DateRangePicker-rangers {
26268
+ position: absolute;
26269
+ white-space: nowrap;
26270
+ }
26271
+
26272
+ .amis-scope .cxd-CalendarMobile-footer .cxd-DateRangePicker-rangers .cxd-DateRangePicker-ranger {
26273
+ margin: 0 1.5625rem;
26274
+ }
26275
+
26276
+ .amis-scope .cxd-CalendarMobile-footer .cxd-DatePicker-shortcuts {
26277
+ width: auto;
26278
+ }
26279
+
26280
+ .amis-scope .cxd-CalendarMobile-calendar-wrap {
26281
+ padding: 0.5rem 0;
26282
+ }
26283
+
26284
+ .amis-scope .cxd-CalendarMobile .cxd-CalendarMobile-calendar-wrap .cxd-CalendarMobile-calendar .rdtPicker {
26285
+ width: 100%;
26286
+ padding: 0;
26287
+ }
26288
+
26289
+ .amis-scope .cxd-CalendarMobile .cxd-CalendarMobile-calendar-wrap .cxd-CalendarMobile-calendar .rdtPicker .rdtOld {
26290
+ visibility: hidden;
26291
+ }
26292
+
26293
+ .amis-scope .cxd-CalendarMobile .cxd-CalendarMobile-calendar-wrap .cxd-CalendarMobile-calendar .rdtPicker .rdtNew {
26294
+ display: none;
26295
+ }
26296
+
26297
+ .amis-scope .cxd-CalendarMobile .cxd-CalendarMobile-calendar-wrap .cxd-CalendarMobile-calendar .rdtPicker .rdtBetween {
26298
+ background: rgba(36, 104, 242, 0.1) !important;
26299
+ color: #2468f2;
26300
+ }
26301
+
26302
+ .amis-scope .cxd-CalendarMobile .cxd-CalendarMobile-calendar-wrap .cxd-CalendarMobile-calendar .rdtPicker .rdtRangeStart .calendar-wrap,
26303
+ .amis-scope .cxd-CalendarMobile .cxd-CalendarMobile-calendar-wrap .cxd-CalendarMobile-calendar .rdtPicker .rdtRangeStart:hover .calendar-wrap,
26304
+ .amis-scope .cxd-CalendarMobile .cxd-CalendarMobile-calendar-wrap .cxd-CalendarMobile-calendar .rdtPicker .rdtRangeEnd .calendar-wrap,
26305
+ .amis-scope .cxd-CalendarMobile .cxd-CalendarMobile-calendar-wrap .cxd-CalendarMobile-calendar .rdtPicker .rdtRangeEnd:hover .calendar-wrap {
26306
+ background: #2468f2 !important;
26307
+ color: #fff;
26308
+ text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
26309
+ }
26310
+
26311
+ .amis-scope .cxd-CalendarMobile .cxd-CalendarMobile-calendar-wrap .cxd-CalendarMobile-calendar .rdtPicker .rdtRangeHasEnd,
26312
+ .amis-scope .cxd-CalendarMobile .cxd-CalendarMobile-calendar-wrap .cxd-CalendarMobile-calendar .rdtPicker .rdtRangeHasEnd:hover {
26313
+ background: linear-gradient(to right, transparent 0%, transparent 50%, rgba(36, 104, 242, 0.1) 51%, rgba(36, 104, 242, 0.1) 100%) !important;
26314
+ }
26315
+
26316
+ .amis-scope .cxd-CalendarMobile .cxd-CalendarMobile-calendar-wrap .cxd-CalendarMobile-calendar .rdtPicker .rdtRangeEnd,
26317
+ .amis-scope .cxd-CalendarMobile .cxd-CalendarMobile-calendar-wrap .cxd-CalendarMobile-calendar .rdtPicker .rdtRangeEnd:hover {
26318
+ background: linear-gradient(to right, rgba(36, 104, 242, 0.1) 0%, rgba(36, 104, 242, 0.1) 50%, transparent 51%, transparent 100%) !important;
26319
+ }
26320
+
26321
+ .amis-scope .cxd-CalendarMobile-calendar-header {
26322
+ height: 1.875rem;
26323
+ line-height: 1.875rem;
26324
+ text-align: center;
26325
+ }
26326
+
26327
+ .amis-scope .cxd-CalendarMobile-range-text {
26328
+ position: absolute;
26329
+ right: 0;
26330
+ left: 0;
26331
+ bottom: 0;
26332
+ color: #fff;
26333
+ font-size: 0.75rem;
26334
+ white-space: nowrap;
26335
+ }
26336
+
26337
+ .amis-scope .cxd-CalendarMobile-calendar-wrap {
26338
+ position: relative;
26339
+ }
26340
+
26341
+ .amis-scope .cxd-CalendarMobile-calendar-mark {
26342
+ position: absolute;
26343
+ top: 50%;
26344
+ left: 50%;
26345
+ z-index: 0;
26346
+ color: rgba(242, 243, 245, 0.8);
26347
+ font-size: 10rem;
26348
+ transform: translate(-50%, -50%);
26349
+ pointer-events: none;
26350
+ }
26351
+
26352
+ .amis-scope .cxd-CalendarMobile-toast {
26353
+ position: fixed;
26354
+ top: 50%;
26355
+ left: 50%;
26356
+ transform: translate(-50%, -50%);
26357
+ width: 8.5rem;
26358
+ height: 2.25rem;
26359
+ background: rgba(0, 0, 0, 0.9);
26360
+ border-radius: 4px;
26361
+ color: #fff;
26362
+ display: flex;
26363
+ justify-content: center;
26364
+ align-items: center;
26365
+ }
26366
+
26367
+ .amis-scope .cxd-CalendarMobile-time {
26368
+ height: 11.25rem;
26369
+ }
26370
+
26371
+ .amis-scope .cxd-CalendarMobile-time-title {
26372
+ border: 0.0625rem solid #b4bbc5;
26373
+ border-left: none;
26374
+ border-right: none;
26375
+ text-align: center;
26376
+ height: 1.875rem;
26377
+ line-height: 1.875rem;
26378
+ }
26379
+
26380
+ .amis-scope .cxd-CalendarMobile-time .rdtPicker {
26381
+ margin: 0 auto;
26382
+ }
26383
+
26384
+ .amis-scope .cxd-CalendarMobile .cxd-CalendarTime {
26385
+ height: 8.125rem;
26386
+ overflow: hidden;
26387
+ }
26388
+
26389
+ .amis-scope .cxd-CalendarMobile .cxd-PickerColumns-header {
26390
+ display: none;
26391
+ }
26392
+
26393
+ .amis-scope .cxd-Collapse {
26394
+ border: 0.0625rem solid #dadbdd;
26395
+ padding: 0;
26396
+ line-height: 1.25rem;
26397
+ }
26398
+
26399
+ .amis-scope .cxd-Collapse-header {
26400
+ font-size: 14px;
26401
+ font-weight: 400;
26402
+ color: #333;
26403
+ padding: 1rem;
26404
+ margin: 0;
26405
+ cursor: pointer;
26406
+ background: #f2f2f4;
26407
+ }
26408
+
26409
+ .amis-scope .cxd-Collapse-header-wrapper {
26410
+ display: inline-flex;
26411
+ flex-direction: row-reverse;
26412
+ }
26413
+
26414
+ .amis-scope .cxd-Collapse-header-tpl {
26415
+ margin-right: 0.5rem;
26416
+ }
26417
+
26418
+ .amis-scope .cxd-Collapse-header:hover {
26419
+ background: #e6e6e8;
26420
+ }
26421
+
26422
+ .amis-scope .cxd-Collapse-arrow {
26423
+ display: inline-block;
26424
+ width: 1rem;
26425
+ text-align: center;
26426
+ margin-right: 0.5rem;
26427
+ }
26428
+
26429
+ .amis-scope .cxd-Collapse-arrow:before {
26430
+ content: "";
26431
+ position: relative;
26432
+ display: inline-block;
26433
+ width: 0.375rem;
26434
+ height: 0.375rem;
26435
+ top: -0.125rem;
26436
+ border-color: #151a26;
26437
+ border-style: solid;
26438
+ border-width: 0.0625rem 0.0625rem 0 0;
26439
+ transform: rotate(45deg);
26440
+ transform-origin: 50% 50%;
26441
+ }
26442
+
26443
+ .amis-scope .cxd-Collapse-icon-tranform {
26444
+ display: inline-block;
26445
+ width: 1rem;
26446
+ text-align: center;
26447
+ margin-right: 0.25rem;
26448
+ }
26449
+
26450
+ .amis-scope .cxd-Collapse .cxd-TplField {
26451
+ display: inline-block;
26452
+ }
26453
+
26454
+ .amis-scope .cxd-Collapse.is-active .cxd-Collapse-arrow:before {
26455
+ transform: rotate(135deg);
26456
+ transform-origin: 50% 30%;
26457
+ }
26458
+
26459
+ .amis-scope .cxd-Collapse.is-active .cxd-Collapse-icon-tranform {
26460
+ transform: rotate(90deg);
26461
+ }
26462
+
26463
+ .amis-scope .cxd-Collapse--disabled .cxd-Collapse-header {
26464
+ cursor: not-allowed;
26465
+ user-select: none;
26466
+ color: #b4b6ba;
26467
+ }
26468
+
26469
+ .amis-scope .cxd-Collapse--disabled .cxd-Collapse-header:hover {
26470
+ background-color: #f2f2f4;
26471
+ }
26472
+
26473
+ .amis-scope .cxd-Collapse--disabled .cxd-Collapse-arrow:before {
26474
+ border-color: #b4b6ba;
26475
+ }
26476
+
26477
+ .amis-scope .cxd-Collapse--title-bottom .cxd-Collapse-header {
26478
+ text-align: center;
26479
+ font-size: 0.875rem;
26480
+ border-top: none;
26481
+ border-bottom: none;
26482
+ }
26483
+
26484
+ .amis-scope .cxd-Collapse--title-bottom.is-collapsed .cxd-Collapse-header {
26485
+ border-top: none;
26486
+ }
26025
26487
 
26026
26488
  .amis-scope .cxd-Collapse--title-bottom .cxd-Collapse-arrow:before {
26027
26489
  top: -0.25rem;
@@ -27352,7 +27814,7 @@ readers do not read off random characters that represent icons */
27352
27814
  }
27353
27815
 
27354
27816
  .amis-scope .cxd-Table-table > tbody > tr.is-checked {
27355
- background: transparent;
27817
+ background: #f0faff;
27356
27818
  border-color: #eceff8;
27357
27819
  color: #333;
27358
27820
  }
@@ -29714,7 +30176,7 @@ readers do not read off random characters that represent icons */
29714
30176
 
29715
30177
  .amis-scope .cxd-Card-multiMedia-img {
29716
30178
  display: block;
29717
- width: 100%;
30179
+ width: auto;
29718
30180
  height: auto;
29719
30181
  object-fit: cover;
29720
30182
  border-radius: 0.25rem;
@@ -31209,25 +31671,55 @@ readers do not read off random characters that represent icons */
31209
31671
  min-height: 24px;
31210
31672
  }
31211
31673
 
31212
- .amis-scope .cxd-SearchBox {
31213
- display: inline-flex;
31214
- flex-direction: row;
31215
- line-height: 1.4285714286;
31216
- font-size: 0.875rem;
31217
- flex-wrap: nowrap;
31218
- align-items: center;
31674
+ .amis-scope .cxd-ResultBox.is-mobile {
31675
+ min-height: calc(1.4285714286 * 1rem);
31676
+ border: none;
31677
+ padding: 0;
31678
+ font-size: 1rem;
31679
+ border: none;
31219
31680
  justify-content: flex-end;
31220
- height: 30px;
31221
- width: 30px;
31222
- padding: 0 8px;
31223
- transition: all 0s ease-in-out;
31224
- border: 0.0625rem solid transparent;
31225
- border-radius: 0.25rem;
31226
- height: 30px;
31227
31681
  }
31228
31682
 
31229
- .amis-scope .cxd-SearchBox:hover {
31230
- background: rgba(255, 255, 255, 0.6);
31683
+ .amis-scope .cxd-ResultBox.is-mobile .cxd-ResultBox-arrow {
31684
+ margin-right: 0.25rem;
31685
+ width: 1rem;
31686
+ text-align: center;
31687
+ display: flex;
31688
+ align-items: center;
31689
+ justify-content: center;
31690
+ line-height: 1;
31691
+ margin-left: 4px;
31692
+ }
31693
+
31694
+ .amis-scope .cxd-ResultBox.is-mobile .cxd-ResultBox-arrow > svg {
31695
+ transition: transform 0s;
31696
+ display: inline-block;
31697
+ color: #83868c;
31698
+ width: 10px;
31699
+ height: 10px;
31700
+ top: 0;
31701
+ transform: rotate(-90deg);
31702
+ }
31703
+
31704
+ .amis-scope .cxd-SearchBox {
31705
+ display: inline-flex;
31706
+ flex-direction: row;
31707
+ line-height: 1.4285714286;
31708
+ font-size: 0.875rem;
31709
+ flex-wrap: nowrap;
31710
+ align-items: center;
31711
+ justify-content: flex-end;
31712
+ height: 30px;
31713
+ width: 30px;
31714
+ padding: 0 8px;
31715
+ transition: all 0s ease-in-out;
31716
+ border: 0.0625rem solid transparent;
31717
+ border-radius: 0.25rem;
31718
+ height: 30px;
31719
+ }
31720
+
31721
+ .amis-scope .cxd-SearchBox:hover {
31722
+ background: rgba(255, 255, 255, 0.6);
31231
31723
  }
31232
31724
 
31233
31725
  .amis-scope .cxd-SearchBox.is-active {
@@ -32757,6 +33249,8 @@ readers do not read off random characters that represent icons */
32757
33249
  pointer-events: all;
32758
33250
  margin-left: 0.25rem;
32759
33251
  cursor: pointer;
33252
+ display: inline-block;
33253
+ vertical-align: middle;
32760
33254
  }
32761
33255
 
32762
33256
  .amis-scope .cxd-Checkbox > i + span > a {
@@ -32998,7 +33492,6 @@ readers do not read off random characters that represent icons */
32998
33492
 
32999
33493
  .amis-scope .cxd-Selection > .cxd-Checkbox {
33000
33494
  display: block;
33001
- height: 2rem;
33002
33495
  line-height: 1.4285714286;
33003
33496
  font-size: 0.875rem;
33004
33497
  padding: calc( ( 2rem - 1.4285714286 * 0.875rem ) / 2 ) 0.5rem calc( ( 2rem - 1.4285714286 * 0.875rem ) / 2 ) calc(0.5rem + 0.875rem);
@@ -33041,7 +33534,6 @@ readers do not read off random characters that represent icons */
33041
33534
 
33042
33535
  .amis-scope .cxd-GroupedSelection-item {
33043
33536
  display: flex;
33044
- height: 2rem;
33045
33537
  line-height: 1.4285714286;
33046
33538
  font-size: 0.875rem;
33047
33539
  padding: calc( ( 2rem - 1.4285714286 * 0.875rem ) / 2 ) 0.5rem;
@@ -33172,7 +33664,6 @@ readers do not read off random characters that represent icons */
33172
33664
  .amis-scope .cxd-TreeSelection-itemInner {
33173
33665
  display: flex;
33174
33666
  align-items: center;
33175
- height: 2rem;
33176
33667
  line-height: 1.4285714286;
33177
33668
  font-size: 0.875rem;
33178
33669
  padding: calc( ( 2rem - 1.4285714286 * 0.875rem ) / 2 ) 0.5rem;
@@ -33227,6 +33718,7 @@ readers do not read off random characters that represent icons */
33227
33718
  .amis-scope .cxd-ChainedSelection {
33228
33719
  display: flex;
33229
33720
  flex-direction: row;
33721
+ min-height: 100%;
33230
33722
  }
33231
33723
 
33232
33724
  .amis-scope .cxd-ChainedSelection-col {
@@ -33246,7 +33738,6 @@ readers do not read off random characters that represent icons */
33246
33738
 
33247
33739
  .amis-scope .cxd-ChainedSelection-item {
33248
33740
  display: flex;
33249
- height: 2rem;
33250
33741
  line-height: 1.4285714286;
33251
33742
  font-size: 0.875rem;
33252
33743
  padding: calc( ( 2rem - 1.4285714286 * 0.875rem ) / 2 ) 0.5rem;
@@ -33366,6 +33857,38 @@ readers do not read off random characters that represent icons */
33366
33857
  display: inline-block;
33367
33858
  }
33368
33859
 
33860
+ .amis-scope .cxd-CityArea-popup {
33861
+ height: 17.5rem;
33862
+ }
33863
+
33864
+ .amis-scope .cxd-CityArea-Input {
33865
+ margin-top: 0.25rem;
33866
+ outline: none;
33867
+ vertical-align: top;
33868
+ border: 0.0625rem solid #dadbdd;
33869
+ border-radius: 0.25rem;
33870
+ line-height: 1.4285714286;
33871
+ padding: calc(
33872
+ (
33873
+ 2rem - 1.4285714286 *
33874
+ 0.875rem - 0.125rem
33875
+ ) / 2
33876
+ ) 0.625rem;
33877
+ font-size: 0.875rem;
33878
+ display: inline-flex !important;
33879
+ }
33880
+
33881
+ .amis-scope .cxd-CityArea-Input::placeholder {
33882
+ color: #b4b6ba;
33883
+ user-select: none;
33884
+ }
33885
+
33886
+ .amis-scope .cxd-CityArea-Input:focus {
33887
+ border-color: #1c53c1;
33888
+ box-shadow: none;
33889
+ background: #ffffff;
33890
+ }
33891
+
33369
33892
  .amis-scope .cxd-Switch {
33370
33893
  cursor: pointer;
33371
33894
  position: relative;
@@ -33646,6 +34169,7 @@ readers do not read off random characters that represent icons */
33646
34169
  display: inline-flex;
33647
34170
  vertical-align: middle;
33648
34171
  text-align: left;
34172
+ align-items: center;
33649
34173
  outline: none;
33650
34174
  position: relative;
33651
34175
  font-size: 0.875rem;
@@ -33792,10 +34316,26 @@ readers do not read off random characters that represent icons */
33792
34316
  top: 0;
33793
34317
  }
33794
34318
 
33795
- .amis-scope .cxd-Select.is-opened .cxd-Select-arrow > svg {
34319
+ .amis-scope .cxd-Select.is-opened:not(.is-mobile) .cxd-Select-arrow > svg {
33796
34320
  transform: rotate(180deg);
33797
34321
  }
33798
34322
 
34323
+ .amis-scope .cxd-Select.is-mobile {
34324
+ min-height: calc(1.4285714286 * 1rem);
34325
+ border: none;
34326
+ padding: 0;
34327
+ font-size: 1rem;
34328
+ }
34329
+
34330
+ .amis-scope .cxd-Select.is-mobile .cxd-Select-valueWrap {
34331
+ text-align: right;
34332
+ padding-right: 4px;
34333
+ }
34334
+
34335
+ .amis-scope .cxd-Select.is-mobile .cxd-Select-arrow > svg {
34336
+ transform: rotate(-90deg);
34337
+ }
34338
+
33799
34339
  .amis-scope .cxd-Select-menu {
33800
34340
  max-height: 18.75rem;
33801
34341
  overflow: auto;
@@ -33806,6 +34346,15 @@ readers do not read off random characters that represent icons */
33806
34346
  margin-top: -0.1875rem;
33807
34347
  }
33808
34348
 
34349
+ .amis-scope .cxd-Select-menu.is-mobile {
34350
+ width: 100%;
34351
+ text-align: center;
34352
+ }
34353
+
34354
+ .amis-scope .cxd-Select-menu.is-mobile .cxd-Select-option {
34355
+ line-height: 2.25rem;
34356
+ }
34357
+
33809
34358
  .amis-scope .cxd-Select--longlist {
33810
34359
  overflow: hidden;
33811
34360
  max-height: max-content;
@@ -33907,8 +34456,8 @@ readers do not read off random characters that represent icons */
33907
34456
  margin-right: 0.25rem;
33908
34457
  }
33909
34458
 
33910
- .amis-scope .cxd-Select.is-focused,
33911
- .amis-scope .cxd-Select.is-opened {
34459
+ .amis-scope .cxd-Select.is-focused:not(.is-mobile),
34460
+ .amis-scope .cxd-Select.is-opened:not(.is-mobile) {
33912
34461
  border-color: #1c53c1;
33913
34462
  color: #000;
33914
34463
  }
@@ -33938,6 +34487,10 @@ readers do not read off random characters that represent icons */
33938
34487
  fill: #1f2329;
33939
34488
  }
33940
34489
 
34490
+ .amis-scope .cxd-Select-popup {
34491
+ height: 20rem;
34492
+ }
34493
+
33941
34494
  .amis-scope .cxd-Select-popover {
33942
34495
  margin-top: calc(0 * -1);
33943
34496
  background: #fff;
@@ -34017,6 +34570,7 @@ readers do not read off random characters that represent icons */
34017
34570
  height: 2rem;
34018
34571
  line-height: 1.4285714286;
34019
34572
  font-size: 0.875rem;
34573
+ align-items: center;
34020
34574
  padding: calc( ( 2rem - 1.4285714286 * 0.875rem ) / 2 ) 0.5rem;
34021
34575
  }
34022
34576
 
@@ -34026,6 +34580,7 @@ readers do not read off random characters that represent icons */
34026
34580
  }
34027
34581
 
34028
34582
  .amis-scope .cxd-Selections-item > .cxd-Selections-dragbar {
34583
+ top: 0;
34029
34584
  width: 1.25rem;
34030
34585
  position: relative;
34031
34586
  left: calc(0.25rem * -1);
@@ -34349,7 +34904,7 @@ readers do not read off random characters that represent icons */
34349
34904
  }
34350
34905
 
34351
34906
  .amis-scope .cxd-ColorPicker-popup {
34352
- height: 80vh;
34907
+ height: 25rem;
34353
34908
  }
34354
34909
 
34355
34910
  .amis-scope .cxd-ColorPicker:not(.is-disabled) {
@@ -34617,7 +35172,50 @@ readers do not read off random characters that represent icons */
34617
35172
  }
34618
35173
 
34619
35174
  .amis-scope .cxd-DatePicker-popup {
34620
- height: 80vh;
35175
+ height: 18.75rem;
35176
+ }
35177
+
35178
+ .amis-scope .cxd-DatePicker.is-mobile {
35179
+ border: 0;
35180
+ justify-content: flex-end;
35181
+ }
35182
+
35183
+ .amis-scope .cxd-DatePicker.is-mobile span:focus,
35184
+ .amis-scope .cxd-DatePicker.is-mobile a:focus {
35185
+ outline: unset;
35186
+ }
35187
+
35188
+ .amis-scope .cxd-DatePicker.is-mobile .cxd-DatePicker-value,
35189
+ .amis-scope .cxd-DatePicker.is-mobile .cxd-DatePicker-clear {
35190
+ display: inline-flex;
35191
+ justify-content: flex-end;
35192
+ padding: 0 0;
35193
+ }
35194
+
35195
+ .amis-scope .cxd-DatePicker.is-mobile .cxd-DatePicker-value {
35196
+ margin-right: 0.25rem;
35197
+ }
35198
+
35199
+ .amis-scope .cxd-DatePicker.is-mobile .cxd-DatePicker-placeholder {
35200
+ flex-grow: unset;
35201
+ flex-basis: unset;
35202
+ }
35203
+
35204
+ .amis-scope .cxd-DatePicker.is-mobile .cxd-DatePicker-toggler {
35205
+ margin-top: -3px;
35206
+ }
35207
+
35208
+ .amis-scope .cxd-DatePicker-popup.cxd-DatePicker-mobile {
35209
+ color: red;
35210
+ }
35211
+
35212
+ .amis-scope .cxd-DatePicker-popup.cxd-DatePicker-mobile .rdt {
35213
+ width: 100%;
35214
+ }
35215
+
35216
+ .amis-scope .cxd-DatePicker-popup.cxd-DatePicker-mobile .rdt .rdtPicker {
35217
+ width: 100%;
35218
+ padding: unset;
34621
35219
  }
34622
35220
 
34623
35221
  .amis-scope .rdt {
@@ -35168,7 +35766,7 @@ readers do not read off random characters that represent icons */
35168
35766
  }
35169
35767
 
35170
35768
  .amis-scope .cxd-DateRangePicker-popup {
35171
- height: 90vh;
35769
+ height: 25rem;
35172
35770
  }
35173
35771
 
35174
35772
  @media (min-width: 576px) {
@@ -35189,6 +35787,36 @@ readers do not read off random characters that represent icons */
35189
35787
  border-radius: 0.25rem;
35190
35788
  }
35191
35789
 
35790
+ .amis-scope .cxd-DateRangePicker.is-mobile {
35791
+ border: 0;
35792
+ justify-content: flex-end;
35793
+ }
35794
+
35795
+ .amis-scope .cxd-DateRangePicker.is-mobile span:focus,
35796
+ .amis-scope .cxd-DateRangePicker.is-mobile a:focus {
35797
+ outline: unset;
35798
+ }
35799
+
35800
+ .amis-scope .cxd-DateRangePicker.is-mobile .cxd-DateRangePicker-value,
35801
+ .amis-scope .cxd-DateRangePicker.is-mobile .cxd-DateRangePicker-clear {
35802
+ display: inline-flex;
35803
+ justify-content: flex-end;
35804
+ padding: 0 0;
35805
+ }
35806
+
35807
+ .amis-scope .cxd-DateRangePicker.is-mobile .cxd-DateRangePicker-value {
35808
+ margin-right: 0.25rem;
35809
+ }
35810
+
35811
+ .amis-scope .cxd-DateRangePicker.is-mobile .cxd-DateRangePicker-placeholder {
35812
+ flex-grow: unset;
35813
+ flex-basis: unset;
35814
+ }
35815
+
35816
+ .amis-scope .cxd-DateRangePicker.is-mobile .cxd-DateRangePicker-toggler {
35817
+ margin-top: -3px;
35818
+ }
35819
+
35192
35820
  .amis-scope .cxd-ImageControl {
35193
35821
  position: relative;
35194
35822
  }
@@ -36514,7 +37142,7 @@ readers do not read off random characters that represent icons */
36514
37142
  }
36515
37143
 
36516
37144
  .amis-scope .cxd-TreeSelect-popup {
36517
- height: 80vh;
37145
+ height: 25rem;
36518
37146
  }
36519
37147
 
36520
37148
  .amis-scope .cxd-TreeSelect-popover {
@@ -37666,6 +38294,10 @@ readers do not read off random characters that represent icons */
37666
38294
  flex-direction: column;
37667
38295
  }
37668
38296
 
38297
+ .amis-scope .cxd-TransferDropDown-content.is-mobile {
38298
+ width: 100%;
38299
+ }
38300
+
37669
38301
  .amis-scope .cxd-TransferDropDown-content > .cxd-Transfer-selection {
37670
38302
  flex-grow: 1;
37671
38303
  max-height: 100%;
@@ -37767,6 +38399,125 @@ readers do not read off random characters that represent icons */
37767
38399
  border-bottom: 0.0625rem solid #eceff8;
37768
38400
  }
37769
38401
 
38402
+ .amis-scope .cxd-NestedSelect-popup {
38403
+ height: 28.75rem;
38404
+ }
38405
+
38406
+ .amis-scope .cxd-Cascader-tabs {
38407
+ display: flex;
38408
+ }
38409
+
38410
+ .amis-scope .cxd-Cascader-tabs.scrollable {
38411
+ display: block;
38412
+ overflow-x: auto;
38413
+ white-space: nowrap;
38414
+ }
38415
+
38416
+ .amis-scope .cxd-Cascader-tabs.scrollable::-webkit-scrollbar {
38417
+ display: none;
38418
+ }
38419
+
38420
+ .amis-scope .cxd-Cascader-tab {
38421
+ flex: 1;
38422
+ width: calc((100vw - 20px) / 3);
38423
+ height: 23.125rem;
38424
+ overflow-y: auto;
38425
+ display: inline-block;
38426
+ }
38427
+
38428
+ .amis-scope .cxd-Cascader-tab::-webkit-scrollbar {
38429
+ display: none;
38430
+ }
38431
+
38432
+ .amis-scope .cxd-Cascader {
38433
+ width: 100%;
38434
+ padding: 0 10px;
38435
+ }
38436
+
38437
+ .amis-scope .cxd-Cascader-Nav {
38438
+ overflow-x: auto;
38439
+ }
38440
+
38441
+ .amis-scope .cxd-Cascader-NavItem {
38442
+ display: inline-block;
38443
+ margin-right: 0.625rem;
38444
+ list-style: none;
38445
+ cursor: pointer;
38446
+ user-select: none;
38447
+ padding: 0 0.375rem;
38448
+ }
38449
+
38450
+ .amis-scope .cxd-Cascader-btnGroup {
38451
+ display: flex;
38452
+ justify-content: space-between;
38453
+ align-items: center;
38454
+ height: 3.75rem;
38455
+ }
38456
+
38457
+ .amis-scope .cxd-Cascader-options {
38458
+ box-sizing: border-box;
38459
+ height: var(--Cascader-option-height);
38460
+ padding-top: 0.375rem;
38461
+ overflow-y: auto;
38462
+ -webkit-overflow-scrolling: touch;
38463
+ margin: 0;
38464
+ padding: 0;
38465
+ }
38466
+
38467
+ .amis-scope .cxd-Cascader-option {
38468
+ display: flex;
38469
+ align-items: center;
38470
+ justify-content: space-between;
38471
+ padding: 0.375rem 0;
38472
+ font-size: 0.875rem;
38473
+ line-height: var(--Cascader-option-lineHeight);
38474
+ cursor: pointer;
38475
+ position: relative;
38476
+ }
38477
+
38478
+ .amis-scope .cxd-Cascader-option.selected span {
38479
+ color: #2468f2;
38480
+ }
38481
+
38482
+ .amis-scope .cxd-Cascader-option.disabled span {
38483
+ color: gray;
38484
+ }
38485
+
38486
+ .amis-scope .cxd-Cascader-option--text {
38487
+ white-space: nowrap;
38488
+ overflow: hidden;
38489
+ text-overflow: ellipsis;
38490
+ user-select: none;
38491
+ }
38492
+
38493
+ .amis-scope .cxd-Cascader-option-selectedNum {
38494
+ min-width: 1rem;
38495
+ height: 1rem;
38496
+ line-height: 1rem;
38497
+ border-radius: 100%;
38498
+ text-align: center;
38499
+ background: #2468f2;
38500
+ color: #fff !important;
38501
+ font-size: 0.75rem;
38502
+ display: inline-block;
38503
+ position: absolute;
38504
+ right: 0;
38505
+ top: 50%;
38506
+ transform: translateY(-50%);
38507
+ }
38508
+
38509
+ .amis-scope .cxd-Cascader-icon {
38510
+ color: #2468f2;
38511
+ }
38512
+
38513
+ .amis-scope .cxd-Cascader-tab {
38514
+ padding: 0;
38515
+ }
38516
+
38517
+ .amis-scope .cxd-Cascader-btnCancel {
38518
+ color: #666;
38519
+ }
38520
+
37770
38521
  .amis-scope .cxd-IconPickerControl {
37771
38522
  position: relative;
37772
38523
  max-width: 100%;
@@ -38058,6 +38809,8 @@ readers do not read off random characters that represent icons */
38058
38809
  font-weight: 400;
38059
38810
  margin-bottom: 0.25rem;
38060
38811
  position: relative;
38812
+ font-size: 0.875rem;
38813
+ color: #5e626a;
38061
38814
  }
38062
38815
 
38063
38816
  .amis-scope .cxd-Form-label > span {
@@ -38490,18 +39243,188 @@ readers do not read off random characters that represent icons */
38490
39243
  width: 10%;
38491
39244
  }
38492
39245
 
38493
- .amis-scope .cxd-AnchorNav {
38494
- display: flex;
38495
- height: 25rem;
38496
- }
39246
+ /* 移动端样式调整 */
38497
39247
 
38498
- .amis-scope .cxd-AnchorNav--vertical .cxd-AnchorNav-link-wrap {
38499
- margin: 0;
38500
- padding: 0;
38501
- width: 8.75rem;
38502
- border-right: 0.0625rem solid #d3dae0;
38503
- padding-bottom: 3.75rem;
38504
- }
39248
+ @media (max-width: 767px) {
39249
+ .amis-scope .cxd-Form .cxd-Form-item {
39250
+ display: flex;
39251
+ flex-wrap: wrap;
39252
+ margin-bottom: 0;
39253
+ padding: 0.75rem 0;
39254
+ position: relative;
39255
+ }
39256
+
39257
+ .amis-scope .cxd-Form .cxd-Form-item::after {
39258
+ position: absolute;
39259
+ box-sizing: border-box;
39260
+ content: " ";
39261
+ pointer-events: none;
39262
+ right: 0;
39263
+ bottom: 0;
39264
+ left: 0;
39265
+ border-bottom: 0.0625rem solid #eceff8;
39266
+ transform: scaleY(0.5);
39267
+ }
39268
+
39269
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-InputGroup-addOn,
39270
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-TextControl-addOn {
39271
+ border: none;
39272
+ }
39273
+
39274
+ .amis-scope .cxd-Form .cxd-Form-item > .cxd-Form-label {
39275
+ flex: 0 0 28%;
39276
+ max-width: 28%;
39277
+ min-height: 1px;
39278
+ text-align: left;
39279
+ padding-right: calc(1rem / 2);
39280
+ overflow-wrap: break-word;
39281
+ margin-right: 0;
39282
+ margin-bottom: 0;
39283
+ font-size: 1rem;
39284
+ }
39285
+
39286
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-description {
39287
+ font-size: 0.875rem;
39288
+ }
39289
+
39290
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-TextControl-input {
39291
+ font-size: 1rem;
39292
+ }
39293
+
39294
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-TextControl-input input {
39295
+ height: calc(1.4285714286 * 1rem);
39296
+ }
39297
+
39298
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-value,
39299
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-control {
39300
+ flex: 1;
39301
+ flex-wrap: wrap;
39302
+ font-size: 1rem;
39303
+ }
39304
+
39305
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-value.is-disabled > .cxd-TextControl-input,
39306
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-control.is-disabled > .cxd-TextControl-input {
39307
+ background: transparent;
39308
+ }
39309
+
39310
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-hint,
39311
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-remark,
39312
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-static,
39313
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-group--hor .cxd-Form-item,
39314
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-SwitchControl,
39315
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-CheckboxControl,
39316
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-RadiosControl,
39317
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-CheckboxesControl {
39318
+ padding-top: 0;
39319
+ padding-bottom: 0;
39320
+ }
39321
+
39322
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-group--horizontal .cxd-TextControl-input input {
39323
+ height: 2rem;
39324
+ }
39325
+
39326
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-hint {
39327
+ font-size: 0.875rem;
39328
+ margin-left: 0;
39329
+ color: #b4b6ba;
39330
+ }
39331
+
39332
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-TextControl-placeholder {
39333
+ top: 0;
39334
+ }
39335
+
39336
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-static {
39337
+ min-height: 0;
39338
+ }
39339
+
39340
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-description,
39341
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-feedback {
39342
+ font-size: 0.875rem;
39343
+ }
39344
+
39345
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-InputGroup .cxd-Select,
39346
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-InputGroup .cxd-InputGroup-btn .cxd-Button {
39347
+ border: none;
39348
+ }
39349
+
39350
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-InputGroup > .cxd-TextControl-input input {
39351
+ height: 2rem;
39352
+ }
39353
+
39354
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-ColorPicker {
39355
+ padding: 0;
39356
+ border: none;
39357
+ }
39358
+
39359
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-ColorPicker .cxd-ColorPicker-arrow {
39360
+ display: none;
39361
+ }
39362
+
39363
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-group--hor .cxd-Form-item .cxd-Button {
39364
+ margin-bottom: 0.25rem;
39365
+ }
39366
+
39367
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-TextareaControl > textarea,
39368
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-control > .cxd-TextControl-input,
39369
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-TextControl.is-focused > .cxd-TextControl-input {
39370
+ border: none;
39371
+ padding: 0 0.625rem 0 0;
39372
+ box-shadow: none;
39373
+ }
39374
+
39375
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-TextareaControl > textarea:hover,
39376
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-TextareaControl > textarea:focus,
39377
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-TextareaControl > textarea.active,
39378
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-control > .cxd-TextControl-input:hover,
39379
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-control > .cxd-TextControl-input:focus,
39380
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-control > .cxd-TextControl-input.active,
39381
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-TextControl.is-focused > .cxd-TextControl-input:hover,
39382
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-TextControl.is-focused > .cxd-TextControl-input:focus,
39383
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-TextControl.is-focused > .cxd-TextControl-input.active {
39384
+ border: none;
39385
+ outline: none;
39386
+ outline-style: none;
39387
+ }
39388
+
39389
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-control > .cxd-TextControl-input--multiple {
39390
+ padding: 0;
39391
+ min-height: 0;
39392
+ }
39393
+
39394
+ .amis-scope .cxd-Form .cxd-Form-groupColumn {
39395
+ margin-bottom: 0;
39396
+ }
39397
+
39398
+ .amis-scope .cxd-Form .cxd-Divider {
39399
+ display: none;
39400
+ }
39401
+
39402
+ .amis-scope .cxd-Form .cxd-Tabs-pane {
39403
+ padding: 0;
39404
+ }
39405
+
39406
+ .amis-scope .cxd-Form > .cxd-Form-item:last-child::after,
39407
+ .amis-scope .cxd-Form > .cxd-Form-item:last-of-type::after {
39408
+ display: none;
39409
+ }
39410
+
39411
+ .amis-scope .cxd-Form .cxd-Form-item .cxd-Form-groupColumn > .cxd-Form-item {
39412
+ padding-bottom: 0.625rem;
39413
+ }
39414
+ }
39415
+
39416
+ .amis-scope .cxd-AnchorNav {
39417
+ display: flex;
39418
+ height: 25rem;
39419
+ }
39420
+
39421
+ .amis-scope .cxd-AnchorNav--vertical .cxd-AnchorNav-link-wrap {
39422
+ margin: 0;
39423
+ padding: 0;
39424
+ width: 8.75rem;
39425
+ border-right: 0.0625rem solid #d3dae0;
39426
+ padding-bottom: 3.75rem;
39427
+ }
38505
39428
 
38506
39429
  .amis-scope .cxd-AnchorNav--vertical .cxd-AnchorNav-link-wrap > .cxd-AnchorNav-link {
38507
39430
  position: relative;
@@ -38883,20 +39806,29 @@ readers do not read off random characters that represent icons */
38883
39806
  box-sizing: content-box;
38884
39807
  }
38885
39808
 
39809
+ .amis-scope .cxd-FormulaEditor-content {
39810
+ border-radius: 0.25rem;
39811
+ border: 0.0625rem solid #dadbdd;
39812
+ }
39813
+
38886
39814
  .amis-scope .cxd-FormulaEditor-header {
38887
39815
  width: 100%;
38888
- height: 2.5rem;
38889
- line-height: 2.5rem;
38890
- padding-left: 0.625rem;
39816
+ height: 1.875rem;
39817
+ line-height: 1.875rem;
39818
+ padding: 0 0.625rem;
38891
39819
  box-sizing: border-box;
38892
- background: #f3f8fb;
39820
+ background: #f2f2f4;
39821
+ border-radius: 0.25rem 0.25rem 0 0;
39822
+ border-bottom: 0.0625rem solid #dadbdd;
39823
+ font-weight: 500;
38893
39824
  }
38894
39825
 
38895
39826
  .amis-scope .cxd-FormulaEditor-editor {
38896
39827
  min-height: 14.875rem;
38897
39828
  max-height: 20rem;
38898
39829
  height: auto;
38899
- border: 0.0625rem solid #dadbdd;
39830
+ padding: 0.625rem;
39831
+ padding-right: 0;
38900
39832
  }
38901
39833
 
38902
39834
  .amis-scope .cxd-FormulaEditor.is-error .cxd-FormulaEditor-editor {
@@ -38982,7 +39914,7 @@ readers do not read off random characters that represent icons */
38982
39914
  }
38983
39915
 
38984
39916
  .amis-scope .cxd-FormulaFuncList-funcItem.is-active {
38985
- color: #2468f2;
39917
+ background: #eaf6fe;
38986
39918
  }
38987
39919
 
38988
39920
  .amis-scope .cxd-FormulaFuncList-groupTitle {
@@ -38998,8 +39930,385 @@ readers do not read off random characters that represent icons */
38998
39930
  padding: 10px 20px;
38999
39931
  }
39000
39932
 
39933
+ .amis-scope .cxd-FormulaFuncList-funcDetail pre {
39934
+ white-space: pre-wrap;
39935
+ word-wrap: break-word;
39936
+ background: #f2f2f4;
39937
+ padding: 0.625rem;
39938
+ border-radius: 0.25rem;
39939
+ margin-top: 0;
39940
+ }
39941
+
39942
+ .amis-scope .cxd-FormulaFuncList-funcDetail div {
39943
+ color: #333;
39944
+ }
39945
+
39001
39946
  .amis-scope .cxd-FormulaPicker-icon {
39002
39947
  margin-left: auto;
39948
+ margin-right: 0.3125rem;
39949
+ }
39950
+
39951
+ .amis-scope .cxd-Timeline-vertical {
39952
+ display: flex;
39953
+ flex-flow: column;
39954
+ }
39955
+
39956
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem {
39957
+ display: flex;
39958
+ flex: 1;
39959
+ flex-direction: row;
39960
+ }
39961
+
39962
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem:last-of-type .cxd-TimelineItem-axle .cxd-TimelineItem-line {
39963
+ display: none;
39964
+ }
39965
+
39966
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem-axle {
39967
+ position: relative;
39968
+ flex: 0 0 1.5rem;
39969
+ }
39970
+
39971
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem-axle .cxd-TimelineItem-line {
39972
+ position: absolute;
39973
+ height: calc(100% - 1.25rem);
39974
+ width: 0.125rem;
39975
+ left: 0.8125rem;
39976
+ top: 1.25rem;
39977
+ background-color: #e6e6e8;
39978
+ }
39979
+
39980
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem-axle .cxd-TimelineItem-round {
39981
+ position: absolute;
39982
+ width: 0.5rem;
39983
+ height: 0.5rem;
39984
+ left: 0.625rem;
39985
+ top: 0.5rem;
39986
+ background: #dadbdd;
39987
+ border-radius: 50%;
39988
+ }
39989
+
39990
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem-axle .cxd-TimelineItem-round--danger {
39991
+ background: #e8684a;
39992
+ }
39993
+
39994
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem-axle .cxd-TimelineItem-round--info {
39995
+ background: #2468f2;
39996
+ }
39997
+
39998
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem-axle .cxd-TimelineItem-round--success {
39999
+ background: #0bc286;
40000
+ }
40001
+
40002
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem-axle .cxd-TimelineItem-round--warning {
40003
+ background: #ffb200;
40004
+ }
40005
+
40006
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem-axle .cxd-TimelineItem-icon {
40007
+ position: absolute;
40008
+ width: 1rem;
40009
+ height: 1rem;
40010
+ left: 0.375rem;
40011
+ border-radius: 50%;
40012
+ }
40013
+
40014
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem-content {
40015
+ padding-bottom: 1rem;
40016
+ margin-left: 0.5rem;
40017
+ }
40018
+
40019
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem-content .cxd-TimelineItem-time {
40020
+ color: #83868c;
40021
+ font-size: var(--Timeline--font-size);
40022
+ margin-bottom: 0.25rem;
40023
+ }
40024
+
40025
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem-content .cxd-TimelineItem-title {
40026
+ color: #151a26;
40027
+ font-size: var(--Timeline--font-size);
40028
+ margin-bottom: 0.25rem;
40029
+ }
40030
+
40031
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem-content .cxd-TimelineItem-detail .cxd-TimelineItem-detail-button {
40032
+ display: flex;
40033
+ cursor: pointer;
40034
+ align-items: center;
40035
+ font-size: var(--Timeline--font-size);
40036
+ color: #2468f2;
40037
+ margin-bottom: 0.5rem;
40038
+ }
40039
+
40040
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem-content .cxd-TimelineItem-detail .cxd-TimelineItem-detail-arrow {
40041
+ width: 1rem;
40042
+ height: 1rem;
40043
+ }
40044
+
40045
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem-content .cxd-TimelineItem-detail .cxd-TimelineItem-detail-arrow-top {
40046
+ transform: rotateX(180deg);
40047
+ }
40048
+
40049
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem-content .cxd-TimelineItem-detail .cxd-TimelineItem-detail-visible {
40050
+ display: block;
40051
+ max-width: 18.75rem;
40052
+ font-size: var(--Timeline--font-size);
40053
+ padding: 0.625rem;
40054
+ box-shadow: 0 0.0625rem 0.625rem 0
40055
+ rgba(0 0 0 / 10%);
40056
+ }
40057
+
40058
+ .amis-scope .cxd-Timeline-vertical .cxd-TimelineItem-content .cxd-TimelineItem-detail .cxd-TimelineItem-detail-invisible {
40059
+ display: none;
40060
+ }
40061
+
40062
+ .amis-scope .cxd-Timeline-vertical.cxd-Timeline-left .cxd-TimelineItem {
40063
+ flex-direction: row-reverse;
40064
+ }
40065
+
40066
+ .amis-scope .cxd-Timeline-vertical.cxd-Timeline-alternate .cxd-TimelineItem:nth-child(odd) {
40067
+ flex-direction: row-reverse;
40068
+ max-width: 50%;
40069
+ }
40070
+
40071
+ .amis-scope .cxd-Timeline-vertical.cxd-Timeline-alternate .cxd-TimelineItem:nth-child(even) {
40072
+ margin-left: calc(50% - 1.5rem);
40073
+ max-width: calc(50% + 1.5rem);
40074
+ }
40075
+
40076
+ .amis-scope .cxd-Timeline-horizontal {
40077
+ display: flex;
40078
+ flex-flow: row;
40079
+ margin-left: 50%;
40080
+ transform: translateX(-50%);
40081
+ }
40082
+
40083
+ .amis-scope .cxd-Timeline-horizontal .cxd-TimelineItem {
40084
+ display: flex;
40085
+ width: -webkit-fill-available;
40086
+ flex-flow: column;
40087
+ }
40088
+
40089
+ .amis-scope .cxd-Timeline-horizontal .cxd-TimelineItem:last-of-type .cxd-TimelineItem-axle .cxd-TimelineItem-line {
40090
+ display: none;
40091
+ }
40092
+
40093
+ .amis-scope .cxd-Timeline-horizontal .cxd-TimelineItem-axle {
40094
+ position: relative;
40095
+ flex: 0 0 1.5rem;
40096
+ }
40097
+
40098
+ .amis-scope .cxd-Timeline-horizontal .cxd-TimelineItem-axle .cxd-TimelineItem-line {
40099
+ position: absolute;
40100
+ height: 0.125rem;
40101
+ width: calc(100% - 0.8125rem);
40102
+ left: 1.25rem;
40103
+ top: 0.8125rem;
40104
+ background-color: #e6e6e8;
40105
+ }
40106
+
40107
+ .amis-scope .cxd-Timeline-horizontal .cxd-TimelineItem-axle .cxd-TimelineItem-round {
40108
+ position: absolute;
40109
+ width: 0.5rem;
40110
+ height: 0.5rem;
40111
+ left: 0.5rem;
40112
+ top: 0.625rem;
40113
+ background: #dadbdd;
40114
+ border-radius: 50%;
40115
+ }
40116
+
40117
+ .amis-scope .cxd-Timeline-horizontal .cxd-TimelineItem-axle .cxd-TimelineItem-round--danger {
40118
+ background: #e8684a;
40119
+ }
40120
+
40121
+ .amis-scope .cxd-Timeline-horizontal .cxd-TimelineItem-axle .cxd-TimelineItem-round--info {
40122
+ background: #2468f2;
40123
+ }
40124
+
40125
+ .amis-scope .cxd-Timeline-horizontal .cxd-TimelineItem-axle .cxd-TimelineItem-round--success {
40126
+ background: #0bc286;
40127
+ }
40128
+
40129
+ .amis-scope .cxd-Timeline-horizontal .cxd-TimelineItem-axle .cxd-TimelineItem-round--warning {
40130
+ background: #ffb200;
40131
+ }
40132
+
40133
+ .amis-scope .cxd-Timeline-horizontal .cxd-TimelineItem-axle .cxd-TimelineItem-icon {
40134
+ position: absolute;
40135
+ width: 1rem;
40136
+ height: 1rem;
40137
+ left: 0.375rem;
40138
+ border-radius: 50%;
40139
+ }
40140
+
40141
+ /**
40142
+ * Debug 模块的 UI,由于没法使用任何主题,所以这里使用独立配色风格
40143
+ */
40144
+
40145
+ .amis-scope .AMISDebug {
40146
+ position: fixed;
40147
+ z-index: 4000;
40148
+ top: 0;
40149
+ right: 0;
40150
+ height: 100vh;
40151
+ width: 24px;
40152
+ }
40153
+
40154
+ .amis-scope .AMISDebug h3 {
40155
+ color: inherit;
40156
+ }
40157
+
40158
+ .amis-scope .AMISDebug .primary {
40159
+ color: #009fff;
40160
+ }
40161
+
40162
+ .amis-scope .AMISDebug-header {
40163
+ padding: 1rem 1.5rem;
40164
+ background: #fff;
40165
+ border-bottom: 0.0625rem solid #dfe2e6;
40166
+ }
40167
+
40168
+ .amis-scope .AMISDebug-hoverBox {
40169
+ pointer-events: none;
40170
+ position: absolute;
40171
+ outline: 1px dashed #1c76c4;
40172
+ }
40173
+
40174
+ .amis-scope .AMISDebug-activeBox {
40175
+ pointer-events: none;
40176
+ position: absolute;
40177
+ outline: 1px #1c76c4;
40178
+ }
40179
+
40180
+ .amis-scope .AMISDebug-tab {
40181
+ overflow: hidden;
40182
+ }
40183
+
40184
+ .amis-scope .AMISDebug-tab > button {
40185
+ color: inherit;
40186
+ background: inherit;
40187
+ float: left;
40188
+ border: none;
40189
+ outline: none;
40190
+ cursor: pointer;
40191
+ padding: 0.5rem 1rem;
40192
+ transition: 0.3s;
40193
+ border-bottom: 1px solid transparent;
40194
+ }
40195
+
40196
+ .amis-scope .AMISDebug-tab > button:hover {
40197
+ color: #e7e7e7;
40198
+ }
40199
+
40200
+ .amis-scope .AMISDebug-tab > button.active {
40201
+ color: #e7e7e7;
40202
+ border-bottom-color: #e7e7e7;
40203
+ }
40204
+
40205
+ .amis-scope .AMISDebug-toggle {
40206
+ background: #ffffff;
40207
+ position: fixed;
40208
+ top: 50%;
40209
+ right: 0;
40210
+ width: 24px;
40211
+ height: 48px;
40212
+ box-shadow: rgba(0, 0, 0, 0.24) -2px 0px 4px 0px;
40213
+ border-top-left-radius: 12px;
40214
+ border-bottom-left-radius: 12px;
40215
+ padding-top: 14px;
40216
+ padding-left: 6px;
40217
+ cursor: pointer;
40218
+ }
40219
+
40220
+ .amis-scope .AMISDebug-toggle i {
40221
+ color: #151a26;
40222
+ }
40223
+
40224
+ .amis-scope .AMISDebug-toggle:hover i {
40225
+ color: #2468f2;
40226
+ }
40227
+
40228
+ .amis-scope .AMISDebug-content {
40229
+ display: none;
40230
+ }
40231
+
40232
+ .amis-scope .AMISDebug-resize {
40233
+ position: absolute;
40234
+ width: 4px;
40235
+ top: 0;
40236
+ left: 0;
40237
+ bottom: 0;
40238
+ cursor: col-resize;
40239
+ }
40240
+
40241
+ .amis-scope .AMISDebug-resize:hover {
40242
+ background: #75715e;
40243
+ }
40244
+
40245
+ .amis-scope .AMISDebug-changePosition {
40246
+ position: absolute;
40247
+ font-size: 18px;
40248
+ right: 40px;
40249
+ top: 0.5rem;
40250
+ cursor: pointer;
40251
+ }
40252
+
40253
+ .amis-scope .AMISDebug-close {
40254
+ position: absolute;
40255
+ font-size: 18px;
40256
+ right: 0.5rem;
40257
+ top: 0.5rem;
40258
+ cursor: pointer;
40259
+ }
40260
+
40261
+ .amis-scope .AMISDebug.is-expanded {
40262
+ width: 420px;
40263
+ overflow: auto;
40264
+ background: #272821;
40265
+ color: #cccccc;
40266
+ box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
40267
+ }
40268
+
40269
+ .amis-scope .AMISDebug.is-expanded .AMISDebug-toggle {
40270
+ display: none;
40271
+ }
40272
+
40273
+ .amis-scope .AMISDebug.is-expanded .AMISDebug-content {
40274
+ display: block;
40275
+ }
40276
+
40277
+ .amis-scope .AMISDebug.is-left {
40278
+ left: 0;
40279
+ }
40280
+
40281
+ .amis-scope .AMISDebug.is-left .AMISDebug-resize {
40282
+ left: unset;
40283
+ right: 0;
40284
+ }
40285
+
40286
+ .amis-scope .AMISDebug-log {
40287
+ padding: 0.5rem;
40288
+ }
40289
+
40290
+ .amis-scope .AMISDebug-log button {
40291
+ cursor: pointer;
40292
+ background: #0e639c;
40293
+ flex-grow: 1;
40294
+ box-sizing: border-box;
40295
+ display: inline-flex;
40296
+ justify-content: center;
40297
+ align-items: center;
40298
+ padding: 6px 11px;
40299
+ outline: none;
40300
+ text-decoration: none;
40301
+ color: inherit;
40302
+ max-width: 300px;
40303
+ border: none;
40304
+ }
40305
+
40306
+ .amis-scope .AMISDebug-log button:hover {
40307
+ background: #1177bb;
40308
+ }
40309
+
40310
+ .amis-scope .AMISDebug-inspect {
40311
+ padding: 0.5rem;
39003
40312
  }
39004
40313
 
39005
40314
  /*
@@ -41427,18 +42736,6 @@ readers do not read off random characters that represent icons */
41427
42736
  border: none;
41428
42737
  }
41429
42738
 
41430
- .amis-scope .cxd-DropDown .cxd-DropDown-menu {
41431
- border: none;
41432
- }
41433
-
41434
- .amis-scope .cxd-DropDown .cxd-DropDown-menu > li {
41435
- color: #151a26;
41436
- }
41437
-
41438
- .amis-scope .cxd-DropDown .cxd-DropDown-menu > li.is-disabled {
41439
- color: #b4b6ba;
41440
- }
41441
-
41442
42739
  .amis-scope .cxd-Toast .cxd-Toast-icon {
41443
42740
  margin-right: 0.5rem;
41444
42741
  }
@@ -41621,15 +42918,8 @@ readers do not read off random characters that represent icons */
41621
42918
  padding-left: 0;
41622
42919
  }
41623
42920
 
41624
- .amis-scope .cxd-Form-label {
41625
- font-size: 14px;
41626
- color: #5e626a;
41627
- }
41628
-
41629
42921
  .amis-scope .cxd-Form-item--inline .cxd-Form-label {
41630
42922
  margin-right: 1rem;
41631
- font-size: 14px;
41632
- color: #5e626a;
41633
42923
  }
41634
42924
 
41635
42925
  .amis-scope .cxd-Form .cxd-Collapse {