taro-uno-ui 0.9.0-beta

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 (397) hide show
  1. package/LICENSE +100 -0
  2. package/README.md +273 -0
  3. package/dist/js/index-6NJ3A1Dn.js +26535 -0
  4. package/dist/js/index-6NJ3A1Dn.js.map +1 -0
  5. package/dist/js/index-DFdcksbe.js +1165 -0
  6. package/dist/js/index-DFdcksbe.js.map +1 -0
  7. package/dist/js/index-DXRIkWX1.js +1148 -0
  8. package/dist/js/index-DXRIkWX1.js.map +1 -0
  9. package/dist/js/index-DffLRSro.js +26519 -0
  10. package/dist/js/index-DffLRSro.js.map +1 -0
  11. package/package.json +119 -0
  12. package/src/app.config.ts +55 -0
  13. package/src/app.scss +508 -0
  14. package/src/app.tsx +44 -0
  15. package/src/components/basic/Button/Button.styles.ts +130 -0
  16. package/src/components/basic/Button/Button.test.tsx +154 -0
  17. package/src/components/basic/Button/Button.tsx +93 -0
  18. package/src/components/basic/Button/Button.types.ts +45 -0
  19. package/src/components/basic/Button/index.tsx +6 -0
  20. package/src/components/basic/Divider/Divider.styles.ts +488 -0
  21. package/src/components/basic/Divider/Divider.test.tsx +551 -0
  22. package/src/components/basic/Divider/Divider.tsx +361 -0
  23. package/src/components/basic/Divider/Divider.types.ts +261 -0
  24. package/src/components/basic/Divider/index.tsx +25 -0
  25. package/src/components/basic/Icon/Icon.styles.ts +359 -0
  26. package/src/components/basic/Icon/Icon.test.tsx +357 -0
  27. package/src/components/basic/Icon/Icon.tsx +154 -0
  28. package/src/components/basic/Icon/Icon.types.ts +210 -0
  29. package/src/components/basic/Icon/index.tsx +22 -0
  30. package/src/components/basic/Text/Text.styles.ts +500 -0
  31. package/src/components/basic/Text/Text.test.tsx +299 -0
  32. package/src/components/basic/Text/Text.tsx +340 -0
  33. package/src/components/basic/Text/Text.types.ts +319 -0
  34. package/src/components/basic/Text/index.tsx +27 -0
  35. package/src/components/basic/Typography/Typography.styles.ts +346 -0
  36. package/src/components/basic/Typography/Typography.tsx +205 -0
  37. package/src/components/basic/Typography/Typography.types.ts +296 -0
  38. package/src/components/basic/Typography/index.tsx +14 -0
  39. package/src/components/basic/index.tsx +302 -0
  40. package/src/components/common/ErrorBoundary.tsx +87 -0
  41. package/src/components/common/LazyComponent.tsx +246 -0
  42. package/src/components/common/ResponsiveContainer.tsx +93 -0
  43. package/src/components/common/ResponsiveGrid.tsx +183 -0
  44. package/src/components/common/SecurityProvider.tsx +110 -0
  45. package/src/components/common/ThemeProvider.tsx +128 -0
  46. package/src/components/common/VirtualList.tsx +368 -0
  47. package/src/components/common/__tests__/ErrorBoundary.test.tsx +249 -0
  48. package/src/components/common/index.tsx +7 -0
  49. package/src/components/display/Avatar/Avatar.styles.ts +62 -0
  50. package/src/components/display/Avatar/Avatar.test.tsx +390 -0
  51. package/src/components/display/Avatar/Avatar.tsx +79 -0
  52. package/src/components/display/Avatar/Avatar.types.ts +40 -0
  53. package/src/components/display/Avatar/index.ts +3 -0
  54. package/src/components/display/Badge/Badge.tsx +42 -0
  55. package/src/components/display/Badge/Badge.types.ts +29 -0
  56. package/src/components/display/Badge/index.ts +2 -0
  57. package/src/components/display/Calendar/Calendar.styles.ts +255 -0
  58. package/src/components/display/Calendar/Calendar.test.tsx +30 -0
  59. package/src/components/display/Calendar/Calendar.tsx +337 -0
  60. package/src/components/display/Calendar/Calendar.types.ts +91 -0
  61. package/src/components/display/Calendar/index.ts +3 -0
  62. package/src/components/display/Card/Card.styles.ts +89 -0
  63. package/src/components/display/Card/Card.test.tsx +180 -0
  64. package/src/components/display/Card/Card.tsx +135 -0
  65. package/src/components/display/Card/Card.types.ts +55 -0
  66. package/src/components/display/Card/index.ts +3 -0
  67. package/src/components/display/Carousel/Carousel.styles.ts +206 -0
  68. package/src/components/display/Carousel/Carousel.tsx +295 -0
  69. package/src/components/display/Carousel/Carousel.types.ts +57 -0
  70. package/src/components/display/Carousel/index.ts +3 -0
  71. package/src/components/display/List/List.styles.ts +79 -0
  72. package/src/components/display/List/List.tsx +115 -0
  73. package/src/components/display/List/List.types.ts +68 -0
  74. package/src/components/display/List/index.ts +3 -0
  75. package/src/components/display/Rate/Rate.styles.ts +266 -0
  76. package/src/components/display/Rate/Rate.tsx +332 -0
  77. package/src/components/display/Rate/Rate.types.ts +111 -0
  78. package/src/components/display/Rate/index.ts +28 -0
  79. package/src/components/display/Table/Table.styles.ts +269 -0
  80. package/src/components/display/Table/Table.test.tsx +343 -0
  81. package/src/components/display/Table/Table.tsx +430 -0
  82. package/src/components/display/Table/Table.types.ts +255 -0
  83. package/src/components/display/Table/index.tsx +16 -0
  84. package/src/components/display/Tag/Tag.styles.ts +197 -0
  85. package/src/components/display/Tag/Tag.test.tsx +541 -0
  86. package/src/components/display/Tag/Tag.tsx +156 -0
  87. package/src/components/display/Tag/Tag.types.ts +49 -0
  88. package/src/components/display/Tag/index.ts +3 -0
  89. package/src/components/display/Timeline/Timeline.styles.ts +211 -0
  90. package/src/components/display/Timeline/Timeline.tsx +239 -0
  91. package/src/components/display/Timeline/Timeline.types.ts +56 -0
  92. package/src/components/display/Timeline/index.ts +3 -0
  93. package/src/components/display/index.tsx +143 -0
  94. package/src/components/feedback/Loading/Loading.styles.ts +117 -0
  95. package/src/components/feedback/Loading/Loading.test.tsx +534 -0
  96. package/src/components/feedback/Loading/Loading.tsx +127 -0
  97. package/src/components/feedback/Loading/Loading.types.ts +33 -0
  98. package/src/components/feedback/Loading/index.ts +9 -0
  99. package/src/components/feedback/Message/Message.styles.ts +41 -0
  100. package/src/components/feedback/Message/Message.test.tsx +234 -0
  101. package/src/components/feedback/Message/Message.tsx +96 -0
  102. package/src/components/feedback/Message/Message.types.ts +37 -0
  103. package/src/components/feedback/Message/index.ts +9 -0
  104. package/src/components/feedback/Modal/Modal.styles.ts +21 -0
  105. package/src/components/feedback/Modal/Modal.test.tsx +11 -0
  106. package/src/components/feedback/Modal/Modal.tsx +291 -0
  107. package/src/components/feedback/Modal/Modal.types.ts +141 -0
  108. package/src/components/feedback/Modal/index.tsx +11 -0
  109. package/src/components/feedback/Notification/Notification.styles.ts +443 -0
  110. package/src/components/feedback/Notification/Notification.test.tsx +401 -0
  111. package/src/components/feedback/Notification/Notification.tsx +370 -0
  112. package/src/components/feedback/Notification/Notification.types.ts +336 -0
  113. package/src/components/feedback/Notification/NotificationManager.tsx +376 -0
  114. package/src/components/feedback/Notification/index.ts +33 -0
  115. package/src/components/feedback/Notification/index.tsx +164 -0
  116. package/src/components/feedback/Progress/Progress.styles.ts +460 -0
  117. package/src/components/feedback/Progress/Progress.test.simple.tsx +14 -0
  118. package/src/components/feedback/Progress/Progress.test.tsx +312 -0
  119. package/src/components/feedback/Progress/Progress.tsx +508 -0
  120. package/src/components/feedback/Progress/Progress.types.ts +163 -0
  121. package/src/components/feedback/Progress/index.ts +3 -0
  122. package/src/components/feedback/Progress/index.tsx +38 -0
  123. package/src/components/feedback/Progress/utils/animation.ts +204 -0
  124. package/src/components/feedback/Progress/utils/index.ts +26 -0
  125. package/src/components/feedback/Progress/utils/progress-calculator.ts +217 -0
  126. package/src/components/feedback/Result/Result.styles.ts +139 -0
  127. package/src/components/feedback/Result/Result.tsx +233 -0
  128. package/src/components/feedback/Result/Result.types.ts +128 -0
  129. package/src/components/feedback/Result/index.tsx +3 -0
  130. package/src/components/feedback/Toast/Toast.styles.ts +17 -0
  131. package/src/components/feedback/Toast/Toast.test.tsx +10 -0
  132. package/src/components/feedback/Toast/Toast.tsx +372 -0
  133. package/src/components/feedback/Toast/Toast.types.ts +86 -0
  134. package/src/components/feedback/Toast/index.tsx +3 -0
  135. package/src/components/feedback/Tooltip/Tooltip.examples.tsx +458 -0
  136. package/src/components/feedback/Tooltip/Tooltip.styles.ts +346 -0
  137. package/src/components/feedback/Tooltip/Tooltip.test.tsx +446 -0
  138. package/src/components/feedback/Tooltip/Tooltip.tsx +283 -0
  139. package/src/components/feedback/Tooltip/Tooltip.types.ts +172 -0
  140. package/src/components/feedback/Tooltip/index.ts +3 -0
  141. package/src/components/feedback/Tooltip/index.tsx +258 -0
  142. package/src/components/feedback/index.tsx +164 -0
  143. package/src/components/form/Cascader/Cascader.styles.ts +526 -0
  144. package/src/components/form/Cascader/Cascader.test.tsx +77 -0
  145. package/src/components/form/Cascader/Cascader.tsx +585 -0
  146. package/src/components/form/Cascader/Cascader.types.ts +582 -0
  147. package/src/components/form/Cascader/hooks/index.ts +3 -0
  148. package/src/components/form/Cascader/hooks/useCascaderFieldNames.ts +16 -0
  149. package/src/components/form/Cascader/hooks/useCascaderOptions.ts +109 -0
  150. package/src/components/form/Cascader/hooks/useCascaderState.ts +133 -0
  151. package/src/components/form/Cascader/index.ts +25 -0
  152. package/src/components/form/Cascader/utils/formatDisplayValue.ts +19 -0
  153. package/src/components/form/Cascader/utils/index.ts +1 -0
  154. package/src/components/form/Checkbox/Checkbox.styles.ts +608 -0
  155. package/src/components/form/Checkbox/Checkbox.test.tsx +1140 -0
  156. package/src/components/form/Checkbox/Checkbox.tsx +496 -0
  157. package/src/components/form/Checkbox/Checkbox.types.ts +472 -0
  158. package/src/components/form/Checkbox/CheckboxGroup.tsx +444 -0
  159. package/src/components/form/Checkbox/index.tsx +27 -0
  160. package/src/components/form/DatePicker/DatePicker.styles.ts +393 -0
  161. package/src/components/form/DatePicker/DatePicker.test.tsx +407 -0
  162. package/src/components/form/DatePicker/DatePicker.tsx +360 -0
  163. package/src/components/form/DatePicker/DatePicker.types.ts +247 -0
  164. package/src/components/form/DatePicker/index.tsx +15 -0
  165. package/src/components/form/Form/Form.styles.ts +357 -0
  166. package/src/components/form/Form/Form.test.tsx +122 -0
  167. package/src/components/form/Form/Form.tsx +695 -0
  168. package/src/components/form/Form/Form.types.ts +407 -0
  169. package/src/components/form/Form/index.tsx +31 -0
  170. package/src/components/form/Input/Input.enhanced.tsx +732 -0
  171. package/src/components/form/Input/Input.styles.ts +438 -0
  172. package/src/components/form/Input/Input.test.tsx +494 -0
  173. package/src/components/form/Input/Input.tsx +541 -0
  174. package/src/components/form/Input/Input.types.ts +285 -0
  175. package/src/components/form/Input/index.tsx +26 -0
  176. package/src/components/form/InputNumber/InputNumber.styles.ts +665 -0
  177. package/src/components/form/InputNumber/InputNumber.tsx +370 -0
  178. package/src/components/form/InputNumber/InputNumber.types.ts +318 -0
  179. package/src/components/form/InputNumber/components/InputNumberClearButton.tsx +32 -0
  180. package/src/components/form/InputNumber/components/InputNumberControls.tsx +42 -0
  181. package/src/components/form/InputNumber/components/index.ts +2 -0
  182. package/src/components/form/InputNumber/hooks/index.ts +4 -0
  183. package/src/components/form/InputNumber/hooks/useInputNumberState.ts +315 -0
  184. package/src/components/form/InputNumber/hooks/useInputNumberValidation.ts +147 -0
  185. package/src/components/form/InputNumber/index.ts +25 -0
  186. package/src/components/form/Radio/Radio.styles.ts +458 -0
  187. package/src/components/form/Radio/Radio.test.tsx +547 -0
  188. package/src/components/form/Radio/Radio.tsx +283 -0
  189. package/src/components/form/Radio/Radio.types.ts +410 -0
  190. package/src/components/form/Radio/index.tsx +21 -0
  191. package/src/components/form/Select/Select.styles.ts +514 -0
  192. package/src/components/form/Select/Select.test.tsx +648 -0
  193. package/src/components/form/Select/Select.tsx +474 -0
  194. package/src/components/form/Select/Select.types.ts +428 -0
  195. package/src/components/form/Select/index.tsx +30 -0
  196. package/src/components/form/Slider/Slider.styles.ts +139 -0
  197. package/src/components/form/Slider/Slider.test.tsx +553 -0
  198. package/src/components/form/Slider/Slider.tsx +326 -0
  199. package/src/components/form/Slider/Slider.types.ts +108 -0
  200. package/src/components/form/Slider/index.tsx +10 -0
  201. package/src/components/form/Switch/Switch.styles.ts +540 -0
  202. package/src/components/form/Switch/Switch.test.tsx +345 -0
  203. package/src/components/form/Switch/Switch.tsx +464 -0
  204. package/src/components/form/Switch/Switch.types.ts +386 -0
  205. package/src/components/form/Switch/index.tsx +26 -0
  206. package/src/components/form/Textarea/Textarea.styles.ts +592 -0
  207. package/src/components/form/Textarea/Textarea.test.tsx +1075 -0
  208. package/src/components/form/Textarea/Textarea.tsx +602 -0
  209. package/src/components/form/Textarea/Textarea.types.ts +371 -0
  210. package/src/components/form/Textarea/index.tsx +26 -0
  211. package/src/components/form/TimePicker/TimePicker.styles.ts +438 -0
  212. package/src/components/form/TimePicker/TimePicker.test.tsx +306 -0
  213. package/src/components/form/TimePicker/TimePicker.tsx +228 -0
  214. package/src/components/form/TimePicker/TimePicker.types.ts +385 -0
  215. package/src/components/form/TimePicker/index.ts +21 -0
  216. package/src/components/form/Transfer/Transfer.styles.ts +502 -0
  217. package/src/components/form/Transfer/Transfer.test.tsx +316 -0
  218. package/src/components/form/Transfer/Transfer.tsx +402 -0
  219. package/src/components/form/Transfer/Transfer.types.ts +557 -0
  220. package/src/components/form/Transfer/components/TransferItem.tsx +101 -0
  221. package/src/components/form/Transfer/components/TransferList.tsx +285 -0
  222. package/src/components/form/Transfer/components/TransferOperations.tsx +84 -0
  223. package/src/components/form/Transfer/components/TransferPagination.tsx +135 -0
  224. package/src/components/form/Transfer/components/TransferSearch.tsx +88 -0
  225. package/src/components/form/Transfer/components/index.ts +6 -0
  226. package/src/components/form/Transfer/hooks/index.ts +3 -0
  227. package/src/components/form/Transfer/hooks/useTransferData.ts +192 -0
  228. package/src/components/form/Transfer/hooks/useTransferState.ts +114 -0
  229. package/src/components/form/Transfer/index.ts +33 -0
  230. package/src/components/form/Upload/Upload.styles.ts +145 -0
  231. package/src/components/form/Upload/Upload.test.tsx +10 -0
  232. package/src/components/form/Upload/Upload.tsx +451 -0
  233. package/src/components/form/Upload/Upload.types.ts +200 -0
  234. package/src/components/form/Upload/index.tsx +12 -0
  235. package/src/components/form/index.tsx +121 -0
  236. package/src/components/index.tsx +146 -0
  237. package/src/components/layout/Affix/Affix.styles.ts +37 -0
  238. package/src/components/layout/Affix/Affix.test.tsx +10 -0
  239. package/src/components/layout/Affix/Affix.tsx +91 -0
  240. package/src/components/layout/Affix/Affix.types.ts +29 -0
  241. package/src/components/layout/Affix/index.tsx +3 -0
  242. package/src/components/layout/Col/Col.styles.ts +185 -0
  243. package/src/components/layout/Col/Col.test.tsx +535 -0
  244. package/src/components/layout/Col/Col.tsx +115 -0
  245. package/src/components/layout/Col/Col.types.ts +59 -0
  246. package/src/components/layout/Col/index.tsx +3 -0
  247. package/src/components/layout/Container/Container.styles.ts +161 -0
  248. package/src/components/layout/Container/Container.test.tsx +380 -0
  249. package/src/components/layout/Container/Container.tsx +132 -0
  250. package/src/components/layout/Container/Container.types.ts +63 -0
  251. package/src/components/layout/Container/index.tsx +3 -0
  252. package/src/components/layout/Grid/Grid.styles.ts +183 -0
  253. package/src/components/layout/Grid/Grid.test.tsx +637 -0
  254. package/src/components/layout/Grid/Grid.tsx +173 -0
  255. package/src/components/layout/Grid/Grid.types.ts +78 -0
  256. package/src/components/layout/Grid/index.tsx +3 -0
  257. package/src/components/layout/Layout/Content.tsx +38 -0
  258. package/src/components/layout/Layout/Footer.tsx +38 -0
  259. package/src/components/layout/Layout/Header.tsx +38 -0
  260. package/src/components/layout/Layout/Layout.styles.ts +84 -0
  261. package/src/components/layout/Layout/Layout.test.tsx +10 -0
  262. package/src/components/layout/Layout/Layout.tsx +39 -0
  263. package/src/components/layout/Layout/Layout.types.ts +58 -0
  264. package/src/components/layout/Layout/Sider.tsx +56 -0
  265. package/src/components/layout/Layout/index.tsx +8 -0
  266. package/src/components/layout/Row/Row.styles.ts +159 -0
  267. package/src/components/layout/Row/Row.test.tsx +467 -0
  268. package/src/components/layout/Row/Row.tsx +139 -0
  269. package/src/components/layout/Row/Row.types.ts +60 -0
  270. package/src/components/layout/Row/index.tsx +3 -0
  271. package/src/components/layout/Space/Space.styles.ts +255 -0
  272. package/src/components/layout/Space/Space.test.tsx +682 -0
  273. package/src/components/layout/Space/Space.tsx +211 -0
  274. package/src/components/layout/Space/Space.types.ts +92 -0
  275. package/src/components/layout/Space/index.tsx +12 -0
  276. package/src/components/layout/index.tsx +68 -0
  277. package/src/components/navigation/Menu/Menu.styles.ts +779 -0
  278. package/src/components/navigation/Menu/Menu.tsx +355 -0
  279. package/src/components/navigation/Menu/Menu.types.ts +231 -0
  280. package/src/components/navigation/Menu/Menu.utils.ts +187 -0
  281. package/src/components/navigation/Menu/MenuItem.tsx +126 -0
  282. package/src/components/navigation/Menu/SubMenu.tsx +148 -0
  283. package/src/components/navigation/Menu/__tests__/Menu.test.tsx +687 -0
  284. package/src/components/navigation/Menu/index.tsx +124 -0
  285. package/src/components/navigation/NavBar/NavBar.styles.ts +129 -0
  286. package/src/components/navigation/NavBar/NavBar.test.tsx +287 -0
  287. package/src/components/navigation/NavBar/NavBar.tsx +231 -0
  288. package/src/components/navigation/NavBar/NavBar.types.ts +54 -0
  289. package/src/components/navigation/NavBar/index.tsx +3 -0
  290. package/src/components/navigation/Pagination/Pagination.styles.ts +187 -0
  291. package/src/components/navigation/Pagination/Pagination.test.tsx +673 -0
  292. package/src/components/navigation/Pagination/Pagination.tsx +395 -0
  293. package/src/components/navigation/Pagination/Pagination.types.ts +86 -0
  294. package/src/components/navigation/Pagination/index.ts +18 -0
  295. package/src/components/navigation/Pagination/index.tsx +9 -0
  296. package/src/components/navigation/Steps/Step.tsx +56 -0
  297. package/src/components/navigation/Steps/Steps.styles.ts +154 -0
  298. package/src/components/navigation/Steps/Steps.test.tsx +12 -0
  299. package/src/components/navigation/Steps/Steps.tsx +113 -0
  300. package/src/components/navigation/Steps/Steps.types.ts +47 -0
  301. package/src/components/navigation/Steps/index.tsx +3 -0
  302. package/src/components/navigation/Tabs/Tabs.styles.ts +199 -0
  303. package/src/components/navigation/Tabs/Tabs.test.tsx +661 -0
  304. package/src/components/navigation/Tabs/Tabs.tsx +253 -0
  305. package/src/components/navigation/Tabs/Tabs.types.ts +114 -0
  306. package/src/components/navigation/Tabs/index.tsx +3 -0
  307. package/src/components/navigation/Tree/Tree.styles.ts +553 -0
  308. package/src/components/navigation/Tree/Tree.test.basic.tsx +7 -0
  309. package/src/components/navigation/Tree/Tree.test.functional.tsx +496 -0
  310. package/src/components/navigation/Tree/Tree.test.import.check.tsx +6 -0
  311. package/src/components/navigation/Tree/Tree.test.import.tsx +6 -0
  312. package/src/components/navigation/Tree/Tree.test.minimal.tsx +5 -0
  313. package/src/components/navigation/Tree/Tree.test.simple.tsx +30 -0
  314. package/src/components/navigation/Tree/Tree.test.tsx +908 -0
  315. package/src/components/navigation/Tree/Tree.test.working.tsx +673 -0
  316. package/src/components/navigation/Tree/Tree.tsx +600 -0
  317. package/src/components/navigation/Tree/Tree.types.ts +909 -0
  318. package/src/components/navigation/Tree/Tree.utils.ts +452 -0
  319. package/src/components/navigation/Tree/index.ts +33 -0
  320. package/src/components/navigation/Tree/index.tsx +23 -0
  321. package/src/components/navigation/index.tsx +83 -0
  322. package/src/constants/index.ts +785 -0
  323. package/src/hooks/index.ts +110 -0
  324. package/src/hooks/types.ts +10 -0
  325. package/src/hooks/useAsync.ts +65 -0
  326. package/src/hooks/useEventHandling.ts +444 -0
  327. package/src/hooks/useLifecycle.ts +399 -0
  328. package/src/hooks/usePerformance.ts +441 -0
  329. package/src/hooks/usePerformanceMonitor.ts +348 -0
  330. package/src/hooks/usePlatform.ts +62 -0
  331. package/src/hooks/useRequest.test.ts +11 -0
  332. package/src/hooks/useRequest.ts +135 -0
  333. package/src/hooks/useStateManagement.ts +300 -0
  334. package/src/hooks/useStyle.ts +537 -0
  335. package/src/hooks/useTheme.ts +347 -0
  336. package/src/hooks/useVirtualScroll.ts +331 -0
  337. package/src/index.ts +298 -0
  338. package/src/platform/index.ts +1188 -0
  339. package/src/providers/AppProvider.test.tsx +63 -0
  340. package/src/providers/AppProvider.tsx +155 -0
  341. package/src/providers/index.ts +1 -0
  342. package/src/theme/ThemeProvider.tsx +283 -0
  343. package/src/theme/ThemeProvider.types.ts +26 -0
  344. package/src/theme/animations.tsx +660 -0
  345. package/src/theme/defaults.ts +188 -0
  346. package/src/theme/design-system.ts +562 -0
  347. package/src/theme/design-tokens.ts +1136 -0
  348. package/src/theme/generated/dark-theme.scss +120 -0
  349. package/src/theme/generated/tokens.css +441 -0
  350. package/src/theme/generated/tokens.scss +320 -0
  351. package/src/theme/index.ts +120 -0
  352. package/src/theme/responsive.tsx +193 -0
  353. package/src/theme/styles/mixins.scss +612 -0
  354. package/src/theme/styles/variables.scss +295 -0
  355. package/src/theme/styles.ts +403 -0
  356. package/src/theme/tokens/colors.ts +256 -0
  357. package/src/theme/tokens/effects.ts +260 -0
  358. package/src/theme/tokens/index.ts +217 -0
  359. package/src/theme/tokens/spacing.ts +137 -0
  360. package/src/theme/tokens/typography.ts +186 -0
  361. package/src/theme/types.ts +188 -0
  362. package/src/theme/useThemeUtils.ts +313 -0
  363. package/src/theme/utils.ts +501 -0
  364. package/src/theme/variables.ts +583 -0
  365. package/src/types/accessibility.ts +51 -0
  366. package/src/types/button.ts +562 -0
  367. package/src/types/component-props.ts +317 -0
  368. package/src/types/env.d.ts +20 -0
  369. package/src/types/index.ts +427 -0
  370. package/src/types/modules.d.ts +40 -0
  371. package/src/types/standardized-components.ts +544 -0
  372. package/src/types/taro-adapter.d.ts +174 -0
  373. package/src/types/taro-components.d.ts +73 -0
  374. package/src/types/utils.ts +410 -0
  375. package/src/utils/__tests__/inputValidator.test.ts +338 -0
  376. package/src/utils/__tests__/responsiveUtils.test.ts +310 -0
  377. package/src/utils/__tests__/xssProtection.test.ts +268 -0
  378. package/src/utils/cache.ts +83 -0
  379. package/src/utils/createNamespace.ts +24 -0
  380. package/src/utils/environment.ts +95 -0
  381. package/src/utils/error-handler.ts +88 -0
  382. package/src/utils/errorLogger.ts +197 -0
  383. package/src/utils/formatUtils.ts +444 -0
  384. package/src/utils/index.ts +115 -0
  385. package/src/utils/inputValidator.ts +261 -0
  386. package/src/utils/network/http-client.test.ts +18 -0
  387. package/src/utils/network/http-client.ts +151 -0
  388. package/src/utils/performance/performance.ts +850 -0
  389. package/src/utils/responsiveUtils.ts +357 -0
  390. package/src/utils/rtl-support.ts +344 -0
  391. package/src/utils/security/api-security.ts +386 -0
  392. package/src/utils/security/xss-protection.ts +69 -0
  393. package/src/utils/securityHeaders.ts +314 -0
  394. package/src/utils/typeHelpers.ts +16 -0
  395. package/src/utils/types/dataProcessing.ts +543 -0
  396. package/src/utils/types/typeHelpers.ts +187 -0
  397. package/src/utils/xssProtection.ts +420 -0
@@ -0,0 +1,1140 @@
1
+ import React from 'react';
2
+ import { useRef } from 'react';
3
+ import { render, screen, fireEvent, waitFor, act } from '@testing-library/react';
4
+ import { vi } from 'vitest';
5
+ import { Checkbox } from './Checkbox';
6
+ import { CheckboxGroup } from './CheckboxGroup';
7
+ import type { CheckboxProps, CheckboxRef, CheckboxGroupProps, CheckboxGroupRef } from './Checkbox.types';
8
+
9
+ // Mock Taro components
10
+ vi.mock('@tarojs/components', () => ({
11
+ Checkbox: ({ checked, onChange, onClick, onNativeClick, children, ...props }: any) => {
12
+ const disabled = props.disabled || false;
13
+ const readonly = !!props.readonly;
14
+ React.useEffect(() => {
15
+ if (props.autoFocus) {
16
+ props.onFocus?.({ type: 'focus' });
17
+ }
18
+ }, [props.autoFocus]);
19
+ const handleClick = (e: any) => {
20
+ // Create a proper event object with the structure expected by tests
21
+ const inputElement = e.target || {
22
+ ...props,
23
+ type: 'checkbox',
24
+ get checked() { return checked; },
25
+ get disabled() { return disabled; },
26
+ get readOnly() { return readonly; },
27
+ getAttribute: (name: string) => {
28
+ const attrs: Record<string, any> = {
29
+ 'data-testid': props['data-testid'],
30
+ 'aria-checked': checked ? 'true' : 'false',
31
+ 'aria-disabled': disabled ? 'true' : 'false',
32
+ 'aria-readonly': readonly ? 'true' : 'false',
33
+ 'aria-busy': props.accessibilityState?.busy ? 'true' : undefined,
34
+ 'aria-expanded': props.accessibilityState?.expanded ? 'true' : 'false',
35
+ 'data-checked': checked ? 'true' : 'false',
36
+ 'data-readonly': readonly ? 'true' : undefined,
37
+ 'data-value': props.value,
38
+ 'tabindex': props.tabIndex,
39
+ 'aria-label': props.accessibilityLabel || props.label,
40
+ };
41
+ return attrs[name] ?? null;
42
+ }
43
+ };
44
+
45
+ const eventObject = {
46
+ target: inputElement,
47
+ currentTarget: e.currentTarget || inputElement,
48
+ type: 'change',
49
+ ...e
50
+ };
51
+
52
+ if (onClick) {
53
+ onClick({ ...eventObject, type: 'click' });
54
+ }
55
+ // Also trigger the change event on click (since checkbox is clicked)
56
+ if (onChange) {
57
+ onChange(!checked, eventObject);
58
+ }
59
+ };
60
+
61
+ return (
62
+ <div data-testid="checkbox-wrapper">
63
+ <input
64
+ ref={(el) => {
65
+ // Store the element reference for event handling
66
+ if (el) {
67
+ el.checked = checked;
68
+ el.disabled = disabled;
69
+ el.readOnly = readonly;
70
+ }
71
+ }}
72
+ type="checkbox"
73
+ checked={checked}
74
+ onClick={handleClick}
75
+ readOnly={readonly}
76
+ readonly={readonly}
77
+ data-readonly={readonly ? 'true' : undefined}
78
+ aria-label={props.accessibilityLabel || props.label}
79
+ aria-checked={checked ? 'true' : 'false'}
80
+ aria-disabled={disabled ? 'true' : 'false'}
81
+ aria-busy={props.accessibilityState?.busy ? 'true' : undefined}
82
+ aria-expanded={props.accessibilityState?.expanded?.toString()}
83
+ tabIndex={props.tabIndex}
84
+ data-value={props.value}
85
+ {...props}
86
+ />
87
+ {children}
88
+ </div>
89
+ );
90
+ },
91
+ View: ({ children, ...props }: any) => <div {...props}>{children}</div>,
92
+ Text: ({ children, ...props }: any) => <span {...props}>{children}</span>,
93
+ }));
94
+
95
+ // Mock PlatformDetector
96
+ vi.mock('@/utils', () => ({
97
+ PlatformDetector: {
98
+ getPlatform: () => 'h5',
99
+ },
100
+ }));
101
+
102
+ describe('Checkbox Component', () => {
103
+ beforeEach(() => {
104
+ vi.clearAllMocks();
105
+ });
106
+
107
+ describe('Rendering', () => {
108
+ it('renders Checkbox component with default props', () => {
109
+ render(<Checkbox />);
110
+ expect(screen.getByTestId('checkbox')).toBeInTheDocument();
111
+ });
112
+
113
+ it('renders with label', () => {
114
+ render(<Checkbox label="Accept terms" />);
115
+ expect(screen.getByText('Accept terms')).toBeInTheDocument();
116
+ });
117
+
118
+ it('renders with helper text', () => {
119
+ render(<Checkbox helperText="Please accept the terms" />);
120
+ expect(screen.getByText('Please accept the terms')).toBeInTheDocument();
121
+ });
122
+
123
+ it('renders with error text', () => {
124
+ render(<Checkbox errorText="This field is required" status="error" />);
125
+ expect(screen.getByText('This field is required')).toBeInTheDocument();
126
+ });
127
+
128
+ it('renders unchecked by default', () => {
129
+ render(<Checkbox />);
130
+ const checkbox = screen.getByTestId('checkbox');
131
+ expect(checkbox).not.toBeChecked();
132
+ });
133
+
134
+ it('renders checked when controlled', () => {
135
+ render(<Checkbox checked={true} />);
136
+ const checkbox = screen.getByTestId('checkbox');
137
+ expect(checkbox).toBeChecked();
138
+ });
139
+
140
+ it('renders checked with defaultChecked', () => {
141
+ render(<Checkbox defaultChecked={true} />);
142
+ const checkbox = screen.getByTestId('checkbox');
143
+ expect(checkbox).toBeChecked();
144
+ });
145
+
146
+ it('renders with custom icon', () => {
147
+ render(<Checkbox checked={true} icon="★" />);
148
+ expect(screen.getByText('★')).toBeInTheDocument();
149
+ });
150
+
151
+ it('renders with label on left', () => {
152
+ render(<Checkbox label="Left label" labelPosition="left" />);
153
+ const label = screen.getByText('Left label');
154
+ expect(label).toBeInTheDocument();
155
+ });
156
+
157
+ it('renders disabled', () => {
158
+ render(<Checkbox disabled />);
159
+ const checkbox = screen.getByTestId('checkbox');
160
+ expect(checkbox).toBeDisabled();
161
+ });
162
+
163
+ it('renders readonly', () => {
164
+ render(<Checkbox readonly />);
165
+ const checkbox = screen.getByTestId('checkbox');
166
+ expect(checkbox).toHaveAttribute('data-readonly', 'true');
167
+ });
168
+
169
+ it('renders indeterminate', () => {
170
+ render(<Checkbox indeterminate={true} />);
171
+ const checkbox = screen.getByTestId('checkbox');
172
+ expect(checkbox).toHaveAttribute('data-indeterminate', 'true');
173
+ });
174
+ });
175
+
176
+ describe('Value Handling', () => {
177
+ it('handles controlled mode', () => {
178
+ const handleChange = vi.fn();
179
+ render(<Checkbox checked={true} onChange={handleChange} />);
180
+
181
+ const checkbox = screen.getByTestId('checkbox');
182
+ fireEvent.click(checkbox);
183
+
184
+ expect(handleChange).toHaveBeenCalledWith(false, expect.any(Object));
185
+ });
186
+
187
+ it('handles uncontrolled mode', () => {
188
+ const handleChange = vi.fn();
189
+ render(<Checkbox defaultChecked={false} onChange={handleChange} />);
190
+
191
+ const checkbox = screen.getByTestId('checkbox');
192
+ fireEvent.click(checkbox);
193
+
194
+ expect(handleChange).toHaveBeenCalledWith(true, expect.any(Object));
195
+ expect(checkbox).toBeChecked();
196
+ });
197
+
198
+ it('toggles checked state on click', () => {
199
+ const handleChange = vi.fn();
200
+ render(<Checkbox onChange={handleChange} />);
201
+
202
+ const checkbox = screen.getByTestId('checkbox');
203
+
204
+ // First click - check
205
+ fireEvent.click(checkbox);
206
+ expect(handleChange).toHaveBeenCalledWith(true, expect.any(Object));
207
+
208
+ // Second click - uncheck
209
+ fireEvent.click(checkbox);
210
+ expect(handleChange).toHaveBeenCalledWith(false, expect.any(Object));
211
+ });
212
+ });
213
+
214
+ describe('States', () => {
215
+ it('handles disabled state', () => {
216
+ const handleChange = vi.fn();
217
+ render(<Checkbox disabled onChange={handleChange} />);
218
+
219
+ const checkbox = screen.getByTestId('checkbox');
220
+ expect(checkbox).toBeDisabled();
221
+
222
+ fireEvent.click(checkbox);
223
+ expect(handleChange).not.toHaveBeenCalled();
224
+ });
225
+
226
+ it('handles readonly state', () => {
227
+ const handleChange = vi.fn();
228
+ render(<Checkbox readonly onChange={handleChange} />);
229
+
230
+ const checkbox = screen.getByTestId('checkbox');
231
+ fireEvent.click(checkbox);
232
+
233
+ // Readonly should still allow interaction but handle it differently
234
+ expect(handleChange).not.toHaveBeenCalled();
235
+ });
236
+
237
+ it('handles indeterminate state', () => {
238
+ render(<Checkbox indeterminate={true} />);
239
+ const checkbox = screen.getByTestId('checkbox');
240
+ expect(checkbox).toHaveAttribute('data-indeterminate', 'true');
241
+ });
242
+
243
+ it('handles error state', () => {
244
+ render(<Checkbox status="error" />);
245
+ const checkbox = screen.getByTestId('checkbox');
246
+ expect(checkbox).toHaveClass('checkbox-error');
247
+ });
248
+
249
+ it('handles warning state', () => {
250
+ render(<Checkbox status="warning" />);
251
+ const checkbox = screen.getByTestId('checkbox');
252
+ expect(checkbox).toHaveClass('checkbox-warning');
253
+ });
254
+
255
+ it('handles success state', () => {
256
+ render(<Checkbox status="success" />);
257
+ const checkbox = screen.getByTestId('checkbox');
258
+ expect(checkbox).toHaveClass('checkbox-success');
259
+ });
260
+ });
261
+
262
+ describe('Sizes and Variants', () => {
263
+ const sizes: Array<'xs' | 'sm' | 'md' | 'lg' | 'xl'> = ['xs', 'sm', 'md', 'lg', 'xl'];
264
+ const variants: Array<'default' | 'filled' | 'outlined'> = ['default', 'filled', 'outlined'];
265
+ const colors: Array<'primary' | 'secondary' | 'success' | 'warning' | 'error' | 'info'> =
266
+ ['primary', 'secondary', 'success', 'warning', 'error', 'info'];
267
+
268
+ sizes.forEach((size) => {
269
+ it(`renders with size ${size}`, () => {
270
+ render(<Checkbox size={size} />);
271
+ const checkbox = screen.getByTestId('checkbox');
272
+ expect(checkbox).toHaveClass(`checkbox-${size}`);
273
+ });
274
+ });
275
+
276
+ variants.forEach((variant) => {
277
+ it(`renders with variant ${variant}`, () => {
278
+ render(<Checkbox variant={variant} />);
279
+ const checkbox = screen.getByTestId('checkbox');
280
+ expect(checkbox).toHaveClass(`checkbox-${variant}`);
281
+ });
282
+ });
283
+
284
+ colors.forEach((color) => {
285
+ it(`renders with color ${color}`, () => {
286
+ render(<Checkbox color={color} />);
287
+ const checkbox = screen.getByTestId('checkbox');
288
+ expect(checkbox).toHaveClass(`checkbox-${color}`);
289
+ });
290
+ });
291
+ });
292
+
293
+ describe('Events', () => {
294
+ it('calls onChange when clicked', () => {
295
+ const handleChange = vi.fn();
296
+ render(<Checkbox onChange={handleChange} />);
297
+
298
+ const checkbox = screen.getByTestId('checkbox');
299
+ fireEvent.click(checkbox);
300
+
301
+ expect(handleChange).toHaveBeenCalledWith(true, expect.any(Object));
302
+ });
303
+
304
+ it('calls onClick when clicked', () => {
305
+ const handleClick = vi.fn();
306
+ render(<Checkbox onClick={handleClick} />);
307
+
308
+ const checkbox = screen.getByTestId('checkbox');
309
+ fireEvent.click(checkbox);
310
+
311
+ expect(handleClick).toHaveBeenCalledWith(expect.any(Object));
312
+ });
313
+
314
+ it('passes correct event to onChange handler', () => {
315
+ const handleChange = vi.fn();
316
+ render(<Checkbox onChange={handleChange} />);
317
+
318
+ const checkbox = screen.getByTestId('checkbox');
319
+
320
+ fireEvent.click(checkbox);
321
+
322
+ // The target should be an object with checkbox-like properties
323
+ expect(handleChange).toHaveBeenCalledWith(true, expect.objectContaining({
324
+ target: expect.objectContaining({
325
+ getAttribute: expect.any(Function),
326
+ type: 'checkbox',
327
+ }),
328
+ type: 'change',
329
+ }));
330
+ });
331
+
332
+ it('does not call onChange when disabled', () => {
333
+ const handleChange = vi.fn();
334
+ render(<Checkbox disabled onChange={handleChange} />);
335
+
336
+ const checkbox = screen.getByTestId('checkbox');
337
+ fireEvent.click(checkbox);
338
+
339
+ expect(handleChange).not.toHaveBeenCalled();
340
+ });
341
+
342
+ it('does not call onChange when readonly', () => {
343
+ const handleChange = vi.fn();
344
+ render(<Checkbox readonly onChange={handleChange} />);
345
+
346
+ const checkbox = screen.getByTestId('checkbox');
347
+ fireEvent.click(checkbox);
348
+
349
+ expect(handleChange).not.toHaveBeenCalled();
350
+ });
351
+ });
352
+
353
+ describe('Validation', () => {
354
+ it('validates required rule', async () => {
355
+ const rules = [{ required: true, message: 'This field is required' }];
356
+ render(<Checkbox rules={rules} validateTrigger="onChange" />);
357
+
358
+ const checkbox = screen.getByTestId('checkbox');
359
+ fireEvent.click(checkbox);
360
+
361
+ await waitFor(() => {
362
+ // Check that validation result is stored
363
+ expect(checkbox).toHaveAttribute('data-checked', 'true');
364
+ });
365
+ });
366
+
367
+ it('validates custom validator', async () => {
368
+ const validator = vi.fn().mockReturnValue('Custom error message');
369
+ render(<Checkbox validator={validator} validateTrigger="onChange" />);
370
+
371
+ const checkbox = screen.getByTestId('checkbox');
372
+ fireEvent.click(checkbox);
373
+
374
+ await waitFor(() => {
375
+ expect(validator).toHaveBeenCalled();
376
+ });
377
+ });
378
+
379
+ it('shows validation error message', () => {
380
+ const rules = [{ required: true, message: 'Required field' }];
381
+ render(<Checkbox rules={rules} status="error" />);
382
+
383
+ const checkbox = screen.getByTestId('checkbox');
384
+ expect(checkbox).toBeInTheDocument();
385
+ });
386
+ });
387
+
388
+ describe('Ref Methods', () => {
389
+ it('provides ref methods', () => {
390
+ const ref = React.createRef<CheckboxRef>();
391
+ act(() => {
392
+ render(<Checkbox ref={ref} />);
393
+ });
394
+
395
+ expect(ref.current).toBeTruthy();
396
+ expect(typeof ref.current?.getChecked).toBe('function');
397
+ expect(typeof ref.current?.setChecked).toBe('function');
398
+ expect(typeof ref.current?.toggle).toBe('function');
399
+ expect(typeof ref.current?.setDisabled).toBe('function');
400
+ expect(typeof ref.current?.setReadonly).toBe('function');
401
+ expect(typeof ref.current?.setIndeterminate).toBe('function');
402
+ expect(typeof ref.current?.setStatus).toBe('function');
403
+ expect(typeof ref.current?.getStatus).toBe('function');
404
+ expect(typeof ref.current?.setSize).toBe('function');
405
+ expect(typeof ref.current?.setColor).toBe('function');
406
+ expect(typeof ref.current?.validate).toBe('function');
407
+ expect(typeof ref.current?.reset).toBe('function');
408
+ expect(typeof ref.current?.focus).toBe('function');
409
+ expect(typeof ref.current?.blur).toBe('function');
410
+ expect(typeof ref.current?.getData).toBe('function');
411
+ expect(typeof ref.current?.setData).toBe('function');
412
+ expect(typeof ref.current?.shake).toBe('function');
413
+ expect(typeof ref.current?.pulse).toBe('function');
414
+ });
415
+
416
+ it('gets checked state via ref', () => {
417
+ const ref = React.createRef<CheckboxRef>();
418
+ act(() => {
419
+ render(<Checkbox ref={ref} checked={true} />);
420
+ });
421
+
422
+ expect(ref.current?.getChecked()).toBe(true);
423
+ });
424
+
425
+ it('sets checked state via ref', () => {
426
+ const ref = React.createRef<CheckboxRef>();
427
+ act(() => {
428
+ render(<Checkbox ref={ref} defaultChecked={false} />);
429
+ });
430
+
431
+ act(() => {
432
+ ref.current?.setChecked(true);
433
+ });
434
+
435
+ expect(ref.current?.getChecked()).toBe(true);
436
+ });
437
+
438
+ it('toggles checked state via ref', () => {
439
+ const ref = React.createRef<CheckboxRef>();
440
+ act(() => {
441
+ render(<Checkbox ref={ref} defaultChecked={false} />);
442
+ });
443
+
444
+ act(() => {
445
+ ref.current?.toggle();
446
+ });
447
+
448
+ expect(ref.current?.getChecked()).toBe(true);
449
+ });
450
+
451
+ it('sets disabled state via ref', () => {
452
+ const ref = React.createRef<CheckboxRef>();
453
+ act(() => {
454
+ render(<Checkbox ref={ref} />);
455
+ });
456
+
457
+ act(() => {
458
+ ref.current?.setDisabled(true);
459
+ });
460
+
461
+ expect(ref.current?.getStatus()).toBe('disabled');
462
+ });
463
+
464
+ it('validates via ref', async () => {
465
+ const rules = [{ required: true, message: 'Required' }];
466
+ const ref = React.createRef<CheckboxRef>();
467
+ act(() => {
468
+ render(<Checkbox ref={ref} rules={rules} />);
469
+ });
470
+
471
+ const result = await ref.current?.validate();
472
+
473
+ expect(result?.valid).toBe(false);
474
+ expect(result?.message).toBe('Required');
475
+ });
476
+
477
+ it('resets via ref', () => {
478
+ const ref = React.createRef<CheckboxRef>();
479
+ act(() => {
480
+ render(<Checkbox ref={ref} defaultChecked={true} />);
481
+ });
482
+
483
+ act(() => {
484
+ ref.current?.reset();
485
+ });
486
+
487
+ expect(ref.current?.getChecked()).toBe(true);
488
+ });
489
+
490
+ it('gets and sets data via ref', () => {
491
+ const ref = React.createRef<CheckboxRef>();
492
+ const testData = { id: 'test', category: 'form' };
493
+ act(() => {
494
+ render(<Checkbox ref={ref} data={testData} />);
495
+ });
496
+
497
+ expect(ref.current?.getData()).toEqual(testData);
498
+
499
+ const newData = { id: 'updated', category: 'updated' };
500
+ act(() => {
501
+ ref.current?.setData(newData);
502
+ });
503
+
504
+ // Note: setData is a mock function that logs to console
505
+ expect(ref.current?.getData()).toEqual(testData); // Should remain unchanged
506
+ });
507
+
508
+ it('calls shake method via ref', () => {
509
+ const ref = React.createRef<CheckboxRef>();
510
+ act(() => {
511
+ render(<Checkbox ref={ref} />);
512
+ });
513
+
514
+ expect(() => {
515
+ act(() => {
516
+ ref.current?.shake();
517
+ });
518
+ }).not.toThrow();
519
+ });
520
+
521
+ it('calls pulse method via ref', () => {
522
+ const ref = React.createRef<CheckboxRef>();
523
+ act(() => {
524
+ render(<Checkbox ref={ref} />);
525
+ });
526
+
527
+ expect(() => {
528
+ act(() => {
529
+ ref.current?.pulse();
530
+ });
531
+ }).not.toThrow();
532
+ });
533
+ });
534
+
535
+ describe('Accessibility', () => {
536
+ it('has proper accessibility attributes', () => {
537
+ render(<Checkbox accessibilityLabel="Test checkbox" />);
538
+ const checkbox = screen.getByTestId('checkbox');
539
+ expect(checkbox).toHaveAttribute('aria-label', 'Test checkbox');
540
+ expect(checkbox).toHaveAttribute('role', 'checkbox');
541
+ });
542
+
543
+ it('has correct accessibility state', () => {
544
+ render(<Checkbox checked={true} disabled={true} />);
545
+ const checkbox = screen.getByTestId('checkbox');
546
+ expect(checkbox).toHaveAttribute('aria-checked', 'true');
547
+ expect(checkbox).toHaveAttribute('aria-disabled', 'true');
548
+ });
549
+
550
+ it('supports custom accessibility state', () => {
551
+ const customState = { busy: true, expanded: false };
552
+ render(<Checkbox accessibilityState={customState} />);
553
+ const checkbox = screen.getByTestId('checkbox');
554
+ expect(checkbox).toHaveAttribute('aria-busy', 'true');
555
+ expect(checkbox).toHaveAttribute('aria-expanded', 'false');
556
+ });
557
+ });
558
+
559
+ describe('Platform Compatibility', () => {
560
+ it('renders on H5 platform', () => {
561
+ render(<Checkbox />);
562
+ const checkbox = screen.getByTestId('checkbox');
563
+ expect(checkbox).toBeInTheDocument();
564
+ });
565
+
566
+ it('handles touch events', () => {
567
+ const handleChange = vi.fn();
568
+ render(<Checkbox onChange={handleChange} />);
569
+
570
+ const checkbox = screen.getByTestId('checkbox');
571
+ fireEvent.click(checkbox);
572
+
573
+ expect(handleChange).toHaveBeenCalled();
574
+ });
575
+
576
+ it('supports custom styling', () => {
577
+ const customStyle = { backgroundColor: 'red', color: 'white' };
578
+ render(<Checkbox style={customStyle} />);
579
+
580
+ const checkbox = screen.getByTestId('checkbox');
581
+ expect(checkbox).toHaveStyle('background-color: red');
582
+ expect(checkbox).toHaveStyle('color: white');
583
+ });
584
+ });
585
+
586
+ describe('Performance', () => {
587
+ it('handles rapid clicks without errors', () => {
588
+ const handleChange = vi.fn();
589
+ render(<Checkbox onChange={handleChange} />);
590
+
591
+ const checkbox = screen.getByTestId('checkbox');
592
+
593
+ // Rapid clicks
594
+ for (let i = 0; i < 10; i++) {
595
+ fireEvent.click(checkbox);
596
+ }
597
+
598
+ expect(handleChange).toHaveBeenCalledTimes(10);
599
+ });
600
+
601
+ it('does not re-render unnecessarily', () => {
602
+ const handleChange = vi.fn();
603
+ const { rerender } = render(<Checkbox onChange={handleChange} />);
604
+
605
+ const checkbox = screen.getByTestId('checkbox');
606
+ const initialRenderCount = handleChange.mock.calls.length;
607
+
608
+ rerender(<Checkbox onChange={handleChange} />);
609
+
610
+ expect(handleChange.mock.calls.length).toBe(initialRenderCount);
611
+ });
612
+
613
+ it('handles animation states correctly', () => {
614
+ const handleChange = vi.fn();
615
+ render(<Checkbox onChange={handleChange} animation={true} />);
616
+
617
+ const checkbox = screen.getByTestId('checkbox');
618
+
619
+ fireEvent.click(checkbox);
620
+
621
+ // Should handle animation without errors
622
+ expect(handleChange).toHaveBeenCalled();
623
+ });
624
+
625
+ it('handles ripple effects correctly', () => {
626
+ const handleChange = vi.fn();
627
+ render(<Checkbox onChange={handleChange} ripple={true} />);
628
+
629
+ const checkbox = screen.getByTestId('checkbox');
630
+
631
+ fireEvent.click(checkbox);
632
+
633
+ // Should handle ripple without errors
634
+ expect(handleChange).toHaveBeenCalled();
635
+ });
636
+ });
637
+
638
+ describe('Advanced Features', () => {
639
+ it('handles custom icons correctly', () => {
640
+ const checkedIcon = '✓';
641
+ const uncheckedIcon = '✗';
642
+ const indeterminateIcon = '−';
643
+
644
+ const { rerender } = render(
645
+ <Checkbox
646
+ checked={true}
647
+ checkedIcon={checkedIcon}
648
+ uncheckedIcon={uncheckedIcon}
649
+ indeterminateIcon={indeterminateIcon}
650
+ />
651
+ );
652
+
653
+ expect(screen.getByText(checkedIcon)).toBeInTheDocument();
654
+
655
+ rerender(
656
+ <Checkbox
657
+ checked={false}
658
+ checkedIcon={checkedIcon}
659
+ uncheckedIcon={uncheckedIcon}
660
+ indeterminateIcon={indeterminateIcon}
661
+ />
662
+ );
663
+
664
+ expect(screen.getByText(uncheckedIcon)).toBeInTheDocument();
665
+
666
+ rerender(
667
+ <Checkbox
668
+ indeterminate={true}
669
+ checkedIcon={checkedIcon}
670
+ uncheckedIcon={uncheckedIcon}
671
+ indeterminateIcon={indeterminateIcon}
672
+ />
673
+ );
674
+
675
+ expect(screen.getByText(indeterminateIcon)).toBeInTheDocument();
676
+ });
677
+
678
+ it('handles auto focus correctly', async () => {
679
+ const handleFocus = vi.fn();
680
+ act(() => {
681
+ render(<Checkbox autoFocus={true} onFocus={handleFocus} />);
682
+ });
683
+
684
+ // Auto focus should trigger focus event
685
+ await waitFor(() => expect(handleFocus).toHaveBeenCalled());
686
+ });
687
+
688
+ it('handles custom tab index correctly', () => {
689
+ render(<Checkbox tabIndex={5} />);
690
+
691
+ const checkbox = screen.getByTestId('checkbox');
692
+ expect(checkbox).toHaveAttribute('tabindex', '5');
693
+ });
694
+
695
+ it('handles data attributes correctly', () => {
696
+ const testData = { id: 'test', category: 'form' };
697
+ render(<Checkbox value="test-value" />);
698
+
699
+ const checkbox = screen.getByTestId('checkbox');
700
+ expect(checkbox).toHaveAttribute('data-value', 'test-value');
701
+ expect(checkbox).toHaveAttribute('data-checked', 'false');
702
+ });
703
+
704
+ it('handles different label positions correctly', () => {
705
+ const { rerender } = render(<Checkbox label="Test Label" labelPosition="right" />);
706
+
707
+ expect(screen.getByText('Test Label')).toBeInTheDocument();
708
+
709
+ rerender(<Checkbox label="Test Label" labelPosition="left" />);
710
+
711
+ expect(screen.getByText('Test Label')).toBeInTheDocument();
712
+ });
713
+
714
+ it('handles bordered and rounded variations correctly', () => {
715
+ const { rerender } = render(<Checkbox bordered={true} rounded={true} />);
716
+
717
+ let checkbox = screen.getByTestId('checkbox');
718
+ expect(checkbox).toHaveClass('checkbox-bordered');
719
+ expect(checkbox).toHaveClass('checkbox-rounded');
720
+
721
+ rerender(<Checkbox bordered={false} rounded={false} />);
722
+
723
+ checkbox = screen.getByTestId('checkbox');
724
+ expect(checkbox).not.toHaveClass('checkbox-bordered');
725
+ expect(checkbox).not.toHaveClass('checkbox-rounded');
726
+ });
727
+ });
728
+ });
729
+
730
+ describe('CheckboxGroup Component', () => {
731
+ const mockOptions = [
732
+ { label: 'Option 1', value: '1' },
733
+ { label: 'Option 2', value: '2' },
734
+ { label: 'Option 3', value: '3' },
735
+ ];
736
+
737
+ beforeEach(() => {
738
+ vi.clearAllMocks();
739
+ });
740
+
741
+ describe('Rendering', () => {
742
+ it('renders CheckboxGroup with options', () => {
743
+ render(<CheckboxGroup options={mockOptions} />);
744
+
745
+ expect(screen.getByText('Option 1')).toBeInTheDocument();
746
+ expect(screen.getByText('Option 2')).toBeInTheDocument();
747
+ expect(screen.getByText('Option 3')).toBeInTheDocument();
748
+ });
749
+
750
+ it('renders with group title', () => {
751
+ render(<CheckboxGroup options={mockOptions} groupTitle="Select options" />);
752
+
753
+ expect(screen.getByText('Select options')).toBeInTheDocument();
754
+ });
755
+
756
+ it('renders with group description', () => {
757
+ render(<CheckboxGroup options={mockOptions} groupDescription="Please select your options" />);
758
+
759
+ expect(screen.getByText('Please select your options')).toBeInTheDocument();
760
+ });
761
+
762
+ it('renders with select all button', () => {
763
+ render(<CheckboxGroup options={mockOptions} showSelectAll={true} />);
764
+
765
+ expect(screen.getByText('全选')).toBeInTheDocument();
766
+ });
767
+
768
+ it('renders with count display', () => {
769
+ render(<CheckboxGroup options={mockOptions} showCount={true} />);
770
+
771
+ expect(screen.getByText(/已选择/)).toBeInTheDocument();
772
+ });
773
+ });
774
+
775
+ describe('Value Handling', () => {
776
+ it('handles controlled mode', () => {
777
+ const handleChange = vi.fn();
778
+ render(<CheckboxGroup options={mockOptions} value={['1']} onChange={handleChange} />);
779
+
780
+ const checkbox1 = screen.getByRole('checkbox', { name: /Option 1/ });
781
+ fireEvent.click(checkbox1);
782
+
783
+ expect(handleChange).toHaveBeenCalledWith([]);
784
+ });
785
+
786
+ it('handles uncontrolled mode', () => {
787
+ const handleChange = vi.fn();
788
+ render(<CheckboxGroup options={mockOptions} defaultValue={['1']} onChange={handleChange} />);
789
+
790
+ const checkbox2 = screen.getByRole('checkbox', { name: /Option 2/ });
791
+ fireEvent.click(checkbox2);
792
+
793
+ expect(handleChange).toHaveBeenCalledWith(['1', '2']);
794
+ });
795
+
796
+ it('respects max count limit', () => {
797
+ const handleChange = vi.fn();
798
+ render(<CheckboxGroup options={mockOptions} maxCount={2} onChange={handleChange} />);
799
+
800
+ const checkbox1 = screen.getByRole('checkbox', { name: /Option 1/ });
801
+ const checkbox2 = screen.getByRole('checkbox', { name: /Option 2/ });
802
+ const checkbox3 = screen.getByRole('checkbox', { name: /Option 3/ });
803
+
804
+ fireEvent.click(checkbox1);
805
+ fireEvent.click(checkbox2);
806
+ fireEvent.click(checkbox3);
807
+
808
+ expect(handleChange).toHaveBeenCalledTimes(2);
809
+ });
810
+
811
+ it('respects min count limit', () => {
812
+ const handleChange = vi.fn();
813
+ render(<CheckboxGroup options={mockOptions} defaultValue={['1', '2']} minCount={1} onChange={handleChange} />);
814
+
815
+ const checkbox1 = screen.getByRole('checkbox', { name: /Option 1/ });
816
+ const checkbox2 = screen.getByRole('checkbox', { name: /Option 2/ });
817
+
818
+ fireEvent.click(checkbox1);
819
+ fireEvent.click(checkbox2);
820
+
821
+ // Should not allow deselecting below min count
822
+ expect(handleChange).not.toHaveBeenCalledWith([]);
823
+ });
824
+ });
825
+
826
+ describe('Group Operations', () => {
827
+ it('handles select all functionality', () => {
828
+ const handleChange = vi.fn();
829
+ const handleAllChange = vi.fn();
830
+ render(
831
+ <CheckboxGroup
832
+ options={mockOptions}
833
+ showSelectAll={true}
834
+ onChange={handleChange}
835
+ onAllChange={handleAllChange}
836
+ />
837
+ );
838
+
839
+ const selectAllButton = screen.getByText('全选');
840
+ fireEvent.click(selectAllButton);
841
+
842
+ expect(handleChange).toHaveBeenCalledWith(['1', '2', '3']);
843
+ expect(handleAllChange).toHaveBeenCalledWith(true);
844
+ });
845
+
846
+ it('handles deselect all functionality', () => {
847
+ const handleChange = vi.fn();
848
+ const handleAllChange = vi.fn();
849
+ render(
850
+ <CheckboxGroup
851
+ options={mockOptions}
852
+ value={['1', '2', '3']}
853
+ showSelectAll={true}
854
+ onChange={handleChange}
855
+ onAllChange={handleAllChange}
856
+ />
857
+ );
858
+
859
+ const selectAllButton = screen.getByText('全选');
860
+ fireEvent.click(selectAllButton);
861
+
862
+ expect(handleChange).toHaveBeenCalledWith([]);
863
+ expect(handleAllChange).toHaveBeenCalledWith(false);
864
+ });
865
+
866
+ it('calculates group state correctly', () => {
867
+ const { rerender } = render(<CheckboxGroup options={mockOptions} value={['1']} showCount={true} />);
868
+
869
+ expect(screen.getByText(/已选择 1 项/)).toBeInTheDocument();
870
+
871
+ rerender(<CheckboxGroup options={mockOptions} value={['1', '2', '3']} showCount={true} />);
872
+
873
+ expect(screen.getByText(/已选择 3 项/)).toBeInTheDocument();
874
+ });
875
+ });
876
+
877
+ describe('Layout and Styling', () => {
878
+ it('renders in horizontal direction', () => {
879
+ render(<CheckboxGroup options={mockOptions} direction="horizontal" />);
880
+
881
+ const container = screen.getByRole('group');
882
+ expect(container).toHaveStyle({ flexDirection: 'row' });
883
+ });
884
+
885
+ it('renders in vertical direction', () => {
886
+ render(<CheckboxGroup options={mockOptions} direction="vertical" />);
887
+
888
+ const container = screen.getByRole('group');
889
+ expect(container).toHaveStyle({ flexDirection: 'column' });
890
+ });
891
+
892
+ it('applies compact layout', () => {
893
+ render(<CheckboxGroup options={mockOptions} compact={true} />);
894
+
895
+ const container = screen.getByRole('group');
896
+ expect(container).toHaveStyle({ gap: '4px' });
897
+ });
898
+
899
+ it('applies block layout', () => {
900
+ render(<CheckboxGroup options={mockOptions} block={true} />);
901
+
902
+ const container = screen.getByRole('group');
903
+ expect(container).toHaveStyle({ width: '100%' });
904
+ });
905
+ });
906
+
907
+ describe('Ref Methods', () => {
908
+ it('provides ref methods', () => {
909
+ const ref = React.createRef<CheckboxGroupRef>();
910
+ render(<CheckboxGroup ref={ref} options={mockOptions} />);
911
+
912
+ expect(ref.current).toBeTruthy();
913
+ expect(typeof ref.current?.getValue).toBe('function');
914
+ expect(typeof ref.current?.setValue).toBe('function');
915
+ expect(typeof ref.current?.selectAll).toBe('function');
916
+ expect(typeof ref.current?.unselectAll).toBe('function');
917
+ expect(typeof ref.current?.toggleAll).toBe('function');
918
+ expect(typeof ref.current?.getCheckedCount).toBe('function');
919
+ expect(typeof ref.current?.getTotalCount).toBe('function');
920
+ expect(typeof ref.current?.isAllSelected).toBe('function');
921
+ expect(typeof ref.current?.isIndeterminate).toBe('function');
922
+ });
923
+
924
+ it('gets and sets values via ref', () => {
925
+ const ref = React.createRef<CheckboxGroupRef>();
926
+ render(<CheckboxGroup ref={ref} options={mockOptions} />);
927
+
928
+ expect(ref.current?.getValue()).toEqual([]);
929
+
930
+ act(() => {
931
+ ref.current?.setValue(['1', '2']);
932
+ });
933
+
934
+ expect(ref.current?.getValue()).toEqual(['1', '2']);
935
+ });
936
+
937
+ it('selects all via ref', () => {
938
+ const ref = React.createRef<CheckboxGroupRef>();
939
+ render(<CheckboxGroup ref={ref} options={mockOptions} />);
940
+
941
+ act(() => {
942
+ ref.current?.selectAll();
943
+ });
944
+
945
+ expect(ref.current?.getValue()).toEqual(['1', '2', '3']);
946
+ });
947
+
948
+ it('unselects all via ref', () => {
949
+ const ref = React.createRef<CheckboxGroupRef>();
950
+ render(<CheckboxGroup ref={ref} options={mockOptions} defaultValue={['1', '2']} />);
951
+
952
+ act(() => {
953
+ ref.current?.unselectAll();
954
+ });
955
+
956
+ expect(ref.current?.getValue()).toEqual([]);
957
+ });
958
+
959
+ it('gets checked count via ref', () => {
960
+ const ref = React.createRef<CheckboxGroupRef>();
961
+ render(<CheckboxGroup ref={ref} options={mockOptions} defaultValue={['1', '2']} />);
962
+
963
+ expect(ref.current?.getCheckedCount()).toBe(2);
964
+ expect(ref.current?.getTotalCount()).toBe(3);
965
+ });
966
+
967
+ it('checks selection state via ref', () => {
968
+ const ref = React.createRef<CheckboxGroupRef>();
969
+ render(<CheckboxGroup ref={ref} options={mockOptions} defaultValue={['1']} />);
970
+
971
+ expect(ref.current?.isAllSelected()).toBe(false);
972
+ expect(ref.current?.isIndeterminate()).toBe(true);
973
+ });
974
+
975
+ it('validates via ref', async () => {
976
+ const ref = React.createRef<CheckboxGroupRef>();
977
+ render(<CheckboxGroup ref={ref} options={mockOptions} minCount={2} />);
978
+
979
+ const result = await ref.current?.validate();
980
+
981
+ expect(result?.valid).toBe(false);
982
+ expect(result?.message).toContain('最少需要选择 2 项');
983
+ });
984
+ });
985
+
986
+ describe('Accessibility', () => {
987
+ it('has proper accessibility attributes', () => {
988
+ render(<CheckboxGroup options={mockOptions} accessibilityLabel="Test group" />);
989
+
990
+ const group = screen.getByRole('group');
991
+ expect(group).toHaveAttribute('aria-label', 'Test group');
992
+ expect(group).toHaveAttribute('aria-role', 'group');
993
+ });
994
+
995
+ it('supports disabled state', () => {
996
+ render(<CheckboxGroup options={mockOptions} disabled={true} />);
997
+
998
+ const checkboxes = screen.getAllByRole('checkbox');
999
+ checkboxes.forEach(checkbox => {
1000
+ expect(checkbox).toBeDisabled();
1001
+ });
1002
+ });
1003
+
1004
+ it('supports readonly state', () => {
1005
+ render(<CheckboxGroup options={mockOptions} readonly={true} />);
1006
+
1007
+ const checkboxes = screen.getAllByRole('checkbox');
1008
+ checkboxes.forEach(checkbox => {
1009
+ expect(checkbox).toHaveAttribute('data-readonly', 'true');
1010
+ });
1011
+ });
1012
+ });
1013
+
1014
+ describe('Edge Cases', () => {
1015
+ it('handles empty options array', () => {
1016
+ render(<CheckboxGroup options={[]} />);
1017
+
1018
+ const group = screen.getByRole('group');
1019
+ expect(group).toBeEmptyDOMElement();
1020
+ });
1021
+
1022
+ it('handles disabled options', () => {
1023
+ const optionsWithDisabled = [
1024
+ ...mockOptions,
1025
+ { label: 'Disabled Option', value: '4', disabled: true },
1026
+ ];
1027
+
1028
+ render(<CheckboxGroup options={optionsWithDisabled} />);
1029
+
1030
+ const disabledCheckbox = screen.getByRole('checkbox', { name: /Disabled Option/ });
1031
+ expect(disabledCheckbox).toBeDisabled();
1032
+ });
1033
+
1034
+ it('handles options with descriptions', () => {
1035
+ const optionsWithDescriptions = mockOptions.map(option => ({
1036
+ ...option,
1037
+ description: `Description for ${option.label}`,
1038
+ }));
1039
+
1040
+ render(<CheckboxGroup options={optionsWithDescriptions} />);
1041
+
1042
+ expect(screen.getByText('Description for Option 1')).toBeInTheDocument();
1043
+ expect(screen.getByText('Description for Option 2')).toBeInTheDocument();
1044
+ expect(screen.getByText('Description for Option 3')).toBeInTheDocument();
1045
+ });
1046
+
1047
+ it('handles toggleAll functionality correctly', () => {
1048
+ const ref = React.createRef<CheckboxGroupRef>();
1049
+ const handleChange = vi.fn();
1050
+ render(<CheckboxGroup ref={ref} options={mockOptions} onChange={handleChange} />);
1051
+
1052
+ // Initially nothing selected
1053
+ expect(ref.current?.isAllSelected()).toBe(false);
1054
+ expect(ref.current?.isIndeterminate()).toBe(false);
1055
+
1056
+ // Toggle all should select everything
1057
+ act(() => {
1058
+ ref.current?.toggleAll();
1059
+ });
1060
+
1061
+ expect(ref.current?.isAllSelected()).toBe(true);
1062
+ expect(ref.current?.isIndeterminate()).toBe(false);
1063
+ expect(handleChange).toHaveBeenCalledWith(['1', '2', '3']);
1064
+
1065
+ // Toggle all again should deselect everything
1066
+ act(() => {
1067
+ ref.current?.toggleAll();
1068
+ });
1069
+
1070
+ expect(ref.current?.isAllSelected()).toBe(false);
1071
+ expect(ref.current?.isIndeterminate()).toBe(false);
1072
+ expect(handleChange).toHaveBeenCalledWith([]);
1073
+ });
1074
+
1075
+ it('handles custom count text correctly', () => {
1076
+ const customCountText = (selected: number, total: number) =>
1077
+ `Selected: ${selected} of ${total}`;
1078
+
1079
+ render(
1080
+ <CheckboxGroup
1081
+ options={mockOptions}
1082
+ value={['1', '2']}
1083
+ showCount={true}
1084
+ countText={customCountText}
1085
+ />
1086
+ );
1087
+
1088
+ expect(screen.getByText('Selected: 2 of 3')).toBeInTheDocument();
1089
+ });
1090
+
1091
+ it('handles custom select all text correctly', () => {
1092
+ render(
1093
+ <CheckboxGroup
1094
+ options={mockOptions}
1095
+ showSelectAll={true}
1096
+ selectAllText="Select All Options"
1097
+ />
1098
+ );
1099
+
1100
+ expect(screen.getByText('Select All Options')).toBeInTheDocument();
1101
+ });
1102
+
1103
+ it('handles allowDeselectAll functionality correctly', () => {
1104
+ const handleChange = vi.fn();
1105
+ const { rerender } = render(
1106
+ <CheckboxGroup
1107
+ options={mockOptions}
1108
+ value={['1', '2', '3']}
1109
+ showSelectAll={true}
1110
+ allowDeselectAll={true}
1111
+ onChange={handleChange}
1112
+ />
1113
+ );
1114
+
1115
+ const selectAllButton = screen.getByText('全选');
1116
+ fireEvent.click(selectAllButton);
1117
+
1118
+ expect(handleChange).toHaveBeenCalledWith([]);
1119
+ });
1120
+
1121
+ it('prevents deselection when allowDeselectAll is false', () => {
1122
+ const handleChange = vi.fn();
1123
+ render(
1124
+ <CheckboxGroup
1125
+ options={mockOptions}
1126
+ value={['1', '2', '3']}
1127
+ showSelectAll={true}
1128
+ allowDeselectAll={false}
1129
+ onChange={handleChange}
1130
+ />
1131
+ );
1132
+
1133
+ const selectAllButton = screen.getByText('全选');
1134
+ fireEvent.click(selectAllButton);
1135
+
1136
+ // Should not deselect when allowDeselectAll is false
1137
+ expect(handleChange).not.toHaveBeenCalled();
1138
+ });
1139
+ });
1140
+ });