@pagamio/frontend-commons-lib 0.8.175 → 0.8.183

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 (508) hide show
  1. package/lib/api/client.d.ts +88 -0
  2. package/lib/api/client.js +339 -0
  3. package/lib/api/context.d.ts +112 -0
  4. package/lib/api/context.js +105 -0
  5. package/lib/api/index.d.ts +4 -0
  6. package/lib/api/index.js +4 -0
  7. package/lib/api/swr.d.ts +46 -0
  8. package/lib/api/swr.js +124 -0
  9. package/lib/api/types.d.ts +145 -0
  10. package/lib/api/types.js +10 -0
  11. package/lib/auth/authenticators/AuthenticatorFactory.d.ts +25 -0
  12. package/lib/auth/authenticators/AuthenticatorFactory.js +32 -0
  13. package/lib/auth/authenticators/index.d.ts +7 -0
  14. package/lib/auth/authenticators/index.js +7 -0
  15. package/lib/auth/authenticators/processors/DefaultAuthenticatorProcessor.d.ts +21 -0
  16. package/lib/auth/authenticators/processors/DefaultAuthenticatorProcessor.js +26 -0
  17. package/lib/auth/authenticators/processors/StrapiAuthenticatorProcessor.d.ts +74 -0
  18. package/lib/auth/authenticators/processors/StrapiAuthenticatorProcessor.js +99 -0
  19. package/lib/auth/authenticators/types.d.ts +26 -0
  20. package/lib/auth/authenticators/types.js +9 -0
  21. package/lib/auth/components/AppBanner.d.ts +7 -0
  22. package/lib/auth/components/AppBanner.js +9 -0
  23. package/lib/auth/components/AuthCard.d.ts +8 -0
  24. package/lib/auth/components/AuthCard.js +14 -0
  25. package/lib/auth/components/AuthFormUtils.d.ts +58 -0
  26. package/lib/auth/components/AuthFormUtils.js +52 -0
  27. package/lib/auth/components/AuthPageLayout.d.ts +45 -0
  28. package/lib/auth/components/AuthPageLayout.js +12 -0
  29. package/lib/auth/components/ChangePasswordPage.d.ts +12 -0
  30. package/lib/auth/components/ChangePasswordPage.js +59 -0
  31. package/lib/auth/components/CustomerRegistrationPage.d.ts +50 -0
  32. package/lib/auth/components/CustomerRegistrationPage.js +140 -0
  33. package/lib/auth/components/ForgotPasswordPage.d.ts +38 -0
  34. package/lib/auth/components/ForgotPasswordPage.js +76 -0
  35. package/lib/auth/components/LoginPage.d.ts +73 -0
  36. package/lib/auth/components/LoginPage.js +115 -0
  37. package/lib/auth/components/LogoutButton.d.ts +30 -0
  38. package/lib/auth/components/LogoutButton.js +47 -0
  39. package/lib/auth/components/ResetPasswordPage.d.ts +42 -0
  40. package/lib/auth/components/ResetPasswordPage.js +88 -0
  41. package/lib/auth/components/hooks/useChangeUserPassword.d.ts +26 -0
  42. package/lib/auth/components/hooks/useChangeUserPassword.js +63 -0
  43. package/lib/auth/components/index.d.ts +8 -0
  44. package/lib/auth/components/index.js +7 -0
  45. package/lib/auth/context/AuthContext.d.ts +65 -0
  46. package/lib/auth/context/AuthContext.js +150 -0
  47. package/lib/auth/context/index.d.ts +1 -0
  48. package/lib/auth/context/index.js +1 -0
  49. package/lib/auth/index.d.ts +7 -0
  50. package/lib/auth/index.js +7 -0
  51. package/lib/auth/services/AuthService.d.ts +230 -0
  52. package/lib/auth/services/AuthService.js +475 -0
  53. package/lib/auth/services/LogoutService.d.ts +27 -0
  54. package/lib/auth/services/LogoutService.js +98 -0
  55. package/lib/auth/services/index.d.ts +2 -0
  56. package/lib/auth/services/index.js +2 -0
  57. package/lib/auth/shared/index.d.ts +1 -0
  58. package/lib/auth/shared/index.js +1 -0
  59. package/lib/auth/shared/layout/AuthPageLayout.d.ts +10 -0
  60. package/lib/auth/shared/layout/AuthPageLayout.js +16 -0
  61. package/lib/auth/shared/layout/index.d.ts +1 -0
  62. package/lib/auth/shared/layout/index.js +1 -0
  63. package/lib/auth/types/auth.types.d.ts +234 -0
  64. package/lib/auth/types/auth.types.js +14 -0
  65. package/lib/auth/types/index.d.ts +1 -0
  66. package/lib/auth/types/index.js +1 -0
  67. package/lib/auth/utils/TokenManager.d.ts +43 -0
  68. package/lib/auth/utils/TokenManager.js +171 -0
  69. package/lib/auth/utils/Transformers.d.ts +158 -0
  70. package/lib/auth/utils/Transformers.js +263 -0
  71. package/lib/auth/utils/errorDetection.d.ts +22 -0
  72. package/lib/auth/utils/errorDetection.js +190 -0
  73. package/lib/auth/utils/index.d.ts +3 -0
  74. package/lib/auth/utils/index.js +3 -0
  75. package/lib/components/charts/LineGraph.d.ts +15 -0
  76. package/lib/components/charts/LineGraph.js +131 -0
  77. package/lib/components/icons/Icon.d.ts +8 -0
  78. package/lib/components/icons/Icon.js +13 -0
  79. package/lib/components/icons/index.d.ts +2 -0
  80. package/lib/components/icons/index.js +2 -0
  81. package/lib/components/icons/types.d.ts +26 -0
  82. package/lib/components/icons/types.js +33 -0
  83. package/lib/components/index.d.ts +3 -0
  84. package/lib/components/index.js +3 -0
  85. package/lib/components/layout/AppLayout.d.ts +34 -0
  86. package/lib/components/layout/AppLayout.js +19 -0
  87. package/lib/components/layout/AuthPageLayout.d.ts +13 -0
  88. package/lib/components/layout/AuthPageLayout.js +15 -0
  89. package/lib/components/layout/BreadcrumbNav.d.ts +2 -0
  90. package/lib/components/layout/BreadcrumbNav.js +10 -0
  91. package/lib/components/layout/LayoutContent.d.ts +6 -0
  92. package/lib/components/layout/LayoutContent.js +10 -0
  93. package/lib/components/layout/Navbar.d.ts +106 -0
  94. package/lib/components/layout/Navbar.js +66 -0
  95. package/lib/components/layout/PageHeader.d.ts +8 -0
  96. package/lib/components/layout/PageHeader.js +7 -0
  97. package/lib/components/layout/SessionExpiryModal.d.ts +10 -0
  98. package/lib/components/layout/SessionExpiryModal.js +9 -0
  99. package/lib/components/layout/Sidebar.d.ts +6 -0
  100. package/lib/components/layout/Sidebar.js +87 -0
  101. package/lib/components/layout/VerticalTabsLayout.d.ts +12 -0
  102. package/lib/components/layout/VerticalTabsLayout.js +14 -0
  103. package/lib/components/layout/index.d.ts +9 -0
  104. package/lib/components/layout/index.js +9 -0
  105. package/lib/components/ui/Avatar.d.ts +6 -0
  106. package/lib/components/ui/Avatar.js +11 -0
  107. package/lib/components/ui/AvatarIcon.d.ts +4 -0
  108. package/lib/components/ui/AvatarIcon.js +6 -0
  109. package/lib/components/ui/Button.d.ts +14 -0
  110. package/lib/components/ui/Button.js +30 -0
  111. package/lib/components/ui/Calendar.d.ts +9 -0
  112. package/lib/components/ui/Calendar.js +35 -0
  113. package/lib/components/ui/Card.d.ts +16 -0
  114. package/lib/components/ui/Card.js +6 -0
  115. package/lib/components/ui/Chart.d.ts +2 -0
  116. package/lib/components/ui/Chart.js +16 -0
  117. package/lib/components/ui/Checkbox.d.ts +4 -0
  118. package/lib/components/ui/Checkbox.js +8 -0
  119. package/lib/components/ui/Command.d.ts +80 -0
  120. package/lib/components/ui/Command.js +28 -0
  121. package/lib/components/ui/ContainedTab.d.ts +21 -0
  122. package/lib/components/ui/ContainedTab.js +37 -0
  123. package/lib/components/ui/DateFormat.d.ts +6 -0
  124. package/lib/components/ui/DateFormat.js +8 -0
  125. package/lib/components/ui/DatePicker.d.ts +14 -0
  126. package/lib/components/ui/DatePicker.js +91 -0
  127. package/lib/components/ui/DateRangeModal.d.ts +38 -0
  128. package/lib/components/ui/DateRangeModal.js +89 -0
  129. package/lib/components/ui/DetailsCard.d.ts +16 -0
  130. package/lib/components/ui/DetailsCard.js +14 -0
  131. package/lib/components/ui/DetailsPage.d.ts +36 -0
  132. package/lib/components/ui/DetailsPage.js +50 -0
  133. package/lib/components/ui/Dialog.d.ts +19 -0
  134. package/lib/components/ui/Dialog.js +22 -0
  135. package/lib/components/ui/EmptyState.d.ts +6 -0
  136. package/lib/components/ui/EmptyState.js +6 -0
  137. package/lib/components/ui/FilterComponent.d.ts +30 -0
  138. package/lib/components/ui/FilterComponent.js +80 -0
  139. package/lib/components/ui/FilterList.d.ts +52 -0
  140. package/lib/components/ui/FilterList.js +62 -0
  141. package/lib/components/ui/FilterSection.d.ts +31 -0
  142. package/lib/components/ui/FilterSection.js +21 -0
  143. package/lib/components/ui/FilterWrapper.d.ts +6 -0
  144. package/lib/components/ui/FilterWrapper.js +7 -0
  145. package/lib/components/ui/Form.d.ts +23 -0
  146. package/lib/components/ui/Form.js +62 -0
  147. package/lib/components/ui/HoverableValue.d.ts +7 -0
  148. package/lib/components/ui/HoverableValue.js +8 -0
  149. package/lib/components/ui/IconButton.d.ts +10 -0
  150. package/lib/components/ui/IconButton.js +10 -0
  151. package/lib/components/ui/ImageComponent.d.ts +8 -0
  152. package/lib/components/ui/ImageComponent.js +5 -0
  153. package/lib/components/ui/ImageUploader.d.ts +17 -0
  154. package/lib/components/ui/ImageUploader.js +144 -0
  155. package/lib/components/ui/Input.d.ts +4 -0
  156. package/lib/components/ui/Input.js +8 -0
  157. package/lib/components/ui/Label.d.ts +5 -0
  158. package/lib/components/ui/Label.js +9 -0
  159. package/lib/components/ui/Loader.d.ts +10 -0
  160. package/lib/components/ui/Loader.js +7 -0
  161. package/lib/components/ui/Modal.d.ts +72 -0
  162. package/lib/components/ui/Modal.js +31 -0
  163. package/lib/components/ui/MultiSelect.d.ts +16 -0
  164. package/lib/components/ui/MultiSelect.js +59 -0
  165. package/lib/components/ui/NotificationModal.d.ts +18 -0
  166. package/lib/components/ui/NotificationModal.js +40 -0
  167. package/lib/components/ui/PhoneInput.d.ts +12 -0
  168. package/lib/components/ui/PhoneInput.js +58 -0
  169. package/lib/components/ui/Popover.d.ts +7 -0
  170. package/lib/components/ui/Popover.js +10 -0
  171. package/lib/components/ui/Progress.d.ts +7 -0
  172. package/lib/components/ui/Progress.js +7 -0
  173. package/lib/components/ui/Radio.d.ts +5 -0
  174. package/lib/components/ui/Radio.js +14 -0
  175. package/lib/components/ui/RangeDatePicker.d.ts +78 -0
  176. package/lib/components/ui/RangeDatePicker.js +68 -0
  177. package/lib/components/ui/Select.d.ts +13 -0
  178. package/lib/components/ui/Select.js +57 -0
  179. package/lib/components/ui/Separator.d.ts +4 -0
  180. package/lib/components/ui/Separator.js +7 -0
  181. package/lib/components/ui/Sheet.d.ts +26 -0
  182. package/lib/components/ui/Sheet.js +37 -0
  183. package/lib/components/ui/StatusCell.d.ts +9 -0
  184. package/lib/components/ui/StatusCell.js +6 -0
  185. package/lib/components/ui/Switch.d.ts +10 -0
  186. package/lib/components/ui/Switch.js +22 -0
  187. package/lib/components/ui/Tab.d.ts +15 -0
  188. package/lib/components/ui/Tab.js +13 -0
  189. package/lib/components/ui/TableDownload.d.ts +11 -0
  190. package/lib/components/ui/TableDownload.js +82 -0
  191. package/lib/components/ui/TailwindIndicator.d.ts +1 -0
  192. package/lib/components/ui/TailwindIndicator.js +6 -0
  193. package/lib/components/ui/TextField.d.ts +60 -0
  194. package/lib/components/ui/TextField.js +42 -0
  195. package/lib/components/ui/Textarea.d.ts +5 -0
  196. package/lib/components/ui/Textarea.js +8 -0
  197. package/lib/components/ui/Toast.d.ts +12 -0
  198. package/lib/components/ui/Toast.js +25 -0
  199. package/lib/components/ui/UploadField.d.ts +15 -0
  200. package/lib/components/ui/UploadField.js +45 -0
  201. package/lib/components/ui/VerticalTab.d.ts +16 -0
  202. package/lib/components/ui/VerticalTab.js +13 -0
  203. package/lib/components/ui/index.d.ts +49 -0
  204. package/lib/components/ui/index.js +47 -0
  205. package/lib/context/BreadcrumbContext.d.ts +28 -0
  206. package/lib/context/BreadcrumbContext.js +238 -0
  207. package/lib/context/FormEngineDrawerProvider.d.ts +21 -0
  208. package/lib/context/FormEngineDrawerProvider.js +38 -0
  209. package/lib/context/MultiFormEngineDrawerProvider.d.ts +25 -0
  210. package/lib/context/MultiFormEngineDrawerProvider.js +89 -0
  211. package/lib/context/SidebarContext.d.ts +65 -0
  212. package/lib/context/SidebarContext.js +47 -0
  213. package/lib/context/ToastContext.d.ts +17 -0
  214. package/lib/context/ToastContext.js +29 -0
  215. package/lib/context/index.d.ts +5 -0
  216. package/lib/context/index.js +5 -0
  217. package/lib/dashboard-visuals/components/BaseChart.d.ts +55 -0
  218. package/lib/dashboard-visuals/components/BaseChart.js +201 -0
  219. package/lib/dashboard-visuals/components/CardWrapper.d.ts +10 -0
  220. package/lib/dashboard-visuals/components/CardWrapper.js +13 -0
  221. package/lib/dashboard-visuals/components/ChartDetailsModal.d.ts +57 -0
  222. package/lib/dashboard-visuals/components/ChartDetailsModal.js +27 -0
  223. package/lib/dashboard-visuals/components/ChartDetailsModalWrapper.d.ts +29 -0
  224. package/lib/dashboard-visuals/components/ChartDetailsModalWrapper.js +4 -0
  225. package/lib/dashboard-visuals/components/ChartFormatter.d.ts +22 -0
  226. package/lib/dashboard-visuals/components/ChartFormatter.js +46 -0
  227. package/lib/dashboard-visuals/components/ChartWrapper.d.ts +11 -0
  228. package/lib/dashboard-visuals/components/ChartWrapper.js +14 -0
  229. package/lib/dashboard-visuals/components/DashboardFilter.d.ts +8 -0
  230. package/lib/dashboard-visuals/components/DashboardFilter.js +17 -0
  231. package/lib/dashboard-visuals/components/DataTable.d.ts +3 -0
  232. package/lib/dashboard-visuals/components/DataTable.js +57 -0
  233. package/lib/dashboard-visuals/components/EmptyState.d.ts +6 -0
  234. package/lib/dashboard-visuals/components/EmptyState.js +6 -0
  235. package/lib/dashboard-visuals/components/ErrorState.d.ts +7 -0
  236. package/lib/dashboard-visuals/components/ErrorState.js +5 -0
  237. package/lib/dashboard-visuals/components/FilterComponentSkeleton.d.ts +3 -0
  238. package/lib/dashboard-visuals/components/FilterComponentSkeleton.js +11 -0
  239. package/lib/dashboard-visuals/components/Pagination.d.ts +10 -0
  240. package/lib/dashboard-visuals/components/Pagination.js +7 -0
  241. package/lib/dashboard-visuals/components/Switch.d.ts +8 -0
  242. package/lib/dashboard-visuals/components/Switch.js +10 -0
  243. package/lib/dashboard-visuals/components/TileSkeleton.d.ts +2 -0
  244. package/lib/dashboard-visuals/components/TileSkeleton.js +5 -0
  245. package/lib/dashboard-visuals/components/molecules/Analytics.d.ts +11 -0
  246. package/lib/dashboard-visuals/components/molecules/Analytics.js +9 -0
  247. package/lib/dashboard-visuals/components/molecules/DataGrid.d.ts +15 -0
  248. package/lib/dashboard-visuals/components/molecules/DataGrid.js +124 -0
  249. package/lib/dashboard-visuals/components/molecules/NoChartData.d.ts +6 -0
  250. package/lib/dashboard-visuals/components/molecules/NoChartData.js +6 -0
  251. package/lib/dashboard-visuals/components/molecules/VisualChart.d.ts +16 -0
  252. package/lib/dashboard-visuals/components/molecules/VisualChart.js +8 -0
  253. package/lib/dashboard-visuals/components/types.d.ts +62 -0
  254. package/lib/dashboard-visuals/components/types.js +1 -0
  255. package/lib/dashboard-visuals/hooks/useChartData.d.ts +15 -0
  256. package/lib/dashboard-visuals/hooks/useChartData.js +82 -0
  257. package/lib/dashboard-visuals/hooks/useTooltipFormatter.d.ts +13 -0
  258. package/lib/dashboard-visuals/hooks/useTooltipFormatter.js +10 -0
  259. package/lib/dashboard-visuals/index.d.ts +39 -0
  260. package/lib/dashboard-visuals/index.js +168 -0
  261. package/lib/dashboard-visuals/types/index.d.ts +83 -0
  262. package/lib/dashboard-visuals/types/index.js +1 -0
  263. package/lib/dashboard-visuals/types/metricDetailData.d.ts +25 -0
  264. package/lib/dashboard-visuals/types/metricDetailData.js +1 -0
  265. package/lib/dashboard-visuals/utils/api.d.ts +5 -0
  266. package/lib/dashboard-visuals/utils/api.js +6 -0
  267. package/lib/dashboard-visuals/utils/chartOptions.d.ts +481 -0
  268. package/lib/dashboard-visuals/utils/chartOptions.js +393 -0
  269. package/lib/dashboard-visuals/utils/chunkArray.d.ts +1 -0
  270. package/lib/dashboard-visuals/utils/chunkArray.js +7 -0
  271. package/lib/dashboard-visuals/utils/defaultColors.d.ts +1 -0
  272. package/lib/dashboard-visuals/utils/defaultColors.js +1 -0
  273. package/lib/dashboard-visuals/utils/formatUtil.d.ts +203 -0
  274. package/lib/dashboard-visuals/utils/formatUtil.js +472 -0
  275. package/lib/dashboard-visuals/utils/gridUtil.d.ts +11 -0
  276. package/lib/dashboard-visuals/utils/gridUtil.js +32 -0
  277. package/lib/dashboard-visuals/utils/index.d.ts +6 -0
  278. package/lib/dashboard-visuals/utils/index.js +6 -0
  279. package/lib/dashboard-visuals/utils/tooltipUtils.d.ts +11 -0
  280. package/lib/dashboard-visuals/utils/tooltipUtils.js +180 -0
  281. package/lib/dashboard-visuals/visualRegistry.d.ts +4 -0
  282. package/lib/dashboard-visuals/visualRegistry.js +41 -0
  283. package/lib/dashboard-visuals/visuals/BarChart.d.ts +58 -0
  284. package/lib/dashboard-visuals/visuals/BarChart.js +95 -0
  285. package/lib/dashboard-visuals/visuals/BarLineHybridChart.d.ts +33 -0
  286. package/lib/dashboard-visuals/visuals/BarLineHybridChart.js +60 -0
  287. package/lib/dashboard-visuals/visuals/BubbleChart.d.ts +25 -0
  288. package/lib/dashboard-visuals/visuals/BubbleChart.js +101 -0
  289. package/lib/dashboard-visuals/visuals/DistributionChart.d.ts +11 -0
  290. package/lib/dashboard-visuals/visuals/DistributionChart.js +48 -0
  291. package/lib/dashboard-visuals/visuals/DonutChart.d.ts +50 -0
  292. package/lib/dashboard-visuals/visuals/DonutChart.js +105 -0
  293. package/lib/dashboard-visuals/visuals/GaugeChart.d.ts +32 -0
  294. package/lib/dashboard-visuals/visuals/GaugeChart.js +53 -0
  295. package/lib/dashboard-visuals/visuals/GroupedBarChart.d.ts +47 -0
  296. package/lib/dashboard-visuals/visuals/GroupedBarChart.js +131 -0
  297. package/lib/dashboard-visuals/visuals/HeatmapChart.d.ts +79 -0
  298. package/lib/dashboard-visuals/visuals/HeatmapChart.js +146 -0
  299. package/lib/dashboard-visuals/visuals/HorizontalBarChart.d.ts +50 -0
  300. package/lib/dashboard-visuals/visuals/HorizontalBarChart.js +131 -0
  301. package/lib/dashboard-visuals/visuals/ItemPerformanceCard.d.ts +30 -0
  302. package/lib/dashboard-visuals/visuals/ItemPerformanceCard.js +31 -0
  303. package/lib/dashboard-visuals/visuals/LineChart.d.ts +56 -0
  304. package/lib/dashboard-visuals/visuals/LineChart.js +80 -0
  305. package/lib/dashboard-visuals/visuals/LineGraph.d.ts +50 -0
  306. package/lib/dashboard-visuals/visuals/LineGraph.js +189 -0
  307. package/lib/dashboard-visuals/visuals/MetricSummaryCard.d.ts +14 -0
  308. package/lib/dashboard-visuals/visuals/MetricSummaryCard.js +8 -0
  309. package/lib/dashboard-visuals/visuals/MultiGaugeChart.d.ts +39 -0
  310. package/lib/dashboard-visuals/visuals/MultiGaugeChart.js +119 -0
  311. package/lib/dashboard-visuals/visuals/PieChart.d.ts +59 -0
  312. package/lib/dashboard-visuals/visuals/PieChart.js +194 -0
  313. package/lib/dashboard-visuals/visuals/SelectedEventTile.d.ts +14 -0
  314. package/lib/dashboard-visuals/visuals/SelectedEventTile.js +35 -0
  315. package/lib/dashboard-visuals/visuals/SpeedometerChart.d.ts +53 -0
  316. package/lib/dashboard-visuals/visuals/SpeedometerChart.js +94 -0
  317. package/lib/dashboard-visuals/visuals/Table.d.ts +26 -0
  318. package/lib/dashboard-visuals/visuals/Table.js +113 -0
  319. package/lib/dashboard-visuals/visuals/Tile.d.ts +16 -0
  320. package/lib/dashboard-visuals/visuals/Tile.js +16 -0
  321. package/lib/dashboard-visuals/visuals/TreeMap.d.ts +25 -0
  322. package/lib/dashboard-visuals/visuals/TreeMap.js +45 -0
  323. package/lib/dashboard-visuals/visuals/WaterfallChart.d.ts +52 -0
  324. package/lib/dashboard-visuals/visuals/WaterfallChart.js +266 -0
  325. package/lib/form-engine/Form.d.ts +4 -0
  326. package/lib/form-engine/Form.js +14 -0
  327. package/lib/form-engine/FormEngine.d.ts +3 -0
  328. package/lib/form-engine/FormEngine.js +121 -0
  329. package/lib/form-engine/components/FieldWrapper.d.ts +18 -0
  330. package/lib/form-engine/components/FieldWrapper.js +63 -0
  331. package/lib/form-engine/components/index.d.ts +2 -0
  332. package/lib/form-engine/components/index.js +2 -0
  333. package/lib/form-engine/components/inputs/card-expiry-input/CardExpiryInput.d.ts +16 -0
  334. package/lib/form-engine/components/inputs/card-expiry-input/CardExpiryInput.js +48 -0
  335. package/lib/form-engine/components/inputs/checkbox-input/CheckboxInput.d.ts +4 -0
  336. package/lib/form-engine/components/inputs/checkbox-input/CheckboxInput.js +5 -0
  337. package/lib/form-engine/components/inputs/credit-card-input/CreditCardInput.d.ts +4 -0
  338. package/lib/form-engine/components/inputs/credit-card-input/CreditCardInput.js +82 -0
  339. package/lib/form-engine/components/inputs/date-input/DateInput.d.ts +4 -0
  340. package/lib/form-engine/components/inputs/date-input/DateInput.js +7 -0
  341. package/lib/form-engine/components/inputs/date-input/index.d.ts +1 -0
  342. package/lib/form-engine/components/inputs/date-input/index.js +1 -0
  343. package/lib/form-engine/components/inputs/email-input/EmailInput.d.ts +4 -0
  344. package/lib/form-engine/components/inputs/email-input/EmailInput.js +5 -0
  345. package/lib/form-engine/components/inputs/email-input/index.d.ts +1 -0
  346. package/lib/form-engine/components/inputs/email-input/index.js +1 -0
  347. package/lib/form-engine/components/inputs/index.d.ts +13 -0
  348. package/lib/form-engine/components/inputs/index.js +13 -0
  349. package/lib/form-engine/components/inputs/label-input/LabelInput.d.ts +4 -0
  350. package/lib/form-engine/components/inputs/label-input/LabelInput.js +7 -0
  351. package/lib/form-engine/components/inputs/label-input/index.d.ts +1 -0
  352. package/lib/form-engine/components/inputs/label-input/index.js +1 -0
  353. package/lib/form-engine/components/inputs/multi-select-input/MultiSelectInput.d.ts +4 -0
  354. package/lib/form-engine/components/inputs/multi-select-input/MultiSelectInput.js +5 -0
  355. package/lib/form-engine/components/inputs/number-input/NumberInput.d.ts +4 -0
  356. package/lib/form-engine/components/inputs/number-input/NumberInput.js +5 -0
  357. package/lib/form-engine/components/inputs/number-input/index.d.ts +1 -0
  358. package/lib/form-engine/components/inputs/number-input/index.js +1 -0
  359. package/lib/form-engine/components/inputs/password-input/PasswordInput.d.ts +4 -0
  360. package/lib/form-engine/components/inputs/password-input/PasswordInput.js +9 -0
  361. package/lib/form-engine/components/inputs/password-input/index.d.ts +1 -0
  362. package/lib/form-engine/components/inputs/password-input/index.js +1 -0
  363. package/lib/form-engine/components/inputs/radio-button/RadioInput.d.ts +4 -0
  364. package/lib/form-engine/components/inputs/radio-button/RadioInput.js +6 -0
  365. package/lib/form-engine/components/inputs/radio-button/index.d.ts +1 -0
  366. package/lib/form-engine/components/inputs/radio-button/index.js +1 -0
  367. package/lib/form-engine/components/inputs/select/SelectInput.d.ts +4 -0
  368. package/lib/form-engine/components/inputs/select/SelectInput.js +6 -0
  369. package/lib/form-engine/components/inputs/select/index.d.ts +1 -0
  370. package/lib/form-engine/components/inputs/select/index.js +1 -0
  371. package/lib/form-engine/components/inputs/textarea-input/TextareaInput.d.ts +4 -0
  372. package/lib/form-engine/components/inputs/textarea-input/TextareaInput.js +5 -0
  373. package/lib/form-engine/components/inputs/textarea-input/index.d.ts +1 -0
  374. package/lib/form-engine/components/inputs/textarea-input/index.js +1 -0
  375. package/lib/form-engine/components/inputs/time-input/TimeInput.d.ts +4 -0
  376. package/lib/form-engine/components/inputs/time-input/TimeInput.js +5 -0
  377. package/lib/form-engine/components/inputs/time-input/index.d.ts +1 -0
  378. package/lib/form-engine/components/inputs/time-input/index.js +1 -0
  379. package/lib/form-engine/components/inputs/toggle-switch-input/ToggleSwitchInput.d.ts +4 -0
  380. package/lib/form-engine/components/inputs/toggle-switch-input/ToggleSwitchInput.js +7 -0
  381. package/lib/form-engine/components/inputs/toggle-switch-input/index.d.ts +1 -0
  382. package/lib/form-engine/components/inputs/toggle-switch-input/index.js +1 -0
  383. package/lib/form-engine/components/inputs/upload-field/UploadFieldForm.d.ts +4 -0
  384. package/lib/form-engine/components/inputs/upload-field/UploadFieldForm.js +59 -0
  385. package/lib/form-engine/components/inputs/upload-field/index.d.ts +1 -0
  386. package/lib/form-engine/components/inputs/upload-field/index.js +1 -0
  387. package/lib/form-engine/hooks/useFormPersistence.d.ts +11 -0
  388. package/lib/form-engine/hooks/useFormPersistence.js +46 -0
  389. package/lib/form-engine/index.d.ts +5 -0
  390. package/lib/form-engine/index.js +5 -0
  391. package/lib/form-engine/registry/RegisterComponents.d.ts +1 -0
  392. package/lib/form-engine/registry/RegisterComponents.js +35 -0
  393. package/lib/form-engine/registry/Registry.d.ts +5 -0
  394. package/lib/form-engine/registry/Registry.js +13 -0
  395. package/lib/form-engine/registry/index.d.ts +2 -0
  396. package/lib/form-engine/registry/index.js +2 -0
  397. package/lib/form-engine/types/index.d.ts +311 -0
  398. package/lib/form-engine/types/index.js +1 -0
  399. package/lib/helpers/index.d.ts +2 -0
  400. package/lib/helpers/index.js +2 -0
  401. package/lib/helpers/utils.d.ts +37 -0
  402. package/lib/helpers/utils.js +77 -0
  403. package/lib/helpers/validations.d.ts +80 -0
  404. package/lib/helpers/validations.js +39 -0
  405. package/lib/index.d.ts +21 -0
  406. package/lib/index.js +30 -0
  407. package/lib/mocks/mockApiRequestsConfig.d.ts +2 -0
  408. package/lib/mocks/mockApiRequestsConfig.js +343 -0
  409. package/lib/pagamio-drawer/TopUpWalletDrawer/TopUpWalletContent.d.ts +14 -0
  410. package/lib/pagamio-drawer/TopUpWalletDrawer/TopUpWalletContent.js +40 -0
  411. package/lib/pagamio-drawer/TopUpWalletDrawer/index.d.ts +11 -0
  412. package/lib/pagamio-drawer/TopUpWalletDrawer/index.js +7 -0
  413. package/lib/pagamio-drawer/components/BaseDrawer.d.ts +11 -0
  414. package/lib/pagamio-drawer/components/BaseDrawer.js +10 -0
  415. package/lib/pagamio-drawer/components/DrawerContent.d.ts +27 -0
  416. package/lib/pagamio-drawer/components/DrawerContent.js +237 -0
  417. package/lib/pagamio-drawer/index.d.ts +22 -0
  418. package/lib/pagamio-drawer/index.js +133 -0
  419. package/lib/pagamio-table/data-table/ExportButton.d.ts +57 -0
  420. package/lib/pagamio-table/data-table/ExportButton.js +96 -0
  421. package/lib/pagamio-table/data-table/MantineCoreTable.d.ts +44 -0
  422. package/lib/pagamio-table/data-table/MantineCoreTable.js +129 -0
  423. package/lib/pagamio-table/data-table/Pagination.d.ts +10 -0
  424. package/lib/pagamio-table/data-table/Pagination.js +5 -0
  425. package/lib/pagamio-table/data-table/TableDownload.d.ts +8 -0
  426. package/lib/pagamio-table/data-table/TableDownload.js +81 -0
  427. package/lib/pagamio-table/data-table/TableToolbar.d.ts +3 -0
  428. package/lib/pagamio-table/data-table/TableToolbar.js +16 -0
  429. package/lib/pagamio-table/data-table/exportUtils.d.ts +42 -0
  430. package/lib/pagamio-table/data-table/exportUtils.js +782 -0
  431. package/lib/pagamio-table/data-table/index.d.ts +5 -0
  432. package/lib/pagamio-table/data-table/index.js +11 -0
  433. package/lib/pagamio-table/data-table/pdfExportUtils.d.ts +111 -0
  434. package/lib/pagamio-table/data-table/pdfExportUtils.js +113 -0
  435. package/lib/pagamio-table/data-table/types.d.ts +169 -0
  436. package/lib/pagamio-table/data-table/types.js +1 -0
  437. package/lib/pagamio-table/index.d.ts +4 -0
  438. package/lib/pagamio-table/index.js +4 -0
  439. package/lib/pagamio-table/utils/functionHelper.d.ts +12 -0
  440. package/lib/pagamio-table/utils/functionHelper.js +24 -0
  441. package/lib/pagamio-table/utils/index.d.ts +1 -0
  442. package/lib/pagamio-table/utils/index.js +1 -0
  443. package/lib/rbac/hooks.d.ts +39 -0
  444. package/lib/rbac/hooks.js +51 -0
  445. package/lib/rbac/index.d.ts +8 -0
  446. package/lib/rbac/index.js +11 -0
  447. package/lib/rbac/store.d.ts +24 -0
  448. package/lib/rbac/store.js +37 -0
  449. package/lib/rbac/types.d.ts +39 -0
  450. package/lib/rbac/types.js +4 -0
  451. package/lib/rbac/utils.d.ts +44 -0
  452. package/lib/rbac/utils.js +117 -0
  453. package/lib/shared/constants/index.d.ts +2 -0
  454. package/lib/shared/constants/index.js +2 -0
  455. package/lib/shared/hooks/index.d.ts +4 -0
  456. package/lib/shared/hooks/index.js +4 -0
  457. package/lib/shared/hooks/useAnyDrawerOpen.d.ts +4 -0
  458. package/lib/shared/hooks/useAnyDrawerOpen.js +18 -0
  459. package/lib/shared/hooks/useContainerWidth.d.ts +2 -0
  460. package/lib/shared/hooks/useContainerWidth.js +18 -0
  461. package/lib/shared/hooks/useImageUpload.d.ts +15 -0
  462. package/lib/shared/hooks/useImageUpload.js +66 -0
  463. package/lib/shared/hooks/useMediaQueries.d.ts +5 -0
  464. package/lib/shared/hooks/useMediaQueries.js +35 -0
  465. package/lib/shared/hooks/usePagamioTable.d.ts +158 -0
  466. package/lib/shared/hooks/usePagamioTable.js +475 -0
  467. package/lib/shared/hooks/useSessionTimer.d.ts +33 -0
  468. package/lib/shared/hooks/useSessionTimer.js +96 -0
  469. package/lib/shared/index.d.ts +4 -0
  470. package/lib/shared/index.js +4 -0
  471. package/lib/shared/types/index.d.ts +1 -0
  472. package/lib/shared/types/index.js +1 -0
  473. package/lib/shared/url/index.d.ts +9 -0
  474. package/lib/shared/url/index.js +20 -0
  475. package/lib/shared/utils/filterUtils.d.ts +5 -0
  476. package/lib/shared/utils/filterUtils.js +31 -0
  477. package/lib/shared/utils/functionHelper.d.ts +27 -0
  478. package/lib/shared/utils/functionHelper.js +124 -0
  479. package/lib/shared/utils/index.d.ts +2 -0
  480. package/lib/shared/utils/index.js +2 -0
  481. package/lib/shared/utils/localStorage.d.ts +53 -0
  482. package/lib/shared/utils/localStorage.js +139 -0
  483. package/lib/styles.css +6247 -0
  484. package/lib/translations/components/LocaleSwitcher.d.ts +7 -0
  485. package/lib/translations/components/LocaleSwitcher.js +18 -0
  486. package/lib/translations/components/index.d.ts +1 -0
  487. package/lib/translations/components/index.js +1 -0
  488. package/lib/translations/context/TranslationContext.d.ts +5 -0
  489. package/lib/translations/context/TranslationContext.js +151 -0
  490. package/lib/translations/context/index.d.ts +1 -0
  491. package/lib/translations/context/index.js +1 -0
  492. package/lib/translations/hooks/index.d.ts +2 -0
  493. package/lib/translations/hooks/index.js +2 -0
  494. package/lib/translations/hooks/useLibTranslations.d.ts +7 -0
  495. package/lib/translations/hooks/useLibTranslations.js +46 -0
  496. package/lib/translations/hooks/useTranslation.d.ts +7 -0
  497. package/lib/translations/hooks/useTranslation.js +11 -0
  498. package/lib/translations/index.d.ts +91 -0
  499. package/lib/translations/index.js +11 -0
  500. package/lib/translations/locales/en.json +21 -0
  501. package/lib/translations/locales/es.json +21 -0
  502. package/lib/translations/locales/fr.json +21 -0
  503. package/lib/translations/locales/pt.json +21 -0
  504. package/lib/translations/types/index.d.ts +24 -0
  505. package/lib/translations/types/index.js +1 -0
  506. package/lib/translations/utils/index.d.ts +6 -0
  507. package/lib/translations/utils/index.js +25 -0
  508. package/package.json +9 -1
@@ -0,0 +1,393 @@
1
+ import { formatDonutChartData } from '.';
2
+ import { createTooltipFormatter } from './tooltipUtils';
3
+ export const createDistributionMetricOptions = ({ distributionChartTooltip, distributionData, processedTooltipFields, xAxisDataValueKey, seriesDataValueKey, displaySymbol, }) => {
4
+ const { tooltipValueFormat, tooltipTitle, tooltipUnit, treeMapSegmentLabel } = distributionChartTooltip;
5
+ const currency = distributionData?.[0]?.currency;
6
+ const formattedData = formatDonutChartData(distributionData || [], xAxisDataValueKey, seriesDataValueKey);
7
+ const labelFormatter = (params) => {
8
+ const formattedValue = params.value.toLocaleString();
9
+ return `${params.name}\n${treeMapSegmentLabel}: ${formattedValue}`;
10
+ };
11
+ const tooltipFormatter = createTooltipFormatter(tooltipValueFormat, tooltipTitle, tooltipUnit, processedTooltipFields, distributionData || [], currency, displaySymbol);
12
+ return getLargeDatasetChartOptions({
13
+ data: {
14
+ legendData: [],
15
+ seriesData: formattedData.seriesData,
16
+ },
17
+ labelFormatter,
18
+ tooltipFormatter,
19
+ });
20
+ };
21
+ export const getGroupedChartOptions = ({ xAxisLabel, xAxisValueKey, rightYAxisValueKey, leftYAxisValueKey, chartToolTip, data, yAxisLabelFormatter, }) => ({
22
+ tooltip: {
23
+ trigger: 'axis',
24
+ axisPointer: { type: 'shadow' },
25
+ ...chartToolTip,
26
+ },
27
+ legend: {
28
+ data: ['Total Amount', 'Quantity Sold'],
29
+ top: 0,
30
+ textStyle: { fontSize: 12 },
31
+ },
32
+ grid: {
33
+ left: '3%',
34
+ right: '4%',
35
+ bottom: '3%',
36
+ containLabel: true,
37
+ },
38
+ xAxis: {
39
+ type: 'category',
40
+ name: xAxisLabel,
41
+ data: data.map((item) => item[xAxisValueKey]),
42
+ axisLabel: {
43
+ interval: 0,
44
+ rotate: 30,
45
+ },
46
+ },
47
+ yAxis: [
48
+ {
49
+ type: 'value',
50
+ name: 'Total Amount',
51
+ position: 'left',
52
+ axisLine: {
53
+ show: true,
54
+ lineStyle: { color: '#c789b8' },
55
+ },
56
+ axisLabel: {
57
+ formatter: yAxisLabelFormatter || ((value) => `${(value / 1000).toFixed(0)}k`),
58
+ },
59
+ },
60
+ {
61
+ type: 'value',
62
+ name: 'Quantity Sold',
63
+ position: 'right',
64
+ axisLine: {
65
+ show: true,
66
+ lineStyle: { color: '#5470c6' },
67
+ },
68
+ },
69
+ ],
70
+ series: [
71
+ {
72
+ name: 'Total Amount',
73
+ type: 'bar',
74
+ data: data.map((item) => item[leftYAxisValueKey]),
75
+ itemStyle: { color: '#c789b8' },
76
+ },
77
+ {
78
+ name: 'Quantity Sold',
79
+ type: 'bar',
80
+ yAxisIndex: 1,
81
+ data: data.map((item) => item[rightYAxisValueKey]),
82
+ itemStyle: { color: '#5470c6' },
83
+ },
84
+ ],
85
+ dataZoom: [
86
+ {
87
+ type: 'inside',
88
+ start: 0,
89
+ end: 100,
90
+ },
91
+ ],
92
+ responsive: true,
93
+ maintainAspectRatio: false,
94
+ });
95
+ export const getLineGraphOptions = ({ title, yAxisLabel, chartToolTip, data, yAxisLabelFormatter, }) => {
96
+ if (!data?.length)
97
+ return {};
98
+ return {
99
+ tooltip: {
100
+ trigger: 'axis',
101
+ ...chartToolTip,
102
+ },
103
+ legend: {
104
+ data: data.map((s) => s.name),
105
+ bottom: 0,
106
+ },
107
+ grid: {
108
+ left: '5%',
109
+ right: '5%',
110
+ bottom: '20%',
111
+ top: title ? '60' : '30',
112
+ containLabel: true,
113
+ },
114
+ xAxis: {
115
+ type: 'time',
116
+ axisLabel: {
117
+ formatter: (value) => {
118
+ // value is a timestamp (ms since epoch)
119
+ const dateObj = new Date(value);
120
+ const day = dateObj.getDate();
121
+ const month = dateObj.getMonth() + 1; // getMonth() is zero-based
122
+ const hour = dateObj.getHours().toString().padStart(2, '0');
123
+ const minute = dateObj.getMinutes().toString().padStart(2, '0');
124
+ return `${day}/${month}-${hour}:${minute}`;
125
+ },
126
+ name: 'Date',
127
+ hideOverlap: true,
128
+ },
129
+ splitLine: {
130
+ show: false,
131
+ },
132
+ },
133
+ yAxis: {
134
+ type: 'value',
135
+ name: yAxisLabel,
136
+ axisLabel: {
137
+ formatter: yAxisLabelFormatter || ((value) => `${value}`),
138
+ },
139
+ },
140
+ series: data.map((series) => ({
141
+ type: 'line',
142
+ name: series.name,
143
+ data: series.data.map((point) => ({
144
+ value: [point.date instanceof Date ? point.date : new Date(point.date), point.value],
145
+ })),
146
+ showSymbol: true,
147
+ })),
148
+ };
149
+ };
150
+ export const getChartBarOptions = ({ title, colorScheme = ['#60A5FA', '#93C5FD'], yAxisDataNameKey, xAxisNameKey, xAxisLabel = '', yAxisLabel = '', chartToolTip, data, }) => ({
151
+ tooltip: {
152
+ trigger: 'axis',
153
+ axisPointer: {
154
+ type: 'shadow',
155
+ },
156
+ ...chartToolTip,
157
+ },
158
+ grid: {
159
+ left: '3%',
160
+ right: '4%',
161
+ bottom: '3%',
162
+ top: title ? '60' : '3%',
163
+ containLabel: true,
164
+ },
165
+ xAxis: {
166
+ type: 'value',
167
+ name: xAxisLabel,
168
+ axisLine: {
169
+ show: true,
170
+ },
171
+ axisTick: {
172
+ show: true,
173
+ },
174
+ splitLine: {
175
+ show: true,
176
+ lineStyle: {
177
+ color: '#E5E7EB',
178
+ },
179
+ },
180
+ },
181
+ yAxis: {
182
+ type: 'category',
183
+ name: yAxisLabel,
184
+ data: data.map((item) => item[yAxisDataNameKey]).reverse(), // Reverse the categories to maintain original order
185
+ axisLabel: {
186
+ formatter: (value) => {
187
+ return value.length > 20 ? `${value.substring(0, 17)}...` : value;
188
+ },
189
+ },
190
+ },
191
+ series: [
192
+ {
193
+ name: 'Value',
194
+ type: 'bar',
195
+ data: data.map((item) => item[xAxisNameKey]).reverse(), // Reverse the data to match categories
196
+ itemStyle: {
197
+ color: {
198
+ type: 'linear',
199
+ x: 0,
200
+ y: 0,
201
+ x2: 1,
202
+ y2: 0,
203
+ colorStops: [
204
+ {
205
+ offset: 0,
206
+ color: colorScheme[0],
207
+ },
208
+ {
209
+ offset: 1,
210
+ color: colorScheme[1],
211
+ },
212
+ ],
213
+ },
214
+ },
215
+ barWidth: '60%',
216
+ emphasis: {
217
+ itemStyle: {
218
+ opacity: 0.8,
219
+ },
220
+ },
221
+ },
222
+ ],
223
+ aria: {
224
+ enabled: true,
225
+ },
226
+ animation: true,
227
+ animationDuration: 1000,
228
+ animationEasing: 'cubicInOut',
229
+ });
230
+ export const getDonutChartOptions = ({ data }) => {
231
+ const chartOptions = {
232
+ tooltip: {
233
+ trigger: 'item',
234
+ formatter: '{a} <br/>{b}: {c} ({d}%)',
235
+ },
236
+ legend: {
237
+ orient: 'horizontal',
238
+ bottom: 0,
239
+ left: 'center',
240
+ },
241
+ series: [
242
+ {
243
+ name: 'Distribution',
244
+ type: 'pie',
245
+ radius: ['40%', '70%'],
246
+ avoidLabelOverlap: false,
247
+ itemStyle: {
248
+ borderRadius: 10,
249
+ borderColor: '#fff',
250
+ borderWidth: 2,
251
+ },
252
+ label: {
253
+ show: true,
254
+ position: 'outside',
255
+ formatter: '{b}',
256
+ fontSize: 12,
257
+ lineHeight: 15,
258
+ rich: {
259
+ b: {
260
+ fontSize: 12,
261
+ lineHeight: 15,
262
+ },
263
+ },
264
+ },
265
+ labelLine: {
266
+ show: true,
267
+ length: 15,
268
+ length2: 10,
269
+ },
270
+ emphasis: {
271
+ label: {
272
+ show: true,
273
+ fontSize: 14,
274
+ fontWeight: 'bold',
275
+ },
276
+ itemStyle: {
277
+ shadowBlur: 10,
278
+ shadowOffsetX: 0,
279
+ shadowColor: 'rgba(0, 0, 0, 0.5)',
280
+ },
281
+ },
282
+ data: data,
283
+ },
284
+ ],
285
+ };
286
+ return chartOptions;
287
+ };
288
+ export const formatChartLabel = (params) => {
289
+ console.log('formatChartLabel params', params);
290
+ const formattedValue = params.value.toLocaleString();
291
+ const percentage = params.treeMapPercent ? ` (${params.treeMapPercent.toFixed(1)}%)` : '';
292
+ return `${params.name}\n${params.valueLabel}: ${formattedValue}\n${percentage}`;
293
+ };
294
+ export const getLargeDatasetChartOptions = ({ data, labelFormatter, tooltipFormatter }) => {
295
+ return {
296
+ tooltip: {
297
+ trigger: 'item',
298
+ formatter: tooltipFormatter,
299
+ },
300
+ toolbox: {
301
+ show: true,
302
+ feature: {
303
+ dataView: {
304
+ show: true,
305
+ title: 'View as Text',
306
+ readOnly: true,
307
+ lang: ['Data View', 'Close', 'Refresh'],
308
+ },
309
+ saveAsImage: {
310
+ show: true,
311
+ title: 'Save Image',
312
+ },
313
+ },
314
+ right: '3%',
315
+ top: 5,
316
+ },
317
+ grid: {
318
+ left: '5%',
319
+ right: '5%',
320
+ bottom: '15%',
321
+ containLabel: true,
322
+ },
323
+ series: [
324
+ {
325
+ type: 'treemap',
326
+ data: data.seriesData,
327
+ label: {
328
+ show: true,
329
+ formatter: labelFormatter,
330
+ position: 'inside',
331
+ },
332
+ breadcrumb: {
333
+ show: false,
334
+ },
335
+ roam: 'scale',
336
+ nodeClick: false,
337
+ animation: true,
338
+ height: '85%',
339
+ itemStyle: {
340
+ borderColor: '#fff',
341
+ borderWidth: 1,
342
+ gapWidth: 1,
343
+ },
344
+ emphasis: {
345
+ itemStyle: {
346
+ shadowBlur: 10,
347
+ shadowOffsetX: 0,
348
+ shadowColor: 'rgba(0, 0, 0, 0.5)',
349
+ },
350
+ },
351
+ levels: [
352
+ {
353
+ itemStyle: {
354
+ borderColor: '#fff',
355
+ borderWidth: 1,
356
+ gapWidth: 1,
357
+ },
358
+ upperLabel: {
359
+ show: false,
360
+ },
361
+ },
362
+ ],
363
+ },
364
+ ],
365
+ dataZoom: [
366
+ {
367
+ type: 'slider',
368
+ show: true,
369
+ start: 0,
370
+ end: 100,
371
+ height: 20,
372
+ bottom: 10,
373
+ left: '5%',
374
+ right: '5%',
375
+ zoomLock: false,
376
+ showDetail: true,
377
+ borderColor: '#ccc',
378
+ borderRadius: 3,
379
+ backgroundColor: '#f5f5f5',
380
+ fillerColor: 'rgba(167, 183, 204, 0.4)',
381
+ handleIcon: 'M10.7,11.9v-1.3H9.3v1.3c-4.9,0.3-8.8,4.4-8.8,9.4c0,5,3.9,9.1,8.8,9.4v1.3h1.3v-1.3c4.9-0.3,8.8-4.4,8.8-9.4C19.5,16.3,15.6,12.2,10.7,11.9z M13.3,24.4H6.7V23h6.6V24.4z M13.3,19.6H6.7v-1.4h6.6V19.6z',
382
+ handleSize: '80%',
383
+ handleStyle: {
384
+ color: '#fff',
385
+ shadowBlur: 3,
386
+ shadowColor: 'rgba(0, 0, 0, 0.6)',
387
+ shadowOffsetX: 2,
388
+ shadowOffsetY: 2,
389
+ },
390
+ },
391
+ ],
392
+ };
393
+ };
@@ -0,0 +1 @@
1
+ export declare const chunkArray: (array: any[], size: number) => any[][];
@@ -0,0 +1,7 @@
1
+ export const chunkArray = (array, size) => {
2
+ const result = [];
3
+ for (let i = 0; i < array.length; i += size) {
4
+ result.push(array.slice(i, i + size));
5
+ }
6
+ return result;
7
+ };
@@ -0,0 +1 @@
1
+ export declare const defaultColors: string[];
@@ -0,0 +1 @@
1
+ export const defaultColors = ['#5470c6', '#92cc76', '#c789b7', 'rgb(234, 217, 239)'];
@@ -0,0 +1,203 @@
1
+ import { type MRT_ColumnDef } from 'mantine-react-table';
2
+ import type { MetricData, TableColumn } from '../types';
3
+ import type { DataPoint } from '../visuals/DistributionChart';
4
+ interface SeriesItem {
5
+ name: string;
6
+ type: string;
7
+ stack: string;
8
+ data: number[];
9
+ }
10
+ interface ChartDataResult {
11
+ xAxisValues: string[];
12
+ seriesData: SeriesItem[];
13
+ }
14
+ type DateInput = string | Date | null | undefined;
15
+ interface DateFormatOptions {
16
+ locale?: string;
17
+ fallback?: string;
18
+ includeTime?: boolean;
19
+ }
20
+ interface DateRangeFormatOptions extends DateFormatOptions {
21
+ separator?: string;
22
+ }
23
+ /**
24
+ * A generic utility to build x-axis values and series data for a stacked bar chart in ECharts.
25
+ *
26
+ * @param data - An array of objects of any shape (T).
27
+ * @param xAxisDataValueKey - The string key in each object representing x-axis data (e.g. "channel", "status").
28
+ * @param seriesDataNameKey - The string key in each object representing the series name (e.g. "productName").
29
+ * @param seriesDataValueKey - The string key in each object representing the numeric value (e.g. "amount").
30
+ *
31
+ * @returns An object containing:
32
+ * - xAxisValues: A string[] of unique x-axis values (in order).
33
+ * - seriesData: An array of SeriesItem (with "name", "type", "stack", and the numeric data array).
34
+ */
35
+ export declare function getBarChartData<T extends Record<string, any>>(data: {
36
+ [key: string]: any;
37
+ }[], xAxisDataValueKey: string, seriesDataNameKey: string, seriesDataValueKey: string): ChartDataResult;
38
+ /**
39
+ * Flattens your data (if it happens to be an array of arrays)
40
+ * and maps it into an xAxis array of names and a seriesData
41
+ * array of { name, value } objects.
42
+ *
43
+ * @param data The raw data from the backend, e.g. [ [ { amount: 60, productName: 'Electronics' }, ... ] ]
44
+ * If data is just a single array (e.g. [ { amount: 60, productName: 'Electronics' }, ... ]),
45
+ * this function will still work (no harm in calling `flat()`).
46
+ * @param nameKey The key in each object that maps to the category name (used in xAxis and the `name` field).
47
+ * @param valueKey The key in each object that maps to the numeric value (used in `value`).
48
+ *
49
+ * @returns An object containing:
50
+ * - xAxis: string[] (e.g. ["Electronics", "Fashion", "Home & Garden"])
51
+ * - seriesData: Array<{ name: string; value: number }>
52
+ * (e.g. [{ name: "Electronics", value: 60 }, ...])
53
+ */
54
+ export declare function getPieChartData<T extends Record<PropertyKey, any>>(data: T[] | T[][], // can be an array of objects OR an array of arrays of objects
55
+ nameKey: keyof T, // e.g. 'productName'
56
+ valueKey: keyof T, // e.g. 'amount'
57
+ otherKey?: keyof T): {
58
+ xAxis: string[];
59
+ seriesData: {
60
+ name: string;
61
+ value: number;
62
+ otherValue: string | number;
63
+ }[];
64
+ };
65
+ /**
66
+ * Flattens your data (if it happens to be an array of arrays)
67
+ * and maps it into an xAxis array of names and a seriesData
68
+ * array of { name, value } objects.
69
+ *
70
+ * @param data The raw data from the backend, e.g. [ [ { amount: 60, productName: 'Electronics' }, ... ] ]
71
+ * If data is just a single array (e.g. [ { amount: 60, productName: 'Electronics' }, ... ]),
72
+ * this function will still work (no harm in calling `flat()`).
73
+ * @param nameKey The key in each object that maps to the category name (used in xAxis and the `name` field).
74
+ * @param valueKey The key in each object that maps to the numeric value (used in `value`).
75
+ *
76
+ * @returns An object containing:
77
+ * - seriesData: Array<{ name: string; value: number }>
78
+ * (e.g. [{ name: "Electronics", value: 60 }, ...])
79
+ */
80
+ export declare function getSeriesData<T extends Record<PropertyKey, any>>(data: T[] | T[][], // can be an array of objects OR an array of arrays of objects
81
+ nameKey: keyof T, // e.g. 'productName'
82
+ valueKey: keyof T): {
83
+ seriesData: {
84
+ name: string;
85
+ value: number;
86
+ }[];
87
+ };
88
+ /**
89
+ * Flattens your data (if it happens to be an array of arrays)
90
+ * and maps it into a select options array. Handles null/undefined values safely.
91
+ *
92
+ * @param data The raw data from the backend.
93
+ * @param labelKey The key in each object that maps to the label in the options.
94
+ * @param valueKey Optional key for the value in the options. If not provided, labelKey will be used for both label and value.
95
+ * @returns An object containing optionsData array with { label, value } pairs.
96
+ */
97
+ export declare function getFilterOptionsData<T extends Record<PropertyKey, any>>(data: T[] | T[][], labelKey: keyof T, valueKey?: keyof T): {
98
+ optionsData: {
99
+ label: string;
100
+ value: string;
101
+ }[];
102
+ };
103
+ /**
104
+ * Flattens your data (if it happens to be an array of arrays)
105
+ * and maps it into a select options array.
106
+ */
107
+ export declare function generateSelectOptions<T extends Record<PropertyKey, any>>(data: T[] | T[][], labelKey: keyof T, valueKey: keyof T): {
108
+ optionsData: {
109
+ label: string;
110
+ value: string;
111
+ }[];
112
+ };
113
+ export declare const formatValue: (value: number, format?: string, options?: {
114
+ currency?: string;
115
+ locale?: string;
116
+ }) => string;
117
+ /**
118
+ * Standardized date formatting function for the entire application.
119
+ * Formats dates to a consistent locale-specific format.
120
+ *
121
+ * @param date - Date string, Date object, or null/undefined
122
+ * @param options - Optional formatting options
123
+ * @returns Formatted date string or fallback value
124
+ */
125
+ export declare const formatDate: (date: DateInput, options?: DateFormatOptions) => string;
126
+ /**
127
+ * Formats a date range as a string.
128
+ *
129
+ * @param startDate - Start date
130
+ * @param endDate - End date
131
+ * @param options - Optional formatting options
132
+ * @returns Formatted date range string
133
+ */
134
+ export declare const formatDateRange: (startDate: DateInput, endDate: DateInput, options?: DateRangeFormatOptions) => string;
135
+ type IdInput = string | number | null | undefined;
136
+ interface IdTruncateOptions {
137
+ /** Number of characters to show from the start (default: 5) */
138
+ startChars?: number;
139
+ /** Number of characters to show from the end (default: 5) */
140
+ endChars?: number;
141
+ /** Separator between start and end (default: '…') */
142
+ separator?: string;
143
+ /** Minimum length before truncation occurs (default: 10) */
144
+ minLength?: number;
145
+ /** Fallback value for null/undefined/empty values (default: '') */
146
+ fallback?: string;
147
+ }
148
+ /**
149
+ * Truncates long IDs to show first N and last N characters with a separator.
150
+ *
151
+ * @param id - ID string, number, or null/undefined
152
+ * @param options - Optional truncation options
153
+ * @returns Truncated ID string or fallback value
154
+ */
155
+ export declare const truncateId: (id: IdInput, options?: IdTruncateOptions) => string;
156
+ export declare const transformColumns: <TData extends Record<string, any>>(columns: TableColumn<TData>[]) => MRT_ColumnDef<TData>[];
157
+ /**
158
+ * Formats an array of objects into DataPoint format required for Distribution Chart
159
+ * @param data Array of objects to format
160
+ * @param valueKey Key in the object to use as the value
161
+ * @param nameKey Key in the object to use as the name
162
+ * @returns Array of DataPoint objects
163
+ */
164
+ export declare function formatToDataPoints<T extends Record<string, any>>(data: T[], valueKey: keyof T, nameKey: keyof T): DataPoint[];
165
+ export declare const formatDonutChartData: (data: MetricData[], nameKey: string, valueKey: string) => {
166
+ legendData: any[];
167
+ seriesData: Record<string, any>[];
168
+ };
169
+ /**
170
+ * Transforms flat data into heatmap format with proper axis categories and data matrix.
171
+ *
172
+ * @param data - Array of objects containing the data
173
+ * @param xAxisKey - Key for x-axis categories (e.g., 'region', 'dayOfWeek')
174
+ * @param yAxisKey - Key for y-axis categories (e.g., 'product', 'hour')
175
+ * @param valueKey - Key for the numeric values to be displayed as heat intensity
176
+ * @returns Object with xAxis categories, yAxis categories, and heatmap data matrix
177
+ */
178
+ export declare function getHeatmapData<T extends Record<string, any>>(data: T[], xAxisKey: keyof T, yAxisKey: keyof T, valueKey: keyof T): {
179
+ xAxis: string[];
180
+ yAxis: string[];
181
+ data: [number, number, number][];
182
+ };
183
+ /**
184
+ * Transforms date-based data into a day-of-week vs week heatmap format.
185
+ * Generic utility that can be used for any date field and value combination.
186
+ *
187
+ * This function supports two calling patterns:
188
+ * 1. Direct usage: createDayWeekHeatmapData(data, dateKey, valueKey)
189
+ * 2. HeatmapChart adapter: createDayWeekHeatmapData(data, xAxisKey, yAxisKey, valueKey)
190
+ * - In this case, yAxisKey is used as the date field, xAxisKey is ignored
191
+ *
192
+ * @param data - Array of objects containing date and value data
193
+ * @param dateKeyOrXAxisKey - Key for the date field, or xAxisKey (ignored in 4-param version)
194
+ * @param valueKeyOrYAxisKey - Key for values, or yAxisKey (used as date field in 4-param version)
195
+ * @param optionalValueKey - Optional valueKey (used in 4-param version)
196
+ * @returns Object with day-of-week x-axis, week y-axis, and heatmap data matrix
197
+ */
198
+ export declare function createDayWeekHeatmapData<T extends Record<string, any>>(data: T[], dateKeyOrXAxisKey: keyof T | string, valueKeyOrYAxisKey: keyof T | string, optionalValueKey?: keyof T | string): {
199
+ xAxis: string[];
200
+ yAxis: string[];
201
+ data: [number, number, number][];
202
+ };
203
+ export {};