@ebscn/ui 0.0.10 → 1.0.0

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 (438) hide show
  1. package/README.md +44 -0
  2. package/cjs/components/alphabet-keyboard/alphabet-keyboard.css +143 -0
  3. package/cjs/components/alphabet-keyboard/alphabet-keyboard.d.ts +11 -0
  4. package/cjs/components/alphabet-keyboard/alphabet-keyboard.js +139 -0
  5. package/cjs/components/alphabet-keyboard/index.d.ts +4 -0
  6. package/cjs/components/alphabet-keyboard/index.js +9 -0
  7. package/cjs/components/button/button.css +152 -0
  8. package/cjs/components/button/button.d.ts +40 -0
  9. package/cjs/components/button/button.js +215 -0
  10. package/cjs/components/button/index.d.ts +4 -0
  11. package/cjs/components/button/index.js +9 -0
  12. package/cjs/components/card/card.css +37 -0
  13. package/cjs/components/card/card.d.ts +17 -0
  14. package/cjs/components/card/card.js +40 -0
  15. package/cjs/components/card/index.d.ts +4 -0
  16. package/cjs/components/card/index.js +10 -0
  17. package/cjs/components/checkbox/checkbox.css +92 -0
  18. package/cjs/components/checkbox/checkbox.d.ts +44 -0
  19. package/cjs/components/checkbox/checkbox.js +106 -0
  20. package/cjs/components/checkbox/group-context.d.ts +8 -0
  21. package/cjs/components/checkbox/group-context.js +8 -0
  22. package/cjs/components/checkbox/group.d.ts +10 -0
  23. package/cjs/components/checkbox/group.js +48 -0
  24. package/cjs/components/checkbox/index.d.ts +26 -0
  25. package/cjs/components/checkbox/index.js +14 -0
  26. package/cjs/components/checkbox/native-input.d.ts +10 -0
  27. package/cjs/components/checkbox/native-input.js +38 -0
  28. package/cjs/components/grid/grid.css +15 -0
  29. package/cjs/components/grid/grid.d.ts +15 -0
  30. package/cjs/components/grid/grid.js +45 -0
  31. package/cjs/components/grid/index.d.ts +7 -0
  32. package/cjs/components/grid/index.js +12 -0
  33. package/cjs/components/icons/check-icon.d.ts +4 -0
  34. package/cjs/components/icons/check-icon.js +30 -0
  35. package/cjs/components/icons/check-only-icon.d.ts +4 -0
  36. package/cjs/components/icons/check-only-icon.js +21 -0
  37. package/cjs/components/icons/clear-icon.d.ts +4 -0
  38. package/cjs/components/icons/clear-icon.js +41 -0
  39. package/cjs/components/icons/indeterminate-icon.d.ts +4 -0
  40. package/cjs/components/icons/indeterminate-icon.js +29 -0
  41. package/cjs/components/icons/index.d.ts +8 -0
  42. package/cjs/components/icons/index.js +62 -0
  43. package/cjs/components/icons/loading-icon.d.ts +4 -0
  44. package/cjs/components/icons/loading-icon.js +89 -0
  45. package/cjs/components/icons/search-icon.d.ts +4 -0
  46. package/cjs/components/icons/search-icon.js +43 -0
  47. package/cjs/components/icons/spin-icon.d.ts +4 -0
  48. package/cjs/components/icons/spin-icon.js +32 -0
  49. package/cjs/components/icons/uncheck-icon.d.ts +4 -0
  50. package/cjs/components/icons/uncheck-icon.js +26 -0
  51. package/cjs/components/imageViewer/imageViewer.d.ts +4 -0
  52. package/cjs/components/imageViewer/imageViewer.js +35 -0
  53. package/cjs/components/imageViewer/index.js +9 -0
  54. package/cjs/components/marketTag/index.d.ts +4 -0
  55. package/cjs/components/marketTag/index.js +9 -0
  56. package/cjs/components/marketTag/marketTag.css +14 -0
  57. package/cjs/components/marketTag/marketTag.d.ts +11 -0
  58. package/cjs/components/marketTag/marketTag.js +27 -0
  59. package/cjs/components/number-keyboard/index.d.ts +4 -0
  60. package/cjs/components/number-keyboard/index.js +9 -0
  61. package/cjs/components/number-keyboard/number-keyboard.css +77 -0
  62. package/cjs/components/number-keyboard/number-keyboard.d.ts +13 -0
  63. package/cjs/components/number-keyboard/number-keyboard.js +93 -0
  64. package/cjs/components/pdfLink/index.d.ts +3 -0
  65. package/cjs/components/pdfLink/index.js +10 -0
  66. package/cjs/components/pdfLink/pdfLink.css +11 -0
  67. package/cjs/components/pdfLink/pdfLink.d.ts +8 -0
  68. package/cjs/components/pdfLink/pdfLink.js +102 -0
  69. package/cjs/components/protocol/index.d.ts +3 -0
  70. package/cjs/components/protocol/index.js +10 -0
  71. package/cjs/components/protocol/protocol.css +46 -0
  72. package/cjs/components/protocol/protocol.d.ts +15 -0
  73. package/cjs/components/protocol/protocol.js +120 -0
  74. package/cjs/components/radio/group-context.d.ts +8 -0
  75. package/cjs/components/radio/group-context.js +8 -0
  76. package/cjs/components/radio/group.d.ts +10 -0
  77. package/cjs/components/radio/group.js +43 -0
  78. package/cjs/components/radio/index.d.ts +8 -0
  79. package/cjs/components/radio/index.js +13 -0
  80. package/cjs/components/radio/radio.css +92 -0
  81. package/cjs/components/radio/radio.d.ts +19 -0
  82. package/cjs/components/radio/radio.js +92 -0
  83. package/cjs/components/search/index.d.ts +3 -0
  84. package/cjs/components/search/index.js +10 -0
  85. package/cjs/components/search/search.css +53 -0
  86. package/cjs/components/search/search.d.ts +15 -0
  87. package/cjs/components/search/search.js +110 -0
  88. package/cjs/components/stock-count-keyboard/index.d.ts +4 -0
  89. package/cjs/components/stock-count-keyboard/index.js +9 -0
  90. package/cjs/components/stock-count-keyboard/stock-count-keyboard.css +74 -0
  91. package/cjs/components/stock-count-keyboard/stock-count-keyboard.d.ts +9 -0
  92. package/cjs/components/stock-count-keyboard/stock-count-keyboard.js +82 -0
  93. package/cjs/components/stock-keyboard/index.d.ts +4 -0
  94. package/cjs/components/stock-keyboard/index.js +9 -0
  95. package/cjs/components/stock-keyboard/stock-keyboard.css +111 -0
  96. package/cjs/components/stock-keyboard/stock-keyboard.d.ts +12 -0
  97. package/cjs/components/stock-keyboard/stock-keyboard.js +107 -0
  98. package/cjs/components/switch/index.d.ts +4 -0
  99. package/cjs/components/switch/index.js +10 -0
  100. package/cjs/components/switch/switch.css +104 -0
  101. package/cjs/components/switch/switch.d.ts +16 -0
  102. package/cjs/components/switch/switch.js +213 -0
  103. package/cjs/components/toastLoading/index.d.ts +4 -0
  104. package/cjs/components/toastLoading/index.js +9 -0
  105. package/cjs/components/toastLoading/toastLoading.css +27 -0
  106. package/cjs/components/toastLoading/toastLoading.d.ts +7 -0
  107. package/cjs/components/toastLoading/toastLoading.js +35 -0
  108. package/cjs/global/global.css +289 -0
  109. package/cjs/global/index.d.ts +1 -0
  110. package/cjs/global/index.js +11 -0
  111. package/cjs/global/theme-dark.css +18 -0
  112. package/cjs/global/theme-default.css +48 -0
  113. package/cjs/index.d.ts +18 -0
  114. package/cjs/index.js +149 -0
  115. package/cjs/utils/attach-properties-to-component.d.ts +1 -0
  116. package/cjs/utils/attach-properties-to-component.js +15 -0
  117. package/cjs/utils/bound.d.ts +1 -0
  118. package/cjs/utils/bound.js +16 -0
  119. package/cjs/utils/can-use-dom.d.ts +1 -0
  120. package/cjs/utils/can-use-dom.js +7 -0
  121. package/cjs/utils/convert-px.d.ts +1 -0
  122. package/cjs/utils/convert-px.js +33 -0
  123. package/cjs/utils/create-icon-component.d.ts +2 -0
  124. package/cjs/utils/create-icon-component.js +12 -0
  125. package/cjs/utils/dev-log.d.ts +3 -0
  126. package/cjs/utils/dev-log.js +45 -0
  127. package/cjs/utils/generate-int-array.d.ts +1 -0
  128. package/cjs/utils/generate-int-array.js +13 -0
  129. package/cjs/utils/get-container.d.ts +2 -0
  130. package/cjs/utils/get-container.js +10 -0
  131. package/cjs/utils/get-scroll-parent.d.ts +3 -0
  132. package/cjs/utils/get-scroll-parent.js +30 -0
  133. package/cjs/utils/is-dev.d.ts +1 -0
  134. package/cjs/utils/is-dev.js +7 -0
  135. package/cjs/utils/is-node-with-content.d.ts +4 -0
  136. package/cjs/utils/is-node-with-content.js +9 -0
  137. package/cjs/utils/matrix.d.ts +10 -0
  138. package/cjs/utils/matrix.js +47 -0
  139. package/cjs/utils/measure-css-length.d.ts +1 -0
  140. package/cjs/utils/measure-css-length.js +29 -0
  141. package/cjs/utils/merge-locale.d.ts +1 -0
  142. package/cjs/utils/merge-locale.js +21 -0
  143. package/cjs/utils/native-props.d.ts +8 -0
  144. package/cjs/utils/native-props.js +38 -0
  145. package/cjs/utils/nearest.d.ts +1 -0
  146. package/cjs/utils/nearest.js +11 -0
  147. package/cjs/utils/noop.d.ts +1 -0
  148. package/cjs/utils/noop.js +8 -0
  149. package/cjs/utils/reduce-and-restore-motion.d.ts +4 -0
  150. package/cjs/utils/reduce-and-restore-motion.js +44 -0
  151. package/cjs/utils/render-imperatively.d.ts +13 -0
  152. package/cjs/utils/render-imperatively.js +207 -0
  153. package/cjs/utils/render-to-body.d.ts +2 -0
  154. package/cjs/utils/render-to-body.js +19 -0
  155. package/cjs/utils/render-to-container.d.ts +3 -0
  156. package/cjs/utils/render-to-container.js +16 -0
  157. package/cjs/utils/render.d.ts +9 -0
  158. package/cjs/utils/render.js +196 -0
  159. package/cjs/utils/replace-message.d.ts +1 -0
  160. package/cjs/utils/replace-message.js +13 -0
  161. package/cjs/utils/rubberband.d.ts +2 -0
  162. package/cjs/utils/rubberband.js +20 -0
  163. package/cjs/utils/should-render.d.ts +10 -0
  164. package/cjs/utils/should-render.js +20 -0
  165. package/cjs/utils/shuffle.d.ts +6 -0
  166. package/cjs/utils/shuffle.js +29 -0
  167. package/cjs/utils/sleep.d.ts +1 -0
  168. package/cjs/utils/sleep.js +12 -0
  169. package/cjs/utils/supports-passive.d.ts +1 -0
  170. package/cjs/utils/supports-passive.js +19 -0
  171. package/cjs/utils/to-css-length.d.ts +1 -0
  172. package/cjs/utils/to-css-length.js +9 -0
  173. package/cjs/utils/traverse-react-node.d.ts +2 -0
  174. package/cjs/utils/traverse-react-node.js +23 -0
  175. package/cjs/utils/tree.d.ts +1 -0
  176. package/cjs/utils/tree.js +24 -0
  177. package/cjs/utils/undefined-fallback.d.ts +3 -0
  178. package/cjs/utils/undefined-fallback.js +17 -0
  179. package/cjs/utils/use-drag-and-pinch.d.ts +1 -0
  180. package/cjs/utils/use-drag-and-pinch.js +8 -0
  181. package/cjs/utils/use-initialized.d.ts +1 -0
  182. package/cjs/utils/use-initialized.js +14 -0
  183. package/cjs/utils/use-inner-visible.d.ts +1 -0
  184. package/cjs/utils/use-inner-visible.js +17 -0
  185. package/cjs/utils/use-isomorphic-update-layout-effect.d.ts +2 -0
  186. package/cjs/utils/use-isomorphic-update-layout-effect.js +8 -0
  187. package/cjs/utils/use-lock-scroll.d.ts +2 -0
  188. package/cjs/utils/use-lock-scroll.js +84 -0
  189. package/cjs/utils/use-mutation-effect.d.ts +2 -0
  190. package/cjs/utils/use-mutation-effect.js +21 -0
  191. package/cjs/utils/use-props-value.d.ts +8 -0
  192. package/cjs/utils/use-props-value.js +30 -0
  193. package/cjs/utils/use-ref-state.d.ts +2 -0
  194. package/cjs/utils/use-ref-state.js +17 -0
  195. package/cjs/utils/use-resize-effect.d.ts +2 -0
  196. package/cjs/utils/use-resize-effect.js +29 -0
  197. package/cjs/utils/use-tab-list-scroll.d.ts +5 -0
  198. package/cjs/utils/use-tab-list-scroll.js +67 -0
  199. package/cjs/utils/use-touch.d.ts +17 -0
  200. package/cjs/utils/use-touch.js +69 -0
  201. package/cjs/utils/validate.d.ts +8 -0
  202. package/cjs/utils/validate.js +39 -0
  203. package/cjs/utils/with-cache.d.ts +1 -0
  204. package/cjs/utils/with-cache.js +15 -0
  205. package/cjs/utils/with-default-props.d.ts +2 -0
  206. package/cjs/utils/with-default-props.js +32 -0
  207. package/cjs/utils/with-func-props.d.ts +5 -0
  208. package/cjs/utils/with-func-props.js +38 -0
  209. package/cjs/utils/with-stop-propagation.d.ts +4 -0
  210. package/cjs/utils/with-stop-propagation.js +37 -0
  211. package/es/components/alphabet-keyboard/alphabet-keyboard.css +143 -0
  212. package/es/components/alphabet-keyboard/alphabet-keyboard.d.ts +11 -0
  213. package/es/components/alphabet-keyboard/alphabet-keyboard.js +132 -0
  214. package/es/components/alphabet-keyboard/index.d.ts +4 -0
  215. package/es/components/alphabet-keyboard/index.js +3 -0
  216. package/es/components/button/button.css +152 -0
  217. package/es/components/button/button.d.ts +40 -0
  218. package/es/components/button/button.js +206 -0
  219. package/es/components/button/index.d.ts +4 -0
  220. package/es/components/button/index.js +3 -0
  221. package/es/components/card/card.css +37 -0
  222. package/es/components/card/card.d.ts +17 -0
  223. package/es/components/card/card.js +33 -0
  224. package/es/components/card/index.d.ts +4 -0
  225. package/es/components/card/index.js +3 -0
  226. package/es/components/checkbox/checkbox.css +92 -0
  227. package/es/components/checkbox/checkbox.d.ts +44 -0
  228. package/es/components/checkbox/checkbox.js +97 -0
  229. package/es/components/checkbox/group-context.d.ts +8 -0
  230. package/es/components/checkbox/group-context.js +2 -0
  231. package/es/components/checkbox/group.d.ts +10 -0
  232. package/es/components/checkbox/group.js +40 -0
  233. package/es/components/checkbox/index.d.ts +26 -0
  234. package/es/components/checkbox/index.js +7 -0
  235. package/es/components/checkbox/native-input.d.ts +10 -0
  236. package/es/components/checkbox/native-input.js +29 -0
  237. package/es/components/grid/grid.css +15 -0
  238. package/es/components/grid/grid.d.ts +15 -0
  239. package/es/components/grid/grid.js +36 -0
  240. package/es/components/grid/index.d.ts +7 -0
  241. package/es/components/grid/index.js +6 -0
  242. package/es/components/icons/check-icon.d.ts +4 -0
  243. package/es/components/icons/check-icon.js +22 -0
  244. package/es/components/icons/check-only-icon.d.ts +4 -0
  245. package/es/components/icons/check-only-icon.js +13 -0
  246. package/es/components/icons/clear-icon.d.ts +4 -0
  247. package/es/components/icons/clear-icon.js +33 -0
  248. package/es/components/icons/indeterminate-icon.d.ts +4 -0
  249. package/es/components/icons/indeterminate-icon.js +21 -0
  250. package/es/components/icons/index.d.ts +8 -0
  251. package/es/components/icons/index.js +8 -0
  252. package/es/components/icons/loading-icon.d.ts +4 -0
  253. package/es/components/icons/loading-icon.js +81 -0
  254. package/es/components/icons/search-icon.d.ts +4 -0
  255. package/es/components/icons/search-icon.js +35 -0
  256. package/es/components/icons/spin-icon.d.ts +4 -0
  257. package/es/components/icons/spin-icon.js +24 -0
  258. package/es/components/icons/uncheck-icon.d.ts +4 -0
  259. package/es/components/icons/uncheck-icon.js +18 -0
  260. package/es/components/imageViewer/imageViewer.d.ts +4 -0
  261. package/es/components/imageViewer/imageViewer.js +28 -0
  262. package/es/components/imageViewer/index.d.ts +7 -0
  263. package/es/components/imageViewer/index.js +2 -0
  264. package/es/components/marketTag/index.d.ts +4 -0
  265. package/es/components/marketTag/index.js +3 -0
  266. package/es/components/marketTag/marketTag.css +14 -0
  267. package/es/components/marketTag/marketTag.d.ts +11 -0
  268. package/es/components/marketTag/marketTag.js +19 -0
  269. package/es/components/number-keyboard/index.d.ts +4 -0
  270. package/es/components/number-keyboard/index.js +3 -0
  271. package/es/components/number-keyboard/number-keyboard.css +77 -0
  272. package/es/components/number-keyboard/number-keyboard.d.ts +13 -0
  273. package/es/components/number-keyboard/number-keyboard.js +85 -0
  274. package/es/components/pdfLink/index.d.ts +3 -0
  275. package/es/components/pdfLink/index.js +3 -0
  276. package/es/components/pdfLink/pdfLink.css +11 -0
  277. package/es/components/pdfLink/pdfLink.d.ts +8 -0
  278. package/es/components/pdfLink/pdfLink.js +94 -0
  279. package/es/components/protocol/index.d.ts +3 -0
  280. package/es/components/protocol/index.js +3 -0
  281. package/es/components/protocol/protocol.css +46 -0
  282. package/es/components/protocol/protocol.d.ts +15 -0
  283. package/es/components/protocol/protocol.js +112 -0
  284. package/es/components/radio/group-context.d.ts +8 -0
  285. package/es/components/radio/group-context.js +2 -0
  286. package/es/components/radio/group.d.ts +10 -0
  287. package/es/components/radio/group.js +35 -0
  288. package/es/components/radio/index.d.ts +8 -0
  289. package/es/components/radio/index.js +7 -0
  290. package/es/components/radio/radio.css +92 -0
  291. package/es/components/radio/radio.d.ts +19 -0
  292. package/es/components/radio/radio.js +82 -0
  293. package/es/components/search/index.d.ts +3 -0
  294. package/es/components/search/index.js +3 -0
  295. package/es/components/search/search.css +53 -0
  296. package/es/components/search/search.d.ts +15 -0
  297. package/es/components/search/search.js +102 -0
  298. package/es/components/stock-count-keyboard/index.d.ts +4 -0
  299. package/es/components/stock-count-keyboard/index.js +3 -0
  300. package/es/components/stock-count-keyboard/stock-count-keyboard.css +74 -0
  301. package/es/components/stock-count-keyboard/stock-count-keyboard.d.ts +9 -0
  302. package/es/components/stock-count-keyboard/stock-count-keyboard.js +74 -0
  303. package/es/components/stock-keyboard/index.d.ts +4 -0
  304. package/es/components/stock-keyboard/index.js +3 -0
  305. package/es/components/stock-keyboard/stock-keyboard.css +111 -0
  306. package/es/components/stock-keyboard/stock-keyboard.d.ts +12 -0
  307. package/es/components/stock-keyboard/stock-keyboard.js +99 -0
  308. package/es/components/switch/index.d.ts +4 -0
  309. package/es/components/switch/index.js +3 -0
  310. package/es/components/switch/switch.css +104 -0
  311. package/es/components/switch/switch.d.ts +16 -0
  312. package/es/components/switch/switch.js +204 -0
  313. package/es/components/toastLoading/index.d.ts +4 -0
  314. package/es/components/toastLoading/index.js +3 -0
  315. package/es/components/toastLoading/toastLoading.css +27 -0
  316. package/es/components/toastLoading/toastLoading.d.ts +7 -0
  317. package/es/components/toastLoading/toastLoading.js +27 -0
  318. package/es/global/global.css +289 -0
  319. package/es/global/index.d.ts +1 -0
  320. package/es/global/index.js +9 -0
  321. package/es/global/theme-dark.css +18 -0
  322. package/es/global/theme-default.css +48 -0
  323. package/es/index.d.ts +18 -0
  324. package/es/index.js +18 -0
  325. package/es/utils/attach-properties-to-component.d.ts +1 -0
  326. package/es/utils/attach-properties-to-component.js +9 -0
  327. package/es/utils/bound.d.ts +1 -0
  328. package/es/utils/bound.js +10 -0
  329. package/es/utils/can-use-dom.d.ts +1 -0
  330. package/es/utils/can-use-dom.js +1 -0
  331. package/es/utils/convert-px.d.ts +1 -0
  332. package/es/utils/convert-px.js +27 -0
  333. package/es/utils/create-icon-component.d.ts +2 -0
  334. package/es/utils/create-icon-component.js +6 -0
  335. package/es/utils/dev-log.d.ts +3 -0
  336. package/es/utils/dev-log.js +37 -0
  337. package/es/utils/generate-int-array.d.ts +1 -0
  338. package/es/utils/generate-int-array.js +7 -0
  339. package/es/utils/get-container.d.ts +2 -0
  340. package/es/utils/get-container.js +4 -0
  341. package/es/utils/get-scroll-parent.d.ts +3 -0
  342. package/es/utils/get-scroll-parent.js +24 -0
  343. package/es/utils/is-dev.d.ts +1 -0
  344. package/es/utils/is-dev.js +1 -0
  345. package/es/utils/is-node-with-content.d.ts +4 -0
  346. package/es/utils/is-node-with-content.js +3 -0
  347. package/es/utils/matrix.d.ts +10 -0
  348. package/es/utils/matrix.js +32 -0
  349. package/es/utils/measure-css-length.d.ts +1 -0
  350. package/es/utils/measure-css-length.js +23 -0
  351. package/es/utils/merge-locale.d.ts +1 -0
  352. package/es/utils/merge-locale.js +15 -0
  353. package/es/utils/native-props.d.ts +8 -0
  354. package/es/utils/native-props.js +31 -0
  355. package/es/utils/nearest.d.ts +1 -0
  356. package/es/utils/nearest.js +5 -0
  357. package/es/utils/noop.d.ts +1 -0
  358. package/es/utils/noop.js +1 -0
  359. package/es/utils/reduce-and-restore-motion.d.ts +4 -0
  360. package/es/utils/reduce-and-restore-motion.js +35 -0
  361. package/es/utils/render-imperatively.d.ts +13 -0
  362. package/es/utils/render-imperatively.js +199 -0
  363. package/es/utils/render-to-body.d.ts +2 -0
  364. package/es/utils/render-to-body.js +13 -0
  365. package/es/utils/render-to-container.d.ts +3 -0
  366. package/es/utils/render-to-container.js +10 -0
  367. package/es/utils/render.d.ts +9 -0
  368. package/es/utils/render.js +187 -0
  369. package/es/utils/replace-message.d.ts +1 -0
  370. package/es/utils/replace-message.js +7 -0
  371. package/es/utils/rubberband.d.ts +2 -0
  372. package/es/utils/rubberband.js +13 -0
  373. package/es/utils/should-render.d.ts +10 -0
  374. package/es/utils/should-render.js +12 -0
  375. package/es/utils/shuffle.d.ts +6 -0
  376. package/es/utils/shuffle.js +23 -0
  377. package/es/utils/sleep.d.ts +1 -0
  378. package/es/utils/sleep.js +5 -0
  379. package/es/utils/supports-passive.d.ts +1 -0
  380. package/es/utils/supports-passive.js +13 -0
  381. package/es/utils/to-css-length.d.ts +1 -0
  382. package/es/utils/to-css-length.js +3 -0
  383. package/es/utils/traverse-react-node.d.ts +2 -0
  384. package/es/utils/traverse-react-node.js +16 -0
  385. package/es/utils/tree.d.ts +1 -0
  386. package/es/utils/tree.js +18 -0
  387. package/es/utils/undefined-fallback.d.ts +3 -0
  388. package/es/utils/undefined-fallback.js +11 -0
  389. package/es/utils/use-drag-and-pinch.d.ts +1 -0
  390. package/es/utils/use-drag-and-pinch.js +2 -0
  391. package/es/utils/use-initialized.d.ts +1 -0
  392. package/es/utils/use-initialized.js +8 -0
  393. package/es/utils/use-inner-visible.d.ts +1 -0
  394. package/es/utils/use-inner-visible.js +11 -0
  395. package/es/utils/use-isomorphic-update-layout-effect.d.ts +2 -0
  396. package/es/utils/use-isomorphic-update-layout-effect.js +2 -0
  397. package/es/utils/use-lock-scroll.d.ts +2 -0
  398. package/es/utils/use-lock-scroll.js +78 -0
  399. package/es/utils/use-mutation-effect.d.ts +2 -0
  400. package/es/utils/use-mutation-effect.js +15 -0
  401. package/es/utils/use-props-value.d.ts +8 -0
  402. package/es/utils/use-props-value.js +24 -0
  403. package/es/utils/use-ref-state.d.ts +2 -0
  404. package/es/utils/use-ref-state.js +11 -0
  405. package/es/utils/use-resize-effect.d.ts +2 -0
  406. package/es/utils/use-resize-effect.js +23 -0
  407. package/es/utils/use-tab-list-scroll.d.ts +5 -0
  408. package/es/utils/use-tab-list-scroll.js +60 -0
  409. package/es/utils/use-touch.d.ts +17 -0
  410. package/es/utils/use-touch.js +63 -0
  411. package/es/utils/validate.d.ts +8 -0
  412. package/es/utils/validate.js +26 -0
  413. package/es/utils/with-cache.d.ts +1 -0
  414. package/es/utils/with-cache.js +9 -0
  415. package/es/utils/with-default-props.d.ts +2 -0
  416. package/es/utils/with-default-props.js +25 -0
  417. package/es/utils/with-func-props.d.ts +5 -0
  418. package/es/utils/with-func-props.js +32 -0
  419. package/es/utils/with-stop-propagation.d.ts +4 -0
  420. package/es/utils/with-stop-propagation.js +30 -0
  421. package/package.json +48 -20
  422. package/__vendor/__vendor.js +0 -1
  423. package/handRead/handRead.d.ts +0 -6
  424. package/handRead/handRead.js +0 -302
  425. package/handRead/index.d.ts +0 -25
  426. package/handRead/index.js +0 -11
  427. package/imageViewer/imageViewer.d.ts +0 -3
  428. package/imageViewer/imageViewer.js +0 -28
  429. package/imageViewer/index.js +0 -8
  430. package/index.d.ts +0 -6
  431. package/index.js +0 -14
  432. package/keyboard/index.d.ts +0 -13
  433. package/keyboard/index.js +0 -7
  434. package/keyboard/keyboard.d.ts +0 -2
  435. package/keyboard/keyboard.js +0 -87
  436. package/style.css +0 -1
  437. package/utils/isEqual.d.ts +0 -5
  438. /package/{imageViewer → cjs/components/imageViewer}/index.d.ts +0 -0
@@ -0,0 +1,187 @@
1
+ var __assign = this && this.__assign || function () {
2
+ __assign = Object.assign || function (t) {
3
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
4
+ s = arguments[i];
5
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p)) t[p] = s[p];
6
+ }
7
+ return t;
8
+ };
9
+ return __assign.apply(this, arguments);
10
+ };
11
+ var __awaiter = this && this.__awaiter || function (thisArg, _arguments, P, generator) {
12
+ function adopt(value) {
13
+ return value instanceof P ? value : new P(function (resolve) {
14
+ resolve(value);
15
+ });
16
+ }
17
+ return new (P || (P = Promise))(function (resolve, reject) {
18
+ function fulfilled(value) {
19
+ try {
20
+ step(generator.next(value));
21
+ } catch (e) {
22
+ reject(e);
23
+ }
24
+ }
25
+ function rejected(value) {
26
+ try {
27
+ step(generator["throw"](value));
28
+ } catch (e) {
29
+ reject(e);
30
+ }
31
+ }
32
+ function step(result) {
33
+ result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected);
34
+ }
35
+ step((generator = generator.apply(thisArg, _arguments || [])).next());
36
+ });
37
+ };
38
+ var __generator = this && this.__generator || function (thisArg, body) {
39
+ var _ = {
40
+ label: 0,
41
+ sent: function () {
42
+ if (t[0] & 1) throw t[1];
43
+ return t[1];
44
+ },
45
+ trys: [],
46
+ ops: []
47
+ },
48
+ f,
49
+ y,
50
+ t,
51
+ g;
52
+ return g = {
53
+ next: verb(0),
54
+ "throw": verb(1),
55
+ "return": verb(2)
56
+ }, typeof Symbol === "function" && (g[Symbol.iterator] = function () {
57
+ return this;
58
+ }), g;
59
+ function verb(n) {
60
+ return function (v) {
61
+ return step([n, v]);
62
+ };
63
+ }
64
+ function step(op) {
65
+ if (f) throw new TypeError("Generator is already executing.");
66
+ while (g && (g = 0, op[0] && (_ = 0)), _) try {
67
+ if (f = 1, y && (t = op[0] & 2 ? y["return"] : op[0] ? y["throw"] || ((t = y["return"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;
68
+ if (y = 0, t) op = [op[0] & 2, t.value];
69
+ switch (op[0]) {
70
+ case 0:
71
+ case 1:
72
+ t = op;
73
+ break;
74
+ case 4:
75
+ _.label++;
76
+ return {
77
+ value: op[1],
78
+ done: false
79
+ };
80
+ case 5:
81
+ _.label++;
82
+ y = op[1];
83
+ op = [0];
84
+ continue;
85
+ case 7:
86
+ op = _.ops.pop();
87
+ _.trys.pop();
88
+ continue;
89
+ default:
90
+ if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) {
91
+ _ = 0;
92
+ continue;
93
+ }
94
+ if (op[0] === 3 && (!t || op[1] > t[0] && op[1] < t[3])) {
95
+ _.label = op[1];
96
+ break;
97
+ }
98
+ if (op[0] === 6 && _.label < t[1]) {
99
+ _.label = t[1];
100
+ t = op;
101
+ break;
102
+ }
103
+ if (t && _.label < t[2]) {
104
+ _.label = t[2];
105
+ _.ops.push(op);
106
+ break;
107
+ }
108
+ if (t[2]) _.ops.pop();
109
+ _.trys.pop();
110
+ continue;
111
+ }
112
+ op = body.call(thisArg, _);
113
+ } catch (e) {
114
+ op = [6, e];
115
+ y = 0;
116
+ } finally {
117
+ f = t = 0;
118
+ }
119
+ if (op[0] & 5) throw op[1];
120
+ return {
121
+ value: op[0] ? op[1] : void 0,
122
+ done: true
123
+ };
124
+ }
125
+ };
126
+ import * as ReactDOM from 'react-dom';
127
+ // Let compiler not to search module usage
128
+ var fullClone = __assign({}, ReactDOM);
129
+ var version = fullClone.version,
130
+ reactRender = fullClone.render,
131
+ unmountComponentAtNode = fullClone.unmountComponentAtNode;
132
+ var createRoot;
133
+ try {
134
+ var mainVersion = Number((version || '').split('.')[0]);
135
+ if (mainVersion >= 18 && fullClone.createRoot) {
136
+ // eslint-disable-next-line @typescript-eslint/no-var-requires
137
+ createRoot = fullClone.createRoot;
138
+ }
139
+ } catch (e) {
140
+ // Do nothing;
141
+ }
142
+ function toggleWarning(skip) {
143
+ var __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED = fullClone.__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED;
144
+ if (__SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED && typeof __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED === 'object') {
145
+ __SECRET_INTERNALS_DO_NOT_USE_OR_YOU_WILL_BE_FIRED.usingClientEntryPoint = skip;
146
+ }
147
+ }
148
+ var MARK = '__antd_mobile_root__';
149
+ function legacyRender(node, container) {
150
+ reactRender(node, container);
151
+ }
152
+ function concurrentRender(node, container) {
153
+ toggleWarning(true);
154
+ var root = container[MARK] || createRoot(container);
155
+ toggleWarning(false);
156
+ root.render(node);
157
+ container[MARK] = root;
158
+ }
159
+ export function render(node, container) {
160
+ if (createRoot) {
161
+ concurrentRender(node, container);
162
+ return;
163
+ }
164
+ legacyRender(node, container);
165
+ }
166
+ // ========================== Unmount =========================
167
+ function legacyUnmount(container) {
168
+ return unmountComponentAtNode(container);
169
+ }
170
+ function concurrentUnmount(container) {
171
+ return __awaiter(this, void 0, void 0, function () {
172
+ return __generator(this, function (_a) {
173
+ // Delay to unmount to avoid React 18 sync warning
174
+ return [2 /*return*/, Promise.resolve().then(function () {
175
+ var _a;
176
+ (_a = container[MARK]) === null || _a === void 0 ? void 0 : _a.unmount();
177
+ delete container[MARK];
178
+ })];
179
+ });
180
+ });
181
+ }
182
+ export function unmount(container) {
183
+ if (createRoot) {
184
+ return concurrentUnmount(container);
185
+ }
186
+ return legacyUnmount(container);
187
+ }
@@ -0,0 +1 @@
1
+ export declare function replaceMessage(template: string, kv: Record<string, string>): string;
@@ -0,0 +1,7 @@
1
+ // 移植自 field-form https://github.com/react-component/field-form/blob/master/src/utils/validateUtil.ts#L21
2
+ export function replaceMessage(template, kv) {
3
+ return template.replace(/\$\{\w+\}/g, function (str) {
4
+ var key = str.slice(2, -1);
5
+ return kv[key];
6
+ });
7
+ }
@@ -0,0 +1,2 @@
1
+ export declare function rubberband(distance: number, dimension: number, constant: number): number;
2
+ export declare function rubberbandIfOutOfBounds(position: number, min: number, max: number, dimension: number, constant?: number): number;
@@ -0,0 +1,13 @@
1
+ import { bound } from './bound';
2
+ export function rubberband(distance, dimension, constant) {
3
+ return distance * dimension * constant / (dimension + constant * distance);
4
+ }
5
+ export function rubberbandIfOutOfBounds(position, min, max, dimension, constant) {
6
+ if (constant === void 0) {
7
+ constant = 0.15;
8
+ }
9
+ if (constant === 0) return bound(position, min, max);
10
+ if (position < min) return -rubberband(min - position, dimension, constant) + min;
11
+ if (position > max) return +rubberband(position - max, dimension, constant) + max;
12
+ return position;
13
+ }
@@ -0,0 +1,10 @@
1
+ import type { FC, ReactElement } from 'react';
2
+ interface Props {
3
+ active: boolean;
4
+ forceRender?: boolean;
5
+ destroyOnClose?: boolean;
6
+ children: ReactElement;
7
+ }
8
+ export declare const ShouldRender: FC<Props>;
9
+ export declare function useShouldRender(active: boolean, forceRender?: boolean, destroyOnClose?: boolean): boolean;
10
+ export {};
@@ -0,0 +1,12 @@
1
+ import { useInitialized } from './use-initialized';
2
+ export var ShouldRender = function (props) {
3
+ var shouldRender = useShouldRender(props.active, props.forceRender, props.destroyOnClose);
4
+ return shouldRender ? props.children : null;
5
+ };
6
+ export function useShouldRender(active, forceRender, destroyOnClose) {
7
+ var initialized = useInitialized(active);
8
+ if (forceRender) return true;
9
+ if (active) return true;
10
+ if (!initialized) return false;
11
+ return !destroyOnClose;
12
+ }
@@ -0,0 +1,6 @@
1
+ /**
2
+ * 数组打乱
3
+ * @param array 任意数组
4
+ * @returns any[] 打乱后的数组
5
+ */
6
+ export declare function shuffle(array: any[]): any[];
@@ -0,0 +1,23 @@
1
+ /**
2
+ * 数组打乱
3
+ * @param array 任意数组
4
+ * @returns any[] 打乱后的数组
5
+ */
6
+ var __spreadArray = this && this.__spreadArray || function (to, from, pack) {
7
+ if (pack || arguments.length === 2) for (var i = 0, l = from.length, ar; i < l; i++) {
8
+ if (ar || !(i in from)) {
9
+ if (!ar) ar = Array.prototype.slice.call(from, 0, i);
10
+ ar[i] = from[i];
11
+ }
12
+ }
13
+ return to.concat(ar || Array.prototype.slice.call(from));
14
+ };
15
+ export function shuffle(array) {
16
+ var _a;
17
+ var result = __spreadArray([], array, true);
18
+ for (var i = result.length; i > 0; i--) {
19
+ var j = Math.floor(Math.random() * i);
20
+ _a = [result[j], result[i - 1]], result[i - 1] = _a[0], result[j] = _a[1];
21
+ }
22
+ return result;
23
+ }
@@ -0,0 +1 @@
1
+ export declare const sleep: (time: number) => Promise<unknown>;
@@ -0,0 +1,5 @@
1
+ export var sleep = function (time) {
2
+ return new Promise(function (resolve) {
3
+ return setTimeout(resolve, time);
4
+ });
5
+ };
@@ -0,0 +1 @@
1
+ export declare let supportsPassive: boolean;
@@ -0,0 +1,13 @@
1
+ import { canUseDom } from './can-use-dom';
2
+ export var supportsPassive = false;
3
+ if (canUseDom) {
4
+ try {
5
+ var opts = {};
6
+ Object.defineProperty(opts, 'passive', {
7
+ get: function () {
8
+ supportsPassive = true;
9
+ }
10
+ });
11
+ window.addEventListener('test-passive', null, opts);
12
+ } catch (e) {}
13
+ }
@@ -0,0 +1 @@
1
+ export declare function toCSSLength(val: string | number): string;
@@ -0,0 +1,3 @@
1
+ export function toCSSLength(val) {
2
+ return typeof val === 'number' ? "".concat(val, "px") : val;
3
+ }
@@ -0,0 +1,2 @@
1
+ import type { ReactNode } from 'react';
2
+ export declare function traverseReactNode(children: ReactNode, fn: (child: ReactNode, index: number) => void): void;
@@ -0,0 +1,16 @@
1
+ import React from 'react';
2
+ import { isFragment } from 'react-is';
3
+ export function traverseReactNode(children, fn) {
4
+ var i = 0;
5
+ function handle(target) {
6
+ React.Children.forEach(target, function (child) {
7
+ if (!isFragment(child)) {
8
+ fn(child, i);
9
+ i += 1;
10
+ } else {
11
+ handle(child.props.children);
12
+ }
13
+ });
14
+ }
15
+ handle(children);
16
+ }
@@ -0,0 +1 @@
1
+ export declare function getTreeDeep(treeData: any[], childrenName?: string): number;
@@ -0,0 +1,18 @@
1
+ // 找到树的深度
2
+ export function getTreeDeep(treeData, childrenName) {
3
+ if (childrenName === void 0) {
4
+ childrenName = 'children';
5
+ }
6
+ var walker = function (tree) {
7
+ var deep = 0;
8
+ tree.forEach(function (item) {
9
+ if (item[childrenName]) {
10
+ deep = Math.max(deep, walker(item[childrenName]) + 1);
11
+ } else {
12
+ deep = Math.max(deep, 1);
13
+ }
14
+ });
15
+ return deep;
16
+ };
17
+ return walker(treeData);
18
+ }
@@ -0,0 +1,3 @@
1
+ export declare function undefinedFallback<T>(a: T | undefined, b: T): T;
2
+ export declare function undefinedFallback<T>(a: T | undefined, b: T | undefined, c: T): T;
3
+ export declare function undefinedFallback<T>(a: T | undefined, b: T | undefined, c: T | undefined, d: T): T;
@@ -0,0 +1,11 @@
1
+ export function undefinedFallback() {
2
+ var items = [];
3
+ for (var _i = 0; _i < arguments.length; _i++) {
4
+ items[_i] = arguments[_i];
5
+ }
6
+ var i;
7
+ for (i = 0; i < items.length; i++) {
8
+ if (items[i] !== undefined) break;
9
+ }
10
+ return items[i];
11
+ }
@@ -0,0 +1 @@
1
+ export declare const useDragAndPinch: <Config extends import("@use-gesture/react").UserGestureConfig = import("@use-gesture/react").UserGestureConfig>(_handlers: Partial<import("@use-gesture/react").NativeHandlers<import("@use-gesture/react").EventTypes> & import("@use-gesture/react").UserHandlers<import("@use-gesture/react").EventTypes>>, _config?: Config | undefined) => Config["target"] extends object ? void : (...args: any[]) => import("@use-gesture/react/dist/declarations/src/types").ReactDOMAttributes;
@@ -0,0 +1,2 @@
1
+ import { createUseGesture, dragAction, pinchAction } from '@use-gesture/react';
2
+ export var useDragAndPinch = createUseGesture([dragAction, pinchAction]);
@@ -0,0 +1 @@
1
+ export declare function useInitialized(check?: boolean): boolean;
@@ -0,0 +1,8 @@
1
+ import { useRef } from 'react';
2
+ export function useInitialized(check) {
3
+ var initializedRef = useRef(check);
4
+ if (check) {
5
+ initializedRef.current = true;
6
+ }
7
+ return !!initializedRef.current;
8
+ }
@@ -0,0 +1 @@
1
+ export declare function useInnerVisible(outerVisible: boolean): boolean;
@@ -0,0 +1,11 @@
1
+ import { useState } from 'react';
2
+ import { useIsomorphicLayoutEffect } from 'ahooks';
3
+ export function useInnerVisible(outerVisible) {
4
+ var _a = useState(outerVisible),
5
+ innerVisible = _a[0],
6
+ setInnerVisible = _a[1];
7
+ useIsomorphicLayoutEffect(function () {
8
+ setInnerVisible(outerVisible);
9
+ }, [outerVisible]);
10
+ return innerVisible;
11
+ }
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare const useIsomorphicUpdateLayoutEffect: typeof import("react").useEffect | typeof import("react").useLayoutEffect;
@@ -0,0 +1,2 @@
1
+ import { createUpdateEffect, useIsomorphicLayoutEffect } from 'ahooks';
2
+ export var useIsomorphicUpdateLayoutEffect = createUpdateEffect(useIsomorphicLayoutEffect);
@@ -0,0 +1,2 @@
1
+ import { RefObject } from 'react';
2
+ export declare function useLockScroll(rootRef: RefObject<HTMLElement>, shouldLock: boolean | 'strict'): void;
@@ -0,0 +1,78 @@
1
+ import { useTouch } from './use-touch';
2
+ import { useEffect } from 'react';
3
+ import { getScrollParent } from './get-scroll-parent';
4
+ import { supportsPassive } from './supports-passive';
5
+ var totalLockCount = 0;
6
+ var BODY_LOCK_CLASS = 'adm-overflow-hidden';
7
+ function getScrollableElement(el) {
8
+ var current = el === null || el === void 0 ? void 0 : el.parentElement;
9
+ while (current) {
10
+ if (current.clientHeight < current.scrollHeight) {
11
+ return current;
12
+ }
13
+ current = current.parentElement;
14
+ }
15
+ return null;
16
+ }
17
+ // 移植自vant:https://github.com/youzan/vant/blob/HEAD/src/composables/use-lock-scroll.ts
18
+ export function useLockScroll(rootRef, shouldLock) {
19
+ var touch = useTouch();
20
+ var onTouchMove = function (event) {
21
+ touch.move(event);
22
+ var direction = touch.deltaY.current > 0 ? '10' : '01';
23
+ var el = getScrollParent(event.target, rootRef.current);
24
+ if (!el) return;
25
+ // This has perf cost but we have to compatible with iOS 12
26
+ if (shouldLock === 'strict') {
27
+ var scrollableParent = getScrollableElement(event.target);
28
+ if (scrollableParent === document.body || scrollableParent === document.documentElement) {
29
+ event.preventDefault();
30
+ return;
31
+ }
32
+ }
33
+ var scrollHeight = el.scrollHeight,
34
+ offsetHeight = el.offsetHeight,
35
+ scrollTop = el.scrollTop;
36
+ var height = el.getBoundingClientRect().height;
37
+ var status = '11';
38
+ if (scrollTop === 0) {
39
+ status = offsetHeight >= scrollHeight ? '00' : '01';
40
+ } else if (scrollHeight <= Math.round(height + scrollTop)) {
41
+ status = '10';
42
+ }
43
+ if (status !== '11' && touch.isVertical() && !(parseInt(status, 2) & parseInt(direction, 2))) {
44
+ if (event.cancelable && supportsPassive) {
45
+ // https://github.com/ant-design/ant-design-mobile/issues/6282
46
+ event.preventDefault();
47
+ }
48
+ }
49
+ };
50
+ var lock = function () {
51
+ document.addEventListener('touchstart', touch.start);
52
+ document.addEventListener('touchmove', onTouchMove, supportsPassive ? {
53
+ passive: false
54
+ } : false);
55
+ if (!totalLockCount) {
56
+ document.body.classList.add(BODY_LOCK_CLASS);
57
+ }
58
+ totalLockCount++;
59
+ };
60
+ var unlock = function () {
61
+ if (totalLockCount) {
62
+ document.removeEventListener('touchstart', touch.start);
63
+ document.removeEventListener('touchmove', onTouchMove);
64
+ totalLockCount--;
65
+ if (!totalLockCount) {
66
+ document.body.classList.remove(BODY_LOCK_CLASS);
67
+ }
68
+ }
69
+ };
70
+ useEffect(function () {
71
+ if (shouldLock) {
72
+ lock();
73
+ return function () {
74
+ unlock();
75
+ };
76
+ }
77
+ }, [shouldLock]);
78
+ }
@@ -0,0 +1,2 @@
1
+ import { RefObject } from 'react';
2
+ export declare function useMutationEffect(effect: () => void, targetRef: RefObject<HTMLElement>, options: MutationObserverInit): void;
@@ -0,0 +1,15 @@
1
+ import { useEffect } from 'react';
2
+ import { useMemoizedFn } from 'ahooks';
3
+ export function useMutationEffect(effect, targetRef, options) {
4
+ var fn = useMemoizedFn(effect);
5
+ useEffect(function () {
6
+ var observer = new MutationObserver(function () {
7
+ fn();
8
+ });
9
+ if (!targetRef.current) return;
10
+ observer.observe(targetRef.current, options);
11
+ return function () {
12
+ observer.disconnect();
13
+ };
14
+ }, [targetRef]);
15
+ }
@@ -0,0 +1,8 @@
1
+ import { SetStateAction } from 'react';
2
+ type Options<T> = {
3
+ value?: T;
4
+ defaultValue: T;
5
+ onChange?: (v: T) => void;
6
+ };
7
+ export declare function usePropsValue<T>(options: Options<T>): readonly [T, (v: SetStateAction<T>, forceTrigger?: boolean) => void];
8
+ export {};
@@ -0,0 +1,24 @@
1
+ import { useRef } from 'react';
2
+ import { useMemoizedFn, useUpdate } from 'ahooks';
3
+ export function usePropsValue(options) {
4
+ var value = options.value,
5
+ defaultValue = options.defaultValue,
6
+ onChange = options.onChange;
7
+ var update = useUpdate();
8
+ var stateRef = useRef(value !== undefined ? value : defaultValue);
9
+ if (value !== undefined) {
10
+ stateRef.current = value;
11
+ }
12
+ var setState = useMemoizedFn(function (v, forceTrigger) {
13
+ if (forceTrigger === void 0) {
14
+ forceTrigger = false;
15
+ }
16
+ // `forceTrigger` means trigger `onChange` even if `v` is the same as `stateRef.current`
17
+ var nextValue = typeof v === 'function' ? v(stateRef.current) : v;
18
+ if (!forceTrigger && nextValue === stateRef.current) return;
19
+ stateRef.current = nextValue;
20
+ update();
21
+ return onChange === null || onChange === void 0 ? void 0 : onChange(nextValue);
22
+ });
23
+ return [stateRef.current, setState];
24
+ }
@@ -0,0 +1,2 @@
1
+ /// <reference types="react" />
2
+ export declare function useRefState<T>(initialState: T | (() => T)): readonly [T, import("react").Dispatch<import("react").SetStateAction<T>>, import("react").MutableRefObject<T>];
@@ -0,0 +1,11 @@
1
+ import { useEffect, useRef, useState } from 'react';
2
+ export function useRefState(initialState) {
3
+ var _a = useState(initialState),
4
+ state = _a[0],
5
+ setState = _a[1];
6
+ var ref = useRef(state);
7
+ useEffect(function () {
8
+ ref.current = state;
9
+ }, [state]);
10
+ return [state, setState, ref];
11
+ }
@@ -0,0 +1,2 @@
1
+ import { RefObject } from 'react';
2
+ export declare function useResizeEffect<T extends HTMLElement>(effect: (target: T) => void, targetRef: RefObject<T>): void;
@@ -0,0 +1,23 @@
1
+ import { useIsomorphicLayoutEffect, useMemoizedFn } from 'ahooks';
2
+ export function useResizeEffect(effect, targetRef) {
3
+ var fn = useMemoizedFn(effect);
4
+ useIsomorphicLayoutEffect(function () {
5
+ var target = targetRef.current;
6
+ if (!target) return;
7
+ if (window.ResizeObserver) {
8
+ var animationFrame_1;
9
+ var observer_1 = new ResizeObserver(function () {
10
+ animationFrame_1 = window.requestAnimationFrame(function () {
11
+ return fn(target);
12
+ });
13
+ });
14
+ observer_1.observe(target);
15
+ return function () {
16
+ window.cancelAnimationFrame(animationFrame_1);
17
+ observer_1.disconnect();
18
+ };
19
+ } else {
20
+ fn(target);
21
+ }
22
+ }, [targetRef]);
23
+ }
@@ -0,0 +1,5 @@
1
+ import { RefObject } from 'react';
2
+ export declare const useTabListScroll: (targetRef: RefObject<HTMLElement>, activeIndex: number | undefined) => {
3
+ scrollLeft: import("@react-spring/core").SpringValue<number>;
4
+ animate: (immediate?: boolean) => void;
5
+ };