@soadtech/cli 0.1.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 (353) hide show
  1. package/dist/index.js +272 -0
  2. package/package.json +24 -0
  3. package/registry/base/cn.ts +5 -0
  4. package/registry/base/css-modules.d.ts +4 -0
  5. package/registry/base/theme/reset.css +43 -0
  6. package/registry/base/theme/tokens.css +154 -0
  7. package/registry/components/Accordion/Accordion.module.css +3 -0
  8. package/registry/components/Accordion/Accordion.tsx +54 -0
  9. package/registry/components/Accordion/Accordion.types.ts +17 -0
  10. package/registry/components/Accordion/AccordionContext.ts +18 -0
  11. package/registry/components/Accordion/AccordionItem.module.css +124 -0
  12. package/registry/components/Accordion/AccordionItem.tsx +148 -0
  13. package/registry/components/Accordion/AccordionItem.types.ts +14 -0
  14. package/registry/components/Accordion/index.ts +8 -0
  15. package/registry/components/ActionBar/ActionBar.module.css +18 -0
  16. package/registry/components/ActionBar/ActionBar.tsx +21 -0
  17. package/registry/components/ActionBar/ActionBar.types.ts +8 -0
  18. package/registry/components/ActionBar/ActionBarLink.module.css +31 -0
  19. package/registry/components/ActionBar/ActionBarLink.tsx +55 -0
  20. package/registry/components/ActionBar/ActionBarLink.types.ts +7 -0
  21. package/registry/components/ActionBar/index.ts +4 -0
  22. package/registry/components/Alert/Alert.module.css +172 -0
  23. package/registry/components/Alert/Alert.tsx +146 -0
  24. package/registry/components/Alert/Alert.types.ts +25 -0
  25. package/registry/components/Alert/index.ts +7 -0
  26. package/registry/components/Avatar/Avatar.module.css +100 -0
  27. package/registry/components/Avatar/Avatar.tsx +54 -0
  28. package/registry/components/Avatar/Avatar.types.ts +18 -0
  29. package/registry/components/Avatar/AvatarGroup.module.css +64 -0
  30. package/registry/components/Avatar/AvatarGroup.tsx +65 -0
  31. package/registry/components/Avatar/AvatarGroup.types.ts +13 -0
  32. package/registry/components/Avatar/index.ts +8 -0
  33. package/registry/components/Badge/Badge.module.css +92 -0
  34. package/registry/components/Badge/Badge.tsx +89 -0
  35. package/registry/components/Badge/Badge.types.ts +20 -0
  36. package/registry/components/Badge/TrendBadge.module.css +47 -0
  37. package/registry/components/Badge/TrendBadge.tsx +65 -0
  38. package/registry/components/Badge/TrendBadge.types.ts +15 -0
  39. package/registry/components/Badge/index.ts +14 -0
  40. package/registry/components/Breadcrumbs/BreadcrumbItem.tsx +41 -0
  41. package/registry/components/Breadcrumbs/Breadcrumbs.module.css +81 -0
  42. package/registry/components/Breadcrumbs/Breadcrumbs.tsx +71 -0
  43. package/registry/components/Breadcrumbs/Breadcrumbs.types.ts +22 -0
  44. package/registry/components/Breadcrumbs/index.ts +7 -0
  45. package/registry/components/Button/Button.module.css +169 -0
  46. package/registry/components/Button/Button.tsx +43 -0
  47. package/registry/components/Button/Button.types.ts +18 -0
  48. package/registry/components/Button/index.ts +7 -0
  49. package/registry/components/ButtonLink/ButtonLink.module.css +85 -0
  50. package/registry/components/ButtonLink/ButtonLink.tsx +42 -0
  51. package/registry/components/ButtonLink/ButtonLink.types.ts +18 -0
  52. package/registry/components/ButtonLink/index.ts +6 -0
  53. package/registry/components/Calendar/Calendar.module.css +213 -0
  54. package/registry/components/Calendar/Calendar.tsx +370 -0
  55. package/registry/components/Calendar/Calendar.types.ts +28 -0
  56. package/registry/components/Calendar/CalendarDialog.module.css +29 -0
  57. package/registry/components/Calendar/CalendarDialog.tsx +173 -0
  58. package/registry/components/Calendar/CalendarDialog.types.ts +30 -0
  59. package/registry/components/Calendar/index.ts +9 -0
  60. package/registry/components/Card/Card.module.css +35 -0
  61. package/registry/components/Card/Card.tsx +36 -0
  62. package/registry/components/Card/Card.types.ts +37 -0
  63. package/registry/components/Card/CardContent.module.css +3 -0
  64. package/registry/components/Card/CardContent.tsx +16 -0
  65. package/registry/components/Card/CardFooter.module.css +31 -0
  66. package/registry/components/Card/CardFooter.tsx +34 -0
  67. package/registry/components/Card/CardHeader.module.css +61 -0
  68. package/registry/components/Card/CardHeader.tsx +46 -0
  69. package/registry/components/Card/InsightCard.module.css +106 -0
  70. package/registry/components/Card/InsightCard.tsx +68 -0
  71. package/registry/components/Card/InsightCard.types.ts +24 -0
  72. package/registry/components/Card/KPICard.module.css +31 -0
  73. package/registry/components/Card/KPICard.tsx +29 -0
  74. package/registry/components/Card/KPICard.types.ts +13 -0
  75. package/registry/components/Card/ListItemCard.module.css +59 -0
  76. package/registry/components/Card/ListItemCard.tsx +37 -0
  77. package/registry/components/Card/ListItemCard.types.ts +18 -0
  78. package/registry/components/Card/PlanCard.module.css +125 -0
  79. package/registry/components/Card/PlanCard.tsx +108 -0
  80. package/registry/components/Card/PlanCard.types.ts +30 -0
  81. package/registry/components/Card/ProductCard.module.css +118 -0
  82. package/registry/components/Card/ProductCard.tsx +56 -0
  83. package/registry/components/Card/ProductCard.types.ts +24 -0
  84. package/registry/components/Card/StatCard.module.css +20 -0
  85. package/registry/components/Card/StatCard.tsx +26 -0
  86. package/registry/components/Card/StatCard.types.ts +12 -0
  87. package/registry/components/Card/UserGroupCard.module.css +50 -0
  88. package/registry/components/Card/UserGroupCard.tsx +59 -0
  89. package/registry/components/Card/UserGroupCard.types.ts +23 -0
  90. package/registry/components/Card/index.ts +38 -0
  91. package/registry/components/Chart/BarChart.module.css +54 -0
  92. package/registry/components/Chart/BarChart.tsx +196 -0
  93. package/registry/components/Chart/BarChart.types.ts +20 -0
  94. package/registry/components/Chart/ChartAction.module.css +43 -0
  95. package/registry/components/Chart/ChartAction.tsx +35 -0
  96. package/registry/components/Chart/ChartAction.types.ts +17 -0
  97. package/registry/components/Chart/ChartAxis.module.css +47 -0
  98. package/registry/components/Chart/ChartAxis.tsx +79 -0
  99. package/registry/components/Chart/ChartAxis.types.ts +14 -0
  100. package/registry/components/Chart/ChartLegend.module.css +31 -0
  101. package/registry/components/Chart/ChartLegend.tsx +49 -0
  102. package/registry/components/Chart/ChartLegend.types.ts +18 -0
  103. package/registry/components/Chart/ChartTooltip.module.css +54 -0
  104. package/registry/components/Chart/ChartTooltip.tsx +44 -0
  105. package/registry/components/Chart/ChartTooltip.types.ts +19 -0
  106. package/registry/components/Chart/DonutChart.module.css +32 -0
  107. package/registry/components/Chart/DonutChart.tsx +107 -0
  108. package/registry/components/Chart/DonutChart.types.ts +20 -0
  109. package/registry/components/Chart/GridChart.module.css +26 -0
  110. package/registry/components/Chart/GridChart.tsx +61 -0
  111. package/registry/components/Chart/GridChart.types.ts +14 -0
  112. package/registry/components/Chart/HoverTooltip.module.css +16 -0
  113. package/registry/components/Chart/HoverTooltip.tsx +22 -0
  114. package/registry/components/Chart/KPIIndicator.module.css +48 -0
  115. package/registry/components/Chart/KPIIndicator.tsx +28 -0
  116. package/registry/components/Chart/KPIIndicator.types.ts +16 -0
  117. package/registry/components/Chart/LineChart.module.css +54 -0
  118. package/registry/components/Chart/LineChart.tsx +282 -0
  119. package/registry/components/Chart/LineChart.types.ts +22 -0
  120. package/registry/components/Chart/ProgressChart.module.css +54 -0
  121. package/registry/components/Chart/ProgressChart.tsx +64 -0
  122. package/registry/components/Chart/ProgressChart.types.ts +18 -0
  123. package/registry/components/Chart/TrendLineChart.module.css +5 -0
  124. package/registry/components/Chart/TrendLineChart.tsx +131 -0
  125. package/registry/components/Chart/TrendLineChart.types.ts +19 -0
  126. package/registry/components/Chart/chart.utils.ts +131 -0
  127. package/registry/components/Chart/index.ts +47 -0
  128. package/registry/components/Chart/useChartHover.ts +24 -0
  129. package/registry/components/Checkbox/Checkbox.module.css +101 -0
  130. package/registry/components/Checkbox/Checkbox.tsx +100 -0
  131. package/registry/components/Checkbox/Checkbox.types.ts +11 -0
  132. package/registry/components/Checkbox/CheckboxField.module.css +69 -0
  133. package/registry/components/Checkbox/CheckboxField.tsx +54 -0
  134. package/registry/components/Checkbox/CheckboxField.types.ts +9 -0
  135. package/registry/components/Checkbox/CheckboxGroup.module.css +41 -0
  136. package/registry/components/Checkbox/CheckboxGroup.tsx +60 -0
  137. package/registry/components/Checkbox/CheckboxGroup.types.ts +11 -0
  138. package/registry/components/Checkbox/CheckboxGroupContext.ts +13 -0
  139. package/registry/components/Checkbox/index.ts +11 -0
  140. package/registry/components/Chip/Chip.module.css +143 -0
  141. package/registry/components/Chip/Chip.tsx +93 -0
  142. package/registry/components/Chip/Chip.types.ts +19 -0
  143. package/registry/components/Chip/ChipGroup.module.css +5 -0
  144. package/registry/components/Chip/ChipGroup.tsx +16 -0
  145. package/registry/components/Chip/ChipGroup.types.ts +3 -0
  146. package/registry/components/Chip/index.ts +9 -0
  147. package/registry/components/Datepicker/Datepicker.module.css +133 -0
  148. package/registry/components/Datepicker/Datepicker.tsx +236 -0
  149. package/registry/components/Datepicker/Datepicker.types.ts +36 -0
  150. package/registry/components/Datepicker/index.ts +2 -0
  151. package/registry/components/Dialog/Dialog.module.css +18 -0
  152. package/registry/components/Dialog/Dialog.tsx +69 -0
  153. package/registry/components/Dialog/Dialog.types.ts +45 -0
  154. package/registry/components/Dialog/DialogBody.module.css +3 -0
  155. package/registry/components/Dialog/DialogBody.tsx +16 -0
  156. package/registry/components/Dialog/DialogContext.ts +11 -0
  157. package/registry/components/Dialog/DialogFooter.module.css +38 -0
  158. package/registry/components/Dialog/DialogFooter.tsx +30 -0
  159. package/registry/components/Dialog/DialogHeader.module.css +70 -0
  160. package/registry/components/Dialog/DialogHeader.tsx +72 -0
  161. package/registry/components/Dialog/DialogIcon.module.css +31 -0
  162. package/registry/components/Dialog/DialogIcon.tsx +89 -0
  163. package/registry/components/Dialog/index.ts +14 -0
  164. package/registry/components/Divider/Divider.module.css +19 -0
  165. package/registry/components/Divider/Divider.tsx +20 -0
  166. package/registry/components/Divider/Divider.types.ts +9 -0
  167. package/registry/components/Divider/index.ts +2 -0
  168. package/registry/components/DropdownMenu/DropdownMenu.module.css +9 -0
  169. package/registry/components/DropdownMenu/DropdownMenu.tsx +21 -0
  170. package/registry/components/DropdownMenu/DropdownMenu.types.ts +22 -0
  171. package/registry/components/DropdownMenu/DropdownMenuDivider.module.css +5 -0
  172. package/registry/components/DropdownMenu/DropdownMenuDivider.tsx +20 -0
  173. package/registry/components/DropdownMenu/DropdownMenuHeader.module.css +7 -0
  174. package/registry/components/DropdownMenu/DropdownMenuHeader.tsx +17 -0
  175. package/registry/components/DropdownMenu/DropdownMenuItem.module.css +78 -0
  176. package/registry/components/DropdownMenu/DropdownMenuItem.tsx +40 -0
  177. package/registry/components/DropdownMenu/index.ts +10 -0
  178. package/registry/components/FileUpload/FileUpload.module.css +122 -0
  179. package/registry/components/FileUpload/FileUpload.tsx +354 -0
  180. package/registry/components/FileUpload/FileUpload.types.ts +89 -0
  181. package/registry/components/FileUpload/FileUploadIcon.module.css +61 -0
  182. package/registry/components/FileUpload/FileUploadIcon.tsx +84 -0
  183. package/registry/components/FileUpload/FileUploadInput.module.css +140 -0
  184. package/registry/components/FileUpload/FileUploadInput.tsx +113 -0
  185. package/registry/components/FileUpload/FileUploadItem.module.css +41 -0
  186. package/registry/components/FileUpload/FileUploadItem.tsx +39 -0
  187. package/registry/components/FileUpload/index.ts +12 -0
  188. package/registry/components/InputCounter/InputCounter.module.css +146 -0
  189. package/registry/components/InputCounter/InputCounter.tsx +232 -0
  190. package/registry/components/InputCounter/InputCounter.types.ts +37 -0
  191. package/registry/components/InputCounter/index.ts +7 -0
  192. package/registry/components/InputMessage/InputMessage.module.css +148 -0
  193. package/registry/components/InputMessage/InputMessage.tsx +294 -0
  194. package/registry/components/InputMessage/InputMessage.types.ts +30 -0
  195. package/registry/components/InputMessage/index.ts +2 -0
  196. package/registry/components/InputSearch/InputSearch.module.css +168 -0
  197. package/registry/components/InputSearch/InputSearch.tsx +251 -0
  198. package/registry/components/InputSearch/InputSearch.types.ts +35 -0
  199. package/registry/components/InputSearch/index.ts +6 -0
  200. package/registry/components/InputText/InputText.module.css +183 -0
  201. package/registry/components/InputText/InputText.tsx +244 -0
  202. package/registry/components/InputText/InputText.types.ts +32 -0
  203. package/registry/components/InputText/index.ts +7 -0
  204. package/registry/components/InputTextArea/InputTextArea.module.css +141 -0
  205. package/registry/components/InputTextArea/InputTextArea.tsx +170 -0
  206. package/registry/components/InputTextArea/InputTextArea.types.ts +18 -0
  207. package/registry/components/InputTextArea/index.ts +6 -0
  208. package/registry/components/NavbarUser/NavbarUser.module.css +265 -0
  209. package/registry/components/NavbarUser/NavbarUser.tsx +202 -0
  210. package/registry/components/NavbarUser/NavbarUser.types.ts +31 -0
  211. package/registry/components/NavbarUser/index.ts +2 -0
  212. package/registry/components/Notification/Notification.types.ts +65 -0
  213. package/registry/components/Notification/NotificationItem.module.css +143 -0
  214. package/registry/components/Notification/NotificationItem.tsx +157 -0
  215. package/registry/components/Notification/NotificationPanel.module.css +75 -0
  216. package/registry/components/Notification/NotificationPanel.tsx +68 -0
  217. package/registry/components/Notification/NotificationReply.module.css +56 -0
  218. package/registry/components/Notification/NotificationReply.tsx +52 -0
  219. package/registry/components/Notification/index.ts +9 -0
  220. package/registry/components/Pagination/Pagination.module.css +123 -0
  221. package/registry/components/Pagination/Pagination.tsx +212 -0
  222. package/registry/components/Pagination/Pagination.types.ts +24 -0
  223. package/registry/components/Pagination/PaginationDots.module.css +60 -0
  224. package/registry/components/Pagination/PaginationDots.tsx +48 -0
  225. package/registry/components/Pagination/PaginationDots.types.ts +17 -0
  226. package/registry/components/Pagination/index.ts +12 -0
  227. package/registry/components/Persona/MessageDropdown.module.css +76 -0
  228. package/registry/components/Persona/MessageDropdown.tsx +68 -0
  229. package/registry/components/Persona/Persona.module.css +92 -0
  230. package/registry/components/Persona/Persona.tsx +90 -0
  231. package/registry/components/Persona/Persona.types.ts +71 -0
  232. package/registry/components/Persona/PersonaAction.module.css +80 -0
  233. package/registry/components/Persona/PersonaAction.tsx +49 -0
  234. package/registry/components/Persona/PersonaMessage.module.css +156 -0
  235. package/registry/components/Persona/PersonaMessage.tsx +70 -0
  236. package/registry/components/Persona/index.ts +11 -0
  237. package/registry/components/Progress/Progress.module.css +41 -0
  238. package/registry/components/Progress/Progress.tsx +43 -0
  239. package/registry/components/Progress/Progress.types.ts +10 -0
  240. package/registry/components/Progress/index.ts +2 -0
  241. package/registry/components/RadioButton/RadioButton.module.css +103 -0
  242. package/registry/components/RadioButton/RadioButton.tsx +59 -0
  243. package/registry/components/RadioButton/RadioButton.types.ts +19 -0
  244. package/registry/components/RadioButton/RadioField.module.css +68 -0
  245. package/registry/components/RadioButton/RadioField.tsx +68 -0
  246. package/registry/components/RadioButton/RadioGroup.module.css +41 -0
  247. package/registry/components/RadioButton/RadioGroup.tsx +76 -0
  248. package/registry/components/RadioButton/RadioGroupContext.ts +16 -0
  249. package/registry/components/RadioButton/index.ts +12 -0
  250. package/registry/components/RangeSlider/RangeSlider.module.css +133 -0
  251. package/registry/components/RangeSlider/RangeSlider.tsx +251 -0
  252. package/registry/components/RangeSlider/RangeSlider.types.ts +25 -0
  253. package/registry/components/RangeSlider/index.ts +2 -0
  254. package/registry/components/Rating/Rating.module.css +56 -0
  255. package/registry/components/Rating/Rating.tsx +142 -0
  256. package/registry/components/Rating/Rating.types.ts +14 -0
  257. package/registry/components/Rating/index.ts +7 -0
  258. package/registry/components/SegmentedControl/SegmentedControl.module.css +56 -0
  259. package/registry/components/SegmentedControl/SegmentedControl.tsx +46 -0
  260. package/registry/components/SegmentedControl/SegmentedControl.types.ts +27 -0
  261. package/registry/components/SegmentedControl/SegmentedControlContext.ts +20 -0
  262. package/registry/components/SegmentedControl/SegmentedControlItem.module.css +55 -0
  263. package/registry/components/SegmentedControl/SegmentedControlItem.tsx +32 -0
  264. package/registry/components/SegmentedControl/index.ts +8 -0
  265. package/registry/components/SelectDropdown/SelectDropdown.module.css +214 -0
  266. package/registry/components/SelectDropdown/SelectDropdown.tsx +375 -0
  267. package/registry/components/SelectDropdown/SelectDropdown.types.ts +50 -0
  268. package/registry/components/SelectDropdown/SelectDropdownOption.module.css +101 -0
  269. package/registry/components/SelectDropdown/SelectDropdownOption.tsx +86 -0
  270. package/registry/components/SelectDropdown/SelectDropdownOverlay.module.css +74 -0
  271. package/registry/components/SelectDropdown/SelectDropdownOverlay.tsx +202 -0
  272. package/registry/components/SelectDropdown/index.ts +11 -0
  273. package/registry/components/Sidebar/Sidebar.module.css +14 -0
  274. package/registry/components/Sidebar/Sidebar.tsx +41 -0
  275. package/registry/components/Sidebar/Sidebar.types.ts +41 -0
  276. package/registry/components/Sidebar/SidebarContent.module.css +5 -0
  277. package/registry/components/Sidebar/SidebarContent.tsx +14 -0
  278. package/registry/components/Sidebar/SidebarContext.ts +15 -0
  279. package/registry/components/Sidebar/SidebarDivider.module.css +5 -0
  280. package/registry/components/Sidebar/SidebarDivider.tsx +17 -0
  281. package/registry/components/Sidebar/SidebarFooter.module.css +5 -0
  282. package/registry/components/Sidebar/SidebarFooter.tsx +14 -0
  283. package/registry/components/Sidebar/SidebarGroup.module.css +12 -0
  284. package/registry/components/Sidebar/SidebarGroup.tsx +22 -0
  285. package/registry/components/Sidebar/SidebarHeader.module.css +5 -0
  286. package/registry/components/Sidebar/SidebarHeader.tsx +14 -0
  287. package/registry/components/Sidebar/SidebarNavItem.module.css +176 -0
  288. package/registry/components/Sidebar/SidebarNavItem.tsx +96 -0
  289. package/registry/components/Sidebar/index.ts +16 -0
  290. package/registry/components/Stepper/Stepper.module.css +11 -0
  291. package/registry/components/Stepper/Stepper.tsx +47 -0
  292. package/registry/components/Stepper/Stepper.types.ts +26 -0
  293. package/registry/components/Stepper/StepperContext.ts +17 -0
  294. package/registry/components/Stepper/StepperStep.module.css +183 -0
  295. package/registry/components/Stepper/StepperStep.tsx +204 -0
  296. package/registry/components/Stepper/index.ts +9 -0
  297. package/registry/components/Switch/Switch.module.css +145 -0
  298. package/registry/components/Switch/Switch.tsx +96 -0
  299. package/registry/components/Switch/Switch.types.ts +19 -0
  300. package/registry/components/Switch/SwitchField.module.css +69 -0
  301. package/registry/components/Switch/SwitchField.tsx +49 -0
  302. package/registry/components/Switch/index.ts +8 -0
  303. package/registry/components/Tab/Tab.module.css +20 -0
  304. package/registry/components/Tab/Tab.tsx +35 -0
  305. package/registry/components/Tab/Tab.types.ts +21 -0
  306. package/registry/components/Tab/TabAdd.module.css +36 -0
  307. package/registry/components/Tab/TabAdd.tsx +41 -0
  308. package/registry/components/Tab/TabContext.ts +19 -0
  309. package/registry/components/Tab/TabItem.module.css +145 -0
  310. package/registry/components/Tab/TabItem.tsx +87 -0
  311. package/registry/components/Tab/index.ts +9 -0
  312. package/registry/components/Table/Table.module.css +33 -0
  313. package/registry/components/Table/Table.tsx +74 -0
  314. package/registry/components/Table/Table.types.ts +64 -0
  315. package/registry/components/Table/TableBody.tsx +23 -0
  316. package/registry/components/Table/TableCell.module.css +21 -0
  317. package/registry/components/Table/TableCell.tsx +20 -0
  318. package/registry/components/Table/TableContext.ts +22 -0
  319. package/registry/components/Table/TableFooter.module.css +27 -0
  320. package/registry/components/Table/TableFooter.tsx +20 -0
  321. package/registry/components/Table/TableHeader.module.css +3 -0
  322. package/registry/components/Table/TableHeader.tsx +17 -0
  323. package/registry/components/Table/TableHeaderCell.module.css +55 -0
  324. package/registry/components/Table/TableHeaderCell.tsx +98 -0
  325. package/registry/components/Table/TableRow.module.css +53 -0
  326. package/registry/components/Table/TableRow.tsx +31 -0
  327. package/registry/components/Table/TableToolbar.module.css +7 -0
  328. package/registry/components/Table/TableToolbar.tsx +16 -0
  329. package/registry/components/Table/index.ts +22 -0
  330. package/registry/components/Tag/Tag.module.css +46 -0
  331. package/registry/components/Tag/Tag.tsx +38 -0
  332. package/registry/components/Tag/Tag.types.ts +37 -0
  333. package/registry/components/Tag/TagBrand.module.css +42 -0
  334. package/registry/components/Tag/TagBrand.tsx +38 -0
  335. package/registry/components/Tag/TagStatus.module.css +43 -0
  336. package/registry/components/Tag/TagStatus.tsx +119 -0
  337. package/registry/components/Tag/index.ts +15 -0
  338. package/registry/components/Tooltip/Tooltip.module.css +208 -0
  339. package/registry/components/Tooltip/Tooltip.tsx +81 -0
  340. package/registry/components/Tooltip/Tooltip.types.ts +27 -0
  341. package/registry/components/Tooltip/index.ts +7 -0
  342. package/registry/components/TreeviewList/TreeviewItem.module.css +89 -0
  343. package/registry/components/TreeviewList/TreeviewItem.tsx +142 -0
  344. package/registry/components/TreeviewList/TreeviewList.module.css +3 -0
  345. package/registry/components/TreeviewList/TreeviewList.tsx +19 -0
  346. package/registry/components/TreeviewList/TreeviewList.types.ts +18 -0
  347. package/registry/components/TreeviewList/TreeviewListContext.ts +13 -0
  348. package/registry/components/TreeviewList/index.ts +6 -0
  349. package/registry/components/VerificationCode/VerificationCode.module.css +49 -0
  350. package/registry/components/VerificationCode/VerificationCode.tsx +147 -0
  351. package/registry/components/VerificationCode/VerificationCode.types.ts +21 -0
  352. package/registry/components/VerificationCode/index.ts +2 -0
  353. package/registry/registry.json +746 -0
@@ -0,0 +1,746 @@
1
+ {
2
+ "version": "0.1.0",
3
+ "components": {
4
+ "Accordion": {
5
+ "name": "Accordion",
6
+ "files": [
7
+ "Accordion.module.css",
8
+ "Accordion.tsx",
9
+ "Accordion.types.ts",
10
+ "AccordionContext.ts",
11
+ "AccordionItem.module.css",
12
+ "AccordionItem.tsx",
13
+ "AccordionItem.types.ts",
14
+ "index.ts"
15
+ ],
16
+ "dependencies": [],
17
+ "internalDeps": [
18
+ "utils/cn"
19
+ ]
20
+ },
21
+ "ActionBar": {
22
+ "name": "ActionBar",
23
+ "files": [
24
+ "ActionBar.module.css",
25
+ "ActionBar.tsx",
26
+ "ActionBar.types.ts",
27
+ "ActionBarLink.module.css",
28
+ "ActionBarLink.tsx",
29
+ "ActionBarLink.types.ts",
30
+ "index.ts"
31
+ ],
32
+ "dependencies": [],
33
+ "internalDeps": [
34
+ "utils/cn"
35
+ ]
36
+ },
37
+ "Alert": {
38
+ "name": "Alert",
39
+ "files": [
40
+ "Alert.module.css",
41
+ "Alert.tsx",
42
+ "Alert.types.ts",
43
+ "index.ts"
44
+ ],
45
+ "dependencies": [],
46
+ "internalDeps": [
47
+ "utils/cn"
48
+ ]
49
+ },
50
+ "Avatar": {
51
+ "name": "Avatar",
52
+ "files": [
53
+ "Avatar.module.css",
54
+ "Avatar.tsx",
55
+ "Avatar.types.ts",
56
+ "AvatarGroup.module.css",
57
+ "AvatarGroup.tsx",
58
+ "AvatarGroup.types.ts",
59
+ "index.ts"
60
+ ],
61
+ "dependencies": [],
62
+ "internalDeps": [
63
+ "utils/cn"
64
+ ]
65
+ },
66
+ "Badge": {
67
+ "name": "Badge",
68
+ "files": [
69
+ "Badge.module.css",
70
+ "Badge.tsx",
71
+ "Badge.types.ts",
72
+ "TrendBadge.module.css",
73
+ "TrendBadge.tsx",
74
+ "TrendBadge.types.ts",
75
+ "index.ts"
76
+ ],
77
+ "dependencies": [],
78
+ "internalDeps": [
79
+ "utils/cn"
80
+ ]
81
+ },
82
+ "Breadcrumbs": {
83
+ "name": "Breadcrumbs",
84
+ "files": [
85
+ "BreadcrumbItem.tsx",
86
+ "Breadcrumbs.module.css",
87
+ "Breadcrumbs.tsx",
88
+ "Breadcrumbs.types.ts",
89
+ "index.ts"
90
+ ],
91
+ "dependencies": [],
92
+ "internalDeps": [
93
+ "utils/cn"
94
+ ]
95
+ },
96
+ "Button": {
97
+ "name": "Button",
98
+ "files": [
99
+ "Button.module.css",
100
+ "Button.tsx",
101
+ "Button.types.ts",
102
+ "index.ts"
103
+ ],
104
+ "dependencies": [],
105
+ "internalDeps": [
106
+ "utils/cn"
107
+ ]
108
+ },
109
+ "ButtonLink": {
110
+ "name": "ButtonLink",
111
+ "files": [
112
+ "ButtonLink.module.css",
113
+ "ButtonLink.tsx",
114
+ "ButtonLink.types.ts",
115
+ "index.ts"
116
+ ],
117
+ "dependencies": [],
118
+ "internalDeps": [
119
+ "utils/cn"
120
+ ]
121
+ },
122
+ "Calendar": {
123
+ "name": "Calendar",
124
+ "files": [
125
+ "Calendar.module.css",
126
+ "Calendar.tsx",
127
+ "Calendar.types.ts",
128
+ "CalendarDialog.module.css",
129
+ "CalendarDialog.tsx",
130
+ "CalendarDialog.types.ts",
131
+ "index.ts"
132
+ ],
133
+ "dependencies": [
134
+ "Button"
135
+ ],
136
+ "internalDeps": [
137
+ "utils/cn"
138
+ ]
139
+ },
140
+ "Card": {
141
+ "name": "Card",
142
+ "files": [
143
+ "Card.module.css",
144
+ "Card.tsx",
145
+ "Card.types.ts",
146
+ "CardContent.module.css",
147
+ "CardContent.tsx",
148
+ "CardFooter.module.css",
149
+ "CardFooter.tsx",
150
+ "CardHeader.module.css",
151
+ "CardHeader.tsx",
152
+ "InsightCard.module.css",
153
+ "InsightCard.tsx",
154
+ "InsightCard.types.ts",
155
+ "KPICard.module.css",
156
+ "KPICard.tsx",
157
+ "KPICard.types.ts",
158
+ "ListItemCard.module.css",
159
+ "ListItemCard.tsx",
160
+ "ListItemCard.types.ts",
161
+ "PlanCard.module.css",
162
+ "PlanCard.tsx",
163
+ "PlanCard.types.ts",
164
+ "ProductCard.module.css",
165
+ "ProductCard.tsx",
166
+ "ProductCard.types.ts",
167
+ "StatCard.module.css",
168
+ "StatCard.tsx",
169
+ "StatCard.types.ts",
170
+ "UserGroupCard.module.css",
171
+ "UserGroupCard.tsx",
172
+ "UserGroupCard.types.ts",
173
+ "index.ts"
174
+ ],
175
+ "dependencies": [
176
+ "Avatar",
177
+ "Button"
178
+ ],
179
+ "internalDeps": [
180
+ "utils/cn"
181
+ ]
182
+ },
183
+ "Chart": {
184
+ "name": "Chart",
185
+ "files": [
186
+ "BarChart.module.css",
187
+ "BarChart.tsx",
188
+ "BarChart.types.ts",
189
+ "ChartAction.module.css",
190
+ "ChartAction.tsx",
191
+ "ChartAction.types.ts",
192
+ "ChartAxis.module.css",
193
+ "ChartAxis.tsx",
194
+ "ChartAxis.types.ts",
195
+ "ChartLegend.module.css",
196
+ "ChartLegend.tsx",
197
+ "ChartLegend.types.ts",
198
+ "ChartTooltip.module.css",
199
+ "ChartTooltip.tsx",
200
+ "ChartTooltip.types.ts",
201
+ "DonutChart.module.css",
202
+ "DonutChart.tsx",
203
+ "DonutChart.types.ts",
204
+ "GridChart.module.css",
205
+ "GridChart.tsx",
206
+ "GridChart.types.ts",
207
+ "HoverTooltip.module.css",
208
+ "HoverTooltip.tsx",
209
+ "KPIIndicator.module.css",
210
+ "KPIIndicator.tsx",
211
+ "KPIIndicator.types.ts",
212
+ "LineChart.module.css",
213
+ "LineChart.tsx",
214
+ "LineChart.types.ts",
215
+ "ProgressChart.module.css",
216
+ "ProgressChart.tsx",
217
+ "ProgressChart.types.ts",
218
+ "TrendLineChart.module.css",
219
+ "TrendLineChart.tsx",
220
+ "TrendLineChart.types.ts",
221
+ "chart.utils.ts",
222
+ "index.ts",
223
+ "useChartHover.ts"
224
+ ],
225
+ "dependencies": [],
226
+ "internalDeps": [
227
+ "utils/cn"
228
+ ]
229
+ },
230
+ "Checkbox": {
231
+ "name": "Checkbox",
232
+ "files": [
233
+ "Checkbox.module.css",
234
+ "Checkbox.tsx",
235
+ "Checkbox.types.ts",
236
+ "CheckboxField.module.css",
237
+ "CheckboxField.tsx",
238
+ "CheckboxField.types.ts",
239
+ "CheckboxGroup.module.css",
240
+ "CheckboxGroup.tsx",
241
+ "CheckboxGroup.types.ts",
242
+ "CheckboxGroupContext.ts",
243
+ "index.ts"
244
+ ],
245
+ "dependencies": [],
246
+ "internalDeps": [
247
+ "utils/cn"
248
+ ]
249
+ },
250
+ "Chip": {
251
+ "name": "Chip",
252
+ "files": [
253
+ "Chip.module.css",
254
+ "Chip.tsx",
255
+ "Chip.types.ts",
256
+ "ChipGroup.module.css",
257
+ "ChipGroup.tsx",
258
+ "ChipGroup.types.ts",
259
+ "index.ts"
260
+ ],
261
+ "dependencies": [],
262
+ "internalDeps": [
263
+ "utils/cn"
264
+ ]
265
+ },
266
+ "Datepicker": {
267
+ "name": "Datepicker",
268
+ "files": [
269
+ "Datepicker.module.css",
270
+ "Datepicker.tsx",
271
+ "Datepicker.types.ts",
272
+ "index.ts"
273
+ ],
274
+ "dependencies": [
275
+ "Calendar"
276
+ ],
277
+ "internalDeps": [
278
+ "utils/cn"
279
+ ]
280
+ },
281
+ "Dialog": {
282
+ "name": "Dialog",
283
+ "files": [
284
+ "Dialog.module.css",
285
+ "Dialog.tsx",
286
+ "Dialog.types.ts",
287
+ "DialogBody.module.css",
288
+ "DialogBody.tsx",
289
+ "DialogContext.ts",
290
+ "DialogFooter.module.css",
291
+ "DialogFooter.tsx",
292
+ "DialogHeader.module.css",
293
+ "DialogHeader.tsx",
294
+ "DialogIcon.module.css",
295
+ "DialogIcon.tsx",
296
+ "index.ts"
297
+ ],
298
+ "dependencies": [],
299
+ "internalDeps": [
300
+ "utils/cn"
301
+ ]
302
+ },
303
+ "Divider": {
304
+ "name": "Divider",
305
+ "files": [
306
+ "Divider.module.css",
307
+ "Divider.tsx",
308
+ "Divider.types.ts",
309
+ "index.ts"
310
+ ],
311
+ "dependencies": [],
312
+ "internalDeps": [
313
+ "utils/cn"
314
+ ]
315
+ },
316
+ "DropdownMenu": {
317
+ "name": "DropdownMenu",
318
+ "files": [
319
+ "DropdownMenu.module.css",
320
+ "DropdownMenu.tsx",
321
+ "DropdownMenu.types.ts",
322
+ "DropdownMenuDivider.module.css",
323
+ "DropdownMenuDivider.tsx",
324
+ "DropdownMenuHeader.module.css",
325
+ "DropdownMenuHeader.tsx",
326
+ "DropdownMenuItem.module.css",
327
+ "DropdownMenuItem.tsx",
328
+ "index.ts"
329
+ ],
330
+ "dependencies": [],
331
+ "internalDeps": [
332
+ "utils/cn"
333
+ ]
334
+ },
335
+ "FileUpload": {
336
+ "name": "FileUpload",
337
+ "files": [
338
+ "FileUpload.module.css",
339
+ "FileUpload.tsx",
340
+ "FileUpload.types.ts",
341
+ "FileUploadIcon.module.css",
342
+ "FileUploadIcon.tsx",
343
+ "FileUploadInput.module.css",
344
+ "FileUploadInput.tsx",
345
+ "FileUploadItem.module.css",
346
+ "FileUploadItem.tsx",
347
+ "index.ts"
348
+ ],
349
+ "dependencies": [],
350
+ "internalDeps": [
351
+ "utils/cn"
352
+ ]
353
+ },
354
+ "InputCounter": {
355
+ "name": "InputCounter",
356
+ "files": [
357
+ "InputCounter.module.css",
358
+ "InputCounter.tsx",
359
+ "InputCounter.types.ts",
360
+ "index.ts"
361
+ ],
362
+ "dependencies": [],
363
+ "internalDeps": [
364
+ "utils/cn"
365
+ ]
366
+ },
367
+ "InputMessage": {
368
+ "name": "InputMessage",
369
+ "files": [
370
+ "InputMessage.module.css",
371
+ "InputMessage.tsx",
372
+ "InputMessage.types.ts",
373
+ "index.ts"
374
+ ],
375
+ "dependencies": [],
376
+ "internalDeps": [
377
+ "utils/cn"
378
+ ]
379
+ },
380
+ "InputSearch": {
381
+ "name": "InputSearch",
382
+ "files": [
383
+ "InputSearch.module.css",
384
+ "InputSearch.tsx",
385
+ "InputSearch.types.ts",
386
+ "index.ts"
387
+ ],
388
+ "dependencies": [],
389
+ "internalDeps": [
390
+ "utils/cn"
391
+ ]
392
+ },
393
+ "InputText": {
394
+ "name": "InputText",
395
+ "files": [
396
+ "InputText.module.css",
397
+ "InputText.tsx",
398
+ "InputText.types.ts",
399
+ "index.ts"
400
+ ],
401
+ "dependencies": [],
402
+ "internalDeps": [
403
+ "utils/cn"
404
+ ]
405
+ },
406
+ "InputTextArea": {
407
+ "name": "InputTextArea",
408
+ "files": [
409
+ "InputTextArea.module.css",
410
+ "InputTextArea.tsx",
411
+ "InputTextArea.types.ts",
412
+ "index.ts"
413
+ ],
414
+ "dependencies": [],
415
+ "internalDeps": [
416
+ "utils/cn"
417
+ ]
418
+ },
419
+ "NavbarUser": {
420
+ "name": "NavbarUser",
421
+ "files": [
422
+ "NavbarUser.module.css",
423
+ "NavbarUser.tsx",
424
+ "NavbarUser.types.ts",
425
+ "index.ts"
426
+ ],
427
+ "dependencies": [
428
+ "Avatar"
429
+ ],
430
+ "internalDeps": [
431
+ "utils/cn"
432
+ ]
433
+ },
434
+ "Notification": {
435
+ "name": "Notification",
436
+ "files": [
437
+ "Notification.types.ts",
438
+ "NotificationItem.module.css",
439
+ "NotificationItem.tsx",
440
+ "NotificationPanel.module.css",
441
+ "NotificationPanel.tsx",
442
+ "NotificationReply.module.css",
443
+ "NotificationReply.tsx",
444
+ "index.ts"
445
+ ],
446
+ "dependencies": [
447
+ "Avatar",
448
+ "Button"
449
+ ],
450
+ "internalDeps": [
451
+ "utils/cn"
452
+ ]
453
+ },
454
+ "Pagination": {
455
+ "name": "Pagination",
456
+ "files": [
457
+ "Pagination.module.css",
458
+ "Pagination.tsx",
459
+ "Pagination.types.ts",
460
+ "PaginationDots.module.css",
461
+ "PaginationDots.tsx",
462
+ "PaginationDots.types.ts",
463
+ "index.ts"
464
+ ],
465
+ "dependencies": [
466
+ "Button"
467
+ ],
468
+ "internalDeps": [
469
+ "utils/cn"
470
+ ]
471
+ },
472
+ "Persona": {
473
+ "name": "Persona",
474
+ "files": [
475
+ "MessageDropdown.module.css",
476
+ "MessageDropdown.tsx",
477
+ "Persona.module.css",
478
+ "Persona.tsx",
479
+ "Persona.types.ts",
480
+ "PersonaAction.module.css",
481
+ "PersonaAction.tsx",
482
+ "PersonaMessage.module.css",
483
+ "PersonaMessage.tsx",
484
+ "index.ts"
485
+ ],
486
+ "dependencies": [
487
+ "Avatar",
488
+ "Button"
489
+ ],
490
+ "internalDeps": [
491
+ "utils/cn"
492
+ ]
493
+ },
494
+ "Progress": {
495
+ "name": "Progress",
496
+ "files": [
497
+ "Progress.module.css",
498
+ "Progress.tsx",
499
+ "Progress.types.ts",
500
+ "index.ts"
501
+ ],
502
+ "dependencies": [],
503
+ "internalDeps": [
504
+ "utils/cn"
505
+ ]
506
+ },
507
+ "RadioButton": {
508
+ "name": "RadioButton",
509
+ "files": [
510
+ "RadioButton.module.css",
511
+ "RadioButton.tsx",
512
+ "RadioButton.types.ts",
513
+ "RadioField.module.css",
514
+ "RadioField.tsx",
515
+ "RadioGroup.module.css",
516
+ "RadioGroup.tsx",
517
+ "RadioGroupContext.ts",
518
+ "index.ts"
519
+ ],
520
+ "dependencies": [],
521
+ "internalDeps": [
522
+ "utils/cn"
523
+ ]
524
+ },
525
+ "RangeSlider": {
526
+ "name": "RangeSlider",
527
+ "files": [
528
+ "RangeSlider.module.css",
529
+ "RangeSlider.tsx",
530
+ "RangeSlider.types.ts",
531
+ "index.ts"
532
+ ],
533
+ "dependencies": [],
534
+ "internalDeps": [
535
+ "utils/cn"
536
+ ]
537
+ },
538
+ "Rating": {
539
+ "name": "Rating",
540
+ "files": [
541
+ "Rating.module.css",
542
+ "Rating.tsx",
543
+ "Rating.types.ts",
544
+ "index.ts"
545
+ ],
546
+ "dependencies": [],
547
+ "internalDeps": [
548
+ "utils/cn"
549
+ ]
550
+ },
551
+ "SegmentedControl": {
552
+ "name": "SegmentedControl",
553
+ "files": [
554
+ "SegmentedControl.module.css",
555
+ "SegmentedControl.tsx",
556
+ "SegmentedControl.types.ts",
557
+ "SegmentedControlContext.ts",
558
+ "SegmentedControlItem.module.css",
559
+ "SegmentedControlItem.tsx",
560
+ "index.ts"
561
+ ],
562
+ "dependencies": [],
563
+ "internalDeps": [
564
+ "utils/cn"
565
+ ]
566
+ },
567
+ "SelectDropdown": {
568
+ "name": "SelectDropdown",
569
+ "files": [
570
+ "SelectDropdown.module.css",
571
+ "SelectDropdown.tsx",
572
+ "SelectDropdown.types.ts",
573
+ "SelectDropdownOption.module.css",
574
+ "SelectDropdownOption.tsx",
575
+ "SelectDropdownOverlay.module.css",
576
+ "SelectDropdownOverlay.tsx",
577
+ "index.ts"
578
+ ],
579
+ "dependencies": [],
580
+ "internalDeps": [
581
+ "utils/cn"
582
+ ]
583
+ },
584
+ "Sidebar": {
585
+ "name": "Sidebar",
586
+ "files": [
587
+ "Sidebar.module.css",
588
+ "Sidebar.tsx",
589
+ "Sidebar.types.ts",
590
+ "SidebarContent.module.css",
591
+ "SidebarContent.tsx",
592
+ "SidebarContext.ts",
593
+ "SidebarDivider.module.css",
594
+ "SidebarDivider.tsx",
595
+ "SidebarFooter.module.css",
596
+ "SidebarFooter.tsx",
597
+ "SidebarGroup.module.css",
598
+ "SidebarGroup.tsx",
599
+ "SidebarHeader.module.css",
600
+ "SidebarHeader.tsx",
601
+ "SidebarNavItem.module.css",
602
+ "SidebarNavItem.tsx",
603
+ "index.ts"
604
+ ],
605
+ "dependencies": [],
606
+ "internalDeps": [
607
+ "utils/cn"
608
+ ]
609
+ },
610
+ "Stepper": {
611
+ "name": "Stepper",
612
+ "files": [
613
+ "Stepper.module.css",
614
+ "Stepper.tsx",
615
+ "Stepper.types.ts",
616
+ "StepperContext.ts",
617
+ "StepperStep.module.css",
618
+ "StepperStep.tsx",
619
+ "index.ts"
620
+ ],
621
+ "dependencies": [],
622
+ "internalDeps": [
623
+ "utils/cn"
624
+ ]
625
+ },
626
+ "Switch": {
627
+ "name": "Switch",
628
+ "files": [
629
+ "Switch.module.css",
630
+ "Switch.tsx",
631
+ "Switch.types.ts",
632
+ "SwitchField.module.css",
633
+ "SwitchField.tsx",
634
+ "index.ts"
635
+ ],
636
+ "dependencies": [],
637
+ "internalDeps": [
638
+ "utils/cn"
639
+ ]
640
+ },
641
+ "Tab": {
642
+ "name": "Tab",
643
+ "files": [
644
+ "Tab.module.css",
645
+ "Tab.tsx",
646
+ "Tab.types.ts",
647
+ "TabAdd.module.css",
648
+ "TabAdd.tsx",
649
+ "TabContext.ts",
650
+ "TabItem.module.css",
651
+ "TabItem.tsx",
652
+ "index.ts"
653
+ ],
654
+ "dependencies": [],
655
+ "internalDeps": [
656
+ "utils/cn"
657
+ ]
658
+ },
659
+ "Table": {
660
+ "name": "Table",
661
+ "files": [
662
+ "Table.module.css",
663
+ "Table.tsx",
664
+ "Table.types.ts",
665
+ "TableBody.tsx",
666
+ "TableCell.module.css",
667
+ "TableCell.tsx",
668
+ "TableContext.ts",
669
+ "TableFooter.module.css",
670
+ "TableFooter.tsx",
671
+ "TableHeader.module.css",
672
+ "TableHeader.tsx",
673
+ "TableHeaderCell.module.css",
674
+ "TableHeaderCell.tsx",
675
+ "TableRow.module.css",
676
+ "TableRow.tsx",
677
+ "TableToolbar.module.css",
678
+ "TableToolbar.tsx",
679
+ "index.ts"
680
+ ],
681
+ "dependencies": [],
682
+ "internalDeps": [
683
+ "utils/cn"
684
+ ]
685
+ },
686
+ "Tag": {
687
+ "name": "Tag",
688
+ "files": [
689
+ "Tag.module.css",
690
+ "Tag.tsx",
691
+ "Tag.types.ts",
692
+ "TagBrand.module.css",
693
+ "TagBrand.tsx",
694
+ "TagStatus.module.css",
695
+ "TagStatus.tsx",
696
+ "index.ts"
697
+ ],
698
+ "dependencies": [],
699
+ "internalDeps": [
700
+ "utils/cn"
701
+ ]
702
+ },
703
+ "Tooltip": {
704
+ "name": "Tooltip",
705
+ "files": [
706
+ "Tooltip.module.css",
707
+ "Tooltip.tsx",
708
+ "Tooltip.types.ts",
709
+ "index.ts"
710
+ ],
711
+ "dependencies": [],
712
+ "internalDeps": [
713
+ "utils/cn"
714
+ ]
715
+ },
716
+ "TreeviewList": {
717
+ "name": "TreeviewList",
718
+ "files": [
719
+ "TreeviewItem.module.css",
720
+ "TreeviewItem.tsx",
721
+ "TreeviewList.module.css",
722
+ "TreeviewList.tsx",
723
+ "TreeviewList.types.ts",
724
+ "TreeviewListContext.ts",
725
+ "index.ts"
726
+ ],
727
+ "dependencies": [],
728
+ "internalDeps": [
729
+ "utils/cn"
730
+ ]
731
+ },
732
+ "VerificationCode": {
733
+ "name": "VerificationCode",
734
+ "files": [
735
+ "VerificationCode.module.css",
736
+ "VerificationCode.tsx",
737
+ "VerificationCode.types.ts",
738
+ "index.ts"
739
+ ],
740
+ "dependencies": [],
741
+ "internalDeps": [
742
+ "utils/cn"
743
+ ]
744
+ }
745
+ }
746
+ }