@para-ui/core 2.1.32 → 2.1.35

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 (556) hide show
  1. package/.eslintignore +12 -0
  2. package/README.md +31 -0
  3. package/babel.config.js +7 -0
  4. package/docs/App.tsx +277 -0
  5. package/docs/Router.tsx +79 -0
  6. package/docs/assets/1.jpeg +0 -0
  7. package/docs/assets/P.svg +1 -0
  8. package/docs/assets/icon.ico +0 -0
  9. package/docs/assets/icon.png +0 -0
  10. package/docs/assets/logo.png +0 -0
  11. package/docs/config/interceptors.ts +73 -0
  12. package/docs/config/router.tsx +212 -0
  13. package/docs/context/global.tsx +65 -0
  14. package/docs/index.tsx +42 -0
  15. package/docs/locale/index.ts +64 -0
  16. package/docs/locale/lang/en_US.ts +16 -0
  17. package/docs/locale/lang/zh_CN.ts +16 -0
  18. package/docs/react-app-env.d.ts +18 -0
  19. package/docs/services/api.ts +6 -0
  20. package/docs/styles/index.scss +31 -0
  21. package/docs/view/autoBox/api.tsx +67 -0
  22. package/docs/view/autoBox/codeString.tsx +137 -0
  23. package/docs/view/autoBox/index.scss +15 -0
  24. package/docs/view/autoBox/index.tsx +97 -0
  25. package/docs/view/autoTips/api.tsx +49 -0
  26. package/docs/view/autoTips/codeString.tsx +34 -0
  27. package/{Tree/utils/closestPolyfill.d.ts → docs/view/autoTips/index.scss} +0 -0
  28. package/docs/view/autoTips/index.tsx +53 -0
  29. package/docs/view/breadcrumbs/api.tsx +72 -0
  30. package/docs/view/breadcrumbs/codeString.tsx +160 -0
  31. package/docs/view/breadcrumbs/index.scss +14 -0
  32. package/docs/view/breadcrumbs/index.tsx +173 -0
  33. package/docs/view/button/api.tsx +131 -0
  34. package/docs/view/button/codeString.tsx +153 -0
  35. package/docs/view/button/index.scss +23 -0
  36. package/docs/view/button/index.tsx +165 -0
  37. package/docs/view/buttonGroup/api.tsx +55 -0
  38. package/docs/view/buttonGroup/codeString.tsx +108 -0
  39. package/docs/view/buttonGroup/index.scss +9 -0
  40. package/docs/view/buttonGroup/index.tsx +93 -0
  41. package/docs/view/carousel/api.tsx +165 -0
  42. package/docs/view/carousel/codeString.tsx +207 -0
  43. package/docs/view/carousel/index.scss +12 -0
  44. package/docs/view/carousel/index.tsx +174 -0
  45. package/docs/view/cascader/api.tsx +116 -0
  46. package/docs/view/cascader/codeString.tsx +584 -0
  47. package/docs/view/cascader/index.scss +0 -0
  48. package/docs/view/cascader/index.tsx +261 -0
  49. package/docs/view/checkbox/api.tsx +148 -0
  50. package/docs/view/checkbox/codeString.tsx +215 -0
  51. package/docs/view/checkbox/index.scss +0 -0
  52. package/docs/view/checkbox/index.tsx +233 -0
  53. package/docs/view/collapse/api.tsx +109 -0
  54. package/docs/view/collapse/codeString.tsx +186 -0
  55. package/docs/view/collapse/index.scss +0 -0
  56. package/docs/view/collapse/index.tsx +171 -0
  57. package/docs/view/colorPicker/api.tsx +30 -0
  58. package/docs/view/colorPicker/codeString.tsx +58 -0
  59. package/docs/view/colorPicker/index.scss +5 -0
  60. package/docs/view/colorPicker/index.tsx +39 -0
  61. package/docs/view/comboSelect/api.tsx +255 -0
  62. package/docs/view/comboSelect/codeString.tsx +629 -0
  63. package/docs/view/comboSelect/index.scss +5 -0
  64. package/docs/view/comboSelect/index.tsx +402 -0
  65. package/docs/view/container/api.tsx +61 -0
  66. package/docs/view/container/codeString.tsx +64 -0
  67. package/docs/view/container/index.scss +0 -0
  68. package/docs/view/container/index.tsx +84 -0
  69. package/docs/view/datePicker/api.tsx +264 -0
  70. package/docs/view/datePicker/codeString.tsx +185 -0
  71. package/docs/view/datePicker/index.scss +8 -0
  72. package/docs/view/datePicker/index.tsx +205 -0
  73. package/docs/view/drawer/api.tsx +123 -0
  74. package/docs/view/drawer/codeString.tsx +122 -0
  75. package/docs/view/drawer/index.scss +5 -0
  76. package/docs/view/drawer/index.tsx +200 -0
  77. package/docs/view/empty/api.tsx +57 -0
  78. package/docs/view/empty/codeString.tsx +38 -0
  79. package/docs/view/empty/index.scss +11 -0
  80. package/docs/view/empty/index.tsx +43 -0
  81. package/docs/view/form/api.tsx +266 -0
  82. package/docs/view/form/codeString.tsx +203 -0
  83. package/docs/view/form/index.scss +0 -0
  84. package/docs/view/form/index.tsx +225 -0
  85. package/docs/view/help/api.tsx +58 -0
  86. package/docs/view/help/codeString.tsx +39 -0
  87. package/docs/view/help/index.scss +5 -0
  88. package/docs/view/help/index.tsx +40 -0
  89. package/docs/view/helperText/api.tsx +31 -0
  90. package/docs/view/helperText/codeString.tsx +16 -0
  91. package/docs/view/helperText/index.scss +0 -0
  92. package/docs/view/helperText/index.tsx +33 -0
  93. package/docs/view/home/index.scss +55 -0
  94. package/docs/view/home/index.tsx +119 -0
  95. package/docs/view/icons/index.scss +48 -0
  96. package/docs/view/icons/index.tsx +87 -0
  97. package/docs/view/inputLang/api.tsx +99 -0
  98. package/docs/view/inputLang/codeString.tsx +66 -0
  99. package/docs/view/inputLang/index.scss +0 -0
  100. package/docs/view/inputLang/index.tsx +85 -0
  101. package/docs/view/inputNumber/api.tsx +169 -0
  102. package/docs/view/inputNumber/codeString.tsx +129 -0
  103. package/docs/view/inputNumber/index.scss +0 -0
  104. package/docs/view/inputNumber/index.tsx +141 -0
  105. package/docs/view/label/api.tsx +63 -0
  106. package/docs/view/label/codeString.tsx +63 -0
  107. package/docs/view/label/index.scss +0 -0
  108. package/docs/view/label/index.tsx +82 -0
  109. package/docs/view/loading/api.tsx +26 -0
  110. package/docs/view/loading/codeString.tsx +13 -0
  111. package/docs/view/loading/index.scss +0 -0
  112. package/docs/view/loading/index.tsx +38 -0
  113. package/docs/view/menu/api.tsx +227 -0
  114. package/docs/view/menu/codeString.tsx +302 -0
  115. package/docs/view/menu/index.scss +42 -0
  116. package/docs/view/menu/index.tsx +289 -0
  117. package/docs/view/message/api.tsx +35 -0
  118. package/docs/view/message/codeString.tsx +73 -0
  119. package/docs/view/message/index.scss +7 -0
  120. package/docs/view/message/index.tsx +64 -0
  121. package/docs/view/modal/api.tsx +141 -0
  122. package/docs/view/modal/codeString.tsx +222 -0
  123. package/docs/view/modal/index.scss +9 -0
  124. package/docs/view/modal/index.tsx +222 -0
  125. package/docs/view/multiBox/api.tsx +99 -0
  126. package/docs/view/multiBox/codeString.tsx +104 -0
  127. package/docs/view/multiBox/index.scss +0 -0
  128. package/docs/view/multiBox/index.tsx +123 -0
  129. package/docs/view/notification/api.tsx +148 -0
  130. package/docs/view/notification/codeString.tsx +110 -0
  131. package/docs/view/notification/index.scss +9 -0
  132. package/docs/view/notification/index.tsx +118 -0
  133. package/docs/view/operateBtn/api.tsx +127 -0
  134. package/docs/view/operateBtn/codeString.tsx +165 -0
  135. package/docs/view/operateBtn/index.scss +0 -0
  136. package/docs/view/operateBtn/index.tsx +160 -0
  137. package/docs/view/pageHeader/api.tsx +321 -0
  138. package/docs/view/pageHeader/codeString.tsx +252 -0
  139. package/docs/view/pageHeader/index.scss +6 -0
  140. package/docs/view/pageHeader/index.tsx +291 -0
  141. package/docs/view/pagination/api.tsx +71 -0
  142. package/docs/view/pagination/codeString.tsx +45 -0
  143. package/docs/view/pagination/index.scss +0 -0
  144. package/docs/view/pagination/index.tsx +54 -0
  145. package/docs/view/popConfirm/api.tsx +96 -0
  146. package/docs/view/popConfirm/codeString.tsx +130 -0
  147. package/docs/view/popConfirm/index.scss +33 -0
  148. package/docs/view/popConfirm/index.tsx +167 -0
  149. package/docs/view/popover/api.tsx +80 -0
  150. package/docs/view/popover/codeString.tsx +40 -0
  151. package/docs/view/popover/index.scss +4 -0
  152. package/docs/view/popover/index.tsx +53 -0
  153. package/docs/view/querying/api.tsx +46 -0
  154. package/docs/view/querying/codeString.tsx +28 -0
  155. package/docs/view/querying/index.scss +11 -0
  156. package/docs/view/querying/index.tsx +35 -0
  157. package/docs/view/radio/api.tsx +142 -0
  158. package/docs/view/radio/codeString.tsx +136 -0
  159. package/docs/view/radio/index.scss +0 -0
  160. package/docs/view/radio/index.tsx +154 -0
  161. package/docs/view/search/api.tsx +132 -0
  162. package/docs/view/search/codeString.tsx +164 -0
  163. package/docs/view/search/index.scss +0 -0
  164. package/docs/view/search/index.tsx +142 -0
  165. package/docs/view/select/api.tsx +195 -0
  166. package/docs/view/select/codeString.tsx +379 -0
  167. package/docs/view/select/index.scss +12 -0
  168. package/docs/view/select/index.tsx +370 -0
  169. package/docs/view/selectInput/api.tsx +161 -0
  170. package/docs/view/selectInput/codeString.tsx +171 -0
  171. package/docs/view/selectInput/index.scss +12 -0
  172. package/docs/view/selectInput/index.tsx +167 -0
  173. package/docs/view/singleBox/api.tsx +89 -0
  174. package/docs/view/singleBox/codeString.tsx +94 -0
  175. package/docs/view/singleBox/index.scss +0 -0
  176. package/docs/view/singleBox/index.tsx +111 -0
  177. package/docs/view/slider/api.tsx +135 -0
  178. package/docs/view/slider/codeString.tsx +99 -0
  179. package/docs/view/slider/index.scss +11 -0
  180. package/docs/view/slider/index.tsx +95 -0
  181. package/docs/view/stepper/api.tsx +49 -0
  182. package/docs/view/stepper/codeString.tsx +64 -0
  183. package/docs/view/stepper/index.scss +3 -0
  184. package/docs/view/stepper/index.tsx +57 -0
  185. package/docs/view/switch/api.tsx +70 -0
  186. package/docs/view/switch/codeString.tsx +48 -0
  187. package/docs/view/switch/index.scss +16 -0
  188. package/docs/view/switch/index.tsx +50 -0
  189. package/docs/view/table/api.tsx +330 -0
  190. package/docs/view/table/codeString.tsx +737 -0
  191. package/docs/view/table/index.scss +0 -0
  192. package/docs/view/table/index.tsx +549 -0
  193. package/docs/view/tabs/api.tsx +106 -0
  194. package/docs/view/tabs/codeString.tsx +243 -0
  195. package/docs/view/tabs/index.scss +5 -0
  196. package/docs/view/tabs/index.tsx +132 -0
  197. package/docs/view/tag/api.tsx +119 -0
  198. package/docs/view/tag/codeString.tsx +95 -0
  199. package/docs/view/tag/index.scss +5 -0
  200. package/docs/view/tag/index.tsx +91 -0
  201. package/docs/view/textField/api.tsx +229 -0
  202. package/docs/view/textField/codeString.tsx +251 -0
  203. package/docs/view/textField/index.scss +3 -0
  204. package/docs/view/textField/index.tsx +327 -0
  205. package/docs/view/timeLine/api.tsx +43 -0
  206. package/docs/view/timeLine/codeString.tsx +85 -0
  207. package/docs/view/timeLine/index.scss +5 -0
  208. package/docs/view/timeLine/index.tsx +73 -0
  209. package/docs/view/timePicker/api.tsx +178 -0
  210. package/docs/view/timePicker/codeString.tsx +66 -0
  211. package/docs/view/timePicker/index.scss +8 -0
  212. package/docs/view/timePicker/index.tsx +75 -0
  213. package/docs/view/toggleButton/api.tsx +100 -0
  214. package/docs/view/toggleButton/codeString.tsx +152 -0
  215. package/docs/view/toggleButton/index.scss +5 -0
  216. package/docs/view/toggleButton/index.tsx +108 -0
  217. package/docs/view/toolTip/api.tsx +96 -0
  218. package/docs/view/toolTip/codeString.tsx +42 -0
  219. package/docs/view/toolTip/index.scss +5 -0
  220. package/docs/view/toolTip/index.tsx +44 -0
  221. package/docs/view/transfer/api.tsx +33 -0
  222. package/docs/view/transfer/codeString.tsx +44 -0
  223. package/docs/view/transfer/index.scss +0 -0
  224. package/docs/view/transfer/index.tsx +59 -0
  225. package/docs/view/tree/api.tsx +413 -0
  226. package/docs/view/tree/codeString.tsx +437 -0
  227. package/docs/view/tree/index.scss +5 -0
  228. package/docs/view/tree/index.tsx +362 -0
  229. package/docs/view/upload/api.tsx +302 -0
  230. package/docs/view/upload/codeString.tsx +248 -0
  231. package/docs/view/upload/index.scss +7 -0
  232. package/docs/view/upload/index.tsx +207 -0
  233. package/package.json +1 -1
  234. package/publish.sh +5 -0
  235. package/run.js +43 -0
  236. package/scripts/extract-css.js +9 -0
  237. package/temp/main.js +1103 -0
  238. package/{style.css → temp/style.css} +5 -5
  239. package/tsconfig.json +40 -0
  240. package/webpack.cdn.config.js +81 -0
  241. package/webpack.config.js +249 -0
  242. package/webpack.extract.css.js +86 -0
  243. package/AutoBox/index.d.ts +0 -34
  244. package/AutoBox/index.js +0 -28
  245. package/AutoTips/index.d.ts +0 -25
  246. package/AutoTips/index.js +0 -15
  247. package/Breadcrumbs/index.d.ts +0 -39
  248. package/Breadcrumbs/index.js +0 -28
  249. package/Button/SplitButton.d.ts +0 -56
  250. package/Button/index.d.ts +0 -56
  251. package/Button/index.js +0 -53
  252. package/Button/lang/en_US.d.ts +0 -4
  253. package/Button/lang/index.d.ts +0 -9
  254. package/Button/lang/zh_CN.d.ts +0 -4
  255. package/ButtonGroup/index.d.ts +0 -33
  256. package/ButtonGroup/index.js +0 -53
  257. package/Carousel/index.d.ts +0 -30
  258. package/Carousel/index.js +0 -15
  259. package/Cascader/index.d.ts +0 -52
  260. package/Cascader/index.js +0 -41
  261. package/Cascader/lang/en_US.d.ts +0 -4
  262. package/Cascader/lang/index.d.ts +0 -9
  263. package/Cascader/lang/zh_CN.d.ts +0 -4
  264. package/Checkbox/index.d.ts +0 -40
  265. package/Checkbox/index.js +0 -27
  266. package/CheckboxGroup/index.d.ts +0 -46
  267. package/CheckboxGroup/index.js +0 -27
  268. package/Collapse/collapsePanel.d.ts +0 -30
  269. package/Collapse/index.d.ts +0 -57
  270. package/Collapse/index.js +0 -28
  271. package/Collapse/motion.d.ts +0 -5
  272. package/Collapse/util.d.ts +0 -11
  273. package/ColorPicker/index.d.ts +0 -4
  274. package/ColorPicker/index.js +0 -1
  275. package/ComBox/index.d.ts +0 -16
  276. package/ComBox/index.js +0 -16
  277. package/ComBox/interface.d.ts +0 -5
  278. package/ComboSelect/WithTabsCombo/index.d.ts +0 -11
  279. package/ComboSelect/WithTabsCombo/interface.d.ts +0 -141
  280. package/ComboSelect/index.d.ts +0 -11
  281. package/ComboSelect/index.js +0 -391
  282. package/ComboSelect/interface.d.ts +0 -139
  283. package/ComboSelect/lang/en_US.d.ts +0 -8
  284. package/ComboSelect/lang/index.d.ts +0 -17
  285. package/ComboSelect/lang/zh_CN.d.ts +0 -8
  286. package/ComboSelect/utils.d.ts +0 -13
  287. package/Container/index.d.ts +0 -77
  288. package/Container/index.js +0 -15
  289. package/DatePicker/PickerButton.d.ts +0 -3
  290. package/DatePicker/PickerTag.d.ts +0 -3
  291. package/DatePicker/generatePicker/generateRangePicker.d.ts +0 -4
  292. package/DatePicker/generatePicker/generateSinglePicker.d.ts +0 -11
  293. package/DatePicker/generatePicker/index.d.ts +0 -77
  294. package/DatePicker/index.d.ts +0 -18
  295. package/DatePicker/index.js +0 -144
  296. package/DatePicker/lang/en_US.d.ts +0 -3
  297. package/DatePicker/lang/index.d.ts +0 -7
  298. package/DatePicker/lang/zh_CN.d.ts +0 -3
  299. package/DatePicker/util.d.ts +0 -20
  300. package/Desktop/index.d.ts +0 -55
  301. package/Desktop/index.js +0 -14
  302. package/Drawer/index.d.ts +0 -11
  303. package/Drawer/index.js +0 -53
  304. package/Drawer/interface.d.ts +0 -78
  305. package/Drawer/lang/en_US.d.ts +0 -5
  306. package/Drawer/lang/index.d.ts +0 -11
  307. package/Drawer/lang/zh_CN.d.ts +0 -5
  308. package/Empty/images/index.d.ts +0 -2
  309. package/Empty/index.d.ts +0 -29
  310. package/Empty/index.js +0 -14
  311. package/Empty/lang/en_US.d.ts +0 -6
  312. package/Empty/lang/index.d.ts +0 -13
  313. package/Empty/lang/zh_CN.d.ts +0 -6
  314. package/Form/index.d.ts +0 -154
  315. package/Form/index.js +0 -209
  316. package/FormItem/compoments/formCheckboxGroup/index.d.ts +0 -8
  317. package/FormItem/compoments/formFile/index.d.ts +0 -38
  318. package/FormItem/compoments/formRadioGroup/index.d.ts +0 -8
  319. package/FormItem/compoments/formSelect/index.d.ts +0 -18
  320. package/FormItem/errorTips.d.ts +0 -10
  321. package/FormItem/index.d.ts +0 -130
  322. package/FormItem/index.js +0 -209
  323. package/FormItem/itemType.d.ts +0 -42
  324. package/FormItem/validateFunction.d.ts +0 -15
  325. package/FunctionModal/dialog.d.ts +0 -58
  326. package/FunctionModal/index.d.ts +0 -8
  327. package/FunctionModal/index.js +0 -118
  328. package/FunctionModal/modalContext.d.ts +0 -14
  329. package/GlobalContext/componentsProps.d.ts +0 -15
  330. package/GlobalContext/confirmLocale.d.ts +0 -7
  331. package/GlobalContext/index.d.ts +0 -28
  332. package/GlobalContext/index.js +0 -16
  333. package/GlobalContext/intl.d.ts +0 -34
  334. package/GlobalContext/useFormatMessage.d.ts +0 -3
  335. package/Help/index.d.ts +0 -20
  336. package/Help/index.js +0 -28
  337. package/HelperText/index.d.ts +0 -19
  338. package/HelperText/index.js +0 -15
  339. package/InputLang/index.d.ts +0 -49
  340. package/InputLang/index.js +0 -118
  341. package/InputNumber/index.d.ts +0 -74
  342. package/InputNumber/index.js +0 -79
  343. package/Label/index.d.ts +0 -35
  344. package/Label/index.js +0 -27
  345. package/Loading/index.d.ts +0 -17
  346. package/Loading/index.js +0 -28
  347. package/Menu/footerExpansion.d.ts +0 -9
  348. package/Menu/index.d.ts +0 -10
  349. package/Menu/index.js +0 -53
  350. package/Menu/interface.d.ts +0 -137
  351. package/Menu/logo.d.ts +0 -9
  352. package/Menu/verticalMenuList.d.ts +0 -14
  353. package/Message/index.d.ts +0 -59
  354. package/Message/index.js +0 -67
  355. package/Modal/Confirm/index.d.ts +0 -62
  356. package/Modal/index.d.ts +0 -61
  357. package/Modal/index.js +0 -118
  358. package/Modal/lang/en_US.d.ts +0 -5
  359. package/Modal/lang/index.d.ts +0 -11
  360. package/Modal/lang/zh_CN.d.ts +0 -5
  361. package/MultiBox/index.d.ts +0 -54
  362. package/MultiBox/index.js +0 -105
  363. package/Notification/index.d.ts +0 -52
  364. package/Notification/index.js +0 -67
  365. package/OperateBtn/index.d.ts +0 -59
  366. package/OperateBtn/index.js +0 -66
  367. package/OperateBtn/lang/en_US.d.ts +0 -4
  368. package/OperateBtn/lang/index.d.ts +0 -9
  369. package/OperateBtn/lang/zh_CN.d.ts +0 -4
  370. package/PageHeader/horizontalMeun.d.ts +0 -9
  371. package/PageHeader/horizontalMeunRight.d.ts +0 -9
  372. package/PageHeader/index.d.ts +0 -10
  373. package/PageHeader/index.js +0 -66
  374. package/PageHeader/interface.d.ts +0 -167
  375. package/Pagination/index.d.ts +0 -33
  376. package/Pagination/index.js +0 -183
  377. package/Pagination/lang/en_US.d.ts +0 -8
  378. package/Pagination/lang/index.d.ts +0 -17
  379. package/Pagination/lang/zh_CN.d.ts +0 -8
  380. package/ParauiProvider/index.d.ts +0 -12
  381. package/ParauiProvider/index.js +0 -15
  382. package/PopConfirm/index.d.ts +0 -50
  383. package/PopConfirm/index.js +0 -105
  384. package/PopConfirm/lang/en_US.d.ts +0 -5
  385. package/PopConfirm/lang/index.d.ts +0 -11
  386. package/PopConfirm/lang/zh_CN.d.ts +0 -5
  387. package/Popover/index.d.ts +0 -14
  388. package/Popover/index.js +0 -15
  389. package/Popper/index.d.ts +0 -13
  390. package/Popper/index.js +0 -16
  391. package/Querying/images/index.d.ts +0 -2
  392. package/Querying/index.d.ts +0 -25
  393. package/Querying/index.js +0 -14
  394. package/Querying/lang/en_US.d.ts +0 -4
  395. package/Querying/lang/index.d.ts +0 -9
  396. package/Querying/lang/zh_CN.d.ts +0 -4
  397. package/Radio/index.d.ts +0 -38
  398. package/Radio/index.js +0 -27
  399. package/RadioGroup/index.d.ts +0 -47
  400. package/RadioGroup/index.js +0 -27
  401. package/Search/index.d.ts +0 -56
  402. package/Search/index.js +0 -118
  403. package/Select/index.d.ts +0 -85
  404. package/Select/index.js +0 -105
  405. package/Select/lang/en_US.d.ts +0 -5
  406. package/Select/lang/index.d.ts +0 -11
  407. package/Select/lang/zh_CN.d.ts +0 -5
  408. package/Select/selectCom.d.ts +0 -11
  409. package/SelectInput/index.d.ts +0 -11
  410. package/SelectInput/index.js +0 -105
  411. package/SingleBox/index.d.ts +0 -42
  412. package/SingleBox/index.js +0 -105
  413. package/Slider/index.d.ts +0 -14
  414. package/Slider/index.js +0 -15
  415. package/Slider/interface.d.ts +0 -102
  416. package/Split/index.d.ts +0 -7
  417. package/Split/index.js +0 -15
  418. package/Stepper/icons.d.ts +0 -5
  419. package/Stepper/index.d.ts +0 -39
  420. package/Stepper/index.js +0 -145
  421. package/Switch/index.d.ts +0 -78
  422. package/Switch/index.js +0 -40
  423. package/Table/index.d.ts +0 -9
  424. package/Table/index.js +0 -261
  425. package/Table/interface.d.ts +0 -200
  426. package/Table/lang/en_US.d.ts +0 -6
  427. package/Table/lang/index.d.ts +0 -13
  428. package/Table/lang/zh_CN.d.ts +0 -6
  429. package/Table/tableBody.d.ts +0 -9
  430. package/Table/tableBodyElement/index.d.ts +0 -15
  431. package/Table/tableBodyInterface.d.ts +0 -67
  432. package/Table/tableCom.d.ts +0 -11
  433. package/Table/tableContainer/index.d.ts +0 -16
  434. package/Table/tableElement/index.d.ts +0 -17
  435. package/Table/tableHead.d.ts +0 -9
  436. package/Table/tableHeadElement/index.d.ts +0 -15
  437. package/Table/tableHeadInterface.d.ts +0 -30
  438. package/Table/tablePagination.d.ts +0 -9
  439. package/Table/tablePaginationInterFace.d.ts +0 -24
  440. package/Table/tdElement/index.d.ts +0 -15
  441. package/Table/thElement/index.d.ts +0 -15
  442. package/Table/trElement/index.d.ts +0 -15
  443. package/Table/util.d.ts +0 -16
  444. package/Tabs/index.d.ts +0 -48
  445. package/Tabs/index.js +0 -131
  446. package/Tag/TagGroup.d.ts +0 -66
  447. package/Tag/index.d.ts +0 -34
  448. package/Tag/index.js +0 -40
  449. package/TextField/index.d.ts +0 -93
  450. package/TextField/index.js +0 -79
  451. package/TextField/textFieldCom.d.ts +0 -11
  452. package/TimePicker/index.d.ts +0 -22
  453. package/TimePicker/index.js +0 -144
  454. package/TimePicker/locale/en_US.d.ts +0 -3
  455. package/TimePicker/locale/zh_CN.d.ts +0 -3
  456. package/TimePicker/style/index.d.ts +0 -1
  457. package/Timeline/index.d.ts +0 -22
  458. package/Timeline/index.js +0 -15
  459. package/ToggleButton/ToggleButtonGroup.d.ts +0 -45
  460. package/ToggleButton/index.d.ts +0 -49
  461. package/ToggleButton/index.js +0 -53
  462. package/Tooltip/index.d.ts +0 -11
  463. package/Tooltip/index.js +0 -15
  464. package/Transfer/index.d.ts +0 -17
  465. package/Transfer/index.js +0 -144
  466. package/Transfer/lang/en_US.d.ts +0 -6
  467. package/Transfer/lang/index.d.ts +0 -13
  468. package/Transfer/lang/zh_CN.d.ts +0 -6
  469. package/Tree/OperateBar/index.d.ts +0 -13
  470. package/Tree/Tree.d.ts +0 -4
  471. package/Tree/index.d.ts +0 -5
  472. package/Tree/index.js +0 -131
  473. package/Tree/interface.d.ts +0 -201
  474. package/Tree/lang/en_US.d.ts +0 -8
  475. package/Tree/lang/index.d.ts +0 -17
  476. package/Tree/lang/zh_CN.d.ts +0 -8
  477. package/Tree/utils/tools.d.ts +0 -26
  478. package/Tree/utils/treeUtil.d.ts +0 -15
  479. package/Upload/Dragger/index.d.ts +0 -10
  480. package/Upload/ErroTip/index.d.ts +0 -13
  481. package/Upload/ImageUpload/index.d.ts +0 -14
  482. package/Upload/ImgCrop/EasyCrop.d.ts +0 -17
  483. package/Upload/ImgCrop/constants.d.ts +0 -7
  484. package/Upload/ImgCrop/index.d.ts +0 -6
  485. package/Upload/ImgCrop/interface.d.ts +0 -24
  486. package/Upload/UploadList/index.d.ts +0 -5
  487. package/Upload/index.d.ts +0 -15
  488. package/Upload/index.js +0 -196
  489. package/Upload/interface.d.ts +0 -134
  490. package/Upload/lang/en_US.d.ts +0 -12
  491. package/Upload/lang/index.d.ts +0 -25
  492. package/Upload/lang/zh_CN.d.ts +0 -12
  493. package/cdn/AutoBox/index.js +0 -29
  494. package/cdn/AutoTips/index.js +0 -40
  495. package/cdn/Breadcrumbs/index.js +0 -53
  496. package/cdn/Button/index.js +0 -79
  497. package/cdn/ButtonGroup/index.js +0 -79
  498. package/cdn/Carousel/index.js +0 -6
  499. package/cdn/Cascader/index.js +0 -40
  500. package/cdn/Checkbox/index.js +0 -53
  501. package/cdn/CheckboxGroup/index.js +0 -53
  502. package/cdn/Collapse/index.js +0 -27
  503. package/cdn/ColorPicker/index.js +0 -1
  504. package/cdn/ComBox/index.js +0 -1
  505. package/cdn/ComboSelect/index.js +0 -438
  506. package/cdn/Container/index.js +0 -1
  507. package/cdn/DatePicker/index.js +0 -183
  508. package/cdn/Desktop/index.js +0 -24
  509. package/cdn/Drawer/index.js +0 -84
  510. package/cdn/Empty/index.js +0 -1
  511. package/cdn/Form/index.js +0 -248
  512. package/cdn/FormItem/index.js +0 -248
  513. package/cdn/FunctionModal/index.js +0 -144
  514. package/cdn/GlobalContext/index.js +0 -1
  515. package/cdn/Help/index.js +0 -53
  516. package/cdn/HelperText/index.js +0 -1
  517. package/cdn/InputLang/index.js +0 -144
  518. package/cdn/InputNumber/index.js +0 -118
  519. package/cdn/Label/index.js +0 -53
  520. package/cdn/Loading/index.js +0 -14
  521. package/cdn/Menu/index.js +0 -55
  522. package/cdn/Message/index.js +0 -53
  523. package/cdn/Modal/index.js +0 -144
  524. package/cdn/MultiBox/index.js +0 -131
  525. package/cdn/Notification/index.js +0 -66
  526. package/cdn/OperateBtn/index.js +0 -92
  527. package/cdn/PageHeader/index.js +0 -92
  528. package/cdn/Pagination/index.js +0 -214
  529. package/cdn/ParauiProvider/index.js +0 -9
  530. package/cdn/PopConfirm/index.js +0 -131
  531. package/cdn/Popover/index.js +0 -16
  532. package/cdn/Popper/index.js +0 -26
  533. package/cdn/Querying/index.js +0 -1
  534. package/cdn/Radio/index.js +0 -53
  535. package/cdn/RadioGroup/index.js +0 -53
  536. package/cdn/Search/index.js +0 -144
  537. package/cdn/Select/index.js +0 -131
  538. package/cdn/SelectInput/index.js +0 -131
  539. package/cdn/SingleBox/index.js +0 -131
  540. package/cdn/Slider/index.js +0 -14
  541. package/cdn/Split/index.js +0 -1
  542. package/cdn/Stepper/index.js +0 -154
  543. package/cdn/Switch/index.js +0 -71
  544. package/cdn/Table/index.js +0 -292
  545. package/cdn/Tabs/index.js +0 -165
  546. package/cdn/Tag/index.js +0 -27
  547. package/cdn/TextField/index.js +0 -105
  548. package/cdn/TimePicker/index.js +0 -183
  549. package/cdn/Timeline/index.js +0 -16
  550. package/cdn/ToggleButton/index.js +0 -79
  551. package/cdn/Tooltip/index.js +0 -40
  552. package/cdn/Transfer/index.js +0 -170
  553. package/cdn/Tree/index.js +0 -170
  554. package/cdn/Upload/index.js +0 -249
  555. package/index.d.ts +0 -124
  556. package/index.js +0 -690
@@ -1,93 +0,0 @@
1
- /**
2
- * @author linhd
3
- * @date 2021/8/5 15:05
4
- * @description 输入框
5
- */
6
- import React, { FunctionComponent, ReactNode } from 'react';
7
- import { LabelTooltipProps } from '../Label';
8
- import './index.scss';
9
- export interface TextFieldProps {
10
- /** 样式class */
11
- className?: string;
12
- /** style */
13
- style?: React.CSSProperties;
14
- /** 大小 */
15
- size?: 'small' | 'medium' | 'large';
16
- /** 标题在外,还是在内 */
17
- labelMode?: 'outside' | 'inside';
18
- /** 标题 */
19
- label?: ReactNode;
20
- /** 标题提示 */
21
- labelSign?: ReactNode;
22
- /** 是否必填 */
23
- required?: boolean;
24
- /** 帮组提示信息 */
25
- labelTooltip?: LabelTooltipProps;
26
- /** 提示语 */
27
- placeholder?: ReactNode;
28
- /** 是否禁用 */
29
- disabled?: boolean;
30
- /** 多行 */
31
- multiline?: boolean;
32
- /** 是否显示错误 */
33
- error?: boolean;
34
- /** 错误提示 */
35
- helperText?: ReactNode;
36
- /** 前缀 */
37
- addonBefore?: ReactNode;
38
- /** 后缀 */
39
- addonAfter?: ReactNode;
40
- /** 默认值 不受控 */
41
- defaultValue?: string | number;
42
- /** 默认值 受控 */
43
- value?: string | number;
44
- /** 是否得到焦点 */
45
- autoFocus?: boolean;
46
- /** 文本类型 */
47
- type?: 'text' | 'number' | 'password';
48
- /** 多行文本行 */
49
- rows?: number;
50
- /** 多行文本是否可拖动 */
51
- resize?: boolean;
52
- /** 右侧图标 */
53
- rightIcon?: ReactNode;
54
- /** 是否显示右边图标 */
55
- showRightIcon?: boolean;
56
- /** 是否显示清空按钮 */
57
- allowClear?: boolean;
58
- /** 长度限制 */
59
- limitLength?: number;
60
- /** 下拉框class */
61
- selectPopoverClass?: string;
62
- /** 下拉框显示字段 */
63
- showSelectName?: string;
64
- /** 返回输入建议的方法,仅当你的输入建议数据 resolve 时,通过调用 callback(data:[]) 来返回它 */
65
- fetchSuggestions?: (val: string, cb: (data: any[]) => void) => void;
66
- /** 渲染下拉子节点 */
67
- renderSelectItem?: (item: any) => ReactNode;
68
- /** 失去焦点 */
69
- onBlur?: (event: React.FocusEvent<HTMLInputElement>) => void;
70
- /** 得到焦点 */
71
- onFocus?: (event: React.FocusEvent<HTMLInputElement>) => void;
72
- /** 改变输入框 */
73
- onChange?: (event: React.ChangeEvent<HTMLInputElement>) => void;
74
- /** 点击图标 */
75
- onClickIcon?: (event: React.PointerEvent<HTMLSpanElement>) => void;
76
- /** 键盘按下 */
77
- onKeydown?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
78
- /** 键盘抬起 */
79
- onKeyUp?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
80
- /** 回车事件 */
81
- onEnter?: (event: React.KeyboardEvent<HTMLInputElement>) => void;
82
- /** 点击前缀 */
83
- onClickAddonBefore?: (event: React.MouseEvent<HTMLDivElement>) => void;
84
- /** 点击后缀 */
85
- onClickAddonAfter?: (event: React.MouseEvent<HTMLDivElement>) => void;
86
- /** 点击清空内容回调 */
87
- onClear?: () => void;
88
- /** 选着下拉框 */
89
- onSelect?: (item: any) => void;
90
- [name: string]: any;
91
- }
92
- export declare const TextField: FunctionComponent<TextFieldProps>;
93
- export default TextField;
@@ -1,79 +0,0 @@
1
- !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("react"),require("@para-ui/core/GlobalContext"),require("@material-ui/core"),require("@paraview/lib")):"function"==typeof define&&define.amd?define(["react","@para-ui/core/GlobalContext","@material-ui/core","@paraview/lib"],t):"object"==typeof exports?exports.ParaUI=t(require("react"),require("@para-ui/core/GlobalContext"),require("@material-ui/core"),require("@paraview/lib")):e.ParaUI=t(e.react,e["@para-ui/core/GlobalContext"],e["@material-ui/core"],e["@paraview/lib"])}(self,(function(e,t,n,r){return function(){var i={3730:function(e,t,n){var r;self,e.exports=(r=n(8156),function(){var e={466:function(e,t,n){(t=n(3645)(!1)).push([e.id,".paraui-icon{width:1em;height:1em;fill:currentColor;display:inline-block;user-select:none;flex-shrink:0}.paraui-icon-primary{color:#3666d6}.paraui-icon-secondary{color:#3666d6}.paraui-icon-thirdary{color:#3666d6}.paraui-icon-small{font-size:16px}.paraui-icon-medium{font-size:18px}.paraui-icon-large{font-size:20px}\n",""]),e.exports=t},3645:function(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=function(e,t){var n,r,i,o=e[1]||"",a=e[3];if(!a)return o;if(t&&"function"==typeof btoa){var l=(n=a,r=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),i="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(r),"/*# ".concat(i," */")),c=a.sources.map((function(e){return"/*# sourceURL=".concat(a.sourceRoot||"").concat(e," */")}));return[o].concat(c).concat([l]).join("\n")}return[o].join("\n")}(t,e);return t[2]?"@media ".concat(t[2]," {").concat(n,"}"):n})).join("")},t.i=function(e,n,r){"string"==typeof e&&(e=[[null,e,""]]);var i={};if(r)for(var o=0;o<this.length;o++){var a=this[o][0];null!=a&&(i[a]=!0)}for(var l=0;l<e.length;l++){var c=[].concat(e[l]);r&&i[c[0]]||(n&&(c[2]?c[2]="".concat(n," and ").concat(c[2]):c[2]=n),t.push(c))}},t}},7418:function(e){"use strict";
2
- /*
3
- object-assign
4
- (c) Sindre Sorhus
5
- @license MIT
6
- */var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;function i(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,o){for(var a,l,c=i(e),u=1;u<arguments.length;u++){for(var s in a=Object(arguments[u]))n.call(a,s)&&(c[s]=a[s]);if(t){l=t(a);for(var f=0;f<l.length;f++)r.call(a,l[f])&&(c[l[f]]=a[l[f]])}}return c}},5251:function(e,t,n){"use strict";
7
- /** @license React v17.0.2
8
- * react-jsx-runtime.production.min.js
9
- *
10
- * Copyright (c) Facebook, Inc. and its affiliates.
11
- *
12
- * This source code is licensed under the MIT license found in the
13
- * LICENSE file in the root directory of this source tree.
14
- */n(7418);var r=n(8156),i=60103;if(t.Fragment=60107,"function"==typeof Symbol&&Symbol.for){var o=Symbol.for;i=o("react.element"),t.Fragment=o("react.fragment")}var a=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,l=Object.prototype.hasOwnProperty,c={key:!0,ref:!0,__self:!0,__source:!0};function u(e,t,n){var r,o={},u=null,s=null;for(r in void 0!==n&&(u=""+n),void 0!==t.key&&(u=""+t.key),void 0!==t.ref&&(s=t.ref),t)l.call(t,r)&&!c.hasOwnProperty(r)&&(o[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps)void 0===o[r]&&(o[r]=t[r]);return{$$typeof:i,type:e,key:u,ref:s,props:o,_owner:a.current}}t.jsx=u,t.jsxs=u},5893:function(e,t,n){"use strict";e.exports=n(5251)},7856:function(e,t,n){var r=n(3379),i=n(466);"string"==typeof(i=i.__esModule?i.default:i)&&(i=[[e.id,i,""]]),r(i,{insert:"head",singleton:!1}),e.exports=i.locals||{}},3379:function(e,t,n){"use strict";var r,i=function(){return void 0===r&&(r=Boolean(window&&document&&document.all&&!window.atob)),r},o=function(){var e={};return function(t){if(void 0===e[t]){var n=document.querySelector(t);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}e[t]=n}return e[t]}}(),a=[];function l(e){for(var t=-1,n=0;n<a.length;n++)if(a[n].identifier===e){t=n;break}return t}function c(e,t){for(var n={},r=[],i=0;i<e.length;i++){var o=e[i],c=t.base?o[0]+t.base:o[0],u=n[c]||0,s="".concat(c," ").concat(u);n[c]=u+1;var f=l(s),d={css:o[1],media:o[2],sourceMap:o[3]};-1!==f?(a[f].references++,a[f].updater(d)):a.push({identifier:s,updater:x(d,t),references:1}),r.push(s)}return r}function u(e){var t=document.createElement("style"),r=e.attributes||{};if(void 0===r.nonce){var i=n.nc;i&&(r.nonce=i)}if(Object.keys(r).forEach((function(e){t.setAttribute(e,r[e])})),"function"==typeof e.insert)e.insert(t);else{var a=o(e.insert||"head");if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(t)}return t}var s,f=(s=[],function(e,t){return s[e]=t,s.filter(Boolean).join("\n")});function d(e,t,n,r){var i=n?"":r.media?"@media ".concat(r.media," {").concat(r.css,"}"):r.css;if(e.styleSheet)e.styleSheet.cssText=f(t,i);else{var o=document.createTextNode(i),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(o,a[t]):e.appendChild(o)}}function p(e,t,n){var r=n.css,i=n.media,o=n.sourceMap;if(i?e.setAttribute("media",i):e.removeAttribute("media"),o&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),e.styleSheet)e.styleSheet.cssText=r;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(r))}}var h=null,v=0;function x(e,t){var n,r,i;if(t.singleton){var o=v++;n=h||(h=u(t)),r=d.bind(null,n,o,!1),i=d.bind(null,n,o,!0)}else n=u(t),r=p.bind(null,n,t),i=function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(n)};return r(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap)return;r(e=t)}else i()}}e.exports=function(e,t){(t=t||{}).singleton||"boolean"==typeof t.singleton||(t.singleton=i());var n=c(e=e||[],t);return function(e){if(e=e||[],"[object Array]"===Object.prototype.toString.call(e)){for(var r=0;r<n.length;r++){var i=l(n[r]);a[i].references--}for(var o=c(e,t),u=0;u<n.length;u++){var s=l(n[u]);0===a[s].references&&(a[s].updater(),a.splice(s,1))}n=o}}}},4939:function(e,t,n){"use strict";var r=n(5893),i=(n(7856),function(){return i=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},i.apply(this,arguments)}),o=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(r=Object.getOwnPropertySymbols(e);i<r.length;i++)t.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(e,r[i])&&(n[r[i]]=e[r[i]])}return n};t.default=function(e){var t,n=e.path,a=e.className,l=e.color,c=void 0===l?"primary":l,u=e.size,s=void 0===u?"small":u,f=e.dataName,d=void 0===f?"":f,p=o(e,["path","className","color","size","dataName"]);return(0,r.jsx)("svg",i({className:(t="paraui-icon",t+=" svg-icon",a&&(t+=" "+a),c&&(t+=" paraui-icon-"+c),s&&(t+=" paraui-icon-"+s),t),viewBox:"0 0 1024 1024","data-name":d},p,{children:n}),void 0)}},8156:function(e){"use strict";e.exports=r}},t={};function n(r){var i=t[r];if(void 0!==i)return i.exports;var o=t[r]={id:r,exports:{}};return e[r](o,o.exports,n),o.exports}n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},n.d=function(e,t){for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var i={};return function(){"use strict";n.r(i),n.d(i,{CloseCircle:function(){return o}});var e=n(5893),t=n(4939),r=function(){return r=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},r.apply(this,arguments)},o=function(n){return(0,e.jsx)(t.default,r({dataName:"CloseCircle",path:(0,e.jsxs)(e.Fragment,{children:[(0,e.jsx)("path",{d:"M512 42.666667a469.333333 469.333333 0 1 0 469.333333 469.333333A469.845333 469.845333 0 0 0 512 42.666667z m0 853.333333a384 384 0 1 1 384-384 384.512 384.512 0 0 1-384 384z"},void 0),(0,e.jsx)("path",{d:"M674.432 366.634667a42.666667 42.666667 0 0 0-60.330667 0l-93.525333 93.525333-93.610667-93.525333a42.666667 42.666667 0 0 0-60.330666 60.330666l93.568 93.525334-93.568 93.568a42.666667 42.666667 0 1 0 60.330666 60.330666l93.610667-93.568 93.525333 93.568a42.666667 42.666667 0 0 0 60.330667-60.330666l-93.525333-93.568 93.525333-93.525334a42.666667 42.666667 0 0 0 0-60.330666z"},void 0)]},void 0)},n),void 0)};i.default=o}(),i}())},5670:function(e,t,n){var r;self,e.exports=(r=n(8156),function(){var e={466:function(e,t,n){(t=n(3645)(!1)).push([e.id,".paraui-icon{width:1em;height:1em;fill:currentColor;display:inline-block;user-select:none;flex-shrink:0}.paraui-icon-primary{color:#3666d6}.paraui-icon-secondary{color:#3666d6}.paraui-icon-thirdary{color:#3666d6}.paraui-icon-small{font-size:16px}.paraui-icon-medium{font-size:18px}.paraui-icon-large{font-size:20px}\n",""]),e.exports=t},3645:function(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=function(e,t){var n,r,i,o=e[1]||"",a=e[3];if(!a)return o;if(t&&"function"==typeof btoa){var l=(n=a,r=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),i="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(r),"/*# ".concat(i," */")),c=a.sources.map((function(e){return"/*# sourceURL=".concat(a.sourceRoot||"").concat(e," */")}));return[o].concat(c).concat([l]).join("\n")}return[o].join("\n")}(t,e);return t[2]?"@media ".concat(t[2]," {").concat(n,"}"):n})).join("")},t.i=function(e,n,r){"string"==typeof e&&(e=[[null,e,""]]);var i={};if(r)for(var o=0;o<this.length;o++){var a=this[o][0];null!=a&&(i[a]=!0)}for(var l=0;l<e.length;l++){var c=[].concat(e[l]);r&&i[c[0]]||(n&&(c[2]?c[2]="".concat(n," and ").concat(c[2]):c[2]=n),t.push(c))}},t}},7418:function(e){"use strict";
15
- /*
16
- object-assign
17
- (c) Sindre Sorhus
18
- @license MIT
19
- */var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;function i(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,o){for(var a,l,c=i(e),u=1;u<arguments.length;u++){for(var s in a=Object(arguments[u]))n.call(a,s)&&(c[s]=a[s]);if(t){l=t(a);for(var f=0;f<l.length;f++)r.call(a,l[f])&&(c[l[f]]=a[l[f]])}}return c}},5251:function(e,t,n){"use strict";
20
- /** @license React v17.0.2
21
- * react-jsx-runtime.production.min.js
22
- *
23
- * Copyright (c) Facebook, Inc. and its affiliates.
24
- *
25
- * This source code is licensed under the MIT license found in the
26
- * LICENSE file in the root directory of this source tree.
27
- */n(7418);var r=n(8156),i=60103;if(t.Fragment=60107,"function"==typeof Symbol&&Symbol.for){var o=Symbol.for;i=o("react.element"),t.Fragment=o("react.fragment")}var a=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,l=Object.prototype.hasOwnProperty,c={key:!0,ref:!0,__self:!0,__source:!0};function u(e,t,n){var r,o={},u=null,s=null;for(r in void 0!==n&&(u=""+n),void 0!==t.key&&(u=""+t.key),void 0!==t.ref&&(s=t.ref),t)l.call(t,r)&&!c.hasOwnProperty(r)&&(o[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps)void 0===o[r]&&(o[r]=t[r]);return{$$typeof:i,type:e,key:u,ref:s,props:o,_owner:a.current}}t.jsx=u,t.jsxs=u},5893:function(e,t,n){"use strict";e.exports=n(5251)},7856:function(e,t,n){var r=n(3379),i=n(466);"string"==typeof(i=i.__esModule?i.default:i)&&(i=[[e.id,i,""]]),r(i,{insert:"head",singleton:!1}),e.exports=i.locals||{}},3379:function(e,t,n){"use strict";var r,i=function(){return void 0===r&&(r=Boolean(window&&document&&document.all&&!window.atob)),r},o=function(){var e={};return function(t){if(void 0===e[t]){var n=document.querySelector(t);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}e[t]=n}return e[t]}}(),a=[];function l(e){for(var t=-1,n=0;n<a.length;n++)if(a[n].identifier===e){t=n;break}return t}function c(e,t){for(var n={},r=[],i=0;i<e.length;i++){var o=e[i],c=t.base?o[0]+t.base:o[0],u=n[c]||0,s="".concat(c," ").concat(u);n[c]=u+1;var f=l(s),d={css:o[1],media:o[2],sourceMap:o[3]};-1!==f?(a[f].references++,a[f].updater(d)):a.push({identifier:s,updater:x(d,t),references:1}),r.push(s)}return r}function u(e){var t=document.createElement("style"),r=e.attributes||{};if(void 0===r.nonce){var i=n.nc;i&&(r.nonce=i)}if(Object.keys(r).forEach((function(e){t.setAttribute(e,r[e])})),"function"==typeof e.insert)e.insert(t);else{var a=o(e.insert||"head");if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(t)}return t}var s,f=(s=[],function(e,t){return s[e]=t,s.filter(Boolean).join("\n")});function d(e,t,n,r){var i=n?"":r.media?"@media ".concat(r.media," {").concat(r.css,"}"):r.css;if(e.styleSheet)e.styleSheet.cssText=f(t,i);else{var o=document.createTextNode(i),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(o,a[t]):e.appendChild(o)}}function p(e,t,n){var r=n.css,i=n.media,o=n.sourceMap;if(i?e.setAttribute("media",i):e.removeAttribute("media"),o&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),e.styleSheet)e.styleSheet.cssText=r;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(r))}}var h=null,v=0;function x(e,t){var n,r,i;if(t.singleton){var o=v++;n=h||(h=u(t)),r=d.bind(null,n,o,!1),i=d.bind(null,n,o,!0)}else n=u(t),r=p.bind(null,n,t),i=function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(n)};return r(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap)return;r(e=t)}else i()}}e.exports=function(e,t){(t=t||{}).singleton||"boolean"==typeof t.singleton||(t.singleton=i());var n=c(e=e||[],t);return function(e){if(e=e||[],"[object Array]"===Object.prototype.toString.call(e)){for(var r=0;r<n.length;r++){var i=l(n[r]);a[i].references--}for(var o=c(e,t),u=0;u<n.length;u++){var s=l(n[u]);0===a[s].references&&(a[s].updater(),a.splice(s,1))}n=o}}}},4939:function(e,t,n){"use strict";var r=n(5893),i=(n(7856),function(){return i=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},i.apply(this,arguments)}),o=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(r=Object.getOwnPropertySymbols(e);i<r.length;i++)t.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(e,r[i])&&(n[r[i]]=e[r[i]])}return n};t.default=function(e){var t,n=e.path,a=e.className,l=e.color,c=void 0===l?"primary":l,u=e.size,s=void 0===u?"small":u,f=e.dataName,d=void 0===f?"":f,p=o(e,["path","className","color","size","dataName"]);return(0,r.jsx)("svg",i({className:(t="paraui-icon",t+=" svg-icon",a&&(t+=" "+a),c&&(t+=" paraui-icon-"+c),s&&(t+=" paraui-icon-"+s),t),viewBox:"0 0 1024 1024","data-name":d},p,{children:n}),void 0)}},8156:function(e){"use strict";e.exports=r}},t={};function n(r){var i=t[r];if(void 0!==i)return i.exports;var o=t[r]={id:r,exports:{}};return e[r](o,o.exports,n),o.exports}n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},n.d=function(e,t){for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var i={};return function(){"use strict";n.r(i),n.d(i,{Help:function(){return o}});var e=n(5893),t=n(4939),r=function(){return r=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},r.apply(this,arguments)},o=function(n){return(0,e.jsx)(t.default,r({dataName:"Help",path:(0,e.jsxs)(e.Fragment,{children:[(0,e.jsx)("path",{d:"M512 128a384 384 0 1 1-384 384 384 384 0 0 1 384-384m0-64a448 448 0 1 0 448 448 448 448 0 0 0-448-448z","p-id":"11281"},void 0),(0,e.jsx)("path",{d:"M533.76 654.08H465.92v-19.2a140.8 140.8 0 0 1 64-128A135.04 135.04 0 0 0 598.4 403.2 79.36 79.36 0 0 0 518.4 320Q430.72 320 408.32 429.44l-72.32-18.56A168.32 168.32 0 0 1 528.64 256a144 144 0 0 1 152.32 138.88A167.68 167.68 0 0 1 588.8 544a108.8 108.8 0 0 0-55.04 96zM458.24 704h82.56v88.96H458.24z","p-id":"11282"},void 0)]},void 0)},n),void 0)};i.default=o}(),i}())},1217:function(e,t,n){var r;self,e.exports=(r=n(8156),function(){var e={466:function(e,t,n){(t=n(3645)(!1)).push([e.id,".paraui-icon{width:1em;height:1em;fill:currentColor;display:inline-block;user-select:none;flex-shrink:0}.paraui-icon-primary{color:#3666d6}.paraui-icon-secondary{color:#3666d6}.paraui-icon-thirdary{color:#3666d6}.paraui-icon-small{font-size:16px}.paraui-icon-medium{font-size:18px}.paraui-icon-large{font-size:20px}\n",""]),e.exports=t},3645:function(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=function(e,t){var n,r,i,o=e[1]||"",a=e[3];if(!a)return o;if(t&&"function"==typeof btoa){var l=(n=a,r=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),i="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(r),"/*# ".concat(i," */")),c=a.sources.map((function(e){return"/*# sourceURL=".concat(a.sourceRoot||"").concat(e," */")}));return[o].concat(c).concat([l]).join("\n")}return[o].join("\n")}(t,e);return t[2]?"@media ".concat(t[2]," {").concat(n,"}"):n})).join("")},t.i=function(e,n,r){"string"==typeof e&&(e=[[null,e,""]]);var i={};if(r)for(var o=0;o<this.length;o++){var a=this[o][0];null!=a&&(i[a]=!0)}for(var l=0;l<e.length;l++){var c=[].concat(e[l]);r&&i[c[0]]||(n&&(c[2]?c[2]="".concat(n," and ").concat(c[2]):c[2]=n),t.push(c))}},t}},7418:function(e){"use strict";
28
- /*
29
- object-assign
30
- (c) Sindre Sorhus
31
- @license MIT
32
- */var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;function i(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,o){for(var a,l,c=i(e),u=1;u<arguments.length;u++){for(var s in a=Object(arguments[u]))n.call(a,s)&&(c[s]=a[s]);if(t){l=t(a);for(var f=0;f<l.length;f++)r.call(a,l[f])&&(c[l[f]]=a[l[f]])}}return c}},5251:function(e,t,n){"use strict";
33
- /** @license React v17.0.2
34
- * react-jsx-runtime.production.min.js
35
- *
36
- * Copyright (c) Facebook, Inc. and its affiliates.
37
- *
38
- * This source code is licensed under the MIT license found in the
39
- * LICENSE file in the root directory of this source tree.
40
- */n(7418);var r=n(8156),i=60103;if(t.Fragment=60107,"function"==typeof Symbol&&Symbol.for){var o=Symbol.for;i=o("react.element"),t.Fragment=o("react.fragment")}var a=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,l=Object.prototype.hasOwnProperty,c={key:!0,ref:!0,__self:!0,__source:!0};function u(e,t,n){var r,o={},u=null,s=null;for(r in void 0!==n&&(u=""+n),void 0!==t.key&&(u=""+t.key),void 0!==t.ref&&(s=t.ref),t)l.call(t,r)&&!c.hasOwnProperty(r)&&(o[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps)void 0===o[r]&&(o[r]=t[r]);return{$$typeof:i,type:e,key:u,ref:s,props:o,_owner:a.current}}t.jsx=u},5893:function(e,t,n){"use strict";e.exports=n(5251)},7856:function(e,t,n){var r=n(3379),i=n(466);"string"==typeof(i=i.__esModule?i.default:i)&&(i=[[e.id,i,""]]),r(i,{insert:"head",singleton:!1}),e.exports=i.locals||{}},3379:function(e,t,n){"use strict";var r,i=function(){return void 0===r&&(r=Boolean(window&&document&&document.all&&!window.atob)),r},o=function(){var e={};return function(t){if(void 0===e[t]){var n=document.querySelector(t);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}e[t]=n}return e[t]}}(),a=[];function l(e){for(var t=-1,n=0;n<a.length;n++)if(a[n].identifier===e){t=n;break}return t}function c(e,t){for(var n={},r=[],i=0;i<e.length;i++){var o=e[i],c=t.base?o[0]+t.base:o[0],u=n[c]||0,s="".concat(c," ").concat(u);n[c]=u+1;var f=l(s),d={css:o[1],media:o[2],sourceMap:o[3]};-1!==f?(a[f].references++,a[f].updater(d)):a.push({identifier:s,updater:x(d,t),references:1}),r.push(s)}return r}function u(e){var t=document.createElement("style"),r=e.attributes||{};if(void 0===r.nonce){var i=n.nc;i&&(r.nonce=i)}if(Object.keys(r).forEach((function(e){t.setAttribute(e,r[e])})),"function"==typeof e.insert)e.insert(t);else{var a=o(e.insert||"head");if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(t)}return t}var s,f=(s=[],function(e,t){return s[e]=t,s.filter(Boolean).join("\n")});function d(e,t,n,r){var i=n?"":r.media?"@media ".concat(r.media," {").concat(r.css,"}"):r.css;if(e.styleSheet)e.styleSheet.cssText=f(t,i);else{var o=document.createTextNode(i),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(o,a[t]):e.appendChild(o)}}function p(e,t,n){var r=n.css,i=n.media,o=n.sourceMap;if(i?e.setAttribute("media",i):e.removeAttribute("media"),o&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),e.styleSheet)e.styleSheet.cssText=r;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(r))}}var h=null,v=0;function x(e,t){var n,r,i;if(t.singleton){var o=v++;n=h||(h=u(t)),r=d.bind(null,n,o,!1),i=d.bind(null,n,o,!0)}else n=u(t),r=p.bind(null,n,t),i=function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(n)};return r(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap)return;r(e=t)}else i()}}e.exports=function(e,t){(t=t||{}).singleton||"boolean"==typeof t.singleton||(t.singleton=i());var n=c(e=e||[],t);return function(e){if(e=e||[],"[object Array]"===Object.prototype.toString.call(e)){for(var r=0;r<n.length;r++){var i=l(n[r]);a[i].references--}for(var o=c(e,t),u=0;u<n.length;u++){var s=l(n[u]);0===a[s].references&&(a[s].updater(),a.splice(s,1))}n=o}}}},4939:function(e,t,n){"use strict";var r=n(5893),i=(n(7856),function(){return i=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},i.apply(this,arguments)}),o=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(r=Object.getOwnPropertySymbols(e);i<r.length;i++)t.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(e,r[i])&&(n[r[i]]=e[r[i]])}return n};t.default=function(e){var t,n=e.path,a=e.className,l=e.color,c=void 0===l?"primary":l,u=e.size,s=void 0===u?"small":u,f=e.dataName,d=void 0===f?"":f,p=o(e,["path","className","color","size","dataName"]);return(0,r.jsx)("svg",i({className:(t="paraui-icon",t+=" svg-icon",a&&(t+=" "+a),c&&(t+=" paraui-icon-"+c),s&&(t+=" paraui-icon-"+s),t),viewBox:"0 0 1024 1024","data-name":d},p,{children:n}),void 0)}},8156:function(e){"use strict";e.exports=r}},t={};function n(r){var i=t[r];if(void 0!==i)return i.exports;var o=t[r]={id:r,exports:{}};return e[r](o,o.exports,n),o.exports}n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},n.d=function(e,t){for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var i={};return function(){"use strict";n.r(i),n.d(i,{LoadingF:function(){return o}});var e=n(5893),t=n(4939),r=function(){return r=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},r.apply(this,arguments)},o=function(n){return(0,e.jsx)(t.default,r({dataName:"LoadingF",path:(0,e.jsx)(e.Fragment,{children:(0,e.jsx)("path",{d:"M512 0a512 512 0 0 1 512 512h-64A448 448 0 0 0 512 64V0z","p-id":"11109"},void 0)},void 0)},n),void 0)};i.default=o}(),i}())},8926:function(e,t,n){var r;self,e.exports=(r=n(8156),function(){var e={466:function(e,t,n){(t=n(3645)(!1)).push([e.id,".paraui-icon{width:1em;height:1em;fill:currentColor;display:inline-block;user-select:none;flex-shrink:0}.paraui-icon-primary{color:#3666d6}.paraui-icon-secondary{color:#3666d6}.paraui-icon-thirdary{color:#3666d6}.paraui-icon-small{font-size:16px}.paraui-icon-medium{font-size:18px}.paraui-icon-large{font-size:20px}\n",""]),e.exports=t},3645:function(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=function(e,t){var n,r,i,o=e[1]||"",a=e[3];if(!a)return o;if(t&&"function"==typeof btoa){var l=(n=a,r=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),i="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(r),"/*# ".concat(i," */")),c=a.sources.map((function(e){return"/*# sourceURL=".concat(a.sourceRoot||"").concat(e," */")}));return[o].concat(c).concat([l]).join("\n")}return[o].join("\n")}(t,e);return t[2]?"@media ".concat(t[2]," {").concat(n,"}"):n})).join("")},t.i=function(e,n,r){"string"==typeof e&&(e=[[null,e,""]]);var i={};if(r)for(var o=0;o<this.length;o++){var a=this[o][0];null!=a&&(i[a]=!0)}for(var l=0;l<e.length;l++){var c=[].concat(e[l]);r&&i[c[0]]||(n&&(c[2]?c[2]="".concat(n," and ").concat(c[2]):c[2]=n),t.push(c))}},t}},7418:function(e){"use strict";
41
- /*
42
- object-assign
43
- (c) Sindre Sorhus
44
- @license MIT
45
- */var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;function i(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,o){for(var a,l,c=i(e),u=1;u<arguments.length;u++){for(var s in a=Object(arguments[u]))n.call(a,s)&&(c[s]=a[s]);if(t){l=t(a);for(var f=0;f<l.length;f++)r.call(a,l[f])&&(c[l[f]]=a[l[f]])}}return c}},5251:function(e,t,n){"use strict";
46
- /** @license React v17.0.2
47
- * react-jsx-runtime.production.min.js
48
- *
49
- * Copyright (c) Facebook, Inc. and its affiliates.
50
- *
51
- * This source code is licensed under the MIT license found in the
52
- * LICENSE file in the root directory of this source tree.
53
- */n(7418);var r=n(8156),i=60103;if(t.Fragment=60107,"function"==typeof Symbol&&Symbol.for){var o=Symbol.for;i=o("react.element"),t.Fragment=o("react.fragment")}var a=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,l=Object.prototype.hasOwnProperty,c={key:!0,ref:!0,__self:!0,__source:!0};function u(e,t,n){var r,o={},u=null,s=null;for(r in void 0!==n&&(u=""+n),void 0!==t.key&&(u=""+t.key),void 0!==t.ref&&(s=t.ref),t)l.call(t,r)&&!c.hasOwnProperty(r)&&(o[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps)void 0===o[r]&&(o[r]=t[r]);return{$$typeof:i,type:e,key:u,ref:s,props:o,_owner:a.current}}t.jsx=u},5893:function(e,t,n){"use strict";e.exports=n(5251)},7856:function(e,t,n){var r=n(3379),i=n(466);"string"==typeof(i=i.__esModule?i.default:i)&&(i=[[e.id,i,""]]),r(i,{insert:"head",singleton:!1}),e.exports=i.locals||{}},3379:function(e,t,n){"use strict";var r,i=function(){return void 0===r&&(r=Boolean(window&&document&&document.all&&!window.atob)),r},o=function(){var e={};return function(t){if(void 0===e[t]){var n=document.querySelector(t);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}e[t]=n}return e[t]}}(),a=[];function l(e){for(var t=-1,n=0;n<a.length;n++)if(a[n].identifier===e){t=n;break}return t}function c(e,t){for(var n={},r=[],i=0;i<e.length;i++){var o=e[i],c=t.base?o[0]+t.base:o[0],u=n[c]||0,s="".concat(c," ").concat(u);n[c]=u+1;var f=l(s),d={css:o[1],media:o[2],sourceMap:o[3]};-1!==f?(a[f].references++,a[f].updater(d)):a.push({identifier:s,updater:x(d,t),references:1}),r.push(s)}return r}function u(e){var t=document.createElement("style"),r=e.attributes||{};if(void 0===r.nonce){var i=n.nc;i&&(r.nonce=i)}if(Object.keys(r).forEach((function(e){t.setAttribute(e,r[e])})),"function"==typeof e.insert)e.insert(t);else{var a=o(e.insert||"head");if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(t)}return t}var s,f=(s=[],function(e,t){return s[e]=t,s.filter(Boolean).join("\n")});function d(e,t,n,r){var i=n?"":r.media?"@media ".concat(r.media," {").concat(r.css,"}"):r.css;if(e.styleSheet)e.styleSheet.cssText=f(t,i);else{var o=document.createTextNode(i),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(o,a[t]):e.appendChild(o)}}function p(e,t,n){var r=n.css,i=n.media,o=n.sourceMap;if(i?e.setAttribute("media",i):e.removeAttribute("media"),o&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),e.styleSheet)e.styleSheet.cssText=r;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(r))}}var h=null,v=0;function x(e,t){var n,r,i;if(t.singleton){var o=v++;n=h||(h=u(t)),r=d.bind(null,n,o,!1),i=d.bind(null,n,o,!0)}else n=u(t),r=p.bind(null,n,t),i=function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(n)};return r(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap)return;r(e=t)}else i()}}e.exports=function(e,t){(t=t||{}).singleton||"boolean"==typeof t.singleton||(t.singleton=i());var n=c(e=e||[],t);return function(e){if(e=e||[],"[object Array]"===Object.prototype.toString.call(e)){for(var r=0;r<n.length;r++){var i=l(n[r]);a[i].references--}for(var o=c(e,t),u=0;u<n.length;u++){var s=l(n[u]);0===a[s].references&&(a[s].updater(),a.splice(s,1))}n=o}}}},4939:function(e,t,n){"use strict";var r=n(5893),i=(n(7856),function(){return i=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},i.apply(this,arguments)}),o=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(r=Object.getOwnPropertySymbols(e);i<r.length;i++)t.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(e,r[i])&&(n[r[i]]=e[r[i]])}return n};t.default=function(e){var t,n=e.path,a=e.className,l=e.color,c=void 0===l?"primary":l,u=e.size,s=void 0===u?"small":u,f=e.dataName,d=void 0===f?"":f,p=o(e,["path","className","color","size","dataName"]);return(0,r.jsx)("svg",i({className:(t="paraui-icon",t+=" svg-icon",a&&(t+=" "+a),c&&(t+=" paraui-icon-"+c),s&&(t+=" paraui-icon-"+s),t),viewBox:"0 0 1024 1024","data-name":d},p,{children:n}),void 0)}},8156:function(e){"use strict";e.exports=r}},t={};function n(r){var i=t[r];if(void 0!==i)return i.exports;var o=t[r]={id:r,exports:{}};return e[r](o,o.exports,n),o.exports}n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},n.d=function(e,t){for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var i={};return function(){"use strict";n.r(i),n.d(i,{PreviewClose:function(){return o}});var e=n(5893),t=n(4939),r=function(){return r=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},r.apply(this,arguments)},o=function(n){return(0,e.jsx)(t.default,r({dataName:"PreviewClose",path:(0,e.jsx)(e.Fragment,{children:(0,e.jsx)("path",{d:"M810.453333 269.525333l93.312-93.312a42.666667 42.666667 0 1 0-60.330666-60.330666l-106.666667 106.666666a476.16 476.16 0 0 0-224.896-60.544c-250.197333 0-465.834667 231.338667-465.834667 344.917334 0 73.045333 64.469333 169.685333 164.224 242.176l-98.773333 98.730666a42.666667 42.666667 0 1 0 60.330667 60.373334l113.194666-113.237334a500.138667 500.138667 0 0 0 226.858667 56.917334c252.672 0 465.877333-211.882667 465.877333-344.96 0.085333-62.890667-66.048-161.578667-167.296-237.397334zM131.456 506.922667c0-54.272 161.877333-259.584 380.501333-259.584a380.074667 380.074667 0 0 1 162.133334 38.016l-69.162667 69.12a177.365333 177.365333 0 0 0-93.141333-26.752 179.2 179.2 0 0 0-179.2 179.2 177.322667 177.322667 0 0 0 26.752 92.970666l-89.045334 89.045334c-86.058667-59.221333-138.837333-137.770667-138.837333-182.016z m478.634667 0a98.133333 98.133333 0 0 1-98.133334 98.133333 96.853333 96.853333 0 0 1-31.36-5.632l123.733334-123.733333a96.597333 96.597333 0 0 1 5.589333 31.232z m-196.266667 0a97.109333 97.109333 0 0 1 130.773333-92.117334L419.84 539.562667a97.322667 97.322667 0 0 1-6.186667-32.64z m98.133333 259.626666a412.586667 412.586667 0 0 1-163.669333-34.773333l71.808-71.808a177.152 177.152 0 0 0 91.861333 26.154667 179.2 179.2 0 0 0 179.2-179.2 177.322667 177.322667 0 0 0-26.154666-91.861334l84.949333-84.949333c88.064 63.530667 142.549333 145.408 142.549333 176.810667 0 77.354667-160.682667 259.541333-380.714666 259.541333z"},void 0)},void 0)},n),void 0)};i.default=o}(),i}())},987:function(e,t,n){var r;self,e.exports=(r=n(8156),function(){var e={466:function(e,t,n){(t=n(3645)(!1)).push([e.id,".paraui-icon{width:1em;height:1em;fill:currentColor;display:inline-block;user-select:none;flex-shrink:0}.paraui-icon-primary{color:#3666d6}.paraui-icon-secondary{color:#3666d6}.paraui-icon-thirdary{color:#3666d6}.paraui-icon-small{font-size:16px}.paraui-icon-medium{font-size:18px}.paraui-icon-large{font-size:20px}\n",""]),e.exports=t},3645:function(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=function(e,t){var n,r,i,o=e[1]||"",a=e[3];if(!a)return o;if(t&&"function"==typeof btoa){var l=(n=a,r=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),i="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(r),"/*# ".concat(i," */")),c=a.sources.map((function(e){return"/*# sourceURL=".concat(a.sourceRoot||"").concat(e," */")}));return[o].concat(c).concat([l]).join("\n")}return[o].join("\n")}(t,e);return t[2]?"@media ".concat(t[2]," {").concat(n,"}"):n})).join("")},t.i=function(e,n,r){"string"==typeof e&&(e=[[null,e,""]]);var i={};if(r)for(var o=0;o<this.length;o++){var a=this[o][0];null!=a&&(i[a]=!0)}for(var l=0;l<e.length;l++){var c=[].concat(e[l]);r&&i[c[0]]||(n&&(c[2]?c[2]="".concat(n," and ").concat(c[2]):c[2]=n),t.push(c))}},t}},7418:function(e){"use strict";
54
- /*
55
- object-assign
56
- (c) Sindre Sorhus
57
- @license MIT
58
- */var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;function i(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,o){for(var a,l,c=i(e),u=1;u<arguments.length;u++){for(var s in a=Object(arguments[u]))n.call(a,s)&&(c[s]=a[s]);if(t){l=t(a);for(var f=0;f<l.length;f++)r.call(a,l[f])&&(c[l[f]]=a[l[f]])}}return c}},5251:function(e,t,n){"use strict";
59
- /** @license React v17.0.2
60
- * react-jsx-runtime.production.min.js
61
- *
62
- * Copyright (c) Facebook, Inc. and its affiliates.
63
- *
64
- * This source code is licensed under the MIT license found in the
65
- * LICENSE file in the root directory of this source tree.
66
- */n(7418);var r=n(8156),i=60103;if(t.Fragment=60107,"function"==typeof Symbol&&Symbol.for){var o=Symbol.for;i=o("react.element"),t.Fragment=o("react.fragment")}var a=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,l=Object.prototype.hasOwnProperty,c={key:!0,ref:!0,__self:!0,__source:!0};function u(e,t,n){var r,o={},u=null,s=null;for(r in void 0!==n&&(u=""+n),void 0!==t.key&&(u=""+t.key),void 0!==t.ref&&(s=t.ref),t)l.call(t,r)&&!c.hasOwnProperty(r)&&(o[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps)void 0===o[r]&&(o[r]=t[r]);return{$$typeof:i,type:e,key:u,ref:s,props:o,_owner:a.current}}t.jsx=u,t.jsxs=u},5893:function(e,t,n){"use strict";e.exports=n(5251)},7856:function(e,t,n){var r=n(3379),i=n(466);"string"==typeof(i=i.__esModule?i.default:i)&&(i=[[e.id,i,""]]),r(i,{insert:"head",singleton:!1}),e.exports=i.locals||{}},3379:function(e,t,n){"use strict";var r,i=function(){return void 0===r&&(r=Boolean(window&&document&&document.all&&!window.atob)),r},o=function(){var e={};return function(t){if(void 0===e[t]){var n=document.querySelector(t);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}e[t]=n}return e[t]}}(),a=[];function l(e){for(var t=-1,n=0;n<a.length;n++)if(a[n].identifier===e){t=n;break}return t}function c(e,t){for(var n={},r=[],i=0;i<e.length;i++){var o=e[i],c=t.base?o[0]+t.base:o[0],u=n[c]||0,s="".concat(c," ").concat(u);n[c]=u+1;var f=l(s),d={css:o[1],media:o[2],sourceMap:o[3]};-1!==f?(a[f].references++,a[f].updater(d)):a.push({identifier:s,updater:x(d,t),references:1}),r.push(s)}return r}function u(e){var t=document.createElement("style"),r=e.attributes||{};if(void 0===r.nonce){var i=n.nc;i&&(r.nonce=i)}if(Object.keys(r).forEach((function(e){t.setAttribute(e,r[e])})),"function"==typeof e.insert)e.insert(t);else{var a=o(e.insert||"head");if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(t)}return t}var s,f=(s=[],function(e,t){return s[e]=t,s.filter(Boolean).join("\n")});function d(e,t,n,r){var i=n?"":r.media?"@media ".concat(r.media," {").concat(r.css,"}"):r.css;if(e.styleSheet)e.styleSheet.cssText=f(t,i);else{var o=document.createTextNode(i),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(o,a[t]):e.appendChild(o)}}function p(e,t,n){var r=n.css,i=n.media,o=n.sourceMap;if(i?e.setAttribute("media",i):e.removeAttribute("media"),o&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),e.styleSheet)e.styleSheet.cssText=r;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(r))}}var h=null,v=0;function x(e,t){var n,r,i;if(t.singleton){var o=v++;n=h||(h=u(t)),r=d.bind(null,n,o,!1),i=d.bind(null,n,o,!0)}else n=u(t),r=p.bind(null,n,t),i=function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(n)};return r(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap)return;r(e=t)}else i()}}e.exports=function(e,t){(t=t||{}).singleton||"boolean"==typeof t.singleton||(t.singleton=i());var n=c(e=e||[],t);return function(e){if(e=e||[],"[object Array]"===Object.prototype.toString.call(e)){for(var r=0;r<n.length;r++){var i=l(n[r]);a[i].references--}for(var o=c(e,t),u=0;u<n.length;u++){var s=l(n[u]);0===a[s].references&&(a[s].updater(),a.splice(s,1))}n=o}}}},4939:function(e,t,n){"use strict";var r=n(5893),i=(n(7856),function(){return i=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},i.apply(this,arguments)}),o=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(r=Object.getOwnPropertySymbols(e);i<r.length;i++)t.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(e,r[i])&&(n[r[i]]=e[r[i]])}return n};t.default=function(e){var t,n=e.path,a=e.className,l=e.color,c=void 0===l?"primary":l,u=e.size,s=void 0===u?"small":u,f=e.dataName,d=void 0===f?"":f,p=o(e,["path","className","color","size","dataName"]);return(0,r.jsx)("svg",i({className:(t="paraui-icon",t+=" svg-icon",a&&(t+=" "+a),c&&(t+=" paraui-icon-"+c),s&&(t+=" paraui-icon-"+s),t),viewBox:"0 0 1024 1024","data-name":d},p,{children:n}),void 0)}},8156:function(e){"use strict";e.exports=r}},t={};function n(r){var i=t[r];if(void 0!==i)return i.exports;var o=t[r]={id:r,exports:{}};return e[r](o,o.exports,n),o.exports}n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,{a:t}),t},n.d=function(e,t){for(var r in t)n.o(t,r)&&!n.o(e,r)&&Object.defineProperty(e,r,{enumerable:!0,get:t[r]})},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var i={};return function(){"use strict";n.r(i),n.d(i,{PreviewOpen:function(){return o}});var e=n(5893),t=n(4939),r=function(){return r=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},r.apply(this,arguments)},o=function(n){return(0,e.jsx)(t.default,r({dataName:"PreviewOpen",path:(0,e.jsxs)(e.Fragment,{children:[(0,e.jsx)("path",{d:"M512 341.333333a170.666667 170.666667 0 1 0 170.666667 170.666667 170.666667 170.666667 0 0 0-170.666667-170.666667z m0 256a85.333333 85.333333 0 1 1 85.333333-85.333333 85.333333 85.333333 0 0 1-85.333333 85.333333z"},void 0),(0,e.jsx)("path",{d:"M512 167.04c-250.197333 0-465.834667 231.381333-465.834667 344.917333 0 133.12 213.333333 345.002667 465.834667 345.002667s465.877333-211.882667 465.877333-345.002667c0-113.408-215.637333-344.917333-465.877333-344.917333z m0 604.586667c-219.818667 0-380.501333-182.229333-380.501333-259.669334 0-54.229333 161.877333-259.584 380.501333-259.584s380.544 205.354667 380.544 259.584c0 77.44-160.554667 259.669333-380.544 259.669334z"},void 0)]},void 0)},n),void 0)};i.default=o}(),i}())},6010:function(e,t,n){"use strict";function r(e){var t,n,i="";if("string"==typeof e||"number"==typeof e)i+=e;else if("object"==typeof e)if(Array.isArray(e))for(t=0;t<e.length;t++)e[t]&&(n=r(e[t]))&&(i&&(i+=" "),i+=n);else for(t in e)e[t]&&(i&&(i+=" "),i+=t);return i}function i(){for(var e,t,n=0,i="";n<arguments.length;)(e=arguments[n++])&&(t=r(e))&&(i&&(i+=" "),i+=t);return i}n.d(t,{Z:function(){return i}})},2565:function(e,t,n){(t=n(3645)(!1)).push([e.id,".paraui-auto-tips{max-width:100%;display:block;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.paraui-auto-tips>.auto-tips-content{display:inline;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}\n",""]),e.exports=t},7381:function(e,t,n){(t=n(3645)(!1)).push([e.id,".paraui-help{display:inline-block;font-size:16px;color:#3666d6}.paraui-help .paraui-icon{font-size:inherit;color:inherit}\n",""]),e.exports=t},9916:function(e,t,n){(t=n(3645)(!1)).push([e.id,".paraui-helper-text{font-family:-apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;font-size:12px;font-weight:400;padding-left:12px;line-height:20px;color:rgba(46,55,67,0.7)}.paraui-helper-text.paraui-helper-text-error{color:#eb6054}\n",""]),e.exports=t},4928:function(e,t,n){(t=n(3645)(!1)).push([e.id,".paraui-label{font-family:-apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;font-size:14px;font-weight:400;color:rgba(46,55,67,0.7);margin-bottom:8px;display:inline-block;line-height:1.43;word-break:break-all}.paraui-label>.paraui-label-required{margin-left:2px;color:#eb6054}.paraui-label>.paraui-help{vertical-align:top;margin-left:4px}.paraui-label>.paraui-help svg{color:rgba(46,55,67,0.4);vertical-align:top;position:relative;top:2px}.paraui-label.paraui-label-line.paraui-label-tooltip{border-bottom:1px dashed rgba(46,55,67,0.4);padding-bottom:2px}\n",""]),e.exports=t},5714:function(e,t,n){(t=n(3645)(!1)).push([e.id,"@keyframes rotateLoading{0%{transformOrigin:50% 50%}100%{transform:rotate(360deg)}}.paraui-loading{position:absolute;left:0;top:0;width:100%;height:100%}.paraui-loading .paraui-loading-mask{position:absolute;width:100%;height:100%;background-color:white;z-index:1}.paraui-loading .paraui-loading-box{position:absolute;width:100%;height:100%;display:flex;justify-content:center;align-items:center;z-index:2}.paraui-loading .paraui-loading-box>svg{transition:all .3s ease-in-out;animation:rotateLoading 1s infinite linear;font-size:20px}\n",""]),e.exports=t},3637:function(e,t,n){(t=n(3645)(!1)).push([e.id,'.paraui-text-field{font-family:-apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;font-size:14px;font-weight:400;display:inline-block;width:100%}.paraui-text-field>.text-field-content{border:1px solid;border-radius:4px;border-color:rgba(171,176,185,0.4);display:flex;width:100%;position:relative;background-color:#fff}.paraui-text-field>.text-field-content:hover{border-color:#3666d6}.paraui-text-field>.text-field-content>.text-field-content-before{color:#2e3743;padding:0 12px;border-right:1px solid rgba(171,176,185,0.4);background-color:rgba(171,176,185,0.12);border-bottom-left-radius:4px;border-top-left-radius:4px;white-space:nowrap;display:flex;align-items:center}.paraui-text-field>.text-field-content>.text-field-content-before svg{font-size:20px}.paraui-text-field>.text-field-content>.text-field-content-within{position:relative;display:flex;flex-grow:1}.paraui-text-field>.text-field-content>.text-field-content-within>.clean-up-icon{display:flex;height:100%;align-items:center;margin-right:12px;cursor:pointer}.paraui-text-field>.text-field-content>.text-field-content-within>.clean-up-icon svg{color:rgba(46,55,67,0.7);font-size:16px}.paraui-text-field>.text-field-content>.text-field-content-within>.clean-up-icon:hover svg{color:rgba(54,102,214,0.8)}.paraui-text-field>.text-field-content>.text-field-content-within>.right-icon{display:flex;height:100%;align-items:center;margin-right:12px;cursor:pointer;color:rgba(46,55,67,0.7);position:relative;z-index:1}.paraui-text-field>.text-field-content>.text-field-content-within>.right-icon.right-icon-password:hover svg{color:rgba(54,102,214,0.8)}.paraui-text-field>.text-field-content>.text-field-content-within>.right-icon svg{color:rgba(46,55,67,0.7);font-size:20px}.paraui-text-field>.text-field-content>.text-field-content-within>.length-limit{display:flex;height:100%;align-items:center;margin-right:12px;color:rgba(46,55,67,0.7)}.paraui-text-field>.text-field-content>.text-field-content-within>.text-field-content-within-input{width:100%;line-height:0;position:relative}.paraui-text-field>.text-field-content>.text-field-content-within>.text-field-content-within-input input::-webkit-outer-spin-button,.paraui-text-field>.text-field-content>.text-field-content-within>.text-field-content-within-input input::-webkit-inner-spin-button{-webkit-appearance:none}.paraui-text-field>.text-field-content>.text-field-content-within>.text-field-content-within-input input[type="number"]{-moz-appearance:textfield}.paraui-text-field>.text-field-content>.text-field-content-within>.text-field-content-within-input>input{width:100%;height:100%}.paraui-text-field>.text-field-content>.text-field-content-within>.text-field-content-within-input>textarea{width:100% !important;padding:12px;resize:none}.paraui-text-field>.text-field-content>.text-field-content-within>.text-field-content-within-input>input,.paraui-text-field>.text-field-content>.text-field-content-within>.text-field-content-within-input>textarea{font-size:14px;color:#2e3743;border:0;border-radius:4px;background:transparent}.paraui-text-field>.text-field-content>.text-field-content-within>.text-field-content-within-input>input::-ms-clear,.paraui-text-field>.text-field-content>.text-field-content-within>.text-field-content-within-input>textarea::-ms-clear{display:none}.paraui-text-field>.text-field-content>.text-field-content-within>.text-field-content-within-input>input::-ms-reveal,.paraui-text-field>.text-field-content>.text-field-content-within>.text-field-content-within-input>textarea::-ms-reveal{display:none}.paraui-text-field>.text-field-content>.text-field-content-within>.text-field-content-within-input>input:disabled,.paraui-text-field>.text-field-content>.text-field-content-within>.text-field-content-within-input>textarea:disabled{background-color:transparent}.paraui-text-field>.text-field-content>.text-field-content-within>.text-field-content-within-input>.text-field-label-placeholder{width:100%;position:absolute;left:0;top:0;height:100%;padding:0 12px;color:rgba(46,55,67,0.4);cursor:text;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.paraui-text-field>.text-field-content>.text-field-content-within>.text-field-content-within-input>.text-field-label-placeholder>.text-field-required{margin-left:2px;color:#eb6054}.paraui-text-field>.text-field-content>.text-field-content-after{color:#2e3743;padding:0 12px;border-left:1px solid rgba(171,176,185,0.4);background-color:rgba(171,176,185,0.12);border-bottom-right-radius:4px;border-top-right-radius:4px;white-space:nowrap;display:flex;align-items:center}.paraui-text-field>.text-field-content>.text-field-content-after svg{font-size:20px}.paraui-text-field.text-field-multiline>.text-field-content .text-field-content-within>.clean-up-icon{display:none}.paraui-text-field.text-field-multiline>.text-field-content .text-field-content-within>.length-limit{position:absolute;height:22px;bottom:0;border-radius:4px;width:calc(100% - 12px);background:white;justify-content:flex-end;padding-bottom:8px;margin-right:0}.paraui-text-field.text-field-multiline>.text-field-content .text-field-content-within>.text-field-content-within-input>.text-field-label-placeholder{padding-top:12px;line-height:1;height:calc(100% - 24px)}.paraui-text-field.text-field-disabled>.text-field-content{background-color:rgba(171,176,185,0.12)}.paraui-text-field.text-field-disabled>.text-field-content:hover{border-color:rgba(171,176,185,0.4)}.paraui-text-field.text-field-disabled>.text-field-content>.text-field-content-before{background-color:transparent}.paraui-text-field.text-field-disabled>.text-field-content>.text-field-content-within>.text-field-content-within-input>.text-field-label-placeholder{cursor:not-allowed}.paraui-text-field.text-field-disabled>.text-field-content>.text-field-content-within>.text-field-content-within-input>input,.paraui-text-field.text-field-disabled>.text-field-content>.text-field-content-within>.text-field-content-within-input>textarea{cursor:not-allowed}.paraui-text-field.text-field-disabled>.text-field-content>.text-field-content-after{background-color:transparent}.paraui-text-field.text-field-disabled.text-field-multiline>.text-field-content .text-field-content-within>.length-limit{background-color:transparent}.paraui-text-field.text-field-error>.text-field-content{border-color:#eb6054 !important}.paraui-text-field.text-field-error>.text-field-content:hover{border-color:#eb6054}.paraui-text-field.text-field-limit>.text-field-content{border-color:#eb6054 !important}.paraui-text-field.text-field-limit>.text-field-content:hover{border-color:#eb6054 !important}.paraui-text-field.text-field-limit-length>.text-field-content>.text-field-content-within>.text-field-content-within-input>textarea{padding-bottom:25px}.paraui-text-field.text-field-focus>.text-field-content{border-color:#3666d6}.paraui-text-field.text-field-small>.text-field-content{height:28px}.paraui-text-field.text-field-small>.text-field-content>.text-field-content-before{line-height:26px}.paraui-text-field.text-field-small>.text-field-content>.text-field-content-within>.text-field-content-within-input{height:26px}.paraui-text-field.text-field-small>.text-field-content>.text-field-content-within>.text-field-content-within-input>input{padding:6px 12px}.paraui-text-field.text-field-small>.text-field-content>.text-field-content-within>.text-field-content-within-input>.text-field-label-placeholder{line-height:26px}.paraui-text-field.text-field-small>.text-field-content .text-field-content-after{line-height:26px}.paraui-text-field.text-field-medium>.text-field-content{height:32px}.paraui-text-field.text-field-medium>.text-field-content>.text-field-content-before{line-height:30px}.paraui-text-field.text-field-medium>.text-field-content>.text-field-content-within>.text-field-content-within-input{height:30px}.paraui-text-field.text-field-medium>.text-field-content>.text-field-content-within>.text-field-content-within-input>input{padding:8px 12px}.paraui-text-field.text-field-medium>.text-field-content>.text-field-content-within>.text-field-content-within-input>.text-field-label-placeholder{line-height:30px}.paraui-text-field.text-field-medium>.text-field-content .text-field-content-after{line-height:30px}.paraui-text-field.text-field-large>.text-field-content{height:36px}.paraui-text-field.text-field-large>.text-field-content>.text-field-content-before{line-height:34px}.paraui-text-field.text-field-large>.text-field-content>.text-field-content-within>.text-field-content-within-input{height:34px}.paraui-text-field.text-field-large>.text-field-content>.text-field-content-within>.text-field-content-within-input>input{padding:10px 12px}.paraui-text-field.text-field-large>.text-field-content>.text-field-content-within>.text-field-content-within-input>.text-field-label-placeholder{line-height:34px}.paraui-text-field.text-field-large>.text-field-content .text-field-content-after{line-height:34px}.paraui-text-field.text-field-resize>.text-field-content>.text-field-content-within>.text-field-content-within-input>textarea{resize:both}.paraui-text-field-select.paraui-tooltip>div{max-width:none;padding:0;background-color:white;box-shadow:0px 2px 8px 0px rgba(171,176,185,0.4);border-radius:4px;font-family:-apple-system,BlinkMacSystemFont,Helvetica Neue,PingFang SC,Microsoft YaHei,Source Han Sans SC,Noto Sans CJK SC,WenQuanYi Micro Hei,sans-serif;font-size:14px;font-weight:400}.paraui-text-field-select.paraui-tooltip>div>span{color:white}.paraui-text-field-select.paraui-tooltip>div .text-field-select-content{max-height:300px;overflow:auto}.paraui-text-field-select.paraui-tooltip>div .text-field-select-content>.text-field-select-content-item{display:flex;cursor:pointer;color:#2e3743;padding:0 12px}.paraui-text-field-select.paraui-tooltip>div .text-field-select-content>.text-field-select-content-item:hover{background-color:rgba(171,176,185,0.12);color:#3666d6}.paraui-text-field-select.paraui-tooltip>div .text-field-select-content>.text-field-select-content-item.text-field-select-content-item-keydown{background-color:rgba(171,176,185,0.12);color:#3666d6}.paraui-text-field-select.paraui-tooltip>div .text-field-select-content.text-field-select-content-loading{height:100px;position:relative;overflow:hidden}.paraui-text-field-select.paraui-tooltip.paraui-text-field-select-small>div .text-field-select-content>.text-field-select-content-item{line-height:28px}.paraui-text-field-select.paraui-tooltip.paraui-text-field-select-medium>div .text-field-select-content>.text-field-select-content-item{line-height:32px}.paraui-text-field-select.paraui-tooltip.paraui-text-field-select-large>div .text-field-select-content>.text-field-select-content-item{line-height:36px}.paraui-text-field-select.paraui-text-field-select-data.paraui-tooltip{padding:8px 0}\n',""]),e.exports=t},9929:function(e,t,n){(t=n(3645)(!1)).push([e.id,".paraui-tooltip>div{padding-left:12px;padding-right:12px;font-size:14px;font-weight:400;color:#fff;background-color:rgba(46,55,67,0.7)}.paraui-tooltip-left-right>div{margin:0 8px}.paraui-tooltip-top-bottom>div{margin:8px 0}\n",""]),e.exports=t},3645:function(e){"use strict";e.exports=function(e){var t=[];return t.toString=function(){return this.map((function(t){var n=function(e,t){var n=e[1]||"",r=e[3];if(!r)return n;if(t&&"function"==typeof btoa){var i=(a=r,l=btoa(unescape(encodeURIComponent(JSON.stringify(a)))),c="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(l),"/*# ".concat(c," */")),o=r.sources.map((function(e){return"/*# sourceURL=".concat(r.sourceRoot||"").concat(e," */")}));return[n].concat(o).concat([i]).join("\n")}var a,l,c;return[n].join("\n")}(t,e);return t[2]?"@media ".concat(t[2]," {").concat(n,"}"):n})).join("")},t.i=function(e,n,r){"string"==typeof e&&(e=[[null,e,""]]);var i={};if(r)for(var o=0;o<this.length;o++){var a=this[o][0];null!=a&&(i[a]=!0)}for(var l=0;l<e.length;l++){var c=[].concat(e[l]);r&&i[c[0]]||(n&&(c[2]?c[2]="".concat(n," and ").concat(c[2]):c[2]=n),t.push(c))}},t}},7418:function(e){"use strict";
67
- /*
68
- object-assign
69
- (c) Sindre Sorhus
70
- @license MIT
71
- */var t=Object.getOwnPropertySymbols,n=Object.prototype.hasOwnProperty,r=Object.prototype.propertyIsEnumerable;function i(e){if(null==e)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(e)}e.exports=function(){try{if(!Object.assign)return!1;var e=new String("abc");if(e[5]="de","5"===Object.getOwnPropertyNames(e)[0])return!1;for(var t={},n=0;n<10;n++)t["_"+String.fromCharCode(n)]=n;if("0123456789"!==Object.getOwnPropertyNames(t).map((function(e){return t[e]})).join(""))return!1;var r={};return"abcdefghijklmnopqrst".split("").forEach((function(e){r[e]=e})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},r)).join("")}catch(e){return!1}}()?Object.assign:function(e,o){for(var a,l,c=i(e),u=1;u<arguments.length;u++){for(var s in a=Object(arguments[u]))n.call(a,s)&&(c[s]=a[s]);if(t){l=t(a);for(var f=0;f<l.length;f++)r.call(a,l[f])&&(c[l[f]]=a[l[f]])}}return c}},5251:function(e,t,n){"use strict";
72
- /** @license React v17.0.2
73
- * react-jsx-runtime.production.min.js
74
- *
75
- * Copyright (c) Facebook, Inc. and its affiliates.
76
- *
77
- * This source code is licensed under the MIT license found in the
78
- * LICENSE file in the root directory of this source tree.
79
- */n(7418);var r=n(8156),i=60103;if(t.Fragment=60107,"function"==typeof Symbol&&Symbol.for){var o=Symbol.for;i=o("react.element"),t.Fragment=o("react.fragment")}var a=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,l=Object.prototype.hasOwnProperty,c={key:!0,ref:!0,__self:!0,__source:!0};function u(e,t,n){var r,o={},u=null,s=null;for(r in void 0!==n&&(u=""+n),void 0!==t.key&&(u=""+t.key),void 0!==t.ref&&(s=t.ref),t)l.call(t,r)&&!c.hasOwnProperty(r)&&(o[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps)void 0===o[r]&&(o[r]=t[r]);return{$$typeof:i,type:e,key:u,ref:s,props:o,_owner:a.current}}t.jsx=u,t.jsxs=u},5893:function(e,t,n){"use strict";e.exports=n(5251)},9271:function(e,t,n){var r=n(3379),i=n(2565);"string"==typeof(i=i.__esModule?i.default:i)&&(i=[[e.id,i,""]]);var o={insert:("body","body"),singleton:!1};r(i,o);e.exports=i.locals||{}},2113:function(e,t,n){var r=n(3379),i=n(7381);"string"==typeof(i=i.__esModule?i.default:i)&&(i=[[e.id,i,""]]);var o={insert:("body","body"),singleton:!1};r(i,o);e.exports=i.locals||{}},3936:function(e,t,n){var r=n(3379),i=n(9916);"string"==typeof(i=i.__esModule?i.default:i)&&(i=[[e.id,i,""]]);var o={insert:("body","body"),singleton:!1};r(i,o);e.exports=i.locals||{}},9663:function(e,t,n){var r=n(3379),i=n(4928);"string"==typeof(i=i.__esModule?i.default:i)&&(i=[[e.id,i,""]]);var o={insert:("body","body"),singleton:!1};r(i,o);e.exports=i.locals||{}},3492:function(e,t,n){var r=n(3379),i=n(5714);"string"==typeof(i=i.__esModule?i.default:i)&&(i=[[e.id,i,""]]);var o={insert:("body","body"),singleton:!1};r(i,o);e.exports=i.locals||{}},6202:function(e,t,n){var r=n(3379),i=n(3637);"string"==typeof(i=i.__esModule?i.default:i)&&(i=[[e.id,i,""]]);var o={insert:("body","body"),singleton:!1};r(i,o);e.exports=i.locals||{}},2310:function(e,t,n){var r=n(3379),i=n(9929);"string"==typeof(i=i.__esModule?i.default:i)&&(i=[[e.id,i,""]]);var o={insert:("body","body"),singleton:!1};r(i,o);e.exports=i.locals||{}},3379:function(e,t,n){"use strict";var r,i=function(){return void 0===r&&(r=Boolean(window&&document&&document.all&&!window.atob)),r},o=function(){var e={};return function(t){if(void 0===e[t]){var n=document.querySelector(t);if(window.HTMLIFrameElement&&n instanceof window.HTMLIFrameElement)try{n=n.contentDocument.head}catch(e){n=null}e[t]=n}return e[t]}}(),a=[];function l(e){for(var t=-1,n=0;n<a.length;n++)if(a[n].identifier===e){t=n;break}return t}function c(e,t){for(var n={},r=[],i=0;i<e.length;i++){var o=e[i],c=t.base?o[0]+t.base:o[0],u=n[c]||0,s="".concat(c," ").concat(u);n[c]=u+1;var f=l(s),d={css:o[1],media:o[2],sourceMap:o[3]};-1!==f?(a[f].references++,a[f].updater(d)):a.push({identifier:s,updater:x(d,t),references:1}),r.push(s)}return r}function u(e){var t=document.createElement("style"),r=e.attributes||{};if(void 0===r.nonce){var i=n.nc;i&&(r.nonce=i)}if(Object.keys(r).forEach((function(e){t.setAttribute(e,r[e])})),"function"==typeof e.insert)e.insert(t);else{var a=o(e.insert||"head");if(!a)throw new Error("Couldn't find a style target. This probably means that the value for the 'insert' parameter is invalid.");a.appendChild(t)}return t}var s,f=(s=[],function(e,t){return s[e]=t,s.filter(Boolean).join("\n")});function d(e,t,n,r){var i=n?"":r.media?"@media ".concat(r.media," {").concat(r.css,"}"):r.css;if(e.styleSheet)e.styleSheet.cssText=f(t,i);else{var o=document.createTextNode(i),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(o,a[t]):e.appendChild(o)}}function p(e,t,n){var r=n.css,i=n.media,o=n.sourceMap;if(i?e.setAttribute("media",i):e.removeAttribute("media"),o&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(o))))," */")),e.styleSheet)e.styleSheet.cssText=r;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(r))}}var h=null,v=0;function x(e,t){var n,r,i;if(t.singleton){var o=v++;n=h||(h=u(t)),r=d.bind(null,n,o,!1),i=d.bind(null,n,o,!0)}else n=u(t),r=p.bind(null,n,t),i=function(){!function(e){if(null===e.parentNode)return!1;e.parentNode.removeChild(e)}(n)};return r(e),function(t){if(t){if(t.css===e.css&&t.media===e.media&&t.sourceMap===e.sourceMap)return;r(e=t)}else i()}}e.exports=function(e,t){(t=t||{}).singleton||"boolean"==typeof t.singleton||(t.singleton=i());var n=c(e=e||[],t);return function(e){if(e=e||[],"[object Array]"===Object.prototype.toString.call(e)){for(var r=0;r<n.length;r++){var i=l(n[r]);a[i].references--}for(var o=c(e,t),u=0;u<n.length;u++){var s=l(n[u]);0===a[s].references&&(a[s].updater(),a.splice(s,1))}n=o}}}},7839:function(e,t,n){"use strict";var r=n(5893),i=n(8156),o=n(7371),a=(n(9271),function(){return a=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},a.apply(this,arguments)});t.default=function(e){var t=e.children,n=e.arrow,l=void 0!==n&&n,c=e.placement,u=void 0===c?"bottom-start":c,s=e.tips,f=void 0===s?"":s,d=e.className,p=void 0===d?"":d,h=e.beyondText,v=void 0===h||h,x=e.style,m=(0,i.useRef)(),b=(0,i.useState)(""),g=b[0],y=b[1];(0,i.useEffect)((function(){y(f)}),[f]);var w;return(0,r.jsx)("div",a({ref:m,className:(w="paraui-auto-tips",p&&(w+=" "+p),w),onMouseOver:function(){var e="";m.current&&m.current.scrollWidth>m.current.offsetWidth&&(e=f||(v?m.current.innerText:t)),y(e)},style:x},{children:(0,r.jsx)(o.default,a({arrow:l,title:g,placement:u},{children:(0,r.jsx)("div",a({className:"auto-tips-content"},{children:t}))}))}))}},9735:function(e,t,n){"use strict";var r=n(5893),i=n(8156),o=n.n(i),a=n(5395),l=n.n(a),c=function(){return c=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},c.apply(this,arguments)};t.default=function(e){var t,n=e.Com,i=e.comProps,a=e.comName,u=o().useContext(l()).componentsProps;return(0,r.jsx)(n,c({},(t=u&&u[a],c(c({},t),i))))}},3566:function(e,t,n){"use strict";var r=n(5893),i=n(7371),o=n(5670),a=n.n(o),l=n(6010),c=(n(2113),function(){return c=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},c.apply(this,arguments)}),u=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(r=Object.getOwnPropertySymbols(e);i<r.length;i++)t.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(e,r[i])&&(n[r[i]]=e[r[i]])}return n};t.default=function(e){var t=e.title,n=void 0===t?"":t,o=e.children,s=e.arrow,f=void 0===s||s,d=e.interactive,p=void 0===d||d,h=e.className,v=(e.placement,u(e,["title","children","arrow","interactive","className","placement"]));return(0,r.jsx)(i.default,c({title:n,arrow:f,interactive:p},v,{children:(0,r.jsx)("span",c({className:(0,l.Z)("paraui-help",h)},{children:o||(0,r.jsx)(a(),{})}))}))}},4254:function(e,t,n){"use strict";var r=n(5893),i=(n(3936),function(){return i=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},i.apply(this,arguments)});t.default=function(e){var t,n=e.className,o=e.style,a=e.error,l=void 0!==a&&a,c=e.helperText;return(0,r.jsx)("p",i({className:(t="paraui-helper-text",n&&(t+=" "+n),l&&(t+=" paraui-helper-text-error"),t),style:o},{children:c}))}},8767:function(e,t,n){"use strict";var r=n(5893),i=n(3566),o=(n(9663),function(){return o=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},o.apply(this,arguments)});t.default=function(e){var t=e.className,n=e.style,a=e.label,l=e.labelSign,c=e.required,u=void 0!==c&&c,s=e.tooltip,f=e.tooltipType,d=void 0===f?"icon":f,p=e.placement,h=e.arrow,v=e.tooltipIcon,x=function(){var e="paraui-label";return d&&(e+=" paraui-label-"+d),s&&(e+=" paraui-label-tooltip"),t&&(e+=" "+t),e};return(0,r.jsxs)(r.Fragment,{children:["icon"===d&&(0,r.jsxs)("label",o({className:x(),style:n},{children:[(0,r.jsx)(r.Fragment,{children:a}),u&&(0,r.jsx)("span",o({className:"paraui-label-required"},{children:"*"})),l&&(0,r.jsx)("span",{children:l}),s&&(0,r.jsx)(i.default,o({title:s,placement:p,arrow:h},{children:v}))]})),"line"===d&&(0,r.jsx)(i.default,o({title:s||"",placement:p,arrow:h},{children:(0,r.jsxs)("label",o({className:x(),style:n},{children:[(0,r.jsx)(r.Fragment,{children:a}),u&&(0,r.jsx)("span",o({className:"paraui-label-required"},{children:"*"})),l&&(0,r.jsx)("span",{children:l})]}))}))]})}},7502:function(e,t,n){"use strict";var r=n(5893),i=n(8156),o=n(1217),a=n.n(o),l=(n(3492),function(){return l=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},l.apply(this,arguments)});t.default=function(e){var t=e.className,n=e.style,o=e.opacity,c=void 0===o?.7:o,u=(0,i.useRef)(null);(0,i.useEffect)((function(){u&&u.current&&u.current.parentNode&&(u.current.parentNode.style.position||(u.current.parentNode.style.position="relative"))}),[]);var s;return(0,r.jsxs)("div",l({className:(s="paraui-loading",t&&(s+=" "+t),s),style:n,ref:u},{children:[(0,r.jsx)("div",l({className:"paraui-loading-box"},{children:(0,r.jsx)(a(),{})})),(0,r.jsx)("div",{className:"paraui-loading-mask",style:{opacity:c}})]}))}},7371:function(e,t,n){"use strict";var r=n(5893),i=n(670),o=n(6010),a=(n(2310),function(){return a=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},a.apply(this,arguments)});t.default=function(e){var t,n=e.placement,l=void 0===n?"top-start":n,c=e.arrow,u=void 0===c||c,s=e.PopperProps,f=a(a({},e.classes),{popper:(0,o.Z)("paraui-tooltip",null===(t=e.classes)||void 0===t?void 0:t.popper,{"paraui-tooltip-left-right":(null==l?void 0:l.includes("left"))||(null==l?void 0:l.includes("right")),"paraui-tooltip-top-bottom":(null==l?void 0:l.includes("top"))||(null==l?void 0:l.includes("bottom"))})});return(0,r.jsx)(i.Tooltip,a({},e,{arrow:u,placement:l,classes:f,PopperProps:a(a({},s),{popperOptions:{modifiers:{arrow:{enabled:!0},preventOverflow:{boundariesElement:window}}}})}))}},670:function(e){"use strict";e.exports=n},5395:function(e){"use strict";e.exports=t},8543:function(e){"use strict";e.exports=r},8156:function(t){"use strict";t.exports=e}},o={};function a(e){var t=o[e];if(void 0!==t)return t.exports;var n=o[e]={id:e,exports:{}};return i[e](n,n.exports,a),n.exports}a.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return a.d(t,{a:t}),t},a.d=function(e,t){for(var n in t)a.o(t,n)&&!a.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},a.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},a.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var l={};return function(){"use strict";a.r(l),a.d(l,{TextField:function(){return y},default:function(){return w}});var e=a(5893),t=a(9735),n=a(8156),r=a(7371),i=a(7839),o=a(7502),c=a(8767),u=a(4254),s=a(987),f=a.n(s),d=a(8926),p=a.n(d),h=a(3730),v=a.n(h),x=a(8543),m=(a(6202),function(){return m=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},m.apply(this,arguments)}),b=function(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(null!=e&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(r=Object.getOwnPropertySymbols(e);i<r.length;i++)t.indexOf(r[i])<0&&Object.prototype.propertyIsEnumerable.call(e,r[i])&&(n[r[i]]=e[r[i]])}return n},g=function(t){var a=t.className,l=t.style,s=t.size,d=void 0===s?"large":s,h=t.labelMode,g=void 0===h?"outside":h,y=t.placeholder,w=void 0===y?"":y,j=t.label,O=void 0===j?"":j,S=t.labelTooltip,C=t.disabled,N=void 0!==C&&C,_=t.multiline,P=void 0!==_&&_,k=t.required,M=void 0!==k&&k,E=t.labelSign,T=t.rows,R=void 0===T?2:T,L=t.error,I=void 0!==L&&L,z=t.helperText,F=void 0===z?"":z,U=t.addonBefore,A=void 0===U?"":U,B=t.addonAfter,q=void 0===B?"":B,H=(t.defaultValue,t.value),D=t.autoFocus,J=void 0!==D&&D,Y=t.type,W=void 0===Y?"text":Y,K=t.onClickIcon,$=t.rightIcon,Q=t.showRightIcon,V=void 0===Q||Q,G=t.allowClear,Z=void 0!==G&&G,X=t.limitLength,ee=t.fetchSuggestions,te=t.selectPopoverClass,ne=t.renderSelectItem,re=t.showSelectName,ie=void 0===re?"value":re,oe=t.resize,ae=void 0===oe||oe,le=t.onBlur,ce=t.onFocus,ue=t.onChange,se=t.onKeydown,fe=t.onKeyUp,de=t.onEnter,pe=t.onClickAddonBefore,he=t.onClickAddonAfter,ve=t.onSelect,xe=t.onClear,me=b(t,["className","style","size","labelMode","placeholder","label","labelTooltip","disabled","multiline","required","labelSign","rows","error","helperText","addonBefore","addonAfter","defaultValue","value","autoFocus","type","onClickIcon","rightIcon","showRightIcon","allowClear","limitLength","fetchSuggestions","selectPopoverClass","renderSelectItem","showSelectName","resize","onBlur","onFocus","onChange","onKeydown","onKeyUp","onEnter","onClickAddonBefore","onClickAddonAfter","onSelect","onClear"]),be=(0,n.useState)("text-field-select-content-"+(0,x.UUID)())[0],ge=(0,n.useState)(!0),ye=ge[0],we=ge[1],je=(0,n.useState)(""),Oe=je[0],Se=je[1],Ce=(0,n.useState)(!1),Ne=Ce[0],_e=Ce[1],Pe=(0,n.useState)("text"),ke=Pe[0],Me=Pe[1],Ee=(0,n.useState)(!1),Te=Ee[0],Re=Ee[1],Le=(0,n.useState)(!1),Ie=Le[0],ze=Le[1],Fe=(0,n.useState)([]),Ue=Fe[0],Ae=Fe[1],Be=(0,n.useRef)(null),qe=(0,n.useRef)(null);(0,n.useEffect)((function(){void 0!==t.defaultValue&&Se(t.defaultValue)}),[]),(0,n.useEffect)((function(){W!==ke&&Me(W)}),[W]),(0,n.useEffect)((function(){void 0!==H&&Se(H)}),[H]),(0,n.useEffect)((function(){we(""===Oe||void 0===Oe)}),[Oe]),(0,n.useEffect)((function(){ee&&Re(Ne)}),[Ne,ee]),(0,n.useEffect)((function(){return Te?window.addEventListener("keydown",Ke):window.removeEventListener("keydown",Ke),function(){window.removeEventListener("keydown",Ke)}}),[Te]),(0,n.useEffect)((function(){if(!Ne&&Oe){var e=De(Oe);if(e!==Oe){var n={};n.target=Be.current,n.target.value=e,void 0===t.value&&Se(e),t.onChange&&t.onChange(n)}}}),[Oe,Ne]);var He,De=function(e){var n=e;return t.limitLength&&e.toString().length>t.limitLength&&(n=n.toString().substr(0,t.limitLength)),n},Je=function(){N||(we(!1),(Be&&Be.current).focus())},Ye=function(e){var t=e.selectDom,n=e.keyCode,r=e.currentDom,i="nextSibling",o=".text-field-select-content-item";38===n&&(i="previousSibling",o=".text-field-select-content-item:last-child"),r?(r=r[i])||(r=t.querySelector(o)):r=t.querySelector(".text-field-select-content-item"),r&&(r.classList.add("text-field-select-content-item-keydown"),We(r,t))},We=function(e,t){var n=t.clientHeight,r=e.offsetTop+e.clientHeight-n;t.scrollTop=r>0?r:0},Ke=function(e){var t=document.querySelector("."+be),n=null,r=t.querySelector(".text-field-select-content-item-keydown");if(13===e.keyCode&&r){var i=r.dataset.val;rt(JSON.parse(i))(e),(Be&&Be.current).blur()}r&&(n=r,r.classList.remove("text-field-select-content-item-keydown")),40===e.keyCode&&Ye({selectDom:t,keyCode:e.keyCode,currentDom:n}),38===e.keyCode&&Ye({selectDom:t,keyCode:e.keyCode,currentDom:n})},$e=function(e){_e(!1),""===e.target.value&&we(!0),le&&le(e)},Qe=function(e){ee&&(ze(!0),ee(e,(function(e){Ae(e||[]),ze(!1)})))},Ve=function(e){_e(!0),ce&&ce(e),Qe(e.target.value)},Ge=function(e){var n=e.target.value;n&&we(!1),void 0===t.value&&Se(n),ue&&ue(e),Qe(e.target.value)},Ze=function(e){13===e.keyCode&&de&&de(e),se&&se(e)},Xe=function(e){fe&&fe(e)},et=function(e){"password"===W&&("text"===ke&&Me("password"),"password"===ke&&Me("text")),K&&K(e)},tt=function(){return void 0===t.value?Oe:H},nt=function(){Re(!1)},rt=function(e){return function(t){ve&&ve(e)}},it=(0,n.useMemo)((function(){return(0,e.jsx)(e.Fragment,{children:void 0!==X&&(0,e.jsx)("span",m({className:"length-limit"},{children:(Oe?Oe.toString().length:0)+"/"+X}))})}),[X,Oe]),ot=(0,n.useMemo)((function(){var t=$||("password"===W?"password"===ke?(0,e.jsx)(p(),{}):(0,e.jsx)(f(),{}):null);return(0,e.jsx)(e.Fragment,{children:V&&t&&(0,e.jsx)("span",m({className:"password"===W?"right-icon right-icon-password":"right-icon",onClick:et},{children:t}))})}),[V,$,W,ke,K]),at=function(){var e=Be.current;e.value="",void 0===t.value&&Se(""),ue&&ue({target:e}),Qe(""),xe&&xe()},lt=function(){if(tt()&&!N&&Z)return(0,e.jsx)("span",m({className:"clean-up-icon",onClick:at},{children:(0,e.jsx)(v(),{})}))},ct=(0,n.useMemo)((function(){return(0,e.jsxs)("div",m({className:"text-field-content-within",ref:qe},{children:[(0,e.jsxs)("div",m({className:"text-field-content-within-input"},{children:[P?(0,e.jsx)("textarea",m({ref:Be,rows:R,value:tt(),onBlur:$e,onFocus:Ve,onChange:Ge,onKeyDown:Ze,onKeyUp:Xe,disabled:N},me)):(0,e.jsx)("input",m({ref:Be,type:ke,value:tt(),onBlur:$e,onFocus:Ve,onChange:Ge,onKeyDown:Ze,onKeyUp:Xe,disabled:N},me)),ye&&!Ne&&(0,e.jsx)("span",m({className:"text-field-label-placeholder",onClick:Je},{children:"outside"===g?w:(0,e.jsxs)(e.Fragment,{children:[O||w,M&&(0,e.jsx)("span",m({className:"text-field-required"},{children:"*"})),E&&(0,e.jsx)("span",{children:E})]})}))]})),lt(),it,ot]}))}),[ye,Ne,J,ke,Oe,it,ot,g,w,O,N,P,R,me,ue,ee,K,Z,xe]),ut=(0,n.useMemo)((function(){var t,n=function(e){return"object"==typeof e&&null!==e?e[ie]:e};return(0,e.jsxs)("div",m({className:(t="text-field-select-content",Ie&&(t+=" text-field-select-content-loading"),be&&(t+=" "+be),t),style:{width:(qe&&qe.current?qe.current.offsetWidth:0)+"px"}},{children:[Ue&&Ue.map((function(t,r){return(0,e.jsx)("div",m({className:"text-field-select-content-item",onMouseDown:rt(t),"data-val":JSON.stringify(t)},{children:ne?ne(t):(0,e.jsx)(i.default,{children:n(t)})}),r)})),Ie&&(0,e.jsx)(o.default,{})]}))}),[qe,Te,Ue,ne,ie,ve,Ie,be]),st=(0,n.useMemo)((function(){return(0,e.jsx)(r.default,m({open:Te,title:ut,onClose:nt,arrow:!1,interactive:!0,disableFocusListener:!0,disableHoverListener:!0,disableTouchListener:!0,placement:"bottom-start",classes:{popper:(t="paraui-text-field-select paraui-scrollbar-small",d&&(t+=" paraui-text-field-select-"+d),te&&(t+=" "+te),Ue.length>0&&(t+=" paraui-text-field-select-data"),t)}},{children:ct}));var t}),[ye,Ne,J,ke,Oe,it,ot,g,w,O,N,P,R,me,ue,ee,ve,qe,Te,te,d,K,Ue,Z,xe]),ft=(0,n.useMemo)((function(){var t,n=Boolean(M||E||O);if("outside"===g&&n){return(0,e.jsx)(c.default,m({label:O,required:M,labelSign:E},S,{className:(t="text-field-label",S&&S.className&&(t+=" "+S.className),t)}))}return null}),[g,O,E,M,S]);return(0,e.jsxs)("div",m({className:(He="paraui-text-field",He+=" text-field",d&&!P&&(He+=" text-field-"+d),a&&(He+=" "+a),I&&(He+=" text-field-error"),Ne&&(He+=" text-field-focus"),N&&(He+=" text-field-disabled"),P&&(He+=" text-field-multiline"),t.limitLength&&(He+=" text-field-limit-length"),t.limitLength&&Oe&&Oe.toString().length>t.limitLength&&(He+=" text-field-limit"),ae&&(He+=" text-field-resize"),tt()&&(He+=" text-field-value"),Z&&(He+=" text-field-allow-clear"),He),style:l},{children:[ft,(0,e.jsxs)("div",m({className:"text-field-content"},{children:[A&&(0,e.jsx)("div",m({className:"text-field-content-before",onClick:function(e){pe&&pe(e)}},{children:A})),ee?st:ct,q&&(0,e.jsx)("div",m({className:"text-field-content-after",onClick:function(e){he&&he(e)}},{children:q}))]})),(0,e.jsx)(u.default,{className:"text-field-error-text",error:I,helperText:F})]}))},y=function(n){return(0,e.jsx)(t.default,{Com:g,comProps:n,comName:"TextField"})},w=y}(),l}()}));
@@ -1,11 +0,0 @@
1
- /**
2
- * @author linhd
3
- * @date 2021/8/5 15:05
4
- * @description 输入框
5
- */
6
- import { FunctionComponent } from 'react';
7
- import { TextFieldProps } from './index';
8
- import { GlobalComProps } from "../ComBox/interface";
9
- import './index.scss';
10
- export declare const TextFieldCom: FunctionComponent<TextFieldProps & GlobalComProps>;
11
- export default TextFieldCom;
@@ -1,22 +0,0 @@
1
- import { Moment } from 'moment';
2
- import React from 'react';
3
- import { PickerTimeProps, RangePickerTimeProps } from '../DatePicker/generatePicker';
4
- export interface TimePickerLocale {
5
- placeholder?: string;
6
- rangePlaceholder?: [string, string];
7
- }
8
- export interface TimeRangePickerProps extends Omit<RangePickerTimeProps<Moment>, 'picker'> {
9
- popupClassName?: string;
10
- }
11
- declare const RangePicker: React.ForwardRefExoticComponent<TimeRangePickerProps & React.RefAttributes<any>>;
12
- export interface TimePickerProps extends Omit<PickerTimeProps<Moment>, 'picker'> {
13
- addon?: () => React.ReactNode;
14
- popupClassName?: string;
15
- }
16
- declare const TimePicker: React.ForwardRefExoticComponent<TimePickerProps & React.RefAttributes<any>>;
17
- declare type MergedTimePicker = typeof TimePicker & {
18
- TimeRangePicker: typeof RangePicker;
19
- RangePicker: typeof RangePicker;
20
- };
21
- declare const _default: MergedTimePicker;
22
- export default _default;