bitz-react-admin-ui 2.7.4 → 2.7.5

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 (808) hide show
  1. package/dist/node_modules/@ant-design/colors/es/generate.mjs +93 -0
  2. package/dist/node_modules/@ant-design/colors/es/presets.mjs +72 -0
  3. package/dist/node_modules/@ant-design/cssinjs/es/Cache.mjs +40 -0
  4. package/dist/node_modules/@ant-design/cssinjs/es/Keyframes.mjs +18 -0
  5. package/dist/node_modules/@ant-design/cssinjs/es/StyleContext.mjs +38 -0
  6. package/dist/node_modules/@ant-design/cssinjs/es/extractStyle.mjs +9 -0
  7. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCSSVarRegister.mjs +51 -0
  8. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCacheToken.mjs +92 -0
  9. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useCompatibleInsertionEffect.mjs +15 -0
  10. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useEffectCleanupRegister.mjs +27 -0
  11. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useGlobalCache.mjs +47 -0
  12. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useHMR.mjs +22 -0
  13. package/dist/node_modules/@ant-design/cssinjs/es/hooks/useStyleRegister.mjs +210 -0
  14. package/dist/node_modules/@ant-design/cssinjs/es/linters/contentQuotesLinter.mjs +10 -0
  15. package/dist/node_modules/@ant-design/cssinjs/es/linters/hashedAnimationLinter.mjs +7 -0
  16. package/dist/node_modules/@ant-design/cssinjs/es/linters/utils.mjs +8 -0
  17. package/dist/node_modules/@ant-design/cssinjs/es/theme/Theme.mjs +20 -0
  18. package/dist/node_modules/@ant-design/cssinjs/es/theme/ThemeCache.mjs +104 -0
  19. package/dist/node_modules/@ant-design/cssinjs/es/theme/createTheme.mjs +10 -0
  20. package/dist/node_modules/@ant-design/cssinjs/es/transformers/legacyLogicalProperties.mjs +4 -0
  21. package/dist/node_modules/@ant-design/cssinjs/es/util/cacheMapUtil.mjs +42 -0
  22. package/dist/node_modules/@ant-design/cssinjs/es/util/css-variables.mjs +28 -0
  23. package/dist/node_modules/@ant-design/cssinjs/es/util/index.mjs +52 -0
  24. package/dist/node_modules/@ant-design/cssinjs/node_modules/@emotion/hash/dist/hash.browser.esm.mjs +22 -0
  25. package/dist/node_modules/@ant-design/cssinjs/node_modules/stylis/src/Enum.mjs +9 -0
  26. package/dist/node_modules/@ant-design/cssinjs/node_modules/stylis/src/Parser.mjs +114 -0
  27. package/dist/node_modules/@ant-design/cssinjs/node_modules/stylis/src/Serializer.mjs +29 -0
  28. package/dist/node_modules/@ant-design/cssinjs/node_modules/stylis/src/Tokenizer.mjs +127 -0
  29. package/dist/node_modules/@ant-design/cssinjs/node_modules/stylis/src/Utility.mjs +37 -0
  30. package/dist/node_modules/@ant-design/cssinjs-utils/es/_util/hooks/useUniqueMemo.mjs +63 -0
  31. package/dist/node_modules/@ant-design/cssinjs-utils/es/hooks/useCSP.mjs +6 -0
  32. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/CSSCalculator.mjs +59 -0
  33. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/NumCalculator.mjs +44 -0
  34. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/calculator.mjs +8 -0
  35. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/calc/index.mjs +11 -0
  36. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/genStyleUtils.mjs +156 -0
  37. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getCompVarPrefix.mjs +6 -0
  38. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getComponentToken.mjs +26 -0
  39. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/getDefaultComponentToken.mjs +11 -0
  40. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/maxmin.mjs +36 -0
  41. package/dist/node_modules/@ant-design/cssinjs-utils/es/util/statistic.mjs +55 -0
  42. package/dist/node_modules/@ant-design/fast-color/es/FastColor.mjs +327 -0
  43. package/dist/node_modules/@ant-design/icons/es/components/AntdIcon.mjs +42 -0
  44. package/dist/node_modules/@ant-design/icons/es/components/Context.mjs +6 -0
  45. package/dist/node_modules/@ant-design/icons/es/components/IconBase.mjs +46 -0
  46. package/dist/node_modules/@ant-design/icons/es/components/twoTonePrimaryColor.mjs +18 -0
  47. package/dist/node_modules/@ant-design/icons/es/icons/AlignCenterOutlined.mjs +15 -0
  48. package/dist/node_modules/@ant-design/icons/es/icons/AppstoreOutlined.mjs +15 -0
  49. package/dist/node_modules/@ant-design/icons/es/icons/ArrowLeftOutlined.mjs +15 -0
  50. package/dist/node_modules/@ant-design/icons/es/icons/ArrowRightOutlined.mjs +15 -0
  51. package/dist/node_modules/@ant-design/icons/es/icons/CaretDownFilled.mjs +15 -0
  52. package/dist/node_modules/@ant-design/icons/es/icons/CaretDownOutlined.mjs +15 -0
  53. package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleFilled.mjs +15 -0
  54. package/dist/node_modules/@ant-design/icons/es/icons/CheckCircleOutlined.mjs +15 -0
  55. package/dist/node_modules/@ant-design/icons/es/icons/CheckOutlined.mjs +15 -0
  56. package/dist/node_modules/@ant-design/icons/es/icons/ClockCircleOutlined.mjs +15 -0
  57. package/dist/node_modules/@ant-design/icons/es/icons/CloseCircleFilled.mjs +15 -0
  58. package/dist/node_modules/@ant-design/icons/es/icons/CloseOutlined.mjs +15 -0
  59. package/dist/node_modules/@ant-design/icons/es/icons/CopyOutlined.mjs +15 -0
  60. package/dist/node_modules/@ant-design/icons/es/icons/DeleteOutlined.mjs +15 -0
  61. package/dist/node_modules/@ant-design/icons/es/icons/DownOutlined.mjs +15 -0
  62. package/dist/node_modules/@ant-design/icons/es/icons/DownloadOutlined.mjs +15 -0
  63. package/dist/node_modules/@ant-design/icons/es/icons/EditOutlined.mjs +15 -0
  64. package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleFilled.mjs +15 -0
  65. package/dist/node_modules/@ant-design/icons/es/icons/ExclamationCircleOutlined.mjs +15 -0
  66. package/dist/node_modules/@ant-design/icons/es/icons/EyeOutlined.mjs +15 -0
  67. package/dist/node_modules/@ant-design/icons/es/icons/FileTwoTone.mjs +15 -0
  68. package/dist/node_modules/@ant-design/icons/es/icons/FullscreenExitOutlined.mjs +15 -0
  69. package/dist/node_modules/@ant-design/icons/es/icons/FullscreenOutlined.mjs +15 -0
  70. package/dist/node_modules/@ant-design/icons/es/icons/InfoCircleFilled.mjs +15 -0
  71. package/dist/node_modules/@ant-design/icons/es/icons/InfoCircleOutlined.mjs +15 -0
  72. package/dist/node_modules/@ant-design/icons/es/icons/LeftOutlined.mjs +15 -0
  73. package/dist/node_modules/@ant-design/icons/es/icons/LoadingOutlined.mjs +15 -0
  74. package/dist/node_modules/@ant-design/icons/es/icons/MenuFoldOutlined.mjs +15 -0
  75. package/dist/node_modules/@ant-design/icons/es/icons/MenuOutlined.mjs +15 -0
  76. package/dist/node_modules/@ant-design/icons/es/icons/MenuUnfoldOutlined.mjs +15 -0
  77. package/dist/node_modules/@ant-design/icons/es/icons/MinusCircleOutlined.mjs +15 -0
  78. package/dist/node_modules/@ant-design/icons/es/icons/PaperClipOutlined.mjs +15 -0
  79. package/dist/node_modules/@ant-design/icons/es/icons/PauseCircleFilled.mjs +15 -0
  80. package/dist/node_modules/@ant-design/icons/es/icons/PictureTwoTone.mjs +15 -0
  81. package/dist/node_modules/@ant-design/icons/es/icons/PlayCircleFilled.mjs +15 -0
  82. package/dist/node_modules/@ant-design/icons/es/icons/PlusCircleFilled.mjs +15 -0
  83. package/dist/node_modules/@ant-design/icons/es/icons/PlusOutlined.mjs +15 -0
  84. package/dist/node_modules/@ant-design/icons/es/icons/RedoOutlined.mjs +15 -0
  85. package/dist/node_modules/@ant-design/icons/es/icons/ReloadOutlined.mjs +15 -0
  86. package/dist/node_modules/@ant-design/icons/es/icons/RightOutlined.mjs +15 -0
  87. package/dist/node_modules/@ant-design/icons/es/icons/SearchOutlined.mjs +15 -0
  88. package/dist/node_modules/@ant-design/icons/es/icons/SettingFilled.mjs +15 -0
  89. package/dist/node_modules/@ant-design/icons/es/icons/SettingOutlined.mjs +15 -0
  90. package/dist/node_modules/@ant-design/icons/es/icons/SwapRightOutlined.mjs +15 -0
  91. package/dist/node_modules/@ant-design/icons/es/icons/UploadOutlined.mjs +15 -0
  92. package/dist/node_modules/@ant-design/icons/es/utils.mjs +127 -0
  93. package/dist/node_modules/@ant-design/icons-svg/es/asn/AlignCenterOutlined.mjs +5 -0
  94. package/dist/node_modules/@ant-design/icons-svg/es/asn/AppstoreOutlined.mjs +5 -0
  95. package/dist/node_modules/@ant-design/icons-svg/es/asn/ArrowLeftOutlined.mjs +5 -0
  96. package/dist/node_modules/@ant-design/icons-svg/es/asn/ArrowRightOutlined.mjs +5 -0
  97. package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretDownFilled.mjs +5 -0
  98. package/dist/node_modules/@ant-design/icons-svg/es/asn/CaretDownOutlined.mjs +5 -0
  99. package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckCircleFilled.mjs +5 -0
  100. package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckCircleOutlined.mjs +5 -0
  101. package/dist/node_modules/@ant-design/icons-svg/es/asn/CheckOutlined.mjs +5 -0
  102. package/dist/node_modules/@ant-design/icons-svg/es/asn/ClockCircleOutlined.mjs +5 -0
  103. package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseCircleFilled.mjs +5 -0
  104. package/dist/node_modules/@ant-design/icons-svg/es/asn/CloseOutlined.mjs +5 -0
  105. package/dist/node_modules/@ant-design/icons-svg/es/asn/CopyOutlined.mjs +5 -0
  106. package/dist/node_modules/@ant-design/icons-svg/es/asn/DeleteOutlined.mjs +5 -0
  107. package/dist/node_modules/@ant-design/icons-svg/es/asn/DownOutlined.mjs +5 -0
  108. package/dist/node_modules/@ant-design/icons-svg/es/asn/DownloadOutlined.mjs +5 -0
  109. package/dist/node_modules/@ant-design/icons-svg/es/asn/EditOutlined.mjs +5 -0
  110. package/dist/node_modules/@ant-design/icons-svg/es/asn/ExclamationCircleFilled.mjs +5 -0
  111. package/dist/node_modules/@ant-design/icons-svg/es/asn/ExclamationCircleOutlined.mjs +5 -0
  112. package/dist/node_modules/@ant-design/icons-svg/es/asn/EyeOutlined.mjs +5 -0
  113. package/dist/node_modules/@ant-design/icons-svg/es/asn/FileTwoTone.mjs +7 -0
  114. package/dist/node_modules/@ant-design/icons-svg/es/asn/FullscreenExitOutlined.mjs +5 -0
  115. package/dist/node_modules/@ant-design/icons-svg/es/asn/FullscreenOutlined.mjs +5 -0
  116. package/dist/node_modules/@ant-design/icons-svg/es/asn/InfoCircleFilled.mjs +5 -0
  117. package/dist/node_modules/@ant-design/icons-svg/es/asn/InfoCircleOutlined.mjs +5 -0
  118. package/dist/node_modules/@ant-design/icons-svg/es/asn/LeftOutlined.mjs +5 -0
  119. package/dist/node_modules/@ant-design/icons-svg/es/asn/LoadingOutlined.mjs +5 -0
  120. package/dist/node_modules/@ant-design/icons-svg/es/asn/MenuFoldOutlined.mjs +5 -0
  121. package/dist/node_modules/@ant-design/icons-svg/es/asn/MenuOutlined.mjs +5 -0
  122. package/dist/node_modules/@ant-design/icons-svg/es/asn/MenuUnfoldOutlined.mjs +5 -0
  123. package/dist/node_modules/@ant-design/icons-svg/es/asn/MinusCircleOutlined.mjs +5 -0
  124. package/dist/node_modules/@ant-design/icons-svg/es/asn/PaperClipOutlined.mjs +5 -0
  125. package/dist/node_modules/@ant-design/icons-svg/es/asn/PauseCircleFilled.mjs +5 -0
  126. package/dist/node_modules/@ant-design/icons-svg/es/asn/PictureTwoTone.mjs +7 -0
  127. package/dist/node_modules/@ant-design/icons-svg/es/asn/PlayCircleFilled.mjs +5 -0
  128. package/dist/node_modules/@ant-design/icons-svg/es/asn/PlusCircleFilled.mjs +5 -0
  129. package/dist/node_modules/@ant-design/icons-svg/es/asn/PlusOutlined.mjs +5 -0
  130. package/dist/node_modules/@ant-design/icons-svg/es/asn/RedoOutlined.mjs +5 -0
  131. package/dist/node_modules/@ant-design/icons-svg/es/asn/ReloadOutlined.mjs +5 -0
  132. package/dist/node_modules/@ant-design/icons-svg/es/asn/RightOutlined.mjs +5 -0
  133. package/dist/node_modules/@ant-design/icons-svg/es/asn/SearchOutlined.mjs +5 -0
  134. package/dist/node_modules/@ant-design/icons-svg/es/asn/SettingFilled.mjs +5 -0
  135. package/dist/node_modules/@ant-design/icons-svg/es/asn/SettingOutlined.mjs +5 -0
  136. package/dist/node_modules/@ant-design/icons-svg/es/asn/SwapRightOutlined.mjs +5 -0
  137. package/dist/node_modules/@ant-design/icons-svg/es/asn/UploadOutlined.mjs +5 -0
  138. package/dist/node_modules/@babel/runtime/helpers/defineProperty.mjs +18 -0
  139. package/dist/node_modules/@babel/runtime/helpers/esm/arrayLikeToArray.mjs +9 -0
  140. package/dist/node_modules/@babel/runtime/helpers/esm/arrayWithHoles.mjs +7 -0
  141. package/dist/node_modules/@babel/runtime/helpers/esm/arrayWithoutHoles.mjs +8 -0
  142. package/dist/node_modules/@babel/runtime/helpers/esm/assertThisInitialized.mjs +8 -0
  143. package/dist/node_modules/@babel/runtime/helpers/esm/asyncToGenerator.mjs +26 -0
  144. package/dist/node_modules/@babel/runtime/helpers/esm/classCallCheck.mjs +7 -0
  145. package/dist/node_modules/@babel/runtime/helpers/esm/construct.mjs +13 -0
  146. package/dist/node_modules/@babel/runtime/helpers/esm/createClass.mjs +15 -0
  147. package/dist/node_modules/@babel/runtime/helpers/esm/createSuper.mjs +18 -0
  148. package/dist/node_modules/@babel/runtime/helpers/esm/defineProperty.mjs +12 -0
  149. package/dist/node_modules/@babel/runtime/helpers/esm/extends.mjs +13 -0
  150. package/dist/node_modules/@babel/runtime/helpers/esm/getPrototypeOf.mjs +8 -0
  151. package/dist/node_modules/@babel/runtime/helpers/esm/inherits.mjs +17 -0
  152. package/dist/node_modules/@babel/runtime/helpers/esm/isNativeFunction.mjs +10 -0
  153. package/dist/node_modules/@babel/runtime/helpers/esm/isNativeReflectConstruct.mjs +13 -0
  154. package/dist/node_modules/@babel/runtime/helpers/esm/iterableToArray.mjs +7 -0
  155. package/dist/node_modules/@babel/runtime/helpers/esm/iterableToArrayLimit.mjs +29 -0
  156. package/dist/node_modules/@babel/runtime/helpers/esm/nonIterableRest.mjs +7 -0
  157. package/dist/node_modules/@babel/runtime/helpers/esm/nonIterableSpread.mjs +7 -0
  158. package/dist/node_modules/@babel/runtime/helpers/esm/objectSpread2.mjs +25 -0
  159. package/dist/node_modules/@babel/runtime/helpers/esm/objectWithoutProperties.mjs +15 -0
  160. package/dist/node_modules/@babel/runtime/helpers/esm/objectWithoutPropertiesLoose.mjs +15 -0
  161. package/dist/node_modules/@babel/runtime/helpers/esm/possibleConstructorReturn.mjs +12 -0
  162. package/dist/node_modules/@babel/runtime/helpers/esm/regeneratorRuntime.mjs +315 -0
  163. package/dist/node_modules/@babel/runtime/helpers/esm/setPrototypeOf.mjs +8 -0
  164. package/dist/node_modules/@babel/runtime/helpers/esm/slicedToArray.mjs +10 -0
  165. package/dist/node_modules/@babel/runtime/helpers/esm/toArray.mjs +10 -0
  166. package/dist/node_modules/@babel/runtime/helpers/esm/toConsumableArray.mjs +10 -0
  167. package/dist/node_modules/@babel/runtime/helpers/esm/toPrimitive.mjs +16 -0
  168. package/dist/node_modules/@babel/runtime/helpers/esm/toPropertyKey.mjs +9 -0
  169. package/dist/node_modules/@babel/runtime/helpers/esm/typeof.mjs +11 -0
  170. package/dist/node_modules/@babel/runtime/helpers/esm/unsupportedIterableToArray.mjs +12 -0
  171. package/dist/node_modules/@babel/runtime/helpers/esm/wrapNativeSuper.mjs +32 -0
  172. package/dist/node_modules/@babel/runtime/helpers/interopRequireDefault.mjs +13 -0
  173. package/dist/node_modules/@babel/runtime/helpers/objectSpread2.mjs +31 -0
  174. package/dist/node_modules/@babel/runtime/helpers/toPrimitive.mjs +22 -0
  175. package/dist/node_modules/@babel/runtime/helpers/toPropertyKey.mjs +15 -0
  176. package/dist/node_modules/@babel/runtime/helpers/typeof.mjs +16 -0
  177. package/dist/node_modules/@better-scroll/core/dist/core.esm.mjs +1377 -0
  178. package/dist/node_modules/@better-scroll/wheel/dist/wheel.esm.mjs +253 -0
  179. package/dist/node_modules/@ctrl/tinycolor/dist/module/conversion.mjs +115 -0
  180. package/dist/node_modules/@ctrl/tinycolor/dist/module/css-color-names.mjs +153 -0
  181. package/dist/node_modules/@ctrl/tinycolor/dist/module/format-input.mjs +68 -0
  182. package/dist/node_modules/@ctrl/tinycolor/dist/module/index.mjs +183 -0
  183. package/dist/node_modules/@ctrl/tinycolor/dist/module/util.mjs +32 -0
  184. package/dist/node_modules/@dnd-kit/accessibility/dist/accessibility.esm.mjs +54 -0
  185. package/dist/node_modules/@dnd-kit/core/dist/core.esm.mjs +2524 -0
  186. package/dist/node_modules/@dnd-kit/modifiers/dist/modifiers.esm.mjs +27 -0
  187. package/dist/node_modules/@dnd-kit/sortable/dist/sortable.esm.mjs +367 -0
  188. package/dist/node_modules/@dnd-kit/utilities/dist/utilities.esm.mjs +235 -0
  189. package/dist/node_modules/@emotion/cache/dist/emotion-cache.browser.esm.mjs +251 -0
  190. package/dist/node_modules/@emotion/css/create-instance/dist/emotion-css-create-instance.esm.mjs +86 -0
  191. package/dist/node_modules/@emotion/css/dist/emotion-css.esm.mjs +7 -0
  192. package/dist/node_modules/@emotion/hash/dist/emotion-hash.esm.mjs +22 -0
  193. package/dist/node_modules/@emotion/memoize/dist/emotion-memoize.esm.mjs +9 -0
  194. package/dist/node_modules/@emotion/serialize/dist/emotion-serialize.esm.mjs +134 -0
  195. package/dist/node_modules/@emotion/serialize/node_modules/@emotion/unitless/dist/emotion-unitless.esm.mjs +53 -0
  196. package/dist/node_modules/@emotion/sheet/dist/emotion-sheet.esm.mjs +45 -0
  197. package/dist/node_modules/@emotion/unitless/dist/unitless.browser.esm.mjs +51 -0
  198. package/dist/node_modules/@emotion/utils/dist/emotion-utils.browser.esm.mjs +34 -0
  199. package/dist/node_modules/@fullcalendar/core/index.mjs +1365 -0
  200. package/dist/node_modules/@fullcalendar/core/internal-common.mjs +4823 -0
  201. package/dist/node_modules/@fullcalendar/core/locales/zh-cn.mjs +28 -0
  202. package/dist/node_modules/@fullcalendar/daygrid/index.mjs +32 -0
  203. package/dist/node_modules/@fullcalendar/daygrid/internal.mjs +746 -0
  204. package/dist/node_modules/@fullcalendar/interaction/index.mjs +842 -0
  205. package/dist/node_modules/@fullcalendar/list/index.mjs +54 -0
  206. package/dist/node_modules/@fullcalendar/list/internal.mjs +207 -0
  207. package/dist/node_modules/@fullcalendar/react/dist/index.mjs +71 -0
  208. package/dist/node_modules/@fullcalendar/timegrid/index.mjs +31 -0
  209. package/dist/node_modules/@fullcalendar/timegrid/internal.mjs +900 -0
  210. package/dist/node_modules/@rc-component/async-validator/es/index.mjs +159 -0
  211. package/dist/node_modules/@rc-component/async-validator/es/messages.mjs +58 -0
  212. package/dist/node_modules/@rc-component/async-validator/es/rule/enum.mjs +7 -0
  213. package/dist/node_modules/@rc-component/async-validator/es/rule/index.mjs +17 -0
  214. package/dist/node_modules/@rc-component/async-validator/es/rule/pattern.mjs +14 -0
  215. package/dist/node_modules/@rc-component/async-validator/es/rule/range.mjs +10 -0
  216. package/dist/node_modules/@rc-component/async-validator/es/rule/required.mjs +7 -0
  217. package/dist/node_modules/@rc-component/async-validator/es/rule/type.mjs +63 -0
  218. package/dist/node_modules/@rc-component/async-validator/es/rule/url.mjs +37 -0
  219. package/dist/node_modules/@rc-component/async-validator/es/rule/whitespace.mjs +7 -0
  220. package/dist/node_modules/@rc-component/async-validator/es/util.mjs +167 -0
  221. package/dist/node_modules/@rc-component/async-validator/es/validator/any.mjs +14 -0
  222. package/dist/node_modules/@rc-component/async-validator/es/validator/array.mjs +13 -0
  223. package/dist/node_modules/@rc-component/async-validator/es/validator/boolean.mjs +14 -0
  224. package/dist/node_modules/@rc-component/async-validator/es/validator/date.mjs +17 -0
  225. package/dist/node_modules/@rc-component/async-validator/es/validator/enum.mjs +14 -0
  226. package/dist/node_modules/@rc-component/async-validator/es/validator/float.mjs +14 -0
  227. package/dist/node_modules/@rc-component/async-validator/es/validator/index.mjs +37 -0
  228. package/dist/node_modules/@rc-component/async-validator/es/validator/integer.mjs +14 -0
  229. package/dist/node_modules/@rc-component/async-validator/es/validator/method.mjs +14 -0
  230. package/dist/node_modules/@rc-component/async-validator/es/validator/number.mjs +14 -0
  231. package/dist/node_modules/@rc-component/async-validator/es/validator/object.mjs +14 -0
  232. package/dist/node_modules/@rc-component/async-validator/es/validator/pattern.mjs +14 -0
  233. package/dist/node_modules/@rc-component/async-validator/es/validator/regexp.mjs +14 -0
  234. package/dist/node_modules/@rc-component/async-validator/es/validator/required.mjs +9 -0
  235. package/dist/node_modules/@rc-component/async-validator/es/validator/string.mjs +14 -0
  236. package/dist/node_modules/@rc-component/async-validator/es/validator/type.mjs +14 -0
  237. package/dist/node_modules/@rc-component/color-picker/es/ColorPicker.mjs +103 -0
  238. package/dist/node_modules/@rc-component/color-picker/es/color.mjs +47 -0
  239. package/dist/node_modules/@rc-component/color-picker/es/components/ColorBlock.mjs +18 -0
  240. package/dist/node_modules/@rc-component/color-picker/es/components/Gradient.mjs +22 -0
  241. package/dist/node_modules/@rc-component/color-picker/es/components/Handler.mjs +15 -0
  242. package/dist/node_modules/@rc-component/color-picker/es/components/Palette.mjs +14 -0
  243. package/dist/node_modules/@rc-component/color-picker/es/components/Picker.mjs +58 -0
  244. package/dist/node_modules/@rc-component/color-picker/es/components/Slider.mjs +76 -0
  245. package/dist/node_modules/@rc-component/color-picker/es/components/Transform.mjs +17 -0
  246. package/dist/node_modules/@rc-component/color-picker/es/hooks/useColorDrag.mjs +41 -0
  247. package/dist/node_modules/@rc-component/color-picker/es/hooks/useColorState.mjs +17 -0
  248. package/dist/node_modules/@rc-component/color-picker/es/hooks/useComponent.mjs +11 -0
  249. package/dist/node_modules/@rc-component/color-picker/es/util.mjs +50 -0
  250. package/dist/node_modules/@rc-component/portal/es/Context.mjs +5 -0
  251. package/dist/node_modules/@rc-component/portal/es/Portal.mjs +45 -0
  252. package/dist/node_modules/@rc-component/portal/es/index.mjs +4 -0
  253. package/dist/node_modules/@rc-component/portal/es/mock.mjs +8 -0
  254. package/dist/node_modules/@rc-component/portal/es/useDom.mjs +37 -0
  255. package/dist/node_modules/@rc-component/portal/es/useScrollLocker.mjs +29 -0
  256. package/dist/node_modules/@rc-component/portal/es/util.mjs +6 -0
  257. package/dist/node_modules/@rc-component/trigger/es/Popup/Arrow.mjs +22 -0
  258. package/dist/node_modules/@rc-component/trigger/es/Popup/Mask.mjs +24 -0
  259. package/dist/node_modules/@rc-component/trigger/es/Popup/PopupContent.mjs +11 -0
  260. package/dist/node_modules/@rc-component/trigger/es/Popup/index.mjs +92 -0
  261. package/dist/node_modules/@rc-component/trigger/es/TriggerWrapper.mjs +14 -0
  262. package/dist/node_modules/@rc-component/trigger/es/context.mjs +5 -0
  263. package/dist/node_modules/@rc-component/trigger/es/hooks/useAction.mjs +13 -0
  264. package/dist/node_modules/@rc-component/trigger/es/hooks/useAlign.mjs +187 -0
  265. package/dist/node_modules/@rc-component/trigger/es/hooks/useWatch.mjs +27 -0
  266. package/dist/node_modules/@rc-component/trigger/es/hooks/useWinClick.mjs +27 -0
  267. package/dist/node_modules/@rc-component/trigger/es/index.mjs +213 -0
  268. package/dist/node_modules/@rc-component/trigger/es/util.mjs +61 -0
  269. package/dist/node_modules/ahooks/es/createUpdateEffect/index.mjs +20 -0
  270. package/dist/node_modules/ahooks/es/useClickAway/index.mjs +27 -0
  271. package/dist/node_modules/ahooks/es/useControllableValue/index.mjs +23 -0
  272. package/dist/node_modules/ahooks/es/useInterval/index.mjs +17 -0
  273. package/dist/node_modules/ahooks/es/useLatest/index.mjs +8 -0
  274. package/dist/node_modules/ahooks/es/useMemoizedFn/index.mjs +19 -0
  275. package/dist/node_modules/ahooks/es/useRafState/index.mjs +16 -0
  276. package/dist/node_modules/ahooks/es/useSetState/index.mjs +16 -0
  277. package/dist/node_modules/ahooks/es/useSize/index.mjs +34 -0
  278. package/dist/node_modules/ahooks/es/useThrottleFn/index.mjs +28 -0
  279. package/dist/node_modules/ahooks/es/useUnmount/index.mjs +17 -0
  280. package/dist/node_modules/ahooks/es/useUpdate/index.mjs +12 -0
  281. package/dist/node_modules/ahooks/es/useUpdateEffect/index.mjs +6 -0
  282. package/dist/node_modules/ahooks/es/useUpdateLayoutEffect/index.mjs +6 -0
  283. package/dist/node_modules/ahooks/es/utils/createEffectWithTarget.mjs +27 -0
  284. package/dist/node_modules/ahooks/es/utils/depsAreSame.mjs +11 -0
  285. package/dist/node_modules/ahooks/es/utils/domTarget.mjs +13 -0
  286. package/dist/node_modules/ahooks/es/utils/getDocumentOrShadow.mjs +18 -0
  287. package/dist/node_modules/ahooks/es/utils/index.mjs +9 -0
  288. package/dist/node_modules/ahooks/es/utils/isBrowser.mjs +5 -0
  289. package/dist/node_modules/ahooks/es/utils/isDev.mjs +5 -0
  290. package/dist/node_modules/ahooks/es/utils/useEffectWithTarget.mjs +7 -0
  291. package/dist/node_modules/ahooks/es/utils/useIsomorphicLayoutEffectWithTarget.mjs +8 -0
  292. package/dist/node_modules/ahooks/es/utils/useLayoutEffectWithTarget.mjs +7 -0
  293. package/dist/node_modules/antd/es/_util/ActionButton.mjs +70 -0
  294. package/dist/node_modules/antd/es/_util/ContextIsolator.mjs +20 -0
  295. package/dist/node_modules/antd/es/_util/PurePanel.mjs +16 -0
  296. package/dist/node_modules/antd/es/_util/colors.mjs +9 -0
  297. package/dist/node_modules/antd/es/_util/hooks/useClosable.mjs +66 -0
  298. package/dist/node_modules/antd/es/_util/hooks/useForceUpdate.mjs +8 -0
  299. package/dist/node_modules/antd/es/_util/hooks/usePatchElement.mjs +11 -0
  300. package/dist/node_modules/antd/es/_util/hooks/useZIndex.mjs +45 -0
  301. package/dist/node_modules/antd/es/_util/motion.mjs +34 -0
  302. package/dist/node_modules/antd/es/_util/placements.mjs +150 -0
  303. package/dist/node_modules/antd/es/_util/reactNode.mjs +13 -0
  304. package/dist/node_modules/antd/es/_util/styleChecker.mjs +5 -0
  305. package/dist/node_modules/antd/es/_util/toList.mjs +6 -0
  306. package/dist/node_modules/antd/es/_util/warning.mjs +38 -0
  307. package/dist/node_modules/antd/es/_util/wave/WaveEffect.mjs +96 -0
  308. package/dist/node_modules/antd/es/_util/wave/index.mjs +40 -0
  309. package/dist/node_modules/antd/es/_util/wave/interface.mjs +6 -0
  310. package/dist/node_modules/antd/es/_util/wave/style.mjs +47 -0
  311. package/dist/node_modules/antd/es/_util/wave/useWave.mjs +38 -0
  312. package/dist/node_modules/antd/es/_util/wave/util.mjs +16 -0
  313. package/dist/node_modules/antd/es/_util/zindexContext.mjs +7 -0
  314. package/dist/node_modules/antd/es/button/IconWrapper.mjs +18 -0
  315. package/dist/node_modules/antd/es/button/LoadingIcon.mjs +70 -0
  316. package/dist/node_modules/antd/es/button/button-group.mjs +65 -0
  317. package/dist/node_modules/antd/es/button/button.mjs +177 -0
  318. package/dist/node_modules/antd/es/button/buttonHelpers.mjs +44 -0
  319. package/dist/node_modules/antd/es/button/index.mjs +4 -0
  320. package/dist/node_modules/antd/es/button/style/compactCmp.mjs +75 -0
  321. package/dist/node_modules/antd/es/button/style/group.mjs +70 -0
  322. package/dist/node_modules/antd/es/button/style/index.mjs +373 -0
  323. package/dist/node_modules/antd/es/button/style/token.mjs +81 -0
  324. package/dist/node_modules/antd/es/calendar/locale/en_US.mjs +4 -0
  325. package/dist/node_modules/antd/es/color-picker/color.mjs +96 -0
  326. package/dist/node_modules/antd/es/color-picker/components/ColorPresets.mjs +17 -0
  327. package/dist/node_modules/antd/es/config-provider/DisabledContext.mjs +15 -0
  328. package/dist/node_modules/antd/es/config-provider/MotionWrapper.mjs +32 -0
  329. package/dist/node_modules/antd/es/config-provider/PropWarning.mjs +13 -0
  330. package/dist/node_modules/antd/es/config-provider/SizeContext.mjs +15 -0
  331. package/dist/node_modules/antd/es/config-provider/context.mjs +11 -0
  332. package/dist/node_modules/antd/es/config-provider/cssVariables.mjs +39 -0
  333. package/dist/node_modules/antd/es/config-provider/hooks/useCSSVarCls.mjs +23 -0
  334. package/dist/node_modules/antd/es/config-provider/hooks/useConfig.mjs +13 -0
  335. package/dist/node_modules/antd/es/config-provider/hooks/useSize.mjs +9 -0
  336. package/dist/node_modules/antd/es/config-provider/hooks/useTheme.mjs +41 -0
  337. package/dist/node_modules/antd/es/config-provider/hooks/useThemeKey.mjs +7 -0
  338. package/dist/node_modules/antd/es/config-provider/index.mjs +327 -0
  339. package/dist/node_modules/antd/es/date-picker/locale/en_US.mjs +20 -0
  340. package/dist/node_modules/antd/es/form/context.mjs +23 -0
  341. package/dist/node_modules/antd/es/form/validateMessagesContext.mjs +5 -0
  342. package/dist/node_modules/antd/es/locale/context.mjs +5 -0
  343. package/dist/node_modules/antd/es/locale/en_US.mjs +146 -0
  344. package/dist/node_modules/antd/es/locale/index.mjs +28 -0
  345. package/dist/node_modules/antd/es/locale/useLocale.mjs +17 -0
  346. package/dist/node_modules/antd/es/modal/ConfirmDialog.mjs +175 -0
  347. package/dist/node_modules/antd/es/modal/Modal.mjs +137 -0
  348. package/dist/node_modules/antd/es/modal/PurePanel.mjs +60 -0
  349. package/dist/node_modules/antd/es/modal/components/ConfirmCancelBtn.mjs +29 -0
  350. package/dist/node_modules/antd/es/modal/components/ConfirmOkBtn.mjs +30 -0
  351. package/dist/node_modules/antd/es/modal/components/NormalCancelBtn.mjs +16 -0
  352. package/dist/node_modules/antd/es/modal/components/NormalOkBtn.mjs +20 -0
  353. package/dist/node_modules/antd/es/modal/confirm.mjs +122 -0
  354. package/dist/node_modules/antd/es/modal/context.mjs +8 -0
  355. package/dist/node_modules/antd/es/modal/destroyFns.mjs +4 -0
  356. package/dist/node_modules/antd/es/modal/index.mjs +37 -0
  357. package/dist/node_modules/antd/es/modal/locale.mjs +19 -0
  358. package/dist/node_modules/antd/es/modal/shared.mjs +51 -0
  359. package/dist/node_modules/antd/es/modal/style/confirm.mjs +113 -0
  360. package/dist/node_modules/antd/es/modal/style/index.mjs +292 -0
  361. package/dist/node_modules/antd/es/modal/useModal/HookModal.mjs +60 -0
  362. package/dist/node_modules/antd/es/modal/useModal/index.mjs +73 -0
  363. package/dist/node_modules/antd/es/progress/Circle.mjs +60 -0
  364. package/dist/node_modules/antd/es/progress/Line.mjs +109 -0
  365. package/dist/node_modules/antd/es/progress/Steps.mjs +38 -0
  366. package/dist/node_modules/antd/es/progress/index.mjs +4 -0
  367. package/dist/node_modules/antd/es/progress/progress.mjs +120 -0
  368. package/dist/node_modules/antd/es/progress/style/index.mjs +313 -0
  369. package/dist/node_modules/antd/es/progress/utils.mjs +51 -0
  370. package/dist/node_modules/antd/es/skeleton/Avatar.mjs +31 -0
  371. package/dist/node_modules/antd/es/skeleton/Button.mjs +31 -0
  372. package/dist/node_modules/antd/es/skeleton/Element.mjs +29 -0
  373. package/dist/node_modules/antd/es/skeleton/Image.mjs +34 -0
  374. package/dist/node_modules/antd/es/skeleton/Input.mjs +31 -0
  375. package/dist/node_modules/antd/es/skeleton/Node.mjs +28 -0
  376. package/dist/node_modules/antd/es/skeleton/Paragraph.mjs +35 -0
  377. package/dist/node_modules/antd/es/skeleton/Skeleton.mjs +108 -0
  378. package/dist/node_modules/antd/es/skeleton/Title.mjs +22 -0
  379. package/dist/node_modules/antd/es/skeleton/index.mjs +4 -0
  380. package/dist/node_modules/antd/es/skeleton/style/index.mjs +311 -0
  381. package/dist/node_modules/antd/es/slider/Context.mjs +5 -0
  382. package/dist/node_modules/antd/es/slider/SliderTooltip.mjs +30 -0
  383. package/dist/node_modules/antd/es/slider/index.mjs +153 -0
  384. package/dist/node_modules/antd/es/slider/style/index.mjs +325 -0
  385. package/dist/node_modules/antd/es/slider/useRafLock.mjs +15 -0
  386. package/dist/node_modules/antd/es/space/Compact.mjs +37 -0
  387. package/dist/node_modules/antd/es/style/compact-item-vertical.mjs +44 -0
  388. package/dist/node_modules/antd/es/style/compact-item.mjs +61 -0
  389. package/dist/node_modules/antd/es/style/index.mjs +125 -0
  390. package/dist/node_modules/antd/es/style/motion/collapse.mjs +20 -0
  391. package/dist/node_modules/antd/es/style/motion/fade.mjs +50 -0
  392. package/dist/node_modules/antd/es/style/motion/motion.mjs +35 -0
  393. package/dist/node_modules/antd/es/style/motion/zoom.mjs +195 -0
  394. package/dist/node_modules/antd/es/style/placementArrow.mjs +164 -0
  395. package/dist/node_modules/antd/es/style/roundedArrow.mjs +74 -0
  396. package/dist/node_modules/antd/es/table/ExpandIcon.mjs +29 -0
  397. package/dist/node_modules/antd/es/theme/context.mjs +25 -0
  398. package/dist/node_modules/antd/es/theme/getDesignToken.mjs +23 -0
  399. package/dist/node_modules/antd/es/theme/interface/presetColors.mjs +4 -0
  400. package/dist/node_modules/antd/es/theme/themes/compact/genCompactSizeMapToken.mjs +20 -0
  401. package/dist/node_modules/antd/es/theme/themes/compact/index.mjs +16 -0
  402. package/dist/node_modules/antd/es/theme/themes/dark/colorAlgorithm.mjs +6 -0
  403. package/dist/node_modules/antd/es/theme/themes/dark/colors.mjs +51 -0
  404. package/dist/node_modules/antd/es/theme/themes/dark/index.mjs +21 -0
  405. package/dist/node_modules/antd/es/theme/themes/default/colorAlgorithm.mjs +6 -0
  406. package/dist/node_modules/antd/es/theme/themes/default/colors.mjs +49 -0
  407. package/dist/node_modules/antd/es/theme/themes/default/index.mjs +23 -0
  408. package/dist/node_modules/antd/es/theme/themes/seed.mjs +69 -0
  409. package/dist/node_modules/antd/es/theme/themes/shared/genColorMapToken.mjs +78 -0
  410. package/dist/node_modules/antd/es/theme/themes/shared/genCommonMapToken.mjs +20 -0
  411. package/dist/node_modules/antd/es/theme/themes/shared/genControlHeight.mjs +13 -0
  412. package/dist/node_modules/antd/es/theme/themes/shared/genFontMapToken.mjs +29 -0
  413. package/dist/node_modules/antd/es/theme/themes/shared/genFontSizes.mjs +17 -0
  414. package/dist/node_modules/antd/es/theme/themes/shared/genRadius.mjs +13 -0
  415. package/dist/node_modules/antd/es/theme/themes/shared/genSizeMapToken.mjs +29 -0
  416. package/dist/node_modules/antd/es/theme/useToken.mjs +118 -0
  417. package/dist/node_modules/antd/es/theme/util/alias.mjs +162 -0
  418. package/dist/node_modules/antd/es/theme/util/genPresetColor.mjs +15 -0
  419. package/dist/node_modules/antd/es/theme/util/genStyleUtils.mjs +50 -0
  420. package/dist/node_modules/antd/es/theme/util/getAlphaColor.mjs +38 -0
  421. package/dist/node_modules/antd/es/theme/util/useResetIconStyle.mjs +36 -0
  422. package/dist/node_modules/antd/es/time-picker/locale/en_US.mjs +7 -0
  423. package/dist/node_modules/antd/es/tooltip/PurePanel.mjs +33 -0
  424. package/dist/node_modules/antd/es/tooltip/index.mjs +148 -0
  425. package/dist/node_modules/antd/es/tooltip/style/index.mjs +139 -0
  426. package/dist/node_modules/antd/es/tooltip/util.mjs +15 -0
  427. package/dist/node_modules/antd/es/typography/hooks/useCopyClick.mjs +64 -0
  428. package/dist/node_modules/antd/es/upload/Dragger.mjs +32 -0
  429. package/dist/node_modules/antd/es/upload/Upload.mjs +304 -0
  430. package/dist/node_modules/antd/es/upload/UploadList/ListItem.mjs +156 -0
  431. package/dist/node_modules/antd/es/upload/UploadList/index.mjs +167 -0
  432. package/dist/node_modules/antd/es/upload/index.mjs +9 -0
  433. package/dist/node_modules/antd/es/upload/style/dragger.mjs +84 -0
  434. package/dist/node_modules/antd/es/upload/style/index.mjs +65 -0
  435. package/dist/node_modules/antd/es/upload/style/list.mjs +115 -0
  436. package/dist/node_modules/antd/es/upload/style/motion.mjs +54 -0
  437. package/dist/node_modules/antd/es/upload/style/picture.mjs +240 -0
  438. package/dist/node_modules/antd/es/upload/style/rtl.mjs +13 -0
  439. package/dist/node_modules/antd/es/upload/utils.mjs +79 -0
  440. package/dist/node_modules/antd/es/version/index.mjs +4 -0
  441. package/dist/node_modules/antd/es/version/version.mjs +4 -0
  442. package/dist/node_modules/antd/es/watermark/context.mjs +25 -0
  443. package/dist/node_modules/antd/lib/calendar/locale/en_US.mjs +11 -0
  444. package/dist/node_modules/antd/lib/date-picker/locale/en_US.mjs +28 -0
  445. package/dist/node_modules/antd/lib/locale/en_US.mjs +157 -0
  446. package/dist/node_modules/antd/lib/time-picker/locale/en_US.mjs +10 -0
  447. package/dist/node_modules/antd/locale/en_US.mjs +8 -0
  448. package/dist/node_modules/antd-img-crop/dist/antd-img-crop.esm.mjs +137 -0
  449. package/dist/node_modules/better-scroll/dist/better-scroll.esm.mjs +3670 -0
  450. package/dist/node_modules/classnames/index.mjs +42 -0
  451. package/dist/node_modules/clsx/dist/clsx.mjs +23 -0
  452. package/dist/node_modules/copy-to-clipboard/index.mjs +46 -0
  453. package/dist/node_modules/dayjs/dayjs.min.mjs +297 -0
  454. package/dist/node_modules/dayjs/locale/zh-cn.mjs +19 -0
  455. package/dist/node_modules/dayjs/plugin/isBetween.mjs +19 -0
  456. package/dist/node_modules/dayjs/plugin/isSameOrAfter.mjs +18 -0
  457. package/dist/node_modules/dayjs/plugin/isSameOrBefore.mjs +18 -0
  458. package/dist/node_modules/dayjs/plugin/isToday.mjs +19 -0
  459. package/dist/node_modules/dayjs/plugin/isoWeek.mjs +34 -0
  460. package/dist/node_modules/dayjs/plugin/objectSupport.mjs +49 -0
  461. package/dist/node_modules/dayjs/plugin/relativeTime.mjs +49 -0
  462. package/dist/node_modules/dayjs/plugin/utc.mjs +87 -0
  463. package/dist/node_modules/dayjs/plugin/weekOfYear.mjs +31 -0
  464. package/dist/node_modules/immer/dist/immer.mjs +473 -0
  465. package/dist/node_modules/lodash/_Symbol.mjs +5 -0
  466. package/dist/node_modules/lodash/_baseGetTag.mjs +11 -0
  467. package/dist/node_modules/lodash/_baseTrim.mjs +9 -0
  468. package/dist/node_modules/lodash/_freeGlobal.mjs +5 -0
  469. package/dist/node_modules/lodash/_getRawTag.mjs +16 -0
  470. package/dist/node_modules/lodash/_objectToString.mjs +8 -0
  471. package/dist/node_modules/lodash/_root.mjs +5 -0
  472. package/dist/node_modules/lodash/_trimmedEndIndex.mjs +10 -0
  473. package/dist/node_modules/lodash/debounce.mjs +55 -0
  474. package/dist/node_modules/lodash/isObject.mjs +8 -0
  475. package/dist/node_modules/lodash/isObjectLike.mjs +7 -0
  476. package/dist/node_modules/lodash/isSymbol.mjs +10 -0
  477. package/dist/node_modules/lodash/now.mjs +7 -0
  478. package/dist/node_modules/lodash/throttle.mjs +19 -0
  479. package/dist/node_modules/lodash/toNumber.mjs +23 -0
  480. package/dist/node_modules/lodash-es/_DataView.mjs +7 -0
  481. package/dist/node_modules/lodash-es/_Hash.mjs +20 -0
  482. package/dist/node_modules/lodash-es/_ListCache.mjs +20 -0
  483. package/dist/node_modules/lodash-es/_Map.mjs +7 -0
  484. package/dist/node_modules/lodash-es/_MapCache.mjs +20 -0
  485. package/dist/node_modules/lodash-es/_Promise.mjs +7 -0
  486. package/dist/node_modules/lodash-es/_Set.mjs +7 -0
  487. package/dist/node_modules/lodash-es/_Stack.mjs +18 -0
  488. package/dist/node_modules/lodash-es/_Symbol.mjs +6 -0
  489. package/dist/node_modules/lodash-es/_Uint8Array.mjs +6 -0
  490. package/dist/node_modules/lodash-es/_WeakMap.mjs +7 -0
  491. package/dist/node_modules/lodash-es/_apply.mjs +16 -0
  492. package/dist/node_modules/lodash-es/_arrayEach.mjs +8 -0
  493. package/dist/node_modules/lodash-es/_arrayFilter.mjs +10 -0
  494. package/dist/node_modules/lodash-es/_arrayLikeKeys.mjs +20 -0
  495. package/dist/node_modules/lodash-es/_arrayMap.mjs +8 -0
  496. package/dist/node_modules/lodash-es/_arrayPush.mjs +8 -0
  497. package/dist/node_modules/lodash-es/_assignMergeValue.mjs +8 -0
  498. package/dist/node_modules/lodash-es/_assignValue.mjs +10 -0
  499. package/dist/node_modules/lodash-es/_assocIndexOf.mjs +10 -0
  500. package/dist/node_modules/lodash-es/_baseAssign.mjs +8 -0
  501. package/dist/node_modules/lodash-es/_baseAssignIn.mjs +8 -0
  502. package/dist/node_modules/lodash-es/_baseAssignValue.mjs +12 -0
  503. package/dist/node_modules/lodash-es/_baseAt.mjs +9 -0
  504. package/dist/node_modules/lodash-es/_baseClone.mjs +65 -0
  505. package/dist/node_modules/lodash-es/_baseCreate.mjs +18 -0
  506. package/dist/node_modules/lodash-es/_baseFlatten.mjs +13 -0
  507. package/dist/node_modules/lodash-es/_baseFor.mjs +6 -0
  508. package/dist/node_modules/lodash-es/_baseGet.mjs +11 -0
  509. package/dist/node_modules/lodash-es/_baseGetAllKeys.mjs +9 -0
  510. package/dist/node_modules/lodash-es/_baseGetTag.mjs +10 -0
  511. package/dist/node_modules/lodash-es/_baseIsArguments.mjs +9 -0
  512. package/dist/node_modules/lodash-es/_baseIsMap.mjs +9 -0
  513. package/dist/node_modules/lodash-es/_baseIsNative.mjs +16 -0
  514. package/dist/node_modules/lodash-es/_baseIsSet.mjs +9 -0
  515. package/dist/node_modules/lodash-es/_baseIsTypedArray.mjs +12 -0
  516. package/dist/node_modules/lodash-es/_baseKeys.mjs +14 -0
  517. package/dist/node_modules/lodash-es/_baseKeysIn.mjs +15 -0
  518. package/dist/node_modules/lodash-es/_baseMerge.mjs +20 -0
  519. package/dist/node_modules/lodash-es/_baseMergeDeep.mjs +31 -0
  520. package/dist/node_modules/lodash-es/_baseRest.mjs +9 -0
  521. package/dist/node_modules/lodash-es/_baseSetToString.mjs +15 -0
  522. package/dist/node_modules/lodash-es/_baseSlice.mjs +10 -0
  523. package/dist/node_modules/lodash-es/_baseTimes.mjs +8 -0
  524. package/dist/node_modules/lodash-es/_baseToString.mjs +18 -0
  525. package/dist/node_modules/lodash-es/_baseUnary.mjs +8 -0
  526. package/dist/node_modules/lodash-es/_baseUnset.mjs +10 -0
  527. package/dist/node_modules/lodash-es/_castPath.mjs +10 -0
  528. package/dist/node_modules/lodash-es/_cloneArrayBuffer.mjs +8 -0
  529. package/dist/node_modules/lodash-es/_cloneBuffer.mjs +11 -0
  530. package/dist/node_modules/lodash-es/_cloneDataView.mjs +8 -0
  531. package/dist/node_modules/lodash-es/_cloneRegExp.mjs +8 -0
  532. package/dist/node_modules/lodash-es/_cloneSymbol.mjs +8 -0
  533. package/dist/node_modules/lodash-es/_cloneTypedArray.mjs +8 -0
  534. package/dist/node_modules/lodash-es/_copyArray.mjs +9 -0
  535. package/dist/node_modules/lodash-es/_copyObject.mjs +14 -0
  536. package/dist/node_modules/lodash-es/_copySymbols.mjs +8 -0
  537. package/dist/node_modules/lodash-es/_copySymbolsIn.mjs +8 -0
  538. package/dist/node_modules/lodash-es/_coreJsData.mjs +6 -0
  539. package/dist/node_modules/lodash-es/_createAssigner.mjs +15 -0
  540. package/dist/node_modules/lodash-es/_createBaseFor.mjs +13 -0
  541. package/dist/node_modules/lodash-es/_customOmitClone.mjs +7 -0
  542. package/dist/node_modules/lodash-es/_defineProperty.mjs +12 -0
  543. package/dist/node_modules/lodash-es/_flatRest.mjs +9 -0
  544. package/dist/node_modules/lodash-es/_freeGlobal.mjs +5 -0
  545. package/dist/node_modules/lodash-es/_getAllKeys.mjs +9 -0
  546. package/dist/node_modules/lodash-es/_getAllKeysIn.mjs +9 -0
  547. package/dist/node_modules/lodash-es/_getMapData.mjs +8 -0
  548. package/dist/node_modules/lodash-es/_getNative.mjs +9 -0
  549. package/dist/node_modules/lodash-es/_getPrototype.mjs +6 -0
  550. package/dist/node_modules/lodash-es/_getRawTag.mjs +15 -0
  551. package/dist/node_modules/lodash-es/_getSymbols.mjs +11 -0
  552. package/dist/node_modules/lodash-es/_getSymbolsIn.mjs +13 -0
  553. package/dist/node_modules/lodash-es/_getTag.mjs +29 -0
  554. package/dist/node_modules/lodash-es/_getValue.mjs +6 -0
  555. package/dist/node_modules/lodash-es/_hashClear.mjs +7 -0
  556. package/dist/node_modules/lodash-es/_hashDelete.mjs +7 -0
  557. package/dist/node_modules/lodash-es/_hashGet.mjs +13 -0
  558. package/dist/node_modules/lodash-es/_hashHas.mjs +9 -0
  559. package/dist/node_modules/lodash-es/_hashSet.mjs +9 -0
  560. package/dist/node_modules/lodash-es/_initCloneArray.mjs +8 -0
  561. package/dist/node_modules/lodash-es/_initCloneByTag.mjs +42 -0
  562. package/dist/node_modules/lodash-es/_initCloneObject.mjs +9 -0
  563. package/dist/node_modules/lodash-es/_isFlattenable.mjs +10 -0
  564. package/dist/node_modules/lodash-es/_isIndex.mjs +8 -0
  565. package/dist/node_modules/lodash-es/_isIterateeCall.mjs +13 -0
  566. package/dist/node_modules/lodash-es/_isKey.mjs +12 -0
  567. package/dist/node_modules/lodash-es/_isKeyable.mjs +7 -0
  568. package/dist/node_modules/lodash-es/_isMasked.mjs +11 -0
  569. package/dist/node_modules/lodash-es/_isPrototype.mjs +8 -0
  570. package/dist/node_modules/lodash-es/_listCacheClear.mjs +6 -0
  571. package/dist/node_modules/lodash-es/_listCacheDelete.mjs +12 -0
  572. package/dist/node_modules/lodash-es/_listCacheGet.mjs +8 -0
  573. package/dist/node_modules/lodash-es/_listCacheHas.mjs +7 -0
  574. package/dist/node_modules/lodash-es/_listCacheSet.mjs +8 -0
  575. package/dist/node_modules/lodash-es/_mapCacheClear.mjs +13 -0
  576. package/dist/node_modules/lodash-es/_mapCacheDelete.mjs +8 -0
  577. package/dist/node_modules/lodash-es/_mapCacheGet.mjs +7 -0
  578. package/dist/node_modules/lodash-es/_mapCacheHas.mjs +7 -0
  579. package/dist/node_modules/lodash-es/_mapCacheSet.mjs +8 -0
  580. package/dist/node_modules/lodash-es/_memoizeCapped.mjs +11 -0
  581. package/dist/node_modules/lodash-es/_nativeCreate.mjs +6 -0
  582. package/dist/node_modules/lodash-es/_nativeKeys.mjs +6 -0
  583. package/dist/node_modules/lodash-es/_nativeKeysIn.mjs +10 -0
  584. package/dist/node_modules/lodash-es/_nodeUtil.mjs +12 -0
  585. package/dist/node_modules/lodash-es/_objectToString.mjs +7 -0
  586. package/dist/node_modules/lodash-es/_overArg.mjs +8 -0
  587. package/dist/node_modules/lodash-es/_overRest.mjs +15 -0
  588. package/dist/node_modules/lodash-es/_parent.mjs +8 -0
  589. package/dist/node_modules/lodash-es/_root.mjs +6 -0
  590. package/dist/node_modules/lodash-es/_safeGet.mjs +7 -0
  591. package/dist/node_modules/lodash-es/_setToString.mjs +7 -0
  592. package/dist/node_modules/lodash-es/_shortOut.mjs +16 -0
  593. package/dist/node_modules/lodash-es/_stackClear.mjs +7 -0
  594. package/dist/node_modules/lodash-es/_stackDelete.mjs +7 -0
  595. package/dist/node_modules/lodash-es/_stackGet.mjs +6 -0
  596. package/dist/node_modules/lodash-es/_stackHas.mjs +6 -0
  597. package/dist/node_modules/lodash-es/_stackSet.mjs +17 -0
  598. package/dist/node_modules/lodash-es/_stringToPath.mjs +11 -0
  599. package/dist/node_modules/lodash-es/_toKey.mjs +11 -0
  600. package/dist/node_modules/lodash-es/_toSource.mjs +17 -0
  601. package/dist/node_modules/lodash-es/at.mjs +7 -0
  602. package/dist/node_modules/lodash-es/constant.mjs +8 -0
  603. package/dist/node_modules/lodash-es/eq.mjs +6 -0
  604. package/dist/node_modules/lodash-es/flatten.mjs +8 -0
  605. package/dist/node_modules/lodash-es/get.mjs +8 -0
  606. package/dist/node_modules/lodash-es/identity.mjs +6 -0
  607. package/dist/node_modules/lodash-es/isArguments.mjs +11 -0
  608. package/dist/node_modules/lodash-es/isArray.mjs +5 -0
  609. package/dist/node_modules/lodash-es/isArrayLike.mjs +8 -0
  610. package/dist/node_modules/lodash-es/isArrayLikeObject.mjs +8 -0
  611. package/dist/node_modules/lodash-es/isBoolean.mjs +9 -0
  612. package/dist/node_modules/lodash-es/isBuffer.mjs +7 -0
  613. package/dist/node_modules/lodash-es/isFunction.mjs +12 -0
  614. package/dist/node_modules/lodash-es/isLength.mjs +7 -0
  615. package/dist/node_modules/lodash-es/isMap.mjs +8 -0
  616. package/dist/node_modules/lodash-es/isObject.mjs +7 -0
  617. package/dist/node_modules/lodash-es/isObjectLike.mjs +6 -0
  618. package/dist/node_modules/lodash-es/isPlainObject.mjs +16 -0
  619. package/dist/node_modules/lodash-es/isSet.mjs +8 -0
  620. package/dist/node_modules/lodash-es/isSymbol.mjs +9 -0
  621. package/dist/node_modules/lodash-es/isTypedArray.mjs +8 -0
  622. package/dist/node_modules/lodash-es/keys.mjs +9 -0
  623. package/dist/node_modules/lodash-es/keysIn.mjs +9 -0
  624. package/dist/node_modules/lodash-es/last.mjs +7 -0
  625. package/dist/node_modules/lodash-es/memoize.mjs +18 -0
  626. package/dist/node_modules/lodash-es/merge.mjs +9 -0
  627. package/dist/node_modules/lodash-es/omit.mjs +24 -0
  628. package/dist/node_modules/lodash-es/stubArray.mjs +6 -0
  629. package/dist/node_modules/lodash-es/stubFalse.mjs +6 -0
  630. package/dist/node_modules/lodash-es/toPlainObject.mjs +8 -0
  631. package/dist/node_modules/lodash-es/toString.mjs +7 -0
  632. package/dist/node_modules/normalize-wheel/index.mjs +7 -0
  633. package/dist/node_modules/normalize-wheel/src/ExecutionEnvironment.mjs +11 -0
  634. package/dist/node_modules/normalize-wheel/src/UserAgent_DEPRECATED.mjs +142 -0
  635. package/dist/node_modules/normalize-wheel/src/isEventSupported.mjs +33 -0
  636. package/dist/node_modules/normalize-wheel/src/normalizeWheel.mjs +19 -0
  637. package/dist/node_modules/object-assign/index.mjs +55 -0
  638. package/dist/node_modules/preact/compat/dist/compat.module.mjs +202 -0
  639. package/dist/node_modules/preact/dist/preact.module.mjs +343 -0
  640. package/dist/node_modules/preact/hooks/dist/hooks.module.mjs +63 -0
  641. package/dist/node_modules/prop-types/checkPropTypes.mjs +55 -0
  642. package/dist/node_modules/prop-types/factoryWithThrowingShims.mjs +53 -0
  643. package/dist/node_modules/prop-types/factoryWithTypeCheckers.mjs +330 -0
  644. package/dist/node_modules/prop-types/index.mjs +16 -0
  645. package/dist/node_modules/prop-types/lib/ReactPropTypesSecret.mjs +11 -0
  646. package/dist/node_modules/prop-types/lib/has.mjs +7 -0
  647. package/dist/node_modules/rc-dialog/es/Dialog/Content/MemoChildren.mjs +11 -0
  648. package/dist/node_modules/rc-dialog/es/Dialog/Content/Panel.mjs +93 -0
  649. package/dist/node_modules/rc-dialog/es/Dialog/Content/index.mjs +43 -0
  650. package/dist/node_modules/rc-dialog/es/Dialog/Mask.mjs +25 -0
  651. package/dist/node_modules/rc-dialog/es/Dialog/index.mjs +114 -0
  652. package/dist/node_modules/rc-dialog/es/DialogWrap.mjs +32 -0
  653. package/dist/node_modules/rc-dialog/es/context.mjs +5 -0
  654. package/dist/node_modules/rc-dialog/es/index.mjs +6 -0
  655. package/dist/node_modules/rc-dialog/es/util.mjs +23 -0
  656. package/dist/node_modules/rc-field-form/es/Field.mjs +300 -0
  657. package/dist/node_modules/rc-field-form/es/FieldContext.mjs +41 -0
  658. package/dist/node_modules/rc-field-form/es/Form.mjs +78 -0
  659. package/dist/node_modules/rc-field-form/es/FormContext.mjs +46 -0
  660. package/dist/node_modules/rc-field-form/es/List.mjs +82 -0
  661. package/dist/node_modules/rc-field-form/es/ListContext.mjs +5 -0
  662. package/dist/node_modules/rc-field-form/es/index.mjs +22 -0
  663. package/dist/node_modules/rc-field-form/es/useForm.mjs +541 -0
  664. package/dist/node_modules/rc-field-form/es/useWatch.mjs +53 -0
  665. package/dist/node_modules/rc-field-form/es/utils/NameMap.mjs +66 -0
  666. package/dist/node_modules/rc-field-form/es/utils/asyncUtil.mjs +15 -0
  667. package/dist/node_modules/rc-field-form/es/utils/messages.mjs +50 -0
  668. package/dist/node_modules/rc-field-form/es/utils/typeUtil.mjs +10 -0
  669. package/dist/node_modules/rc-field-form/es/utils/validateUtil.mjs +203 -0
  670. package/dist/node_modules/rc-field-form/es/utils/valueUtil.mjs +60 -0
  671. package/dist/node_modules/rc-motion/es/CSSMotion.mjs +73 -0
  672. package/dist/node_modules/rc-motion/es/CSSMotionList.mjs +95 -0
  673. package/dist/node_modules/rc-motion/es/DomWrapper.mjs +21 -0
  674. package/dist/node_modules/rc-motion/es/context.mjs +13 -0
  675. package/dist/node_modules/rc-motion/es/hooks/useDomMotionEvents.mjs +20 -0
  676. package/dist/node_modules/rc-motion/es/hooks/useIsomorphicLayoutEffect.mjs +6 -0
  677. package/dist/node_modules/rc-motion/es/hooks/useNextFrame.mjs +28 -0
  678. package/dist/node_modules/rc-motion/es/hooks/useStatus.mjs +91 -0
  679. package/dist/node_modules/rc-motion/es/hooks/useStepQueue.mjs +38 -0
  680. package/dist/node_modules/rc-motion/es/index.mjs +7 -0
  681. package/dist/node_modules/rc-motion/es/interface.mjs +13 -0
  682. package/dist/node_modules/rc-motion/es/util/diff.mjs +65 -0
  683. package/dist/node_modules/rc-motion/es/util/motion.mjs +51 -0
  684. package/dist/node_modules/rc-pagination/es/locale/en_US.mjs +18 -0
  685. package/dist/node_modules/rc-pagination/lib/locale/en_US.mjs +21 -0
  686. package/dist/node_modules/rc-picker/es/locale/common.mjs +9 -0
  687. package/dist/node_modules/rc-picker/es/locale/en_US.mjs +31 -0
  688. package/dist/node_modules/rc-picker/lib/locale/common.mjs +14 -0
  689. package/dist/node_modules/rc-picker/lib/locale/en_US.mjs +37 -0
  690. package/dist/node_modules/rc-progress/es/Circle/PtgCircle.mjs +52 -0
  691. package/dist/node_modules/rc-progress/es/Circle/index.mjs +83 -0
  692. package/dist/node_modules/rc-progress/es/Circle/util.mjs +23 -0
  693. package/dist/node_modules/rc-progress/es/Line.mjs +3 -0
  694. package/dist/node_modules/rc-progress/es/common.mjs +27 -0
  695. package/dist/node_modules/rc-progress/es/hooks/useId.mjs +18 -0
  696. package/dist/node_modules/rc-resize-observer/es/Collection.mjs +22 -0
  697. package/dist/node_modules/rc-resize-observer/es/SingleObserver/DomWrapper.mjs +21 -0
  698. package/dist/node_modules/rc-resize-observer/es/SingleObserver/index.mjs +59 -0
  699. package/dist/node_modules/rc-resize-observer/es/index.mjs +24 -0
  700. package/dist/node_modules/rc-resize-observer/es/utils/observerUtil.mjs +23 -0
  701. package/dist/node_modules/rc-slider/es/Handles/Handle.mjs +103 -0
  702. package/dist/node_modules/rc-slider/es/Handles/index.mjs +69 -0
  703. package/dist/node_modules/rc-slider/es/Marks/Mark.mjs +22 -0
  704. package/dist/node_modules/rc-slider/es/Marks/index.mjs +20 -0
  705. package/dist/node_modules/rc-slider/es/Slider.mjs +225 -0
  706. package/dist/node_modules/rc-slider/es/Steps/Dot.mjs +16 -0
  707. package/dist/node_modules/rc-slider/es/Steps/index.mjs +28 -0
  708. package/dist/node_modules/rc-slider/es/Tracks/Track.mjs +34 -0
  709. package/dist/node_modules/rc-slider/es/Tracks/index.mjs +50 -0
  710. package/dist/node_modules/rc-slider/es/context.mjs +17 -0
  711. package/dist/node_modules/rc-slider/es/hooks/useDrag.mjs +104 -0
  712. package/dist/node_modules/rc-slider/es/hooks/useOffset.mjs +104 -0
  713. package/dist/node_modules/rc-slider/es/hooks/useRange.mjs +13 -0
  714. package/dist/node_modules/rc-slider/es/index.mjs +5 -0
  715. package/dist/node_modules/rc-slider/es/util.mjs +29 -0
  716. package/dist/node_modules/rc-tooltip/es/Popup.mjs +17 -0
  717. package/dist/node_modules/rc-tooltip/es/Tooltip.mjs +52 -0
  718. package/dist/node_modules/rc-tooltip/es/index.mjs +6 -0
  719. package/dist/node_modules/rc-tooltip/es/placements.mjs +84 -0
  720. package/dist/node_modules/rc-upload/es/AjaxUploader.mjs +284 -0
  721. package/dist/node_modules/rc-upload/es/Upload.mjs +57 -0
  722. package/dist/node_modules/rc-upload/es/attr-accept.mjs +22 -0
  723. package/dist/node_modules/rc-upload/es/index.mjs +4 -0
  724. package/dist/node_modules/rc-upload/es/request.mjs +46 -0
  725. package/dist/node_modules/rc-upload/es/traverseFileTree.mjs +137 -0
  726. package/dist/node_modules/rc-upload/es/uid.mjs +7 -0
  727. package/dist/node_modules/rc-util/es/Children/toArray.mjs +11 -0
  728. package/dist/node_modules/rc-util/es/Dom/canUseDom.mjs +6 -0
  729. package/dist/node_modules/rc-util/es/Dom/contains.mjs +15 -0
  730. package/dist/node_modules/rc-util/es/Dom/dynamicCSS.mjs +87 -0
  731. package/dist/node_modules/rc-util/es/Dom/findDOMNode.mjs +24 -0
  732. package/dist/node_modules/rc-util/es/Dom/isVisible.mjs +22 -0
  733. package/dist/node_modules/rc-util/es/Dom/shadow.mjs +14 -0
  734. package/dist/node_modules/rc-util/es/KeyCode.mjs +517 -0
  735. package/dist/node_modules/rc-util/es/React/render.mjs +81 -0
  736. package/dist/node_modules/rc-util/es/getScrollBarSize.mjs +38 -0
  737. package/dist/node_modules/rc-util/es/hooks/useEvent.mjs +14 -0
  738. package/dist/node_modules/rc-util/es/hooks/useId.mjs +27 -0
  739. package/dist/node_modules/rc-util/es/hooks/useLayoutEffect.mjs +21 -0
  740. package/dist/node_modules/rc-util/es/hooks/useMemo.mjs +8 -0
  741. package/dist/node_modules/rc-util/es/hooks/useMergedState.mjs +25 -0
  742. package/dist/node_modules/rc-util/es/hooks/useState.mjs +17 -0
  743. package/dist/node_modules/rc-util/es/hooks/useSyncState.mjs +16 -0
  744. package/dist/node_modules/rc-util/es/isEqual.mjs +35 -0
  745. package/dist/node_modules/rc-util/es/isMobile.mjs +9 -0
  746. package/dist/node_modules/rc-util/es/omit.mjs +9 -0
  747. package/dist/node_modules/rc-util/es/pickAttrs.mjs +42 -0
  748. package/dist/node_modules/rc-util/es/raf.mjs +40 -0
  749. package/dist/node_modules/rc-util/es/ref.mjs +39 -0
  750. package/dist/node_modules/rc-util/es/utils/get.mjs +11 -0
  751. package/dist/node_modules/rc-util/es/utils/set.mjs +47 -0
  752. package/dist/node_modules/rc-util/es/warning.mjs +44 -0
  753. package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.development.mjs +103 -0
  754. package/dist/node_modules/rc-util/node_modules/react-is/cjs/react-is.production.min.mjs +82 -0
  755. package/dist/node_modules/rc-util/node_modules/react-is/index.mjs +8 -0
  756. package/dist/node_modules/react/cjs/react-jsx-runtime.development.mjs +616 -0
  757. package/dist/node_modules/react/cjs/react-jsx-runtime.production.min.mjs +32 -0
  758. package/dist/node_modules/react/jsx-runtime.mjs +8 -0
  759. package/dist/node_modules/react-device-detect/dist/lib.mjs +721 -0
  760. package/dist/node_modules/react-dom/client.mjs +26 -0
  761. package/dist/node_modules/react-draggable/build/cjs/Draggable.mjs +343 -0
  762. package/dist/node_modules/react-draggable/build/cjs/DraggableCore.mjs +324 -0
  763. package/dist/node_modules/react-draggable/build/cjs/cjs.mjs +14 -0
  764. package/dist/node_modules/react-draggable/build/cjs/utils/domFns.mjs +174 -0
  765. package/dist/node_modules/react-draggable/build/cjs/utils/getPrefix.mjs +35 -0
  766. package/dist/node_modules/react-draggable/build/cjs/utils/log.mjs +7 -0
  767. package/dist/node_modules/react-draggable/build/cjs/utils/positionFns.mjs +107 -0
  768. package/dist/node_modules/react-draggable/build/cjs/utils/shims.mjs +30 -0
  769. package/dist/node_modules/react-draggable/node_modules/clsx/dist/clsx.m.mjs +22 -0
  770. package/dist/node_modules/react-easy-crop/index.module.mjs +543 -0
  771. package/dist/node_modules/react-i18next/dist/es/context.mjs +19 -0
  772. package/dist/node_modules/react-i18next/dist/es/defaults.mjs +17 -0
  773. package/dist/node_modules/react-i18next/dist/es/i18nInstance.mjs +7 -0
  774. package/dist/node_modules/react-i18next/dist/es/unescape.mjs +25 -0
  775. package/dist/node_modules/react-i18next/dist/es/useTranslation.mjs +74 -0
  776. package/dist/node_modules/react-i18next/dist/es/utils.mjs +61 -0
  777. package/dist/node_modules/react-is/cjs/react-is.development.mjs +95 -0
  778. package/dist/node_modules/react-is/cjs/react-is.production.min.mjs +79 -0
  779. package/dist/node_modules/react-is/index.mjs +10 -0
  780. package/dist/node_modules/react-resizable/build/Resizable.mjs +201 -0
  781. package/dist/node_modules/react-resizable/build/ResizableBox.mjs +162 -0
  782. package/dist/node_modules/react-resizable/build/propTypes.mjs +118 -0
  783. package/dist/node_modules/react-resizable/build/utils.mjs +54 -0
  784. package/dist/node_modules/react-resizable/index.mjs +13 -0
  785. package/dist/node_modules/resize-observer-polyfill/dist/ResizeObserver.es.mjs +290 -0
  786. package/dist/node_modules/screenfull/index.mjs +122 -0
  787. package/dist/node_modules/stylis/src/Enum.mjs +12 -0
  788. package/dist/node_modules/stylis/src/Middleware.mjs +18 -0
  789. package/dist/node_modules/stylis/src/Parser.mjs +114 -0
  790. package/dist/node_modules/stylis/src/Serializer.mjs +28 -0
  791. package/dist/node_modules/stylis/src/Tokenizer.mjs +131 -0
  792. package/dist/node_modules/stylis/src/Utility.mjs +50 -0
  793. package/dist/node_modules/throttle-debounce/esm/index.mjs +35 -0
  794. package/dist/node_modules/toggle-selection/index.mjs +25 -0
  795. package/dist/node_modules/tslib/tslib.es6.mjs +97 -0
  796. package/dist/node_modules/ua-parser-js/dist/ua-parser.min.mjs +86 -0
  797. package/dist/node_modules/use-immer/dist/use-immer.module.mjs +13 -0
  798. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.development.mjs +61 -0
  799. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim/with-selector.production.min.mjs +60 -0
  800. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.development.mjs +85 -0
  801. package/dist/node_modules/use-sync-external-store/cjs/use-sync-external-store-shim.production.min.mjs +50 -0
  802. package/dist/node_modules/use-sync-external-store/shim/index.mjs +10 -0
  803. package/dist/node_modules/use-sync-external-store/shim/with-selector.mjs +10 -0
  804. package/dist/node_modules/zustand/esm/index.mjs +24 -0
  805. package/dist/node_modules/zustand/esm/vanilla.mjs +16 -0
  806. package/dist/style.css +1 -1
  807. package/dist/utils/WithFluent.mjs +13 -13
  808. package/package.json +1 -1
@@ -0,0 +1,50 @@
1
+ import n from "../../../@babel/runtime/helpers/esm/objectSpread2.mjs";
2
+ import { Color as d } from "./color.mjs";
3
+ var _ = "rc-color-picker", f = function(e) {
4
+ return e instanceof d ? e : new d(e);
5
+ }, $ = f("#1677ff"), k = function(e) {
6
+ var t = e.offset, r = e.targetRef, b = e.containerRef, R = e.color, o = e.type, h = b.current.getBoundingClientRect(), u = h.width, x = h.height, l = r.current.getBoundingClientRect(), w = l.width, y = l.height, s = w / 2, O = y / 2, c = (t.x + s) / u, g = 1 - (t.y + O) / x, a = R.toHsb(), v = c, C = (t.x + s) / u * 360;
7
+ if (o)
8
+ switch (o) {
9
+ case "hue":
10
+ return f(n(n({}, a), {}, {
11
+ h: C <= 0 ? 0 : C
12
+ }));
13
+ case "alpha":
14
+ return f(n(n({}, a), {}, {
15
+ a: v <= 0 ? 0 : v
16
+ }));
17
+ }
18
+ return f({
19
+ h: a.h,
20
+ s: c <= 0 ? 0 : c,
21
+ b: g >= 1 ? 1 : g,
22
+ a: a.a
23
+ });
24
+ }, p = function(e, t) {
25
+ var r = e.toHsb();
26
+ switch (t) {
27
+ case "hue":
28
+ return {
29
+ x: r.h / 360 * 100,
30
+ y: 50
31
+ };
32
+ case "alpha":
33
+ return {
34
+ x: e.a * 100,
35
+ y: 50
36
+ };
37
+ default:
38
+ return {
39
+ x: r.s * 100,
40
+ y: (1 - r.b) * 100
41
+ };
42
+ }
43
+ };
44
+ export {
45
+ _ as ColorPickerPrefixCls,
46
+ p as calcOffset,
47
+ k as calculateColor,
48
+ $ as defaultColor,
49
+ f as generateColor
50
+ };
@@ -0,0 +1,5 @@
1
+ import * as t from "react";
2
+ var e = /* @__PURE__ */ t.createContext(null);
3
+ export {
4
+ e as default
5
+ };
@@ -0,0 +1,45 @@
1
+ import c from "../../../@babel/runtime/helpers/esm/slicedToArray.mjs";
2
+ import * as o from "react";
3
+ import { createPortal as q } from "react-dom";
4
+ import i from "../../../rc-util/es/Dom/canUseDom.mjs";
5
+ import { warningOnce as x } from "../../../rc-util/es/warning.mjs";
6
+ import { supportRef as I, useComposeRef as V } from "../../../rc-util/es/ref.mjs";
7
+ import z from "./Context.mjs";
8
+ import A from "./useDom.mjs";
9
+ import M from "./useScrollLocker.mjs";
10
+ import { inlineMock as T } from "./mock.mjs";
11
+ var D = function(e) {
12
+ return e === !1 ? !1 : !i() || !e ? null : typeof e == "string" ? document.querySelector(e) : typeof e == "function" ? e() : e;
13
+ }, U = /* @__PURE__ */ o.forwardRef(function(r, e) {
14
+ var t = r.open, E = r.autoLock, d = r.getContainer, P = r.debug, s = r.autoDestroy, m = s === void 0 ? !0 : s, n = r.children, h = o.useState(t), v = c(h, 2), C = v[0], g = v[1], p = C || t;
15
+ process.env.NODE_ENV !== "production" && x(i() || !t, "Portal only work in client side. Please call 'useEffect' to show Portal instead default render in SSR."), o.useEffect(function() {
16
+ (m || t) && g(t);
17
+ }, [t, m]);
18
+ var k = o.useState(function() {
19
+ return D(d);
20
+ }), R = c(k, 2), a = R[0], N = R[1];
21
+ o.useEffect(function() {
22
+ var l = D(d);
23
+ N(l ?? null);
24
+ });
25
+ var $ = A(p && !a, P), S = c($, 2), y = S[0], w = S[1], u = a ?? y;
26
+ M(E && t && i() && (u === y || u === document.body));
27
+ var _ = null;
28
+ if (n && I(n) && e) {
29
+ var O = n;
30
+ _ = O.ref;
31
+ }
32
+ var b = V(_, e);
33
+ if (!p || !i() || a === void 0)
34
+ return null;
35
+ var L = u === !1 || T(), f = n;
36
+ return e && (f = /* @__PURE__ */ o.cloneElement(n, {
37
+ ref: b
38
+ })), /* @__PURE__ */ o.createElement(z.Provider, {
39
+ value: w
40
+ }, L ? f : /* @__PURE__ */ q(f, u));
41
+ });
42
+ process.env.NODE_ENV !== "production" && (U.displayName = "Portal");
43
+ export {
44
+ U as default
45
+ };
@@ -0,0 +1,4 @@
1
+ import r from "./Portal.mjs";
2
+ export {
3
+ r as default
4
+ };
@@ -0,0 +1,8 @@
1
+ var e = !1;
2
+ function i(o) {
3
+ return typeof o == "boolean" && (e = o), e;
4
+ }
5
+ export {
6
+ e as inline,
7
+ i as inlineMock
8
+ };
@@ -0,0 +1,37 @@
1
+ import $ from "../../../@babel/runtime/helpers/esm/toConsumableArray.mjs";
2
+ import s from "../../../@babel/runtime/helpers/esm/slicedToArray.mjs";
3
+ import * as r from "react";
4
+ import d from "../../../rc-util/es/hooks/useLayoutEffect.mjs";
5
+ import h from "../../../rc-util/es/Dom/canUseDom.mjs";
6
+ import y from "./Context.mjs";
7
+ var p = [];
8
+ function T(o, f) {
9
+ var v = r.useState(function() {
10
+ if (!h())
11
+ return null;
12
+ var e = document.createElement("div");
13
+ return process.env.NODE_ENV !== "production" && f && e.setAttribute("data-debug", f), e;
14
+ }), E = s(v, 1), t = E[0], n = r.useRef(!1), u = r.useContext(y), _ = r.useState(p), i = s(_, 2), a = i[0], c = i[1], C = u || (n.current ? void 0 : function(e) {
15
+ c(function(R) {
16
+ var S = [e].concat($(R));
17
+ return S;
18
+ });
19
+ });
20
+ function l() {
21
+ t.parentElement || document.body.appendChild(t), n.current = !0;
22
+ }
23
+ function m() {
24
+ var e;
25
+ (e = t.parentElement) === null || e === void 0 || e.removeChild(t), n.current = !1;
26
+ }
27
+ return d(function() {
28
+ return o ? u ? u(l) : l() : m(), m;
29
+ }, [o]), d(function() {
30
+ a.length && (a.forEach(function(e) {
31
+ return e();
32
+ }), c(p));
33
+ }, [a]), [t, C];
34
+ }
35
+ export {
36
+ T as default
37
+ };
@@ -0,0 +1,29 @@
1
+ import f from "../../../@babel/runtime/helpers/esm/slicedToArray.mjs";
2
+ import * as m from "react";
3
+ import { updateCSS as d, removeCSS as r } from "../../../rc-util/es/Dom/dynamicCSS.mjs";
4
+ import l from "../../../rc-util/es/hooks/useLayoutEffect.mjs";
5
+ import { getTargetScrollBarSize as s } from "../../../rc-util/es/getScrollBarSize.mjs";
6
+ import { isBodyOverflowing as S } from "./util.mjs";
7
+ var p = "rc-util-locker-".concat(Date.now()), e = 0;
8
+ function h(c) {
9
+ var o = !!c, a = m.useState(function() {
10
+ return e += 1, "".concat(p, "_").concat(e);
11
+ }), n = f(a, 1), t = n[0];
12
+ l(function() {
13
+ if (o) {
14
+ var i = s(document.body).width, u = S();
15
+ d(`
16
+ html body {
17
+ overflow-y: hidden;
18
+ `.concat(u ? "width: calc(100% - ".concat(i, "px);") : "", `
19
+ }`), t);
20
+ } else
21
+ r(t);
22
+ return function() {
23
+ r(t);
24
+ };
25
+ }, [o, t]);
26
+ }
27
+ export {
28
+ h as default
29
+ };
@@ -0,0 +1,6 @@
1
+ function e() {
2
+ return document.body.scrollHeight > (window.innerHeight || document.documentElement.clientHeight) && window.innerWidth > document.body.offsetWidth;
3
+ }
4
+ export {
5
+ e as isBodyOverflowing
6
+ };
@@ -0,0 +1,22 @@
1
+ import _ from "../../../../classnames/index.mjs";
2
+ import * as c from "react";
3
+ function C(e) {
4
+ var m = e.prefixCls, a = e.align, w = e.arrow, o = e.arrowPos, s = w || {}, d = s.className, x = s.content, i = o.x, u = i === void 0 ? 0 : i, f = o.y, y = f === void 0 ? 0 : f, N = c.useRef();
5
+ if (!a || !a.points)
6
+ return null;
7
+ var r = {
8
+ position: "absolute"
9
+ };
10
+ if (a.autoArrow !== !1) {
11
+ var n = a.points[0], v = a.points[1], t = n[0], l = n[1], b = v[0], g = v[1];
12
+ t === b || !["t", "b"].includes(t) ? r.top = y : t === "t" ? r.top = 0 : r.bottom = 0, l === g || !["l", "r"].includes(l) ? r.left = u : l === "l" ? r.left = 0 : r.right = 0;
13
+ }
14
+ return /* @__PURE__ */ c.createElement("div", {
15
+ ref: N,
16
+ className: _("".concat(m, "-arrow"), d),
17
+ style: r
18
+ }, x);
19
+ }
20
+ export {
21
+ C as default
22
+ };
@@ -0,0 +1,24 @@
1
+ import l from "../../../../@babel/runtime/helpers/esm/extends.mjs";
2
+ import c from "../../../../classnames/index.mjs";
3
+ import f from "../../../../rc-motion/es/CSSMotion.mjs";
4
+ import "../../../../rc-motion/es/CSSMotionList.mjs";
5
+ import * as t from "react";
6
+ function k(e) {
7
+ var a = e.prefixCls, m = e.open, n = e.zIndex, r = e.mask, o = e.motion;
8
+ return r ? /* @__PURE__ */ t.createElement(f, l({}, o, {
9
+ motionAppear: !0,
10
+ visible: m,
11
+ removeOnLeave: !0
12
+ }), function(i) {
13
+ var s = i.className;
14
+ return /* @__PURE__ */ t.createElement("div", {
15
+ style: {
16
+ zIndex: n
17
+ },
18
+ className: c("".concat(a, "-mask"), s)
19
+ });
20
+ }) : null;
21
+ }
22
+ export {
23
+ k as default
24
+ };
@@ -0,0 +1,11 @@
1
+ import * as o from "react";
2
+ var r = /* @__PURE__ */ o.memo(function(n) {
3
+ var e = n.children;
4
+ return e;
5
+ }, function(n, e) {
6
+ return e.cache;
7
+ });
8
+ process.env.NODE_ENV !== "production" && (r.displayName = "PopupContent");
9
+ export {
10
+ r as default
11
+ };
@@ -0,0 +1,92 @@
1
+ import re from "../../../../@babel/runtime/helpers/esm/extends.mjs";
2
+ import h from "../../../../@babel/runtime/helpers/esm/objectSpread2.mjs";
3
+ import ae from "../../../../@babel/runtime/helpers/esm/slicedToArray.mjs";
4
+ import le from "../../../../classnames/index.mjs";
5
+ import fe from "../../../../rc-motion/es/CSSMotion.mjs";
6
+ import "../../../../rc-motion/es/CSSMotionList.mjs";
7
+ import * as o from "react";
8
+ import me from "../../../../rc-resize-observer/es/index.mjs";
9
+ import se from "../../../../rc-util/es/hooks/useLayoutEffect.mjs";
10
+ import { composeRef as ce } from "../../../../rc-util/es/ref.mjs";
11
+ import ue from "./Arrow.mjs";
12
+ import de from "./Mask.mjs";
13
+ import ve from "./PopupContent.mjs";
14
+ var he = /* @__PURE__ */ o.forwardRef(function(e, A) {
15
+ var g = e.popup, V = e.className, s = e.prefixCls, D = e.style, C = e.target, L = e.onVisibleChanged, n = e.open, _ = e.keepDom, I = e.fresh, H = e.onClick, O = e.mask, x = e.arrow, y = e.arrowPos, c = e.align, l = e.motion, W = e.maskMotion, N = e.forceRender, i = e.getPopupContainer, $ = e.autoDestroy, B = e.portal, R = e.zIndex, T = e.onMouseEnter, X = e.onMouseLeave, Y = e.onPointerEnter, j = e.ready, U = e.offsetX, q = e.offsetY, F = e.offsetR, G = e.offsetB, J = e.onAlign, k = e.onPrepare, f = e.stretch, u = e.targetWidth, d = e.targetHeight, K = typeof g == "function" ? g() : g, Q = n || _, E = (i == null ? void 0 : i.length) > 0, Z = o.useState(!i || !E), S = ae(Z, 2), P = S[0], p = S[1];
16
+ if (se(function() {
17
+ !P && E && C && p(!0);
18
+ }, [P, E, C]), !P)
19
+ return null;
20
+ var r = "auto", t = {
21
+ left: "-1000vw",
22
+ top: "-1000vh",
23
+ right: r,
24
+ bottom: r
25
+ };
26
+ if (j || !n) {
27
+ var b, M = c.points, z = c.dynamicInset || ((b = c._experimental) === null || b === void 0 ? void 0 : b.dynamicInset), ee = z && M[0][1] === "r", te = z && M[0][0] === "b";
28
+ ee ? (t.right = F, t.left = r) : (t.left = U, t.right = r), te ? (t.bottom = G, t.top = r) : (t.top = q, t.bottom = r);
29
+ }
30
+ var a = {};
31
+ return f && (f.includes("height") && d ? a.height = d : f.includes("minHeight") && d && (a.minHeight = d), f.includes("width") && u ? a.width = u : f.includes("minWidth") && u && (a.minWidth = u)), n || (a.pointerEvents = "none"), /* @__PURE__ */ o.createElement(B, {
32
+ open: N || Q,
33
+ getContainer: i && function() {
34
+ return i(C);
35
+ },
36
+ autoDestroy: $
37
+ }, /* @__PURE__ */ o.createElement(de, {
38
+ prefixCls: s,
39
+ open: n,
40
+ zIndex: R,
41
+ mask: O,
42
+ motion: W
43
+ }), /* @__PURE__ */ o.createElement(me, {
44
+ onResize: J,
45
+ disabled: !n
46
+ }, function(oe) {
47
+ return /* @__PURE__ */ o.createElement(fe, re({
48
+ motionAppear: !0,
49
+ motionEnter: !0,
50
+ motionLeave: !0,
51
+ removeOnLeave: !1,
52
+ forceRender: N,
53
+ leavedClassName: "".concat(s, "-hidden")
54
+ }, l, {
55
+ onAppearPrepare: k,
56
+ onEnterPrepare: k,
57
+ visible: n,
58
+ onVisibleChanged: function(v) {
59
+ var m;
60
+ l == null || (m = l.onVisibleChanged) === null || m === void 0 || m.call(l, v), L(v);
61
+ }
62
+ }), function(w, v) {
63
+ var m = w.className, ne = w.style, ie = le(s, m, V);
64
+ return /* @__PURE__ */ o.createElement("div", {
65
+ ref: ce(oe, A, v),
66
+ className: ie,
67
+ style: h(h(h(h({
68
+ "--arrow-x": "".concat(y.x || 0, "px"),
69
+ "--arrow-y": "".concat(y.y || 0, "px")
70
+ }, t), a), ne), {}, {
71
+ boxSizing: "border-box",
72
+ zIndex: R
73
+ }, D),
74
+ onMouseEnter: T,
75
+ onMouseLeave: X,
76
+ onPointerEnter: Y,
77
+ onClick: H
78
+ }, x && /* @__PURE__ */ o.createElement(ue, {
79
+ prefixCls: s,
80
+ arrow: x,
81
+ arrowPos: y,
82
+ align: c
83
+ }), /* @__PURE__ */ o.createElement(ve, {
84
+ cache: !n && !I
85
+ }, K));
86
+ });
87
+ }));
88
+ });
89
+ process.env.NODE_ENV !== "production" && (he.displayName = "Popup");
90
+ export {
91
+ he as default
92
+ };
@@ -0,0 +1,14 @@
1
+ import { supportRef as p, fillRef as c, useComposeRef as l } from "../../../rc-util/es/ref.mjs";
2
+ import * as a from "react";
3
+ var s = /* @__PURE__ */ a.forwardRef(function(f, i) {
4
+ var e = f.children, r = f.getTriggerDOMNode, t = p(e), g = a.useCallback(function(o) {
5
+ c(i, r ? r(o) : o);
6
+ }, [r]), n = l(g, e.ref);
7
+ return t ? /* @__PURE__ */ a.cloneElement(e, {
8
+ ref: n
9
+ }) : e;
10
+ });
11
+ process.env.NODE_ENV !== "production" && (s.displayName = "TriggerWrapper");
12
+ export {
13
+ s as default
14
+ };
@@ -0,0 +1,5 @@
1
+ import * as t from "react";
2
+ var e = /* @__PURE__ */ t.createContext(null);
3
+ export {
4
+ e as default
5
+ };
@@ -0,0 +1,13 @@
1
+ import * as i from "react";
2
+ function n(e) {
3
+ return e ? Array.isArray(e) ? e : [e] : [];
4
+ }
5
+ function v(e, d, r, t) {
6
+ return i.useMemo(function() {
7
+ var o = n(r ?? d), f = n(t ?? d), u = new Set(o), a = new Set(f);
8
+ return e && (u.has("hover") && (u.delete("hover"), u.add("click")), a.has("hover") && (a.delete("hover"), a.add("click"))), [u, a];
9
+ }, [e, d, r, t]);
10
+ }
11
+ export {
12
+ v as default
13
+ };
@@ -0,0 +1,187 @@
1
+ import E from "../../../../@babel/runtime/helpers/esm/objectSpread2.mjs";
2
+ import o from "../../../../@babel/runtime/helpers/esm/slicedToArray.mjs";
3
+ import { isDOM as va } from "../../../../rc-util/es/Dom/findDOMNode.mjs";
4
+ import aa from "../../../../rc-util/es/Dom/isVisible.mjs";
5
+ import ya from "../../../../rc-util/es/hooks/useEvent.mjs";
6
+ import Or from "../../../../rc-util/es/hooks/useLayoutEffect.mjs";
7
+ import * as rr from "react";
8
+ import { collectScroller as ha, getWin as da, getVisibleArea as nr, toNum as tr } from "../util.mjs";
9
+ function er(v) {
10
+ var l = arguments.length > 1 && arguments[1] !== void 0 ? arguments[1] : 0, w = "".concat(l), C = w.match(/^(.*)\%$/);
11
+ return C ? v * (parseFloat(C[1]) / 100) : parseFloat(w);
12
+ }
13
+ function pr(v, l) {
14
+ var w = l || [], C = o(w, 2), D = C[0], Q = C[1];
15
+ return [er(v.width, D), er(v.height, Q)];
16
+ }
17
+ function rv() {
18
+ var v = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : "";
19
+ return [v[0], v[1]];
20
+ }
21
+ function V(v, l) {
22
+ var w = l[0], C = l[1], D, Q;
23
+ return w === "t" ? Q = v.y : w === "b" ? Q = v.y + v.height : Q = v.y + v.height / 2, C === "l" ? D = v.x : C === "r" ? D = v.x + v.width : D = v.x + v.width / 2, {
24
+ x: D,
25
+ y: Q
26
+ };
27
+ }
28
+ function j(v, l) {
29
+ var w = {
30
+ t: "b",
31
+ b: "t",
32
+ l: "r",
33
+ r: "l"
34
+ };
35
+ return v.map(function(C, D) {
36
+ return D === l ? w[C] || "c" : C;
37
+ }).join("");
38
+ }
39
+ function qa(v, l, w, C, D, Q, vr) {
40
+ var vv = rr.useState({
41
+ ready: !1,
42
+ offsetX: 0,
43
+ offsetY: 0,
44
+ offsetR: 0,
45
+ offsetB: 0,
46
+ arrowX: 0,
47
+ arrowY: 0,
48
+ scaleX: 1,
49
+ scaleY: 1,
50
+ align: D[C] || {}
51
+ }), Ur = o(vv, 2), q = Ur[0], qr = Ur[1], ar = rr.useRef(0), zr = rr.useMemo(function() {
52
+ return l ? ha(l) : [];
53
+ }, [l]), F = rr.useRef({}), av = function() {
54
+ F.current = {};
55
+ };
56
+ v || av();
57
+ var yv = ya(function() {
58
+ if (l && w && v) {
59
+ let G = function(Er, A) {
60
+ var p = arguments.length > 2 && arguments[2] !== void 0 ? arguments[2] : Br, or = y.x + Er, Rr = y.y + A, Ov = or + S, nv = Rr + H, tv = Math.max(or, p.left), ev = Math.max(Rr, p.top), pv = Math.min(Ov, p.right), ra = Math.min(nv, p.bottom);
61
+ return Math.max(0, (pv - tv) * (ra - ev));
62
+ }, Ar = function() {
63
+ u = y.y + M, t = u + H, m = y.x + d, e = m + S;
64
+ };
65
+ var L, B, yr, hr, r = l, Jr = r.ownerDocument, dv = da(r), dr = dv.getComputedStyle(r), Mv = dr.width, wv = dr.height, lv = dr.position, Cv = r.style.left, Fv = r.style.top, Dv = r.style.right, Uv = r.style.bottom, qv = r.style.overflow, T = E(E({}, D[C]), Q), k = Jr.createElement("div");
66
+ (L = r.parentElement) === null || L === void 0 || L.appendChild(k), k.style.left = "".concat(r.offsetLeft, "px"), k.style.top = "".concat(r.offsetTop, "px"), k.style.position = lv, k.style.height = "".concat(r.offsetHeight, "px"), k.style.width = "".concat(r.offsetWidth, "px"), r.style.left = "0", r.style.top = "0", r.style.right = "auto", r.style.bottom = "auto", r.style.overflow = "hidden";
67
+ var h;
68
+ if (Array.isArray(w))
69
+ h = {
70
+ x: w[0],
71
+ y: w[1],
72
+ width: 0,
73
+ height: 0
74
+ };
75
+ else {
76
+ var Mr, wr, z = w.getBoundingClientRect();
77
+ z.x = (Mr = z.x) !== null && Mr !== void 0 ? Mr : z.left, z.y = (wr = z.y) !== null && wr !== void 0 ? wr : z.top, h = {
78
+ x: z.x,
79
+ y: z.y,
80
+ width: z.width,
81
+ height: z.height
82
+ };
83
+ }
84
+ var y = r.getBoundingClientRect();
85
+ y.x = (B = y.x) !== null && B !== void 0 ? B : y.left, y.y = (yr = y.y) !== null && yr !== void 0 ? yr : y.top;
86
+ var W = Jr.documentElement, zv = W.clientWidth, Gv = W.clientHeight, Jv = W.scrollWidth, Kv = W.scrollHeight, Kr = W.scrollTop, Qr = W.scrollLeft, H = y.height, S = y.width, I = h.height, i = h.width, Qv = {
87
+ left: 0,
88
+ top: 0,
89
+ right: zv,
90
+ bottom: Gv
91
+ }, Zv = {
92
+ left: -Qr,
93
+ top: -Kr,
94
+ right: Jv - Qr,
95
+ bottom: Kv - Kr
96
+ }, s = T.htmlRegion, Zr = "visible", jr = "visibleFirst";
97
+ s !== "scroll" && s !== jr && (s = Zr);
98
+ var P = s === jr, jv = nr(Zv, zr), a = nr(Qv, zr), Br = s === Zr ? a : jv, R = P ? a : Br;
99
+ r.style.left = "auto", r.style.top = "auto", r.style.right = "0", r.style.bottom = "0";
100
+ var kr = r.getBoundingClientRect();
101
+ r.style.left = Cv, r.style.top = Fv, r.style.right = Dv, r.style.bottom = Uv, r.style.overflow = qv, (hr = r.parentElement) === null || hr === void 0 || hr.removeChild(k);
102
+ var N = tr(Math.round(S / parseFloat(Mv) * 1e3) / 1e3), f = tr(Math.round(H / parseFloat(wv) * 1e3) / 1e3);
103
+ if (N === 0 || f === 0 || va(w) && !aa(w))
104
+ return;
105
+ var Bv = T.offset, kv = T.targetOffset, bv = pr(y, Bv), br = o(bv, 2), J = br[0], K = br[1], Lv = pr(h, kv), Lr = o(Lv, 2), Tv = Lr[0], Wv = Lr[1];
106
+ h.x -= Tv, h.y -= Wv;
107
+ var Hv = T.points || [], Tr = o(Hv, 2), Sv = Tr[0], Nv = Tr[1], b = rv(Nv), U = rv(Sv), Wr = V(h, b), Hr = V(y, U), $ = E({}, T), d = Wr.x - Hr.x + J, M = Wr.y - Hr.y + K, Z = G(d, M), O = G(d, M, a), Sr = V(h, ["t", "l"]), Nr = V(y, ["t", "l"]), fr = V(h, ["b", "r"]), $r = V(y, ["b", "r"]), n = T.overflow || {}, fv = n.adjustX, $v = n.adjustY, Vr = n.shiftX, Ir = n.shiftY, ir = function(A) {
108
+ return typeof A == "boolean" ? A : A >= 0;
109
+ }, u, t, m, e;
110
+ Ar();
111
+ var sr = ir($v), Pr = U[0] === b[0];
112
+ if (sr && U[0] === "t" && (t > R.bottom || F.current.bt)) {
113
+ var x = M;
114
+ Pr ? x -= H - I : x = Sr.y - $r.y - K;
115
+ var ur = G(d, x), Vv = G(d, x, a);
116
+ // Of course use larger one
117
+ ur > Z || ur === Z && (!P || // Choose recommend one
118
+ Vv >= O) ? (F.current.bt = !0, M = x, K = -K, $.points = [j(U, 0), j(b, 0)]) : F.current.bt = !1;
119
+ }
120
+ if (sr && U[0] === "b" && (u < R.top || F.current.tb)) {
121
+ var _ = M;
122
+ Pr ? _ += H - I : _ = fr.y - Nr.y - K;
123
+ var mr = G(d, _), Iv = G(d, _, a);
124
+ // Of course use larger one
125
+ mr > Z || mr === Z && (!P || // Choose recommend one
126
+ Iv >= O) ? (F.current.tb = !0, M = _, K = -K, $.points = [j(U, 0), j(b, 0)]) : F.current.tb = !1;
127
+ }
128
+ var xr = ir(fv), _r = U[1] === b[1];
129
+ if (xr && U[1] === "l" && (e > R.right || F.current.rl)) {
130
+ var X = d;
131
+ _r ? X -= S - i : X = Sr.x - $r.x - J;
132
+ var Xr = G(X, M), iv = G(X, M, a);
133
+ // Of course use larger one
134
+ Xr > Z || Xr === Z && (!P || // Choose recommend one
135
+ iv >= O) ? (F.current.rl = !0, d = X, J = -J, $.points = [j(U, 1), j(b, 1)]) : F.current.rl = !1;
136
+ }
137
+ if (xr && U[1] === "r" && (m < R.left || F.current.lr)) {
138
+ var Y = d;
139
+ _r ? Y += S - i : Y = fr.x - Nr.x - J;
140
+ var Yr = G(Y, M), sv = G(Y, M, a);
141
+ // Of course use larger one
142
+ Yr > Z || Yr === Z && (!P || // Choose recommend one
143
+ sv >= O) ? (F.current.lr = !0, d = Y, J = -J, $.points = [j(U, 1), j(b, 1)]) : F.current.lr = !1;
144
+ }
145
+ Ar();
146
+ var c = Vr === !0 ? 0 : Vr;
147
+ typeof c == "number" && (m < a.left && (d -= m - a.left - J, h.x + i < a.left + c && (d += h.x - a.left + i - c)), e > a.right && (d -= e - a.right - J, h.x > a.right - c && (d += h.x - a.right + c)));
148
+ var g = Ir === !0 ? 0 : Ir;
149
+ typeof g == "number" && (u < a.top && (M -= u - a.top - K, h.y + I < a.top + g && (M += h.y - a.top + I - g)), t > a.bottom && (M -= t - a.bottom - K, h.y > a.bottom - g && (M += h.y - a.bottom + g)));
150
+ var lr = y.x + d, Pv = lr + S, Cr = y.y + M, uv = Cr + H, cr = h.x, mv = cr + i, gr = h.y, xv = gr + I, _v = Math.max(lr, cr), Xv = Math.min(Pv, mv), Yv = (_v + Xv) / 2, cv = Yv - lr, gv = Math.max(Cr, gr), Av = Math.min(uv, xv), Ev = (gv + Av) / 2, ov = Ev - Cr;
151
+ vr == null || vr(l, $);
152
+ var Fr = kr.right - y.x - (d + y.width), Dr = kr.bottom - y.y - (M + y.height);
153
+ N === 1 && (d = Math.round(d), Fr = Math.round(Fr)), f === 1 && (M = Math.round(M), Dr = Math.round(Dr));
154
+ var Rv = {
155
+ ready: !0,
156
+ offsetX: d / N,
157
+ offsetY: M / f,
158
+ offsetR: Fr / N,
159
+ offsetB: Dr / f,
160
+ arrowX: cv / N,
161
+ arrowY: ov / f,
162
+ scaleX: N,
163
+ scaleY: f,
164
+ align: $
165
+ };
166
+ qr(Rv);
167
+ }
168
+ }), hv = function() {
169
+ ar.current += 1;
170
+ var B = ar.current;
171
+ Promise.resolve().then(function() {
172
+ ar.current === B && yv();
173
+ });
174
+ }, Gr = function() {
175
+ qr(function(B) {
176
+ return E(E({}, B), {}, {
177
+ ready: !1
178
+ });
179
+ });
180
+ };
181
+ return Or(Gr, [C]), Or(function() {
182
+ v || Gr();
183
+ }, [v]), [q.ready, q.offsetX, q.offsetY, q.offsetR, q.offsetB, q.arrowX, q.arrowY, q.scaleX, q.scaleY, q.align, hv];
184
+ }
185
+ export {
186
+ qa as default
187
+ };
@@ -0,0 +1,27 @@
1
+ import s from "../../../../@babel/runtime/helpers/esm/toConsumableArray.mjs";
2
+ import d from "../../../../rc-util/es/hooks/useLayoutEffect.mjs";
3
+ import { collectScroller as v, getWin as L } from "../util.mjs";
4
+ function z(c, e, t, a, u) {
5
+ d(function() {
6
+ if (c && e && t) {
7
+ let r = function() {
8
+ a(), u();
9
+ };
10
+ var l = e, f = t, m = v(l), E = v(f), o = L(f), i = new Set([o].concat(s(m), s(E)));
11
+ return i.forEach(function(n) {
12
+ n.addEventListener("scroll", r, {
13
+ passive: !0
14
+ });
15
+ }), o.addEventListener("resize", r, {
16
+ passive: !0
17
+ }), a(), function() {
18
+ i.forEach(function(n) {
19
+ n.removeEventListener("scroll", r), o.removeEventListener("resize", r);
20
+ });
21
+ };
22
+ }
23
+ }, [c, e, t]);
24
+ }
25
+ export {
26
+ z as default
27
+ };
@@ -0,0 +1,27 @@
1
+ import { getShadowRoot as O } from "../../../../rc-util/es/Dom/shadow.mjs";
2
+ import { warning as V } from "../../../../rc-util/es/warning.mjs";
3
+ import * as L from "react";
4
+ import { getWin as h } from "../util.mjs";
5
+ function z(f, c, e, r, s, o, x, P) {
6
+ var a = L.useRef(f);
7
+ a.current = f, L.useEffect(function() {
8
+ if (c && r && (!s || o)) {
9
+ var n = function(d) {
10
+ var v;
11
+ a.current && !x(((v = d.composedPath) === null || v === void 0 || (v = v.call(d)) === null || v === void 0 ? void 0 : v[0]) || d.target) && P(!1);
12
+ }, t = h(r);
13
+ t.addEventListener("mousedown", n, !0), t.addEventListener("contextmenu", n, !0);
14
+ var u = O(e);
15
+ if (u && (u.addEventListener("mousedown", n, !0), u.addEventListener("contextmenu", n, !0)), process.env.NODE_ENV !== "production") {
16
+ var i, m, W = e == null || (i = e.getRootNode) === null || i === void 0 ? void 0 : i.call(e), D = (m = r.getRootNode) === null || m === void 0 ? void 0 : m.call(r);
17
+ V(W === D, "trigger element and popup element should in same shadow root.");
18
+ }
19
+ return function() {
20
+ t.removeEventListener("mousedown", n, !0), t.removeEventListener("contextmenu", n, !0), u && (u.removeEventListener("mousedown", n, !0), u.removeEventListener("contextmenu", n, !0));
21
+ };
22
+ }
23
+ }, [c, e, r, s, o]);
24
+ }
25
+ export {
26
+ z as default
27
+ };