pixelize-design-library 2.2.198 → 2.3.1-beta.1

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 (385) hide show
  1. package/.claude/settings.local.json +24 -0
  2. package/coverage/clover.xml +638 -0
  3. package/coverage/coverage-final.json +20 -0
  4. package/coverage/lcov-report/Table/CompactSelect.tsx.html +379 -0
  5. package/coverage/lcov-report/Table/Components/ActiveFilters.tsx.html +514 -0
  6. package/coverage/lcov-report/Table/Components/HeaderActions.tsx.html +373 -0
  7. package/coverage/lcov-report/Table/Components/Pagination.tsx.html +574 -0
  8. package/coverage/lcov-report/Table/Components/TableActions.tsx.html +574 -0
  9. package/coverage/lcov-report/Table/Components/TableBody.tsx.html +1027 -0
  10. package/coverage/lcov-report/Table/Components/TableFilters.tsx.html +397 -0
  11. package/coverage/lcov-report/Table/Components/TableHeader.tsx.html +1060 -0
  12. package/coverage/lcov-report/Table/Components/TableLoading.tsx.html +361 -0
  13. package/coverage/lcov-report/Table/Components/TableSearch.tsx.html +337 -0
  14. package/coverage/lcov-report/Table/Components/index.html +266 -0
  15. package/coverage/lcov-report/Table/Components/useDebounce.ts.html +178 -0
  16. package/coverage/lcov-report/Table/Components/useTable.ts.html +778 -0
  17. package/coverage/lcov-report/Table/LeftFilterPane.tsx.html +1810 -0
  18. package/coverage/lcov-report/Table/SelectOperationControls.tsx.html +178 -0
  19. package/coverage/lcov-report/Table/Table.tsx.html +1567 -0
  20. package/coverage/lcov-report/Table/TableProps.tsx.html +658 -0
  21. package/coverage/lcov-report/Table/TableSettings/ManageColumns.tsx.html +619 -0
  22. package/coverage/lcov-report/Table/TableSettings/TableFilters.tsx.html +229 -0
  23. package/coverage/lcov-report/Table/TableSettings/TableSettings.tsx.html +532 -0
  24. package/coverage/lcov-report/Table/TableSettings/index.html +146 -0
  25. package/coverage/lcov-report/Table/TableToDo.tsx.html +973 -0
  26. package/coverage/lcov-report/Table/TextOperationControls.tsx.html +271 -0
  27. package/coverage/lcov-report/Table/filterTypes.ts.html +97 -0
  28. package/coverage/lcov-report/Table/index.html +176 -0
  29. package/coverage/lcov-report/base.css +224 -0
  30. package/coverage/lcov-report/block-navigation.js +87 -0
  31. package/coverage/lcov-report/favicon.png +0 -0
  32. package/coverage/lcov-report/index.html +146 -0
  33. package/coverage/lcov-report/prettify.css +1 -0
  34. package/coverage/lcov-report/prettify.js +2 -0
  35. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  36. package/coverage/lcov-report/sorter.js +210 -0
  37. package/coverage/lcov.info +1836 -0
  38. package/dist/App.d.ts +4 -0
  39. package/dist/App.js +131 -0
  40. package/dist/Assets/defaultLogo.tsx +31 -0
  41. package/dist/Components/Button/Button.styles.js +44 -3
  42. package/dist/Components/Button/ButtonProps.d.ts +1 -1
  43. package/dist/Components/ButtonGroupIcon/ButtonGoupIconProps.d.ts +2 -2
  44. package/dist/Components/ButtonGroupIcon/ButtonGroupIcon.js +50 -38
  45. package/dist/Components/Checkbox/Checkbox.js +2 -2
  46. package/dist/Components/Checkbox/Checkbox.styles.js +2 -0
  47. package/dist/Components/Common/FormLabel.d.ts +2 -1
  48. package/dist/Components/Common/FormLabel.js +8 -9
  49. package/dist/Components/Common/fieldStyles.d.ts +22 -0
  50. package/dist/Components/Common/fieldStyles.js +42 -0
  51. package/dist/Components/DatePicker/CalendarPanel.d.ts +2 -0
  52. package/dist/Components/DatePicker/CalendarPanel.js +104 -65
  53. package/dist/Components/DatePicker/RangeDatePicker.js +37 -16
  54. package/dist/Components/DatePicker/SingleDatePicker.js +16 -16
  55. package/dist/Components/DatePicker/TimePicker.js +4 -4
  56. package/dist/Components/Input/Input/Input.d.ts +1 -1
  57. package/dist/Components/Input/Input/Input.js +5 -4
  58. package/dist/Components/Input/Input/InputProps.d.ts +2 -0
  59. package/dist/Components/Input/TextInput.styles.js +2 -1
  60. package/dist/Components/InputTextArea/InputTextArea.style.js +2 -1
  61. package/dist/Components/MultiSelect/MultiSelect.js +11 -12
  62. package/dist/Components/NavigationBar/NavigationBar.d.ts +1 -1
  63. package/dist/Components/NavigationBar/NavigationBar.js +54 -27
  64. package/dist/Components/NavigationBar/NavigationBarProps.d.ts +1 -0
  65. package/dist/Components/NoteTextArea/NoteTextArea.js +44 -40
  66. package/dist/Components/NumberInput/NumberInput.styles.js +2 -1
  67. package/dist/Components/PinInput/PinInput.d.ts +1 -1
  68. package/dist/Components/PinInput/PinInput.js +3 -2
  69. package/dist/Components/PinInput/PinInputProps.d.ts +4 -0
  70. package/dist/Components/RadioButton/RadioButton.js +1 -1
  71. package/dist/Components/SearchSelect/SearchSelect.d.ts +1 -1
  72. package/dist/Components/SearchSelect/SearchSelect.js +3 -3
  73. package/dist/Components/SearchSelect/SearchSelectProps.d.ts +2 -0
  74. package/dist/Components/Select/Select.styles.js +2 -1
  75. package/dist/Components/SelectSearch/SelectSearch.js +7 -4
  76. package/dist/Components/SideBar/SecondaryBar.js +20 -18
  77. package/dist/Components/SideBar/SideBar.d.ts +1 -1
  78. package/dist/Components/SideBar/SideBar.js +58 -43
  79. package/dist/Components/SideBar/SideBarProps.d.ts +14 -3
  80. package/dist/Components/SideBar/components/MenuItemBox.js +28 -24
  81. package/dist/Components/SideBar/components/MenuItems.js +16 -2
  82. package/dist/Components/SideBar/components/MenuPopoverContent.js +16 -16
  83. package/dist/Components/SideBar/components/OtherApps.js +16 -14
  84. package/dist/Components/Table/Components/TableBody.d.ts +5 -1
  85. package/dist/Components/Table/Components/TableBody.js +133 -31
  86. package/dist/Components/Table/Components/TableGroupRow.d.ts +15 -0
  87. package/dist/Components/Table/Components/TableGroupRow.js +27 -0
  88. package/dist/Components/Table/Components/TableHeader.js +23 -9
  89. package/dist/Components/Table/Table.d.ts +1 -1
  90. package/dist/Components/Table/Table.js +119 -38
  91. package/dist/Components/Table/TableProps.d.ts +34 -2
  92. package/dist/Components/Table/filters/ActiveFilters.d.ts +9 -0
  93. package/dist/Components/Table/filters/ActiveFilters.js +132 -0
  94. package/dist/Components/Table/filters/CompactSelect.d.ts +15 -0
  95. package/dist/Components/Table/filters/CompactSelect.js +69 -0
  96. package/dist/Components/Table/filters/LeftFilterPane.d.ts +36 -0
  97. package/dist/Components/Table/filters/LeftFilterPane.js +273 -0
  98. package/dist/Components/Table/filters/SelectOperationControls.d.ts +8 -0
  99. package/dist/Components/Table/filters/SelectOperationControls.js +15 -0
  100. package/dist/Components/Table/filters/TableFilters.d.ts +7 -0
  101. package/dist/Components/Table/filters/TableFilters.js +89 -0
  102. package/dist/Components/Table/filters/TextOperationControls.d.ts +12 -0
  103. package/dist/Components/Table/filters/TextOperationControls.js +29 -0
  104. package/dist/Components/Table/hooks/useDebounce.d.ts +2 -0
  105. package/dist/Components/Table/hooks/useDebounce.js +28 -0
  106. package/dist/Components/Table/hooks/useTable.d.ts +47 -0
  107. package/dist/Components/Table/hooks/useTable.js +219 -0
  108. package/dist/Components/Table/settings/ManageColumns.d.ts +12 -0
  109. package/dist/Components/Table/settings/ManageColumns.js +166 -0
  110. package/dist/Components/Table/settings/ManageColumns.test.d.ts +1 -0
  111. package/dist/Components/Table/settings/ManageColumns.test.js +146 -0
  112. package/dist/Components/Table/settings/TableSettings.d.ts +10 -0
  113. package/dist/Components/Table/settings/TableSettings.js +141 -0
  114. package/dist/Layout.d.ts +3 -0
  115. package/dist/Layout.js +292 -0
  116. package/dist/Pages/TInput.d.ts +3 -0
  117. package/dist/Pages/TInput.js +56 -0
  118. package/dist/Pages/accordion.d.ts +3 -0
  119. package/dist/Pages/accordion.js +42 -0
  120. package/dist/Pages/alertdialog.d.ts +3 -0
  121. package/dist/Pages/alertdialog.js +54 -0
  122. package/dist/Pages/button.d.ts +3 -0
  123. package/dist/Pages/button.js +46 -0
  124. package/dist/Pages/card.d.ts +3 -0
  125. package/dist/Pages/card.js +117 -0
  126. package/dist/Pages/chart.d.ts +4 -0
  127. package/dist/Pages/chart.js +40 -0
  128. package/dist/Pages/checkbox.d.ts +3 -0
  129. package/dist/Pages/checkbox.js +12 -0
  130. package/dist/Pages/contactForm.d.ts +3 -0
  131. package/dist/Pages/contactForm.js +16 -0
  132. package/dist/Pages/datePick.d.ts +3 -0
  133. package/dist/Pages/datePick.js +88 -0
  134. package/dist/Pages/drawer.d.ts +3 -0
  135. package/dist/Pages/drawer.js +58 -0
  136. package/dist/Pages/dropdown.d.ts +3 -0
  137. package/dist/Pages/dropdown.js +24 -0
  138. package/dist/Pages/editor.d.ts +3 -0
  139. package/dist/Pages/editor.js +14 -0
  140. package/dist/Pages/feedback.d.ts +2 -0
  141. package/dist/Pages/feedback.js +15 -0
  142. package/dist/Pages/fileUpload.d.ts +2 -0
  143. package/dist/Pages/fileUpload.js +82 -0
  144. package/dist/Pages/input.d.ts +3 -0
  145. package/dist/Pages/input.js +92 -0
  146. package/dist/Pages/kanbanboard.d.ts +3 -0
  147. package/dist/Pages/kanbanboard.js +224 -0
  148. package/dist/Pages/modal.d.ts +3 -0
  149. package/dist/Pages/modal.js +65 -0
  150. package/dist/Pages/multiSelect.d.ts +3 -0
  151. package/dist/Pages/multiSelect.js +55 -0
  152. package/dist/Pages/noteArea.d.ts +3 -0
  153. package/dist/Pages/noteArea.js +59 -0
  154. package/dist/Pages/notification.d.ts +3 -0
  155. package/dist/Pages/notification.js +25 -0
  156. package/dist/Pages/numberInput.d.ts +3 -0
  157. package/dist/Pages/numberInput.js +49 -0
  158. package/dist/Pages/photoViewer.d.ts +3 -0
  159. package/dist/Pages/photoViewer.js +12 -0
  160. package/dist/Pages/pinInputs.d.ts +3 -0
  161. package/dist/Pages/pinInputs.js +12 -0
  162. package/dist/Pages/productCaard.d.ts +3 -0
  163. package/dist/Pages/productCaard.js +311 -0
  164. package/dist/Pages/productDetailCard.d.ts +3 -0
  165. package/dist/Pages/productDetailCard.js +78 -0
  166. package/dist/Pages/productFilter.d.ts +3 -0
  167. package/dist/Pages/productFilter.js +202 -0
  168. package/dist/Pages/progressbar.d.ts +3 -0
  169. package/dist/Pages/progressbar.js +12 -0
  170. package/dist/Pages/radioButton.d.ts +3 -0
  171. package/dist/Pages/radioButton.js +54 -0
  172. package/dist/Pages/search.d.ts +3 -0
  173. package/dist/Pages/search.js +54 -0
  174. package/dist/Pages/searchSelect.d.ts +3 -0
  175. package/dist/Pages/searchSelect.js +133 -0
  176. package/dist/Pages/select.d.ts +3 -0
  177. package/dist/Pages/select.js +53 -0
  178. package/dist/Pages/selectSearch.d.ts +3 -0
  179. package/dist/Pages/selectSearch.js +103 -0
  180. package/dist/Pages/skeleton.d.ts +3 -0
  181. package/dist/Pages/skeleton.js +22 -0
  182. package/dist/Pages/switch.d.ts +3 -0
  183. package/dist/Pages/switch.js +50 -0
  184. package/dist/Pages/table.d.ts +3 -0
  185. package/dist/Pages/table.js +174 -0
  186. package/dist/Pages/textArea.d.ts +3 -0
  187. package/dist/Pages/textArea.js +15 -0
  188. package/dist/Pages/timeline.d.ts +3 -0
  189. package/dist/Pages/timeline.js +74 -0
  190. package/dist/Pages/tooltip.d.ts +3 -0
  191. package/dist/Pages/tooltip.js +12 -0
  192. package/dist/Pages/toster.d.ts +3 -0
  193. package/dist/Pages/toster.js +68 -0
  194. package/dist/Pages/verifyEmail.d.ts +3 -0
  195. package/dist/Pages/verifyEmail.js +18 -0
  196. package/dist/Theme/Dark/palette.d.ts +370 -0
  197. package/dist/Theme/Dark/palette.js +372 -0
  198. package/dist/Theme/Default/palette.d.ts +4 -0
  199. package/dist/Theme/Default/palette.js +3 -0
  200. package/dist/Theme/Emerald/palette.d.ts +4 -0
  201. package/dist/Theme/Emerald/palette.js +2 -1
  202. package/dist/Theme/Meadow/palette.d.ts +4 -0
  203. package/dist/Theme/Meadow/palette.js +2 -1
  204. package/dist/Theme/Radiant/palette.d.ts +4 -0
  205. package/dist/Theme/Radiant/palette.js +2 -1
  206. package/dist/Theme/Rosewood/palette.d.ts +4 -0
  207. package/dist/Theme/Rosewood/palette.js +2 -1
  208. package/dist/Theme/Skyline/palette.d.ts +4 -0
  209. package/dist/Theme/Skyline/palette.js +2 -1
  210. package/dist/Theme/Slate/palette.d.ts +4 -0
  211. package/dist/Theme/Slate/palette.js +2 -1
  212. package/dist/Theme/themeProps.d.ts +4 -0
  213. package/dist/Utils/table.d.ts +21 -0
  214. package/dist/Utils/table.js +98 -14
  215. package/dist/bootstrap.d.ts +1 -0
  216. package/dist/bootstrap.js +14 -0
  217. package/dist/components-v2/AlertDialog/AlertDialog.d.ts +23 -0
  218. package/dist/components-v2/AlertDialog/AlertDialog.js +98 -0
  219. package/dist/components-v2/Breadcrumbs/Breadcrumbs.d.ts +14 -0
  220. package/dist/components-v2/Breadcrumbs/Breadcrumbs.js +66 -0
  221. package/dist/components-v2/Charts/AreaChart.d.ts +23 -0
  222. package/dist/components-v2/Charts/AreaChart.js +63 -0
  223. package/dist/components-v2/Charts/BarChart.d.ts +25 -0
  224. package/dist/components-v2/Charts/BarChart.js +57 -0
  225. package/dist/components-v2/Charts/LineChart.d.ts +23 -0
  226. package/dist/components-v2/Charts/LineChart.js +55 -0
  227. package/dist/components-v2/Charts/PieChart.d.ts +15 -0
  228. package/dist/components-v2/Charts/PieChart.js +54 -0
  229. package/dist/components-v2/Charts/PolarChart.d.ts +14 -0
  230. package/dist/components-v2/Charts/PolarChart.js +54 -0
  231. package/dist/components-v2/Charts/chartOptions.d.ts +7 -0
  232. package/dist/components-v2/Charts/chartOptions.js +41 -0
  233. package/dist/components-v2/Charts/useChartTheme.d.ts +22 -0
  234. package/dist/components-v2/Charts/useChartTheme.js +106 -0
  235. package/dist/components-v2/ContactForm/ContactForm.d.ts +25 -0
  236. package/dist/components-v2/ContactForm/ContactForm.js +116 -0
  237. package/dist/components-v2/DatePicker/Calendar.d.ts +19 -0
  238. package/dist/components-v2/DatePicker/Calendar.js +212 -0
  239. package/dist/components-v2/DatePicker/DatePicker.d.ts +46 -0
  240. package/dist/components-v2/DatePicker/DatePicker.js +189 -0
  241. package/dist/components-v2/DatePicker/TimePicker.d.ts +12 -0
  242. package/dist/components-v2/DatePicker/TimePicker.js +105 -0
  243. package/dist/components-v2/DatePicker/utils.d.ts +31 -0
  244. package/dist/components-v2/DatePicker/utils.js +109 -0
  245. package/dist/components-v2/Drawer/Drawer.d.ts +27 -0
  246. package/dist/components-v2/Drawer/Drawer.js +132 -0
  247. package/dist/components-v2/FeedbackForm/FeedbackForm.d.ts +26 -0
  248. package/dist/components-v2/FeedbackForm/FeedbackForm.js +112 -0
  249. package/dist/components-v2/FileUploader/FileUploader.d.ts +28 -0
  250. package/dist/components-v2/FileUploader/FileUploader.js +127 -0
  251. package/dist/components-v2/Input/TextInput.d.ts +41 -0
  252. package/dist/components-v2/Input/TextInput.js +169 -0
  253. package/dist/components-v2/KanbanBoard/KanbanBoard.d.ts +39 -0
  254. package/dist/components-v2/KanbanBoard/KanbanBoard.js +101 -0
  255. package/dist/components-v2/Layout/AppLayout.d.ts +22 -0
  256. package/dist/components-v2/Layout/AppLayout.js +53 -0
  257. package/dist/components-v2/Loading/Loading.d.ts +19 -0
  258. package/dist/components-v2/Loading/Loading.js +55 -0
  259. package/dist/components-v2/Modal/Modal.d.ts +30 -0
  260. package/dist/components-v2/Modal/Modal.js +82 -0
  261. package/dist/components-v2/NavigationBar/NavigationBar.d.ts +47 -0
  262. package/dist/components-v2/NavigationBar/NavigationBar.js +148 -0
  263. package/dist/components-v2/Notification/Notification.d.ts +22 -0
  264. package/dist/components-v2/Notification/Notification.js +113 -0
  265. package/dist/components-v2/NumberInput/NumberInput.d.ts +37 -0
  266. package/dist/components-v2/NumberInput/NumberInput.js +210 -0
  267. package/dist/components-v2/PinInput/PinInput.d.ts +26 -0
  268. package/dist/components-v2/PinInput/PinInput.js +138 -0
  269. package/dist/components-v2/ProfilePhotoViewer/ProfilePhotoViewer.d.ts +18 -0
  270. package/dist/components-v2/ProfilePhotoViewer/ProfilePhotoViewer.js +91 -0
  271. package/dist/components-v2/Select/Select.d.ts +41 -0
  272. package/dist/components-v2/Select/Select.js +284 -0
  273. package/dist/components-v2/Sidebar/Sidebar.d.ts +41 -0
  274. package/dist/components-v2/Sidebar/Sidebar.js +182 -0
  275. package/dist/components-v2/Slider/Slider.d.ts +18 -0
  276. package/dist/components-v2/Slider/Slider.js +101 -0
  277. package/dist/components-v2/Table/Table.d.ts +7 -0
  278. package/dist/components-v2/Table/Table.js +172 -0
  279. package/dist/components-v2/Table/TableProps.d.ts +139 -0
  280. package/dist/components-v2/Table/TableProps.js +9 -0
  281. package/dist/components-v2/Table/components/ActiveFilters.d.ts +10 -0
  282. package/dist/components-v2/Table/components/ActiveFilters.js +70 -0
  283. package/dist/components-v2/Table/components/BulkActionBar.d.ts +11 -0
  284. package/dist/components-v2/Table/components/BulkActionBar.js +92 -0
  285. package/dist/components-v2/Table/components/ColumnResizeHandle.d.ts +7 -0
  286. package/dist/components-v2/Table/components/ColumnResizeHandle.js +41 -0
  287. package/dist/components-v2/Table/components/Pagination.d.ts +11 -0
  288. package/dist/components-v2/Table/components/Pagination.js +92 -0
  289. package/dist/components-v2/Table/components/TableBody.d.ts +23 -0
  290. package/dist/components-v2/Table/components/TableBody.js +69 -0
  291. package/dist/components-v2/Table/components/TableCell.d.ts +14 -0
  292. package/dist/components-v2/Table/components/TableCell.js +63 -0
  293. package/dist/components-v2/Table/components/TableEmptyState.d.ts +12 -0
  294. package/dist/components-v2/Table/components/TableEmptyState.js +55 -0
  295. package/dist/components-v2/Table/components/TableErrorState.d.ts +6 -0
  296. package/dist/components-v2/Table/components/TableErrorState.js +52 -0
  297. package/dist/components-v2/Table/components/TableHeader.d.ts +21 -0
  298. package/dist/components-v2/Table/components/TableHeader.js +94 -0
  299. package/dist/components-v2/Table/components/TableRow.d.ts +20 -0
  300. package/dist/components-v2/Table/components/TableRow.js +64 -0
  301. package/dist/components-v2/Table/components/TableSearch.d.ts +8 -0
  302. package/dist/components-v2/Table/components/TableSearch.js +47 -0
  303. package/dist/components-v2/Table/filters/FilterChips.d.ts +6 -0
  304. package/dist/components-v2/Table/filters/FilterChips.js +9 -0
  305. package/dist/components-v2/Table/filters/LeftFilterPane.d.ts +17 -0
  306. package/dist/components-v2/Table/filters/LeftFilterPane.js +105 -0
  307. package/dist/components-v2/Table/filters/TableFilters.d.ts +12 -0
  308. package/dist/components-v2/Table/filters/TableFilters.js +127 -0
  309. package/dist/components-v2/Table/hooks/useColumnResize.d.ts +15 -0
  310. package/dist/components-v2/Table/hooks/useColumnResize.js +104 -0
  311. package/dist/components-v2/Table/hooks/useTable.d.ts +58 -0
  312. package/dist/components-v2/Table/hooks/useTable.js +254 -0
  313. package/dist/components-v2/Table/hooks/useTableKeyboard.d.ts +25 -0
  314. package/dist/components-v2/Table/hooks/useTableKeyboard.js +112 -0
  315. package/dist/components-v2/Table/hooks/useVirtualScroll.d.ts +29 -0
  316. package/dist/components-v2/Table/hooks/useVirtualScroll.js +83 -0
  317. package/dist/components-v2/Table/settings/ManageColumns.d.ts +12 -0
  318. package/dist/components-v2/Table/settings/ManageColumns.js +59 -0
  319. package/dist/components-v2/Table/settings/TableSettings.d.ts +12 -0
  320. package/dist/components-v2/Table/settings/TableSettings.js +57 -0
  321. package/dist/components-v2/Table/utils/filterUtils.d.ts +7 -0
  322. package/dist/components-v2/Table/utils/filterUtils.js +149 -0
  323. package/dist/components-v2/Table/utils/sortUtils.d.ts +6 -0
  324. package/dist/components-v2/Table/utils/sortUtils.js +65 -0
  325. package/dist/components-v2/Tag/Tag.d.ts +15 -0
  326. package/dist/components-v2/Tag/Tag.js +87 -0
  327. package/dist/components-v2/Timeline/Timeline.d.ts +18 -0
  328. package/dist/components-v2/Timeline/Timeline.js +76 -0
  329. package/dist/components-v2/Toaster/Toaster.d.ts +61 -0
  330. package/dist/components-v2/Toaster/Toaster.js +63 -0
  331. package/dist/components-v2/Toggle/Toggle.d.ts +28 -0
  332. package/dist/components-v2/Toggle/Toggle.js +90 -0
  333. package/dist/components-v2/ui/accordion.d.ts +12 -0
  334. package/dist/components-v2/ui/accordion.js +104 -0
  335. package/dist/components-v2/ui/alert.d.ts +18 -0
  336. package/dist/components-v2/ui/alert.js +99 -0
  337. package/dist/components-v2/ui/avatar.d.ts +12 -0
  338. package/dist/components-v2/ui/avatar.js +80 -0
  339. package/dist/components-v2/ui/badge.d.ts +10 -0
  340. package/dist/components-v2/ui/badge.js +76 -0
  341. package/dist/components-v2/ui/button.d.ts +18 -0
  342. package/dist/components-v2/ui/button.js +97 -0
  343. package/dist/components-v2/ui/checkbox.d.ts +15 -0
  344. package/dist/components-v2/ui/checkbox.js +86 -0
  345. package/dist/components-v2/ui/dialog.d.ts +30 -0
  346. package/dist/components-v2/ui/dialog.js +115 -0
  347. package/dist/components-v2/ui/dropdown-menu.d.ts +26 -0
  348. package/dist/components-v2/ui/dropdown-menu.js +121 -0
  349. package/dist/components-v2/ui/field.d.ts +32 -0
  350. package/dist/components-v2/ui/field.js +62 -0
  351. package/dist/components-v2/ui/form-field.d.ts +25 -0
  352. package/dist/components-v2/ui/form-field.js +96 -0
  353. package/dist/components-v2/ui/input.d.ts +9 -0
  354. package/dist/components-v2/ui/input.js +73 -0
  355. package/dist/components-v2/ui/label.d.ts +10 -0
  356. package/dist/components-v2/ui/label.js +70 -0
  357. package/dist/components-v2/ui/popover.d.ts +9 -0
  358. package/dist/components-v2/ui/popover.js +60 -0
  359. package/dist/components-v2/ui/progress.d.ts +12 -0
  360. package/dist/components-v2/ui/progress.js +75 -0
  361. package/dist/components-v2/ui/radio-group.d.ts +17 -0
  362. package/dist/components-v2/ui/radio-group.js +91 -0
  363. package/dist/components-v2/ui/select.d.ts +24 -0
  364. package/dist/components-v2/ui/select.js +122 -0
  365. package/dist/components-v2/ui/separator.d.ts +5 -0
  366. package/dist/components-v2/ui/separator.js +55 -0
  367. package/dist/components-v2/ui/skeleton.d.ts +9 -0
  368. package/dist/components-v2/ui/skeleton.js +68 -0
  369. package/dist/components-v2/ui/spinner.d.ts +16 -0
  370. package/dist/components-v2/ui/spinner.js +64 -0
  371. package/dist/components-v2/ui/switch.d.ts +10 -0
  372. package/dist/components-v2/ui/switch.js +81 -0
  373. package/dist/components-v2/ui/tabs.d.ts +13 -0
  374. package/dist/components-v2/ui/tabs.js +95 -0
  375. package/dist/components-v2/ui/textarea.d.ts +10 -0
  376. package/dist/components-v2/ui/textarea.js +96 -0
  377. package/dist/components-v2/ui/tooltip.d.ts +17 -0
  378. package/dist/components-v2/ui/tooltip.js +75 -0
  379. package/dist/lib/utils.d.ts +2 -0
  380. package/dist/lib/utils.js +8 -0
  381. package/dist/theme-v2/ThemeProvider.d.ts +19 -0
  382. package/dist/theme-v2/ThemeProvider.js +149 -0
  383. package/dist/theme-v2/dark.css +47 -0
  384. package/dist/theme-v2/tokens.css +72 -0
  385. package/package.json +2 -2
@@ -0,0 +1,372 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var darkPalette = {
4
+ primary: {
5
+ 50: "#2d1f4a",
6
+ 100: "#3d2a63",
7
+ 200: "#4e357c",
8
+ 300: "#6244a0",
9
+ 400: "#7a56c5",
10
+ 500: "#9A4FE5",
11
+ 600: "#a967e8",
12
+ 700: "#bb83ed",
13
+ 800: "#cca3f2",
14
+ 900: "#dfc3f7",
15
+ opacity: {
16
+ 4: "#9A4FE50a",
17
+ 8: "#9A4FE514",
18
+ 16: "#9A4FE529",
19
+ 24: "#9A4FE53d",
20
+ 32: "#9A4FE552",
21
+ 40: "#9A4FE566",
22
+ 48: "#9A4FE57a",
23
+ },
24
+ },
25
+ secondary: {
26
+ 50: "#1e2235",
27
+ 100: "#252b42",
28
+ 200: "#2d3554",
29
+ 300: "#3a4269",
30
+ 400: "#47507e",
31
+ 500: "#5a6496",
32
+ 600: "#6f79a8",
33
+ 700: "#8e97be",
34
+ 800: "#adb4d3",
35
+ 900: "#ccd0e7",
36
+ opacity: {
37
+ 4: "#5a64960a",
38
+ 8: "#5a649614",
39
+ 16: "#5a649629",
40
+ 24: "#5a64963d",
41
+ 32: "#5a649652",
42
+ 40: "#5a649666",
43
+ 48: "#5a64967a",
44
+ },
45
+ },
46
+ tertiary: {
47
+ 50: "#1a1d2e",
48
+ 100: "#21253a",
49
+ 200: "#292e48",
50
+ 300: "#333857",
51
+ 400: "#3d4366",
52
+ 500: "#4a5175",
53
+ 600: "#5f668b",
54
+ 700: "#7d83a4",
55
+ 800: "#9ca1bc",
56
+ 900: "#bbbfd4",
57
+ opacity: {
58
+ 4: "#4a51750a",
59
+ 8: "#4a517514",
60
+ 16: "#4a517529",
61
+ 24: "#4a51753d",
62
+ 32: "#4a517552",
63
+ 40: "#4a517566",
64
+ 48: "#4a51757a",
65
+ },
66
+ },
67
+ transparent: "transparent",
68
+ black: "#000",
69
+ white: "#fff",
70
+ semantic: {
71
+ success: {
72
+ 50: "#0d2e1f",
73
+ 100: "#133d28",
74
+ 200: "#1a5236",
75
+ 300: "#216644",
76
+ 400: "#297b53",
77
+ 500: "#23b85c",
78
+ 600: "#3dc770",
79
+ 700: "#5fd388",
80
+ 800: "#88e0a7",
81
+ 900: "#b3edc6",
82
+ },
83
+ error: {
84
+ 50: "#2e1210",
85
+ 100: "#3d1917",
86
+ 200: "#52201e",
87
+ 300: "#662825",
88
+ 400: "#7b302c",
89
+ 500: "#f2463a",
90
+ 600: "#f45f54",
91
+ 700: "#f6796f",
92
+ 800: "#f9998f",
93
+ 900: "#fbbbb6",
94
+ },
95
+ warning: {
96
+ 50: "#2e1f0d",
97
+ 100: "#3d2a12",
98
+ 200: "#523817",
99
+ 300: "#66461d",
100
+ 400: "#7b5523",
101
+ 500: "#Ff9162",
102
+ 600: "#ffa07a",
103
+ 700: "#ffb395",
104
+ 800: "#ffc7ae",
105
+ 900: "#ffdacb",
106
+ },
107
+ info: {
108
+ 50: "#0d2430",
109
+ 100: "#123040",
110
+ 200: "#184055",
111
+ 300: "#1e5069",
112
+ 400: "#24607e",
113
+ 500: "#5FC4de",
114
+ 600: "#76cde3",
115
+ 700: "#90d8ea",
116
+ 800: "#aee3f1",
117
+ 900: "#caecf7",
118
+ },
119
+ },
120
+ gray: {
121
+ 50: "#f7fafc",
122
+ 100: "#edf2f7",
123
+ 200: "#e2e8f0",
124
+ 300: "#cbd5e0",
125
+ 400: "#a0aec0",
126
+ 500: "#718096",
127
+ 600: "#4a5568",
128
+ 700: "#2d3748",
129
+ 800: "#1a202c",
130
+ 900: "#171923",
131
+ },
132
+ red: {
133
+ 50: "#2e1210",
134
+ 100: "#3d1917",
135
+ 200: "#52201e",
136
+ 300: "#662825",
137
+ 400: "#7b302c",
138
+ 500: "#f2463a",
139
+ 600: "#f45f54",
140
+ 700: "#f6796f",
141
+ 800: "#f9998f",
142
+ 900: "#fbbbb6",
143
+ },
144
+ orange: {
145
+ 50: "#2e1f0d",
146
+ 100: "#3d2a12",
147
+ 200: "#523817",
148
+ 300: "#66461d",
149
+ 400: "#7b5523",
150
+ 500: "#Ff9162",
151
+ 600: "#ffa07a",
152
+ 700: "#ffb395",
153
+ 800: "#ffc7ae",
154
+ 900: "#ffdacb",
155
+ },
156
+ yellow: {
157
+ 50: "#2b2509",
158
+ 100: "#3a310d",
159
+ 200: "#4d4211",
160
+ 300: "#615315",
161
+ 400: "#756419",
162
+ 500: "#f7d343",
163
+ 600: "#f9db62",
164
+ 700: "#fbe281",
165
+ 800: "#fdeaa5",
166
+ 900: "#fef2c8",
167
+ },
168
+ green: {
169
+ 50: "#0d2e1f",
170
+ 100: "#133d28",
171
+ 200: "#1a5236",
172
+ 300: "#216644",
173
+ 400: "#297b53",
174
+ 500: "#23b85c",
175
+ 600: "#3dc770",
176
+ 700: "#5fd388",
177
+ 800: "#88e0a7",
178
+ 900: "#b3edc6",
179
+ },
180
+ teal: {
181
+ 50: "#0d2430",
182
+ 100: "#123040",
183
+ 200: "#184055",
184
+ 300: "#1e5069",
185
+ 400: "#24607e",
186
+ 500: "#5FC4de",
187
+ 600: "#76cde3",
188
+ 700: "#90d8ea",
189
+ 800: "#aee3f1",
190
+ 900: "#caecf7",
191
+ },
192
+ blue: {
193
+ 50: "#0d2033",
194
+ 100: "#122b44",
195
+ 200: "#173959",
196
+ 300: "#1c476e",
197
+ 400: "#215583",
198
+ 500: "#3182ce",
199
+ 600: "#4a95d9",
200
+ 700: "#6aaae2",
201
+ 800: "#8dbfeb",
202
+ 900: "#b4d5f3",
203
+ },
204
+ cyan: {
205
+ 50: "#0d2a2e",
206
+ 100: "#12383d",
207
+ 200: "#174b51",
208
+ 300: "#1c5e65",
209
+ 400: "#21717a",
210
+ 500: "#00b5d8",
211
+ 600: "#1fc4e5",
212
+ 700: "#44cfec",
213
+ 800: "#72dcf2",
214
+ 900: "#a3e9f7",
215
+ },
216
+ purple: {
217
+ 50: "#1e1533",
218
+ 100: "#281d44",
219
+ 200: "#34265a",
220
+ 300: "#422f70",
221
+ 400: "#513987",
222
+ 500: "#805ad5",
223
+ 600: "#9f7aea",
224
+ 700: "#b794f4",
225
+ 800: "#d6bcfa",
226
+ 900: "#e9d8fd",
227
+ },
228
+ pink: {
229
+ 50: "#2e1020",
230
+ 100: "#3d152b",
231
+ 200: "#521c3a",
232
+ 300: "#662249",
233
+ 400: "#7b2958",
234
+ 500: "#d53f8c",
235
+ 600: "#dd5a9e",
236
+ 700: "#e577b2",
237
+ 800: "#ed98c8",
238
+ 900: "#f5badc",
239
+ },
240
+ background: {
241
+ 50: "#1a1d2e",
242
+ 100: "#1e2235",
243
+ 200: "#22273c",
244
+ 300: "#262c43",
245
+ 400: "#2a314a",
246
+ 500: "#2e3652",
247
+ 600: "#434d6b",
248
+ 700: "#616e8e",
249
+ 800: "#8490ae",
250
+ 900: "#a8b1ca",
251
+ },
252
+ backgroundColor: {
253
+ main: "#111827",
254
+ secondary: "#1a202c",
255
+ tertiary: "#1e2535",
256
+ quaternary: "#252e3d",
257
+ light: "#161b27",
258
+ medium: "#1c2333",
259
+ accent: "#212840",
260
+ subtle: "#131926",
261
+ muted: "#202840",
262
+ neutral: "#1a2133",
263
+ base: "#111827",
264
+ tableHeader: "#161d2e",
265
+ },
266
+ text: {
267
+ 50: "#1a1d2b",
268
+ 100: "#2d3149",
269
+ 200: "#434867",
270
+ 300: "#5c6180",
271
+ 400: "#777c9a",
272
+ 500: "#9499b4",
273
+ 600: "#adb1c8",
274
+ 700: "#c6c9da",
275
+ 800: "#dfe1eb",
276
+ 900: "#f0f1f7",
277
+ },
278
+ header: {
279
+ 50: "#1c2130",
280
+ 100: "#252c3f",
281
+ 200: "#2f384e",
282
+ 300: "#39445e",
283
+ 400: "#44506e",
284
+ 500: "#c8cfe0",
285
+ 600: "#d4dae8",
286
+ 700: "#e0e5f0",
287
+ 800: "#eceff7",
288
+ 900: "#f5f7fb",
289
+ },
290
+ placeholder: {
291
+ 50: "#1e2235",
292
+ 100: "#272c42",
293
+ 200: "#31374f",
294
+ 300: "#3b425c",
295
+ 400: "#464d6a",
296
+ 500: "#6b7191",
297
+ 600: "#8388a5",
298
+ 700: "#9da2ba",
299
+ 800: "#b7bbcf",
300
+ 900: "#d1d4e4",
301
+ },
302
+ boxShadow: {
303
+ primary: "#9A52E247",
304
+ error: "#F2463A47",
305
+ default: "#00000066",
306
+ },
307
+ sidebar: {
308
+ background: {
309
+ 50: "#0d1117",
310
+ 100: "#111827",
311
+ 200: "#0d1526",
312
+ 300: "#1a2540",
313
+ 400: "#1f2d4d",
314
+ 500: "#0a0f1e",
315
+ 600: "#090d1b",
316
+ 700: "#070b17",
317
+ 800: "#060913",
318
+ 900: "#04070f",
319
+ },
320
+ },
321
+ boxborder: {
322
+ 50: "#1e2235",
323
+ 100: "#252b42",
324
+ 200: "#2c3250",
325
+ 300: "#33395e",
326
+ 400: "#3a406c",
327
+ 500: "#41477a",
328
+ 600: "#565c91",
329
+ 700: "#7479a8",
330
+ 800: "#9499bf",
331
+ 900: "#b5b9d6",
332
+ },
333
+ border: {
334
+ 50: "#1a1e2e",
335
+ 100: "#1f2438",
336
+ 200: "#252a42",
337
+ 300: "#2b314c",
338
+ 400: "#313756",
339
+ 500: "#373d60",
340
+ 600: "#4d5479",
341
+ 700: "#6b7296",
342
+ 800: "#8d93b3",
343
+ 900: "#b0b4d0",
344
+ },
345
+ table: {
346
+ hover: {
347
+ 50: "#171c2c",
348
+ 100: "#1b2033",
349
+ 200: "#1f243a",
350
+ 300: "#232841",
351
+ 400: "#272c48",
352
+ 500: "#2b304f",
353
+ 600: "#3a3f63",
354
+ 700: "#545879",
355
+ 800: "#72768f",
356
+ 900: "#9295a6",
357
+ },
358
+ },
359
+ disabled: {
360
+ 50: "#1a1e2e",
361
+ 100: "#1f2438",
362
+ 200: "#252a42",
363
+ 300: "#2b314c",
364
+ 400: "#313756",
365
+ 500: "#373d60",
366
+ 600: "#4d5479",
367
+ 700: "#6b7296",
368
+ 800: "#8d93b3",
369
+ 900: "#b0b4d0",
370
+ },
371
+ };
372
+ exports.default = darkPalette;
@@ -1,4 +1,8 @@
1
1
  declare const palette: {
2
+ gradient: {
3
+ from: string;
4
+ to: string;
5
+ };
2
6
  primary: {
3
7
  50: string;
4
8
  100: string;
@@ -281,7 +281,10 @@ var disabled = {
281
281
  800: "#625d75",
282
282
  900: "#4b4759",
283
283
  };
284
+ // Two-tone brand gradient (violet → pink). Each theme overrides with its own pair.
285
+ var gradient = { from: "#8B3FC8", to: "#EC4899" };
284
286
  var palette = {
287
+ gradient: gradient,
285
288
  primary: primary,
286
289
  secondary: secondary,
287
290
  tertiary: tertiary,
@@ -1,4 +1,8 @@
1
1
  declare const palette: {
2
+ gradient: {
3
+ from: string;
4
+ to: string;
5
+ };
2
6
  primary: {
3
7
  50: string;
4
8
  100: string;
@@ -30,7 +30,8 @@ var primary = {
30
30
  900: "#043b35",
31
31
  opacity: (0, buildBrandTokens_1.buildPrimaryOpacity)(PRIMARY_500),
32
32
  };
33
- var palette = __assign(__assign({}, palette_1.default), { primary: primary,
33
+ var palette = __assign(__assign({}, palette_1.default), { gradient: { from: "#0f9d8a", to: "#06b6d4" }, // teal → cyan
34
+ primary: primary,
34
35
  // 🌫️ Neutral gray (slightly cool to match teal)
35
36
  gray: {
36
37
  50: "#f6f8f8",
@@ -1,4 +1,8 @@
1
1
  declare const palette: {
2
+ gradient: {
3
+ from: string;
4
+ to: string;
5
+ };
2
6
  primary: {
3
7
  50: string;
4
8
  100: string;
@@ -30,7 +30,8 @@ var primary = {
30
30
  900: "#0a2016",
31
31
  opacity: (0, buildBrandTokens_1.buildPrimaryOpacity)(PRIMARY_500),
32
32
  };
33
- var palette = __assign(__assign({}, palette_1.default), { primary: primary, tertiary: __assign({}, primary), gray: {
33
+ var palette = __assign(__assign({}, palette_1.default), { gradient: { from: "#2d6a4f", to: "#14b8a6" }, // forest green → teal
34
+ primary: primary, tertiary: __assign({}, primary), gray: {
34
35
  50: "#f6f9f7",
35
36
  100: "#ecf1ee",
36
37
  200: "#dce5e0",
@@ -1,4 +1,8 @@
1
1
  declare const palette: {
2
+ gradient: {
3
+ from: string;
4
+ to: string;
5
+ };
2
6
  primary: {
3
7
  50: string;
4
8
  100: string;
@@ -30,7 +30,8 @@ var primary = {
30
30
  900: "#531a14",
31
31
  opacity: (0, buildBrandTokens_1.buildPrimaryOpacity)(PRIMARY_500),
32
32
  };
33
- var palette = __assign(__assign({}, palette_1.default), { primary: primary,
33
+ var palette = __assign(__assign({}, palette_1.default), { gradient: { from: "#cf4e3a", to: "#f59e0b" }, // terracotta red → amber
34
+ primary: primary,
34
35
  // 🌫️ Neutral gray (slightly warm, not pink)
35
36
  gray: {
36
37
  50: "#f8f6f5",
@@ -1,4 +1,8 @@
1
1
  declare const palette: {
2
+ gradient: {
3
+ from: string;
4
+ to: string;
5
+ };
2
6
  primary: {
3
7
  50: string;
4
8
  100: string;
@@ -30,7 +30,8 @@ var primary = {
30
30
  900: "#552634",
31
31
  opacity: (0, buildBrandTokens_1.buildPrimaryOpacity)(PRIMARY_500),
32
32
  };
33
- var palette = __assign(__assign({}, palette_1.default), { primary: primary,
33
+ var palette = __assign(__assign({}, palette_1.default), { gradient: { from: "#d16a7e", to: "#fb7185" }, // rose → coral pink
34
+ primary: primary,
34
35
  // 🌫️ Neutral gray (slightly warm, avoids purple tint)
35
36
  gray: {
36
37
  50: "#f9f7f7",
@@ -1,4 +1,8 @@
1
1
  declare const palette: {
2
+ gradient: {
3
+ from: string;
4
+ to: string;
5
+ };
2
6
  primary: {
3
7
  50: string;
4
8
  100: string;
@@ -30,7 +30,8 @@ var primary = {
30
30
  900: "#071021",
31
31
  opacity: (0, buildBrandTokens_1.buildPrimaryOpacity)(PRIMARY_500),
32
32
  };
33
- var palette = __assign(__assign({}, palette_1.default), { primary: primary, tertiary: __assign({}, primary), gray: {
33
+ var palette = __assign(__assign({}, palette_1.default), { gradient: { from: "#1a3a6b", to: "#38bdf8" }, // deep navy → sky blue
34
+ primary: primary, tertiary: __assign({}, primary), gray: {
34
35
  50: "#f4f6fa",
35
36
  100: "#e6eaf2",
36
37
  200: "#d3dae8",
@@ -1,4 +1,8 @@
1
1
  declare const palette: {
2
+ gradient: {
3
+ from: string;
4
+ to: string;
5
+ };
2
6
  primary: {
3
7
  50: string;
4
8
  100: string;
@@ -30,7 +30,8 @@ var primary = {
30
30
  900: "#111827",
31
31
  opacity: (0, buildBrandTokens_1.buildPrimaryOpacity)(PRIMARY_500),
32
32
  };
33
- var palette = __assign(__assign({}, palette_1.default), { primary: primary, tertiary: __assign({}, primary), gray: {
33
+ var palette = __assign(__assign({}, palette_1.default), { gradient: { from: "#6b7280", to: "#818cf8" }, // slate gray → indigo
34
+ primary: primary, tertiary: __assign({}, primary), gray: {
34
35
  50: "#f9fafb",
35
36
  100: "#f3f4f6",
36
37
  200: "#e5e7eb",
@@ -2,6 +2,10 @@ import "@chakra-ui/react";
2
2
  import { Theme as ChakraTheme } from "@chakra-ui/react";
3
3
  export type CustomThemeProps = {
4
4
  colors: {
5
+ gradient?: {
6
+ from: string;
7
+ to: string;
8
+ };
5
9
  primary: {
6
10
  50: string;
7
11
  100: string;
@@ -1,9 +1,30 @@
1
1
  import React from "react";
2
2
  import { DataObject, TableHeaderProps } from "../Components/Table/TableProps";
3
+ /**
4
+ * Type-aware, null-safe comparison. Detects numbers and dates; otherwise falls
5
+ * back to a numeric-aware locale string compare. Empty/null values sort last.
6
+ */
7
+ export declare function compareValues(aRaw: any, bRaw: any, direction: "asc" | "desc" | "none"): number;
3
8
  export declare function SortMultiColumnData(data: Record<string, string | number>[], sortConfig: {
4
9
  column: string | number;
5
10
  direction: string;
6
11
  }[]): Record<string, string | number>[];
12
+ export type TablePaletteColor = {
13
+ solid: string;
14
+ soft: string;
15
+ text: string;
16
+ };
17
+ /** Deterministic, theme-aware color palette for groups + status pills. */
18
+ export declare function buildTablePalette(theme: any): TablePaletteColor[];
19
+ /** Pick a deterministic palette color for a value, with optional override hex. */
20
+ export declare function pickTableColor(value: string | number, palette: TablePaletteColor[], override?: string): TablePaletteColor;
21
+ export type TableGroup = {
22
+ value: string | number;
23
+ label: string;
24
+ rows: DataObject[];
25
+ };
26
+ /** Partition rows by a column key, preserving first-seen group order. */
27
+ export declare function groupRows(data: DataObject[], groupBy: string | number): TableGroup[];
7
28
  export declare const calculateLeftOffset: (columns: number[], index: number) => number;
8
29
  /**
9
30
  * When a column has no `node`, raw cell values are rendered; plain objects