@unicom-cloud/ui 0.8.43 → 0.8.45

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 (495) hide show
  1. package/Affix.js +54 -51
  2. package/Alert.js +46 -43
  3. package/Anchor.js +5 -4
  4. package/AutoComplete.js +60 -55
  5. package/Avatar.js +10 -155
  6. package/BackTop.js +41 -38
  7. package/Badge.js +63 -93
  8. package/Breadcrumb.js +63 -118
  9. package/Button.js +105 -109
  10. package/Calendar.js +139 -536
  11. package/Card.js +65 -101
  12. package/Carousel.js +169 -270
  13. package/Cascader.js +9 -8
  14. package/Checkbox.js +4 -3
  15. package/Collapse.js +4 -3
  16. package/ColorPicker.js +95 -546
  17. package/Comment.js +14 -12
  18. package/ConfigProvider.js +6 -5
  19. package/Copy.js +33 -31
  20. package/DatePicker.js +35 -1993
  21. package/Descriptions.js +30 -28
  22. package/Divider.js +8 -6
  23. package/Draggable.js +28 -85
  24. package/Drawer.js +5 -4
  25. package/Dropdown.js +107 -167
  26. package/Empty.js +28 -8
  27. package/Form.js +30 -1418
  28. package/Grid.js +13 -248
  29. package/Icon.js +19 -45
  30. package/IconHover.js +39 -6
  31. package/Image.js +3 -3
  32. package/Input.js +4 -4
  33. package/InputNumber.js +213 -17
  34. package/InputTag.js +5 -4
  35. package/Layout.js +35 -48
  36. package/Link.js +16 -14
  37. package/List.js +191 -228
  38. package/Loading.js +18 -17
  39. package/Mentions.js +99 -115
  40. package/Menu.js +8 -7
  41. package/Message.js +147 -10
  42. package/Modal.js +5 -4
  43. package/Notice.js +196 -13
  44. package/Notification.js +136 -11
  45. package/NotificationBase.js +5 -4
  46. package/OverflowEllipsis.js +48 -71
  47. package/PageHeader.js +52 -52
  48. package/Pagination.js +12 -11
  49. package/Picker.js +6 -4
  50. package/Popconfirm.js +47 -44
  51. package/Popover.js +25 -23
  52. package/Portal.js +12 -32
  53. package/Progress.js +65 -328
  54. package/Radio.js +6 -5
  55. package/Rate.js +48 -45
  56. package/ResizeBox.js +127 -505
  57. package/Result.js +60 -1417
  58. package/Select.js +9 -8
  59. package/SelectView.js +49 -328
  60. package/Skeleton.js +41 -78
  61. package/Slider.js +228 -702
  62. package/Space.js +53 -57
  63. package/Spin.js +57 -72
  64. package/Statistic.js +84 -153
  65. package/Steps.js +64 -123
  66. package/SuspenseFallbackTest.js +4 -3
  67. package/Switch.js +41 -38
  68. package/Table.js +20 -1999
  69. package/Tabs.js +9 -8
  70. package/Tag.js +24 -21
  71. package/TimePicker.js +19 -272
  72. package/Timeline.js +4 -3
  73. package/Tooltip.js +79 -72
  74. package/Transfer.js +138 -402
  75. package/Tree.js +5 -4
  76. package/TreeSelect.js +8 -7
  77. package/Trigger.js +407 -571
  78. package/Typography.js +11 -721
  79. package/Upload.js +9 -8
  80. package/VerificationCode.js +6 -5
  81. package/Version.js +1 -1
  82. package/VirtualList.js +4 -3
  83. package/Watermark.js +3 -2
  84. package/anchor/Anchor.js +193 -0
  85. package/anchor/Link.js +54 -0
  86. package/anchor/context.js +14 -0
  87. package/anchor/util.js +41 -0
  88. package/avatar/Avatar.js +85 -0
  89. package/avatar/Group.js +84 -0
  90. package/avatar/context.js +5 -0
  91. package/badge/Count.js +35 -0
  92. package/breadcrumb/Item.js +67 -0
  93. package/button/Group.js +15 -0
  94. package/calendar/Month.js +142 -0
  95. package/calendar/WeekList.js +24 -0
  96. package/calendar/Year.js +75 -0
  97. package/calendar/header/Panel.js +57 -0
  98. package/calendar/header/index.js +118 -0
  99. package/calendar/hook/useCellClassName.js +41 -0
  100. package/card/Grid.js +27 -0
  101. package/card/Meta.js +32 -0
  102. package/carousel/Arrow.js +57 -0
  103. package/carousel/Indicator.js +68 -0
  104. package/cascader/Cascader.js +300 -0
  105. package/cascader/base/node.js +142 -0
  106. package/cascader/base/store.js +93 -0
  107. package/cascader/hook/useRefCurrent.js +12 -0
  108. package/cascader/panel/List.js +275 -0
  109. package/cascader/panel/Option.js +35 -0
  110. package/cascader/panel/Search.js +171 -0
  111. package/cascader/util.js +66 -0
  112. package/checkbox/Checkbox.js +111 -0
  113. package/checkbox/Group.js +97 -0
  114. package/checkbox/useCheckbox.js +45 -0
  115. package/collapse/Collapse.js +90 -0
  116. package/collapse/Item.js +165 -0
  117. package/color-picker/ControlBar.js +64 -0
  118. package/color-picker/InputAlpha.js +24 -0
  119. package/color-picker/InputHex.js +59 -0
  120. package/color-picker/InputRgb.js +66 -0
  121. package/color-picker/Palette.js +36 -0
  122. package/color-picker/Panel.js +165 -0
  123. package/color-picker/colors.js +37 -0
  124. package/color-picker/hooks/useColorPicker.js +63 -0
  125. package/color-picker/hooks/useControlBlock.js +40 -0
  126. package/config-provider/ConfigProvider.js +94 -0
  127. package/config-provider/context.js +24 -0
  128. package/date-picker/Picker.js +399 -0
  129. package/date-picker/PickerRange.js +568 -0
  130. package/date-picker/context.js +5 -0
  131. package/date-picker/hook/useCellClassName.js +58 -0
  132. package/date-picker/panel/Body.js +78 -0
  133. package/date-picker/panel/Footer.js +71 -0
  134. package/date-picker/panel/Header.js +74 -0
  135. package/date-picker/panel/Shortcut.js +45 -0
  136. package/date-picker/panel/WeekList.js +19 -0
  137. package/date-picker/panel/date/index.js +194 -0
  138. package/date-picker/panel/month/index.js +113 -0
  139. package/date-picker/panel/quarter/index.js +93 -0
  140. package/date-picker/panel/range/index.js +251 -0
  141. package/date-picker/panel/week/index.js +35 -0
  142. package/date-picker/panel/year/index.js +74 -0
  143. package/date-picker/util.js +69 -0
  144. package/draggable/Item.js +66 -0
  145. package/drawer/Drawer.js +226 -0
  146. package/dropdown/Button.js +91 -0
  147. package/form/Control.js +264 -0
  148. package/form/Form.js +156 -0
  149. package/form/FormItem.js +241 -0
  150. package/form/FormLabel.js +54 -0
  151. package/form/FormList.js +96 -0
  152. package/form/FormProvider.js +48 -0
  153. package/form/IconSymbol.js +20 -0
  154. package/form/context.js +43 -0
  155. package/form/hook/useContext.js +32 -0
  156. package/form/hook/useState.js +31 -0
  157. package/form/hook/useWatch.js +36 -0
  158. package/form/interface.js +11 -0
  159. package/form/promisify.js +23 -0
  160. package/form/store.js +354 -0
  161. package/form/useForm.js +53 -0
  162. package/form/util.js +72 -0
  163. package/grid/Col.js +87 -0
  164. package/grid/Row.js +88 -0
  165. package/grid/context.js +9 -0
  166. package/grid/grid-item.js +77 -0
  167. package/grid/grid.js +104 -0
  168. package/grid/hook/useResponsiveState.js +38 -0
  169. package/grid/util.js +51 -0
  170. package/{chunk/I4RV9SKZ.js → hooks/factory/createHTMLMediaHook.js} +35 -43
  171. package/hooks/index.js +246 -4
  172. package/{chunk/BdYAMaw9.js → hooks/misc/hookState.js} +1 -1
  173. package/hooks/misc/parseTimeRanges.js +12 -0
  174. package/{chunk/TXCrI0jN.js → hooks/misc/util.js} +6 -6
  175. package/hooks/use-watermark/utils.js +8 -0
  176. package/hooks/use-watermark.js +71 -76
  177. package/hooks/useAudio.js +3 -3
  178. package/hooks/useBeforeUnload.js +2 -2
  179. package/hooks/useClickAway.js +10 -10
  180. package/hooks/useCounter.js +1 -1
  181. package/hooks/useCreation.js +2 -4
  182. package/hooks/useDrop.js +12 -12
  183. package/hooks/useDropArea.js +5 -5
  184. package/hooks/useEvent.js +6 -6
  185. package/hooks/useEventListener.js +2 -4
  186. package/hooks/useFavicon.js +1 -2
  187. package/hooks/useFullscreen.js +11 -13
  188. package/hooks/useGetSet.js +5 -5
  189. package/hooks/useHash.js +6 -6
  190. package/hooks/useHover.js +6 -6
  191. package/hooks/useHoverDirty.js +7 -7
  192. package/hooks/useIdle.js +17 -17
  193. package/hooks/useIsomorphicLayoutEffect2.js +3 -3
  194. package/hooks/useKey.js +5 -5
  195. package/hooks/useList.js +1 -1
  196. package/hooks/useLocalStorage.js +2 -3
  197. package/hooks/useLocation.js +1 -1
  198. package/hooks/useLockBodyScroll.js +13 -14
  199. package/hooks/useLongPress.js +7 -7
  200. package/hooks/useMeasure.js +3 -3
  201. package/hooks/useMedia.js +4 -4
  202. package/hooks/useMediaDevices.js +10 -10
  203. package/hooks/useMotion.js +11 -11
  204. package/hooks/useMouse.js +9 -9
  205. package/hooks/useMouseWheel.js +7 -7
  206. package/hooks/useNetworkState.js +7 -7
  207. package/hooks/useOrientation.js +10 -11
  208. package/hooks/useOverrideRef.js +14 -0
  209. package/hooks/usePageLeave.js +4 -4
  210. package/hooks/usePermission.js +9 -9
  211. package/hooks/usePersistCallback.js +15 -0
  212. package/hooks/useScroll.js +6 -6
  213. package/hooks/useScrolling.js +7 -7
  214. package/hooks/useSearchParam.js +5 -5
  215. package/hooks/useSessionStorage.js +9 -9
  216. package/hooks/useSize.js +1 -1
  217. package/hooks/useSlider.js +6 -6
  218. package/hooks/useStartTyping.js +4 -4
  219. package/hooks/useStateList.js +4 -5
  220. package/hooks/useStateWithHistory.js +1 -1
  221. package/hooks/useTimeout.js +1 -2
  222. package/hooks/useVibrate.js +5 -5
  223. package/hooks/useVideo.js +3 -3
  224. package/hooks/useWindowScroll.js +13 -13
  225. package/hooks/useWindowSize.js +6 -6
  226. package/icon/addFromIconFontCn.js +33 -0
  227. package/image/Image.js +189 -0
  228. package/image/ImageFooter.js +45 -0
  229. package/image/ImagePreview.js +473 -0
  230. package/image/ImagePreviewArrow.js +40 -0
  231. package/image/ImagePreviewGroup.js +125 -0
  232. package/image/ImagePreviewToolbar.js +98 -0
  233. package/image/TriggerForToolbar.js +10 -0
  234. package/image/previewGroupContext.js +17 -0
  235. package/image/util/getFixTranslate.js +7 -0
  236. package/image/util/getScale.js +72 -0
  237. package/image/util/hook/useImageStatus.js +16 -0
  238. package/image/util/hook/useShowFooter.js +7 -0
  239. package/index.js +440 -395
  240. package/input/Group.js +20 -0
  241. package/input/Input.js +185 -0
  242. package/input/InputElement.js +233 -0
  243. package/input/Number.js +4 -0
  244. package/input/Password.js +72 -0
  245. package/input/Search.js +80 -0
  246. package/input/Tag.js +7 -0
  247. package/input/Textarea.js +168 -0
  248. package/input/autoSizeTextAreaHeight.js +65 -0
  249. package/input/useComposition.js +39 -0
  250. package/input-number/decimal.js +154 -0
  251. package/input-number/useSelectionRange.js +26 -0
  252. package/input-number/util.js +57 -0
  253. package/input-tag/InputTag.js +381 -0
  254. package/layout/Content.js +15 -0
  255. package/layout/Footer.js +15 -0
  256. package/layout/Header.js +15 -0
  257. package/{chunk/B9asjXwm.js → layout/Sider.js} +23 -22
  258. package/list/Item.js +46 -0
  259. package/list/Meta.js +21 -0
  260. package/loading/style/index.module.less.js +4 -0
  261. package/locale/de-DE.js +1 -1
  262. package/mentions/util.js +26 -0
  263. package/menu/Indent.js +17 -0
  264. package/menu/Item.js +125 -0
  265. package/menu/ItemGroup.js +39 -0
  266. package/menu/Menu.js +181 -0
  267. package/menu/OverflowWrap.js +85 -0
  268. package/menu/context.js +5 -0
  269. package/menu/sub-menu/Inline.js +111 -0
  270. package/menu/sub-menu/Pop.js +126 -0
  271. package/menu/sub-menu/index.js +17 -0
  272. package/menu/util.js +80 -0
  273. package/message/useMessage.js +53 -0
  274. package/modal/Confirm.js +98 -0
  275. package/modal/Modal.js +419 -0
  276. package/modal/config.js +25 -0
  277. package/modal/use-modal/Hook.js +55 -0
  278. package/modal/use-modal/index.js +68 -0
  279. package/notification/useNotification.js +55 -0
  280. package/overflow-ellipsis/OverflowItem.js +34 -0
  281. package/package.json +27 -1
  282. package/pagination/PageItem.js +121 -0
  283. package/pagination/PageJumper.js +64 -0
  284. package/pagination/PageOption.js +55 -0
  285. package/pagination/Pagination.js +245 -0
  286. package/picker/Input.js +124 -0
  287. package/picker/InputRange.js +155 -0
  288. package/portal/Portal.js +25 -0
  289. package/progress/CircleProgress.js +117 -0
  290. package/progress/LineProgess.js +103 -0
  291. package/progress/StepProgress.js +74 -0
  292. package/radio/Group.js +91 -0
  293. package/radio/Radio.js +90 -0
  294. package/resize-box/ResizeTrigger.js +78 -0
  295. package/resize-box/Split.js +132 -0
  296. package/resize-box/SplitGroup.js +204 -0
  297. package/result/403.js +695 -0
  298. package/result/404.js +513 -0
  299. package/result/500.js +166 -0
  300. package/select/OptGroup.js +20 -0
  301. package/select/Option.js +97 -0
  302. package/select/Select.js +544 -0
  303. package/select/util.js +140 -0
  304. package/select-view/Core.js +309 -0
  305. package/skeleton/Image.js +24 -0
  306. package/skeleton/Text.js +27 -0
  307. package/slider/Button.js +159 -0
  308. package/slider/Dot.js +43 -0
  309. package/slider/Input.js +75 -0
  310. package/slider/Mark.js +28 -0
  311. package/slider/Tick.js +44 -0
  312. package/slider/hook/useInterval.js +73 -0
  313. package/slider/hook/useLegalValue.js +70 -0
  314. package/slider/util.js +63 -0
  315. package/space/toArray.js +11 -0
  316. package/spin/DotLoading.js +26 -0
  317. package/statistic/Countdown.js +57 -0
  318. package/statistic/util.js +33 -0
  319. package/steps/Step.js +68 -0
  320. package/style.css +1 -1
  321. package/table/ColGroup.js +59 -0
  322. package/table/Table.js +634 -0
  323. package/table/constant.js +5 -0
  324. package/table/hook/useColumns.js +141 -0
  325. package/table/hook/useComponent.js +64 -0
  326. package/table/hook/useExpand.js +36 -0
  327. package/table/hook/useRowSelection.js +92 -0
  328. package/table/hook/useSorter.js +54 -0
  329. package/table/hook/useStickyClassNames.js +30 -0
  330. package/table/hook/useStickyOffsets.js +30 -0
  331. package/table/summary/Cell.js +10 -0
  332. package/table/summary/Row.js +26 -0
  333. package/table/summary/context.js +5 -0
  334. package/table/summary/index.js +10 -0
  335. package/table/tbody/Td.js +160 -0
  336. package/table/tbody/Tr.js +168 -0
  337. package/table/tbody/index.js +156 -0
  338. package/table/tfoot/index.js +16 -0
  339. package/table/thead/Column.js +250 -0
  340. package/table/thead/index.js +131 -0
  341. package/table/util.js +121 -0
  342. package/tabs/Tab.js +170 -0
  343. package/tabs/TabContent.js +54 -0
  344. package/tabs/TabPane.js +26 -0
  345. package/tabs/hook/useDomSize.js +17 -0
  346. package/tabs/hook/useHeaderScroll.js +64 -0
  347. package/tabs/tab-header/DropdownIcon.js +71 -0
  348. package/tabs/tab-header/TabInk.js +65 -0
  349. package/tabs/tab-header/TabNavIcon.js +65 -0
  350. package/tabs/tab-header/TabTitle.js +78 -0
  351. package/tabs/tab-header/index.js +335 -0
  352. package/tabs/util.js +22 -0
  353. package/time-picker/Picker.js +221 -0
  354. package/time-picker/RangePicker.js +56 -0
  355. package/time-picker/TimeColumn.js +65 -0
  356. package/time-picker/TimePicker.js +242 -0
  357. package/time-picker/context.js +5 -0
  358. package/time-picker/util.js +43 -0
  359. package/timeline/Item.js +94 -0
  360. package/timeline/Timeline.js +80 -0
  361. package/transfer/Item.js +107 -0
  362. package/transfer/List.js +192 -0
  363. package/tree/Animation.js +104 -0
  364. package/tree/Context.js +5 -0
  365. package/tree/Node.js +215 -0
  366. package/tree/NodeList.js +84 -0
  367. package/tree/Tree.js +549 -0
  368. package/tree/util.js +76 -0
  369. package/tree-select/List.js +127 -0
  370. package/tree-select/Select.js +260 -0
  371. package/tree-select/hook/useKeyCache.js +56 -0
  372. package/tree-select/hook/useStateValue.js +98 -0
  373. package/tree-select/hook/useTreeData.js +13 -0
  374. package/tree-select/interface.js +13 -0
  375. package/tree-select/util.js +9 -0
  376. package/trigger/Portal.js +14 -0
  377. package/trigger/getPopupStyle.js +190 -0
  378. package/types/badge/Count.d.ts +2 -1
  379. package/types/badge/index.d.ts +2 -2
  380. package/types/button/index.d.ts +2 -2
  381. package/types/carousel/index.d.ts +1 -1
  382. package/types/color-picker/colors.d.ts +1 -1
  383. package/types/color-picker/style/index.d.ts +1 -1
  384. package/types/drawer/Drawer.d.ts +1 -1
  385. package/types/dropdown/interface.d.ts +1 -0
  386. package/types/grid/index.d.ts +1 -0
  387. package/types/hooks/index.d.ts +122 -0
  388. package/types/hooks/use-verification-code/interface.d.ts +1 -1
  389. package/types/hooks/useAsync.d.ts +1 -1
  390. package/types/hooks/useDropArea.d.ts +1 -0
  391. package/types/hooks/useOverrideRef.d.ts +5 -0
  392. package/types/hooks/usePersistCallback.d.ts +1 -0
  393. package/types/hooks/useUpsert.d.ts +1 -1
  394. package/types/icon-hover/index.d.ts +5 -3
  395. package/types/index.d.ts +4 -120
  396. package/types/input-tag/InputTag.d.ts +1 -1
  397. package/types/input-tag/interface.d.ts +1 -1
  398. package/types/link/interface.d.ts +1 -1
  399. package/types/list/index.d.ts +1 -1
  400. package/types/modal/interface.d.ts +1 -0
  401. package/types/notice/index.d.ts +3 -0
  402. package/types/notification/index.d.ts +1 -1
  403. package/types/page-header/index.d.ts +1 -1
  404. package/types/select/Select.d.ts +1 -1
  405. package/types/select-view/Core.d.ts +3 -2
  406. package/types/select-view/index.d.ts +1 -0
  407. package/types/statistic/index.d.ts +1 -1
  408. package/types/switch/index.d.ts +1 -1
  409. package/types/switch/interface.d.ts +1 -1
  410. package/types/table/interface.d.ts +2 -1
  411. package/types/tooltip/index.d.ts +1 -1
  412. package/types/trigger/index.d.ts +12 -8
  413. package/types/trigger/interface.d.ts +1 -0
  414. package/types/typography/Base.d.ts +8 -7
  415. package/types/typography/EditContent.d.ts +3 -2
  416. package/types/typography/Paragraph.d.ts +2 -5
  417. package/types/typography/Text.d.ts +1 -5
  418. package/types/typography/Title.d.ts +2 -5
  419. package/types/upload/TriggerNode.d.ts +5 -3
  420. package/types/upload/list/PictureItem.d.ts +3 -3
  421. package/types/upload/list/TextItem.d.ts +3 -3
  422. package/types/utils/CSSTransition.d.ts +2 -0
  423. package/types/utils/constant.d.ts +1 -1
  424. package/types/utils/is.d.ts +4 -0
  425. package/types/utils/reactDOM.d.ts +3 -1
  426. package/types/utils/warning.d.ts +1 -1
  427. package/types/version/index.d.ts +1 -1
  428. package/typography/Base.js +184 -0
  429. package/typography/EditContent.js +49 -0
  430. package/typography/Ellipsis.js +293 -0
  431. package/typography/Operations.js +78 -0
  432. package/typography/Paragraph.js +26 -0
  433. package/typography/Text.js +11 -0
  434. package/typography/Title.js +12 -0
  435. package/typography/Typography.js +15 -0
  436. package/typography/useCssEllipsis.js +37 -0
  437. package/typography/useEllipsis.js +150 -0
  438. package/upload/TriggerNode.js +118 -0
  439. package/upload/Upload.js +205 -0
  440. package/upload/Uploader.js +205 -0
  441. package/upload/interface.js +9 -0
  442. package/upload/list/PictureItem.js +91 -0
  443. package/upload/list/TextItem.js +99 -0
  444. package/upload/list/UploadProgress.js +97 -0
  445. package/upload/list/index.js +120 -0
  446. package/upload/request.js +51 -0
  447. package/upload/util.js +61 -0
  448. package/utils/CSSTransition.js +27 -0
  449. package/utils/contextHolder.js +29 -4
  450. package/utils/getHighlightText.js +1 -2
  451. package/utils/is.js +81 -68
  452. package/utils/reactDOM.js +33 -22
  453. package/utils/style.js +1 -2
  454. package/utils/warning.js +7 -3
  455. package/verification-code/VerificationCode.js +83 -0
  456. package/virtual-list/Filler.js +31 -0
  457. package/virtual-list/VirtualList.js +378 -0
  458. package/virtual-list/util/algorithm.js +32 -0
  459. package/virtual-list/util/item.js +99 -0
  460. package/{chunk/BCEX3Acw.js → watermark/Watermark.js} +13 -11
  461. package/chunk/B1P8u7kB.js +0 -798
  462. package/chunk/B2ufZjjd.js +0 -1000
  463. package/chunk/B7QOJqps.js +0 -162
  464. package/chunk/BBz3S3zo.js +0 -966
  465. package/chunk/BGzBxiWE.js +0 -517
  466. package/chunk/BNRfcEHj.js +0 -984
  467. package/chunk/BSs6uXmc.js +0 -946
  468. package/chunk/BTjUAV8T.js +0 -277
  469. package/chunk/BYQeEcKe.js +0 -375
  470. package/chunk/Ba4UXIST.js +0 -605
  471. package/chunk/BfaXVcik.js +0 -271
  472. package/chunk/Bs11tCU6.js +0 -240
  473. package/chunk/C7FC7dzS.js +0 -516
  474. package/chunk/CLzbve11.js +0 -694
  475. package/chunk/CN4zXU4b.js +0 -877
  476. package/chunk/CYTPZUHD.js +0 -769
  477. package/chunk/CcCo_dK0.js +0 -335
  478. package/chunk/CoCXcpQd.js +0 -261
  479. package/chunk/D4yH4UKK.js +0 -80
  480. package/chunk/DiSLYN2-.js +0 -167
  481. package/chunk/Dr0iXIXO.js +0 -736
  482. package/chunk/G3-2uJao.js +0 -229
  483. package/chunk/RnTpOC5-.js +0 -1
  484. package/chunk/Z-mtdHUQ.js +0 -226
  485. package/chunk/ZISxNnaR.js +0 -165
  486. package/chunk/aPJXnDSb.js +0 -450
  487. package/chunk/i605JRmI.js +0 -232
  488. package/chunk/l0sNRNKZ.js +0 -1
  489. package/types/form/FormItemTip.d.ts +0 -8
  490. /package/{chunk/C6Kfwj0f.js → loading/style/index.less.js} +0 -0
  491. /package/{chunk/DP2rzg_V.js → suspense-fallback-test/style/index.less.js} +0 -0
  492. /package/types/{Popover → popover}/index.d.ts +0 -0
  493. /package/types/{Popover → popover}/interface.d.ts +0 -0
  494. /package/types/{Popover → popover}/style/index.d.ts +0 -0
  495. /package/{chunk/K6Dvbx-E.js → virtual-list/style/index.less.js} +0 -0
package/result/404.js ADDED
@@ -0,0 +1,513 @@
1
+ import { jsx as r, jsxs as t } from "react/jsx-runtime";
2
+ function l() {
3
+ return /* @__PURE__ */ r(
4
+ "svg",
5
+ {
6
+ width: "100%",
7
+ height: "100%",
8
+ viewBox: "0 0 213 213",
9
+ style: {
10
+ fillRule: "evenodd",
11
+ clipRule: "evenodd",
12
+ strokeLinejoin: "round",
13
+ strokeMiterlimit: 2
14
+ },
15
+ children: /* @__PURE__ */ r("g", { transform: "matrix(1,0,0,1,-1241.95,-445.62)", children: /* @__PURE__ */ t("g", { children: [
16
+ /* @__PURE__ */ r("g", { transform: "matrix(1,0,0,1,295.2,-87.3801)", children: /* @__PURE__ */ r(
17
+ "circle",
18
+ {
19
+ cx: "1053.23",
20
+ cy: "639.477",
21
+ r: "106.477",
22
+ style: { fill: "rgb(235, 238, 246)" }
23
+ }
24
+ ) }),
25
+ /* @__PURE__ */ t("g", { transform: "matrix(0.38223,0,0,0.38223,1126.12,238.549)", children: [
26
+ /* @__PURE__ */ r("g", { transform: "matrix(0.566536,0.327089,-1.28774,0.74348,763.4,317.171)", children: /* @__PURE__ */ r(
27
+ "rect",
28
+ {
29
+ x: "657.012",
30
+ y: "404.643",
31
+ width: "198.586",
32
+ height: "145.08",
33
+ style: { fillOpacity: 0.1 }
34
+ }
35
+ ) }),
36
+ /* @__PURE__ */ r("g", { transform: "matrix(0.29595,0.170867,-0.91077,0.525833,873.797,588.624)", children: /* @__PURE__ */ r(
37
+ "rect",
38
+ {
39
+ x: "657.012",
40
+ y: "404.643",
41
+ width: "198.586",
42
+ height: "145.08",
43
+ style: { fillOpacity: 0.1 }
44
+ }
45
+ ) }),
46
+ /* @__PURE__ */ t("g", { transform: "matrix(1,0,0,1,275,-15)", children: [
47
+ /* @__PURE__ */ r(
48
+ "path",
49
+ {
50
+ d: "M262.077,959.012L276.923,959.012L273.388,1004.01C273.388,1004.59 273.009,1005.16 272.25,1005.6C270.732,1006.48 268.268,1006.48 266.75,1005.6C265.991,1005.16 265.612,1004.59 265.612,1004.01L262.077,959.012Z",
51
+ style: { fill: "rgb(196, 173, 142)" }
52
+ }
53
+ ),
54
+ /* @__PURE__ */ r("g", { transform: "matrix(0.866025,-0.5,1,0.57735,0,-45)", children: /* @__PURE__ */ r(
55
+ "ellipse",
56
+ {
57
+ cx: "-848.416",
58
+ cy: "1004.25",
59
+ rx: "6.062",
60
+ ry: "5.25",
61
+ style: { fill: "rgb(255, 125, 0)" }
62
+ }
63
+ ) })
64
+ ] }),
65
+ /* @__PURE__ */ t("g", { transform: "matrix(1,0,0,1,183.952,-67.5665)", children: [
66
+ /* @__PURE__ */ r(
67
+ "path",
68
+ {
69
+ d: "M262.077,959.012L276.923,959.012L273.388,1004.01C273.388,1004.59 273.009,1005.16 272.25,1005.6C270.732,1006.48 268.268,1006.48 266.75,1005.6C265.991,1005.16 265.612,1004.59 265.612,1004.01L262.077,959.012Z",
70
+ style: { fill: "rgb(196, 173, 142)" }
71
+ }
72
+ ),
73
+ /* @__PURE__ */ r("g", { transform: "matrix(0.866025,-0.5,1,0.57735,0,-45)", children: /* @__PURE__ */ r(
74
+ "ellipse",
75
+ {
76
+ cx: "-848.416",
77
+ cy: "1004.25",
78
+ rx: "6.062",
79
+ ry: "5.25",
80
+ style: { fill: "rgb(255, 125, 0)" }
81
+ }
82
+ ) })
83
+ ] }),
84
+ /* @__PURE__ */ t("g", { transform: "matrix(1,0,0,1,414,-95.2517)", children: [
85
+ /* @__PURE__ */ r(
86
+ "path",
87
+ {
88
+ d: "M262.077,959.012L276.923,959.012L273.388,1004.01C273.388,1004.59 273.009,1005.16 272.25,1005.6C270.732,1006.48 268.268,1006.48 266.75,1005.6C265.991,1005.16 265.612,1004.59 265.612,1004.01L262.077,959.012Z",
89
+ style: { fill: "rgb(196, 173, 142)" }
90
+ }
91
+ ),
92
+ /* @__PURE__ */ r("g", { transform: "matrix(0.866025,-0.5,1,0.57735,0,-45)", children: /* @__PURE__ */ r(
93
+ "ellipse",
94
+ {
95
+ cx: "-848.416",
96
+ cy: "1004.25",
97
+ rx: "6.062",
98
+ ry: "5.25",
99
+ style: { fill: "rgb(255, 125, 0)" }
100
+ }
101
+ ) })
102
+ ] }),
103
+ /* @__PURE__ */ t("g", { transform: "matrix(1,0,0,1,322.952,-147.818)", children: [
104
+ /* @__PURE__ */ r(
105
+ "path",
106
+ {
107
+ d: "M262.077,959.012L276.923,959.012L273.388,1004.01C273.388,1004.59 273.009,1005.16 272.25,1005.6C270.732,1006.48 268.268,1006.48 266.75,1005.6C265.991,1005.16 265.612,1004.59 265.612,1004.01L262.077,959.012Z",
108
+ style: { fill: "rgb(196, 173, 142)" }
109
+ }
110
+ ),
111
+ /* @__PURE__ */ r("g", { transform: "matrix(0.866025,-0.5,1,0.57735,0,-45)", children: /* @__PURE__ */ r(
112
+ "ellipse",
113
+ {
114
+ cx: "-848.416",
115
+ cy: "1004.25",
116
+ rx: "6.062",
117
+ ry: "5.25",
118
+ style: { fill: "rgb(255, 125, 0)" }
119
+ }
120
+ ) })
121
+ ] }),
122
+ /* @__PURE__ */ t("g", { children: [
123
+ /* @__PURE__ */ r("g", { transform: "matrix(1.42334,-0.821763,1.11271,0.642426,-1439.64,459.621)", children: /* @__PURE__ */ r(
124
+ "rect",
125
+ {
126
+ x: "495.52",
127
+ y: "1057.87",
128
+ width: "105.078",
129
+ height: "91",
130
+ style: { fill: "rgb(253, 243, 228)" }
131
+ }
132
+ ) }),
133
+ /* @__PURE__ */ r("g", { transform: "matrix(1.40786,-0.812831,6.60237e-16,1.99081,-2052.17,-84.7286)", children: /* @__PURE__ */ r(
134
+ "rect",
135
+ {
136
+ x: "1844.06",
137
+ y: "1192.54",
138
+ width: "106.232",
139
+ height: "92",
140
+ style: { fill: "rgb(196, 173, 142)" }
141
+ }
142
+ ) }),
143
+ /* @__PURE__ */ r("g", { transform: "matrix(1.26159,-0.728382,5.91642e-16,1.78397,-1774.67,11.2303)", children: /* @__PURE__ */ r(
144
+ "path",
145
+ {
146
+ d: "M1950.29,1194.38C1950.29,1193.37 1949.41,1192.54 1948.34,1192.54L1846.01,1192.54C1844.93,1192.54 1844.06,1193.37 1844.06,1194.38L1844.06,1282.7C1844.06,1283.72 1844.93,1284.54 1846.01,1284.54L1948.34,1284.54C1949.41,1284.54 1950.29,1283.72 1950.29,1282.7L1950.29,1194.38Z",
147
+ style: { fill: "rgb(132, 97, 51)" }
148
+ }
149
+ ) }),
150
+ /* @__PURE__ */ r("g", { transform: "matrix(1.2198,-0.704254,5.72043e-16,1.72488,-1697.6,37.2103)", children: /* @__PURE__ */ r(
151
+ "path",
152
+ {
153
+ d: "M1950.29,1194.38C1950.29,1193.37 1949.41,1192.54 1948.34,1192.54L1846.01,1192.54C1844.93,1192.54 1844.06,1193.37 1844.06,1194.38L1844.06,1282.7C1844.06,1283.72 1844.93,1284.54 1846.01,1284.54L1948.34,1284.54C1949.41,1284.54 1950.29,1283.72 1950.29,1282.7L1950.29,1194.38Z",
154
+ style: { fill: "rgb(196, 173, 142)" }
155
+ }
156
+ ) }),
157
+ /* @__PURE__ */ r("g", { transform: "matrix(0.707187,0.408295,9.06119e-17,1.54833,-733.949,683.612)", children: /* @__PURE__ */ r(
158
+ "rect",
159
+ {
160
+ x: "1663.92",
161
+ y: "-407.511",
162
+ width: "143.183",
163
+ height: "118.292",
164
+ style: { fill: "rgb(240, 218, 183)" }
165
+ }
166
+ ) }),
167
+ /* @__PURE__ */ r("g", { transform: "matrix(1.64553,-0.950049,1.17482,0.678285,-1632.45,473.879)", children: /* @__PURE__ */ r(
168
+ "rect",
169
+ {
170
+ x: "495.52",
171
+ y: "1057.87",
172
+ width: "105.078",
173
+ height: "91",
174
+ style: { fill: "rgb(253, 243, 228)" }
175
+ }
176
+ ) }),
177
+ /* @__PURE__ */ r("g", { transform: "matrix(0.74666,0.431085,2.3583e-17,0.135259,-816.63,57.1397)", children: /* @__PURE__ */ r(
178
+ "rect",
179
+ {
180
+ x: "1663.92",
181
+ y: "-407.511",
182
+ width: "143.183",
183
+ height: "118.292",
184
+ style: { fill: "rgb(240, 218, 183)" }
185
+ }
186
+ ) }),
187
+ /* @__PURE__ */ r("g", { transform: "matrix(1.64553,-0.950049,1.17482,0.678285,-1632.45,473.879)", children: /* @__PURE__ */ r(
188
+ "rect",
189
+ {
190
+ x: "495.52",
191
+ y: "1057.87",
192
+ width: "105.078",
193
+ height: "91",
194
+ style: { fill: "rgb(253, 243, 228)" }
195
+ }
196
+ ) }),
197
+ /* @__PURE__ */ t("g", { transform: "matrix(0.750082,0,0,0.750082,163.491,354.191)", children: [
198
+ /* @__PURE__ */ r("g", { transform: "matrix(1.75943,-1.01581,1.75879e-16,0.632893,-2721.54,1876.43)", children: /* @__PURE__ */ r(
199
+ "rect",
200
+ {
201
+ x: "1844.06",
202
+ y: "1192.54",
203
+ width: "106.232",
204
+ height: "92",
205
+ style: { fill: "rgb(196, 173, 142)" }
206
+ }
207
+ ) }),
208
+ /* @__PURE__ */ r("g", { transform: "matrix(0.290956,-0.167984,2.90849e-17,0.104661,69.4195,919.311)", children: /* @__PURE__ */ r(
209
+ "path",
210
+ {
211
+ d: "M1950.29,1238.54C1950.29,1213.15 1944.73,1192.54 1937.88,1192.54L1856.47,1192.54C1849.62,1192.54 1844.06,1213.15 1844.06,1238.54C1844.06,1263.93 1849.62,1284.54 1856.47,1284.54L1937.88,1284.54C1944.73,1284.54 1950.29,1263.93 1950.29,1238.54Z",
212
+ style: { fill: "rgb(132, 97, 51)" }
213
+ }
214
+ ) }),
215
+ /* @__PURE__ */ r("g", { transform: "matrix(0.262716,-0.151679,8.27418e-18,0.0364999,121.496,970.53)", children: /* @__PURE__ */ r(
216
+ "path",
217
+ {
218
+ d: "M1950.29,1238.54C1950.29,1213.15 1948.14,1192.54 1945.5,1192.54L1848.85,1192.54C1846.2,1192.54 1844.06,1213.15 1844.06,1238.54C1844.06,1263.93 1846.2,1284.54 1848.85,1284.54L1945.5,1284.54C1948.14,1284.54 1950.29,1263.93 1950.29,1238.54Z",
219
+ style: { fill: "rgb(246, 220, 185)" }
220
+ }
221
+ ) }),
222
+ /* @__PURE__ */ r("g", { transform: "matrix(1.77877,-1.02697,0.0581765,0.0335882,-425.293,1228.27)", children: /* @__PURE__ */ r(
223
+ "rect",
224
+ {
225
+ x: "495.52",
226
+ y: "1057.87",
227
+ width: "105.078",
228
+ height: "91",
229
+ style: { fill: "rgb(240, 218, 183)" }
230
+ }
231
+ ) }),
232
+ /* @__PURE__ */ r("g", { transform: "matrix(0.0369741,0.021347,4.72735e-17,0.492225,456.143,919.985)", children: /* @__PURE__ */ r(
233
+ "rect",
234
+ {
235
+ x: "1663.92",
236
+ y: "-407.511",
237
+ width: "143.183",
238
+ height: "118.292",
239
+ style: { fill: "rgb(240, 218, 183)" }
240
+ }
241
+ ) })
242
+ ] }),
243
+ /* @__PURE__ */ t("g", { transform: "matrix(0.750082,0,0,0.750082,163.491,309.191)", children: [
244
+ /* @__PURE__ */ r("g", { transform: "matrix(1.75943,-1.01581,1.75879e-16,0.632893,-2721.54,1876.43)", children: /* @__PURE__ */ r(
245
+ "rect",
246
+ {
247
+ x: "1844.06",
248
+ y: "1192.54",
249
+ width: "106.232",
250
+ height: "92",
251
+ style: { fill: "rgb(196, 173, 142)" }
252
+ }
253
+ ) }),
254
+ /* @__PURE__ */ r("g", { transform: "matrix(0.290956,-0.167984,2.90849e-17,0.104661,69.4195,919.311)", children: /* @__PURE__ */ r(
255
+ "path",
256
+ {
257
+ d: "M1950.29,1238.54C1950.29,1213.15 1944.73,1192.54 1937.88,1192.54L1856.47,1192.54C1849.62,1192.54 1844.06,1213.15 1844.06,1238.54C1844.06,1263.93 1849.62,1284.54 1856.47,1284.54L1937.88,1284.54C1944.73,1284.54 1950.29,1263.93 1950.29,1238.54Z",
258
+ style: { fill: "rgb(132, 97, 51)" }
259
+ }
260
+ ) }),
261
+ /* @__PURE__ */ r("g", { transform: "matrix(0.262716,-0.151679,8.27418e-18,0.0364999,121.496,970.53)", children: /* @__PURE__ */ r(
262
+ "path",
263
+ {
264
+ d: "M1950.29,1238.54C1950.29,1213.15 1948.14,1192.54 1945.5,1192.54L1848.85,1192.54C1846.2,1192.54 1844.06,1213.15 1844.06,1238.54C1844.06,1263.93 1846.2,1284.54 1848.85,1284.54L1945.5,1284.54C1948.14,1284.54 1950.29,1263.93 1950.29,1238.54Z",
265
+ style: { fill: "rgb(246, 220, 185)" }
266
+ }
267
+ ) }),
268
+ /* @__PURE__ */ r("g", { transform: "matrix(1.77877,-1.02697,0.0581765,0.0335882,-425.293,1228.27)", children: /* @__PURE__ */ r(
269
+ "rect",
270
+ {
271
+ x: "495.52",
272
+ y: "1057.87",
273
+ width: "105.078",
274
+ height: "91",
275
+ style: { fill: "rgb(240, 218, 183)" }
276
+ }
277
+ ) }),
278
+ /* @__PURE__ */ r("g", { transform: "matrix(0.0369741,0.021347,4.72735e-17,0.492225,456.143,919.985)", children: /* @__PURE__ */ r(
279
+ "rect",
280
+ {
281
+ x: "1663.92",
282
+ y: "-407.511",
283
+ width: "143.183",
284
+ height: "118.292",
285
+ style: { fill: "rgb(240, 218, 183)" }
286
+ }
287
+ ) })
288
+ ] }),
289
+ /* @__PURE__ */ t("g", { transform: "matrix(0.750082,0,0,0.750082,163.491,263.931)", children: [
290
+ /* @__PURE__ */ r("g", { transform: "matrix(1.75943,-1.01581,1.75879e-16,0.632893,-2721.54,1876.43)", children: /* @__PURE__ */ r(
291
+ "rect",
292
+ {
293
+ x: "1844.06",
294
+ y: "1192.54",
295
+ width: "106.232",
296
+ height: "92",
297
+ style: { fill: "rgb(196, 173, 142)" }
298
+ }
299
+ ) }),
300
+ /* @__PURE__ */ r("g", { transform: "matrix(0.290956,-0.167984,2.90849e-17,0.104661,69.4195,919.311)", children: /* @__PURE__ */ r(
301
+ "path",
302
+ {
303
+ d: "M1950.29,1238.54C1950.29,1213.15 1944.73,1192.54 1937.88,1192.54L1856.47,1192.54C1849.62,1192.54 1844.06,1213.15 1844.06,1238.54C1844.06,1263.93 1849.62,1284.54 1856.47,1284.54L1937.88,1284.54C1944.73,1284.54 1950.29,1263.93 1950.29,1238.54Z",
304
+ style: { fill: "rgb(132, 97, 51)" }
305
+ }
306
+ ) }),
307
+ /* @__PURE__ */ r("g", { transform: "matrix(0.262716,-0.151679,8.27418e-18,0.0364999,121.496,970.53)", children: /* @__PURE__ */ r(
308
+ "path",
309
+ {
310
+ d: "M1950.29,1238.54C1950.29,1213.15 1948.14,1192.54 1945.5,1192.54L1848.85,1192.54C1846.2,1192.54 1844.06,1213.15 1844.06,1238.54C1844.06,1263.93 1846.2,1284.54 1848.85,1284.54L1945.5,1284.54C1948.14,1284.54 1950.29,1263.93 1950.29,1238.54Z",
311
+ style: { fill: "rgb(246, 220, 185)" }
312
+ }
313
+ ) }),
314
+ /* @__PURE__ */ r("g", { transform: "matrix(1.77877,-1.02697,0.0581765,0.0335882,-425.293,1228.27)", children: /* @__PURE__ */ r(
315
+ "rect",
316
+ {
317
+ x: "495.52",
318
+ y: "1057.87",
319
+ width: "105.078",
320
+ height: "91",
321
+ style: { fill: "rgb(240, 218, 183)" }
322
+ }
323
+ ) }),
324
+ /* @__PURE__ */ r("g", { transform: "matrix(0.0369741,0.021347,4.72735e-17,0.492225,456.143,919.985)", children: /* @__PURE__ */ r(
325
+ "rect",
326
+ {
327
+ x: "1663.92",
328
+ y: "-407.511",
329
+ width: "143.183",
330
+ height: "118.292",
331
+ style: { fill: "rgb(240, 218, 183)" }
332
+ }
333
+ ) })
334
+ ] }),
335
+ /* @__PURE__ */ r(
336
+ "path",
337
+ {
338
+ d: "M555.753,832.474L555.753,921.408L630.693,878.141L630.693,789.207L555.753,832.474Z",
339
+ style: { fillOpacity: 0.1 }
340
+ }
341
+ ),
342
+ /* @__PURE__ */ t("g", { transform: "matrix(0.750082,0,0,0.750082,236.431,272.852)", children: [
343
+ /* @__PURE__ */ r("g", { transform: "matrix(1.64553,-0.950049,1.14552,0.661368,-1606.78,467.933)", children: /* @__PURE__ */ r(
344
+ "rect",
345
+ {
346
+ x: "495.52",
347
+ y: "1057.87",
348
+ width: "105.078",
349
+ height: "91",
350
+ style: { fill: "rgb(253, 243, 228)" }
351
+ }
352
+ ) }),
353
+ /* @__PURE__ */ r("g", { transform: "matrix(1.54477,-0.891873,1.05847,0.611108,-1456.84,490.734)", children: /* @__PURE__ */ r(
354
+ "rect",
355
+ {
356
+ x: "495.52",
357
+ y: "1057.87",
358
+ width: "105.078",
359
+ height: "91",
360
+ style: { fill: "rgb(132, 97, 51)" }
361
+ }
362
+ ) }),
363
+ /* @__PURE__ */ r("g", { transform: "matrix(1.27607,-0.736739,0.751435,0.433841,-970.952,617.519)", children: /* @__PURE__ */ r(
364
+ "rect",
365
+ {
366
+ x: "495.52",
367
+ y: "1057.87",
368
+ width: "105.078",
369
+ height: "91",
370
+ style: { fill: "rgb(240, 218, 183)" }
371
+ }
372
+ ) }),
373
+ /* @__PURE__ */ r("g", { transform: "matrix(1.62765,-0.939723,1.42156e-16,0.5,-2476.81,1893.62)", children: /* @__PURE__ */ r(
374
+ "rect",
375
+ {
376
+ x: "1844.06",
377
+ y: "1192.54",
378
+ width: "106.232",
379
+ height: "92",
380
+ style: { fill: "rgb(196, 173, 142)" }
381
+ }
382
+ ) }),
383
+ /* @__PURE__ */ r("g", { transform: "matrix(1.62765,-0.939723,1.42156e-16,0.5,-2476.81,1893.62)", children: /* @__PURE__ */ r(
384
+ "rect",
385
+ {
386
+ x: "1844.06",
387
+ y: "1192.54",
388
+ width: "106.232",
389
+ height: "92",
390
+ style: { fill: "rgb(196, 173, 142)" }
391
+ }
392
+ ) }),
393
+ /* @__PURE__ */ r("g", { transform: "matrix(0.728038,0.420333,3.52595e-17,0.377589,-790.978,151.274)", children: /* @__PURE__ */ r(
394
+ "rect",
395
+ {
396
+ x: "1663.92",
397
+ y: "-407.511",
398
+ width: "143.183",
399
+ height: "118.292",
400
+ style: { fill: "rgb(240, 218, 183)" }
401
+ }
402
+ ) }),
403
+ /* @__PURE__ */ r("g", { transform: "matrix(1.75943,-1.01581,1.75879e-16,0.632893,-2726.83,1873.38)", children: /* @__PURE__ */ r(
404
+ "rect",
405
+ {
406
+ x: "1844.06",
407
+ y: "1192.54",
408
+ width: "106.232",
409
+ height: "92",
410
+ style: { fill: "rgb(196, 173, 142)" }
411
+ }
412
+ ) }),
413
+ /* @__PURE__ */ t("g", { children: [
414
+ /* @__PURE__ */ r("g", { transform: "matrix(1.75943,-1.01581,1.75879e-16,0.632893,-2721.54,1876.43)", children: /* @__PURE__ */ r(
415
+ "rect",
416
+ {
417
+ x: "1844.06",
418
+ y: "1192.54",
419
+ width: "106.232",
420
+ height: "92",
421
+ style: { fill: "rgb(196, 173, 142)" }
422
+ }
423
+ ) }),
424
+ /* @__PURE__ */ r("g", { transform: "matrix(0.290956,-0.167984,2.90849e-17,0.104661,69.4195,919.311)", children: /* @__PURE__ */ r(
425
+ "path",
426
+ {
427
+ d: "M1950.29,1238.54C1950.29,1213.15 1944.73,1192.54 1937.88,1192.54L1856.47,1192.54C1849.62,1192.54 1844.06,1213.15 1844.06,1238.54C1844.06,1263.93 1849.62,1284.54 1856.47,1284.54L1937.88,1284.54C1944.73,1284.54 1950.29,1263.93 1950.29,1238.54Z",
428
+ style: { fill: "rgb(132, 97, 51)" }
429
+ }
430
+ ) }),
431
+ /* @__PURE__ */ r("g", { transform: "matrix(0.262716,-0.151679,8.27418e-18,0.0364999,121.496,970.53)", children: /* @__PURE__ */ r(
432
+ "path",
433
+ {
434
+ d: "M1950.29,1238.54C1950.29,1213.15 1948.14,1192.54 1945.5,1192.54L1848.85,1192.54C1846.2,1192.54 1844.06,1213.15 1844.06,1238.54C1844.06,1263.93 1846.2,1284.54 1848.85,1284.54L1945.5,1284.54C1948.14,1284.54 1950.29,1263.93 1950.29,1238.54Z",
435
+ style: { fill: "rgb(246, 220, 185)" }
436
+ }
437
+ ) }),
438
+ /* @__PURE__ */ r("g", { transform: "matrix(1.77877,-1.02697,0.0581765,0.0335882,-425.293,1228.27)", children: /* @__PURE__ */ r(
439
+ "rect",
440
+ {
441
+ x: "495.52",
442
+ y: "1057.87",
443
+ width: "105.078",
444
+ height: "91",
445
+ style: { fill: "rgb(240, 218, 183)" }
446
+ }
447
+ ) }),
448
+ /* @__PURE__ */ r("g", { transform: "matrix(0.0369741,0.021347,4.72735e-17,0.492225,456.143,919.985)", children: /* @__PURE__ */ r(
449
+ "rect",
450
+ {
451
+ x: "1663.92",
452
+ y: "-407.511",
453
+ width: "143.183",
454
+ height: "118.292",
455
+ style: { fill: "rgb(240, 218, 183)" }
456
+ }
457
+ ) })
458
+ ] })
459
+ ] }),
460
+ /* @__PURE__ */ r("g", { transform: "matrix(1.62765,-0.939723,4.80984e-17,0.173913,-2468.81,2307.87)", children: /* @__PURE__ */ r(
461
+ "rect",
462
+ {
463
+ x: "1844.06",
464
+ y: "1192.54",
465
+ width: "106.232",
466
+ height: "92",
467
+ style: { fill: "rgb(196, 173, 142)" }
468
+ }
469
+ ) })
470
+ ] }),
471
+ /* @__PURE__ */ t("g", { children: [
472
+ /* @__PURE__ */ r("g", { transform: "matrix(0.479077,0.276595,-0.564376,0.325843,598.357,-129.986)", children: /* @__PURE__ */ r(
473
+ "path",
474
+ {
475
+ d: "M1776.14,1326C1776.14,1321.19 1772.15,1317.28 1767.24,1317.28L1684.37,1317.28C1679.46,1317.28 1675.47,1321.19 1675.47,1326L1675.47,1395.75C1675.47,1400.56 1679.46,1404.46 1684.37,1404.46L1767.24,1404.46C1772.15,1404.46 1776.14,1400.56 1776.14,1395.75L1776.14,1326Z",
476
+ style: { fill: "white" }
477
+ }
478
+ ) }),
479
+ /* @__PURE__ */ t("g", { transform: "matrix(2.61622,0,0,2.61622,-2305.73,162.161)", children: [
480
+ /* @__PURE__ */ r("g", { transform: "matrix(1.09915,-0.634597,1.26919,0.73277,-299.167,-62.4615)", children: /* @__PURE__ */ r(
481
+ "ellipse",
482
+ {
483
+ cx: "412.719",
484
+ cy: "770.575",
485
+ rx: "6.303",
486
+ ry: "5.459",
487
+ style: { fill: "rgb(255, 125, 0)" }
488
+ }
489
+ ) }),
490
+ /* @__PURE__ */ r("g", { transform: "matrix(0.238212,-0.137532,0.178659,0.103149,875.064,207.93)", children: /* @__PURE__ */ r(
491
+ "text",
492
+ {
493
+ x: "413.474px",
494
+ y: "892.067px",
495
+ style: {
496
+ fontFamily: "NunitoSans-Bold, Nunito Sans",
497
+ fontWeight: 700,
498
+ fontSize: 41.569,
499
+ fill: "white"
500
+ },
501
+ children: "?"
502
+ }
503
+ ) })
504
+ ] })
505
+ ] })
506
+ ] })
507
+ ] }) })
508
+ }
509
+ );
510
+ }
511
+ export {
512
+ l as default
513
+ };
package/result/500.js ADDED
@@ -0,0 +1,166 @@
1
+ import { jsx as r, jsxs as l } from "react/jsx-runtime";
2
+ function t() {
3
+ return /* @__PURE__ */ r(
4
+ "svg",
5
+ {
6
+ width: "100%",
7
+ height: "100%",
8
+ viewBox: "0 0 213 213",
9
+ version: "1.1",
10
+ style: {
11
+ fillRule: "evenodd",
12
+ clipRule: "evenodd",
13
+ strokeLinejoin: "round",
14
+ strokeMiterlimit: 2
15
+ },
16
+ children: /* @__PURE__ */ l("g", { transform: "matrix(1,0,0,1,-483.054,-445.448)", children: [
17
+ /* @__PURE__ */ r("g", { transform: "matrix(1,0,0,1,-463.676,-87.529)", children: /* @__PURE__ */ r(
18
+ "circle",
19
+ {
20
+ cx: "1053.23",
21
+ cy: "639.477",
22
+ r: "106.477",
23
+ style: { fill: "rgb(235,238,246)" }
24
+ }
25
+ ) }),
26
+ /* @__PURE__ */ l("g", { transform: "matrix(1,0,0,1,10.1538,12)", children: [
27
+ /* @__PURE__ */ r("g", { transform: "matrix(0.387776,0,0,0.387776,275.78,315.673)", children: /* @__PURE__ */ r(
28
+ "path",
29
+ {
30
+ d: "M896.415,526.429L669.543,526.429C665.796,526.425 662.714,523.343 662.71,519.596L662.71,443.061C662.714,439.314 665.796,436.232 669.543,436.227L896.415,436.227C900.162,436.232 903.244,439.314 903.248,443.061L903.248,519.596C903.244,523.343 900.162,526.425 896.415,526.429Z",
31
+ style: { fill: "rgb(74,72,96)", fillRule: "nonzero" }
32
+ }
33
+ ) }),
34
+ /* @__PURE__ */ r("g", { transform: "matrix(0.387776,0,0,0.387776,348.294,385.278)", children: /* @__PURE__ */ r(
35
+ "rect",
36
+ {
37
+ x: "511.244",
38
+ y: "277.228",
39
+ width: "60.135",
40
+ height: "6.833",
41
+ style: { fill: "rgb(235,238,246)" }
42
+ }
43
+ ) }),
44
+ /* @__PURE__ */ r("g", { transform: "matrix(0.387776,0,0,0.387776,348.294,385.278)", children: /* @__PURE__ */ r(
45
+ "circle",
46
+ {
47
+ cx: "650.647",
48
+ cy: "281.328",
49
+ r: "4.1",
50
+ style: { fill: "rgb(255,51,51)" }
51
+ }
52
+ ) }),
53
+ /* @__PURE__ */ r("g", { transform: "matrix(0.387776,0,0,0.387776,348.294,385.278)", children: /* @__PURE__ */ r(
54
+ "circle",
55
+ {
56
+ cx: "664.314",
57
+ cy: "281.328",
58
+ r: "4.1",
59
+ style: { fill: "rgb(0,184,43)" }
60
+ }
61
+ ) }),
62
+ /* @__PURE__ */ r("g", { transform: "matrix(0.387776,0,0,0.387776,348.294,385.278)", children: /* @__PURE__ */ r(
63
+ "circle",
64
+ {
65
+ cx: "677.981",
66
+ cy: "281.328",
67
+ r: "4.1",
68
+ style: { fill: "rgb(26,94,255)" }
69
+ }
70
+ ) }),
71
+ /* @__PURE__ */ r("g", { transform: "matrix(0.387776,0,0,0.387776,275.78,315.673)", children: /* @__PURE__ */ r(
72
+ "path",
73
+ {
74
+ d: "M896.415,623.465L669.543,623.465C665.796,623.46 662.714,620.378 662.71,616.631L662.71,540.096C662.714,536.349 665.796,533.267 669.543,533.263L896.415,533.263C900.162,533.267 903.244,536.349 903.248,540.096L903.248,616.631C903.244,620.378 900.162,623.46 896.415,623.465Z",
75
+ style: { fill: "rgb(74,72,96)", fillRule: "nonzero" }
76
+ }
77
+ ) }),
78
+ /* @__PURE__ */ r("g", { transform: "matrix(0.387776,0,0,0.387776,348.294,385.278)", children: /* @__PURE__ */ r(
79
+ "rect",
80
+ {
81
+ x: "511.244",
82
+ y: "374.263",
83
+ width: "60.135",
84
+ height: "6.833",
85
+ style: { fill: "rgb(235,238,246)" }
86
+ }
87
+ ) }),
88
+ /* @__PURE__ */ r("g", { transform: "matrix(0.387776,0,0,0.387776,348.294,385.278)", children: /* @__PURE__ */ r(
89
+ "circle",
90
+ {
91
+ cx: "650.647",
92
+ cy: "378.363",
93
+ r: "4.1",
94
+ style: { fill: "rgb(255,51,51)" }
95
+ }
96
+ ) }),
97
+ /* @__PURE__ */ r("g", { transform: "matrix(0.387776,0,0,0.387776,348.294,385.278)", children: /* @__PURE__ */ r(
98
+ "circle",
99
+ {
100
+ cx: "664.314",
101
+ cy: "378.363",
102
+ r: "4.1",
103
+ style: { fill: "rgb(0,184,43)" }
104
+ }
105
+ ) }),
106
+ /* @__PURE__ */ r("g", { transform: "matrix(0.387776,0,0,0.387776,348.294,385.278)", children: /* @__PURE__ */ r(
107
+ "circle",
108
+ {
109
+ cx: "677.981",
110
+ cy: "378.363",
111
+ r: "4.1",
112
+ style: { fill: "rgb(26,94,255)" }
113
+ }
114
+ ) }),
115
+ /* @__PURE__ */ r("g", { transform: "matrix(0.387776,0,0,0.387776,275.78,315.673)", children: /* @__PURE__ */ r(
116
+ "path",
117
+ {
118
+ d: "M896.415,720.5L669.543,720.5C665.796,720.496 662.714,717.414 662.71,713.667L662.71,637.132C662.714,633.384 665.796,630.302 669.543,630.298L896.415,630.298C900.162,630.302 903.244,633.384 903.248,637.132L903.248,713.667C903.244,717.414 900.162,720.496 896.415,720.5Z",
119
+ style: { fill: "rgb(74,72,96)", fillRule: "nonzero" }
120
+ }
121
+ ) }),
122
+ /* @__PURE__ */ r("g", { transform: "matrix(0.387776,0,0,0.387776,348.294,385.278)", children: /* @__PURE__ */ r(
123
+ "rect",
124
+ {
125
+ x: "511.244",
126
+ y: "471.299",
127
+ width: "60.135",
128
+ height: "6.833",
129
+ style: { fill: "rgb(235,238,246)" }
130
+ }
131
+ ) }),
132
+ /* @__PURE__ */ r("g", { transform: "matrix(0.387776,0,0,0.387776,348.294,385.278)", children: /* @__PURE__ */ r(
133
+ "circle",
134
+ {
135
+ cx: "650.647",
136
+ cy: "475.399",
137
+ r: "4.1",
138
+ style: { fill: "rgb(255,51,51)" }
139
+ }
140
+ ) }),
141
+ /* @__PURE__ */ r("g", { transform: "matrix(0.387776,0,0,0.387776,348.294,385.278)", children: /* @__PURE__ */ r(
142
+ "circle",
143
+ {
144
+ cx: "664.314",
145
+ cy: "475.399",
146
+ r: "4.1",
147
+ style: { fill: "rgb(0,184,43)" }
148
+ }
149
+ ) }),
150
+ /* @__PURE__ */ r("g", { transform: "matrix(0.387776,0,0,0.387776,348.294,385.278)", children: /* @__PURE__ */ r(
151
+ "circle",
152
+ {
153
+ cx: "677.981",
154
+ cy: "475.399",
155
+ r: "4.1",
156
+ style: { fill: "rgb(26,94,255)" }
157
+ }
158
+ ) })
159
+ ] })
160
+ ] })
161
+ }
162
+ );
163
+ }
164
+ export {
165
+ t as default
166
+ };