@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,105 +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 c=(n=a,r=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),i="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(r),"/*# ".concat(i," */")),l=a.sources.map((function(e){return"/*# sourceURL=".concat(a.sourceRoot||"").concat(e," */")}));return[o].concat(l).concat([c]).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 c=0;c<e.length;c++){var l=[].concat(e[c]);r&&i[l[0]]||(n&&(l[2]?l[2]="".concat(n," and ").concat(l[2]):l[2]=n),t.push(l))}},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,c,l=i(e),s=1;s<arguments.length;s++){for(var u in a=Object(arguments[s]))n.call(a,u)&&(l[u]=a[u]);if(t){c=t(a);for(var f=0;f<c.length;f++)r.call(a,c[f])&&(l[c[f]]=a[c[f]])}}return l}},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,c=Object.prototype.hasOwnProperty,l={key:!0,ref:!0,__self:!0,__source:!0};function s(e,t,n){var r,o={},s=null,u=null;for(r in void 0!==n&&(s=""+n),void 0!==t.key&&(s=""+t.key),void 0!==t.ref&&(u=t.ref),t)c.call(t,r)&&!l.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:s,ref:u,props:o,_owner:a.current}}t.jsx=s,t.jsxs=s},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 c(e){for(var t=-1,n=0;n<a.length;n++)if(a[n].identifier===e){t=n;break}return t}function l(e,t){for(var n={},r=[],i=0;i<e.length;i++){var o=e[i],l=t.base?o[0]+t.base:o[0],s=n[l]||0,u="".concat(l," ").concat(s);n[l]=s+1;var f=c(u),d={css:o[1],media:o[2],sourceMap:o[3]};-1!==f?(a[f].references++,a[f].updater(d)):a.push({identifier:u,updater:x(d,t),references:1}),r.push(u)}return r}function s(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 u,f=(u=[],function(e,t){return u[e]=t,u.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 v=null,h=0;function x(e,t){var n,r,i;if(t.singleton){var o=h++;n=v||(v=s(t)),r=d.bind(null,n,o,!1),i=d.bind(null,n,o,!0)}else n=s(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=l(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=c(n[r]);a[i].references--}for(var o=l(e,t),s=0;s<n.length;s++){var u=c(n[s]);0===a[u].references&&(a[u].updater(),a.splice(u,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,c=e.color,l=void 0===c?"primary":c,s=e.size,u=void 0===s?"small":s,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),l&&(t+=" paraui-icon-"+l),u&&(t+=" paraui-icon-"+u),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}())},8344: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 c=(n=a,r=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),i="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(r),"/*# ".concat(i," */")),l=a.sources.map((function(e){return"/*# sourceURL=".concat(a.sourceRoot||"").concat(e," */")}));return[o].concat(l).concat([c]).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 c=0;c<e.length;c++){var l=[].concat(e[c]);r&&i[l[0]]||(n&&(l[2]?l[2]="".concat(n," and ").concat(l[2]):l[2]=n),t.push(l))}},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,c,l=i(e),s=1;s<arguments.length;s++){for(var u in a=Object(arguments[s]))n.call(a,u)&&(l[u]=a[u]);if(t){c=t(a);for(var f=0;f<c.length;f++)r.call(a,c[f])&&(l[c[f]]=a[c[f]])}}return l}},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,c=Object.prototype.hasOwnProperty,l={key:!0,ref:!0,__self:!0,__source:!0};function s(e,t,n){var r,o={},s=null,u=null;for(r in void 0!==n&&(s=""+n),void 0!==t.key&&(s=""+t.key),void 0!==t.ref&&(u=t.ref),t)c.call(t,r)&&!l.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:s,ref:u,props:o,_owner:a.current}}t.jsx=s,t.jsxs=s},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 c(e){for(var t=-1,n=0;n<a.length;n++)if(a[n].identifier===e){t=n;break}return t}function l(e,t){for(var n={},r=[],i=0;i<e.length;i++){var o=e[i],l=t.base?o[0]+t.base:o[0],s=n[l]||0,u="".concat(l," ").concat(s);n[l]=s+1;var f=c(u),d={css:o[1],media:o[2],sourceMap:o[3]};-1!==f?(a[f].references++,a[f].updater(d)):a.push({identifier:u,updater:x(d,t),references:1}),r.push(u)}return r}function s(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 u,f=(u=[],function(e,t){return u[e]=t,u.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 v=null,h=0;function x(e,t){var n,r,i;if(t.singleton){var o=h++;n=v||(v=s(t)),r=d.bind(null,n,o,!1),i=d.bind(null,n,o,!0)}else n=s(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=l(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=c(n[r]);a[i].references--}for(var o=l(e,t),s=0;s<n.length;s++){var u=c(n[s]);0===a[u].references&&(a[u].updater(),a.splice(u,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,c=e.color,l=void 0===c?"primary":c,s=e.size,u=void 0===s?"small":s,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),l&&(t+=" paraui-icon-"+l),u&&(t+=" paraui-icon-"+u),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,{Delete: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:"Delete",path:(0,e.jsxs)(e.Fragment,{children:[(0,e.jsx)("path",{d:"M297.216 175.189333h426.666667a42.666667 42.666667 0 0 0 0-85.333333h-426.666667a42.666667 42.666667 0 0 0 0 85.333333z"},void 0),(0,e.jsx)("path",{d:"M405.76 722.218667a42.666667 42.666667 0 0 0 42.666667-42.666667v-170.666667a42.666667 42.666667 0 0 0-85.333334 0v170.666667a42.666667 42.666667 0 0 0 42.666667 42.666667z"},void 0),(0,e.jsx)("path",{d:"M616.362667 722.218667a42.666667 42.666667 0 0 0 42.666666-42.666667v-170.666667a42.666667 42.666667 0 0 0-85.333333 0v170.666667a42.666667 42.666667 0 0 0 42.666667 42.666667z"},void 0),(0,e.jsx)("path",{d:"M938.666667 253.781333H85.333333a42.666667 42.666667 0 0 0 0 85.333334h84.352v554.666666a42.666667 42.666667 0 0 0 42.666667 42.666667h597.333333a42.666667 42.666667 0 0 0 42.666667-42.666667v-554.666666H938.666667a42.666667 42.666667 0 0 0 0-85.333334z m-171.648 597.333334h-512v-512h512z"},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 c=(n=a,r=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),i="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(r),"/*# ".concat(i," */")),l=a.sources.map((function(e){return"/*# sourceURL=".concat(a.sourceRoot||"").concat(e," */")}));return[o].concat(l).concat([c]).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 c=0;c<e.length;c++){var l=[].concat(e[c]);r&&i[l[0]]||(n&&(l[2]?l[2]="".concat(n," and ").concat(l[2]):l[2]=n),t.push(l))}},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,c,l=i(e),s=1;s<arguments.length;s++){for(var u in a=Object(arguments[s]))n.call(a,u)&&(l[u]=a[u]);if(t){c=t(a);for(var f=0;f<c.length;f++)r.call(a,c[f])&&(l[c[f]]=a[c[f]])}}return l}},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,c=Object.prototype.hasOwnProperty,l={key:!0,ref:!0,__self:!0,__source:!0};function s(e,t,n){var r,o={},s=null,u=null;for(r in void 0!==n&&(s=""+n),void 0!==t.key&&(s=""+t.key),void 0!==t.ref&&(u=t.ref),t)c.call(t,r)&&!l.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:s,ref:u,props:o,_owner:a.current}}t.jsx=s,t.jsxs=s},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 c(e){for(var t=-1,n=0;n<a.length;n++)if(a[n].identifier===e){t=n;break}return t}function l(e,t){for(var n={},r=[],i=0;i<e.length;i++){var o=e[i],l=t.base?o[0]+t.base:o[0],s=n[l]||0,u="".concat(l," ").concat(s);n[l]=s+1;var f=c(u),d={css:o[1],media:o[2],sourceMap:o[3]};-1!==f?(a[f].references++,a[f].updater(d)):a.push({identifier:u,updater:x(d,t),references:1}),r.push(u)}return r}function s(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 u,f=(u=[],function(e,t){return u[e]=t,u.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 v=null,h=0;function x(e,t){var n,r,i;if(t.singleton){var o=h++;n=v||(v=s(t)),r=d.bind(null,n,o,!1),i=d.bind(null,n,o,!0)}else n=s(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=l(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=c(n[r]);a[i].references--}for(var o=l(e,t),s=0;s<n.length;s++){var u=c(n[s]);0===a[u].references&&(a[u].updater(),a.splice(u,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,c=e.color,l=void 0===c?"primary":c,s=e.size,u=void 0===s?"small":s,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),l&&(t+=" paraui-icon-"+l),u&&(t+=" paraui-icon-"+u),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 c=(n=a,r=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),i="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(r),"/*# ".concat(i," */")),l=a.sources.map((function(e){return"/*# sourceURL=".concat(a.sourceRoot||"").concat(e," */")}));return[o].concat(l).concat([c]).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 c=0;c<e.length;c++){var l=[].concat(e[c]);r&&i[l[0]]||(n&&(l[2]?l[2]="".concat(n," and ").concat(l[2]):l[2]=n),t.push(l))}},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,c,l=i(e),s=1;s<arguments.length;s++){for(var u in a=Object(arguments[s]))n.call(a,u)&&(l[u]=a[u]);if(t){c=t(a);for(var f=0;f<c.length;f++)r.call(a,c[f])&&(l[c[f]]=a[c[f]])}}return l}},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,c=Object.prototype.hasOwnProperty,l={key:!0,ref:!0,__self:!0,__source:!0};function s(e,t,n){var r,o={},s=null,u=null;for(r in void 0!==n&&(s=""+n),void 0!==t.key&&(s=""+t.key),void 0!==t.ref&&(u=t.ref),t)c.call(t,r)&&!l.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:s,ref:u,props:o,_owner:a.current}}t.jsx=s},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 c(e){for(var t=-1,n=0;n<a.length;n++)if(a[n].identifier===e){t=n;break}return t}function l(e,t){for(var n={},r=[],i=0;i<e.length;i++){var o=e[i],l=t.base?o[0]+t.base:o[0],s=n[l]||0,u="".concat(l," ").concat(s);n[l]=s+1;var f=c(u),d={css:o[1],media:o[2],sourceMap:o[3]};-1!==f?(a[f].references++,a[f].updater(d)):a.push({identifier:u,updater:x(d,t),references:1}),r.push(u)}return r}function s(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 u,f=(u=[],function(e,t){return u[e]=t,u.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 v=null,h=0;function x(e,t){var n,r,i;if(t.singleton){var o=h++;n=v||(v=s(t)),r=d.bind(null,n,o,!1),i=d.bind(null,n,o,!0)}else n=s(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=l(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=c(n[r]);a[i].references--}for(var o=l(e,t),s=0;s<n.length;s++){var u=c(n[s]);0===a[u].references&&(a[u].updater(),a.splice(u,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,c=e.color,l=void 0===c?"primary":c,s=e.size,u=void 0===s?"small":s,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),l&&(t+=" paraui-icon-"+l),u&&(t+=" paraui-icon-"+u),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}())},4271: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 c=(n=a,r=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),i="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(r),"/*# ".concat(i," */")),l=a.sources.map((function(e){return"/*# sourceURL=".concat(a.sourceRoot||"").concat(e," */")}));return[o].concat(l).concat([c]).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 c=0;c<e.length;c++){var l=[].concat(e[c]);r&&i[l[0]]||(n&&(l[2]?l[2]="".concat(n," and ").concat(l[2]):l[2]=n),t.push(l))}},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,c,l=i(e),s=1;s<arguments.length;s++){for(var u in a=Object(arguments[s]))n.call(a,u)&&(l[u]=a[u]);if(t){c=t(a);for(var f=0;f<c.length;f++)r.call(a,c[f])&&(l[c[f]]=a[c[f]])}}return l}},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,c=Object.prototype.hasOwnProperty,l={key:!0,ref:!0,__self:!0,__source:!0};function s(e,t,n){var r,o={},s=null,u=null;for(r in void 0!==n&&(s=""+n),void 0!==t.key&&(s=""+t.key),void 0!==t.ref&&(u=t.ref),t)c.call(t,r)&&!l.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:s,ref:u,props:o,_owner:a.current}}t.jsx=s},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 c(e){for(var t=-1,n=0;n<a.length;n++)if(a[n].identifier===e){t=n;break}return t}function l(e,t){for(var n={},r=[],i=0;i<e.length;i++){var o=e[i],l=t.base?o[0]+t.base:o[0],s=n[l]||0,u="".concat(l," ").concat(s);n[l]=s+1;var f=c(u),d={css:o[1],media:o[2],sourceMap:o[3]};-1!==f?(a[f].references++,a[f].updater(d)):a.push({identifier:u,updater:x(d,t),references:1}),r.push(u)}return r}function s(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 u,f=(u=[],function(e,t){return u[e]=t,u.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 v=null,h=0;function x(e,t){var n,r,i;if(t.singleton){var o=h++;n=v||(v=s(t)),r=d.bind(null,n,o,!1),i=d.bind(null,n,o,!0)}else n=s(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=l(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=c(n[r]);a[i].references--}for(var o=l(e,t),s=0;s<n.length;s++){var u=c(n[s]);0===a[u].references&&(a[u].updater(),a.splice(u,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,c=e.color,l=void 0===c?"primary":c,s=e.size,u=void 0===s?"small":s,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),l&&(t+=" paraui-icon-"+l),u&&(t+=" paraui-icon-"+u),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,{Plus: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:"Plus",path:(0,e.jsx)(e.Fragment,{children:(0,e.jsx)("path",{d:"M768 469.333333h-213.333333V256a42.666667 42.666667 0 0 0-85.333334 0v213.333333H256a42.666667 42.666667 0 0 0 0 85.333334h213.333333v213.333333a42.666667 42.666667 0 0 0 85.333334 0v-213.333333h213.333333a42.666667 42.666667 0 0 0 0-85.333334z"},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 c=(n=a,r=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),i="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(r),"/*# ".concat(i," */")),l=a.sources.map((function(e){return"/*# sourceURL=".concat(a.sourceRoot||"").concat(e," */")}));return[o].concat(l).concat([c]).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 c=0;c<e.length;c++){var l=[].concat(e[c]);r&&i[l[0]]||(n&&(l[2]?l[2]="".concat(n," and ").concat(l[2]):l[2]=n),t.push(l))}},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,c,l=i(e),s=1;s<arguments.length;s++){for(var u in a=Object(arguments[s]))n.call(a,u)&&(l[u]=a[u]);if(t){c=t(a);for(var f=0;f<c.length;f++)r.call(a,c[f])&&(l[c[f]]=a[c[f]])}}return l}},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,c=Object.prototype.hasOwnProperty,l={key:!0,ref:!0,__self:!0,__source:!0};function s(e,t,n){var r,o={},s=null,u=null;for(r in void 0!==n&&(s=""+n),void 0!==t.key&&(s=""+t.key),void 0!==t.ref&&(u=t.ref),t)c.call(t,r)&&!l.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:s,ref:u,props:o,_owner:a.current}}t.jsx=s},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 c(e){for(var t=-1,n=0;n<a.length;n++)if(a[n].identifier===e){t=n;break}return t}function l(e,t){for(var n={},r=[],i=0;i<e.length;i++){var o=e[i],l=t.base?o[0]+t.base:o[0],s=n[l]||0,u="".concat(l," ").concat(s);n[l]=s+1;var f=c(u),d={css:o[1],media:o[2],sourceMap:o[3]};-1!==f?(a[f].references++,a[f].updater(d)):a.push({identifier:u,updater:x(d,t),references:1}),r.push(u)}return r}function s(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 u,f=(u=[],function(e,t){return u[e]=t,u.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 v=null,h=0;function x(e,t){var n,r,i;if(t.singleton){var o=h++;n=v||(v=s(t)),r=d.bind(null,n,o,!1),i=d.bind(null,n,o,!0)}else n=s(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=l(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=c(n[r]);a[i].references--}for(var o=l(e,t),s=0;s<n.length;s++){var u=c(n[s]);0===a[u].references&&(a[u].updater(),a.splice(u,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,c=e.color,l=void 0===c?"primary":c,s=e.size,u=void 0===s?"small":s,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),l&&(t+=" paraui-icon-"+l),u&&(t+=" paraui-icon-"+u),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 c=(n=a,r=btoa(unescape(encodeURIComponent(JSON.stringify(n)))),i="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(r),"/*# ".concat(i," */")),l=a.sources.map((function(e){return"/*# sourceURL=".concat(a.sourceRoot||"").concat(e," */")}));return[o].concat(l).concat([c]).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 c=0;c<e.length;c++){var l=[].concat(e[c]);r&&i[l[0]]||(n&&(l[2]?l[2]="".concat(n," and ").concat(l[2]):l[2]=n),t.push(l))}},t}},7418:function(e){"use strict";
80
- /*
81
- object-assign
82
- (c) Sindre Sorhus
83
- @license MIT
84
- */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,c,l=i(e),s=1;s<arguments.length;s++){for(var u in a=Object(arguments[s]))n.call(a,u)&&(l[u]=a[u]);if(t){c=t(a);for(var f=0;f<c.length;f++)r.call(a,c[f])&&(l[c[f]]=a[c[f]])}}return l}},5251:function(e,t,n){"use strict";
85
- /** @license React v17.0.2
86
- * react-jsx-runtime.production.min.js
87
- *
88
- * Copyright (c) Facebook, Inc. and its affiliates.
89
- *
90
- * This source code is licensed under the MIT license found in the
91
- * LICENSE file in the root directory of this source tree.
92
- */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,c=Object.prototype.hasOwnProperty,l={key:!0,ref:!0,__self:!0,__source:!0};function s(e,t,n){var r,o={},s=null,u=null;for(r in void 0!==n&&(s=""+n),void 0!==t.key&&(s=""+t.key),void 0!==t.ref&&(u=t.ref),t)c.call(t,r)&&!l.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:s,ref:u,props:o,_owner:a.current}}t.jsx=s,t.jsxs=s},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 c(e){for(var t=-1,n=0;n<a.length;n++)if(a[n].identifier===e){t=n;break}return t}function l(e,t){for(var n={},r=[],i=0;i<e.length;i++){var o=e[i],l=t.base?o[0]+t.base:o[0],s=n[l]||0,u="".concat(l," ").concat(s);n[l]=s+1;var f=c(u),d={css:o[1],media:o[2],sourceMap:o[3]};-1!==f?(a[f].references++,a[f].updater(d)):a.push({identifier:u,updater:x(d,t),references:1}),r.push(u)}return r}function s(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 u,f=(u=[],function(e,t){return u[e]=t,u.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 v=null,h=0;function x(e,t){var n,r,i;if(t.singleton){var o=h++;n=v||(v=s(t)),r=d.bind(null,n,o,!1),i=d.bind(null,n,o,!0)}else n=s(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=l(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=c(n[r]);a[i].references--}for(var o=l(e,t),s=0;s<n.length;s++){var u=c(n[s]);0===a[u].references&&(a[u].updater(),a.splice(u,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,c=e.color,l=void 0===c?"primary":c,s=e.size,u=void 0===s?"small":s,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),l&&(t+=" paraui-icon-"+l),u&&(t+=" paraui-icon-"+u),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},2645:function(e,t,n){(t=n(3645)(!1)).push([e.id,".paraui-single-box{display:inline-block;width:100%;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-single-box>.single-box-content{line-height:0}.paraui-single-box>.single-box-content>.single-box-content-item{padding-bottom:15px;display:flex}.paraui-single-box>.single-box-content>.single-box-content-item>.text-field{width:calc(100% - 30px)}.paraui-single-box>.single-box-content>.single-box-content-item>.text-field>.paraui-helper-text{display:none}.paraui-single-box>.single-box-content>.single-box-content-item>.single-box-content-item-svg{display:flex;align-items:center;justify-content:center;width:30px;cursor:pointer}.paraui-single-box>.single-box-add{text-align:center;border:1px dashed;border-color:rgba(171,176,185,0.4);display:flex;align-items:center;justify-content:center;border-radius:4px;cursor:pointer;background-color:#fff}.paraui-single-box>.single-box-add>svg{font-size:24px}.paraui-single-box>.single-box-add:hover{border-color:#3666d6;color:#3666d6}.paraui-single-box.single-box-small>.single-box-add{height:28px}.paraui-single-box.single-box-medium>.single-box-add{height:32px}.paraui-single-box.single-box-large>.single-box-add{height:36px}.paraui-single-box.single-box-disabled>.single-box-content>.single-box-content-item>.single-box-content-item-svg{cursor:not-allowed}.paraui-single-box.single-box-disabled>.single-box-content>.single-box-content-item>.single-box-content-item-svg>svg{color:rgba(46,55,67,0.7)}.paraui-single-box.single-box-disabled>.single-box-add{border-color:rgba(171,176,185,0.4);cursor:not-allowed;background-color:rgba(171,176,185,0.12);color:rgba(46,55,67,0.7)}.paraui-single-box.single-box-disabled>.single-box-add>svg{color:rgba(46,55,67,0.7)}.paraui-single-box.single-box-disabled>.single-box-add:hover{border-color:rgba(171,176,185,0.4);color:rgba(46,55,67,0.7)}\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,c=btoa(unescape(encodeURIComponent(JSON.stringify(a)))),l="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(c),"/*# ".concat(l," */")),o=r.sources.map((function(e){return"/*# sourceURL=".concat(r.sourceRoot||"").concat(e," */")}));return[n].concat(o).concat([i]).join("\n")}var a,c,l;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 c=0;c<e.length;c++){var l=[].concat(e[c]);r&&i[l[0]]||(n&&(l[2]?l[2]="".concat(n," and ").concat(l[2]):l[2]=n),t.push(l))}},t}},7418:function(e){"use strict";
93
- /*
94
- object-assign
95
- (c) Sindre Sorhus
96
- @license MIT
97
- */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,c,l=i(e),s=1;s<arguments.length;s++){for(var u in a=Object(arguments[s]))n.call(a,u)&&(l[u]=a[u]);if(t){c=t(a);for(var f=0;f<c.length;f++)r.call(a,c[f])&&(l[c[f]]=a[c[f]])}}return l}},5251:function(e,t,n){"use strict";
98
- /** @license React v17.0.2
99
- * react-jsx-runtime.production.min.js
100
- *
101
- * Copyright (c) Facebook, Inc. and its affiliates.
102
- *
103
- * This source code is licensed under the MIT license found in the
104
- * LICENSE file in the root directory of this source tree.
105
- */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,c=Object.prototype.hasOwnProperty,l={key:!0,ref:!0,__self:!0,__source:!0};function s(e,t,n){var r,o={},s=null,u=null;for(r in void 0!==n&&(s=""+n),void 0!==t.key&&(s=""+t.key),void 0!==t.ref&&(u=t.ref),t)c.call(t,r)&&!l.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:s,ref:u,props:o,_owner:a.current}}t.jsx=s,t.jsxs=s},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||{}},6894:function(e,t,n){var r=n(3379),i=n(2645);"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 c(e){for(var t=-1,n=0;n<a.length;n++)if(a[n].identifier===e){t=n;break}return t}function l(e,t){for(var n={},r=[],i=0;i<e.length;i++){var o=e[i],l=t.base?o[0]+t.base:o[0],s=n[l]||0,u="".concat(l," ").concat(s);n[l]=s+1;var f=c(u),d={css:o[1],media:o[2],sourceMap:o[3]};-1!==f?(a[f].references++,a[f].updater(d)):a.push({identifier:u,updater:x(d,t),references:1}),r.push(u)}return r}function s(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 u,f=(u=[],function(e,t){return u[e]=t,u.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 v=null,h=0;function x(e,t){var n,r,i;if(t.singleton){var o=h++;n=v||(v=s(t)),r=d.bind(null,n,o,!1),i=d.bind(null,n,o,!0)}else n=s(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=l(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=c(n[r]);a[i].references--}for(var o=l(e,t),s=0;s<n.length;s++){var u=c(n[s]);0===a[u].references&&(a[u].updater(),a.splice(u,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,c=void 0!==n&&n,l=e.placement,s=void 0===l?"bottom-start":l,u=e.tips,f=void 0===u?"":u,d=e.className,p=void 0===d?"":d,v=e.beyondText,h=void 0===v||v,x=e.style,b=(0,i.useRef)(),m=(0,i.useState)(""),g=m[0],y=m[1];(0,i.useEffect)((function(){y(f)}),[f]);var j;return(0,r.jsx)("div",a({ref:b,className:(j="paraui-auto-tips",p&&(j+=" "+p),j),onMouseOver:function(){var e="";b.current&&b.current.scrollWidth>b.current.offsetWidth&&(e=f||(h?b.current.innerText:t)),y(e)},style:x},{children:(0,r.jsx)(o.default,a({arrow:c,title:g,placement:s},{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),c=n.n(a),l=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,n=e.Com,i=e.comProps,a=e.comName,s=o().useContext(c()).componentsProps;return(0,r.jsx)(n,l({},(t=s&&s[a],l(l({},t),i))))}},3566:function(e,t,n){"use strict";var r=n(5893),i=n(7371),o=n(5670),a=n.n(o),c=n(6010),l=(n(2113),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)}),s=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,u=e.arrow,f=void 0===u||u,d=e.interactive,p=void 0===d||d,v=e.className,h=(e.placement,s(e,["title","children","arrow","interactive","className","placement"]));return(0,r.jsx)(i.default,l({title:n,arrow:f,interactive:p},h,{children:(0,r.jsx)("span",l({className:(0,c.Z)("paraui-help",v)},{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,c=void 0!==a&&a,l=e.helperText;return(0,r.jsx)("p",i({className:(t="paraui-helper-text",n&&(t+=" "+n),c&&(t+=" paraui-helper-text-error"),t),style:o},{children:l}))}},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,c=e.labelSign,l=e.required,s=void 0!==l&&l,u=e.tooltip,f=e.tooltipType,d=void 0===f?"icon":f,p=e.placement,v=e.arrow,h=e.tooltipIcon,x=function(){var e="paraui-label";return d&&(e+=" paraui-label-"+d),u&&(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}),s&&(0,r.jsx)("span",o({className:"paraui-label-required"},{children:"*"})),c&&(0,r.jsx)("span",{children:c}),u&&(0,r.jsx)(i.default,o({title:u,placement:p,arrow:v},{children:h}))]})),"line"===d&&(0,r.jsx)(i.default,o({title:u||"",placement:p,arrow:v},{children:(0,r.jsxs)("label",o({className:x(),style:n},{children:[(0,r.jsx)(r.Fragment,{children:a}),s&&(0,r.jsx)("span",o({className:"paraui-label-required"},{children:"*"})),c&&(0,r.jsx)("span",{children:c})]}))}))]})}},7502:function(e,t,n){"use strict";var r=n(5893),i=n(8156),o=n(1217),a=n.n(o),c=(n(3492),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=e.className,n=e.style,o=e.opacity,l=void 0===o?.7:o,s=(0,i.useRef)(null);(0,i.useEffect)((function(){s&&s.current&&s.current.parentNode&&(s.current.parentNode.style.position||(s.current.parentNode.style.position="relative"))}),[]);var u;return(0,r.jsxs)("div",c({className:(u="paraui-loading",t&&(u+=" "+t),u),style:n,ref:s},{children:[(0,r.jsx)("div",c({className:"paraui-loading-box"},{children:(0,r.jsx)(a(),{})})),(0,r.jsx)("div",{className:"paraui-loading-mask",style:{opacity:l}})]}))}},7953:function(e,t,n){"use strict";n.d(t,{default:function(){return j}});var r=n(5893),i=n(9735),o=n(8156),a=n(7371),c=n(7839),l=n(7502),s=n(8767),u=n(4254),f=n(987),d=n.n(f),p=n(8926),v=n.n(p),h=n(3730),x=n.n(h),b=n(8543),m=(n(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)}),g=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},y=function(e){var t=e.className,n=e.style,i=e.size,f=void 0===i?"large":i,p=e.labelMode,h=void 0===p?"outside":p,y=e.placeholder,j=void 0===y?"":y,w=e.label,O=void 0===w?"":w,S=e.labelTooltip,N=e.disabled,_=void 0!==N&&N,C=e.multiline,P=void 0!==C&&C,k=e.required,M=void 0!==k&&k,E=e.labelSign,T=e.rows,R=void 0===T?2:T,z=e.error,I=void 0!==z&&z,L=e.helperText,F=void 0===L?"":L,U=e.addonBefore,A=void 0===U?"":U,B=e.addonAfter,q=void 0===B?"":B,H=(e.defaultValue,e.value),D=e.autoFocus,J=void 0!==D&&D,Y=e.type,W=void 0===Y?"text":Y,$=e.onClickIcon,K=e.rightIcon,V=e.showRightIcon,Q=void 0===V||V,G=e.allowClear,Z=void 0!==G&&G,X=e.limitLength,ee=e.fetchSuggestions,te=e.selectPopoverClass,ne=e.renderSelectItem,re=e.showSelectName,ie=void 0===re?"value":re,oe=e.resize,ae=void 0===oe||oe,ce=e.onBlur,le=e.onFocus,se=e.onChange,ue=e.onKeydown,fe=e.onKeyUp,de=e.onEnter,pe=e.onClickAddonBefore,ve=e.onClickAddonAfter,he=e.onSelect,xe=e.onClear,be=g(e,["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"]),me=(0,o.useState)("text-field-select-content-"+(0,b.UUID)())[0],ge=(0,o.useState)(!0),ye=ge[0],je=ge[1],we=(0,o.useState)(""),Oe=we[0],Se=we[1],Ne=(0,o.useState)(!1),_e=Ne[0],Ce=Ne[1],Pe=(0,o.useState)("text"),ke=Pe[0],Me=Pe[1],Ee=(0,o.useState)(!1),Te=Ee[0],Re=Ee[1],ze=(0,o.useState)(!1),Ie=ze[0],Le=ze[1],Fe=(0,o.useState)([]),Ue=Fe[0],Ae=Fe[1],Be=(0,o.useRef)(null),qe=(0,o.useRef)(null);(0,o.useEffect)((function(){void 0!==e.defaultValue&&Se(e.defaultValue)}),[]),(0,o.useEffect)((function(){W!==ke&&Me(W)}),[W]),(0,o.useEffect)((function(){void 0!==H&&Se(H)}),[H]),(0,o.useEffect)((function(){je(""===Oe||void 0===Oe)}),[Oe]),(0,o.useEffect)((function(){ee&&Re(_e)}),[_e,ee]),(0,o.useEffect)((function(){return Te?window.addEventListener("keydown",$e):window.removeEventListener("keydown",$e),function(){window.removeEventListener("keydown",$e)}}),[Te]),(0,o.useEffect)((function(){if(!_e&&Oe){var t=De(Oe);if(t!==Oe){var n={};n.target=Be.current,n.target.value=t,void 0===e.value&&Se(t),e.onChange&&e.onChange(n)}}}),[Oe,_e]);var He,De=function(t){var n=t;return e.limitLength&&t.toString().length>e.limitLength&&(n=n.toString().substr(0,e.limitLength)),n},Je=function(){_||(je(!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},$e=function(e){var t=document.querySelector("."+me),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})},Ke=function(e){Ce(!1),""===e.target.value&&je(!0),ce&&ce(e)},Ve=function(e){ee&&(Le(!0),ee(e,(function(e){Ae(e||[]),Le(!1)})))},Qe=function(e){Ce(!0),le&&le(e),Ve(e.target.value)},Ge=function(t){var n=t.target.value;n&&je(!1),void 0===e.value&&Se(n),se&&se(t),Ve(t.target.value)},Ze=function(e){13===e.keyCode&&de&&de(e),ue&&ue(e)},Xe=function(e){fe&&fe(e)},et=function(e){"password"===W&&("text"===ke&&Me("password"),"password"===ke&&Me("text")),$&&$(e)},tt=function(){return void 0===e.value?Oe:H},nt=function(){Re(!1)},rt=function(e){return function(t){he&&he(e)}},it=(0,o.useMemo)((function(){return(0,r.jsx)(r.Fragment,{children:void 0!==X&&(0,r.jsx)("span",m({className:"length-limit"},{children:(Oe?Oe.toString().length:0)+"/"+X}))})}),[X,Oe]),ot=(0,o.useMemo)((function(){var e=K||("password"===W?"password"===ke?(0,r.jsx)(v(),{}):(0,r.jsx)(d(),{}):null);return(0,r.jsx)(r.Fragment,{children:Q&&e&&(0,r.jsx)("span",m({className:"password"===W?"right-icon right-icon-password":"right-icon",onClick:et},{children:e}))})}),[Q,K,W,ke,$]),at=function(){var t=Be.current;t.value="",void 0===e.value&&Se(""),se&&se({target:t}),Ve(""),xe&&xe()},ct=function(){if(tt()&&!_&&Z)return(0,r.jsx)("span",m({className:"clean-up-icon",onClick:at},{children:(0,r.jsx)(x(),{})}))},lt=(0,o.useMemo)((function(){return(0,r.jsxs)("div",m({className:"text-field-content-within",ref:qe},{children:[(0,r.jsxs)("div",m({className:"text-field-content-within-input"},{children:[P?(0,r.jsx)("textarea",m({ref:Be,rows:R,value:tt(),onBlur:Ke,onFocus:Qe,onChange:Ge,onKeyDown:Ze,onKeyUp:Xe,disabled:_},be)):(0,r.jsx)("input",m({ref:Be,type:ke,value:tt(),onBlur:Ke,onFocus:Qe,onChange:Ge,onKeyDown:Ze,onKeyUp:Xe,disabled:_},be)),ye&&!_e&&(0,r.jsx)("span",m({className:"text-field-label-placeholder",onClick:Je},{children:"outside"===h?j:(0,r.jsxs)(r.Fragment,{children:[O||j,M&&(0,r.jsx)("span",m({className:"text-field-required"},{children:"*"})),E&&(0,r.jsx)("span",{children:E})]})}))]})),ct(),it,ot]}))}),[ye,_e,J,ke,Oe,it,ot,h,j,O,_,P,R,be,se,ee,$,Z,xe]),st=(0,o.useMemo)((function(){var e,t=function(e){return"object"==typeof e&&null!==e?e[ie]:e};return(0,r.jsxs)("div",m({className:(e="text-field-select-content",Ie&&(e+=" text-field-select-content-loading"),me&&(e+=" "+me),e),style:{width:(qe&&qe.current?qe.current.offsetWidth:0)+"px"}},{children:[Ue&&Ue.map((function(e,n){return(0,r.jsx)("div",m({className:"text-field-select-content-item",onMouseDown:rt(e),"data-val":JSON.stringify(e)},{children:ne?ne(e):(0,r.jsx)(c.default,{children:t(e)})}),n)})),Ie&&(0,r.jsx)(l.default,{})]}))}),[qe,Te,Ue,ne,ie,he,Ie,me]),ut=(0,o.useMemo)((function(){return(0,r.jsx)(a.default,m({open:Te,title:st,onClose:nt,arrow:!1,interactive:!0,disableFocusListener:!0,disableHoverListener:!0,disableTouchListener:!0,placement:"bottom-start",classes:{popper:(e="paraui-text-field-select paraui-scrollbar-small",f&&(e+=" paraui-text-field-select-"+f),te&&(e+=" "+te),Ue.length>0&&(e+=" paraui-text-field-select-data"),e)}},{children:lt}));var e}),[ye,_e,J,ke,Oe,it,ot,h,j,O,_,P,R,be,se,ee,he,qe,Te,te,f,$,Ue,Z,xe]),ft=(0,o.useMemo)((function(){var e,t=Boolean(M||E||O);if("outside"===h&&t){return(0,r.jsx)(s.default,m({label:O,required:M,labelSign:E},S,{className:(e="text-field-label",S&&S.className&&(e+=" "+S.className),e)}))}return null}),[h,O,E,M,S]);return(0,r.jsxs)("div",m({className:(He="paraui-text-field",He+=" text-field",f&&!P&&(He+=" text-field-"+f),t&&(He+=" "+t),I&&(He+=" text-field-error"),_e&&(He+=" text-field-focus"),_&&(He+=" text-field-disabled"),P&&(He+=" text-field-multiline"),e.limitLength&&(He+=" text-field-limit-length"),e.limitLength&&Oe&&Oe.toString().length>e.limitLength&&(He+=" text-field-limit"),ae&&(He+=" text-field-resize"),tt()&&(He+=" text-field-value"),Z&&(He+=" text-field-allow-clear"),He),style:n},{children:[ft,(0,r.jsxs)("div",m({className:"text-field-content"},{children:[A&&(0,r.jsx)("div",m({className:"text-field-content-before",onClick:function(e){pe&&pe(e)}},{children:A})),ee?ut:lt,q&&(0,r.jsx)("div",m({className:"text-field-content-after",onClick:function(e){ve&&ve(e)}},{children:q}))]})),(0,r.jsx)(u.default,{className:"text-field-error-text",error:I,helperText:F})]}))},j=function(e){return(0,r.jsx)(i.default,{Com:y,comProps:e,comName:"TextField"})}},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,c=void 0===n?"top-start":n,l=e.arrow,s=void 0===l||l,u=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==c?void 0:c.includes("left"))||(null==c?void 0:c.includes("right")),"paraui-tooltip-top-bottom":(null==c?void 0:c.includes("top"))||(null==c?void 0:c.includes("bottom"))})});return(0,r.jsx)(i.Tooltip,a({},e,{arrow:s,placement:c,classes:f,PopperProps:a(a({},u),{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 c={};return function(){"use strict";a.r(c),a.d(c,{SingleBox:function(){return p}});var e=a(5893),t=a(8156),n=a(7953),r=a(8767),i=a(4254),o=a(4271),l=a.n(o),s=a(8344),u=a.n(s),f=(a(6894),function(){return f=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},f.apply(this,arguments)}),d=function(e,t,n){if(n||2===arguments.length)for(var r,i=0,o=t.length;i<o;i++)!r&&i in t||(r||(r=Array.prototype.slice.call(t,0,i)),r[i]=t[i]);return e.concat(r||Array.prototype.slice.call(t))},p=function(o){var a=o.className,c=o.style,s=o.size,p=void 0===s?"large":s,v=o.placeholder,h=void 0===v?"":v,x=o.label,b=void 0===x?"":x,m=o.labelTooltip,g=o.labelSign,y=o.disabled,j=void 0!==y&&y,w=o.required,O=void 0!==w&&w,S=o.error,N=void 0!==S&&S,_=o.helperText,C=void 0===_?"":_,P=o.value,k=o.onChange,M=o.fetchSuggestions,E=(0,t.useState)([]),T=E[0],R=E[1];(0,t.useEffect)((function(){void 0!==o.defaultValue&&R(d([],o.defaultValue,!0))}),[]),(0,t.useEffect)((function(){void 0!==P&&R(d([],P,!0))}),[P]);var z,I=function(e){return function(){j||(T.splice(e,1),void 0===o.value&&R(d([],T,!0)),k&&k(T))}},L=function(e){return function(t){T[e]=t.target.value,void 0===o.value&&R(d([],T,!0)),k&&k(T)}},F=function(e){return function(t){T[e]=t,"object"==typeof t&&null!==t&&(T[e]=t.value),void 0===o.value&&R(d([],T,!0)),k&&k(T)}};return(0,e.jsxs)("div",f({className:(z="paraui-single-box single-box",a&&(z+=" "+a),p&&(z+=" single-box-"+p),N&&(z+=" single-box-error"),j&&(z+=" single-box-disabled"),z),style:c},{children:[function(){if(!b&&!g)return null;var t;return(0,e.jsx)(r.default,f({label:b,required:O,labelSign:g},m,{className:(t="single-box-label",m&&m.className&&(t+=" "+m.className),t)}))}(),(0,e.jsx)("div",f({className:"single-box-content"},{children:T.map((function(t,r){return(0,e.jsxs)("div",f({className:"single-box-content-item"},{children:[(0,e.jsx)(n.default,{disabled:j,value:t,placeholder:h,size:p,onChange:L(r),fetchSuggestions:M,onSelect:F(r)}),(0,e.jsx)("span",f({className:"single-box-content-item-svg"},{children:(0,e.jsx)(u(),{onClick:I(r)})}))]}),r)}))})),(0,e.jsx)("div",f({className:"single-box-add",onClick:function(){j||(T.push(""),void 0===o.value&&R(d([],T,!0)),k&&k(T))}},{children:(0,e.jsx)(l(),{})})),(0,e.jsx)(i.default,{className:"single-box-error",error:N,helperText:C})]}))};c.default=p}(),c}()}));
package/Slider/index.d.ts DELETED
@@ -1,14 +0,0 @@
1
- /**
2
- * @author Hanz
3
- * @date 2022/3/7 下午3:52
4
- * @description
5
- */
6
- import { FunctionComponent } from 'react';
7
- import { SliderSingleProps, SliderRangeProps } from './interface';
8
- import './index.scss';
9
- export declare type Visibles = {
10
- [index: number]: boolean;
11
- };
12
- export declare const Slider: FunctionComponent<SliderSingleProps | SliderRangeProps>;
13
- export type { SliderSingleProps, SliderRangeProps };
14
- export default Slider;
package/Slider/index.js DELETED
@@ -1,15 +0,0 @@
1
- !function(r,e){"object"==typeof exports&&"object"==typeof module?module.exports=e(require("react"),require("rc-slider")):"function"==typeof define&&define.amd?define(["react","rc-slider"],e):"object"==typeof exports?exports.ParaUI=e(require("react"),require("rc-slider")):r.ParaUI=e(r.react,r["rc-slider"])}(self,(function(r,e){return function(){var t={8872:function(r,e,t){(e=t(3645)(!1)).push([r.id,".paraui-slider{position:relative;height:8px;padding:0;width:100%;border-radius:4px;touch-action:none;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.paraui-slider *{box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.paraui-slider-rail{position:absolute;width:100%;background-color:rgba(171,176,185,0.2);height:8px;border-radius:4px}.paraui-slider-track{position:absolute;left:0;height:8px;border-radius:4px;background-color:#3666d6}.paraui-slider-handle{position:absolute;width:16px;height:16px;cursor:pointer;margin-top:-4px;border-radius:50%;border:solid 2px #3666d6;background-color:#fff;touch-action:pan-x}.paraui-slider-handle-dragging{border-color:#3666d6;box-shadow:0 0 5px rgba(54,102,214,0.2);outline:2px solid rgba(54,102,214,0.2)}.paraui-slider-handle:focus{outline:none}.paraui-slider-handle-click-focused:focus{border-color:#3666d6;box-shadow:unset}.paraui-slider-handle:hover{border-color:#3666d6}.paraui-slider-handle:active{border-color:#3666d6;box-shadow:0 0 5px rgba(54,102,214,0.2);outline:2px solid rgba(54,102,214,0.2);cursor:grabbing}.paraui-slider-mark{position:absolute;top:18px;left:0;width:100%;font-size:12px}.paraui-slider-mark-text{position:absolute;display:inline-block;vertical-align:middle;text-align:center;cursor:pointer;color:#999}.paraui-slider-mark-text-active{color:#666}.paraui-slider-step{position:absolute;width:100%;height:8px;background:transparent}.paraui-slider-dot{position:absolute;bottom:-2px;margin-left:-4px;width:12px;height:12px;border:solid 2px rgba(171,176,185,0.4);background-color:#fff;cursor:pointer;border-radius:50%;vertical-align:middle}.paraui-slider-dot-active{border-color:#3666d6}.paraui-slider-dot-reverse{margin-right:-4px}.paraui-slider-disabled{background-color:#e9e9e9}.paraui-slider-disabled .paraui-slider-track{background-color:#ccc}.paraui-slider-disabled .paraui-slider-handle,.paraui-slider-disabled .paraui-slider-dot{border-color:#ccc;box-shadow:none;background-color:#fff;cursor:not-allowed}.paraui-slider-disabled .paraui-slider-mark-text,.paraui-slider-disabled .paraui-slider-dot{cursor:not-allowed !important}.paraui-slider-vertical{width:14px;height:100%;padding:0 5px}.paraui-slider-vertical .paraui-slider-rail{height:100%;width:4px}.paraui-slider-vertical .paraui-slider-track{left:5px;bottom:0;width:4px}.paraui-slider-vertical .paraui-slider-handle{margin-left:-6px;touch-action:pan-y}.paraui-slider-vertical .paraui-slider-mark{top:0;left:18px;height:100%}.paraui-slider-vertical .paraui-slider-step{height:100%;width:4px}.paraui-slider-vertical .paraui-slider-dot{left:0px;margin-bottom:-4px}.paraui-slider-vertical .paraui-slider-dot:first-child{margin-bottom:-4px}.paraui-slider-vertical .paraui-slider-dot:last-child{margin-bottom:-4px}.paraui-slider-tooltip-zoom-down-enter,.paraui-slider-tooltip-zoom-down-appear{animation-duration:0.3s;animation-fill-mode:both;display:block !important;animation-play-state:paused}.paraui-slider-tooltip-zoom-down-leave{animation-duration:0.3s;animation-fill-mode:both;display:block !important;animation-play-state:paused}.paraui-slider-tooltip-zoom-down-enter.paraui-slider-tooltip-zoom-down-enter-active,.paraui-slider-tooltip-zoom-down-appear.paraui-slider-tooltip-zoom-down-appear-active{animation-name:rcSliderTooltipZoomDownIn;animation-play-state:running}.paraui-slider-tooltip-zoom-down-leave.paraui-slider-tooltip-zoom-down-leave-active{animation-name:rcSliderTooltipZoomDownOut;animation-play-state:running}.paraui-slider-tooltip-zoom-down-enter,.paraui-slider-tooltip-zoom-down-appear{transform:scale(0, 0);animation-timing-function:cubic-bezier(0.23, 1, 0.32, 1)}.paraui-slider-tooltip-zoom-down-leave{animation-timing-function:cubic-bezier(0.755, 0.05, 0.855, 0.06)}@keyframes rcSliderTooltipZoomDownIn{0%{opacity:0;transform-origin:50% 100%;transform:scale(0, 0)}100%{transform-origin:50% 100%;transform:scale(1, 1)}}@keyframes rcSliderTooltipZoomDownOut{0%{transform-origin:50% 100%;transform:scale(1, 1)}100%{opacity:0;transform-origin:50% 100%;transform:scale(0, 0)}}.paraui-slider-tooltip{position:absolute;display:block;left:-9999px;top:-9999px;max-width:250px;z-index:1500;visibility:visible;box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.paraui-slider-tooltip *{box-sizing:border-box;-webkit-tap-highlight-color:rgba(0,0,0,0)}.paraui-slider-tooltip-hidden{display:none}.paraui-slider-tooltip-inner{min-width:24px;padding-bottom:3px;font-size:14px;line-height:1;color:rgba(46,55,67,0.7);text-align:center;text-decoration:none;background-color:transparent;border-radius:6px;white-space:nowrap;box-shadow:none}.paraui-slider-tooltip-arrow{display:none;position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.paraui-slider-tooltip-placement-top .paraui-slider-tooltip-arrow{bottom:4px;left:50%;margin-left:-4px;border-width:4px 4px 0;border-top-color:#6c6c6c}\n",""]),r.exports=e},3645:function(r){"use strict";r.exports=function(r){var e=[];return e.toString=function(){return this.map((function(e){var t=function(r,e){var t=r[1]||"",o=r[3];if(!o)return t;if(e&&"function"==typeof btoa){var i=(a=o,l=btoa(unescape(encodeURIComponent(JSON.stringify(a)))),s="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(l),"/*# ".concat(s," */")),n=o.sources.map((function(r){return"/*# sourceURL=".concat(o.sourceRoot||"").concat(r," */")}));return[t].concat(n).concat([i]).join("\n")}var a,l,s;return[t].join("\n")}(e,r);return e[2]?"@media ".concat(e[2]," {").concat(t,"}"):t})).join("")},e.i=function(r,t,o){"string"==typeof r&&(r=[[null,r,""]]);var i={};if(o)for(var n=0;n<this.length;n++){var a=this[n][0];null!=a&&(i[a]=!0)}for(var l=0;l<r.length;l++){var s=[].concat(r[l]);o&&i[s[0]]||(t&&(s[2]?s[2]="".concat(t," and ").concat(s[2]):s[2]=t),e.push(s))}},e}},7418:function(r){"use strict";
2
- /*
3
- object-assign
4
- (c) Sindre Sorhus
5
- @license MIT
6
- */var e=Object.getOwnPropertySymbols,t=Object.prototype.hasOwnProperty,o=Object.prototype.propertyIsEnumerable;function i(r){if(null==r)throw new TypeError("Object.assign cannot be called with null or undefined");return Object(r)}r.exports=function(){try{if(!Object.assign)return!1;var r=new String("abc");if(r[5]="de","5"===Object.getOwnPropertyNames(r)[0])return!1;for(var e={},t=0;t<10;t++)e["_"+String.fromCharCode(t)]=t;if("0123456789"!==Object.getOwnPropertyNames(e).map((function(r){return e[r]})).join(""))return!1;var o={};return"abcdefghijklmnopqrst".split("").forEach((function(r){o[r]=r})),"abcdefghijklmnopqrst"===Object.keys(Object.assign({},o)).join("")}catch(r){return!1}}()?Object.assign:function(r,n){for(var a,l,s=i(r),p=1;p<arguments.length;p++){for(var d in a=Object(arguments[p]))t.call(a,d)&&(s[d]=a[d]);if(e){l=e(a);for(var c=0;c<l.length;c++)o.call(a,l[c])&&(s[l[c]]=a[l[c]])}}return s}},5251:function(r,e,t){"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
- */
15
- t(7418);var o=t(8156),i=60103;if(60107,"function"==typeof Symbol&&Symbol.for){var n=Symbol.for;i=n("react.element"),n("react.fragment")}var a=o.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,l=Object.prototype.hasOwnProperty,s={key:!0,ref:!0,__self:!0,__source:!0};function p(r,e,t){var o,n={},p=null,d=null;for(o in void 0!==t&&(p=""+t),void 0!==e.key&&(p=""+e.key),void 0!==e.ref&&(d=e.ref),e)l.call(e,o)&&!s.hasOwnProperty(o)&&(n[o]=e[o]);if(r&&r.defaultProps)for(o in e=r.defaultProps)void 0===n[o]&&(n[o]=e[o]);return{$$typeof:i,type:r,key:p,ref:d,props:n,_owner:a.current}}e.jsx=p},5893:function(r,e,t){"use strict";r.exports=t(5251)},8677:function(r,e,t){var o=t(3379),i=t(8872);"string"==typeof(i=i.__esModule?i.default:i)&&(i=[[r.id,i,""]]);var n={insert:("body","body"),singleton:!1};o(i,n);r.exports=i.locals||{}},3379:function(r,e,t){"use strict";var o,i=function(){return void 0===o&&(o=Boolean(window&&document&&document.all&&!window.atob)),o},n=function(){var r={};return function(e){if(void 0===r[e]){var t=document.querySelector(e);if(window.HTMLIFrameElement&&t instanceof window.HTMLIFrameElement)try{t=t.contentDocument.head}catch(r){t=null}r[e]=t}return r[e]}}(),a=[];function l(r){for(var e=-1,t=0;t<a.length;t++)if(a[t].identifier===r){e=t;break}return e}function s(r,e){for(var t={},o=[],i=0;i<r.length;i++){var n=r[i],s=e.base?n[0]+e.base:n[0],p=t[s]||0,d="".concat(s," ").concat(p);t[s]=p+1;var c=l(d),u={css:n[1],media:n[2],sourceMap:n[3]};-1!==c?(a[c].references++,a[c].updater(u)):a.push({identifier:d,updater:h(u,e),references:1}),o.push(d)}return o}function p(r){var e=document.createElement("style"),o=r.attributes||{};if(void 0===o.nonce){var i=t.nc;i&&(o.nonce=i)}if(Object.keys(o).forEach((function(r){e.setAttribute(r,o[r])})),"function"==typeof r.insert)r.insert(e);else{var a=n(r.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(e)}return e}var d,c=(d=[],function(r,e){return d[r]=e,d.filter(Boolean).join("\n")});function u(r,e,t,o){var i=t?"":o.media?"@media ".concat(o.media," {").concat(o.css,"}"):o.css;if(r.styleSheet)r.styleSheet.cssText=c(e,i);else{var n=document.createTextNode(i),a=r.childNodes;a[e]&&r.removeChild(a[e]),a.length?r.insertBefore(n,a[e]):r.appendChild(n)}}function f(r,e,t){var o=t.css,i=t.media,n=t.sourceMap;if(i?r.setAttribute("media",i):r.removeAttribute("media"),n&&"undefined"!=typeof btoa&&(o+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(n))))," */")),r.styleSheet)r.styleSheet.cssText=o;else{for(;r.firstChild;)r.removeChild(r.firstChild);r.appendChild(document.createTextNode(o))}}var b=null,g=0;function h(r,e){var t,o,i;if(e.singleton){var n=g++;t=b||(b=p(e)),o=u.bind(null,t,n,!1),i=u.bind(null,t,n,!0)}else t=p(e),o=f.bind(null,t,e),i=function(){!function(r){if(null===r.parentNode)return!1;r.parentNode.removeChild(r)}(t)};return o(r),function(e){if(e){if(e.css===r.css&&e.media===r.media&&e.sourceMap===r.sourceMap)return;o(r=e)}else i()}}r.exports=function(r,e){(e=e||{}).singleton||"boolean"==typeof e.singleton||(e.singleton=i());var t=s(r=r||[],e);return function(r){if(r=r||[],"[object Array]"===Object.prototype.toString.call(r)){for(var o=0;o<t.length;o++){var i=l(t[o]);a[i].references--}for(var n=s(r,e),p=0;p<t.length;p++){var d=l(t[p]);0===a[d].references&&(a[d].updater(),a.splice(d,1))}t=n}}}},5968:function(r){"use strict";r.exports=e},8156:function(e){"use strict";e.exports=r}},o={};function i(r){var e=o[r];if(void 0!==e)return e.exports;var n=o[r]={id:r,exports:{}};return t[r](n,n.exports,i),n.exports}i.n=function(r){var e=r&&r.__esModule?function(){return r.default}:function(){return r};return i.d(e,{a:e}),e},i.d=function(r,e){for(var t in e)i.o(e,t)&&!i.o(r,t)&&Object.defineProperty(r,t,{enumerable:!0,get:e[t]})},i.o=function(r,e){return Object.prototype.hasOwnProperty.call(r,e)},i.r=function(r){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(r,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(r,"__esModule",{value:!0})};var n={};return function(){"use strict";i.r(n),i.d(n,{Slider:function(){return p}});var r=i(5893),e=i(8156),t=i.n(e),o=i(5968),a=i.n(o),l=(i(8677),function(){return l=Object.assign||function(r){for(var e,t=1,o=arguments.length;t<o;t++)for(var i in e=arguments[t])Object.prototype.hasOwnProperty.call(e,i)&&(r[i]=e[i]);return r},l.apply(this,arguments)}),s=function(r,e){var t={};for(var o in r)Object.prototype.hasOwnProperty.call(r,o)&&e.indexOf(o)<0&&(t[o]=r[o]);if(null!=r&&"function"==typeof Object.getOwnPropertySymbols){var i=0;for(o=Object.getOwnPropertySymbols(r);i<o.length;i++)e.indexOf(o[i])<0&&Object.prototype.propertyIsEnumerable.call(r,o[i])&&(t[o[i]]=r[o[i]])}return t},p=function(e){var i,n=e.range,p=e.step,d=s(e,["range","step"]),c="paraui-slider",u="paraui-slider-tooltip";"object"==typeof n&&(i=n.draggableTrack);var f=t().useState({}),b=f[0],g=f[1],h=function(r,e){g((function(t){var o;return l(l({},t),((o={})[r]=e,o))}))},m=function(r,e){return r||(e?"right":"top")},v=function(r){return"number"==typeof r?r.toString():""},x=function(t){var i=t.tooltipPrefixCls,n=t.info,a=n.value,p=n.index,d=n.dragging,c=s(n,["value","index","dragging"]),u=e.tipFormatter,f=void 0===u?v:u,g=e.tooltipVisible,x=e.tooltipPlacement,y=e.getTooltipPopupContainer,w=void 0===y?function(r){return r}:y,O=e.vertical,j=!!f&&(b[p]||d),k=g||void 0===g&&j;return(0,r.jsx)(o.SliderTooltip,l({prefixCls:i,overlay:f?f(a):"",visible:k,placement:m(x,O),getTooltipContainer:w,destroyTooltipOnHide:!0},{children:(0,r.jsx)(o.Handle,l({},c,{value:a,onMouseEnter:function(){return h(p,!0)},onMouseLeave:function(){return h(p,!1)}}))}),p)};return n?(0,r.jsx)(o.Range,l({},d,{step:p,pushable:d.pushable,draggableTrack:i,handle:function(r){return x({tooltipPrefixCls:u,info:r})},prefixCls:c})):(0,r.jsx)(a(),l({},d,{step:p,handle:function(r){return x({tooltipPrefixCls:u,info:r})},prefixCls:c}))};n.default=p}(),n}()}));
@@ -1,102 +0,0 @@
1
- /**
2
- * @author Hanz
3
- * @date 2021/11/5 下午4:05
4
- * @description
5
- */
6
- import React from "react";
7
- export declare type TooltipPlacement = 'top' | 'left' | 'right' | 'bottom' | 'topLeft' | 'topRight' | 'bottomLeft' | 'bottomRight' | 'leftTop' | 'leftBottom' | 'rightTop' | 'rightBottom';
8
- interface SliderRange {
9
- draggableTrack?: boolean;
10
- }
11
- export interface SliderMarks {
12
- [key: number]: React.ReactNode | {
13
- style: React.CSSProperties;
14
- label: React.ReactNode;
15
- };
16
- }
17
- export interface HandleGeneratorInfo {
18
- value?: number;
19
- dragging?: boolean;
20
- index: number;
21
- }
22
- export declare type HandleGeneratorFn = (config: {
23
- tooltipPrefixCls?: string;
24
- info: HandleGeneratorInfo;
25
- }) => React.ReactElement;
26
- export interface SliderBaseProps {
27
- /** 反向坐标 */
28
- reverse?: boolean;
29
- /** 最小值 */
30
- min?: number;
31
- /** 最大值 */
32
- max?: number;
33
- /** 步长,取值必须大于 0,并且可被 (max - min) 整除,
34
- * 当 marks 不为空对象时,
35
- * 可以设置 step 为 null,
36
- * 此时 Slider 的可选值仅有 marks 标出来的部分
37
- */
38
- step?: null | number;
39
- /** 刻度标记,key 的类型必须为 number
40
- * 且取值在闭区间 [min, max] 内,每个标签可以单独设置样式
41
- */
42
- marks?: SliderMarks;
43
- /** 是否只能拖拽到刻度上 */
44
- dots?: boolean;
45
- /** marks 不为空对象时有效,值为 true 时表示值为包含关系,false 表示并列 */
46
- included?: boolean;
47
- /** 禁用状态 */
48
- disabled?: boolean;
49
- /** 垂直方向 */
50
- vertical?: boolean;
51
- /** 提示格式化回调 */
52
- tipFormatter?: null | ((value?: number) => React.ReactNode);
53
- /** 类名 */
54
- className?: string;
55
- /** style */
56
- style?: React.CSSProperties;
57
- /** tooltip 是否始终显示 */
58
- tooltipVisible?: boolean;
59
- /** tooltip 显示位置 */
60
- tooltipPlacement?: TooltipPlacement;
61
- /** tooltip 挂载节点 */
62
- getTooltipPopupContainer?: (triggerNode: HTMLElement) => HTMLElement;
63
- /** 是否获得焦点 */
64
- autoFocus?: boolean;
65
- }
66
- export interface SliderSingleProps extends SliderBaseProps {
67
- /** 非范围slider */
68
- range?: false;
69
- /** 当前值 */
70
- value?: number;
71
- /** 默认值 */
72
- defaultValue?: number;
73
- /** 值变化时回调 */
74
- onChange?: (value: number) => void;
75
- /** 值变化后回调 */
76
- onAfterChange?: (value: number) => void;
77
- /** handle 样式 */
78
- handleStyle?: React.CSSProperties;
79
- /** 轨道样式 */
80
- trackStyle?: React.CSSProperties;
81
- }
82
- export interface SliderRangeProps extends SliderBaseProps {
83
- /** 范围slider */
84
- range: true | SliderRange;
85
- /** 当前值 */
86
- value?: number[];
87
- /** 默认值 */
88
- defaultValue?: number[];
89
- /** 值变化时回调 */
90
- onChange?: (value: number[]) => void;
91
- /** 值变化后回调 */
92
- onAfterChange?: (value: number[]) => void;
93
- /** handle 样式 */
94
- handleStyle?: React.CSSProperties[];
95
- /** 轨道样式 */
96
- trackStyle?: React.CSSProperties[];
97
- /** 允许跨越 */
98
- allowCross?: boolean;
99
- /** 允许推动 */
100
- pushable?: boolean | number;
101
- }
102
- export {};
package/Split/index.d.ts DELETED
@@ -1,7 +0,0 @@
1
- import { FunctionComponent } from "react";
2
- import "./style/index.scss";
3
- interface SplitProps {
4
- minWidth?: number;
5
- }
6
- declare const Split: FunctionComponent<SplitProps>;
7
- export default Split;
package/Split/index.js DELETED
@@ -1,15 +0,0 @@
1
- !function(e,t){"object"==typeof exports&&"object"==typeof module?module.exports=t(require("react")):"function"==typeof define&&define.amd?define(["react"],t):"object"==typeof exports?exports.ParaUI=t(require("react")):e.ParaUI=t(e.react)}(self,(function(e){return function(){var t={4941:function(e,t,n){(t=n(3645)(!1)).push([e.id,".para-split{display:flex;min-height:200px;-webkit-user-select:none;user-select:none}.para-split-left{background-color:#ffffff;position:relative;min-width:201px}.para-split-left .para-split-separator{display:flex;justify-content:center;align-items:center;position:absolute;top:0;right:0;width:6px;height:100%;background-color:white;box-shadow:0 0 2px rgba(0,0,0,0.35);cursor:col-resize}.para-split-left .para-split-separator i{display:inline-block;height:14px;width:1px;background-color:#e9e9e9;margin:0 1px}.para-split-left-content{padding:20px 34px 20px 20px}.para-split .para-split-right{background-color:#ffffff;flex:1}.para-split .para-split-right-content{padding: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=e[1]||"",r=e[3];if(!r)return n;if(t&&"function"==typeof btoa){var o=(a=r,c=btoa(unescape(encodeURIComponent(JSON.stringify(a)))),s="sourceMappingURL=data:application/json;charset=utf-8;base64,".concat(c),"/*# ".concat(s," */")),i=r.sources.map((function(e){return"/*# sourceURL=".concat(r.sourceRoot||"").concat(e," */")}));return[n].concat(i).concat([o]).join("\n")}var a,c,s;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 o={};if(r)for(var i=0;i<this.length;i++){var a=this[i][0];null!=a&&(o[a]=!0)}for(var c=0;c<e.length;c++){var s=[].concat(e[c]);r&&o[s[0]]||(n&&(s[2]?s[2]="".concat(n," and ").concat(s[2]):s[2]=n),t.push(s))}},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 o(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,i){for(var a,c,s=o(e),u=1;u<arguments.length;u++){for(var l in a=Object(arguments[u]))n.call(a,l)&&(s[l]=a[l]);if(t){c=t(a);for(var f=0;f<c.length;f++)r.call(a,c[f])&&(s[c[f]]=a[c[f]])}}return s}},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
- */
15
- n(7418);var r=n(8156),o=60103;if(60107,"function"==typeof Symbol&&Symbol.for){var i=Symbol.for;o=i("react.element"),i("react.fragment")}var a=r.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.ReactCurrentOwner,c=Object.prototype.hasOwnProperty,s={key:!0,ref:!0,__self:!0,__source:!0};function u(e,t,n){var r,i={},u=null,l=null;for(r in void 0!==n&&(u=""+n),void 0!==t.key&&(u=""+t.key),void 0!==t.ref&&(l=t.ref),t)c.call(t,r)&&!s.hasOwnProperty(r)&&(i[r]=t[r]);if(e&&e.defaultProps)for(r in t=e.defaultProps)void 0===i[r]&&(i[r]=t[r]);return{$$typeof:o,type:e,key:u,ref:l,props:i,_owner:a.current}}t.jsx=u,t.jsxs=u},5893:function(e,t,n){"use strict";e.exports=n(5251)},6333:function(e,t,n){var r=n(3379),o=n(4941);"string"==typeof(o=o.__esModule?o.default:o)&&(o=[[e.id,o,""]]);var i={insert:("body","body"),singleton:!1};r(o,i);e.exports=o.locals||{}},3379:function(e,t,n){"use strict";var r,o=function(){return void 0===r&&(r=Boolean(window&&document&&document.all&&!window.atob)),r},i=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 c(e){for(var t=-1,n=0;n<a.length;n++)if(a[n].identifier===e){t=n;break}return t}function s(e,t){for(var n={},r=[],o=0;o<e.length;o++){var i=e[o],s=t.base?i[0]+t.base:i[0],u=n[s]||0,l="".concat(s," ").concat(u);n[s]=u+1;var f=c(l),p={css:i[1],media:i[2],sourceMap:i[3]};-1!==f?(a[f].references++,a[f].updater(p)):a.push({identifier:l,updater:m(p,t),references:1}),r.push(l)}return r}function u(e){var t=document.createElement("style"),r=e.attributes||{};if(void 0===r.nonce){var o=n.nc;o&&(r.nonce=o)}if(Object.keys(r).forEach((function(e){t.setAttribute(e,r[e])})),"function"==typeof e.insert)e.insert(t);else{var a=i(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 l,f=(l=[],function(e,t){return l[e]=t,l.filter(Boolean).join("\n")});function p(e,t,n,r){var o=n?"":r.media?"@media ".concat(r.media," {").concat(r.css,"}"):r.css;if(e.styleSheet)e.styleSheet.cssText=f(t,o);else{var i=document.createTextNode(o),a=e.childNodes;a[t]&&e.removeChild(a[t]),a.length?e.insertBefore(i,a[t]):e.appendChild(i)}}function d(e,t,n){var r=n.css,o=n.media,i=n.sourceMap;if(o?e.setAttribute("media",o):e.removeAttribute("media"),i&&"undefined"!=typeof btoa&&(r+="\n/*# sourceMappingURL=data:application/json;base64,".concat(btoa(unescape(encodeURIComponent(JSON.stringify(i))))," */")),e.styleSheet)e.styleSheet.cssText=r;else{for(;e.firstChild;)e.removeChild(e.firstChild);e.appendChild(document.createTextNode(r))}}var v=null,h=0;function m(e,t){var n,r,o;if(t.singleton){var i=h++;n=v||(v=u(t)),r=p.bind(null,n,i,!1),o=p.bind(null,n,i,!0)}else n=u(t),r=d.bind(null,n,t),o=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 o()}}e.exports=function(e,t){(t=t||{}).singleton||"boolean"==typeof t.singleton||(t.singleton=o());var n=s(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 o=c(n[r]);a[o].references--}for(var i=s(e,t),u=0;u<n.length;u++){var l=c(n[u]);0===a[l].references&&(a[l].updater(),a.splice(l,1))}n=i}}}},8156:function(t){"use strict";t.exports=e}},n={};function r(e){var o=n[e];if(void 0!==o)return o.exports;var i=n[e]={id:e,exports:{}};return t[e](i,i.exports,r),i.exports}r.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return r.d(t,{a:t}),t},r.d=function(e,t){for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},r.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})};var o={};return function(){"use strict";r.r(o);var e=r(5893),t=r(8156),n=r.n(t),i=(r(6333),function(){return i=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var o in t=arguments[n])Object.prototype.hasOwnProperty.call(t,o)&&(e[o]=t[o]);return e},i.apply(this,arguments)});o.default=function(t){var r,o,a,c=t.minWidth,s=void 0===c?200:c,u=t.children,l=n().useRef(null),f=n().useRef(null),p=n().useRef(null),d=n().useState({left:null,right:null}),v=d[0],h=d[1],m=function(e){r=e.clientX,a=g(p.current),o=g(f.current),document.documentElement.addEventListener("mousemove",b),document.documentElement.addEventListener("mouseup",y)},b=function(e){var t=o+e.clientX-r;a-t<=s||t<=s||(f.current.style.width=t+"px")},y=function(e){document.documentElement.removeEventListener("mousemove",b),document.documentElement.removeEventListener("mouseup",y)},g=function(e){return parseInt(e.getBoundingClientRect().width,10)};return n().useEffect((function(){var e;l.current&&(null===(e=l.current)||void 0===e||e.addEventListener("mousedown",m))}),[l]),n().useEffect((function(){if(u&&"object"==typeof u&&h({left:u,right:null}),u&&Array.isArray(u)){var e=u.slice(0,Math.floor(u.length/2)),t=u.slice(Math.floor(u.length/2),u.length);h({left:e,right:t})}}),[u]),(0,e.jsxs)("div",i({className:"para-split",ref:p},{children:[(0,e.jsxs)("div",i({className:"para-split-left"},{children:[(0,e.jsx)("div",i({className:"para-split-left-content",ref:f},{children:v.left})),(0,e.jsxs)("div",i({className:"para-split-separator",ref:l},{children:[(0,e.jsx)("i",{}),(0,e.jsx)("i",{})]}))]})),(0,e.jsx)("div",i({className:"para-split-right"},{children:(0,e.jsx)("div",i({className:"para-split-right-content"},{children:v.right}))}))]}))}}(),o}()}));
@@ -1,5 +0,0 @@
1
- import React from 'react';
2
- declare const Icons: {
3
- [index: string]: React.ReactElement;
4
- };
5
- export default Icons;
@@ -1,39 +0,0 @@
1
- /**
2
- * @author Hanz
3
- * @date 2021/8/4 上午11:26
4
- * @description 步骤条
5
- */
6
- import { FunctionComponent, ReactNode } from 'react';
7
- import { StepperProps as MuiStepperProps } from "@material-ui/core";
8
- import './index.scss';
9
- declare type StepItem = string | {
10
- label: string;
11
- icon: ReactNode;
12
- };
13
- export interface StepperProps extends Omit<MuiStepperProps, 'children' | 'connector' | 'nonLinear'> {
14
- /**
15
- * 模式
16
- * 数字或图标
17
- */
18
- mode?: 'number' | 'icon';
19
- /**
20
- * 当前步骤
21
- */
22
- activeStep?: number;
23
- /**
24
- * 步骤条水平或垂直
25
- */
26
- orientation?: 'horizontal' | 'vertical';
27
- /**
28
- * 标签位置 下方或右侧
29
- */
30
- alternativeLabel?: boolean;
31
- /**
32
- * 步骤条数据
33
- * number : Array<string>
34
- * icon : Array<{ label: string, icon: ReactNode }>
35
- */
36
- steps?: Array<StepItem>;
37
- }
38
- export declare const Stepper: FunctionComponent<StepperProps>;
39
- export default Stepper;