@unicom-cloud/ui 0.8.90 → 0.8.92

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 (602) hide show
  1. package/Affix.js +10 -9
  2. package/Alert.js +6 -5
  3. package/AutoComplete.js +11 -8
  4. package/BackTop.js +12 -10
  5. package/Badge.js +10 -9
  6. package/Breadcrumb.js +10 -9
  7. package/Button.js +9 -8
  8. package/Calendar.js +13 -10
  9. package/Card.js +9 -8
  10. package/Carousel.js +9 -8
  11. package/Cascader.js +2 -2
  12. package/Checkbox.js +8 -6
  13. package/Collapse.js +3 -2
  14. package/ColorPicker.js +16 -13
  15. package/Comment.js +6 -5
  16. package/ConfigProvider.js +6 -5
  17. package/Copy.js +6 -5
  18. package/DatePicker.js +13 -8
  19. package/Descriptions.js +5 -4
  20. package/Details.js +15 -0
  21. package/Development.js +5 -3
  22. package/Divider.js +5 -4
  23. package/Draggable.js +4 -3
  24. package/Dropdown.js +12 -10
  25. package/Empty.js +6 -3
  26. package/Form.js +17 -13
  27. package/Icon.js +7 -6
  28. package/IconHover.js +4 -2
  29. package/Image.js +5 -5
  30. package/Input.js +17 -12
  31. package/InputNumber.js +7 -5
  32. package/Layout.js +13 -12
  33. package/Link.js +6 -5
  34. package/List.js +9 -7
  35. package/Loading.js +3 -2
  36. package/Mentions.js +7 -5
  37. package/Menu.js +7 -6
  38. package/Message.js +13 -6
  39. package/Modal.js +2 -2
  40. package/Notice.js +10 -7
  41. package/Notification.js +13 -7
  42. package/OverflowEllipsis.js +5 -4
  43. package/PageHeader.js +9 -7
  44. package/Pagination.js +2 -2
  45. package/Popconfirm.js +6 -5
  46. package/Popover.js +6 -5
  47. package/Progress.js +6 -5
  48. package/Radio.js +8 -6
  49. package/Rate.js +6 -5
  50. package/ResizeBox.js +12 -11
  51. package/Result.js +5 -4
  52. package/Select.js +6 -5
  53. package/SelectView.js +2 -2
  54. package/Skeleton.js +6 -5
  55. package/Slider.js +11 -8
  56. package/Space.js +6 -5
  57. package/SpeechSynthesis.js +4 -2
  58. package/Spin.js +6 -5
  59. package/Statistic.js +10 -8
  60. package/Steps.js +9 -8
  61. package/SuspenseFallbackTest.js +3 -2
  62. package/Switch.js +13 -8
  63. package/Table.js +27 -15
  64. package/Tabs.js +5 -5
  65. package/Tag.js +8 -6
  66. package/Tooltip.js +9 -7
  67. package/Transfer.js +8 -6
  68. package/Tree.js +3 -2
  69. package/TreeSelect.js +3 -3
  70. package/Trigger.js +17 -12
  71. package/Typography.js +7 -6
  72. package/Upload.js +6 -5
  73. package/affix/index.js +32 -31
  74. package/alert/index.js +60 -70
  75. package/anchor/Anchor.js +46 -45
  76. package/anchor/Link.js +9 -8
  77. package/anchor/util.js +15 -14
  78. package/auto-complete/index.js +154 -15
  79. package/avatar/Avatar.js +6 -5
  80. package/avatar/Group.js +17 -16
  81. package/back-top/index.js +38 -36
  82. package/badge/Count.js +11 -11
  83. package/badge/index.js +35 -34
  84. package/breadcrumb/Item.js +7 -7
  85. package/breadcrumb/index.js +29 -28
  86. package/button/Group.js +8 -7
  87. package/button/index.js +13 -12
  88. package/calendar/Month.js +140 -10
  89. package/calendar/Year.js +21 -20
  90. package/calendar/header/Panel.js +57 -0
  91. package/calendar/header/index.js +110 -0
  92. package/calendar/hook/useCellClassName.js +41 -0
  93. package/calendar/index.js +171 -14
  94. package/card/Grid.js +12 -11
  95. package/card/Meta.js +14 -13
  96. package/card/index.js +11 -10
  97. package/carousel/Arrow.js +16 -15
  98. package/carousel/Indicator.js +19 -18
  99. package/carousel/index.js +16 -15
  100. package/cascader/Cascader.js +299 -24
  101. package/cascader/base/node.js +142 -0
  102. package/cascader/base/store.js +93 -0
  103. package/cascader/hook/useRefCurrent.js +12 -0
  104. package/cascader/index.js +2 -2
  105. package/cascader/panel/List.js +278 -0
  106. package/cascader/panel/Option.js +33 -0
  107. package/cascader/panel/Search.js +169 -0
  108. package/cascader/util.js +64 -12
  109. package/checkbox/Checkbox.js +125 -17
  110. package/checkbox/Group.js +97 -12
  111. package/checkbox/GroupBlock.js +62 -6
  112. package/checkbox/index.js +7 -6
  113. package/collapse/Collapse.js +67 -234
  114. package/collapse/Item.js +181 -9
  115. package/collapse/index.js +1 -1
  116. package/color-picker/ControlBar.js +21 -20
  117. package/color-picker/InputAlpha.js +10 -9
  118. package/color-picker/InputHex.js +27 -25
  119. package/color-picker/InputRgb.js +27 -24
  120. package/color-picker/Mode.js +6 -7
  121. package/color-picker/Palette.js +16 -14
  122. package/color-picker/Panel.js +269 -15
  123. package/color-picker/colors.js +8 -7
  124. package/color-picker/hooks/useColorPicker.js +128 -0
  125. package/{chunk/k-OUstoD.js → color-picker/hooks/useControlBlock.js} +1 -1
  126. package/color-picker/index.js +160 -24
  127. package/color-picker/utils.js +18 -17
  128. package/comment/index.js +23 -22
  129. package/components/common/development/index.js +32 -0
  130. package/components/common/empty/index.js +17 -0
  131. package/components/common/higher-order/with-speech-synthesis/index.js +61 -0
  132. package/{chunk/DxVvggX2.js → components/common/hooks/useComputedState.js} +2 -2
  133. package/components/common/hooks/useCreate.js +8 -0
  134. package/components/common/hooks/useForceUpdate.js +8 -0
  135. package/{chunk/B4YRLi8r.js → components/common/hooks/useId.js} +5 -5
  136. package/components/common/hooks/useInView.js +31 -0
  137. package/{chunk/B4WG1mhs.js → components/common/hooks/useIntersectionObserver.js} +9 -9
  138. package/components/common/hooks/useInterval.js +18 -0
  139. package/{chunk/oopARUrq.js → components/common/hooks/useIsFirstRender.js} +1 -1
  140. package/components/common/hooks/useIsomorphicLayoutEffect.js +6 -0
  141. package/components/common/hooks/useKeyboardEvent.js +17 -0
  142. package/{chunk/BL9DMeor.js → components/common/hooks/useListenResize.js} +1 -1
  143. package/{chunk/BXAeh0_V.js → components/common/hooks/useMedia.js} +1 -1
  144. package/{chunk/BFTV6myl.js → components/common/hooks/useMergeProps.js} +3 -3
  145. package/{chunk/D5wldVRB.js → components/common/hooks/useMergeValue.js} +8 -8
  146. package/{chunk/zmmqLCF4.js → components/common/hooks/useOnlineStatus.js} +1 -1
  147. package/{chunk/DU1RCDfh.js → components/common/hooks/useOverflowHidden.js} +1 -1
  148. package/components/common/hooks/useOverrideRef.js +14 -0
  149. package/{chunk/BsY85n3_.js → components/common/hooks/usePersistCallback.js} +2 -2
  150. package/{chunk/rT6qmv-Y.js → components/common/hooks/usePrefersColorSchemeDark.js} +5 -5
  151. package/components/common/hooks/usePrevious.js +10 -0
  152. package/components/common/hooks/useRefs.js +10 -0
  153. package/{chunk/CmZzBtA4.js → components/common/hooks/useResizeObserver.js} +4 -4
  154. package/{chunk/hEWZQ8Zi.js → components/common/hooks/useStateCallback.js} +5 -5
  155. package/{chunk/Duezix3m.js → components/common/hooks/useStateWithPromise.js} +6 -6
  156. package/components/common/hooks/useUpdateEffect.js +12 -0
  157. package/components/common/hooks/useWatch.js +11 -0
  158. package/{chunk/CB4jGw4K.js → components/common/hooks/useWindowSize.js} +6 -6
  159. package/components/common/icons/file/index.js +56 -0
  160. package/components/common/space/index.js +110 -0
  161. package/components/common/utils/PqbCSSTransition.js +32 -0
  162. package/{chunk/B6r8jPCd.js → components/common/utils/constant.js} +2 -2
  163. package/components/common/utils/copy.js +7 -0
  164. package/{chunk/B3LeSidy.js → components/common/utils/dayjs.js} +25 -24
  165. package/components/common/utils/dom.js +51 -0
  166. package/components/common/utils/fillNBSP.js +7 -0
  167. package/{chunk/B7M-FGia.js → components/common/utils/getHighlightText.js} +11 -10
  168. package/{chunk/Dh7Osrvr.js → components/common/utils/getHotkeyHandler.js} +6 -5
  169. package/{chunk/DKHXj8Kf.js → components/common/utils/getStringLength.js} +3 -2
  170. package/components/common/utils/include.js +10 -0
  171. package/components/common/utils/is.js +126 -0
  172. package/{chunk/DH7HTOV_.js → components/common/utils/mergeProps.js} +3 -2
  173. package/components/common/utils/mergedToString.js +16 -0
  174. package/components/common/utils/omit.js +12 -0
  175. package/components/common/utils/pad.js +18 -0
  176. package/components/common/utils/pick.js +18 -0
  177. package/components/common/utils/react19Adapter.js +3 -0
  178. package/{chunk/BZ3igxQN.js → components/common/utils/reactDOM.js} +13 -13
  179. package/components/common/utils/resizeObserverEffect.js +23 -0
  180. package/components/common/utils/scrollIntoView.js +25 -0
  181. package/components/common/utils/setDarkTheme.js +27 -0
  182. package/components/common/utils/setPrimaryColor.js +30 -0
  183. package/{chunk/DzekwbB4.js → components/common/utils/setTheme.js} +16 -14
  184. package/components/common/utils/style.js +39 -0
  185. package/components/common/utils/throttleByRaf.js +16 -0
  186. package/components/common/utils/warning.js +11 -0
  187. package/config-provider/ConfigProvider.js +56 -13
  188. package/config-provider/context.js +24 -7
  189. package/config-provider/index.js +6 -5
  190. package/copy/index.js +15 -14
  191. package/date-picker/Picker.js +75 -73
  192. package/date-picker/RangePicker.js +585 -22
  193. package/date-picker/hook/useCellClassName.js +60 -0
  194. package/date-picker/index.js +32 -27
  195. package/date-picker/panel/Body.js +88 -0
  196. package/date-picker/panel/Footer.js +71 -0
  197. package/date-picker/panel/Header.js +69 -0
  198. package/date-picker/panel/Shortcut.js +45 -0
  199. package/date-picker/panel/WeekList.js +19 -0
  200. package/date-picker/panel/date/index.js +193 -0
  201. package/date-picker/panel/month/index.js +112 -0
  202. package/date-picker/panel/quarter/index.js +97 -0
  203. package/date-picker/panel/range/index.js +250 -0
  204. package/date-picker/panel/week/index.js +35 -0
  205. package/date-picker/panel/year/index.js +73 -0
  206. package/date-picker/util.js +8 -8
  207. package/descriptions/index.js +24 -23
  208. package/details/index.js +82 -0
  209. package/details/interface.js +1 -0
  210. package/development/index.js +17 -36
  211. package/dist/compute-scroll-into-view/src/index.js +126 -0
  212. package/dist/dom-helpers/addClass.js +10 -0
  213. package/dist/dom-helpers/hasClass.js +8 -0
  214. package/dist/dom-helpers/removeClass.js +18 -0
  215. package/dist/react-transition-group/chunk/CPfP7aNL.js +381 -0
  216. package/dist/react-transition-group/chunk/F6QOOr2H.js +500 -0
  217. package/dist/react-transition-group/src/CSSTransition.js +202 -0
  218. package/dist/react-transition-group/src/ReplaceTransition.js +43 -0
  219. package/dist/react-transition-group/src/SwitchTransition.js +117 -0
  220. package/dist/react-transition-group/src/TransitionGroup.js +160 -0
  221. package/dist/react-transition-group/src/TransitionGroupContext.js +5 -0
  222. package/dist/react-transition-group/src/config.js +6 -0
  223. package/{chunk/Coz3rCng.js → dist/scroll-into-view-if-needed/src/index.js} +5 -5
  224. package/dist/tinycolor/chunk/DGZSWe7E.js +182 -0
  225. package/dist/tinycolor/customize/index.js +12 -0
  226. package/dist/tinycolor/src/conversion.js +143 -0
  227. package/dist/tinycolor/src/css-color-names.js +153 -0
  228. package/dist/tinycolor/src/format-input.js +77 -0
  229. package/dist/tinycolor/src/index.js +388 -0
  230. package/dist/tinycolor/src/util.js +32 -0
  231. package/dist/tween/src/easing.js +43 -0
  232. package/dist/tween/src/tween.js +70 -0
  233. package/dist/validate/chunk/BXTR2LmP.js +49 -0
  234. package/{chunk/DEuVgCzp.js → dist/validate/src/index.js} +91 -151
  235. package/dist/validate/src/util.js +22 -0
  236. package/divider/index.js +15 -14
  237. package/draggable/index.js +17 -16
  238. package/drawer/Drawer.js +41 -39
  239. package/dropdown/Button.js +88 -9
  240. package/dropdown/index.js +85 -163
  241. package/empty/index.js +21 -5
  242. package/form/Control.js +1 -1
  243. package/form/Form.js +159 -14
  244. package/form/FormItem.js +30 -29
  245. package/form/FormList.js +1 -1
  246. package/form/context.js +1 -1
  247. package/form/hook/useContext.js +32 -0
  248. package/form/hook/useForm.js +58 -0
  249. package/form/hook/useState.js +31 -0
  250. package/form/hook/useWatch.js +36 -0
  251. package/form/index.js +29 -106
  252. package/form/promisify.js +1 -1
  253. package/form/store.js +1 -1
  254. package/form/util.js +5 -5
  255. package/grid/Col.js +14 -13
  256. package/grid/Grid.js +23 -22
  257. package/grid/GridItem.js +23 -22
  258. package/grid/Row.js +19 -18
  259. package/{chunk/xAb6ZgqS.js → grid/hook/useResponsiveState.js} +2 -2
  260. package/hooks/index.js +38 -38
  261. package/hooks/use-watermark/utils.js +9 -0
  262. package/hooks/useComputedState.js +2 -2
  263. package/hooks/useCreate.js +2 -2
  264. package/hooks/useForceUpdate.js +2 -2
  265. package/hooks/useId.js +2 -2
  266. package/hooks/useInView.js +2 -2
  267. package/hooks/useIntersectionObserver.js +2 -2
  268. package/hooks/useInterval.js +2 -2
  269. package/hooks/useIsFirstRender.js +2 -2
  270. package/hooks/useIsomorphicLayoutEffect.js +2 -2
  271. package/hooks/useKeyboardEvent.js +2 -2
  272. package/hooks/useListenResize.js +2 -2
  273. package/hooks/useMedia.js +2 -2
  274. package/hooks/useMergeProps.js +2 -2
  275. package/hooks/useMergeValue.js +2 -2
  276. package/hooks/useOnlineStatus.js +2 -2
  277. package/hooks/useOverflowHidden.js +2 -2
  278. package/hooks/useOverrideRef.js +2 -2
  279. package/hooks/usePersistCallback.js +2 -2
  280. package/hooks/usePrefersColorSchemeDark.js +2 -2
  281. package/hooks/usePrevious.js +2 -2
  282. package/hooks/useRefs.js +2 -2
  283. package/hooks/useResizeObserver.js +2 -2
  284. package/hooks/useStateCallback.js +2 -2
  285. package/hooks/useStateWithPromise.js +2 -2
  286. package/hooks/useUpdateEffect.js +2 -2
  287. package/hooks/useVerificationCode.js +21 -21
  288. package/hooks/useWatch.js +2 -2
  289. package/hooks/useWatermark.js +72 -77
  290. package/hooks/useWindowSize.js +2 -2
  291. package/icon/addFromIconFontCn.js +31 -5
  292. package/icon/index.js +22 -48
  293. package/icon-hover/index.js +37 -5
  294. package/icons/file.js +15 -63
  295. package/image/Image.js +35 -32
  296. package/image/ImageFooter.js +44 -6
  297. package/image/ImagePreview.js +480 -34
  298. package/image/ImagePreviewArrow.js +8 -7
  299. package/image/ImagePreviewGroup.js +9 -9
  300. package/image/index.js +3 -3
  301. package/image/util/getFixTranslate.js +7 -0
  302. package/image/util/getScale.js +74 -0
  303. package/image/util/hook/useImageStatus.js +16 -0
  304. package/image/util/hook/useShowFooter.js +7 -0
  305. package/index.js +681 -614
  306. package/input/Button.js +67 -9
  307. package/input/Group.js +9 -8
  308. package/input/Input.js +158 -684
  309. package/input/InputElement.js +33 -33
  310. package/input/Number.js +2 -2
  311. package/input/Password.js +69 -11
  312. package/input/Search.js +68 -11
  313. package/input/Textarea.js +166 -14
  314. package/input/index.js +17 -13
  315. package/input-number/index.js +209 -16
  316. package/input-number/useSelectionRange.js +3 -3
  317. package/input-tag/InputTag.js +78 -72
  318. package/layout/Content.js +7 -6
  319. package/layout/Footer.js +7 -6
  320. package/layout/Header.js +5 -4
  321. package/layout/Sider.js +19 -18
  322. package/layout/index.js +21 -20
  323. package/link/index.js +15 -14
  324. package/list/Item.js +12 -11
  325. package/list/Meta.js +7 -6
  326. package/list/index.js +268 -17
  327. package/loading/index.js +13 -13
  328. package/loading/style/index.module.less.js +4 -0
  329. package/locale/en-US.js +4 -3
  330. package/locale/tr-TR.js +4 -3
  331. package/mentions/index.js +145 -11
  332. package/menu/Item.js +3 -3
  333. package/menu/Menu.js +182 -24
  334. package/menu/OverflowWrap.js +88 -8
  335. package/menu/index.js +9 -9
  336. package/menu/sub-menu/Inline.js +111 -0
  337. package/menu/sub-menu/Pop.js +120 -0
  338. package/menu/sub-menu/index.js +17 -0
  339. package/message/index.js +147 -13
  340. package/message/useMessage.js +57 -5
  341. package/modal/Confirm.js +110 -11
  342. package/modal/Modal.js +440 -20
  343. package/modal/index.js +1 -1
  344. package/modal/use-modal/Hook.js +52 -0
  345. package/modal/use-modal/index.js +68 -0
  346. package/notice/index.js +176 -17
  347. package/notification/index.js +149 -15
  348. package/notification/useNotification.js +52 -4
  349. package/overflow-ellipsis/OverflowItem.js +17 -16
  350. package/overflow-ellipsis/index.js +30 -29
  351. package/package.json +1 -1
  352. package/page-header/index.js +30 -28
  353. package/pagination/PageItem.js +16 -15
  354. package/pagination/PageJumper.js +13 -12
  355. package/pagination/PageOption.js +45 -5
  356. package/pagination/Pagination.js +244 -11
  357. package/pagination/index.js +2 -2
  358. package/picker/Input.js +47 -45
  359. package/picker/InputRange.js +53 -51
  360. package/popconfirm/index.js +10 -9
  361. package/popover/index.js +12 -11
  362. package/portal/Portal.js +7 -7
  363. package/progress/CircleProgress.js +1 -1
  364. package/progress/index.js +32 -31
  365. package/radio/Group.js +94 -14
  366. package/radio/GroupBlock.js +68 -7
  367. package/radio/Radio.js +92 -14
  368. package/radio/index.js +7 -6
  369. package/rate/index.js +31 -30
  370. package/resize-box/ResizeTrigger.js +10 -9
  371. package/resize-box/Split.js +66 -65
  372. package/resize-box/SplitGroup.js +10 -9
  373. package/resize-box/index.js +18 -17
  374. package/result/index.js +33 -32
  375. package/select/OptGroup.js +10 -10
  376. package/select/Option.js +93 -6
  377. package/select/Select.js +548 -24
  378. package/select/index.js +3 -3
  379. package/select/util.js +139 -18
  380. package/select-view/Core.js +23 -21
  381. package/select-view/index.js +7 -7
  382. package/skeleton/index.js +12 -11
  383. package/slider/Button.js +24 -23
  384. package/slider/Input.js +11 -11
  385. package/slider/hook/useInterval.js +73 -0
  386. package/slider/hook/useLegalValue.js +70 -0
  387. package/slider/index.js +220 -345
  388. package/space/index.js +38 -127
  389. package/space-/index.js +17 -16
  390. package/speech-synthesis/index.js +9 -63
  391. package/speech-synthesis/style/index.less.js +1 -0
  392. package/spin/DotLoading.js +10 -9
  393. package/spin/index.js +21 -20
  394. package/statistic/Countdown.js +16 -15
  395. package/statistic/index.js +45 -43
  396. package/statistic/util.js +1 -1
  397. package/steps/index.js +14 -13
  398. package/style.css +1 -1
  399. package/suspense-fallback-test/index.js +6 -5
  400. package/suspense-fallback-test/style/index.less.js +1 -0
  401. package/switch/index.js +43 -38
  402. package/table/Table.js +627 -21
  403. package/table/hook/useColumns.js +141 -0
  404. package/table/hook/useComponent.js +28 -0
  405. package/table/hook/useExpand.js +36 -0
  406. package/table/hook/useRowSelection.js +94 -0
  407. package/table/hook/useSorter.js +54 -0
  408. package/table/hook/useStickyClassNames.js +30 -0
  409. package/table/hook/useStickyOffsets.js +28 -0
  410. package/table/hook/useThResizable.js +39 -0
  411. package/table/index.js +28 -15
  412. package/table/summary/Cell.js +10 -0
  413. package/table/summary/Row.js +25 -0
  414. package/table/summary/context.js +5 -0
  415. package/table/summary/index.js +12 -0
  416. package/table/tbody/Td.js +180 -0
  417. package/table/tbody/Tr.js +165 -0
  418. package/table/tbody/index.js +154 -0
  419. package/table/tfoot/index.js +16 -0
  420. package/table/th-resizable/index.js +46 -0
  421. package/table/thead/Column.js +251 -0
  422. package/table/thead/index.js +129 -0
  423. package/tabs/Tab.js +169 -16
  424. package/tabs/TabContent.js +51 -6
  425. package/tabs/TabPane.js +13 -12
  426. package/tabs/hook/useDomSize.js +17 -0
  427. package/tabs/hook/useHeaderScroll.js +67 -0
  428. package/tabs/index.js +6 -6
  429. package/tabs/tab-header/DropdownIcon.js +66 -0
  430. package/tabs/tab-header/TabInk.js +66 -0
  431. package/tabs/tab-header/TabNavIcon.js +66 -0
  432. package/tabs/tab-header/TabTitle.js +78 -0
  433. package/tabs/tab-header/index.js +331 -0
  434. package/tag/index.js +32 -30
  435. package/time-picker/Picker.js +56 -55
  436. package/time-picker/RangePicker.js +14 -14
  437. package/time-picker/TimeColumn.js +1 -1
  438. package/time-picker/TimePicker.js +42 -41
  439. package/time-picker/util.js +23 -22
  440. package/timeline/Item.js +4 -3
  441. package/timeline/Timeline.js +12 -11
  442. package/tooltip/index.js +35 -33
  443. package/transfer/Item.js +104 -9
  444. package/transfer/List.js +186 -13
  445. package/transfer/index.js +181 -13
  446. package/tree/Animation.js +100 -9
  447. package/tree/Node.js +212 -13
  448. package/tree/NodeList.js +80 -6
  449. package/tree/Tree.js +595 -17
  450. package/tree/index.js +3 -2
  451. package/tree-select/List.js +122 -6
  452. package/tree-select/Select.js +258 -22
  453. package/tree-select/hook/useKeyCache.js +55 -0
  454. package/tree-select/hook/useStateValue.js +95 -0
  455. package/tree-select/hook/useTreeData.js +13 -0
  456. package/tree-select/index.js +3 -3
  457. package/trigger/getPopupStyle.js +2 -2
  458. package/trigger/index.js +27 -22
  459. package/types/common/empty/index.d.ts +1 -1
  460. package/types/common/icons/file/index.d.ts +1 -1
  461. package/types/common/space/index.d.ts +1 -1
  462. package/types/common/utils/is.d.ts +2 -1
  463. package/types/pc/anchor/context.d.ts +1 -1
  464. package/types/pc/color-picker/InputHex.d.ts +1 -1
  465. package/types/pc/color-picker/InputRgb.d.ts +1 -1
  466. package/types/pc/color-picker/Mode.d.ts +1 -1
  467. package/types/pc/color-picker/Palette.d.ts +1 -1
  468. package/types/pc/color-picker/utils.d.ts +1 -1
  469. package/types/pc/config-provider/context.d.ts +1 -1
  470. package/types/pc/date-picker/Picker.d.ts +1 -1
  471. package/types/pc/date-picker/RangePicker.d.ts +1 -1
  472. package/types/pc/details/index.d.ts +4 -0
  473. package/types/pc/details/interface.d.ts +33 -0
  474. package/types/pc/grid/context.d.ts +1 -1
  475. package/types/pc/grid/util.d.ts +1 -1
  476. package/types/pc/hooks/use-watermark/index.d.ts +1 -1
  477. package/types/pc/icons/file/index.d.ts +1 -1
  478. package/types/pc/index.d.ts +1 -0
  479. package/types/pc/input/index.d.ts +1 -1
  480. package/types/pc/message/index.d.ts +1 -2
  481. package/types/pc/message/useMessage.d.ts +1 -1
  482. package/types/pc/notification/useNotification.d.ts +1 -1
  483. package/types/pc/select/interface.d.ts +3 -3
  484. package/types/pc/space/index.d.ts +1 -1
  485. package/types/pc/table/ColGroup.d.ts +1 -1
  486. package/types/pc/table/constant.d.ts +1 -1
  487. package/types/pc/tree/Context.d.ts +2 -2
  488. package/types/pc/tree/index.d.ts +1 -1
  489. package/types/pc/tree/interface.d.ts +6 -2
  490. package/types/pc/trigger/getPopupStyle.d.ts +1 -1
  491. package/types/pc/typography/EditContent.d.ts +1 -1
  492. package/types/pc/typography/Ellipsis.d.ts +1 -1
  493. package/types/pc/typography/Paragraph.d.ts +1 -1
  494. package/types/pc/typography/Title.d.ts +1 -1
  495. package/types/pc/upload/Upload.d.ts +2 -2
  496. package/types/pc/upload/constant.d.ts +4 -0
  497. package/types/pc/upload/index.d.ts +2 -0
  498. package/types/pc/upload/interface.d.ts +0 -3
  499. package/types/pc/upload/request.d.ts +1 -1
  500. package/types/pc/upload/util.d.ts +1 -1
  501. package/types/pc/utils/names.d.ts +140 -134
  502. package/types/pc/verification-code/VerificationCode.d.ts +1 -1
  503. package/types/pc/verification-code/index.d.ts +1 -1
  504. package/types/pc/watermark/Watermark.d.ts +1 -1
  505. package/types/pc/watermark/index.d.ts +1 -1
  506. package/typography/Base.js +43 -42
  507. package/typography/EditContent.js +7 -7
  508. package/typography/Ellipsis.js +193 -23
  509. package/typography/Operations.js +4 -4
  510. package/typography/Paragraph.js +12 -11
  511. package/typography/Typography.js +8 -7
  512. package/typography/index.js +15 -10
  513. package/typography/useEllipsis.js +21 -21
  514. package/upload/TriggerNode.js +9 -8
  515. package/upload/Upload.js +127 -550
  516. package/upload/Uploader.js +12 -12
  517. package/upload/constant.js +9 -0
  518. package/upload/index.js +4 -4
  519. package/upload/interface.js +1 -9
  520. package/upload/list/PictureItem.js +119 -0
  521. package/upload/list/TextItem.js +123 -0
  522. package/upload/list/UploadProgress.js +96 -0
  523. package/upload/list/index.js +140 -0
  524. package/upload/request.js +3 -3
  525. package/upload/request_.js +5 -5
  526. package/utils/PqbCSSTransition.js +3 -3
  527. package/utils/color.js +1 -1
  528. package/utils/computeScrollIntoView.js +4 -126
  529. package/utils/constant.js +6 -6
  530. package/utils/contextHolder.js +29 -4
  531. package/utils/dayjs.js +11 -11
  532. package/utils/dom.js +7 -49
  533. package/utils/fillNBSP.js +3 -3
  534. package/utils/getHighlightText.js +1 -1
  535. package/utils/getHotkeyHandler.js +1 -1
  536. package/utils/getStringLength.js +1 -1
  537. package/utils/include.js +3 -3
  538. package/utils/index.js +280 -270
  539. package/utils/is.js +39 -39
  540. package/utils/mergeProps.js +1 -1
  541. package/utils/mergedToString.js +1 -1
  542. package/utils/names.js +4 -0
  543. package/utils/omit.js +1 -1
  544. package/utils/pad.js +3 -16
  545. package/utils/pick.js +5 -5
  546. package/utils/react19Adapter.js +1 -3
  547. package/utils/reactDOM.js +3 -3
  548. package/utils/reactTransitionGroup.js +12 -8
  549. package/utils/resizeObserverEffect.js +1 -1
  550. package/utils/scrollIntoView.js +1 -1
  551. package/utils/setDarkTheme.js +10 -30
  552. package/utils/setPrimaryColor.js +6 -29
  553. package/utils/setTheme.js +3 -3
  554. package/utils/style.js +4 -37
  555. package/utils/throttleByRaf.js +3 -14
  556. package/utils/throttleByRaf2.js +1 -1
  557. package/utils/tinycolor.js +26 -27
  558. package/utils/tween.js +4 -3
  559. package/utils/validate.js +5 -4
  560. package/utils/warning.js +3 -9
  561. package/verification-code/VerificationCode.js +25 -24
  562. package/version/index.js +1 -1
  563. package/virtual-list/VirtualList.js +278 -391
  564. package/virtual-list/util/algorithm.js +32 -0
  565. package/virtual-list/util/item.js +99 -0
  566. package/watermark/Watermark.js +17 -16
  567. package/chunk/5_U1CBIu.js +0 -8
  568. package/chunk/9TSjT7x_.js +0 -927
  569. package/chunk/B2yFlXke.js +0 -6
  570. package/chunk/B44Hj5ad.js +0 -697
  571. package/chunk/B5RFT17G.js +0 -15
  572. package/chunk/BJ9_azwQ.js +0 -1391
  573. package/chunk/BKKEev13.js +0 -11
  574. package/chunk/BKT9BFf4.js +0 -11
  575. package/chunk/BL8tIaO8.js +0 -649
  576. package/chunk/BNevupAU.js +0 -72
  577. package/chunk/BYdIoY50.js +0 -17
  578. package/chunk/BbQEqpOn.js +0 -7835
  579. package/chunk/BcCuJQY8.js +0 -214
  580. package/chunk/Bg3uJGPu.js +0 -10
  581. package/chunk/BsUZRQDT.js +0 -23
  582. package/chunk/C4OrxKE6.js +0 -18
  583. package/chunk/C8Kcc_9d.js +0 -1479
  584. package/chunk/CC---6jO.js +0 -110
  585. package/chunk/CCKr5jj1.js +0 -31
  586. package/chunk/CIRG541s.js +0 -22
  587. package/chunk/CPCJg6bv.js +0 -570
  588. package/chunk/CQ_WOOmf.js +0 -8
  589. package/chunk/CYhxqVkn.js +0 -9
  590. package/chunk/CftuXmo_.js +0 -6
  591. package/chunk/CkEaf5V0.js +0 -473
  592. package/chunk/ClM74To2.js +0 -58
  593. package/chunk/ClqoGc3r.js +0 -17
  594. package/chunk/D-Hw4x_H.js +0 -88
  595. package/chunk/D-ap9qEk.js +0 -14
  596. package/chunk/DWvmq7az.js +0 -843
  597. package/chunk/Dc-uXGtN.js +0 -178
  598. package/chunk/DxYoPlum.js +0 -50
  599. package/chunk/NPajzdOv.js +0 -27
  600. package/chunk/VSe_Wq1g.js +0 -10
  601. package/chunk/a3hR6zLw.js +0 -12
  602. package/types/common/assets/hourglass.d.ts +0 -2
@@ -0,0 +1,153 @@
1
+ const e = {
2
+ aliceblue: "#f0f8ff",
3
+ antiquewhite: "#faebd7",
4
+ aqua: "#00ffff",
5
+ aquamarine: "#7fffd4",
6
+ azure: "#f0ffff",
7
+ beige: "#f5f5dc",
8
+ bisque: "#ffe4c4",
9
+ black: "#000000",
10
+ blanchedalmond: "#ffebcd",
11
+ blue: "#0000ff",
12
+ blueviolet: "#8a2be2",
13
+ brown: "#a52a2a",
14
+ burlywood: "#deb887",
15
+ cadetblue: "#5f9ea0",
16
+ chartreuse: "#7fff00",
17
+ chocolate: "#d2691e",
18
+ coral: "#ff7f50",
19
+ cornflowerblue: "#6495ed",
20
+ cornsilk: "#fff8dc",
21
+ crimson: "#dc143c",
22
+ cyan: "#00ffff",
23
+ darkblue: "#00008b",
24
+ darkcyan: "#008b8b",
25
+ darkgoldenrod: "#b8860b",
26
+ darkgray: "#a9a9a9",
27
+ darkgreen: "#006400",
28
+ darkgrey: "#a9a9a9",
29
+ darkkhaki: "#bdb76b",
30
+ darkmagenta: "#8b008b",
31
+ darkolivegreen: "#556b2f",
32
+ darkorange: "#ff8c00",
33
+ darkorchid: "#9932cc",
34
+ darkred: "#8b0000",
35
+ darksalmon: "#e9967a",
36
+ darkseagreen: "#8fbc8f",
37
+ darkslateblue: "#483d8b",
38
+ darkslategray: "#2f4f4f",
39
+ darkslategrey: "#2f4f4f",
40
+ darkturquoise: "#00ced1",
41
+ darkviolet: "#9400d3",
42
+ deeppink: "#ff1493",
43
+ deepskyblue: "#00bfff",
44
+ dimgray: "#696969",
45
+ dimgrey: "#696969",
46
+ dodgerblue: "#1e90ff",
47
+ firebrick: "#b22222",
48
+ floralwhite: "#fffaf0",
49
+ forestgreen: "#228b22",
50
+ fuchsia: "#ff00ff",
51
+ gainsboro: "#dcdcdc",
52
+ ghostwhite: "#f8f8ff",
53
+ goldenrod: "#daa520",
54
+ gold: "#ffd700",
55
+ gray: "#808080",
56
+ green: "#008000",
57
+ greenyellow: "#adff2f",
58
+ grey: "#808080",
59
+ honeydew: "#f0fff0",
60
+ hotpink: "#ff69b4",
61
+ indianred: "#cd5c5c",
62
+ indigo: "#4b0082",
63
+ ivory: "#fffff0",
64
+ khaki: "#f0e68c",
65
+ lavenderblush: "#fff0f5",
66
+ lavender: "#e6e6fa",
67
+ lawngreen: "#7cfc00",
68
+ lemonchiffon: "#fffacd",
69
+ lightblue: "#add8e6",
70
+ lightcoral: "#f08080",
71
+ lightcyan: "#e0ffff",
72
+ lightgoldenrodyellow: "#fafad2",
73
+ lightgray: "#d3d3d3",
74
+ lightgreen: "#90ee90",
75
+ lightgrey: "#d3d3d3",
76
+ lightpink: "#ffb6c1",
77
+ lightsalmon: "#ffa07a",
78
+ lightseagreen: "#20b2aa",
79
+ lightskyblue: "#87cefa",
80
+ lightslategray: "#778899",
81
+ lightslategrey: "#778899",
82
+ lightsteelblue: "#b0c4de",
83
+ lightyellow: "#ffffe0",
84
+ lime: "#00ff00",
85
+ limegreen: "#32cd32",
86
+ linen: "#faf0e6",
87
+ magenta: "#ff00ff",
88
+ maroon: "#800000",
89
+ mediumaquamarine: "#66cdaa",
90
+ mediumblue: "#0000cd",
91
+ mediumorchid: "#ba55d3",
92
+ mediumpurple: "#9370db",
93
+ mediumseagreen: "#3cb371",
94
+ mediumslateblue: "#7b68ee",
95
+ mediumspringgreen: "#00fa9a",
96
+ mediumturquoise: "#48d1cc",
97
+ mediumvioletred: "#c71585",
98
+ midnightblue: "#191970",
99
+ mintcream: "#f5fffa",
100
+ mistyrose: "#ffe4e1",
101
+ moccasin: "#ffe4b5",
102
+ navajowhite: "#ffdead",
103
+ navy: "#000080",
104
+ oldlace: "#fdf5e6",
105
+ olive: "#808000",
106
+ olivedrab: "#6b8e23",
107
+ orange: "#ffa500",
108
+ orangered: "#ff4500",
109
+ orchid: "#da70d6",
110
+ palegoldenrod: "#eee8aa",
111
+ palegreen: "#98fb98",
112
+ paleturquoise: "#afeeee",
113
+ palevioletred: "#db7093",
114
+ papayawhip: "#ffefd5",
115
+ peachpuff: "#ffdab9",
116
+ peru: "#cd853f",
117
+ pink: "#ffc0cb",
118
+ plum: "#dda0dd",
119
+ powderblue: "#b0e0e6",
120
+ purple: "#800080",
121
+ rebeccapurple: "#663399",
122
+ red: "#ff0000",
123
+ rosybrown: "#bc8f8f",
124
+ royalblue: "#4169e1",
125
+ saddlebrown: "#8b4513",
126
+ salmon: "#fa8072",
127
+ sandybrown: "#f4a460",
128
+ seagreen: "#2e8b57",
129
+ seashell: "#fff5ee",
130
+ sienna: "#a0522d",
131
+ silver: "#c0c0c0",
132
+ skyblue: "#87ceeb",
133
+ slateblue: "#6a5acd",
134
+ slategray: "#708090",
135
+ slategrey: "#708090",
136
+ snow: "#fffafa",
137
+ springgreen: "#00ff7f",
138
+ steelblue: "#4682b4",
139
+ tan: "#d2b48c",
140
+ teal: "#008080",
141
+ thistle: "#d8bfd8",
142
+ tomato: "#ff6347",
143
+ turquoise: "#40e0d0",
144
+ violet: "#ee82ee",
145
+ wheat: "#f5deb3",
146
+ white: "#ffffff",
147
+ whitesmoke: "#f5f5f5",
148
+ yellow: "#ffff00",
149
+ yellowgreen: "#9acd32"
150
+ };
151
+ export {
152
+ e as names
153
+ };
@@ -0,0 +1,77 @@
1
+ import { rgbToRgb as A, hsvToRgb as y, hslToRgb as F, cmykToRgb as v, convertHexToDecimal as i, parseIntFromHex as n } from "./conversion.js";
2
+ import { names as u } from "./css-color-names.js";
3
+ import { convertToPercentage as x, boundAlpha as R } from "./util.js";
4
+ function M(a) {
5
+ let r = { r: 0, g: 0, b: 0 }, e = 1, g = null, c = null, p = null, o = !1, m = !1;
6
+ return typeof a == "string" && (a = T(a)), typeof a == "object" && (s(a.r) && s(a.g) && s(a.b) ? (r = A(a.r, a.g, a.b), o = !0, m = String(a.r).slice(-1) === "%" ? "prgb" : "rgb") : s(a.h) && s(a.s) && s(a.v) ? (g = x(a.s), c = x(a.v), r = y(a.h, g, c), o = !0, m = "hsv") : s(a.h) && s(a.s) && s(a.l) ? (g = x(a.s), p = x(a.l), r = F(a.h, g, p), o = !0, m = "hsl") : s(a.c) && s(a.m) && s(a.y) && s(a.k) && (r = v(a.c, a.m, a.y, a.k), o = !0, m = "cmyk"), Object.prototype.hasOwnProperty.call(a, "a") && (e = a.a)), e = R(e), {
7
+ ok: o,
8
+ format: a.format || m,
9
+ r: Math.min(255, Math.max(r.r, 0)),
10
+ g: Math.min(255, Math.max(r.g, 0)),
11
+ b: Math.min(255, Math.max(r.b, 0)),
12
+ a: e
13
+ };
14
+ }
15
+ const w = "[-\\+]?\\d+%?", k = "[-\\+]?\\d*\\.\\d+%?", f = "(?:" + k + ")|(?:" + w + ")", b = "[\\s|\\(]+(" + f + ")[,|\\s]+(" + f + ")[,|\\s]+(" + f + ")\\s*\\)?", l = (
16
+ // eslint-disable-next-line prettier/prettier
17
+ "[\\s|\\(]+(" + f + ")[,|\\s]+(" + f + ")[,|\\s]+(" + f + ")[,|\\s]+(" + f + ")\\s*\\)?"
18
+ ), h = {
19
+ CSS_UNIT: new RegExp(f),
20
+ rgb: new RegExp("rgb" + b),
21
+ rgba: new RegExp("rgba" + l),
22
+ hsl: new RegExp("hsl" + b),
23
+ hsla: new RegExp("hsla" + l),
24
+ hsv: new RegExp("hsv" + b),
25
+ hsva: new RegExp("hsva" + l),
26
+ cmyk: new RegExp("cmyk" + l),
27
+ hex3: /^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,
28
+ hex6: /^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/,
29
+ hex4: /^#?([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})([0-9a-fA-F]{1})$/,
30
+ hex8: /^#?([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})([0-9a-fA-F]{2})$/
31
+ };
32
+ function T(a) {
33
+ if (a = a.trim().toLowerCase(), a.length === 0)
34
+ return !1;
35
+ let r = !1;
36
+ if (u[a])
37
+ a = u[a], r = !0;
38
+ else if (a === "transparent")
39
+ return { r: 0, g: 0, b: 0, a: 0, format: "name" };
40
+ let e = h.rgb.exec(a);
41
+ return e ? { r: e[1], g: e[2], b: e[3] } : (e = h.rgba.exec(a), e ? { r: e[1], g: e[2], b: e[3], a: e[4] } : (e = h.hsl.exec(a), e ? { h: e[1], s: e[2], l: e[3] } : (e = h.hsla.exec(a), e ? { h: e[1], s: e[2], l: e[3], a: e[4] } : (e = h.hsv.exec(a), e ? { h: e[1], s: e[2], v: e[3] } : (e = h.hsva.exec(a), e ? { h: e[1], s: e[2], v: e[3], a: e[4] } : (e = h.cmyk.exec(a), e ? {
42
+ c: e[1],
43
+ m: e[2],
44
+ y: e[3],
45
+ k: e[4]
46
+ } : (e = h.hex8.exec(a), e ? {
47
+ r: n(e[1]),
48
+ g: n(e[2]),
49
+ b: n(e[3]),
50
+ a: i(e[4]),
51
+ format: r ? "name" : "hex8"
52
+ } : (e = h.hex6.exec(a), e ? {
53
+ r: n(e[1]),
54
+ g: n(e[2]),
55
+ b: n(e[3]),
56
+ format: r ? "name" : "hex"
57
+ } : (e = h.hex4.exec(a), e ? {
58
+ r: n(e[1] + e[1]),
59
+ g: n(e[2] + e[2]),
60
+ b: n(e[3] + e[3]),
61
+ a: i(e[4] + e[4]),
62
+ format: r ? "name" : "hex8"
63
+ } : (e = h.hex3.exec(a), e ? {
64
+ r: n(e[1] + e[1]),
65
+ g: n(e[2] + e[2]),
66
+ b: n(e[3] + e[3]),
67
+ format: r ? "name" : "hex"
68
+ } : !1))))))))));
69
+ }
70
+ function s(a) {
71
+ return typeof a == "number" ? !Number.isNaN(a) : h.CSS_UNIT.test(a);
72
+ }
73
+ export {
74
+ M as inputToRGB,
75
+ s as isValidCSSUnit,
76
+ T as stringInputToObject
77
+ };
@@ -0,0 +1,388 @@
1
+ import { numberInputToObject as $, rgbToHsv as b, rgbToHsl as l, rgbToHex as c, rgbaToHex as M, rgbToCmyk as m } from "./conversion.js";
2
+ import { names as H } from "./css-color-names.js";
3
+ import { inputToRGB as f } from "./format-input.js";
4
+ import { boundAlpha as p, clamp01 as u, bound01 as d } from "./util.js";
5
+ var S = Object.defineProperty, x = (a, t, s) => t in a ? S(a, t, { enumerable: !0, configurable: !0, writable: !0, value: s }) : a[t] = s, e = (a, t, s) => x(a, typeof t != "symbol" ? t + "" : t, s);
6
+ class i {
7
+ constructor(t = "", s = {}) {
8
+ if (e(this, "r"), e(this, "g"), e(this, "b"), e(this, "a"), e(this, "format"), e(this, "originalInput"), e(this, "isValid"), e(this, "gradientType"), e(this, "roundA"), t instanceof i)
9
+ return t;
10
+ typeof t == "number" && (t = $(t)), this.originalInput = t;
11
+ const r = f(t);
12
+ this.originalInput = t, this.r = r.r, this.g = r.g, this.b = r.b, this.a = r.a, this.roundA = Math.round(100 * this.a) / 100, this.format = s.format ?? r.format, this.gradientType = s.gradientType, this.r < 1 && (this.r = Math.round(this.r)), this.g < 1 && (this.g = Math.round(this.g)), this.b < 1 && (this.b = Math.round(this.b)), this.isValid = r.ok;
13
+ }
14
+ get ok() {
15
+ return this.isValid;
16
+ }
17
+ isDark() {
18
+ return this.getBrightness() < 128;
19
+ }
20
+ isLight() {
21
+ return !this.isDark();
22
+ }
23
+ /**
24
+ * Returns the perceived brightness of the color, from 0-255.
25
+ */
26
+ getBrightness() {
27
+ const t = this.toRgb();
28
+ return (t.r * 299 + t.g * 587 + t.b * 114) / 1e3;
29
+ }
30
+ /**
31
+ * Returns the perceived luminance of a color, from 0-1.
32
+ */
33
+ getLuminance() {
34
+ const t = this.toRgb();
35
+ let s, r, h;
36
+ const n = t.r / 255, o = t.g / 255, g = t.b / 255;
37
+ return n <= 0.03928 ? s = n / 12.92 : s = Math.pow((n + 0.055) / 1.055, 2.4), o <= 0.03928 ? r = o / 12.92 : r = Math.pow((o + 0.055) / 1.055, 2.4), g <= 0.03928 ? h = g / 12.92 : h = Math.pow((g + 0.055) / 1.055, 2.4), 0.2126 * s + 0.7152 * r + 0.0722 * h;
38
+ }
39
+ /**
40
+ * Returns the alpha value of a color, from 0-1.
41
+ */
42
+ getAlpha() {
43
+ return this.a;
44
+ }
45
+ /**
46
+ * Sets the alpha value on the current color.
47
+ *
48
+ * @param alpha - The new alpha value. The accepted range is 0-1.
49
+ */
50
+ setAlpha(t) {
51
+ return this.a = p(t), this.roundA = Math.round(100 * this.a) / 100, this;
52
+ }
53
+ /**
54
+ * Returns whether the color is monochrome.
55
+ */
56
+ isMonochrome() {
57
+ const { s: t } = this.toHsl();
58
+ return t === 0;
59
+ }
60
+ /**
61
+ * Returns the object as a HSVA object.
62
+ */
63
+ toHsv() {
64
+ const t = b(this.r, this.g, this.b);
65
+ return { h: t.h * 360, s: t.s, v: t.v, a: this.a };
66
+ }
67
+ toHsv_() {
68
+ const t = b(this.r, this.g, this.b);
69
+ return { h: t.h, s: t.s, v: t.v, a: this.a };
70
+ }
71
+ /**
72
+ * Returns the hsva values interpolated into a string with the following format:
73
+ * "hsva(xxx, xxx, xxx, xx)".
74
+ */
75
+ toHsvString() {
76
+ const t = b(this.r, this.g, this.b), s = Math.round(t.h * 360), r = Math.round(t.s * 100), h = Math.round(t.v * 100);
77
+ return this.a === 1 ? `hsv(${s}, ${r}%, ${h}%)` : `hsva(${s}, ${r}%, ${h}%, ${this.roundA})`;
78
+ }
79
+ /**
80
+ * Returns the object as a HSLA object.
81
+ */
82
+ toHsl() {
83
+ const t = l(this.r, this.g, this.b);
84
+ return { h: t.h * 360, s: t.s, l: t.l, a: this.a };
85
+ }
86
+ /**
87
+ * Returns the hsla values interpolated into a string with the following format:
88
+ * "hsla(xxx, xxx, xxx, xx)".
89
+ */
90
+ toHslString() {
91
+ const t = l(this.r, this.g, this.b), s = Math.round(t.h * 360), r = Math.round(t.s * 100), h = Math.round(t.l * 100);
92
+ return this.a === 1 ? `hsl(${s}, ${r}%, ${h}%)` : `hsla(${s}, ${r}%, ${h}%, ${this.roundA})`;
93
+ }
94
+ /**
95
+ * Returns the hex value of the color.
96
+ * @param allow3Char will shorten hex value to 3 char if possible
97
+ */
98
+ toHex(t = !1) {
99
+ return c(this.r, this.g, this.b, t);
100
+ }
101
+ /**
102
+ * Returns the hex value of the color -with a # prefixed.
103
+ * @param allow3Char will shorten hex value to 3 char if possible
104
+ */
105
+ toHexString(t = !1) {
106
+ return `#${this.toHex(t)}`;
107
+ }
108
+ /**
109
+ * Returns the hex 8 value of the color.
110
+ * @param allow4Char will shorten hex value to 4 char if possible
111
+ */
112
+ toHex8(t = !1) {
113
+ return M(this.r, this.g, this.b, this.a, t);
114
+ }
115
+ /**
116
+ * Returns the hex 8 value of the color -with a # prefixed.
117
+ * @param allow4Char will shorten hex value to 4 char if possible
118
+ */
119
+ toHex8String(t = !1) {
120
+ return `#${this.toHex8(t)}`;
121
+ }
122
+ /**
123
+ * Returns the shorter hex value of the color depends on its alpha -with a # prefixed.
124
+ * @param allowShortChar will shorten hex value to 3 or 4 char if possible
125
+ */
126
+ toHexShortString(t = !1) {
127
+ return this.a === 1 ? this.toHexString(t) : this.toHex8String(t);
128
+ }
129
+ /**
130
+ * Returns the object as a RGBA object.
131
+ */
132
+ toRgb() {
133
+ return {
134
+ r: Math.round(this.r),
135
+ g: Math.round(this.g),
136
+ b: Math.round(this.b),
137
+ a: this.a
138
+ };
139
+ }
140
+ toRgba() {
141
+ return this.toRgb();
142
+ }
143
+ toRgbArray() {
144
+ const t = this.toRgb();
145
+ return [t.r, t.g, t.b];
146
+ }
147
+ toRgbArrayString() {
148
+ const t = this.toRgb();
149
+ return `${t.r},${t.g},${t.b}`;
150
+ }
151
+ /**
152
+ * Returns the RGBA values interpolated into a string with the following format:
153
+ * "RGBA(xxx, xxx, xxx, xx)".
154
+ */
155
+ toRgbString() {
156
+ const t = Math.round(this.r), s = Math.round(this.g), r = Math.round(this.b);
157
+ return this.a === 1 ? `rgb(${t}, ${s}, ${r})` : `rgba(${t}, ${s}, ${r}, ${this.roundA})`;
158
+ }
159
+ toRgbaString() {
160
+ const t = Math.round(this.r), s = Math.round(this.g), r = Math.round(this.b);
161
+ return `rgba(${t}, ${s}, ${r}, ${this.roundA})`;
162
+ }
163
+ /**
164
+ * Returns the object as a RGBA object.
165
+ */
166
+ toPercentageRgb() {
167
+ const t = (s) => `${Math.round(d(s, 255) * 100)}%`;
168
+ return {
169
+ r: t(this.r),
170
+ g: t(this.g),
171
+ b: t(this.b),
172
+ a: this.a
173
+ };
174
+ }
175
+ /**
176
+ * Returns the RGBA relative values interpolated into a string
177
+ */
178
+ toPercentageRgbString() {
179
+ const t = (s) => Math.round(d(s, 255) * 100);
180
+ return this.a === 1 ? `rgb(${t(this.r)}%, ${t(this.g)}%, ${t(this.b)}%)` : `rgba(${t(this.r)}%, ${t(this.g)}%, ${t(this.b)}%, ${this.roundA})`;
181
+ }
182
+ toCmyk() {
183
+ return {
184
+ ...m(this.r, this.g, this.b)
185
+ };
186
+ }
187
+ toCmykString() {
188
+ const { c: t, m: s, y: r, k: h } = m(this.r, this.g, this.b);
189
+ return `cmyk(${t}, ${s}, ${r}, ${h})`;
190
+ }
191
+ /**
192
+ * The 'real' name of the color -if there is one.
193
+ */
194
+ toName() {
195
+ if (this.a === 0)
196
+ return "transparent";
197
+ if (this.a < 1)
198
+ return !1;
199
+ const t = `#${c(this.r, this.g, this.b, !1)}`;
200
+ for (const [s, r] of Object.entries(H))
201
+ if (t === r)
202
+ return s;
203
+ return !1;
204
+ }
205
+ toString(t) {
206
+ const s = !!t;
207
+ t = t ?? this.format;
208
+ let r = !1;
209
+ const h = this.a < 1 && this.a >= 0;
210
+ return !s && h && (t.startsWith("hex") || t === "name") ? t === "name" && this.a === 0 ? this.toName() : this.toRgbString() : (t === "rgb" && (r = this.toRgbString()), t === "prgb" && (r = this.toPercentageRgbString()), (t === "hex" || t === "hex6") && (r = this.toHexString()), t === "hex3" && (r = this.toHexString(!0)), t === "hex4" && (r = this.toHex8String(!0)), t === "hex8" && (r = this.toHex8String()), t === "name" && (r = this.toName()), t === "hsl" && (r = this.toHslString()), t === "hsv" && (r = this.toHsvString()), t === "cmyk" && (r = this.toCmykString()), r || this.toHexString());
211
+ }
212
+ toNumber() {
213
+ return (Math.round(this.r) << 16) + (Math.round(this.g) << 8) + Math.round(this.b);
214
+ }
215
+ clone() {
216
+ return new i(this.toString());
217
+ }
218
+ /**
219
+ * Lighten the color a given amount. Providing 100 will always return white.
220
+ * @param amount - valid between 1-100
221
+ */
222
+ lighten(t = 10) {
223
+ const s = this.toHsl();
224
+ return s.l += t / 100, s.l = u(s.l), new i(s);
225
+ }
226
+ /**
227
+ * Brighten the color a given amount, from 0 to 100.
228
+ * @param amount - valid between 1-100
229
+ */
230
+ brighten(t = 10) {
231
+ const s = this.toRgb();
232
+ return s.r = Math.max(
233
+ 0,
234
+ Math.min(255, s.r - Math.round(255 * -(t / 100)))
235
+ ), s.g = Math.max(
236
+ 0,
237
+ Math.min(255, s.g - Math.round(255 * -(t / 100)))
238
+ ), s.b = Math.max(
239
+ 0,
240
+ Math.min(255, s.b - Math.round(255 * -(t / 100)))
241
+ ), new i(s);
242
+ }
243
+ /**
244
+ * Darken the color a given amount, from 0 to 100.
245
+ * Providing 100 will always return black.
246
+ * @param amount - valid between 1-100
247
+ */
248
+ darken(t = 10) {
249
+ const s = this.toHsl();
250
+ return s.l -= t / 100, s.l = u(s.l), new i(s);
251
+ }
252
+ /**
253
+ * Mix the color with pure white, from 0 to 100.
254
+ * Providing 0 will do nothing, providing 100 will always return white.
255
+ * @param amount - valid between 1-100
256
+ */
257
+ tint(t = 10) {
258
+ return this.mix("white", t);
259
+ }
260
+ /**
261
+ * Mix the color with pure black, from 0 to 100.
262
+ * Providing 0 will do nothing, providing 100 will always return black.
263
+ * @param amount - valid between 1-100
264
+ */
265
+ shade(t = 10) {
266
+ return this.mix("black", t);
267
+ }
268
+ /**
269
+ * Desaturate the color a given amount, from 0 to 100.
270
+ * Providing 100 will is the same as calling greyscale
271
+ * @param amount - valid between 1-100
272
+ */
273
+ desaturate(t = 10) {
274
+ const s = this.toHsl();
275
+ return s.s -= t / 100, s.s = u(s.s), new i(s);
276
+ }
277
+ /**
278
+ * Saturate the color a given amount, from 0 to 100.
279
+ * @param amount - valid between 1-100
280
+ */
281
+ saturate(t = 10) {
282
+ const s = this.toHsl();
283
+ return s.s += t / 100, s.s = u(s.s), new i(s);
284
+ }
285
+ /**
286
+ * Completely desaturates a color into greyscale.
287
+ * Same as calling `desaturate(100)`
288
+ */
289
+ greyscale() {
290
+ return this.desaturate(100);
291
+ }
292
+ /**
293
+ * Spin takes a positive or negative amount within [-360, 360] indicating the change of hue.
294
+ * Values outside of this range will be wrapped into this range.
295
+ */
296
+ spin(t) {
297
+ const s = this.toHsl(), r = (s.h + t) % 360;
298
+ return s.h = r < 0 ? 360 + r : r, new i(s);
299
+ }
300
+ /**
301
+ * Mix the current color a given amount with another color, from 0 to 100.
302
+ * 0 means no mixing (return current color).
303
+ */
304
+ mix(t, s = 50) {
305
+ const r = this.toRgb(), h = new i(t).toRgb(), n = s / 100, o = {
306
+ r: (h.r - r.r) * n + r.r,
307
+ g: (h.g - r.g) * n + r.g,
308
+ b: (h.b - r.b) * n + r.b,
309
+ a: (h.a - r.a) * n + r.a
310
+ };
311
+ return new i(o);
312
+ }
313
+ analogous(t = 6, s = 30) {
314
+ const r = this.toHsl(), h = 360 / s, n = [this];
315
+ for (r.h = (r.h - (h * t >> 1) + 720) % 360; --t; )
316
+ r.h = (r.h + h) % 360, n.push(new i(r));
317
+ return n;
318
+ }
319
+ /**
320
+ * taken from https://github.com/infusion/jQuery-xcolor/blob/master/jquery.xcolor.js
321
+ */
322
+ complement() {
323
+ const t = this.toHsl();
324
+ return t.h = (t.h + 180) % 360, new i(t);
325
+ }
326
+ monochromatic(t = 6) {
327
+ const s = this.toHsv(), { h: r } = s, { s: h } = s;
328
+ let { v: n } = s;
329
+ const o = [], g = 1 / t;
330
+ for (; t--; )
331
+ o.push(new i({ h: r, s: h, v: n })), n = (n + g) % 1;
332
+ return o;
333
+ }
334
+ splitcomplement() {
335
+ const t = this.toHsl(), { h: s } = t;
336
+ return [
337
+ this,
338
+ new i({ h: (s + 72) % 360, s: t.s, l: t.l }),
339
+ new i({ h: (s + 216) % 360, s: t.s, l: t.l })
340
+ ];
341
+ }
342
+ /**
343
+ * Compute how the color would appear on a background
344
+ */
345
+ onBackground(t) {
346
+ const s = this.toRgb(), r = new i(t).toRgb(), h = s.a + r.a * (1 - s.a);
347
+ return new i({
348
+ r: (s.r * s.a + r.r * r.a * (1 - s.a)) / h,
349
+ g: (s.g * s.a + r.g * r.a * (1 - s.a)) / h,
350
+ b: (s.b * s.a + r.b * r.a * (1 - s.a)) / h,
351
+ a: h
352
+ });
353
+ }
354
+ /**
355
+ * Alias for `polyad(3)`
356
+ */
357
+ triad() {
358
+ return this.polyad(3);
359
+ }
360
+ /**
361
+ * Alias for `polyad(4)`
362
+ */
363
+ tetrad() {
364
+ return this.polyad(4);
365
+ }
366
+ /**
367
+ * Get polyad colors, like (for 1, 2, 3, 4, 5, 6, 7, 8, etc...)
368
+ * monad, dyad, triad, tetrad, pentad, hexad, heptad, octad, etc...
369
+ */
370
+ polyad(t) {
371
+ const s = this.toHsl(), { h: r } = s, h = [this], n = 360 / t;
372
+ for (let o = 1; o < t; o++)
373
+ h.push(
374
+ new i({ h: (r + o * n) % 360, s: s.s, l: s.l })
375
+ );
376
+ return h;
377
+ }
378
+ /**
379
+ * compare color vs current color
380
+ */
381
+ equals(t) {
382
+ const s = new i(t);
383
+ return this.format === "cmyk" || s.format === "cmyk" ? this.toCmykString() === s.toCmykString() : this.toRgbString() === s.toRgbString();
384
+ }
385
+ }
386
+ export {
387
+ i as TinyColor
388
+ };
@@ -0,0 +1,32 @@
1
+ function i(n, a) {
2
+ o(n) && (n = "100%");
3
+ const e = r(n);
4
+ return n = a === 360 ? n : Math.min(a, Math.max(0, parseFloat(n))), e && (n = parseInt(String(n * a), 10) / 100), Math.abs(n - a) < 1e-6 ? 1 : (a === 360 ? n = (n < 0 ? n % a + a : n % a) / parseFloat(String(a)) : n = n % a / parseFloat(String(a)), n);
5
+ }
6
+ function s(n) {
7
+ return Math.min(1, Math.max(0, n));
8
+ }
9
+ function o(n) {
10
+ return typeof n == "string" && n.indexOf(".") !== -1 && parseFloat(n) === 1;
11
+ }
12
+ function r(n) {
13
+ return typeof n == "string" && n.indexOf("%") !== -1;
14
+ }
15
+ function u(n) {
16
+ return n = parseFloat(n), (isNaN(n) || n < 0 || n > 1) && (n = 1), n;
17
+ }
18
+ function p(n) {
19
+ return Number(n) <= 1 ? `${Number(n) * 100}%` : n;
20
+ }
21
+ function c(n) {
22
+ return n.length === 1 ? "0" + n : String(n);
23
+ }
24
+ export {
25
+ i as bound01,
26
+ u as boundAlpha,
27
+ s as clamp01,
28
+ p as convertToPercentage,
29
+ o as isOnePointZero,
30
+ r as isPercentage,
31
+ c as pad2
32
+ };
@@ -0,0 +1,43 @@
1
+ const t = (u) => (a) => Math.pow(a, u), n = (u) => (a) => 1 - Math.abs(Math.pow(a - 1, u)), s = (u) => (a) => a < 0.5 ? t(u)(a * 2) / 2 : n(u)(a * 2 - 1) / 2 + 0.5, i = (u) => u, c = t(2), q = n(2), e = s(2), b = t(3), h = n(3), M = s(3), o = t(4), r = n(4), d = s(4), P = t(5), l = n(5), p = s(5), f = (u) => 1 + Math.sin(Math.PI / 2 * u - Math.PI / 2), w = (u) => Math.sin(Math.PI / 2 * u), x = (u) => (1 + Math.sin(Math.PI * u - Math.PI / 2)) / 2, I = (u) => u < 1 / 2.75 ? 7.5625 * u * u : u < 2 / 2.75 ? (u -= 1.5 / 2.75, 7.5625 * u * u + 0.75) : u < 2.5 / 2.75 ? (u -= 2.25 / 2.75, 7.5625 * u * u + 0.9375) : (u -= 2.625 / 2.75, 7.5625 * u * u + 0.984375), O = (u) => 1 - I(1 - u), g = (u) => u < 0.5 ? O(u * 2) * 0.5 : I(u * 2 - 1) * 0.5 + 0.5, y = {
2
+ linear: i,
3
+ quadIn: c,
4
+ quadOut: q,
5
+ quadInOut: e,
6
+ cubicIn: b,
7
+ cubicOut: h,
8
+ cubicInOut: M,
9
+ quartIn: o,
10
+ quartOut: r,
11
+ quartInOut: d,
12
+ quintIn: P,
13
+ quintOut: l,
14
+ quintInOut: p,
15
+ sineIn: f,
16
+ sineOut: w,
17
+ sineInOut: x,
18
+ bounceOut: I,
19
+ bounceIn: O,
20
+ bounceInOut: g
21
+ };
22
+ export {
23
+ O as bounceIn,
24
+ g as bounceInOut,
25
+ I as bounceOut,
26
+ b as cubicIn,
27
+ M as cubicInOut,
28
+ h as cubicOut,
29
+ y as default,
30
+ i as linear,
31
+ c as quadIn,
32
+ e as quadInOut,
33
+ q as quadOut,
34
+ o as quartIn,
35
+ d as quartInOut,
36
+ r as quartOut,
37
+ P as quintIn,
38
+ p as quintInOut,
39
+ l as quintOut,
40
+ f as sineIn,
41
+ x as sineInOut,
42
+ w as sineOut
43
+ };