vxe-pc-ui 0.0.2 → 0.1.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 (714) hide show
  1. package/es/anchor/src/anchor.js +1 -1
  2. package/es/anchor-link/index.js +1 -1
  3. package/es/{button-group → button}/src/button-group.js +2 -2
  4. package/es/button/src/button.js +3 -3
  5. package/es/button/style.css +17 -17
  6. package/es/button/style.min.css +1 -1
  7. package/es/button-group/index.js +1 -1
  8. package/es/checkbox/index.js +10 -0
  9. package/es/checkbox/src/checkbox.js +116 -0
  10. package/es/checkbox/src/group.js +108 -0
  11. package/es/checkbox/style.css +107 -0
  12. package/es/checkbox/style.min.css +1 -0
  13. package/es/checkbox-group/index.js +10 -0
  14. package/es/col/index.js +1 -1
  15. package/es/components.js +98 -35
  16. package/es/dynamics/index.js +27 -0
  17. package/es/form/index.js +8 -0
  18. package/es/form/src/form-config-item.js +178 -0
  19. package/es/form/src/form-gather.js +47 -0
  20. package/es/form/src/form-item.js +228 -0
  21. package/es/form/src/form.js +665 -0
  22. package/es/form/src/itemInfo.js +39 -0
  23. package/es/form/src/render.js +68 -0
  24. package/es/form/src/util.js +65 -0
  25. package/es/form/style.css +321 -0
  26. package/es/form/style.min.css +1 -0
  27. package/es/form-design/index.js +8 -0
  28. package/es/form-design/src/form-design.js +79 -0
  29. package/es/form-design/src/setting.js +12 -0
  30. package/es/form-design/src/util.js +8 -0
  31. package/es/form-design/src/view.js +113 -0
  32. package/es/form-design/src/widget.js +104 -0
  33. package/es/form-design/style.css +97 -0
  34. package/es/form-design/style.min.css +1 -0
  35. package/es/form-gather/index.js +8 -0
  36. package/es/form-item/index.js +8 -0
  37. package/es/icon/style.css +540 -1
  38. package/es/icon/style.min.css +1 -1
  39. package/es/input/index.js +10 -0
  40. package/es/input/src/date.js +41 -0
  41. package/es/input/src/input.js +2333 -0
  42. package/es/input/src/number.js +10 -0
  43. package/es/input/style.css +1000 -0
  44. package/es/input/style.min.css +1 -0
  45. package/es/layout-aside/style.css +1 -0
  46. package/es/layout-aside/style.min.css +1 -1
  47. package/es/layout-body/style.css +1 -0
  48. package/es/layout-body/style.min.css +1 -1
  49. package/es/layout-footer/style.css +1 -0
  50. package/es/layout-footer/style.min.css +1 -1
  51. package/es/layout-header/style.css +1 -0
  52. package/es/layout-header/style.min.css +1 -1
  53. package/es/list-design/index.js +8 -0
  54. package/es/{design/src/design.js → list-design/src/list-design.js} +7 -7
  55. package/es/loading/index.js +8 -0
  56. package/es/loading/src/loading.js +53 -0
  57. package/es/loading/style.css +75 -0
  58. package/es/loading/style.min.css +1 -0
  59. package/es/modal/index.js +96 -0
  60. package/es/modal/src/modal.js +876 -0
  61. package/es/modal/style.css +323 -0
  62. package/es/modal/style.min.css +1 -0
  63. package/es/optgroup/index.js +10 -0
  64. package/es/optgroup/style.css +0 -0
  65. package/es/optgroup/style.min.css +0 -0
  66. package/es/option/index.js +10 -0
  67. package/es/option/style.css +0 -0
  68. package/es/option/style.min.css +0 -0
  69. package/es/pager/index.js +10 -0
  70. package/es/pager/src/pager.js +539 -0
  71. package/es/pager/style.css +319 -0
  72. package/es/pager/style.min.css +1 -0
  73. package/es/pulldown/index.js +10 -0
  74. package/es/pulldown/src/pulldown.js +328 -0
  75. package/es/pulldown/style.css +57 -0
  76. package/es/pulldown/style.min.css +1 -0
  77. package/es/radio/index.js +10 -0
  78. package/es/radio/src/button.js +113 -0
  79. package/es/radio/src/group.js +93 -0
  80. package/es/radio/src/radio.js +118 -0
  81. package/es/radio/style.css +143 -0
  82. package/es/radio/style.min.css +1 -0
  83. package/es/radio-button/index.js +10 -0
  84. package/es/radio-button/style.css +0 -0
  85. package/es/radio-button/style.min.css +0 -0
  86. package/es/radio-group/index.js +10 -0
  87. package/es/radio-group/style.css +0 -0
  88. package/es/radio-group/style.min.css +0 -0
  89. package/es/select/index.js +10 -0
  90. package/es/select/src/optgroup.js +31 -0
  91. package/es/select/src/option.js +31 -0
  92. package/es/select/src/optionInfo.js +16 -0
  93. package/es/select/src/select.js +992 -0
  94. package/es/select/src/util.js +36 -0
  95. package/es/select/style.css +201 -0
  96. package/es/select/style.min.css +1 -0
  97. package/es/style.css +1 -1
  98. package/es/style.min.css +1 -1
  99. package/es/switch/index.js +10 -0
  100. package/es/switch/src/switch.js +151 -0
  101. package/es/switch/style.css +97 -0
  102. package/es/switch/style.min.css +1 -0
  103. package/es/textarea/index.js +10 -0
  104. package/es/textarea/src/textarea.js +245 -0
  105. package/es/textarea/style.css +102 -0
  106. package/es/textarea/style.min.css +1 -0
  107. package/es/tooltip/index.js +8 -0
  108. package/es/tooltip/src/tooltip.js +336 -0
  109. package/es/tooltip/style.css +103 -0
  110. package/es/tooltip/style.min.css +1 -0
  111. package/es/ui/src/core.js +12 -2
  112. package/es/ui/src/dom.js +20 -0
  113. package/es/ui/src/globalStore.js +119 -4
  114. package/es/ui/src/i18n.js +7 -0
  115. package/es/ui/src/log.js +2 -2
  116. package/es/ui/src/renderer.js +67 -0
  117. package/es/ui/src/store.js +41 -0
  118. package/es/ui/src/utils.js +10 -0
  119. package/es/ui/src/validators.js +5 -0
  120. package/es/ui/src/vn.js +10 -0
  121. package/es/vxe-button/style.css +17 -17
  122. package/es/vxe-button/style.min.css +1 -1
  123. package/es/vxe-checkbox/index.js +3 -0
  124. package/es/vxe-checkbox/style.css +107 -0
  125. package/es/vxe-checkbox/style.min.css +1 -0
  126. package/es/vxe-checkbox-group/index.js +3 -0
  127. package/es/vxe-checkbox-group/style.css +0 -0
  128. package/es/vxe-checkbox-group/style.min.css +0 -0
  129. package/es/vxe-form/index.js +3 -0
  130. package/es/vxe-form/style.css +321 -0
  131. package/es/vxe-form/style.min.css +1 -0
  132. package/es/vxe-form-design/index.js +3 -0
  133. package/es/vxe-form-design/style.css +97 -0
  134. package/es/vxe-form-design/style.min.css +1 -0
  135. package/es/vxe-form-gather/index.js +3 -0
  136. package/es/vxe-form-gather/style.css +0 -0
  137. package/es/vxe-form-gather/style.min.css +0 -0
  138. package/es/vxe-form-item/index.js +3 -0
  139. package/es/vxe-form-item/style.css +0 -0
  140. package/es/vxe-form-item/style.min.css +0 -0
  141. package/es/vxe-icon/style.css +540 -1
  142. package/es/vxe-icon/style.min.css +1 -1
  143. package/es/vxe-input/index.js +3 -0
  144. package/es/vxe-input/style.css +1000 -0
  145. package/es/vxe-input/style.min.css +1 -0
  146. package/es/vxe-layout-aside/style.css +1 -0
  147. package/es/vxe-layout-aside/style.min.css +1 -1
  148. package/es/vxe-layout-body/style.css +1 -0
  149. package/es/vxe-layout-body/style.min.css +1 -1
  150. package/es/vxe-layout-footer/style.css +1 -0
  151. package/es/vxe-layout-footer/style.min.css +1 -1
  152. package/es/vxe-layout-header/style.css +1 -0
  153. package/es/vxe-layout-header/style.min.css +1 -1
  154. package/es/vxe-list-design/index.js +3 -0
  155. package/es/vxe-list-design/style.css +0 -0
  156. package/es/vxe-list-design/style.min.css +0 -0
  157. package/es/vxe-loading/index.js +3 -0
  158. package/es/vxe-loading/style.css +75 -0
  159. package/es/vxe-loading/style.min.css +1 -0
  160. package/es/vxe-modal/index.js +3 -0
  161. package/es/vxe-modal/style.css +323 -0
  162. package/es/vxe-modal/style.min.css +1 -0
  163. package/es/vxe-optgroup/index.js +3 -0
  164. package/es/vxe-optgroup/style.css +0 -0
  165. package/es/vxe-optgroup/style.min.css +0 -0
  166. package/es/vxe-option/index.js +3 -0
  167. package/es/vxe-option/style.css +0 -0
  168. package/es/vxe-option/style.min.css +0 -0
  169. package/es/vxe-pager/index.js +3 -0
  170. package/es/vxe-pager/style.css +319 -0
  171. package/es/vxe-pager/style.min.css +1 -0
  172. package/es/vxe-pulldown/index.js +3 -0
  173. package/es/vxe-pulldown/style.css +57 -0
  174. package/es/vxe-pulldown/style.min.css +1 -0
  175. package/es/vxe-radio/index.js +3 -0
  176. package/es/vxe-radio/style.css +143 -0
  177. package/es/vxe-radio/style.min.css +1 -0
  178. package/es/vxe-radio-button/index.js +3 -0
  179. package/es/vxe-radio-button/style.css +0 -0
  180. package/es/vxe-radio-button/style.min.css +0 -0
  181. package/es/vxe-radio-group/index.js +3 -0
  182. package/es/vxe-radio-group/style.css +0 -0
  183. package/es/vxe-radio-group/style.min.css +0 -0
  184. package/es/vxe-select/index.js +3 -0
  185. package/es/vxe-select/style.css +201 -0
  186. package/es/vxe-select/style.min.css +1 -0
  187. package/es/vxe-switch/index.js +3 -0
  188. package/es/vxe-switch/style.css +97 -0
  189. package/es/vxe-switch/style.min.css +1 -0
  190. package/es/vxe-textarea/index.js +3 -0
  191. package/es/vxe-textarea/style.css +102 -0
  192. package/es/vxe-textarea/style.min.css +1 -0
  193. package/es/vxe-tooltip/index.js +3 -0
  194. package/es/vxe-tooltip/style.css +103 -0
  195. package/es/vxe-tooltip/style.min.css +1 -0
  196. package/lib/anchor/src/anchor.js +1 -1
  197. package/lib/anchor/src/anchor.min.js +1 -1
  198. package/lib/anchor-link/index.js +1 -1
  199. package/lib/anchor-link/index.min.js +1 -1
  200. package/lib/{button-group → button}/src/button-group.js +2 -2
  201. package/lib/button/src/button-group.min.js +1 -0
  202. package/lib/button/src/button.js +3 -3
  203. package/lib/button/src/button.min.js +1 -1
  204. package/lib/button/style/style.css +17 -17
  205. package/lib/button/style/style.min.css +1 -1
  206. package/lib/button-group/index.js +1 -1
  207. package/lib/button-group/index.min.js +1 -1
  208. package/lib/checkbox/index.js +17 -0
  209. package/lib/checkbox/index.min.js +1 -0
  210. package/lib/checkbox/src/checkbox.js +144 -0
  211. package/lib/checkbox/src/checkbox.min.js +1 -0
  212. package/lib/checkbox/src/group.js +129 -0
  213. package/lib/checkbox/src/group.min.js +1 -0
  214. package/lib/checkbox/style/style.css +107 -0
  215. package/lib/checkbox/style/style.min.css +1 -0
  216. package/lib/checkbox-group/index.js +17 -0
  217. package/lib/checkbox-group/index.min.js +1 -0
  218. package/lib/checkbox-group/style/style.css +0 -0
  219. package/lib/checkbox-group/style/style.min.css +0 -0
  220. package/lib/col/index.js +1 -1
  221. package/lib/col/index.min.js +1 -1
  222. package/lib/components.js +290 -63
  223. package/lib/components.min.js +1 -1
  224. package/lib/dynamics/index.js +36 -0
  225. package/lib/dynamics/index.min.js +1 -0
  226. package/lib/form/index.js +15 -0
  227. package/lib/form/index.min.js +1 -0
  228. package/lib/form/src/form-config-item.js +192 -0
  229. package/lib/form/src/form-config-item.min.js +1 -0
  230. package/lib/form/src/form-gather.js +57 -0
  231. package/lib/form/src/form-gather.min.js +1 -0
  232. package/lib/form/src/form-item.js +247 -0
  233. package/lib/form/src/form-item.min.js +1 -0
  234. package/lib/form/src/form.js +768 -0
  235. package/lib/form/src/form.min.js +1 -0
  236. package/lib/form/src/itemInfo.js +47 -0
  237. package/lib/form/src/itemInfo.min.js +1 -0
  238. package/lib/form/src/render.js +84 -0
  239. package/lib/form/src/render.min.js +1 -0
  240. package/lib/form/src/util.js +108 -0
  241. package/lib/form/src/util.min.js +1 -0
  242. package/lib/form/style/index.js +1 -0
  243. package/lib/form/style/style.css +321 -0
  244. package/lib/form/style/style.min.css +1 -0
  245. package/lib/form-design/index.js +15 -0
  246. package/lib/form-design/index.min.js +1 -0
  247. package/lib/form-design/src/form-design.js +87 -0
  248. package/lib/form-design/src/form-design.min.js +1 -0
  249. package/lib/form-design/src/setting.js +18 -0
  250. package/lib/form-design/src/setting.min.js +1 -0
  251. package/lib/form-design/src/util.js +17 -0
  252. package/lib/form-design/src/util.min.js +1 -0
  253. package/lib/form-design/src/view.js +147 -0
  254. package/lib/form-design/src/view.min.js +1 -0
  255. package/lib/form-design/src/widget.js +114 -0
  256. package/lib/form-design/src/widget.min.js +1 -0
  257. package/lib/form-design/style/index.js +1 -0
  258. package/lib/form-design/style/style.css +97 -0
  259. package/lib/form-design/style/style.min.css +1 -0
  260. package/lib/form-gather/index.js +15 -0
  261. package/lib/form-gather/index.min.js +1 -0
  262. package/lib/form-gather/style/index.js +1 -0
  263. package/lib/form-gather/style/style.css +0 -0
  264. package/lib/form-gather/style/style.min.css +0 -0
  265. package/lib/form-item/index.js +15 -0
  266. package/lib/form-item/index.min.js +1 -0
  267. package/lib/form-item/style/index.js +1 -0
  268. package/lib/form-item/style/style.css +0 -0
  269. package/lib/form-item/style/style.min.css +0 -0
  270. package/lib/icon/style/style.css +540 -1
  271. package/lib/icon/style/style.min.css +1 -1
  272. package/lib/index.umd.js +10741 -782
  273. package/lib/index.umd.min.js +1 -1
  274. package/lib/input/index.js +17 -0
  275. package/lib/input/index.min.js +1 -0
  276. package/lib/input/src/date.js +46 -0
  277. package/lib/input/src/date.min.js +1 -0
  278. package/lib/input/src/input.js +2546 -0
  279. package/lib/input/src/input.min.js +1 -0
  280. package/lib/input/src/number.js +18 -0
  281. package/lib/input/src/number.min.js +1 -0
  282. package/lib/input/style/index.js +1 -0
  283. package/lib/input/style/style.css +1000 -0
  284. package/lib/input/style/style.min.css +1 -0
  285. package/lib/layout-aside/style/style.css +1 -0
  286. package/lib/layout-aside/style/style.min.css +1 -1
  287. package/lib/layout-body/style/style.css +1 -0
  288. package/lib/layout-body/style/style.min.css +1 -1
  289. package/lib/layout-footer/style/style.css +1 -0
  290. package/lib/layout-footer/style/style.min.css +1 -1
  291. package/lib/layout-header/style/style.css +1 -0
  292. package/lib/layout-header/style/style.min.css +1 -1
  293. package/lib/list-design/index.js +15 -0
  294. package/lib/list-design/index.min.js +1 -0
  295. package/lib/{design/src/design.js → list-design/src/list-design.js} +7 -7
  296. package/lib/list-design/src/list-design.min.js +1 -0
  297. package/lib/list-design/style/index.js +1 -0
  298. package/lib/list-design/style/style.css +0 -0
  299. package/lib/list-design/style/style.min.css +0 -0
  300. package/lib/loading/index.js +15 -0
  301. package/lib/loading/index.min.js +1 -0
  302. package/lib/loading/src/loading.js +49 -0
  303. package/lib/loading/src/loading.min.js +1 -0
  304. package/lib/loading/style/index.js +1 -0
  305. package/lib/loading/style/style.css +75 -0
  306. package/lib/loading/style/style.min.css +1 -0
  307. package/lib/modal/index.js +110 -0
  308. package/lib/modal/index.min.js +1 -0
  309. package/lib/modal/src/modal.js +1064 -0
  310. package/lib/modal/src/modal.min.js +1 -0
  311. package/lib/modal/style/index.js +1 -0
  312. package/lib/modal/style/style.css +323 -0
  313. package/lib/modal/style/style.min.css +1 -0
  314. package/lib/optgroup/index.js +17 -0
  315. package/lib/optgroup/index.min.js +1 -0
  316. package/lib/optgroup/style/index.js +1 -0
  317. package/lib/optgroup/style/style.css +0 -0
  318. package/lib/optgroup/style/style.min.css +0 -0
  319. package/lib/option/index.js +17 -0
  320. package/lib/option/index.min.js +1 -0
  321. package/lib/option/style/index.js +1 -0
  322. package/lib/option/style/style.css +0 -0
  323. package/lib/option/style/style.min.css +0 -0
  324. package/lib/pager/index.js +17 -0
  325. package/lib/pager/index.min.js +1 -0
  326. package/lib/pager/src/pager.js +593 -0
  327. package/lib/pager/src/pager.min.js +1 -0
  328. package/lib/pager/style/index.js +1 -0
  329. package/lib/pager/style/style.css +319 -0
  330. package/lib/pager/style/style.min.css +1 -0
  331. package/lib/pulldown/index.js +17 -0
  332. package/lib/pulldown/index.min.js +1 -0
  333. package/lib/pulldown/src/pulldown.js +359 -0
  334. package/lib/pulldown/src/pulldown.min.js +1 -0
  335. package/lib/pulldown/style/index.js +1 -0
  336. package/lib/pulldown/style/style.css +57 -0
  337. package/lib/pulldown/style/style.min.css +1 -0
  338. package/lib/radio/index.js +17 -0
  339. package/lib/radio/index.min.js +1 -0
  340. package/lib/radio/src/button.js +135 -0
  341. package/lib/radio/src/button.min.js +1 -0
  342. package/lib/radio/src/group.js +108 -0
  343. package/lib/radio/src/group.min.js +1 -0
  344. package/lib/radio/src/radio.js +139 -0
  345. package/lib/radio/src/radio.min.js +1 -0
  346. package/lib/radio/style/index.js +1 -0
  347. package/lib/radio/style/style.css +143 -0
  348. package/lib/radio/style/style.min.css +1 -0
  349. package/lib/radio-button/index.js +17 -0
  350. package/lib/radio-button/index.min.js +1 -0
  351. package/lib/radio-button/style/index.js +1 -0
  352. package/lib/radio-button/style/style.css +0 -0
  353. package/lib/radio-button/style/style.min.css +0 -0
  354. package/lib/radio-group/index.js +17 -0
  355. package/lib/radio-group/index.min.js +1 -0
  356. package/lib/radio-group/style/index.js +1 -0
  357. package/lib/radio-group/style/style.css +0 -0
  358. package/lib/radio-group/style/style.min.css +0 -0
  359. package/lib/select/index.js +17 -0
  360. package/lib/select/index.min.js +1 -0
  361. package/lib/select/src/optgroup.js +47 -0
  362. package/lib/select/src/optgroup.min.js +1 -0
  363. package/lib/select/src/option.js +45 -0
  364. package/lib/select/src/option.min.js +1 -0
  365. package/lib/select/src/optionInfo.js +24 -0
  366. package/lib/select/src/optionInfo.min.js +1 -0
  367. package/lib/select/src/select.js +1104 -0
  368. package/lib/select/src/select.min.js +1 -0
  369. package/lib/select/src/util.js +57 -0
  370. package/lib/select/src/util.min.js +1 -0
  371. package/lib/select/style/index.js +1 -0
  372. package/lib/select/style/style.css +201 -0
  373. package/lib/select/style/style.min.css +1 -0
  374. package/lib/style.css +1 -1
  375. package/lib/style.min.css +1 -1
  376. package/lib/switch/index.js +17 -0
  377. package/lib/switch/index.min.js +1 -0
  378. package/lib/switch/src/switch.js +161 -0
  379. package/lib/switch/src/switch.min.js +1 -0
  380. package/lib/switch/style/index.js +1 -0
  381. package/lib/switch/style/style.css +97 -0
  382. package/lib/switch/style/style.min.css +1 -0
  383. package/lib/textarea/index.js +17 -0
  384. package/lib/textarea/index.min.js +1 -0
  385. package/lib/textarea/src/textarea.js +298 -0
  386. package/lib/textarea/src/textarea.min.js +1 -0
  387. package/lib/textarea/style/index.js +1 -0
  388. package/lib/textarea/style/style.css +102 -0
  389. package/lib/textarea/style/style.min.css +1 -0
  390. package/lib/tooltip/index.js +15 -0
  391. package/lib/tooltip/index.min.js +1 -0
  392. package/lib/tooltip/src/tooltip.js +418 -0
  393. package/lib/tooltip/src/tooltip.min.js +1 -0
  394. package/lib/tooltip/style/index.js +1 -0
  395. package/lib/tooltip/style/style.css +103 -0
  396. package/lib/tooltip/style/style.min.css +1 -0
  397. package/lib/ui/src/core.js +49 -2
  398. package/lib/ui/src/core.min.js +1 -1
  399. package/lib/ui/src/dom.js +22 -0
  400. package/lib/ui/src/dom.min.js +1 -1
  401. package/lib/ui/src/globalStore.js +119 -4
  402. package/lib/ui/src/globalStore.min.js +1 -1
  403. package/lib/ui/src/i18n.js +14 -0
  404. package/lib/ui/src/i18n.min.js +1 -0
  405. package/lib/ui/src/log.js +2 -3
  406. package/lib/ui/src/log.min.js +1 -1
  407. package/lib/ui/src/renderer.js +77 -0
  408. package/lib/ui/src/renderer.min.js +1 -0
  409. package/lib/ui/src/store.js +49 -0
  410. package/lib/ui/src/store.min.js +1 -0
  411. package/lib/ui/src/utils.js +12 -0
  412. package/lib/ui/src/utils.min.js +1 -1
  413. package/lib/ui/src/validators.js +14 -0
  414. package/lib/ui/src/validators.min.js +1 -0
  415. package/lib/ui/src/vn.js +18 -0
  416. package/lib/ui/src/vn.min.js +1 -0
  417. package/lib/vxe-button/style/style.css +17 -17
  418. package/lib/vxe-button/style/style.min.css +1 -1
  419. package/lib/vxe-checkbox/index.js +22 -0
  420. package/lib/vxe-checkbox/index.min.js +1 -0
  421. package/lib/vxe-checkbox/style/index.js +1 -0
  422. package/lib/vxe-checkbox/style/style.css +107 -0
  423. package/lib/vxe-checkbox/style/style.min.css +1 -0
  424. package/lib/vxe-checkbox-group/index.js +22 -0
  425. package/lib/vxe-checkbox-group/index.min.js +1 -0
  426. package/lib/vxe-checkbox-group/style/index.js +1 -0
  427. package/lib/vxe-checkbox-group/style/style.css +0 -0
  428. package/lib/vxe-checkbox-group/style/style.min.css +0 -0
  429. package/lib/{vxe-design → vxe-form}/index.js +5 -5
  430. package/lib/vxe-form/index.min.js +1 -0
  431. package/lib/vxe-form/style/index.js +1 -0
  432. package/lib/vxe-form/style/style.css +321 -0
  433. package/lib/vxe-form/style/style.min.css +1 -0
  434. package/lib/vxe-form-design/index.js +22 -0
  435. package/lib/vxe-form-design/index.min.js +1 -0
  436. package/lib/vxe-form-design/style/index.js +1 -0
  437. package/lib/vxe-form-design/style/style.css +97 -0
  438. package/lib/vxe-form-design/style/style.min.css +1 -0
  439. package/lib/vxe-form-gather/index.js +22 -0
  440. package/lib/vxe-form-gather/index.min.js +1 -0
  441. package/lib/vxe-form-gather/style/index.js +1 -0
  442. package/lib/vxe-form-gather/style/style.css +0 -0
  443. package/lib/vxe-form-gather/style/style.min.css +0 -0
  444. package/lib/vxe-form-item/index.js +22 -0
  445. package/lib/vxe-form-item/index.min.js +1 -0
  446. package/lib/vxe-form-item/style/index.js +1 -0
  447. package/lib/vxe-form-item/style/style.css +0 -0
  448. package/lib/vxe-form-item/style/style.min.css +0 -0
  449. package/lib/vxe-icon/style/style.css +540 -1
  450. package/lib/vxe-icon/style/style.min.css +1 -1
  451. package/lib/vxe-input/index.js +22 -0
  452. package/lib/vxe-input/index.min.js +1 -0
  453. package/lib/vxe-input/style/index.js +1 -0
  454. package/lib/vxe-input/style/style.css +1000 -0
  455. package/lib/vxe-input/style/style.min.css +1 -0
  456. package/lib/vxe-layout-aside/style/style.css +1 -0
  457. package/lib/vxe-layout-aside/style/style.min.css +1 -1
  458. package/lib/vxe-layout-body/style/style.css +1 -0
  459. package/lib/vxe-layout-body/style/style.min.css +1 -1
  460. package/lib/vxe-layout-footer/style/style.css +1 -0
  461. package/lib/vxe-layout-footer/style/style.min.css +1 -1
  462. package/lib/vxe-layout-header/style/style.css +1 -0
  463. package/lib/vxe-layout-header/style/style.min.css +1 -1
  464. package/lib/vxe-list-design/index.js +22 -0
  465. package/lib/vxe-list-design/index.min.js +1 -0
  466. package/lib/vxe-list-design/style/index.js +1 -0
  467. package/lib/vxe-list-design/style/style.css +0 -0
  468. package/lib/vxe-list-design/style/style.min.css +0 -0
  469. package/lib/vxe-loading/index.js +22 -0
  470. package/lib/vxe-loading/index.min.js +1 -0
  471. package/lib/vxe-loading/style/index.js +1 -0
  472. package/lib/vxe-loading/style/style.css +75 -0
  473. package/lib/vxe-loading/style/style.min.css +1 -0
  474. package/lib/vxe-modal/index.js +22 -0
  475. package/lib/vxe-modal/index.min.js +1 -0
  476. package/lib/vxe-modal/style/index.js +1 -0
  477. package/lib/vxe-modal/style/style.css +323 -0
  478. package/lib/vxe-modal/style/style.min.css +1 -0
  479. package/lib/vxe-optgroup/index.js +22 -0
  480. package/lib/vxe-optgroup/index.min.js +1 -0
  481. package/lib/vxe-optgroup/style/index.js +1 -0
  482. package/lib/vxe-optgroup/style/style.css +0 -0
  483. package/lib/vxe-optgroup/style/style.min.css +0 -0
  484. package/lib/vxe-option/index.js +22 -0
  485. package/lib/vxe-option/index.min.js +1 -0
  486. package/lib/vxe-option/style/index.js +1 -0
  487. package/lib/vxe-option/style/style.css +0 -0
  488. package/lib/vxe-option/style/style.min.css +0 -0
  489. package/lib/vxe-pager/index.js +22 -0
  490. package/lib/vxe-pager/index.min.js +1 -0
  491. package/lib/vxe-pager/style/index.js +1 -0
  492. package/lib/vxe-pager/style/style.css +319 -0
  493. package/lib/vxe-pager/style/style.min.css +1 -0
  494. package/lib/vxe-pulldown/index.js +22 -0
  495. package/lib/vxe-pulldown/index.min.js +1 -0
  496. package/lib/vxe-pulldown/style/index.js +1 -0
  497. package/lib/vxe-pulldown/style/style.css +57 -0
  498. package/lib/vxe-pulldown/style/style.min.css +1 -0
  499. package/lib/vxe-radio/index.js +22 -0
  500. package/lib/vxe-radio/index.min.js +1 -0
  501. package/lib/vxe-radio/style/index.js +1 -0
  502. package/lib/vxe-radio/style/style.css +143 -0
  503. package/lib/vxe-radio/style/style.min.css +1 -0
  504. package/lib/vxe-radio-button/index.js +22 -0
  505. package/lib/vxe-radio-button/index.min.js +1 -0
  506. package/lib/vxe-radio-button/style/index.js +1 -0
  507. package/lib/vxe-radio-button/style/style.css +0 -0
  508. package/lib/vxe-radio-button/style/style.min.css +0 -0
  509. package/lib/vxe-radio-group/index.js +22 -0
  510. package/lib/vxe-radio-group/index.min.js +1 -0
  511. package/lib/vxe-radio-group/style/index.js +1 -0
  512. package/lib/vxe-radio-group/style/style.css +0 -0
  513. package/lib/vxe-radio-group/style/style.min.css +0 -0
  514. package/lib/vxe-select/index.js +22 -0
  515. package/lib/vxe-select/index.min.js +1 -0
  516. package/lib/vxe-select/style/index.js +1 -0
  517. package/lib/vxe-select/style/style.css +201 -0
  518. package/lib/vxe-select/style/style.min.css +1 -0
  519. package/lib/vxe-switch/index.js +22 -0
  520. package/lib/vxe-switch/index.min.js +1 -0
  521. package/lib/vxe-switch/style/index.js +1 -0
  522. package/lib/vxe-switch/style/style.css +97 -0
  523. package/lib/vxe-switch/style/style.min.css +1 -0
  524. package/lib/vxe-textarea/index.js +22 -0
  525. package/lib/vxe-textarea/index.min.js +1 -0
  526. package/lib/vxe-textarea/style/index.js +1 -0
  527. package/lib/vxe-textarea/style/style.css +102 -0
  528. package/lib/vxe-textarea/style/style.min.css +1 -0
  529. package/lib/vxe-tooltip/index.js +22 -0
  530. package/lib/vxe-tooltip/index.min.js +1 -0
  531. package/lib/vxe-tooltip/style/index.js +1 -0
  532. package/lib/vxe-tooltip/style/style.css +103 -0
  533. package/lib/vxe-tooltip/style/style.min.css +1 -0
  534. package/package.json +1 -1
  535. package/packages/anchor/src/anchor.ts +1 -1
  536. package/packages/anchor-link/index.ts +1 -1
  537. package/packages/{button-group → button}/src/button-group.ts +2 -2
  538. package/packages/button/src/button.ts +3 -3
  539. package/packages/button-group/index.ts +1 -1
  540. package/packages/checkbox/index.ts +15 -0
  541. package/packages/checkbox/src/checkbox.ts +131 -0
  542. package/packages/checkbox/src/group.ts +127 -0
  543. package/packages/checkbox-group/index.ts +15 -0
  544. package/packages/col/index.ts +1 -1
  545. package/packages/components.ts +100 -35
  546. package/packages/dynamics/index.ts +34 -0
  547. package/packages/form/index.ts +11 -0
  548. package/packages/form/src/form-config-item.ts +193 -0
  549. package/packages/form/src/form-gather.ts +60 -0
  550. package/packages/form/src/form-item.ts +253 -0
  551. package/packages/form/src/form.ts +716 -0
  552. package/packages/form/src/itemInfo.ts +43 -0
  553. package/packages/form/src/render.ts +83 -0
  554. package/packages/form/src/util.ts +79 -0
  555. package/packages/form-design/index.ts +11 -0
  556. package/packages/form-design/src/form-design.ts +99 -0
  557. package/packages/form-design/src/setting.ts +13 -0
  558. package/packages/form-design/src/util.ts +10 -0
  559. package/packages/form-design/src/view.ts +125 -0
  560. package/packages/form-design/src/widget.ts +117 -0
  561. package/packages/form-gather/index.ts +11 -0
  562. package/packages/form-item/index.ts +11 -0
  563. package/packages/icon/src/icon.ts +1 -1
  564. package/packages/input/index.ts +15 -0
  565. package/packages/input/src/date.ts +42 -0
  566. package/packages/input/src/input.ts +2480 -0
  567. package/packages/input/src/number.ts +12 -0
  568. package/packages/list-design/index.ts +11 -0
  569. package/packages/list-design/src/list-design.ts +55 -0
  570. package/packages/loading/index.ts +11 -0
  571. package/packages/loading/src/loading.ts +56 -0
  572. package/packages/modal/index.ts +110 -0
  573. package/packages/modal/src/modal.ts +950 -0
  574. package/packages/optgroup/index.ts +15 -0
  575. package/packages/option/index.ts +15 -0
  576. package/packages/pager/index.ts +15 -0
  577. package/packages/pager/src/pager.ts +595 -0
  578. package/packages/pulldown/index.ts +15 -0
  579. package/packages/pulldown/src/pulldown.ts +349 -0
  580. package/packages/radio/index.ts +15 -0
  581. package/packages/radio/src/button.ts +132 -0
  582. package/packages/radio/src/group.ts +110 -0
  583. package/packages/radio/src/radio.ts +137 -0
  584. package/packages/radio-button/index.ts +15 -0
  585. package/packages/radio-group/index.ts +15 -0
  586. package/packages/select/index.ts +15 -0
  587. package/packages/select/src/optgroup.ts +39 -0
  588. package/packages/select/src/option.ts +38 -0
  589. package/packages/select/src/optionInfo.ts +20 -0
  590. package/packages/select/src/select.ts +1034 -0
  591. package/packages/select/src/util.ts +47 -0
  592. package/packages/switch/index.ts +15 -0
  593. package/packages/switch/src/switch.ts +171 -0
  594. package/packages/textarea/index.ts +15 -0
  595. package/packages/textarea/src/textarea.ts +273 -0
  596. package/packages/tooltip/index.ts +11 -0
  597. package/packages/tooltip/src/tooltip.ts +360 -0
  598. package/packages/ui/src/core.ts +13 -1
  599. package/packages/ui/src/dom.ts +23 -0
  600. package/packages/ui/src/globalStore.ts +122 -5
  601. package/packages/ui/src/i18n.ts +8 -0
  602. package/packages/ui/src/log.ts +2 -2
  603. package/packages/ui/src/renderer.ts +71 -0
  604. package/packages/ui/src/store.ts +49 -0
  605. package/packages/ui/src/utils.ts +12 -0
  606. package/packages/ui/src/validators.ts +9 -0
  607. package/packages/ui/src/vn.ts +14 -0
  608. package/styles/all.scss +30 -10
  609. package/styles/base/common.scss +13 -0
  610. package/styles/components/button.scss +8 -8
  611. package/styles/components/checkbox-group.scss +0 -0
  612. package/styles/components/checkbox.scss +91 -0
  613. package/styles/components/form-design.scss +93 -0
  614. package/styles/components/form-gather.scss +0 -0
  615. package/styles/components/form-item.scss +0 -0
  616. package/styles/components/form.scss +339 -0
  617. package/styles/components/icon.scss +3 -1
  618. package/styles/components/input.scss +911 -0
  619. package/styles/components/layout-aside.scss +1 -0
  620. package/styles/components/layout-body.scss +1 -0
  621. package/styles/components/layout-footer.scss +1 -0
  622. package/styles/components/layout-header.scss +1 -0
  623. package/styles/components/list-design.scss +0 -0
  624. package/styles/components/list.scss +26 -0
  625. package/styles/components/loading.scss +84 -0
  626. package/styles/components/modal.scss +383 -0
  627. package/styles/components/old-icon.scss +712 -0
  628. package/styles/components/optgroup.scss +0 -0
  629. package/styles/components/option.scss +0 -0
  630. package/styles/components/pager.scss +287 -0
  631. package/styles/components/pulldown.scss +55 -0
  632. package/styles/components/radio-button.scss +0 -0
  633. package/styles/components/radio-group.scss +0 -0
  634. package/styles/components/radio.scss +149 -0
  635. package/styles/components/select.scss +226 -0
  636. package/styles/components/switch.scss +113 -0
  637. package/styles/components/textarea.scss +102 -0
  638. package/styles/components/tooltip.scss +124 -0
  639. package/styles/helpers/mixin.scss +12 -12
  640. package/styles/theme/base.scss +143 -6
  641. package/types/all.d.ts +66 -33
  642. package/types/{component → components}/anchor-link.d.ts +17 -2
  643. package/types/{component → components}/anchor.d.ts +10 -2
  644. package/types/{component → components}/breadcrumb-item.d.ts +12 -1
  645. package/types/{component → components}/breadcrumb.d.ts +10 -2
  646. package/types/{component → components}/button-group.d.ts +11 -3
  647. package/types/{component → components}/button.d.ts +14 -3
  648. package/types/components/checkbox-group.d.ts +112 -0
  649. package/types/components/checkbox.d.ts +119 -0
  650. package/types/{component → components}/col.d.ts +9 -1
  651. package/types/components/form-design.d.ts +88 -0
  652. package/types/components/form-gather.d.ts +75 -0
  653. package/types/components/form-item.d.ts +231 -0
  654. package/types/components/form.d.ts +349 -0
  655. package/types/{component → components}/icon.d.ts +7 -2
  656. package/types/components/input.d.ts +375 -0
  657. package/types/{component → components}/layout-aside.d.ts +10 -2
  658. package/types/{component → components}/layout-body.d.ts +10 -2
  659. package/types/{component → components}/layout-container.d.ts +10 -2
  660. package/types/{component → components}/layout-footer.d.ts +10 -2
  661. package/types/{component → components}/layout-header.d.ts +7 -1
  662. package/types/components/list-design.d.ts +67 -0
  663. package/types/components/loading.d.ts +66 -0
  664. package/types/components/modal.d.ts +381 -0
  665. package/types/components/optgroup.d.ts +80 -0
  666. package/types/components/option.d.ts +99 -0
  667. package/types/components/pager.d.ts +208 -0
  668. package/types/components/pulldown.d.ts +134 -0
  669. package/types/components/radio-button.d.ts +99 -0
  670. package/types/components/radio-group.d.ts +107 -0
  671. package/types/components/radio.d.ts +119 -0
  672. package/types/{component → components}/row.d.ts +10 -2
  673. package/types/components/select.d.ts +274 -0
  674. package/types/components/switch.d.ts +118 -0
  675. package/types/components/textarea.d.ts +212 -0
  676. package/types/components/tooltip.d.ts +122 -0
  677. package/types/ui/global-config.d.ts +43 -6
  678. package/types/ui/global-icon.d.ts +80 -10
  679. package/types/ui/index.d.ts +25 -2
  680. package/types/ui/renderer.d.ts +239 -0
  681. package/types/ui/validators.d.ts +26 -0
  682. package/es/design/index.js +0 -8
  683. package/es/vxe-design/index.js +0 -3
  684. package/lib/button-group/src/button-group.min.js +0 -1
  685. package/lib/design/index.js +0 -15
  686. package/lib/design/index.min.js +0 -1
  687. package/lib/design/src/design.min.js +0 -1
  688. package/lib/vxe-design/index.min.js +0 -1
  689. package/packages/design/index.ts +0 -11
  690. package/packages/design/src/design.ts +0 -55
  691. package/styles/components/design.scss +0 -1
  692. package/types/component/design.d.ts +0 -63
  693. /package/es/{anchor-link → anchor}/src/anchor-link.js +0 -0
  694. /package/es/{anchor-link → anchor}/src/util.js +0 -0
  695. /package/es/{design → checkbox-group}/style.css +0 -0
  696. /package/es/{design → checkbox-group}/style.min.css +0 -0
  697. /package/es/{vxe-design → form-gather}/style.css +0 -0
  698. /package/es/{vxe-design → form-gather}/style.min.css +0 -0
  699. /package/{lib/design/style → es/form-item}/style.css +0 -0
  700. /package/{lib/design/style → es/form-item}/style.min.css +0 -0
  701. /package/{lib/vxe-design/style → es/list-design}/style.css +0 -0
  702. /package/{lib/vxe-design/style → es/list-design}/style.min.css +0 -0
  703. /package/es/{col → row}/src/col.js +0 -0
  704. /package/lib/{anchor-link → anchor}/src/anchor-link.js +0 -0
  705. /package/lib/{anchor-link → anchor}/src/anchor-link.min.js +0 -0
  706. /package/lib/{anchor-link → anchor}/src/util.js +0 -0
  707. /package/lib/{anchor-link → anchor}/src/util.min.js +0 -0
  708. /package/lib/{vxe-design → checkbox}/style/index.js +0 -0
  709. /package/lib/{design → checkbox-group}/style/index.js +0 -0
  710. /package/lib/{col → row}/src/col.js +0 -0
  711. /package/lib/{col → row}/src/col.min.js +0 -0
  712. /package/packages/{anchor-link → anchor}/src/anchor-link.ts +0 -0
  713. /package/packages/{anchor-link → anchor}/src/util.ts +0 -0
  714. /package/packages/{col → row}/src/col.ts +0 -0
@@ -0,0 +1,1000 @@
1
+ .vxe-input--inner {
2
+ width: 100%;
3
+ height: 100%;
4
+ border-radius: var(--vxe-border-radius);
5
+ outline: 0;
6
+ margin: 0;
7
+ font-size: inherit;
8
+ font-family: inherit;
9
+ line-height: inherit;
10
+ padding: 0 0.6em;
11
+ color: var(--vxe-font-color);
12
+ border: 1px solid var(--vxe-ui-input-border-color);
13
+ background-color: var(--vxe-ui-input-background-color);
14
+ box-shadow: none;
15
+ }
16
+ .vxe-input--inner::-moz-placeholder {
17
+ color: var(--vxe-ui-input-placeholder-color);
18
+ }
19
+ .vxe-input--inner::placeholder {
20
+ color: var(--vxe-ui-input-placeholder-color);
21
+ }
22
+ .vxe-input--inner::-webkit-autofill {
23
+ background-color: var(--vxe-ui-input-background-color);
24
+ }
25
+ .vxe-input--inner[type=number] {
26
+ -webkit-appearance: none;
27
+ appearance: none;
28
+ -moz-appearance: textfield;
29
+ }
30
+ .vxe-input--inner[type=search], .vxe-input--inner[type=search]::-webkit-search-cancel-button, .vxe-input--inner[type=number]::-webkit-outer-spin-button, .vxe-input--inner[type=number]::-webkit-inner-spin-button {
31
+ -webkit-appearance: none;
32
+ appearance: none;
33
+ }
34
+ .vxe-input--inner[disabled] {
35
+ cursor: not-allowed;
36
+ color: var(--vxe-font-disabled-color);
37
+ background-color: var(--vxe-ui-input-disabled-background-color);
38
+ }
39
+
40
+ .vxe-input {
41
+ display: inline-block;
42
+ position: relative;
43
+ width: 180px;
44
+ }
45
+ .vxe-input.is--disabled .vxe-input--date-picker-suffix,
46
+ .vxe-input.is--disabled .vxe-input--search-suffix,
47
+ .vxe-input.is--disabled .vxe-input--suffix,
48
+ .vxe-input.is--disabled .vxe-input--password-suffix,
49
+ .vxe-input.is--disabled .vxe-input--number-suffix {
50
+ cursor: no-drop;
51
+ }
52
+ .vxe-input:not(.is--disabled) .vxe-input--search-suffix,
53
+ .vxe-input:not(.is--disabled) .vxe-input--clear-icon,
54
+ .vxe-input:not(.is--disabled) .vxe-input--password-suffix,
55
+ .vxe-input:not(.is--disabled) .vxe-input--number-suffix {
56
+ cursor: pointer;
57
+ }
58
+ .vxe-input:not(.is--disabled).is--active .vxe-input--inner {
59
+ border: 1px solid var(--vxe-primary-color);
60
+ }
61
+ .vxe-input .vxe-input--prefix,
62
+ .vxe-input .vxe-input--suffix,
63
+ .vxe-input .vxe-input--extra-suffix {
64
+ display: flex;
65
+ position: absolute;
66
+ top: 0;
67
+ width: 1.6em;
68
+ height: 100%;
69
+ -webkit-user-select: none;
70
+ -moz-user-select: none;
71
+ user-select: none;
72
+ align-items: center;
73
+ justify-content: center;
74
+ color: var(--vxe-table-column-icon-border-color);
75
+ }
76
+
77
+ .vxe-input--count {
78
+ position: absolute;
79
+ top: 1px;
80
+ right: 0.5em;
81
+ height: calc(100% - 2px);
82
+ color: var(--vxe-ui-input-count-color);
83
+ background-color: var(--vxe-ui-input-count-background-color);
84
+ }
85
+ .vxe-input--count.is--error {
86
+ color: var(--vxe-ui-input-count-error-color);
87
+ }
88
+
89
+ .vxe-input .vxe-input--prefix {
90
+ left: 0.2em;
91
+ }
92
+ .vxe-input.is--prefix .vxe-input--inner {
93
+ padding-left: 1.8em;
94
+ }
95
+
96
+ .vxe-input .vxe-input--clear-icon {
97
+ display: none;
98
+ }
99
+ .vxe-input .vxe-input--suffix,
100
+ .vxe-input .vxe-input--extra-suffix {
101
+ right: 0.2em;
102
+ }
103
+ .vxe-input.is--suffix .vxe-input--inner {
104
+ padding-right: 1.8em;
105
+ }
106
+ .vxe-input.is--suffix.is--count .vxe-input--inner {
107
+ padding-right: 5em;
108
+ }
109
+ .vxe-input.is--suffix .vxe-input--count {
110
+ right: 2.1em;
111
+ }
112
+ .vxe-input.is--left .vxe-input--inner {
113
+ text-align: left;
114
+ }
115
+ .vxe-input.is--center .vxe-input--inner {
116
+ text-align: center;
117
+ }
118
+ .vxe-input.is--right .vxe-input--inner {
119
+ text-align: right;
120
+ }
121
+ .vxe-input.is--count .vxe-input--inner {
122
+ padding-right: 3.4em;
123
+ }
124
+ .vxe-input.is--controls.type--search .vxe-input--inner, .vxe-input.is--controls.type--password .vxe-input--inner, .vxe-input.is--controls.type--number .vxe-input--inner, .vxe-input.is--controls.type--integer .vxe-input--inner, .vxe-input.is--controls.type--float .vxe-input--inner, .vxe-input.is--controls.type--date .vxe-input--inner, .vxe-input.is--controls.type--datetime .vxe-input--inner, .vxe-input.is--controls.type--week .vxe-input--inner, .vxe-input.is--controls.type--month .vxe-input--inner, .vxe-input.is--controls.type--quarter .vxe-input--inner, .vxe-input.is--controls.type--year .vxe-input--inner, .vxe-input.is--controls.type--time .vxe-input--inner {
125
+ padding-right: 1.8em;
126
+ }
127
+ .vxe-input.is--controls.type--search .vxe-input--suffix, .vxe-input.is--controls.type--password .vxe-input--suffix, .vxe-input.is--controls.type--number .vxe-input--suffix, .vxe-input.is--controls.type--integer .vxe-input--suffix, .vxe-input.is--controls.type--float .vxe-input--suffix, .vxe-input.is--controls.type--date .vxe-input--suffix, .vxe-input.is--controls.type--datetime .vxe-input--suffix, .vxe-input.is--controls.type--week .vxe-input--suffix, .vxe-input.is--controls.type--month .vxe-input--suffix, .vxe-input.is--controls.type--quarter .vxe-input--suffix, .vxe-input.is--controls.type--year .vxe-input--suffix, .vxe-input.is--controls.type--time .vxe-input--suffix {
128
+ right: 1.6em;
129
+ }
130
+ .vxe-input.is--suffix.is--controls.type--search .vxe-input--inner, .vxe-input.is--suffix.is--controls.type--password .vxe-input--inner, .vxe-input.is--suffix.is--controls.type--number .vxe-input--inner, .vxe-input.is--suffix.is--controls.type--integer .vxe-input--inner, .vxe-input.is--suffix.is--controls.type--float .vxe-input--inner, .vxe-input.is--suffix.is--controls.type--date .vxe-input--inner, .vxe-input.is--suffix.is--controls.type--datetime .vxe-input--inner, .vxe-input.is--suffix.is--controls.type--week .vxe-input--inner, .vxe-input.is--suffix.is--controls.type--month .vxe-input--inner, .vxe-input.is--suffix.is--controls.type--quarter .vxe-input--inner, .vxe-input.is--suffix.is--controls.type--year .vxe-input--inner, .vxe-input.is--suffix.is--controls.type--time .vxe-input--inner {
131
+ padding-right: 3.2em;
132
+ }
133
+ .vxe-input.is--suffix:hover .vxe-input--suffix.is--clear .vxe-input--suffix-icon {
134
+ display: none;
135
+ }
136
+ .vxe-input.is--suffix:hover .vxe-input--suffix.is--clear .vxe-input--clear-icon {
137
+ display: inline;
138
+ }
139
+ .vxe-input:not(.is--disabled) .vxe-input--suffix:hover .vxe-input--clear-icon {
140
+ color: var(--vxe-font-color);
141
+ }
142
+ .vxe-input:not(.is--disabled) .vxe-input--suffix:active .vxe-input--clear-icon {
143
+ color: var(--vxe-primary-color);
144
+ }
145
+ .vxe-input:not(.is--disabled) .vxe-input--extra-suffix:hover .vxe-input--search-suffix,
146
+ .vxe-input:not(.is--disabled) .vxe-input--extra-suffix:hover .vxe-input--password-suffix {
147
+ color: var(--vxe-font-color);
148
+ }
149
+ .vxe-input:not(.is--disabled) .vxe-input--extra-suffix:active .vxe-input--search-suffix,
150
+ .vxe-input:not(.is--disabled) .vxe-input--extra-suffix:active .vxe-input--password-suffix {
151
+ color: var(--vxe-primary-color);
152
+ }
153
+ .vxe-input:not(.is--disabled) .vxe-input--number-prev:hover,
154
+ .vxe-input:not(.is--disabled) .vxe-input--number-next:hover {
155
+ color: var(--vxe-font-color);
156
+ }
157
+ .vxe-input:not(.is--disabled) .vxe-input--number-prev:active,
158
+ .vxe-input:not(.is--disabled) .vxe-input--number-next:active {
159
+ color: var(--vxe-primary-color);
160
+ }
161
+ .vxe-input:not(.is--disabled) .vxe-input--number-prev.is--disabled,
162
+ .vxe-input:not(.is--disabled) .vxe-input--number-next.is--disabled {
163
+ cursor: no-drop;
164
+ color: var(--vxe-ui-input-number-disabled-color);
165
+ }
166
+
167
+ .vxe-input .vxe-input--password-suffix,
168
+ .vxe-input .vxe-input--number-suffix,
169
+ .vxe-input .vxe-input--date-picker-suffix,
170
+ .vxe-input .vxe-input--search-suffix {
171
+ position: relative;
172
+ width: 100%;
173
+ height: 100%;
174
+ }
175
+ .vxe-input .vxe-input--date-picker-icon,
176
+ .vxe-input .vxe-input--search-icon,
177
+ .vxe-input .vxe-input--password-icon {
178
+ position: absolute;
179
+ left: 50%;
180
+ top: 50%;
181
+ transform: translate(-50%, -50%);
182
+ }
183
+ .vxe-input .vxe-input--date-picker-icon[class*=vxe-icon-],
184
+ .vxe-input .vxe-input--search-icon[class*=vxe-icon-],
185
+ .vxe-input .vxe-input--password-icon[class*=vxe-icon-] {
186
+ font-size: 1.2em;
187
+ }
188
+ .vxe-input .vxe-input--date-picker-suffix {
189
+ display: flex;
190
+ align-items: center;
191
+ justify-content: center;
192
+ }
193
+ .vxe-input .vxe-input--date-picker-suffix .vxe-input--panel-icon {
194
+ transition: transform 0.2s ease-in-out;
195
+ }
196
+ .vxe-input .vxe-input--number-prev,
197
+ .vxe-input .vxe-input--number-next {
198
+ position: relative;
199
+ display: block;
200
+ height: 50%;
201
+ width: 100%;
202
+ text-align: center;
203
+ }
204
+ .vxe-input .vxe-input--number-prev-icon,
205
+ .vxe-input .vxe-input--number-next-icon {
206
+ line-height: 0.8em;
207
+ position: absolute;
208
+ left: 50%;
209
+ transform: translateX(-50%);
210
+ }
211
+ .vxe-input .vxe-input--number-prev-icon {
212
+ bottom: 0;
213
+ }
214
+ .vxe-input .vxe-input--number-next-icon {
215
+ top: 0;
216
+ }
217
+
218
+ .vxe-input--panel {
219
+ display: none;
220
+ position: absolute;
221
+ left: 0;
222
+ padding: 4px 0;
223
+ color: var(--vxe-font-color);
224
+ font-size: var(--vxe-font-size);
225
+ text-align: left;
226
+ }
227
+ .vxe-input--panel:not(.is--transfer) {
228
+ min-width: 100%;
229
+ }
230
+ .vxe-input--panel.is--transfer {
231
+ position: fixed;
232
+ }
233
+ .vxe-input--panel.animat--leave {
234
+ display: block;
235
+ opacity: 0;
236
+ transform: scaleY(0.5);
237
+ transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), opacity 0.3s cubic-bezier(0.23, 1, 0.32, 1);
238
+ transform-origin: center top;
239
+ backface-visibility: hidden;
240
+ transform-style: preserve-3d;
241
+ }
242
+ .vxe-input--panel.animat--leave[placement=top] {
243
+ transform-origin: center bottom;
244
+ }
245
+ .vxe-input--panel.animat--enter {
246
+ opacity: 1;
247
+ transform: scaleY(1);
248
+ }
249
+
250
+ .vxe-input--panel-wrapper,
251
+ .vxe-input--panel-layout-wrapper {
252
+ background-color: var(--vxe-ui-input-panel-background-color);
253
+ border: 1px solid var(---vxe-ui-base-popup-border-color);
254
+ box-shadow: 0 0 6px 2px rgba(0, 0, 0, 0.1);
255
+ border-radius: var(--vxe-border-radius);
256
+ }
257
+
258
+ .vxe-input--panel-wrapper {
259
+ overflow-x: hidden;
260
+ overflow-y: auto;
261
+ }
262
+
263
+ .vxe-input--panel-layout-wrapper {
264
+ display: flex;
265
+ flex-direction: row;
266
+ }
267
+
268
+ .vxe-input--panel.type--date, .vxe-input--panel.type--week, .vxe-input--panel.type--month, .vxe-input--panel.type--quarter, .vxe-input--panel.type--year {
269
+ -webkit-user-select: none;
270
+ -moz-user-select: none;
271
+ user-select: none;
272
+ }
273
+ .vxe-input--panel.type--datetime .vxe-input--panel-right-wrapper {
274
+ display: flex;
275
+ flex-direction: column;
276
+ border-left: 1px solid var(--vxe-ui-input-border-color);
277
+ }
278
+ .vxe-input--panel.type--date .vxe-input--date-picker-body th, .vxe-input--panel.type--datetime .vxe-input--date-picker-body th {
279
+ width: 14.28571%;
280
+ }
281
+ .vxe-input--panel.type--week .vxe-input--date-picker-body table th {
282
+ width: 12%;
283
+ }
284
+ .vxe-input--panel.type--week .vxe-input--date-picker-body table th:first-child {
285
+ width: 14%;
286
+ }
287
+ .vxe-input--panel.type--quarter .vxe-input--date-picker-body table th {
288
+ width: 50%;
289
+ }
290
+ .vxe-input--panel.type--month .vxe-input--date-picker-body td, .vxe-input--panel.type--year .vxe-input--date-picker-body td {
291
+ width: 25%;
292
+ }
293
+
294
+ .vxe-input--time-picker-title {
295
+ display: inline-block;
296
+ text-align: center;
297
+ border: 1px solid var(--vxe-ui-input-border-color);
298
+ border-radius: var(--vxe-border-radius);
299
+ }
300
+
301
+ .vxe-input--time-picker-confirm {
302
+ position: absolute;
303
+ right: 0;
304
+ top: 0;
305
+ }
306
+
307
+ .vxe-input--time-picker-confirm,
308
+ .vxe-input--date-picker-confirm {
309
+ outline: 0;
310
+ border: 1px solid var(--vxe-ui-input-border-color);
311
+ border-radius: var(--vxe-border-radius);
312
+ cursor: pointer;
313
+ color: var(--vxe-ui-input-date-time-confirm-button-color);
314
+ border-color: var(--vxe-primary-color);
315
+ background-color: var(--vxe-primary-color);
316
+ }
317
+ .vxe-input--time-picker-confirm:hover,
318
+ .vxe-input--date-picker-confirm:hover {
319
+ background-color: var(--vxe-primary-lighten-color);
320
+ border-color: var(--vxe-primary-lighten-color);
321
+ }
322
+ .vxe-input--time-picker-confirm:active,
323
+ .vxe-input--date-picker-confirm:active {
324
+ background-color: var(--vxe-primary-darken-color);
325
+ border-color: var(--vxe-primary-darken-color);
326
+ }
327
+
328
+ .vxe-input--time-picker-header {
329
+ display: flex;
330
+ position: relative;
331
+ flex-shrink: 0;
332
+ }
333
+
334
+ .vxe-input--date-picker-header {
335
+ display: flex;
336
+ flex-direction: row;
337
+ -webkit-user-select: none;
338
+ -moz-user-select: none;
339
+ user-select: none;
340
+ }
341
+ .vxe-input--date-picker-header .vxe-input--date-picker-type-wrapper {
342
+ flex-grow: 1;
343
+ }
344
+ .vxe-input--date-picker-header .vxe-input--date-picker-btn-wrapper {
345
+ flex-shrink: 0;
346
+ text-align: center;
347
+ }
348
+
349
+ .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-label,
350
+ .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-btn {
351
+ display: inline-block;
352
+ }
353
+
354
+ .vxe-input--date-picker-btn-wrapper {
355
+ display: flex;
356
+ flex-direction: row;
357
+ }
358
+
359
+ .vxe-input--date-picker-label,
360
+ .vxe-input--date-picker-btn {
361
+ display: flex;
362
+ align-items: center;
363
+ justify-content: center;
364
+ background-color: var(--vxe-button-default-background-color);
365
+ }
366
+
367
+ .vxe-input--date-picker-btn.is--disabled {
368
+ color: var(--vxe-font-disabled-color);
369
+ cursor: no-drop;
370
+ }
371
+ .vxe-input--date-picker-btn:not(.is--disabled) {
372
+ cursor: pointer;
373
+ }
374
+ .vxe-input--date-picker-btn:not(.is--disabled):hover {
375
+ background-color: #fff;
376
+ }
377
+ .vxe-input--date-picker-btn:not(.is--disabled):active {
378
+ background-color: #fff;
379
+ }
380
+
381
+ .vxe-input--date-picker-body {
382
+ border-radius: var(--vxe-border-radius);
383
+ border: 1px solid var(---vxe-ui-base-popup-border-color);
384
+ -webkit-user-select: none;
385
+ -moz-user-select: none;
386
+ user-select: none;
387
+ }
388
+ .vxe-input--date-picker-body table {
389
+ border: 0;
390
+ width: 100%;
391
+ border-spacing: 0;
392
+ border-collapse: separate;
393
+ text-align: center;
394
+ table-layout: fixed;
395
+ }
396
+ .vxe-input--date-picker-body th,
397
+ .vxe-input--date-picker-body td {
398
+ font-weight: normal;
399
+ }
400
+ .vxe-input--date-picker-body th {
401
+ box-shadow: inset 0 -1px 0 0 var(---vxe-ui-base-popup-border-color);
402
+ }
403
+ .vxe-input--date-picker-body td.is--prev, .vxe-input--date-picker-body td.is--next {
404
+ color: var(--vxe-font-disabled-color);
405
+ }
406
+ .vxe-input--date-picker-body td.is--prev .vxe-input--date-label,
407
+ .vxe-input--date-picker-body td.is--prev .vxe-input--date-festival, .vxe-input--date-picker-body td.is--next .vxe-input--date-label,
408
+ .vxe-input--date-picker-body td.is--next .vxe-input--date-festival {
409
+ color: var(--vxe-font-disabled-color);
410
+ }
411
+ .vxe-input--date-picker-body td.is--now {
412
+ box-shadow: inset 0 0 0 1px var(---vxe-ui-base-popup-border-color);
413
+ }
414
+ .vxe-input--date-picker-body td.is--now:not(.is--selected).is--current {
415
+ color: var(--vxe-primary-color);
416
+ }
417
+ .vxe-input--date-picker-body td.is--now:not(.is--selected).is--current .vxe-input--date-label,
418
+ .vxe-input--date-picker-body td.is--now:not(.is--selected).is--current .vxe-input--date-festival {
419
+ color: var(--vxe-primary-color);
420
+ }
421
+ .vxe-input--date-picker-body td.is--hover {
422
+ background-color: var(--vxe-ui-input-date-picker-hover-background-color);
423
+ }
424
+ .vxe-input--date-picker-body td.is--selected {
425
+ color: var(--vxe-ui-input-date-picker-selected-color);
426
+ background-color: var(--vxe-primary-color);
427
+ }
428
+ .vxe-input--date-picker-body td.is--selected.is--prev, .vxe-input--date-picker-body td.is--selected.is--next {
429
+ background-color: var(--vxe-primary-lighten-color);
430
+ }
431
+ .vxe-input--date-picker-body td.is--selected .vxe-input--date-label,
432
+ .vxe-input--date-picker-body td.is--selected .vxe-input--date-festival {
433
+ color: var(--vxe-ui-input-date-picker-festival-selected-color);
434
+ }
435
+ .vxe-input--date-picker-body td.is--selected .vxe-input--date-label.is-notice:before {
436
+ background-color: var(--vxe-ui-input-date-picker-notice-selected-background-color);
437
+ }
438
+ .vxe-input--date-picker-body td:not(.is--disabled) {
439
+ cursor: pointer;
440
+ }
441
+ .vxe-input--date-picker-body td.is--disabled {
442
+ cursor: no-drop;
443
+ color: var(--vxe-ui-input-disabled-color);
444
+ background-color: var(--vxe-ui-input-disabled-background-color);
445
+ }
446
+ .vxe-input--date-picker-body td.is--disabled .vxe-input--date-label,
447
+ .vxe-input--date-picker-body td.is--disabled .vxe-input--date-festival {
448
+ color: var(--vxe-ui-input-disabled-color);
449
+ }
450
+
451
+ .vxe-input--date-week-view th:first-child {
452
+ box-shadow: inset -1px -1px 0 0 var(---vxe-ui-base-popup-border-color);
453
+ }
454
+ .vxe-input--date-week-view td:first-child {
455
+ box-shadow: inset -1px 0 0 0 var(---vxe-ui-base-popup-border-color);
456
+ }
457
+
458
+ .vxe-input--date-label,
459
+ .vxe-input--date-festival {
460
+ display: block;
461
+ overflow: hidden;
462
+ }
463
+
464
+ .vxe-input--date-label {
465
+ position: relative;
466
+ }
467
+ .vxe-input--date-label.is-notice:before {
468
+ content: "";
469
+ position: absolute;
470
+ width: 4px;
471
+ height: 4px;
472
+ left: 0.8em;
473
+ top: 0.1em;
474
+ transform: translateX(-50%);
475
+ border-radius: 100%;
476
+ background-color: var(--vxe-ui-input-date-notice-background-color);
477
+ }
478
+
479
+ .vxe-input--date-label--extra {
480
+ position: absolute;
481
+ right: 0.1em;
482
+ top: -0.2em;
483
+ font-size: 12px;
484
+ line-height: 12px;
485
+ transform: scale(0.7);
486
+ color: var(--vxe-ui-input-date-extra-color);
487
+ }
488
+ .vxe-input--date-label--extra.is-important {
489
+ color: var(--vxe-ui-input-date-extra-important-color);
490
+ }
491
+
492
+ .vxe-input--date-festival {
493
+ color: var(--vxe-ui-input-date-festival-color);
494
+ height: 14px;
495
+ line-height: 1;
496
+ overflow: hidden;
497
+ }
498
+ .vxe-input--date-festival.is-important {
499
+ color: var(--vxe-ui-input-date-festival-important-color);
500
+ }
501
+
502
+ .vxe-input--date-festival--label {
503
+ display: block;
504
+ font-size: 12px;
505
+ transform: scale(0.8);
506
+ }
507
+
508
+ @keyframes festivalOverlap2 {
509
+ 0%, 45%, 100% {
510
+ transform: translateY(0);
511
+ }
512
+ 50%, 95% {
513
+ transform: translateY(-14px);
514
+ }
515
+ }
516
+ @keyframes festivalOverlap3 {
517
+ 0%, 20%, 100% {
518
+ transform: translateY(0);
519
+ }
520
+ 25%, 45%, 75%, 95% {
521
+ transform: translateY(-14px);
522
+ }
523
+ 50%, 70% {
524
+ transform: translateY(-28px);
525
+ }
526
+ }
527
+ .vxe-input--date-festival--overlap {
528
+ display: block;
529
+ font-size: 12px;
530
+ }
531
+ .vxe-input--date-festival--overlap.overlap--2 {
532
+ animation: festivalOverlap2 6s infinite ease-in-out;
533
+ }
534
+ .vxe-input--date-festival--overlap.overlap--3 {
535
+ animation: festivalOverlap3 9s infinite ease-in-out;
536
+ }
537
+ .vxe-input--date-festival--overlap > span {
538
+ height: 14px;
539
+ display: block;
540
+ transform: scale(0.8);
541
+ }
542
+
543
+ .vxe-input--time-picker-body {
544
+ position: relative;
545
+ display: flex;
546
+ flex-direction: row;
547
+ border: 1px solid var(---vxe-ui-base-popup-border-color);
548
+ flex-grow: 1;
549
+ border-radius: var(--vxe-border-radius);
550
+ -webkit-user-select: none;
551
+ -moz-user-select: none;
552
+ user-select: none;
553
+ }
554
+ .vxe-input--time-picker-body > ul {
555
+ height: 100%;
556
+ overflow: hidden;
557
+ margin: 0;
558
+ padding: 0;
559
+ }
560
+ .vxe-input--time-picker-body > ul:before, .vxe-input--time-picker-body > ul:after {
561
+ content: " ";
562
+ display: block;
563
+ }
564
+ .vxe-input--time-picker-body > ul:hover {
565
+ overflow-y: auto;
566
+ }
567
+ .vxe-input--time-picker-body > ul > li {
568
+ display: block;
569
+ }
570
+ .vxe-input--time-picker-body > ul > li:hover {
571
+ background-color: var(--vxe-ui-input-date-picker-hover-background-color);
572
+ cursor: pointer;
573
+ }
574
+ .vxe-input--time-picker-body > ul > li.is--selected {
575
+ font-weight: 700;
576
+ color: var(--vxe-primary-color);
577
+ }
578
+ .vxe-input--time-picker-body .vxe-input--time-picker-minute-list {
579
+ border-left: 1px solid var(---vxe-ui-base-popup-border-color);
580
+ }
581
+ .vxe-input--time-picker-body .vxe-input--time-picker-second-list {
582
+ border-left: 1px solid var(---vxe-ui-base-popup-border-color);
583
+ }
584
+
585
+ .vxe-input {
586
+ font-size: var(--vxe-font-size);
587
+ height: var(--vxe-ui-input-height-default);
588
+ line-height: var(--vxe-ui-input-height-default);
589
+ }
590
+ .vxe-input .vxe-input--inner[type=date]::-webkit-inner-spin-button, .vxe-input .vxe-input--inner[type=month]::-webkit-inner-spin-button, .vxe-input .vxe-input--inner[type=week]::-webkit-inner-spin-button {
591
+ margin-top: 6px;
592
+ }
593
+ .vxe-input .vxe-input--inner[type=date]::-webkit-inner-spin-button, .vxe-input .vxe-input--inner[type=month]::-webkit-inner-spin-button, .vxe-input .vxe-input--inner[type=week]::-webkit-inner-spin-button, .vxe-input .vxe-input--inner[type=number]::-webkit-inner-spin-button {
594
+ height: 24px;
595
+ }
596
+ .vxe-input.size--medium {
597
+ font-size: var(--vxe-font-size-medium);
598
+ height: var(--vxe-ui-input-height-medium);
599
+ line-height: var(--vxe-ui-input-height-medium);
600
+ }
601
+ .vxe-input.size--medium .vxe-input--inner[type=date]::-webkit-inner-spin-button, .vxe-input.size--medium .vxe-input--inner[type=month]::-webkit-inner-spin-button, .vxe-input.size--medium .vxe-input--inner[type=week]::-webkit-inner-spin-button {
602
+ margin-top: 4px;
603
+ }
604
+ .vxe-input.size--small {
605
+ font-size: var(--vxe-font-size-small);
606
+ height: var(--vxe-ui-input-height-small);
607
+ line-height: var(--vxe-ui-input-height-small);
608
+ }
609
+ .vxe-input.size--small .vxe-input--inner[type=date]::-webkit-inner-spin-button, .vxe-input.size--small .vxe-input--inner[type=month]::-webkit-inner-spin-button, .vxe-input.size--small .vxe-input--inner[type=week]::-webkit-inner-spin-button {
610
+ margin-top: 2px;
611
+ }
612
+ .vxe-input.size--mini {
613
+ font-size: var(--vxe-font-size-mini);
614
+ height: var(--vxe-ui-input-height-mini);
615
+ line-height: var(--vxe-ui-input-height-mini);
616
+ }
617
+ .vxe-input.size--mini .vxe-input--inner[type=date]::-webkit-inner-spin-button, .vxe-input.size--mini .vxe-input--inner[type=month]::-webkit-inner-spin-button, .vxe-input.size--mini .vxe-input--inner[type=week]::-webkit-inner-spin-button {
618
+ margin-top: 0;
619
+ }
620
+
621
+ .vxe-input--panel {
622
+ font-size: var(--vxe-font-size);
623
+ }
624
+ .vxe-input--panel .vxe-input--panel-wrapper {
625
+ max-height: 380px;
626
+ }
627
+ .vxe-input--panel.type--date .vxe-input--panel-wrapper, .vxe-input--panel.type--time .vxe-input--panel-wrapper, .vxe-input--panel.type--week .vxe-input--panel-wrapper, .vxe-input--panel.type--month .vxe-input--panel-wrapper, .vxe-input--panel.type--quarter .vxe-input--panel-wrapper, .vxe-input--panel.type--year .vxe-input--panel-wrapper {
628
+ padding: 11px;
629
+ }
630
+ .vxe-input--panel.type--date .vxe-input--panel-wrapper, .vxe-input--panel.type--month .vxe-input--panel-wrapper, .vxe-input--panel.type--quarter .vxe-input--panel-wrapper, .vxe-input--panel.type--year .vxe-input--panel-wrapper {
631
+ width: 336px;
632
+ }
633
+ .vxe-input--panel.type--week .vxe-input--panel-wrapper {
634
+ width: 380px;
635
+ }
636
+ .vxe-input--panel.type--time .vxe-input--panel-wrapper {
637
+ width: 170px;
638
+ }
639
+ .vxe-input--panel.type--datetime .vxe-input--panel-left-wrapper {
640
+ width: 336px;
641
+ }
642
+ .vxe-input--panel.type--datetime .vxe-input--panel-left-wrapper,
643
+ .vxe-input--panel.type--datetime .vxe-input--panel-right-wrapper {
644
+ padding: 11px;
645
+ }
646
+ .vxe-input--panel .vxe-input--time-picker-title {
647
+ height: 30px;
648
+ line-height: 30px;
649
+ padding: 0 11px;
650
+ }
651
+ .vxe-input--panel .vxe-input--date-picker-label,
652
+ .vxe-input--panel .vxe-input--date-picker-btn {
653
+ height: 30px;
654
+ line-height: 30px;
655
+ }
656
+ .vxe-input--panel .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-btn {
657
+ margin-left: 8px;
658
+ }
659
+ .vxe-input--panel .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-prev-btn,
660
+ .vxe-input--panel .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-current-btn,
661
+ .vxe-input--panel .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-next-btn {
662
+ width: 30px;
663
+ border-radius: var(--vxe-border-radius);
664
+ border: 1px solid var(--vxe-ui-input-border-color);
665
+ }
666
+ .vxe-input--panel .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-label,
667
+ .vxe-input--panel .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-btn {
668
+ padding: 0 9px;
669
+ }
670
+ .vxe-input--panel .vxe-input--time-picker-header,
671
+ .vxe-input--panel .vxe-input--date-picker-header {
672
+ padding-bottom: 8px;
673
+ }
674
+ .vxe-input--panel .vxe-input--date-picker-body table,
675
+ .vxe-input--panel .vxe-input--time-picker-body {
676
+ height: calc(var(--vxe-ui-input-date-time-week-row-height-default) * 6 + var(--vxe-ui-input-date-title-height-default));
677
+ }
678
+ .vxe-input--panel .vxe-input--time-picker-body > ul {
679
+ width: 48px;
680
+ }
681
+ .vxe-input--panel .vxe-input--time-picker-body > ul:before, .vxe-input--panel .vxe-input--time-picker-body > ul:after {
682
+ height: 120px;
683
+ }
684
+ .vxe-input--panel .vxe-input--time-picker-body > ul > li {
685
+ height: 26px;
686
+ padding-left: 9px;
687
+ }
688
+ .vxe-input--panel .vxe-input--time-picker-body .vxe-input--time-picker-minute-list {
689
+ left: 48px;
690
+ }
691
+ .vxe-input--panel .vxe-input--time-picker-body .vxe-input--time-picker-second-list {
692
+ left: 96px;
693
+ }
694
+ .vxe-input--panel .vxe-input--date-day-view td,
695
+ .vxe-input--panel .vxe-input--date-week-view td {
696
+ height: var(--vxe-ui-input-date-time-week-row-height-default);
697
+ }
698
+ .vxe-input--panel .vxe-input--date-quarter-view td {
699
+ height: var(--vxe-ui-input-date-quarter-row-height-default);
700
+ }
701
+ .vxe-input--panel .vxe-input--date-month-view td,
702
+ .vxe-input--panel .vxe-input--date-year-view td {
703
+ height: var(--vxe-ui-input-date-month-year-row-height-default);
704
+ }
705
+ .vxe-input--panel .vxe-input--date-picker-body th {
706
+ height: var(--vxe-ui-input-date-title-height-default);
707
+ }
708
+ .vxe-input--panel .vxe-input--time-picker-confirm,
709
+ .vxe-input--panel .vxe-input--date-picker-confirm {
710
+ height: 30px;
711
+ padding: 0 9px;
712
+ }
713
+ .vxe-input--panel .vxe-input--date-label {
714
+ line-height: calc(var(--vxe-font-size) + 1px);
715
+ }
716
+ .vxe-input--panel.size--medium {
717
+ font-size: var(--vxe-font-size-medium);
718
+ }
719
+ .vxe-input--panel.size--medium .vxe-input--panel-wrapper {
720
+ max-height: 360px;
721
+ }
722
+ .vxe-input--panel.size--medium.type--date .vxe-input--panel-wrapper, .vxe-input--panel.size--medium.type--time .vxe-input--panel-wrapper, .vxe-input--panel.size--medium.type--week .vxe-input--panel-wrapper, .vxe-input--panel.size--medium.type--month .vxe-input--panel-wrapper, .vxe-input--panel.size--medium.type--quarter .vxe-input--panel-wrapper, .vxe-input--panel.size--medium.type--year .vxe-input--panel-wrapper {
723
+ padding: 10px;
724
+ }
725
+ .vxe-input--panel.size--medium.type--date .vxe-input--panel-wrapper, .vxe-input--panel.size--medium.type--month .vxe-input--panel-wrapper, .vxe-input--panel.size--medium.type--quarter .vxe-input--panel-wrapper, .vxe-input--panel.size--medium.type--year .vxe-input--panel-wrapper {
726
+ width: 336px;
727
+ }
728
+ .vxe-input--panel.size--medium.type--week .vxe-input--panel-wrapper {
729
+ width: 380px;
730
+ }
731
+ .vxe-input--panel.size--medium.type--time .vxe-input--panel-wrapper {
732
+ width: 168px;
733
+ }
734
+ .vxe-input--panel.size--medium.type--datetime .vxe-input--panel-left-wrapper {
735
+ width: 336px;
736
+ }
737
+ .vxe-input--panel.size--medium.type--datetime .vxe-input--panel-left-wrapper,
738
+ .vxe-input--panel.size--medium.type--datetime .vxe-input--panel-right-wrapper {
739
+ padding: 10px;
740
+ }
741
+ .vxe-input--panel.size--medium .vxe-input--time-picker-title {
742
+ height: 29px;
743
+ line-height: 29px;
744
+ padding: 0 10px;
745
+ }
746
+ .vxe-input--panel.size--medium .vxe-input--date-picker-label,
747
+ .vxe-input--panel.size--medium .vxe-input--date-picker-btn {
748
+ height: 29px;
749
+ line-height: 29px;
750
+ }
751
+ .vxe-input--panel.size--medium .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-btn {
752
+ margin-left: 7px;
753
+ }
754
+ .vxe-input--panel.size--medium .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-prev-btn,
755
+ .vxe-input--panel.size--medium .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-current-btn,
756
+ .vxe-input--panel.size--medium .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-next-btn {
757
+ width: 29px;
758
+ border-radius: var(--vxe-border-radius);
759
+ border: 1px solid var(--vxe-ui-input-border-color);
760
+ }
761
+ .vxe-input--panel.size--medium .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-label,
762
+ .vxe-input--panel.size--medium .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-btn {
763
+ padding: 0 8px;
764
+ }
765
+ .vxe-input--panel.size--medium .vxe-input--time-picker-header,
766
+ .vxe-input--panel.size--medium .vxe-input--date-picker-header {
767
+ padding-bottom: 7px;
768
+ }
769
+ .vxe-input--panel.size--medium .vxe-input--date-picker-body table,
770
+ .vxe-input--panel.size--medium .vxe-input--time-picker-body {
771
+ height: calc(var(--vxe-ui-input-date-time-week-row-height-medium) * 6 + var(--vxe-ui-input-date-title-height-medium));
772
+ }
773
+ .vxe-input--panel.size--medium .vxe-input--time-picker-body > ul {
774
+ width: 48px;
775
+ }
776
+ .vxe-input--panel.size--medium .vxe-input--time-picker-body > ul:before, .vxe-input--panel.size--medium .vxe-input--time-picker-body > ul:after {
777
+ height: 120px;
778
+ }
779
+ .vxe-input--panel.size--medium .vxe-input--time-picker-body > ul > li {
780
+ height: 26px;
781
+ padding-left: 8px;
782
+ }
783
+ .vxe-input--panel.size--medium .vxe-input--time-picker-body .vxe-input--time-picker-minute-list {
784
+ left: 48px;
785
+ }
786
+ .vxe-input--panel.size--medium .vxe-input--time-picker-body .vxe-input--time-picker-second-list {
787
+ left: 96px;
788
+ }
789
+ .vxe-input--panel.size--medium .vxe-input--date-day-view td,
790
+ .vxe-input--panel.size--medium .vxe-input--date-week-view td {
791
+ height: var(--vxe-ui-input-date-time-week-row-height-medium);
792
+ }
793
+ .vxe-input--panel.size--medium .vxe-input--date-quarter-view td {
794
+ height: var(--vxe-ui-input-date-quarter-row-height-medium);
795
+ }
796
+ .vxe-input--panel.size--medium .vxe-input--date-month-view td,
797
+ .vxe-input--panel.size--medium .vxe-input--date-year-view td {
798
+ height: var(--vxe-ui-input-date-month-year-row-height-medium);
799
+ }
800
+ .vxe-input--panel.size--medium .vxe-input--date-picker-body th {
801
+ height: var(--vxe-ui-input-date-title-height-medium);
802
+ }
803
+ .vxe-input--panel.size--medium .vxe-input--time-picker-confirm,
804
+ .vxe-input--panel.size--medium .vxe-input--date-picker-confirm {
805
+ height: 29px;
806
+ padding: 0 8px;
807
+ }
808
+ .vxe-input--panel.size--medium .vxe-input--date-label {
809
+ line-height: calc(var(--vxe-font-size-medium) + 1px);
810
+ }
811
+ .vxe-input--panel.size--small {
812
+ font-size: var(--vxe-font-size-small);
813
+ }
814
+ .vxe-input--panel.size--small .vxe-input--panel-wrapper {
815
+ max-height: 340px;
816
+ }
817
+ .vxe-input--panel.size--small.type--date .vxe-input--panel-wrapper, .vxe-input--panel.size--small.type--time .vxe-input--panel-wrapper, .vxe-input--panel.size--small.type--week .vxe-input--panel-wrapper, .vxe-input--panel.size--small.type--month .vxe-input--panel-wrapper, .vxe-input--panel.size--small.type--quarter .vxe-input--panel-wrapper, .vxe-input--panel.size--small.type--year .vxe-input--panel-wrapper {
818
+ padding: 9px;
819
+ }
820
+ .vxe-input--panel.size--small.type--date .vxe-input--panel-wrapper, .vxe-input--panel.size--small.type--month .vxe-input--panel-wrapper, .vxe-input--panel.size--small.type--quarter .vxe-input--panel-wrapper, .vxe-input--panel.size--small.type--year .vxe-input--panel-wrapper {
821
+ width: 312px;
822
+ }
823
+ .vxe-input--panel.size--small.type--week .vxe-input--panel-wrapper {
824
+ width: 354px;
825
+ }
826
+ .vxe-input--panel.size--small.type--time .vxe-input--panel-wrapper {
827
+ width: 154px;
828
+ }
829
+ .vxe-input--panel.size--small.type--datetime .vxe-input--panel-left-wrapper {
830
+ width: 312px;
831
+ }
832
+ .vxe-input--panel.size--small.type--datetime .vxe-input--panel-left-wrapper,
833
+ .vxe-input--panel.size--small.type--datetime .vxe-input--panel-right-wrapper {
834
+ padding: 9px;
835
+ }
836
+ .vxe-input--panel.size--small .vxe-input--time-picker-title {
837
+ height: 28px;
838
+ line-height: 28px;
839
+ padding: 0 9px;
840
+ }
841
+ .vxe-input--panel.size--small .vxe-input--date-picker-label,
842
+ .vxe-input--panel.size--small .vxe-input--date-picker-btn {
843
+ height: 28px;
844
+ line-height: 28px;
845
+ }
846
+ .vxe-input--panel.size--small .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-btn {
847
+ margin-left: 6px;
848
+ }
849
+ .vxe-input--panel.size--small .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-prev-btn,
850
+ .vxe-input--panel.size--small .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-current-btn,
851
+ .vxe-input--panel.size--small .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-next-btn {
852
+ width: 28px;
853
+ border-radius: var(--vxe-border-radius);
854
+ border: 1px solid var(--vxe-ui-input-border-color);
855
+ }
856
+ .vxe-input--panel.size--small .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-label,
857
+ .vxe-input--panel.size--small .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-btn {
858
+ padding: 0 7px;
859
+ }
860
+ .vxe-input--panel.size--small .vxe-input--time-picker-header,
861
+ .vxe-input--panel.size--small .vxe-input--date-picker-header {
862
+ padding-bottom: 6px;
863
+ }
864
+ .vxe-input--panel.size--small .vxe-input--date-picker-body table,
865
+ .vxe-input--panel.size--small .vxe-input--time-picker-body {
866
+ height: calc(var(--vxe-ui-input-date-time-week-row-height-small) * 6 + var(--vxe-ui-input-date-title-height-small));
867
+ }
868
+ .vxe-input--panel.size--small .vxe-input--time-picker-body > ul {
869
+ width: 44px;
870
+ }
871
+ .vxe-input--panel.size--small .vxe-input--time-picker-body > ul:before, .vxe-input--panel.size--small .vxe-input--time-picker-body > ul:after {
872
+ height: 110px;
873
+ }
874
+ .vxe-input--panel.size--small .vxe-input--time-picker-body > ul > li {
875
+ height: 26px;
876
+ padding-left: 7px;
877
+ }
878
+ .vxe-input--panel.size--small .vxe-input--time-picker-body .vxe-input--time-picker-minute-list {
879
+ left: 44px;
880
+ }
881
+ .vxe-input--panel.size--small .vxe-input--time-picker-body .vxe-input--time-picker-second-list {
882
+ left: 88px;
883
+ }
884
+ .vxe-input--panel.size--small .vxe-input--date-day-view td,
885
+ .vxe-input--panel.size--small .vxe-input--date-week-view td {
886
+ height: var(--vxe-ui-input-date-time-week-row-height-small);
887
+ }
888
+ .vxe-input--panel.size--small .vxe-input--date-quarter-view td {
889
+ height: var(--vxe-ui-input-date-quarter-row-height-small);
890
+ }
891
+ .vxe-input--panel.size--small .vxe-input--date-month-view td,
892
+ .vxe-input--panel.size--small .vxe-input--date-year-view td {
893
+ height: var(--vxe-ui-input-date-month-year-row-height-small);
894
+ }
895
+ .vxe-input--panel.size--small .vxe-input--date-picker-body th {
896
+ height: var(--vxe-ui-input-date-title-height-small);
897
+ }
898
+ .vxe-input--panel.size--small .vxe-input--time-picker-confirm,
899
+ .vxe-input--panel.size--small .vxe-input--date-picker-confirm {
900
+ height: 28px;
901
+ padding: 0 7px;
902
+ }
903
+ .vxe-input--panel.size--small .vxe-input--date-label {
904
+ line-height: calc(var(--vxe-font-size-small) + 1px);
905
+ }
906
+ .vxe-input--panel.size--mini {
907
+ font-size: var(--vxe-font-size-mini);
908
+ }
909
+ .vxe-input--panel.size--mini .vxe-input--panel-wrapper {
910
+ max-height: 320px;
911
+ }
912
+ .vxe-input--panel.size--mini.type--date .vxe-input--panel-wrapper, .vxe-input--panel.size--mini.type--time .vxe-input--panel-wrapper, .vxe-input--panel.size--mini.type--week .vxe-input--panel-wrapper, .vxe-input--panel.size--mini.type--month .vxe-input--panel-wrapper, .vxe-input--panel.size--mini.type--quarter .vxe-input--panel-wrapper, .vxe-input--panel.size--mini.type--year .vxe-input--panel-wrapper {
913
+ padding: 8px;
914
+ }
915
+ .vxe-input--panel.size--mini.type--date .vxe-input--panel-wrapper, .vxe-input--panel.size--mini.type--month .vxe-input--panel-wrapper, .vxe-input--panel.size--mini.type--quarter .vxe-input--panel-wrapper, .vxe-input--panel.size--mini.type--year .vxe-input--panel-wrapper {
916
+ width: 288px;
917
+ }
918
+ .vxe-input--panel.size--mini.type--week .vxe-input--panel-wrapper {
919
+ width: 326px;
920
+ }
921
+ .vxe-input--panel.size--mini.type--time .vxe-input--panel-wrapper {
922
+ width: 146px;
923
+ }
924
+ .vxe-input--panel.size--mini.type--datetime .vxe-input--panel-left-wrapper {
925
+ width: 288px;
926
+ }
927
+ .vxe-input--panel.size--mini.type--datetime .vxe-input--panel-left-wrapper,
928
+ .vxe-input--panel.size--mini.type--datetime .vxe-input--panel-right-wrapper {
929
+ padding: 8px;
930
+ }
931
+ .vxe-input--panel.size--mini .vxe-input--time-picker-title {
932
+ height: 27px;
933
+ line-height: 27px;
934
+ padding: 0 8px;
935
+ }
936
+ .vxe-input--panel.size--mini .vxe-input--date-picker-label,
937
+ .vxe-input--panel.size--mini .vxe-input--date-picker-btn {
938
+ height: 27px;
939
+ line-height: 27px;
940
+ }
941
+ .vxe-input--panel.size--mini .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-btn {
942
+ margin-left: 5px;
943
+ }
944
+ .vxe-input--panel.size--mini .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-prev-btn,
945
+ .vxe-input--panel.size--mini .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-current-btn,
946
+ .vxe-input--panel.size--mini .vxe-input--date-picker-btn-wrapper .vxe-input--date-picker-next-btn {
947
+ width: 27px;
948
+ border-radius: var(--vxe-border-radius);
949
+ border: 1px solid var(--vxe-ui-input-border-color);
950
+ }
951
+ .vxe-input--panel.size--mini .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-label,
952
+ .vxe-input--panel.size--mini .vxe-input--date-picker-type-wrapper .vxe-input--date-picker-btn {
953
+ padding: 0 6px;
954
+ }
955
+ .vxe-input--panel.size--mini .vxe-input--time-picker-header,
956
+ .vxe-input--panel.size--mini .vxe-input--date-picker-header {
957
+ padding-bottom: 5px;
958
+ }
959
+ .vxe-input--panel.size--mini .vxe-input--date-picker-body table,
960
+ .vxe-input--panel.size--mini .vxe-input--time-picker-body {
961
+ height: calc(var(--vxe-ui-input-date-time-week-row-height-mini) * 6 + var(--vxe-ui-input-date-title-height-mini));
962
+ }
963
+ .vxe-input--panel.size--mini .vxe-input--time-picker-body > ul {
964
+ width: 42px;
965
+ }
966
+ .vxe-input--panel.size--mini .vxe-input--time-picker-body > ul:before, .vxe-input--panel.size--mini .vxe-input--time-picker-body > ul:after {
967
+ height: 100px;
968
+ }
969
+ .vxe-input--panel.size--mini .vxe-input--time-picker-body > ul > li {
970
+ height: 26px;
971
+ padding-left: 6px;
972
+ }
973
+ .vxe-input--panel.size--mini .vxe-input--time-picker-body .vxe-input--time-picker-minute-list {
974
+ left: 42px;
975
+ }
976
+ .vxe-input--panel.size--mini .vxe-input--time-picker-body .vxe-input--time-picker-second-list {
977
+ left: 84px;
978
+ }
979
+ .vxe-input--panel.size--mini .vxe-input--date-day-view td,
980
+ .vxe-input--panel.size--mini .vxe-input--date-week-view td {
981
+ height: var(--vxe-ui-input-date-time-week-row-height-mini);
982
+ }
983
+ .vxe-input--panel.size--mini .vxe-input--date-quarter-view td {
984
+ height: var(--vxe-ui-input-date-quarter-row-height-mini);
985
+ }
986
+ .vxe-input--panel.size--mini .vxe-input--date-month-view td,
987
+ .vxe-input--panel.size--mini .vxe-input--date-year-view td {
988
+ height: var(--vxe-ui-input-date-month-year-row-height-mini);
989
+ }
990
+ .vxe-input--panel.size--mini .vxe-input--date-picker-body th {
991
+ height: var(--vxe-ui-input-date-title-height-mini);
992
+ }
993
+ .vxe-input--panel.size--mini .vxe-input--time-picker-confirm,
994
+ .vxe-input--panel.size--mini .vxe-input--date-picker-confirm {
995
+ height: 27px;
996
+ padding: 0 6px;
997
+ }
998
+ .vxe-input--panel.size--mini .vxe-input--date-label {
999
+ line-height: calc(var(--vxe-font-size-mini) + 1px);
1000
+ }