@ebscn/ui 0.0.11 → 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,94 @@
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
+ import { Button } from '@ebscn/ui';
12
+ import { Popup } from 'antd-mobile';
13
+ import React, { useEffect, useRef, useState } from 'react';
14
+ var id = 'pdflink';
15
+ var PdfLink = function (props) {
16
+ var _a;
17
+ var pdfh5 = useRef(null);
18
+ var _b = useState(false),
19
+ visible = _b[0],
20
+ setVisible = _b[1];
21
+ var _c = useState(false),
22
+ loading = _c[0],
23
+ setLoading = _c[1];
24
+ var setHeightTimer = useRef(true);
25
+ var options = (_a = props.options) !== null && _a !== void 0 ? _a : {};
26
+ function showPdf() {
27
+ if (pdfh5.current) {
28
+ pdfh5.current.destroy();
29
+ }
30
+ setLoading(true);
31
+ import('pdfh5').then(function (Pdfh5) {
32
+ pdfh5.current = new Pdfh5.default("#".concat(id), __assign({
33
+ pdfurl: props.url,
34
+ pageNum: false,
35
+ zoomEnable: false,
36
+ maxZoom: 1.3
37
+ }, options));
38
+ pdfh5.current.on('complete', function () {
39
+ pdfh5.current.zoomEnable(true); // 允许缩放
40
+ setLoading(false);
41
+ });
42
+ pdfh5.current.on('zoom', function () {
43
+ if (setHeightTimer.current) {
44
+ clearTimeout(setHeightTimer.current);
45
+ setHeightTimer.current = setTimeout(function () {}, 16);
46
+ }
47
+ });
48
+ });
49
+ }
50
+ useEffect(function () {
51
+ if (visible) {
52
+ showPdf();
53
+ }
54
+ return function () {
55
+ if (pdfh5.current) {
56
+ pdfh5.current.destroy();
57
+ }
58
+ };
59
+ }, [visible]);
60
+ return React.createElement(React.Fragment, null, React.createElement("a", {
61
+ onClick: function () {
62
+ return setVisible(true);
63
+ },
64
+ className: "ebscn-pdf-link"
65
+ }, props.children), React.createElement(Popup, {
66
+ visible: visible,
67
+ position: "bottom",
68
+ onMaskClick: function () {
69
+ return setVisible(false);
70
+ },
71
+ bodyStyle: {
72
+ height: '90vh'
73
+ }
74
+ }, React.createElement("div", null, React.createElement(Button, {
75
+ style: {
76
+ fontSize: '14px'
77
+ },
78
+ size: "mini",
79
+ color: "#333",
80
+ fill: "outline",
81
+ onClick: function () {
82
+ return setVisible(false);
83
+ },
84
+ disabled: loading
85
+ }, '<')), React.createElement("div", null, React.createElement("div", {
86
+ style: {
87
+ visibility: loading ? 'visible' : 'hidden'
88
+ }
89
+ }, "Loading...."), visible && React.createElement("div", {
90
+ className: "ebscn-pdf-link-popup",
91
+ id: id
92
+ }))));
93
+ };
94
+ export default PdfLink;
@@ -0,0 +1,3 @@
1
+ import Protocol from './protocol';
2
+ import './protocol.less';
3
+ export default Protocol;
@@ -0,0 +1,3 @@
1
+ import Protocol from './protocol';
2
+ import "./protocol.css";
3
+ export default Protocol;
@@ -0,0 +1,46 @@
1
+ .ebscn-protocol {
2
+ overflow-y: auto;
3
+ margin: 10px 0;
4
+ }
5
+ .ebscn-protocol .ebscn-protocol-item {
6
+ display: flex;
7
+ margin-bottom: 10px;
8
+ }
9
+ .ebscn-protocol .ebscn-protocol-item:last-of-type {
10
+ margin-bottom: 0;
11
+ }
12
+ .ebscn-protocol .ebscn-protocol-item .ebscn-protocol-item-checkbox {
13
+ flex: 24px 0 0;
14
+ position: relative;
15
+ }
16
+ .ebscn-protocol .ebscn-protocol-item .ebscn-protocol-item-checkbox .ebscn-checkbox {
17
+ height: 18px;
18
+ }
19
+ .ebscn-protocol .ebscn-protocol-item .ebscn-protocol-item-checkbox .ebscn-checkbox::after {
20
+ position: absolute;
21
+ content: ' ';
22
+ width: 54px;
23
+ background-color: transparent;
24
+ top: 0;
25
+ bottom: 0;
26
+ left: -16px;
27
+ }
28
+ .ebscn-protocol .ebscn-protocol-item-text {
29
+ flex: 1;
30
+ color: var(--ebscn-color-text-secondary);
31
+ font-size: 12px;
32
+ line-height: 18px;
33
+ }
34
+ .ebscn-protocol.ebscn-protocol-scroll {
35
+ margin: 20px 0;
36
+ }
37
+ .ebscn-protocol-fixed-button {
38
+ position: fixed;
39
+ margin: 0 16px;
40
+ left: 0;
41
+ width: calc(100vw - 32px);
42
+ bottom: 20px;
43
+ }
44
+ .ebscn-protocol-top-button {
45
+ margin: 20px 0 ;
46
+ }
@@ -0,0 +1,15 @@
1
+ import type { FC, ReactNode } from 'react';
2
+ type Placement = 'top' | 'top-start' | 'top-end' | 'right' | 'right-start' | 'right-end' | 'bottom' | 'bottom-start' | 'bottom-end' | 'left' | 'left-start' | 'left-end';
3
+ interface Props {
4
+ children?: string | ReactNode[] | ReactNode;
5
+ buttonTop?: boolean;
6
+ scrollHeight?: string;
7
+ onConfirm?: () => void;
8
+ onAllCheck?: () => void;
9
+ hideButton?: boolean;
10
+ popoverContent?: string;
11
+ popoverPlacement?: Placement;
12
+ popoverTimeout?: number;
13
+ }
14
+ declare const Protocol: FC<Props>;
15
+ export default Protocol;
@@ -0,0 +1,112 @@
1
+ import { Checkbox, Button } from '@ebscn/ui';
2
+ import { Popover } from 'antd-mobile';
3
+ import React, { useEffect, useRef, useState } from 'react';
4
+ import { mergeProps } from '../../utils/with-default-props';
5
+ var defaultProps = {
6
+ children: [],
7
+ buttonTop: false,
8
+ // 确认按钮默认在协议区下面,为true时按钮放到协议上面
9
+ scrollHeight: '',
10
+ // 协议区最大高度
11
+ hideButton: false,
12
+ // 是否隐藏确认按钮
13
+ popoverContent: '请勾选同意',
14
+ popoverPlacement: 'top-start',
15
+ popoverTimeout: 3000
16
+ };
17
+ var Protocol = function (p) {
18
+ var _a = useState([]),
19
+ checked = _a[0],
20
+ setChecked = _a[1];
21
+ var _b = useState(true),
22
+ popoverVisible = _b[0],
23
+ setPopoverVisible = _b[1];
24
+ var timer = useRef(null);
25
+ var props = mergeProps(defaultProps, p);
26
+ var containerClass = props.scrollHeight ? 'ebscn-protocol ebscn-protocol-scroll' : 'ebscn-protocol';
27
+ // 支持字符串,reactNode和ReactNode[], 统一处理为ReactNode[]
28
+ var children = typeof props.children === 'string' || !Array.isArray(props.children) ? [React.createElement(React.Fragment, null, props.children)] : props.children;
29
+ function showPop() {
30
+ if (timer.current) {
31
+ clearTimeout(timer.current);
32
+ }
33
+ setPopoverVisible(true);
34
+ timer.current = setTimeout(function () {
35
+ // 3秒后隐藏popover
36
+ setPopoverVisible(false);
37
+ }, props.popoverTimeout);
38
+ }
39
+ function renderButton() {
40
+ if (props.hideButton) return;
41
+ var btnCls = props.buttonTop ? 'ebscn-protocol-top-button' : props.scrollHeight ? 'ebscn-protocol-fixed-button' : '';
42
+ var fullChecked = checked.length === children.length;
43
+ if (fullChecked && props.onAllCheck) {
44
+ // 全选后执行 onAllCheck
45
+ props.onAllCheck();
46
+ }
47
+ var btnClick = function () {
48
+ if (fullChecked) {
49
+ if (props.onConfirm) {
50
+ props.onConfirm();
51
+ }
52
+ } else {
53
+ showPop();
54
+ }
55
+ };
56
+ return React.createElement("div", {
57
+ onClick: btnClick,
58
+ style: {
59
+ height: '50px'
60
+ }
61
+ }, React.createElement(Button, {
62
+ block: true,
63
+ color: "primary",
64
+ size: "large",
65
+ className: btnCls,
66
+ disabled: !fullChecked,
67
+ style: {
68
+ pointerEvents: fullChecked ? 'auto' : 'none'
69
+ }
70
+ }, "\u786E\u8BA4"));
71
+ }
72
+ useEffect(function () {
73
+ showPop();
74
+ return function () {
75
+ if (timer.current) {
76
+ clearTimeout(timer.current);
77
+ }
78
+ };
79
+ }, []);
80
+ return React.createElement(React.Fragment, null, props.buttonTop && renderButton(), React.createElement("div", {
81
+ className: containerClass,
82
+ style: {
83
+ maxHeight: props.scrollHeight
84
+ }
85
+ }, React.createElement(Popover, {
86
+ content: props.popoverContent,
87
+ placement: props.popoverPlacement,
88
+ mode: "dark",
89
+ visible: popoverVisible
90
+ }, React.createElement("span", null)), React.createElement(Checkbox.Group, {
91
+ value: checked,
92
+ onChange: function (v) {
93
+ setChecked(v);
94
+ }
95
+ }, children.map(function (child, index) {
96
+ return React.createElement("div", {
97
+ key: index,
98
+ className: "ebscn-protocol-item",
99
+ onClick: function () {
100
+ return setPopoverVisible(false);
101
+ }
102
+ }, React.createElement("div", {
103
+ className: "ebscn-protocol-item-checkbox"
104
+ }, React.createElement(Checkbox, {
105
+ size: "small",
106
+ value: index
107
+ })), React.createElement("div", {
108
+ className: "ebscn-protocol-item-text"
109
+ }, child));
110
+ }))), !props.buttonTop && renderButton());
111
+ };
112
+ export default Protocol;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import { RadioValue } from '.';
3
+ export declare const RadioGroupContext: import("react").Context<{
4
+ value: RadioValue[];
5
+ disabled: boolean;
6
+ check: (val: RadioValue) => void;
7
+ uncheck: (val: RadioValue) => void;
8
+ } | null>;
@@ -0,0 +1,2 @@
1
+ import { createContext } from 'react';
2
+ export var RadioGroupContext = createContext(null);
@@ -0,0 +1,10 @@
1
+ import type { FC, ReactNode } from 'react';
2
+ import { RadioValue } from '.';
3
+ export interface RadioGroupProps {
4
+ value?: RadioValue | null;
5
+ onChange?: (val: RadioValue) => void;
6
+ defaultValue?: RadioValue | null;
7
+ disabled?: boolean;
8
+ children?: ReactNode;
9
+ }
10
+ export declare const Group: FC<RadioGroupProps>;
@@ -0,0 +1,35 @@
1
+ import React from 'react';
2
+ import { mergeProps } from '../../utils/with-default-props';
3
+ import { RadioGroupContext } from './group-context';
4
+ import { usePropsValue } from '../../utils/use-props-value';
5
+ var defaultProps = {
6
+ disabled: false,
7
+ defaultValue: null
8
+ };
9
+ export var Group = function (p) {
10
+ var props = mergeProps(defaultProps, p);
11
+ var _a = usePropsValue({
12
+ value: props.value,
13
+ defaultValue: props.defaultValue,
14
+ onChange: function (v) {
15
+ var _a;
16
+ if (v === null) return;
17
+ (_a = props.onChange) === null || _a === void 0 ? void 0 : _a.call(props, v);
18
+ }
19
+ }),
20
+ value = _a[0],
21
+ setValue = _a[1];
22
+ return React.createElement(RadioGroupContext.Provider
23
+ // TODO: 性能优化
24
+ , {
25
+ // TODO: 性能优化
26
+ value: {
27
+ value: value === null ? [] : [value],
28
+ check: function (v) {
29
+ setValue(v);
30
+ },
31
+ uncheck: function () {},
32
+ disabled: props.disabled
33
+ }
34
+ }, props.children);
35
+ };
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import './radio.less';
3
+ export type { RadioProps, RadioValue } from './radio';
4
+ export type { RadioGroupProps } from './group';
5
+ declare const _default: import("react").FC<import("./radio").RadioProps> & {
6
+ Group: import("react").FC<import("./group").RadioGroupProps>;
7
+ };
8
+ export default _default;
@@ -0,0 +1,7 @@
1
+ import "./radio.css";
2
+ import { attachPropertiesToComponent } from '../../utils/attach-properties-to-component';
3
+ import { Group } from './group';
4
+ import { Radio } from './radio';
5
+ export default attachPropertiesToComponent(Radio, {
6
+ Group: Group
7
+ });
@@ -0,0 +1,92 @@
1
+ .ebscn-radio {
2
+ --icon-size: 24px;
3
+ --font-size: var(--ebscn-font-size-8);
4
+ --gap: 12px;
5
+ display: inline-flex;
6
+ vertical-align: text-bottom;
7
+ justify-content: flex-start;
8
+ align-items: center;
9
+ cursor: pointer;
10
+ }
11
+ .ebscn-radio input[type='radio'] {
12
+ display: none;
13
+ }
14
+ .ebscn-radio.ebscn-radio-small {
15
+ --icon-size: 16px;
16
+ --font-size: var(--ebscn-font-size-4);
17
+ --gap: 9px;
18
+ }
19
+ .ebscn-radio .ebscn-radio-icon {
20
+ flex: none;
21
+ border-radius: var(--icon-size);
22
+ border: 1px solid var(--ebscn-color-light);
23
+ box-sizing: border-box;
24
+ width: var(--icon-size);
25
+ height: var(--icon-size);
26
+ color: var(--ebscn-color-text-light-solid);
27
+ }
28
+ .ebscn-radio .ebscn-radio-icon > svg {
29
+ display: block;
30
+ width: 100%;
31
+ height: 100%;
32
+ }
33
+ .ebscn-radio div.ebscn-radio-icon.ebscn-radio-only-icon {
34
+ color: var(--ebscn-color-primary);
35
+ background-color: var(--ebscn-color-background);
36
+ }
37
+ .ebscn-radio.ebscn-radio-block {
38
+ display: flex;
39
+ }
40
+ .ebscn-radio.ebscn-radio-checked .ebscn-radio-icon {
41
+ border-color: var(--ebscn-color-primary);
42
+ background-color: var(--ebscn-color-primary);
43
+ }
44
+ .ebscn-radio.ebscn-radio-disabled {
45
+ cursor: not-allowed;
46
+ }
47
+ .ebscn-radio.ebscn-radio-disabled .ebscn-radio-content {
48
+ opacity: 0.4;
49
+ }
50
+ .ebscn-radio.ebscn-radio-disabled .ebscn-radio-icon {
51
+ background-color: #e4e4e4;
52
+ border-color: #d9d9d9;
53
+ opacity: 0.4;
54
+ }
55
+ .ebscn-radio.ebscn-radio-disabled.ebscn-radio-checked .ebscn-radio-icon {
56
+ background-color: var(--ebscn-color-primary);
57
+ }
58
+ .ebscn-radio .ebscn-radio-custom-icon {
59
+ font-size: var(--icon-size);
60
+ }
61
+ .ebscn-radio.ebscn-radio-indeterminate .ebscn-radio-icon {
62
+ background-color: var(--ebscn-color-background);
63
+ color: var(--ebscn-color-primary);
64
+ }
65
+ .ebscn-radio-content {
66
+ flex: 0 1 auto;
67
+ font-size: var(--font-size);
68
+ padding-left: var(--gap);
69
+ }
70
+ .ebscn-radio .ebscn-radio-icon-right-input {
71
+ display: flex;
72
+ justify-content: space-between;
73
+ flex-direction: row;
74
+ width: 100%;
75
+ height: 100%;
76
+ }
77
+ .ebscn-radio .ebscn-radio-icon-right-input .ebscn-radio-content {
78
+ padding-left: 0;
79
+ height: 100%;
80
+ }
81
+ .ebscn-radio .ebscn-radio-icon-right-input .ebscn-radio-icon.ebscn-radio-only-icon {
82
+ margin-right: 16px;
83
+ height: 100%;
84
+ border-color: transparent;
85
+ }
86
+ .ebscn-radio .ebscn-radio-icon-right-input .ebscn-radio-icon.ebscn-radio-only-icon svg {
87
+ vertical-align: middle;
88
+ }
89
+ .ebscn-radio-icon-right {
90
+ width: 100%;
91
+ height: 100%;
92
+ }
@@ -0,0 +1,19 @@
1
+ import type { FC, ReactNode } from 'react';
2
+ import React from 'react';
3
+ import { NativeProps } from '../../utils/native-props';
4
+ export type RadioValue = string | number;
5
+ export type RadioProps = {
6
+ checked?: boolean;
7
+ defaultChecked?: boolean;
8
+ disabled?: boolean;
9
+ onChange?: (checked: boolean) => void;
10
+ value?: RadioValue;
11
+ block?: boolean;
12
+ id?: string;
13
+ icon?: (checked: boolean) => ReactNode;
14
+ children?: ReactNode;
15
+ onClick?: (event: React.MouseEvent<HTMLLabelElement, MouseEvent>) => void;
16
+ size?: 'normal' | 'small';
17
+ iconRight?: boolean;
18
+ } & NativeProps<'--icon-size' | '--font-size' | '--gap'>;
19
+ export declare const Radio: FC<RadioProps>;
@@ -0,0 +1,82 @@
1
+ import { CheckIcon, CheckOnlyIcon, UncheckIcon } from '@ebscn/ui';
2
+ import classNames from 'classnames';
3
+ import React, { useContext } from 'react';
4
+ import { devWarning } from '../../utils/dev-log';
5
+ import { isDev } from '../../utils/is-dev';
6
+ import { withNativeProps } from '../../utils/native-props';
7
+ import { usePropsValue } from '../../utils/use-props-value';
8
+ import { mergeProps } from '../../utils/with-default-props';
9
+ import { NativeInput } from '../checkbox/native-input';
10
+ import { RadioGroupContext } from './group-context';
11
+ var classPrefix = "ebscn-radio";
12
+ var defaultProps = {
13
+ defaultChecked: false,
14
+ size: 'normal',
15
+ iconRight: false
16
+ };
17
+ export var Radio = function (p) {
18
+ var _a;
19
+ var props = mergeProps(defaultProps, p);
20
+ var groupContext = useContext(RadioGroupContext);
21
+ var _b = usePropsValue({
22
+ value: props.checked,
23
+ defaultValue: props.defaultChecked,
24
+ onChange: props.onChange
25
+ }),
26
+ checked = _b[0],
27
+ setChecked = _b[1];
28
+ var disabled = props.disabled;
29
+ var value = props.value;
30
+ if (groupContext && value !== undefined) {
31
+ if (isDev) {
32
+ if (p.checked !== undefined) {
33
+ devWarning('Radio', 'When used within `Radio.Group`, the `checked` prop of `Radio` will not work.');
34
+ }
35
+ if (p.defaultChecked !== undefined) {
36
+ devWarning('Radio', 'When used within `Radio.Group`, the `defaultChecked` prop of `Radio` will not work.');
37
+ }
38
+ }
39
+ checked = groupContext.value.includes(value);
40
+ setChecked = function (innerChecked) {
41
+ var _a;
42
+ if (innerChecked) {
43
+ groupContext.check(value);
44
+ } else {
45
+ groupContext.uncheck(value);
46
+ }
47
+ (_a = props.onChange) === null || _a === void 0 ? void 0 : _a.call(props, innerChecked);
48
+ };
49
+ disabled = disabled || groupContext.disabled;
50
+ }
51
+ var renderIcon = function () {
52
+ if (props.icon) {
53
+ return React.createElement("div", {
54
+ className: "".concat(classPrefix, "-custom-icon")
55
+ }, props.icon(checked));
56
+ }
57
+ if (props.iconRight) {
58
+ return checked && React.createElement("div", {
59
+ className: "".concat(classPrefix, "-icon ").concat(classPrefix, "-only-icon")
60
+ }, React.createElement(CheckOnlyIcon, null));
61
+ }
62
+ return React.createElement("div", {
63
+ className: "".concat(classPrefix, "-icon")
64
+ }, checked ? React.createElement(CheckIcon, null) : React.createElement(UncheckIcon, null));
65
+ };
66
+ return withNativeProps(props, React.createElement("label", {
67
+ onClick: props.onClick,
68
+ className: classNames(classPrefix, (_a = {}, _a["".concat(classPrefix, "-checked")] = checked, _a["".concat(classPrefix, "-disabled")] = disabled, _a["".concat(classPrefix, "-block")] = props.block, _a["".concat(classPrefix, "-small")] = props.size === 'small', _a["".concat(classPrefix, "-icon-right")] = props.iconRight, _a))
69
+ }, React.createElement(NativeInput, {
70
+ type: "radio",
71
+ checked: checked,
72
+ onChange: setChecked,
73
+ disabled: disabled,
74
+ id: props.id
75
+ }), props.iconRight ? React.createElement("div", {
76
+ className: "".concat(classPrefix, "-icon-right-input")
77
+ }, props.children && React.createElement("div", {
78
+ className: "".concat(classPrefix, "-content")
79
+ }, props.children), renderIcon()) : React.createElement(React.Fragment, null, renderIcon(), props.children && React.createElement("div", {
80
+ className: "".concat(classPrefix, "-content")
81
+ }, props.children))));
82
+ };
@@ -0,0 +1,3 @@
1
+ import './search.less';
2
+ import Search from './search';
3
+ export default Search;
@@ -0,0 +1,3 @@
1
+ import "./search.css";
2
+ import Search from './search';
3
+ export default Search;
@@ -0,0 +1,53 @@
1
+ .ebscn-search {
2
+ display: flex;
3
+ }
4
+ .ebscn-search .ebscn-search-box {
5
+ box-sizing: border-box;
6
+ height: 32px;
7
+ line-height: 20px;
8
+ padding: 6px 8px;
9
+ font-size: 14px;
10
+ background-color: #F8F9FC;
11
+ flex: 1;
12
+ border-radius: 16px;
13
+ }
14
+ .ebscn-search .ebscn-search-box .ebscn-search-search-icon {
15
+ vertical-align: middle;
16
+ margin-right: 6px;
17
+ color: var(--ebscn-color-weak);
18
+ cursor: pointer;
19
+ }
20
+ .ebscn-search .ebscn-search-box .ebscn-search-clear-icon {
21
+ vertical-align: middle;
22
+ color: var(--ebscn-color-light);
23
+ cursor: pointer;
24
+ }
25
+ .ebscn-search .ebscn-search-box .ebscn-search-input {
26
+ border: none;
27
+ background: transparent;
28
+ outline: none;
29
+ color: var(--ebscn-color-text);
30
+ width: calc(100% - 40px);
31
+ }
32
+ .ebscn-search .ebscn-search-box .ebscn-search-input::-webkit-input-placeholder {
33
+ color: var(--ebscn-color-weak);
34
+ }
35
+ .ebscn-search .ebscn-search-box .ebscn-search-input::placeholder {
36
+ color: var(--ebscn-color-weak);
37
+ }
38
+ .ebscn-search .ebscn-search-text {
39
+ width: 54px;
40
+ text-align: center;
41
+ line-height: 32px;
42
+ cursor: pointer;
43
+ }
44
+ .ebscn-search .ebscn-search-two-icon {
45
+ width: 100px;
46
+ display: flex;
47
+ justify-content: space-around;
48
+ }
49
+ .ebscn-search .ebscn-search-two-icon .ebscn-search-two-icon-item svg {
50
+ width: 32px;
51
+ height: 32px;
52
+ cursor: pointer;
53
+ }
@@ -0,0 +1,15 @@
1
+ import type { FC, ReactNode } from 'react';
2
+ import React from 'react';
3
+ import { NativeProps } from '../../utils/native-props';
4
+ type NativeInputProps = React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>;
5
+ export type Props = Pick<NativeInputProps, 'autoFocus' | 'onKeyDown' | 'id' | 'placeholder' | 'disabled'> & {
6
+ value?: string;
7
+ defaultValue?: string;
8
+ onSearch: (val: string) => void;
9
+ onClear?: () => void;
10
+ searchLayout?: 'normal' | 'text' | 'twoIcon';
11
+ children?: string | ReactNode[] | ReactNode;
12
+ debounce?: number;
13
+ } & NativeProps<'--font-size' | '--color' | '--placeholder-color' | '--text-align'>;
14
+ declare const Search: FC<Props>;
15
+ export default Search;