@burdenoff/microfe-bigconsole 2026.510.54

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 (912) hide show
  1. package/README.md +88 -0
  2. package/dist/bigconsole/BigConsoleRoot.d.ts +29 -0
  3. package/dist/bigconsole/BigConsoleRoot.d.ts.map +1 -0
  4. package/dist/bigconsole/BigConsoleRoot.js +215 -0
  5. package/dist/bigconsole/BigConsoleRoot.js.map +1 -0
  6. package/dist/bigconsole/BigConsoleRoutes.d.ts +6 -0
  7. package/dist/bigconsole/BigConsoleRoutes.d.ts.map +1 -0
  8. package/dist/bigconsole/BigConsoleRoutes.js +239 -0
  9. package/dist/bigconsole/BigConsoleRoutes.js.map +1 -0
  10. package/dist/bigconsole/components/DrilldownDashboardRenderer.d.ts +11 -0
  11. package/dist/bigconsole/components/DrilldownDashboardRenderer.d.ts.map +1 -0
  12. package/dist/bigconsole/components/DrilldownDashboardRenderer.js +199 -0
  13. package/dist/bigconsole/components/DrilldownDashboardRenderer.js.map +1 -0
  14. package/dist/bigconsole/components/DrilldownModal.d.ts +11 -0
  15. package/dist/bigconsole/components/DrilldownModal.d.ts.map +1 -0
  16. package/dist/bigconsole/components/DrilldownModal.js +117 -0
  17. package/dist/bigconsole/components/DrilldownModal.js.map +1 -0
  18. package/dist/bigconsole/components/dashboard/CreateDashboardDialog.d.ts +19 -0
  19. package/dist/bigconsole/components/dashboard/CreateDashboardDialog.d.ts.map +1 -0
  20. package/dist/bigconsole/components/dashboard/CreateDashboardDialog.js +430 -0
  21. package/dist/bigconsole/components/dashboard/CreateDashboardDialog.js.map +1 -0
  22. package/dist/bigconsole/components/dashboard/DashboardCanvas.d.ts +44 -0
  23. package/dist/bigconsole/components/dashboard/DashboardCanvas.d.ts.map +1 -0
  24. package/dist/bigconsole/components/dashboard/DashboardCanvas.js +342 -0
  25. package/dist/bigconsole/components/dashboard/DashboardCanvas.js.map +1 -0
  26. package/dist/bigconsole/components/dashboard/DashboardGrid.d.ts +25 -0
  27. package/dist/bigconsole/components/dashboard/DashboardGrid.d.ts.map +1 -0
  28. package/dist/bigconsole/components/dashboard/DashboardGrid.js +88 -0
  29. package/dist/bigconsole/components/dashboard/DashboardGrid.js.map +1 -0
  30. package/dist/bigconsole/components/dashboard/DashboardToolbar.d.ts +27 -0
  31. package/dist/bigconsole/components/dashboard/DashboardToolbar.d.ts.map +1 -0
  32. package/dist/bigconsole/components/dashboard/DashboardToolbar.js +131 -0
  33. package/dist/bigconsole/components/dashboard/DashboardToolbar.js.map +1 -0
  34. package/dist/bigconsole/components/dashboard/DrilldownBreadcrumb.d.ts +26 -0
  35. package/dist/bigconsole/components/dashboard/DrilldownBreadcrumb.d.ts.map +1 -0
  36. package/dist/bigconsole/components/dashboard/DrilldownBreadcrumb.js +107 -0
  37. package/dist/bigconsole/components/dashboard/DrilldownBreadcrumb.js.map +1 -0
  38. package/dist/bigconsole/components/dashboard/ExportDashboardDialog.d.ts +17 -0
  39. package/dist/bigconsole/components/dashboard/ExportDashboardDialog.d.ts.map +1 -0
  40. package/dist/bigconsole/components/dashboard/ExportDashboardDialog.js +342 -0
  41. package/dist/bigconsole/components/dashboard/ExportDashboardDialog.js.map +1 -0
  42. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/FilterChip.d.ts +12 -0
  43. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/FilterChip.d.ts.map +1 -0
  44. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/FilterChip.js +449 -0
  45. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/FilterChip.js.map +1 -0
  46. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/FilterEditor.d.ts +16 -0
  47. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/FilterEditor.d.ts.map +1 -0
  48. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/FilterEditor.js +415 -0
  49. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/FilterEditor.js.map +1 -0
  50. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/FilterPresetSelector.d.ts +13 -0
  51. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/FilterPresetSelector.d.ts.map +1 -0
  52. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/FilterPresetSelector.js +315 -0
  53. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/FilterPresetSelector.js.map +1 -0
  54. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/GlobalFiltersBar.d.ts +19 -0
  55. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/GlobalFiltersBar.d.ts.map +1 -0
  56. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/GlobalFiltersBar.js +365 -0
  57. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/GlobalFiltersBar.js.map +1 -0
  58. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/index.d.ts +8 -0
  59. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/index.d.ts.map +1 -0
  60. package/dist/bigconsole/components/dashboard/GlobalFiltersBar/index.js +3 -0
  61. package/dist/bigconsole/components/dashboard/ImportDashboardDialog.d.ts +10 -0
  62. package/dist/bigconsole/components/dashboard/ImportDashboardDialog.d.ts.map +1 -0
  63. package/dist/bigconsole/components/dashboard/ImportDashboardDialog.js +486 -0
  64. package/dist/bigconsole/components/dashboard/ImportDashboardDialog.js.map +1 -0
  65. package/dist/bigconsole/components/dashboard/PageTabsManager/PageTabsManager.d.ts +26 -0
  66. package/dist/bigconsole/components/dashboard/PageTabsManager/PageTabsManager.d.ts.map +1 -0
  67. package/dist/bigconsole/components/dashboard/PageTabsManager/PageTabsManager.js +224 -0
  68. package/dist/bigconsole/components/dashboard/PageTabsManager/PageTabsManager.js.map +1 -0
  69. package/dist/bigconsole/components/dashboard/PageTabsManager/index.d.ts +6 -0
  70. package/dist/bigconsole/components/dashboard/PageTabsManager/index.d.ts.map +1 -0
  71. package/dist/bigconsole/components/dashboard/PageTabsManager/index.js +1 -0
  72. package/dist/bigconsole/components/dashboard/SavedViewsDropdown/SavedViewsDropdown.d.ts +12 -0
  73. package/dist/bigconsole/components/dashboard/SavedViewsDropdown/SavedViewsDropdown.d.ts.map +1 -0
  74. package/dist/bigconsole/components/dashboard/SavedViewsDropdown/SavedViewsDropdown.js +494 -0
  75. package/dist/bigconsole/components/dashboard/SavedViewsDropdown/SavedViewsDropdown.js.map +1 -0
  76. package/dist/bigconsole/components/dashboard/SavedViewsDropdown/index.d.ts +6 -0
  77. package/dist/bigconsole/components/dashboard/SavedViewsDropdown/index.d.ts.map +1 -0
  78. package/dist/bigconsole/components/dashboard/SavedViewsDropdown/index.js +1 -0
  79. package/dist/bigconsole/components/dashboard/ShareDialog/ShareDialog.d.ts +11 -0
  80. package/dist/bigconsole/components/dashboard/ShareDialog/ShareDialog.d.ts.map +1 -0
  81. package/dist/bigconsole/components/dashboard/ShareDialog/ShareDialog.js +477 -0
  82. package/dist/bigconsole/components/dashboard/ShareDialog/ShareDialog.js.map +1 -0
  83. package/dist/bigconsole/components/dashboard/ShareDialog/index.d.ts +6 -0
  84. package/dist/bigconsole/components/dashboard/ShareDialog/index.d.ts.map +1 -0
  85. package/dist/bigconsole/components/dashboard/ShareDialog/index.js +1 -0
  86. package/dist/bigconsole/components/dashboard/TemplatePicker/TemplatePicker.d.ts +19 -0
  87. package/dist/bigconsole/components/dashboard/TemplatePicker/TemplatePicker.d.ts.map +1 -0
  88. package/dist/bigconsole/components/dashboard/TemplatePicker/TemplatePicker.js +905 -0
  89. package/dist/bigconsole/components/dashboard/TemplatePicker/TemplatePicker.js.map +1 -0
  90. package/dist/bigconsole/components/dashboard/TemplatePicker/index.d.ts +6 -0
  91. package/dist/bigconsole/components/dashboard/TemplatePicker/index.d.ts.map +1 -0
  92. package/dist/bigconsole/components/dashboard/TemplatePicker/index.js +1 -0
  93. package/dist/bigconsole/components/dashboard/WidgetPalette.d.ts +23 -0
  94. package/dist/bigconsole/components/dashboard/WidgetPalette.d.ts.map +1 -0
  95. package/dist/bigconsole/components/dashboard/WidgetPalette.js +462 -0
  96. package/dist/bigconsole/components/dashboard/WidgetPalette.js.map +1 -0
  97. package/dist/bigconsole/components/dashboard/index.d.ts +19 -0
  98. package/dist/bigconsole/components/dashboard/index.d.ts.map +1 -0
  99. package/dist/bigconsole/components/dashboard/index.js +20 -0
  100. package/dist/bigconsole/components/datasink/CacheTTLSelector.d.ts +18 -0
  101. package/dist/bigconsole/components/datasink/CacheTTLSelector.d.ts.map +1 -0
  102. package/dist/bigconsole/components/datasink/CacheTTLSelector.js +247 -0
  103. package/dist/bigconsole/components/datasink/CacheTTLSelector.js.map +1 -0
  104. package/dist/bigconsole/components/datasink/ConfigurationForm.d.ts +21 -0
  105. package/dist/bigconsole/components/datasink/ConfigurationForm.d.ts.map +1 -0
  106. package/dist/bigconsole/components/datasink/DataPreviewPanel.d.ts +20 -0
  107. package/dist/bigconsole/components/datasink/DataPreviewPanel.d.ts.map +1 -0
  108. package/dist/bigconsole/components/datasink/DataSinkCard.d.ts +23 -0
  109. package/dist/bigconsole/components/datasink/DataSinkCard.d.ts.map +1 -0
  110. package/dist/bigconsole/components/datasink/DataSinkCard.js +137 -0
  111. package/dist/bigconsole/components/datasink/DataSinkCard.js.map +1 -0
  112. package/dist/bigconsole/components/datasink/DataSinkDataViewer.d.ts +18 -0
  113. package/dist/bigconsole/components/datasink/DataSinkDataViewer.d.ts.map +1 -0
  114. package/dist/bigconsole/components/datasink/DataSinkDataViewer.js +43 -0
  115. package/dist/bigconsole/components/datasink/DataSinkDataViewer.js.map +1 -0
  116. package/dist/bigconsole/components/datasink/DataSinkDeleteDialog.d.ts +17 -0
  117. package/dist/bigconsole/components/datasink/DataSinkDeleteDialog.d.ts.map +1 -0
  118. package/dist/bigconsole/components/datasink/DataSinkDeleteDialog.js +87 -0
  119. package/dist/bigconsole/components/datasink/DataSinkDeleteDialog.js.map +1 -0
  120. package/dist/bigconsole/components/datasink/DataSinkRefreshConfig.d.ts +22 -0
  121. package/dist/bigconsole/components/datasink/DataSinkRefreshConfig.d.ts.map +1 -0
  122. package/dist/bigconsole/components/datasink/DataSinkRefreshDialog.d.ts +17 -0
  123. package/dist/bigconsole/components/datasink/DataSinkRefreshDialog.d.ts.map +1 -0
  124. package/dist/bigconsole/components/datasink/DataSinkRefreshDialog.js +88 -0
  125. package/dist/bigconsole/components/datasink/DataSinkRefreshDialog.js.map +1 -0
  126. package/dist/bigconsole/components/datasink/DataSinkStatusBadge.d.ts +13 -0
  127. package/dist/bigconsole/components/datasink/DataSinkStatusBadge.d.ts.map +1 -0
  128. package/dist/bigconsole/components/datasink/DataSinkStatusBadge.js +98 -0
  129. package/dist/bigconsole/components/datasink/DataSinkStatusBadge.js.map +1 -0
  130. package/dist/bigconsole/components/datasink/DataSinkTableViewer.d.ts +13 -0
  131. package/dist/bigconsole/components/datasink/DataSinkTableViewer.d.ts.map +1 -0
  132. package/dist/bigconsole/components/datasink/DataSinkTableViewer.js +174 -0
  133. package/dist/bigconsole/components/datasink/DataSinkTableViewer.js.map +1 -0
  134. package/dist/bigconsole/components/datasink/ExportDataSinkDialog.d.ts +17 -0
  135. package/dist/bigconsole/components/datasink/ExportDataSinkDialog.d.ts.map +1 -0
  136. package/dist/bigconsole/components/datasink/ExportDataSinkDialog.js +322 -0
  137. package/dist/bigconsole/components/datasink/ExportDataSinkDialog.js.map +1 -0
  138. package/dist/bigconsole/components/datasink/FluidGridsPanel.d.ts +31 -0
  139. package/dist/bigconsole/components/datasink/FluidGridsPanel.d.ts.map +1 -0
  140. package/dist/bigconsole/components/datasink/ImportDataSinkDialog.d.ts +10 -0
  141. package/dist/bigconsole/components/datasink/ImportDataSinkDialog.d.ts.map +1 -0
  142. package/dist/bigconsole/components/datasink/ImportDataSinkDialog.js +402 -0
  143. package/dist/bigconsole/components/datasink/ImportDataSinkDialog.js.map +1 -0
  144. package/dist/bigconsole/components/datasink/LinkedParsersPanel.d.ts +12 -0
  145. package/dist/bigconsole/components/datasink/LinkedParsersPanel.d.ts.map +1 -0
  146. package/dist/bigconsole/components/datasink/LinkedParsersPanel.js +128 -0
  147. package/dist/bigconsole/components/datasink/LinkedParsersPanel.js.map +1 -0
  148. package/dist/bigconsole/components/datasink/LinkedWorkflowsPanel.d.ts +11 -0
  149. package/dist/bigconsole/components/datasink/LinkedWorkflowsPanel.d.ts.map +1 -0
  150. package/dist/bigconsole/components/datasink/LinkedWorkflowsPanel.js +204 -0
  151. package/dist/bigconsole/components/datasink/LinkedWorkflowsPanel.js.map +1 -0
  152. package/dist/bigconsole/components/datasink/RefreshTypeSelector.d.ts +26 -0
  153. package/dist/bigconsole/components/datasink/RefreshTypeSelector.d.ts.map +1 -0
  154. package/dist/bigconsole/components/datasink/RefreshTypeSelector.js +301 -0
  155. package/dist/bigconsole/components/datasink/RefreshTypeSelector.js.map +1 -0
  156. package/dist/bigconsole/components/datasink/SetupStateBadge.d.ts +13 -0
  157. package/dist/bigconsole/components/datasink/SetupStateBadge.d.ts.map +1 -0
  158. package/dist/bigconsole/components/datasink/SetupStateBadge.js +107 -0
  159. package/dist/bigconsole/components/datasink/SetupStateBadge.js.map +1 -0
  160. package/dist/bigconsole/components/datasink/WorkflowStatusPanel.d.ts +30 -0
  161. package/dist/bigconsole/components/datasink/WorkflowStatusPanel.d.ts.map +1 -0
  162. package/dist/bigconsole/components/datasink/WorkflowStatusPanel.js +163 -0
  163. package/dist/bigconsole/components/datasink/WorkflowStatusPanel.js.map +1 -0
  164. package/dist/bigconsole/components/datasink/index.d.ts +24 -0
  165. package/dist/bigconsole/components/datasink/index.d.ts.map +1 -0
  166. package/dist/bigconsole/components/parser/DataSinkSelector.d.ts +21 -0
  167. package/dist/bigconsole/components/parser/DataSinkSelector.d.ts.map +1 -0
  168. package/dist/bigconsole/components/parser/DataSinkSelector.js +174 -0
  169. package/dist/bigconsole/components/parser/DataSinkSelector.js.map +1 -0
  170. package/dist/bigconsole/components/parser/ExportParserDialog.d.ts +17 -0
  171. package/dist/bigconsole/components/parser/ExportParserDialog.d.ts.map +1 -0
  172. package/dist/bigconsole/components/parser/ExportParserDialog.js +322 -0
  173. package/dist/bigconsole/components/parser/ExportParserDialog.js.map +1 -0
  174. package/dist/bigconsole/components/parser/ExpressionEditor.d.ts +25 -0
  175. package/dist/bigconsole/components/parser/ExpressionEditor.d.ts.map +1 -0
  176. package/dist/bigconsole/components/parser/ExpressionEditor.js +119 -0
  177. package/dist/bigconsole/components/parser/ExpressionEditor.js.map +1 -0
  178. package/dist/bigconsole/components/parser/ImportParserDialog.d.ts +12 -0
  179. package/dist/bigconsole/components/parser/ImportParserDialog.d.ts.map +1 -0
  180. package/dist/bigconsole/components/parser/ImportParserDialog.js +427 -0
  181. package/dist/bigconsole/components/parser/ImportParserDialog.js.map +1 -0
  182. package/dist/bigconsole/components/parser/ParserBuilder.d.ts +41 -0
  183. package/dist/bigconsole/components/parser/ParserBuilder.d.ts.map +1 -0
  184. package/dist/bigconsole/components/parser/ParserCard.d.ts +23 -0
  185. package/dist/bigconsole/components/parser/ParserCard.d.ts.map +1 -0
  186. package/dist/bigconsole/components/parser/ParserCard.js +248 -0
  187. package/dist/bigconsole/components/parser/ParserCard.js.map +1 -0
  188. package/dist/bigconsole/components/parser/ParserFormDialog.d.ts +42 -0
  189. package/dist/bigconsole/components/parser/ParserFormDialog.d.ts.map +1 -0
  190. package/dist/bigconsole/components/parser/ParserSelector.d.ts +27 -0
  191. package/dist/bigconsole/components/parser/ParserSelector.d.ts.map +1 -0
  192. package/dist/bigconsole/components/parser/ParserSelector.js +263 -0
  193. package/dist/bigconsole/components/parser/ParserSelector.js.map +1 -0
  194. package/dist/bigconsole/components/parser/ParserStatusBadge.d.ts +13 -0
  195. package/dist/bigconsole/components/parser/ParserStatusBadge.d.ts.map +1 -0
  196. package/dist/bigconsole/components/parser/ParserStatusBadge.js +74 -0
  197. package/dist/bigconsole/components/parser/ParserStatusBadge.js.map +1 -0
  198. package/dist/bigconsole/components/parser/ParserTypeBadge.d.ts +11 -0
  199. package/dist/bigconsole/components/parser/ParserTypeBadge.d.ts.map +1 -0
  200. package/dist/bigconsole/components/parser/ParserTypeBadge.js +48 -0
  201. package/dist/bigconsole/components/parser/ParserTypeBadge.js.map +1 -0
  202. package/dist/bigconsole/components/parser/TestPanel.d.ts +25 -0
  203. package/dist/bigconsole/components/parser/TestPanel.d.ts.map +1 -0
  204. package/dist/bigconsole/components/parser/index.d.ts +17 -0
  205. package/dist/bigconsole/components/parser/index.d.ts.map +1 -0
  206. package/dist/bigconsole/components/pipeline/PipelineCard.d.ts +12 -0
  207. package/dist/bigconsole/components/pipeline/PipelineCard.d.ts.map +1 -0
  208. package/dist/bigconsole/components/pipeline/PipelineCard.js +159 -0
  209. package/dist/bigconsole/components/pipeline/PipelineCard.js.map +1 -0
  210. package/dist/bigconsole/components/pipeline/PipelineDeleteDialog.d.ts +11 -0
  211. package/dist/bigconsole/components/pipeline/PipelineDeleteDialog.d.ts.map +1 -0
  212. package/dist/bigconsole/components/pipeline/PipelineDeleteDialog.js +94 -0
  213. package/dist/bigconsole/components/pipeline/PipelineDeleteDialog.js.map +1 -0
  214. package/dist/bigconsole/components/pipeline/PipelineStatusBadge.d.ts +9 -0
  215. package/dist/bigconsole/components/pipeline/PipelineStatusBadge.d.ts.map +1 -0
  216. package/dist/bigconsole/components/pipeline/PipelineStatusBadge.js +36 -0
  217. package/dist/bigconsole/components/pipeline/PipelineStatusBadge.js.map +1 -0
  218. package/dist/bigconsole/components/pipeline/index.d.ts +9 -0
  219. package/dist/bigconsole/components/pipeline/index.d.ts.map +1 -0
  220. package/dist/bigconsole/components/widgets/ActionConfigDialog.d.ts +13 -0
  221. package/dist/bigconsole/components/widgets/ActionConfigDialog.d.ts.map +1 -0
  222. package/dist/bigconsole/components/widgets/ActionConfigDialog.js +671 -0
  223. package/dist/bigconsole/components/widgets/ActionConfigDialog.js.map +1 -0
  224. package/dist/bigconsole/components/widgets/DrilldownConfigPanel.d.ts +26 -0
  225. package/dist/bigconsole/components/widgets/DrilldownConfigPanel.d.ts.map +1 -0
  226. package/dist/bigconsole/components/widgets/DrilldownConfigPanel.js +378 -0
  227. package/dist/bigconsole/components/widgets/DrilldownConfigPanel.js.map +1 -0
  228. package/dist/bigconsole/components/widgets/PropertiesPanel.d.ts +9 -0
  229. package/dist/bigconsole/components/widgets/PropertiesPanel.d.ts.map +1 -0
  230. package/dist/bigconsole/components/widgets/PropertiesPanel.js +1594 -0
  231. package/dist/bigconsole/components/widgets/PropertiesPanel.js.map +1 -0
  232. package/dist/bigconsole/components/widgets/WidgetConfigDialog.d.ts +25 -0
  233. package/dist/bigconsole/components/widgets/WidgetConfigDialog.d.ts.map +1 -0
  234. package/dist/bigconsole/components/widgets/WidgetConfigDialog.js +882 -0
  235. package/dist/bigconsole/components/widgets/WidgetConfigDialog.js.map +1 -0
  236. package/dist/bigconsole/components/widgets/WidgetErrorBoundary.d.ts +23 -0
  237. package/dist/bigconsole/components/widgets/WidgetErrorBoundary.d.ts.map +1 -0
  238. package/dist/bigconsole/components/widgets/WidgetErrorBoundary.js +75 -0
  239. package/dist/bigconsole/components/widgets/WidgetErrorBoundary.js.map +1 -0
  240. package/dist/bigconsole/components/widgets/WidgetHeader.d.ts +31 -0
  241. package/dist/bigconsole/components/widgets/WidgetHeader.d.ts.map +1 -0
  242. package/dist/bigconsole/components/widgets/WidgetHeader.js +265 -0
  243. package/dist/bigconsole/components/widgets/WidgetHeader.js.map +1 -0
  244. package/dist/bigconsole/components/widgets/WidgetMenu.d.ts +18 -0
  245. package/dist/bigconsole/components/widgets/WidgetMenu.d.ts.map +1 -0
  246. package/dist/bigconsole/components/widgets/WidgetMenu.js +296 -0
  247. package/dist/bigconsole/components/widgets/WidgetMenu.js.map +1 -0
  248. package/dist/bigconsole/components/widgets/WidgetRegistry.d.ts +113 -0
  249. package/dist/bigconsole/components/widgets/WidgetRegistry.d.ts.map +1 -0
  250. package/dist/bigconsole/components/widgets/WidgetRegistry.js +836 -0
  251. package/dist/bigconsole/components/widgets/WidgetRegistry.js.map +1 -0
  252. package/dist/bigconsole/components/widgets/WidgetTypeSelector.d.ts +16 -0
  253. package/dist/bigconsole/components/widgets/WidgetTypeSelector.d.ts.map +1 -0
  254. package/dist/bigconsole/components/widgets/WidgetTypeSelector.js +291 -0
  255. package/dist/bigconsole/components/widgets/WidgetTypeSelector.js.map +1 -0
  256. package/dist/bigconsole/components/widgets/WidgetWrapper.d.ts +31 -0
  257. package/dist/bigconsole/components/widgets/WidgetWrapper.d.ts.map +1 -0
  258. package/dist/bigconsole/components/widgets/WidgetWrapper.js +516 -0
  259. package/dist/bigconsole/components/widgets/WidgetWrapper.js.map +1 -0
  260. package/dist/bigconsole/components/widgets/adaptive-card/AdaptiveCardWidget.d.ts +38 -0
  261. package/dist/bigconsole/components/widgets/adaptive-card/AdaptiveCardWidget.d.ts.map +1 -0
  262. package/dist/bigconsole/components/widgets/adaptive-card/AdaptiveCardWidget.js +106 -0
  263. package/dist/bigconsole/components/widgets/adaptive-card/AdaptiveCardWidget.js.map +1 -0
  264. package/dist/bigconsole/components/widgets/adaptive-card/index.d.ts +7 -0
  265. package/dist/bigconsole/components/widgets/adaptive-card/index.d.ts.map +1 -0
  266. package/dist/bigconsole/components/widgets/adaptive-card/index.js +2 -0
  267. package/dist/bigconsole/components/widgets/area-chart/index.d.ts +12 -0
  268. package/dist/bigconsole/components/widgets/area-chart/index.d.ts.map +1 -0
  269. package/dist/bigconsole/components/widgets/bar-chart/index.d.ts +12 -0
  270. package/dist/bigconsole/components/widgets/bar-chart/index.d.ts.map +1 -0
  271. package/dist/bigconsole/components/widgets/calendar/CalendarWidget.d.ts +25 -0
  272. package/dist/bigconsole/components/widgets/calendar/CalendarWidget.d.ts.map +1 -0
  273. package/dist/bigconsole/components/widgets/calendar/CalendarWidget.js +113 -0
  274. package/dist/bigconsole/components/widgets/calendar/CalendarWidget.js.map +1 -0
  275. package/dist/bigconsole/components/widgets/calendar/index.d.ts +3 -0
  276. package/dist/bigconsole/components/widgets/calendar/index.d.ts.map +1 -0
  277. package/dist/bigconsole/components/widgets/calendar/index.js +2 -0
  278. package/dist/bigconsole/components/widgets/chart/ChartConfig.d.ts +12 -0
  279. package/dist/bigconsole/components/widgets/chart/ChartConfig.d.ts.map +1 -0
  280. package/dist/bigconsole/components/widgets/chart/ChartConfig.js +254 -0
  281. package/dist/bigconsole/components/widgets/chart/ChartConfig.js.map +1 -0
  282. package/dist/bigconsole/components/widgets/chart/ChartLegend.d.ts +25 -0
  283. package/dist/bigconsole/components/widgets/chart/ChartLegend.d.ts.map +1 -0
  284. package/dist/bigconsole/components/widgets/chart/ChartLegend.js +40 -0
  285. package/dist/bigconsole/components/widgets/chart/ChartLegend.js.map +1 -0
  286. package/dist/bigconsole/components/widgets/chart/ChartTooltip.d.ts +24 -0
  287. package/dist/bigconsole/components/widgets/chart/ChartTooltip.d.ts.map +1 -0
  288. package/dist/bigconsole/components/widgets/chart/ChartTooltip.js +34 -0
  289. package/dist/bigconsole/components/widgets/chart/ChartTooltip.js.map +1 -0
  290. package/dist/bigconsole/components/widgets/chart/ChartWidget.d.ts +17 -0
  291. package/dist/bigconsole/components/widgets/chart/ChartWidget.d.ts.map +1 -0
  292. package/dist/bigconsole/components/widgets/chart/ChartWidget.js +151 -0
  293. package/dist/bigconsole/components/widgets/chart/ChartWidget.js.map +1 -0
  294. package/dist/bigconsole/components/widgets/chart/charts/AreaChart.d.ts +16 -0
  295. package/dist/bigconsole/components/widgets/chart/charts/AreaChart.d.ts.map +1 -0
  296. package/dist/bigconsole/components/widgets/chart/charts/AreaChart.js +104 -0
  297. package/dist/bigconsole/components/widgets/chart/charts/AreaChart.js.map +1 -0
  298. package/dist/bigconsole/components/widgets/chart/charts/BarChart.d.ts +16 -0
  299. package/dist/bigconsole/components/widgets/chart/charts/BarChart.d.ts.map +1 -0
  300. package/dist/bigconsole/components/widgets/chart/charts/BarChart.js +90 -0
  301. package/dist/bigconsole/components/widgets/chart/charts/BarChart.js.map +1 -0
  302. package/dist/bigconsole/components/widgets/chart/charts/FunnelChart.d.ts +18 -0
  303. package/dist/bigconsole/components/widgets/chart/charts/FunnelChart.d.ts.map +1 -0
  304. package/dist/bigconsole/components/widgets/chart/charts/FunnelChart.js +70 -0
  305. package/dist/bigconsole/components/widgets/chart/charts/FunnelChart.js.map +1 -0
  306. package/dist/bigconsole/components/widgets/chart/charts/LineChart.d.ts +16 -0
  307. package/dist/bigconsole/components/widgets/chart/charts/LineChart.d.ts.map +1 -0
  308. package/dist/bigconsole/components/widgets/chart/charts/LineChart.js +96 -0
  309. package/dist/bigconsole/components/widgets/chart/charts/LineChart.js.map +1 -0
  310. package/dist/bigconsole/components/widgets/chart/charts/PieChart.d.ts +18 -0
  311. package/dist/bigconsole/components/widgets/chart/charts/PieChart.d.ts.map +1 -0
  312. package/dist/bigconsole/components/widgets/chart/charts/PieChart.js +98 -0
  313. package/dist/bigconsole/components/widgets/chart/charts/PieChart.js.map +1 -0
  314. package/dist/bigconsole/components/widgets/chart/charts/index.d.ts +12 -0
  315. package/dist/bigconsole/components/widgets/chart/charts/index.d.ts.map +1 -0
  316. package/dist/bigconsole/components/widgets/chart/charts/index.js +5 -0
  317. package/dist/bigconsole/components/widgets/chart/charts/types.d.ts +45 -0
  318. package/dist/bigconsole/components/widgets/chart/charts/types.d.ts.map +1 -0
  319. package/dist/bigconsole/components/widgets/chart/index.d.ts +11 -0
  320. package/dist/bigconsole/components/widgets/chart/index.d.ts.map +1 -0
  321. package/dist/bigconsole/components/widgets/chart/index.js +11 -0
  322. package/dist/bigconsole/components/widgets/custom/CustomWidget.d.ts +13 -0
  323. package/dist/bigconsole/components/widgets/custom/CustomWidget.d.ts.map +1 -0
  324. package/dist/bigconsole/components/widgets/custom/CustomWidget.js +201 -0
  325. package/dist/bigconsole/components/widgets/custom/CustomWidget.js.map +1 -0
  326. package/dist/bigconsole/components/widgets/custom/config.d.ts +9 -0
  327. package/dist/bigconsole/components/widgets/custom/config.d.ts.map +1 -0
  328. package/dist/bigconsole/components/widgets/custom/config.js +21 -0
  329. package/dist/bigconsole/components/widgets/custom/config.js.map +1 -0
  330. package/dist/bigconsole/components/widgets/custom/index.d.ts +8 -0
  331. package/dist/bigconsole/components/widgets/custom/index.d.ts.map +1 -0
  332. package/dist/bigconsole/components/widgets/custom/index.js +3 -0
  333. package/dist/bigconsole/components/widgets/custom/utils.d.ts +4 -0
  334. package/dist/bigconsole/components/widgets/custom/utils.d.ts.map +1 -0
  335. package/dist/bigconsole/components/widgets/custom/utils.js +13 -0
  336. package/dist/bigconsole/components/widgets/custom/utils.js.map +1 -0
  337. package/dist/bigconsole/components/widgets/event-logs/EventLogViewer.d.ts +16 -0
  338. package/dist/bigconsole/components/widgets/event-logs/EventLogViewer.d.ts.map +1 -0
  339. package/dist/bigconsole/components/widgets/event-logs/EventLogViewer.js +377 -0
  340. package/dist/bigconsole/components/widgets/event-logs/EventLogViewer.js.map +1 -0
  341. package/dist/bigconsole/components/widgets/event-logs/index.d.ts +6 -0
  342. package/dist/bigconsole/components/widgets/event-logs/index.d.ts.map +1 -0
  343. package/dist/bigconsole/components/widgets/event-logs/index.js +1 -0
  344. package/dist/bigconsole/components/widgets/form/FormWidget.d.ts +27 -0
  345. package/dist/bigconsole/components/widgets/form/FormWidget.d.ts.map +1 -0
  346. package/dist/bigconsole/components/widgets/form/FormWidget.js +486 -0
  347. package/dist/bigconsole/components/widgets/form/FormWidget.js.map +1 -0
  348. package/dist/bigconsole/components/widgets/form/index.d.ts +6 -0
  349. package/dist/bigconsole/components/widgets/form/index.d.ts.map +1 -0
  350. package/dist/bigconsole/components/widgets/form/index.js +2 -0
  351. package/dist/bigconsole/components/widgets/funnel/index.d.ts +12 -0
  352. package/dist/bigconsole/components/widgets/funnel/index.d.ts.map +1 -0
  353. package/dist/bigconsole/components/widgets/funnel/index.js +22 -0
  354. package/dist/bigconsole/components/widgets/funnel/index.js.map +1 -0
  355. package/dist/bigconsole/components/widgets/gauge/CircularGauge.d.ts +31 -0
  356. package/dist/bigconsole/components/widgets/gauge/CircularGauge.d.ts.map +1 -0
  357. package/dist/bigconsole/components/widgets/gauge/CircularGauge.js +77 -0
  358. package/dist/bigconsole/components/widgets/gauge/CircularGauge.js.map +1 -0
  359. package/dist/bigconsole/components/widgets/gauge/GaugeConfig.d.ts +12 -0
  360. package/dist/bigconsole/components/widgets/gauge/GaugeConfig.d.ts.map +1 -0
  361. package/dist/bigconsole/components/widgets/gauge/GaugeConfig.js +180 -0
  362. package/dist/bigconsole/components/widgets/gauge/GaugeConfig.js.map +1 -0
  363. package/dist/bigconsole/components/widgets/gauge/GaugeWidget.d.ts +22 -0
  364. package/dist/bigconsole/components/widgets/gauge/GaugeWidget.d.ts.map +1 -0
  365. package/dist/bigconsole/components/widgets/gauge/GaugeWidget.js +217 -0
  366. package/dist/bigconsole/components/widgets/gauge/GaugeWidget.js.map +1 -0
  367. package/dist/bigconsole/components/widgets/gauge/LinearGauge.d.ts +28 -0
  368. package/dist/bigconsole/components/widgets/gauge/LinearGauge.d.ts.map +1 -0
  369. package/dist/bigconsole/components/widgets/gauge/LinearGauge.js +92 -0
  370. package/dist/bigconsole/components/widgets/gauge/LinearGauge.js.map +1 -0
  371. package/dist/bigconsole/components/widgets/gauge/index.d.ts +10 -0
  372. package/dist/bigconsole/components/widgets/gauge/index.d.ts.map +1 -0
  373. package/dist/bigconsole/components/widgets/gauge/index.js +5 -0
  374. package/dist/bigconsole/components/widgets/heatmap/HeatmapWidget.d.ts +23 -0
  375. package/dist/bigconsole/components/widgets/heatmap/HeatmapWidget.d.ts.map +1 -0
  376. package/dist/bigconsole/components/widgets/heatmap/HeatmapWidget.js +98 -0
  377. package/dist/bigconsole/components/widgets/heatmap/HeatmapWidget.js.map +1 -0
  378. package/dist/bigconsole/components/widgets/heatmap/index.d.ts +7 -0
  379. package/dist/bigconsole/components/widgets/heatmap/index.d.ts.map +1 -0
  380. package/dist/bigconsole/components/widgets/heatmap/index.js +2 -0
  381. package/dist/bigconsole/components/widgets/iframe-widget/IframeWidget.d.ts +17 -0
  382. package/dist/bigconsole/components/widgets/iframe-widget/IframeWidget.d.ts.map +1 -0
  383. package/dist/bigconsole/components/widgets/iframe-widget/IframeWidget.js +45 -0
  384. package/dist/bigconsole/components/widgets/iframe-widget/IframeWidget.js.map +1 -0
  385. package/dist/bigconsole/components/widgets/iframe-widget/index.d.ts +3 -0
  386. package/dist/bigconsole/components/widgets/iframe-widget/index.d.ts.map +1 -0
  387. package/dist/bigconsole/components/widgets/iframe-widget/index.js +2 -0
  388. package/dist/bigconsole/components/widgets/index.d.ts +34 -0
  389. package/dist/bigconsole/components/widgets/index.d.ts.map +1 -0
  390. package/dist/bigconsole/components/widgets/index.js +51 -0
  391. package/dist/bigconsole/components/widgets/kanban/KanbanWidget.d.ts +29 -0
  392. package/dist/bigconsole/components/widgets/kanban/KanbanWidget.d.ts.map +1 -0
  393. package/dist/bigconsole/components/widgets/kanban/KanbanWidget.js +92 -0
  394. package/dist/bigconsole/components/widgets/kanban/KanbanWidget.js.map +1 -0
  395. package/dist/bigconsole/components/widgets/kanban/index.d.ts +3 -0
  396. package/dist/bigconsole/components/widgets/kanban/index.d.ts.map +1 -0
  397. package/dist/bigconsole/components/widgets/kanban/index.js +2 -0
  398. package/dist/bigconsole/components/widgets/kpi/KPIWidget.d.ts +23 -0
  399. package/dist/bigconsole/components/widgets/kpi/KPIWidget.d.ts.map +1 -0
  400. package/dist/bigconsole/components/widgets/kpi/KPIWidget.js +83 -0
  401. package/dist/bigconsole/components/widgets/kpi/KPIWidget.js.map +1 -0
  402. package/dist/bigconsole/components/widgets/kpi/index.d.ts +7 -0
  403. package/dist/bigconsole/components/widgets/kpi/index.d.ts.map +1 -0
  404. package/dist/bigconsole/components/widgets/kpi/index.js +1 -0
  405. package/dist/bigconsole/components/widgets/kpi-comparison/KPIComparisonWidget.d.ts +25 -0
  406. package/dist/bigconsole/components/widgets/kpi-comparison/KPIComparisonWidget.d.ts.map +1 -0
  407. package/dist/bigconsole/components/widgets/kpi-comparison/KPIComparisonWidget.js +188 -0
  408. package/dist/bigconsole/components/widgets/kpi-comparison/KPIComparisonWidget.js.map +1 -0
  409. package/dist/bigconsole/components/widgets/kpi-comparison/index.d.ts +3 -0
  410. package/dist/bigconsole/components/widgets/kpi-comparison/index.d.ts.map +1 -0
  411. package/dist/bigconsole/components/widgets/kpi-comparison/index.js +2 -0
  412. package/dist/bigconsole/components/widgets/line-chart/index.d.ts +12 -0
  413. package/dist/bigconsole/components/widgets/line-chart/index.d.ts.map +1 -0
  414. package/dist/bigconsole/components/widgets/list/ListConfig.d.ts +12 -0
  415. package/dist/bigconsole/components/widgets/list/ListConfig.d.ts.map +1 -0
  416. package/dist/bigconsole/components/widgets/list/ListConfig.js +131 -0
  417. package/dist/bigconsole/components/widgets/list/ListConfig.js.map +1 -0
  418. package/dist/bigconsole/components/widgets/list/ListItem.d.ts +39 -0
  419. package/dist/bigconsole/components/widgets/list/ListItem.d.ts.map +1 -0
  420. package/dist/bigconsole/components/widgets/list/ListItem.js +103 -0
  421. package/dist/bigconsole/components/widgets/list/ListItem.js.map +1 -0
  422. package/dist/bigconsole/components/widgets/list/ListWidget.d.ts +17 -0
  423. package/dist/bigconsole/components/widgets/list/ListWidget.d.ts.map +1 -0
  424. package/dist/bigconsole/components/widgets/list/ListWidget.js +106 -0
  425. package/dist/bigconsole/components/widgets/list/ListWidget.js.map +1 -0
  426. package/dist/bigconsole/components/widgets/list/index.d.ts +9 -0
  427. package/dist/bigconsole/components/widgets/list/index.d.ts.map +1 -0
  428. package/dist/bigconsole/components/widgets/list/index.js +4 -0
  429. package/dist/bigconsole/components/widgets/map-widget/MapWidget.d.ts +29 -0
  430. package/dist/bigconsole/components/widgets/map-widget/MapWidget.d.ts.map +1 -0
  431. package/dist/bigconsole/components/widgets/map-widget/MapWidget.js +125 -0
  432. package/dist/bigconsole/components/widgets/map-widget/MapWidget.js.map +1 -0
  433. package/dist/bigconsole/components/widgets/map-widget/index.d.ts +3 -0
  434. package/dist/bigconsole/components/widgets/map-widget/index.d.ts.map +1 -0
  435. package/dist/bigconsole/components/widgets/map-widget/index.js +2 -0
  436. package/dist/bigconsole/components/widgets/metric-card/ComparisonBadge.d.ts +15 -0
  437. package/dist/bigconsole/components/widgets/metric-card/ComparisonBadge.d.ts.map +1 -0
  438. package/dist/bigconsole/components/widgets/metric-card/ComparisonBadge.js +34 -0
  439. package/dist/bigconsole/components/widgets/metric-card/ComparisonBadge.js.map +1 -0
  440. package/dist/bigconsole/components/widgets/metric-card/MetricCardConfig.d.ts +12 -0
  441. package/dist/bigconsole/components/widgets/metric-card/MetricCardConfig.d.ts.map +1 -0
  442. package/dist/bigconsole/components/widgets/metric-card/MetricCardConfig.js +158 -0
  443. package/dist/bigconsole/components/widgets/metric-card/MetricCardConfig.js.map +1 -0
  444. package/dist/bigconsole/components/widgets/metric-card/MetricCardWidget.d.ts +36 -0
  445. package/dist/bigconsole/components/widgets/metric-card/MetricCardWidget.d.ts.map +1 -0
  446. package/dist/bigconsole/components/widgets/metric-card/MetricCardWidget.js +195 -0
  447. package/dist/bigconsole/components/widgets/metric-card/MetricCardWidget.js.map +1 -0
  448. package/dist/bigconsole/components/widgets/metric-card/SparklineChart.d.ts +23 -0
  449. package/dist/bigconsole/components/widgets/metric-card/SparklineChart.d.ts.map +1 -0
  450. package/dist/bigconsole/components/widgets/metric-card/SparklineChart.js +94 -0
  451. package/dist/bigconsole/components/widgets/metric-card/SparklineChart.js.map +1 -0
  452. package/dist/bigconsole/components/widgets/metric-card/TrendIndicator.d.ts +14 -0
  453. package/dist/bigconsole/components/widgets/metric-card/TrendIndicator.d.ts.map +1 -0
  454. package/dist/bigconsole/components/widgets/metric-card/TrendIndicator.js +55 -0
  455. package/dist/bigconsole/components/widgets/metric-card/TrendIndicator.js.map +1 -0
  456. package/dist/bigconsole/components/widgets/metric-card/index.d.ts +11 -0
  457. package/dist/bigconsole/components/widgets/metric-card/index.d.ts.map +1 -0
  458. package/dist/bigconsole/components/widgets/metric-card/index.js +6 -0
  459. package/dist/bigconsole/components/widgets/pie-chart/index.d.ts +12 -0
  460. package/dist/bigconsole/components/widgets/pie-chart/index.d.ts.map +1 -0
  461. package/dist/bigconsole/components/widgets/pivot-table/PivotTableWidget.d.ts +26 -0
  462. package/dist/bigconsole/components/widgets/pivot-table/PivotTableWidget.d.ts.map +1 -0
  463. package/dist/bigconsole/components/widgets/pivot-table/PivotTableWidget.js +281 -0
  464. package/dist/bigconsole/components/widgets/pivot-table/PivotTableWidget.js.map +1 -0
  465. package/dist/bigconsole/components/widgets/pivot-table/index.d.ts +6 -0
  466. package/dist/bigconsole/components/widgets/pivot-table/index.d.ts.map +1 -0
  467. package/dist/bigconsole/components/widgets/pivot-table/index.js +2 -0
  468. package/dist/bigconsole/components/widgets/progress/ProgressBar.d.ts +29 -0
  469. package/dist/bigconsole/components/widgets/progress/ProgressBar.d.ts.map +1 -0
  470. package/dist/bigconsole/components/widgets/progress/ProgressBar.js +94 -0
  471. package/dist/bigconsole/components/widgets/progress/ProgressBar.js.map +1 -0
  472. package/dist/bigconsole/components/widgets/progress/ProgressConfig.d.ts +12 -0
  473. package/dist/bigconsole/components/widgets/progress/ProgressConfig.d.ts.map +1 -0
  474. package/dist/bigconsole/components/widgets/progress/ProgressConfig.js +187 -0
  475. package/dist/bigconsole/components/widgets/progress/ProgressConfig.js.map +1 -0
  476. package/dist/bigconsole/components/widgets/progress/ProgressWidget.d.ts +28 -0
  477. package/dist/bigconsole/components/widgets/progress/ProgressWidget.d.ts.map +1 -0
  478. package/dist/bigconsole/components/widgets/progress/ProgressWidget.js +201 -0
  479. package/dist/bigconsole/components/widgets/progress/ProgressWidget.js.map +1 -0
  480. package/dist/bigconsole/components/widgets/progress/index.d.ts +9 -0
  481. package/dist/bigconsole/components/widgets/progress/index.d.ts.map +1 -0
  482. package/dist/bigconsole/components/widgets/progress/index.js +4 -0
  483. package/dist/bigconsole/components/widgets/retention/RetentionWidget.d.ts +25 -0
  484. package/dist/bigconsole/components/widgets/retention/RetentionWidget.d.ts.map +1 -0
  485. package/dist/bigconsole/components/widgets/retention/RetentionWidget.js +159 -0
  486. package/dist/bigconsole/components/widgets/retention/RetentionWidget.js.map +1 -0
  487. package/dist/bigconsole/components/widgets/retention/index.d.ts +7 -0
  488. package/dist/bigconsole/components/widgets/retention/index.d.ts.map +1 -0
  489. package/dist/bigconsole/components/widgets/retention/index.js +2 -0
  490. package/dist/bigconsole/components/widgets/states/EmptyState.d.ts +14 -0
  491. package/dist/bigconsole/components/widgets/states/EmptyState.d.ts.map +1 -0
  492. package/dist/bigconsole/components/widgets/states/EmptyState.js +61 -0
  493. package/dist/bigconsole/components/widgets/states/EmptyState.js.map +1 -0
  494. package/dist/bigconsole/components/widgets/states/ErrorState.d.ts +11 -0
  495. package/dist/bigconsole/components/widgets/states/ErrorState.d.ts.map +1 -0
  496. package/dist/bigconsole/components/widgets/states/ErrorState.js +56 -0
  497. package/dist/bigconsole/components/widgets/states/ErrorState.js.map +1 -0
  498. package/dist/bigconsole/components/widgets/states/LoadingState.d.ts +9 -0
  499. package/dist/bigconsole/components/widgets/states/LoadingState.d.ts.map +1 -0
  500. package/dist/bigconsole/components/widgets/states/LoadingState.js +21 -0
  501. package/dist/bigconsole/components/widgets/states/LoadingState.js.map +1 -0
  502. package/dist/bigconsole/components/widgets/states/index.d.ts +9 -0
  503. package/dist/bigconsole/components/widgets/states/index.d.ts.map +1 -0
  504. package/dist/bigconsole/components/widgets/states/index.js +3 -0
  505. package/dist/bigconsole/components/widgets/table/TableCell.d.ts +31 -0
  506. package/dist/bigconsole/components/widgets/table/TableCell.d.ts.map +1 -0
  507. package/dist/bigconsole/components/widgets/table/TableCell.js +65 -0
  508. package/dist/bigconsole/components/widgets/table/TableCell.js.map +1 -0
  509. package/dist/bigconsole/components/widgets/table/TableConfig.d.ts +12 -0
  510. package/dist/bigconsole/components/widgets/table/TableConfig.d.ts.map +1 -0
  511. package/dist/bigconsole/components/widgets/table/TableConfig.js +254 -0
  512. package/dist/bigconsole/components/widgets/table/TableConfig.js.map +1 -0
  513. package/dist/bigconsole/components/widgets/table/TableHeader.d.ts +32 -0
  514. package/dist/bigconsole/components/widgets/table/TableHeader.d.ts.map +1 -0
  515. package/dist/bigconsole/components/widgets/table/TableHeader.js +85 -0
  516. package/dist/bigconsole/components/widgets/table/TableHeader.js.map +1 -0
  517. package/dist/bigconsole/components/widgets/table/TablePagination.d.ts +23 -0
  518. package/dist/bigconsole/components/widgets/table/TablePagination.d.ts.map +1 -0
  519. package/dist/bigconsole/components/widgets/table/TablePagination.js +166 -0
  520. package/dist/bigconsole/components/widgets/table/TablePagination.js.map +1 -0
  521. package/dist/bigconsole/components/widgets/table/TableWidget.d.ts +16 -0
  522. package/dist/bigconsole/components/widgets/table/TableWidget.d.ts.map +1 -0
  523. package/dist/bigconsole/components/widgets/table/TableWidget.js +258 -0
  524. package/dist/bigconsole/components/widgets/table/TableWidget.js.map +1 -0
  525. package/dist/bigconsole/components/widgets/table/index.d.ts +11 -0
  526. package/dist/bigconsole/components/widgets/table/index.d.ts.map +1 -0
  527. package/dist/bigconsole/components/widgets/table/index.js +6 -0
  528. package/dist/bigconsole/components/widgets/text-widget/TextWidget.d.ts +14 -0
  529. package/dist/bigconsole/components/widgets/text-widget/TextWidget.d.ts.map +1 -0
  530. package/dist/bigconsole/components/widgets/text-widget/TextWidget.js +47 -0
  531. package/dist/bigconsole/components/widgets/text-widget/TextWidget.js.map +1 -0
  532. package/dist/bigconsole/components/widgets/text-widget/index.d.ts +3 -0
  533. package/dist/bigconsole/components/widgets/text-widget/index.d.ts.map +1 -0
  534. package/dist/bigconsole/components/widgets/text-widget/index.js +2 -0
  535. package/dist/bigconsole/components/widgets/timeline/TimelineWidget.d.ts +31 -0
  536. package/dist/bigconsole/components/widgets/timeline/TimelineWidget.d.ts.map +1 -0
  537. package/dist/bigconsole/components/widgets/timeline/TimelineWidget.js +147 -0
  538. package/dist/bigconsole/components/widgets/timeline/TimelineWidget.js.map +1 -0
  539. package/dist/bigconsole/components/widgets/timeline/index.d.ts +3 -0
  540. package/dist/bigconsole/components/widgets/timeline/index.d.ts.map +1 -0
  541. package/dist/bigconsole/components/widgets/timeline/index.js +2 -0
  542. package/dist/bigconsole/components/widgets/utils/inferFields.d.ts +45 -0
  543. package/dist/bigconsole/components/widgets/utils/inferFields.d.ts.map +1 -0
  544. package/dist/bigconsole/components/widgets/utils/inferFields.js +58 -0
  545. package/dist/bigconsole/components/widgets/utils/inferFields.js.map +1 -0
  546. package/dist/bigconsole/components/widgets/webhook-config/WebhookConfigPanel.d.ts +16 -0
  547. package/dist/bigconsole/components/widgets/webhook-config/WebhookConfigPanel.d.ts.map +1 -0
  548. package/dist/bigconsole/components/widgets/webhook-config/WebhookConfigPanel.js +500 -0
  549. package/dist/bigconsole/components/widgets/webhook-config/WebhookConfigPanel.js.map +1 -0
  550. package/dist/bigconsole/components/widgets/webhook-config/index.d.ts +6 -0
  551. package/dist/bigconsole/components/widgets/webhook-config/index.d.ts.map +1 -0
  552. package/dist/bigconsole/components/widgets/webhook-config/index.js +1 -0
  553. package/dist/bigconsole/components/widgets/widget-actions/WidgetActions.d.ts +26 -0
  554. package/dist/bigconsole/components/widgets/widget-actions/WidgetActions.d.ts.map +1 -0
  555. package/dist/bigconsole/components/widgets/widget-actions/WidgetActions.js +467 -0
  556. package/dist/bigconsole/components/widgets/widget-actions/WidgetActions.js.map +1 -0
  557. package/dist/bigconsole/components/widgets/widget-actions/index.d.ts +8 -0
  558. package/dist/bigconsole/components/widgets/widget-actions/index.d.ts.map +1 -0
  559. package/dist/bigconsole/components/widgets/widget-actions/index.js +1 -0
  560. package/dist/bigconsole/components/workflow/DataSinkMultiSelector.d.ts +19 -0
  561. package/dist/bigconsole/components/workflow/DataSinkMultiSelector.d.ts.map +1 -0
  562. package/dist/bigconsole/components/workflow/WorkflowCard.d.ts +11 -0
  563. package/dist/bigconsole/components/workflow/WorkflowCard.d.ts.map +1 -0
  564. package/dist/bigconsole/components/workflow/WorkflowCard.js +158 -0
  565. package/dist/bigconsole/components/workflow/WorkflowCard.js.map +1 -0
  566. package/dist/bigconsole/components/workflow/WorkflowDeleteDialog.d.ts +11 -0
  567. package/dist/bigconsole/components/workflow/WorkflowDeleteDialog.d.ts.map +1 -0
  568. package/dist/bigconsole/components/workflow/WorkflowDeleteDialog.js +94 -0
  569. package/dist/bigconsole/components/workflow/WorkflowDeleteDialog.js.map +1 -0
  570. package/dist/bigconsole/components/workflow/WorkflowStatusBadge.d.ts +13 -0
  571. package/dist/bigconsole/components/workflow/WorkflowStatusBadge.d.ts.map +1 -0
  572. package/dist/bigconsole/components/workflow/WorkflowStatusBadge.js +115 -0
  573. package/dist/bigconsole/components/workflow/WorkflowStatusBadge.js.map +1 -0
  574. package/dist/bigconsole/components/workflow/index.d.ts +10 -0
  575. package/dist/bigconsole/components/workflow/index.d.ts.map +1 -0
  576. package/dist/bigconsole/constants.d.ts +15 -0
  577. package/dist/bigconsole/constants.d.ts.map +1 -0
  578. package/dist/bigconsole/constants.js +6 -0
  579. package/dist/bigconsole/constants.js.map +1 -0
  580. package/dist/bigconsole/context/BigConsoleContext.d.ts +25 -0
  581. package/dist/bigconsole/context/BigConsoleContext.d.ts.map +1 -0
  582. package/dist/bigconsole/context/BigConsoleContext.js +53 -0
  583. package/dist/bigconsole/context/BigConsoleContext.js.map +1 -0
  584. package/dist/bigconsole/context/index.d.ts +2 -0
  585. package/dist/bigconsole/context/index.d.ts.map +1 -0
  586. package/dist/bigconsole/context/index.js +1 -0
  587. package/dist/bigconsole/contexts/CrossFilterContext.d.ts +48 -0
  588. package/dist/bigconsole/contexts/CrossFilterContext.d.ts.map +1 -0
  589. package/dist/bigconsole/contexts/CrossFilterContext.js +92 -0
  590. package/dist/bigconsole/contexts/CrossFilterContext.js.map +1 -0
  591. package/dist/bigconsole/contexts/NavigationContext.d.ts +45 -0
  592. package/dist/bigconsole/contexts/NavigationContext.d.ts.map +1 -0
  593. package/dist/bigconsole/contexts/NavigationContext.js +43 -0
  594. package/dist/bigconsole/contexts/NavigationContext.js.map +1 -0
  595. package/dist/bigconsole/contexts/index.d.ts +8 -0
  596. package/dist/bigconsole/contexts/index.d.ts.map +1 -0
  597. package/dist/bigconsole/contexts/index.js +2 -0
  598. package/dist/bigconsole/graphql/apollo-compat.d.ts +16 -0
  599. package/dist/bigconsole/graphql/apollo-compat.d.ts.map +1 -0
  600. package/dist/bigconsole/hooks/index.d.ts +35 -0
  601. package/dist/bigconsole/hooks/index.d.ts.map +1 -0
  602. package/dist/bigconsole/hooks/index.js +29 -0
  603. package/dist/bigconsole/hooks/useAutoRefresh.d.ts +51 -0
  604. package/dist/bigconsole/hooks/useAutoRefresh.d.ts.map +1 -0
  605. package/dist/bigconsole/hooks/useAutoRefresh.js +93 -0
  606. package/dist/bigconsole/hooks/useAutoRefresh.js.map +1 -0
  607. package/dist/bigconsole/hooks/useCrossFilter.d.ts +79 -0
  608. package/dist/bigconsole/hooks/useCrossFilter.d.ts.map +1 -0
  609. package/dist/bigconsole/hooks/useCrossFilter.js +63 -0
  610. package/dist/bigconsole/hooks/useCrossFilter.js.map +1 -0
  611. package/dist/bigconsole/hooks/useDashboardOperations.d.ts +43 -0
  612. package/dist/bigconsole/hooks/useDashboardOperations.d.ts.map +1 -0
  613. package/dist/bigconsole/hooks/useDashboardOperations.js +187 -0
  614. package/dist/bigconsole/hooks/useDashboardOperations.js.map +1 -0
  615. package/dist/bigconsole/hooks/useDashboardSharing.d.ts +60 -0
  616. package/dist/bigconsole/hooks/useDashboardSharing.d.ts.map +1 -0
  617. package/dist/bigconsole/hooks/useDashboardSharing.js +157 -0
  618. package/dist/bigconsole/hooks/useDashboardSharing.js.map +1 -0
  619. package/dist/bigconsole/hooks/useDashboardTemplates.d.ts +135 -0
  620. package/dist/bigconsole/hooks/useDashboardTemplates.d.ts.map +1 -0
  621. package/dist/bigconsole/hooks/useDashboardTemplates.js +298 -0
  622. package/dist/bigconsole/hooks/useDashboardTemplates.js.map +1 -0
  623. package/dist/bigconsole/hooks/useDashboardViews.d.ts +58 -0
  624. package/dist/bigconsole/hooks/useDashboardViews.d.ts.map +1 -0
  625. package/dist/bigconsole/hooks/useDashboardViews.js +170 -0
  626. package/dist/bigconsole/hooks/useDashboardViews.js.map +1 -0
  627. package/dist/bigconsole/hooks/useDataSinkOperations.d.ts +55 -0
  628. package/dist/bigconsole/hooks/useDataSinkOperations.d.ts.map +1 -0
  629. package/dist/bigconsole/hooks/useDataSinkOperations.js +245 -0
  630. package/dist/bigconsole/hooks/useDataSinkOperations.js.map +1 -0
  631. package/dist/bigconsole/hooks/useDataSinkSubscription.d.ts +31 -0
  632. package/dist/bigconsole/hooks/useDataSinkSubscription.d.ts.map +1 -0
  633. package/dist/bigconsole/hooks/useDataSinkSubscription.js +127 -0
  634. package/dist/bigconsole/hooks/useDataSinkSubscription.js.map +1 -0
  635. package/dist/bigconsole/hooks/useDrilldown.d.ts +63 -0
  636. package/dist/bigconsole/hooks/useDrilldown.d.ts.map +1 -0
  637. package/dist/bigconsole/hooks/useDrilldown.js +192 -0
  638. package/dist/bigconsole/hooks/useDrilldown.js.map +1 -0
  639. package/dist/bigconsole/hooks/useDrilldownOperations.d.ts +42 -0
  640. package/dist/bigconsole/hooks/useDrilldownOperations.d.ts.map +1 -0
  641. package/dist/bigconsole/hooks/useDrilldownOperations.js +62 -0
  642. package/dist/bigconsole/hooks/useDrilldownOperations.js.map +1 -0
  643. package/dist/bigconsole/hooks/useEventLogs.d.ts +94 -0
  644. package/dist/bigconsole/hooks/useEventLogs.d.ts.map +1 -0
  645. package/dist/bigconsole/hooks/useEventLogs.js +116 -0
  646. package/dist/bigconsole/hooks/useEventLogs.js.map +1 -0
  647. package/dist/bigconsole/hooks/useEventWebhooks.d.ts +91 -0
  648. package/dist/bigconsole/hooks/useEventWebhooks.d.ts.map +1 -0
  649. package/dist/bigconsole/hooks/useEventWebhooks.js +138 -0
  650. package/dist/bigconsole/hooks/useEventWebhooks.js.map +1 -0
  651. package/dist/bigconsole/hooks/useExportDashboard.d.ts +28 -0
  652. package/dist/bigconsole/hooks/useExportDashboard.d.ts.map +1 -0
  653. package/dist/bigconsole/hooks/useExportDashboard.js +65 -0
  654. package/dist/bigconsole/hooks/useExportDashboard.js.map +1 -0
  655. package/dist/bigconsole/hooks/useExportDataSink.d.ts +27 -0
  656. package/dist/bigconsole/hooks/useExportDataSink.d.ts.map +1 -0
  657. package/dist/bigconsole/hooks/useExportDataSink.js +87 -0
  658. package/dist/bigconsole/hooks/useExportDataSink.js.map +1 -0
  659. package/dist/bigconsole/hooks/useExportParser.d.ts +25 -0
  660. package/dist/bigconsole/hooks/useExportParser.d.ts.map +1 -0
  661. package/dist/bigconsole/hooks/useExportParser.js +81 -0
  662. package/dist/bigconsole/hooks/useExportParser.js.map +1 -0
  663. package/dist/bigconsole/hooks/useFilterPresets.d.ts +47 -0
  664. package/dist/bigconsole/hooks/useFilterPresets.d.ts.map +1 -0
  665. package/dist/bigconsole/hooks/useFilterPresets.js +157 -0
  666. package/dist/bigconsole/hooks/useFilterPresets.js.map +1 -0
  667. package/dist/bigconsole/hooks/useFilterUrlSync.d.ts +46 -0
  668. package/dist/bigconsole/hooks/useFilterUrlSync.d.ts.map +1 -0
  669. package/dist/bigconsole/hooks/useFilterUrlSync.js +179 -0
  670. package/dist/bigconsole/hooks/useFilterUrlSync.js.map +1 -0
  671. package/dist/bigconsole/hooks/useGlobalFilters.d.ts +69 -0
  672. package/dist/bigconsole/hooks/useGlobalFilters.d.ts.map +1 -0
  673. package/dist/bigconsole/hooks/useGlobalFilters.js +154 -0
  674. package/dist/bigconsole/hooks/useGlobalFilters.js.map +1 -0
  675. package/dist/bigconsole/hooks/useImportDashboard.d.ts +88 -0
  676. package/dist/bigconsole/hooks/useImportDashboard.d.ts.map +1 -0
  677. package/dist/bigconsole/hooks/useImportDashboard.js +157 -0
  678. package/dist/bigconsole/hooks/useImportDashboard.js.map +1 -0
  679. package/dist/bigconsole/hooks/useImportDataSink.d.ts +74 -0
  680. package/dist/bigconsole/hooks/useImportDataSink.d.ts.map +1 -0
  681. package/dist/bigconsole/hooks/useImportDataSink.js +219 -0
  682. package/dist/bigconsole/hooks/useImportDataSink.js.map +1 -0
  683. package/dist/bigconsole/hooks/useImportParser.d.ts +77 -0
  684. package/dist/bigconsole/hooks/useImportParser.d.ts.map +1 -0
  685. package/dist/bigconsole/hooks/useImportParser.js +222 -0
  686. package/dist/bigconsole/hooks/useImportParser.js.map +1 -0
  687. package/dist/bigconsole/hooks/useInstalledWidgets.d.ts +15 -0
  688. package/dist/bigconsole/hooks/useInstalledWidgets.d.ts.map +1 -0
  689. package/dist/bigconsole/hooks/useInstalledWidgets.js +81 -0
  690. package/dist/bigconsole/hooks/useInstalledWidgets.js.map +1 -0
  691. package/dist/bigconsole/hooks/usePageOperations.d.ts +35 -0
  692. package/dist/bigconsole/hooks/usePageOperations.d.ts.map +1 -0
  693. package/dist/bigconsole/hooks/usePageOperations.js +95 -0
  694. package/dist/bigconsole/hooks/usePageOperations.js.map +1 -0
  695. package/dist/bigconsole/hooks/useParserOperations.d.ts +64 -0
  696. package/dist/bigconsole/hooks/useParserOperations.d.ts.map +1 -0
  697. package/dist/bigconsole/hooks/useParserOperations.js +151 -0
  698. package/dist/bigconsole/hooks/useParserOperations.js.map +1 -0
  699. package/dist/bigconsole/hooks/usePipelineOperations.d.ts +76 -0
  700. package/dist/bigconsole/hooks/usePipelineOperations.d.ts.map +1 -0
  701. package/dist/bigconsole/hooks/usePipelineOperations.js +260 -0
  702. package/dist/bigconsole/hooks/usePipelineOperations.js.map +1 -0
  703. package/dist/bigconsole/hooks/useWidgetActions.d.ts +69 -0
  704. package/dist/bigconsole/hooks/useWidgetActions.d.ts.map +1 -0
  705. package/dist/bigconsole/hooks/useWidgetActions.js +114 -0
  706. package/dist/bigconsole/hooks/useWidgetActions.js.map +1 -0
  707. package/dist/bigconsole/hooks/useWidgetData.d.ts +45 -0
  708. package/dist/bigconsole/hooks/useWidgetData.d.ts.map +1 -0
  709. package/dist/bigconsole/hooks/useWidgetData.js +83 -0
  710. package/dist/bigconsole/hooks/useWidgetData.js.map +1 -0
  711. package/dist/bigconsole/hooks/useWidgetEvents.d.ts +60 -0
  712. package/dist/bigconsole/hooks/useWidgetEvents.d.ts.map +1 -0
  713. package/dist/bigconsole/hooks/useWidgetEvents.js +35 -0
  714. package/dist/bigconsole/hooks/useWidgetEvents.js.map +1 -0
  715. package/dist/bigconsole/hooks/useWidgetExport.d.ts +19 -0
  716. package/dist/bigconsole/hooks/useWidgetExport.d.ts.map +1 -0
  717. package/dist/bigconsole/hooks/useWidgetExport.js +77 -0
  718. package/dist/bigconsole/hooks/useWidgetExport.js.map +1 -0
  719. package/dist/bigconsole/hooks/useWidgetOperations.d.ts +61 -0
  720. package/dist/bigconsole/hooks/useWidgetOperations.d.ts.map +1 -0
  721. package/dist/bigconsole/hooks/useWidgetOperations.js +248 -0
  722. package/dist/bigconsole/hooks/useWidgetOperations.js.map +1 -0
  723. package/dist/bigconsole/hooks/useWorkflowOperations.d.ts +54 -0
  724. package/dist/bigconsole/hooks/useWorkflowOperations.d.ts.map +1 -0
  725. package/dist/bigconsole/hooks/useWorkflowOperations.js +237 -0
  726. package/dist/bigconsole/hooks/useWorkflowOperations.js.map +1 -0
  727. package/dist/bigconsole/index.d.ts +30 -0
  728. package/dist/bigconsole/index.d.ts.map +1 -0
  729. package/dist/bigconsole/index.js +8 -0
  730. package/dist/bigconsole/modules/dashboard/index.d.ts +15 -0
  731. package/dist/bigconsole/modules/dashboard/index.d.ts.map +1 -0
  732. package/dist/bigconsole/modules/index.d.ts +15 -0
  733. package/dist/bigconsole/modules/index.d.ts.map +1 -0
  734. package/dist/bigconsole/modules/renderer/index.d.ts +8 -0
  735. package/dist/bigconsole/modules/renderer/index.d.ts.map +1 -0
  736. package/dist/bigconsole/modules/widget/index.d.ts +20 -0
  737. package/dist/bigconsole/modules/widget/index.d.ts.map +1 -0
  738. package/dist/bigconsole/pages/DashboardBuilderPage.d.ts +5 -0
  739. package/dist/bigconsole/pages/DashboardBuilderPage.d.ts.map +1 -0
  740. package/dist/bigconsole/pages/DashboardBuilderPage.js +398 -0
  741. package/dist/bigconsole/pages/DashboardBuilderPage.js.map +1 -0
  742. package/dist/bigconsole/pages/DashboardViewPage.d.ts +5 -0
  743. package/dist/bigconsole/pages/DashboardViewPage.d.ts.map +1 -0
  744. package/dist/bigconsole/pages/DashboardViewPage.js +325 -0
  745. package/dist/bigconsole/pages/DashboardViewPage.js.map +1 -0
  746. package/dist/bigconsole/pages/DashboardsPage.d.ts +5 -0
  747. package/dist/bigconsole/pages/DashboardsPage.d.ts.map +1 -0
  748. package/dist/bigconsole/pages/DashboardsPage.js +555 -0
  749. package/dist/bigconsole/pages/DashboardsPage.js.map +1 -0
  750. package/dist/bigconsole/pages/DataParsersPage.d.ts +9 -0
  751. package/dist/bigconsole/pages/DataParsersPage.d.ts.map +1 -0
  752. package/dist/bigconsole/pages/DataParsersPage.js +444 -0
  753. package/dist/bigconsole/pages/DataParsersPage.js.map +1 -0
  754. package/dist/bigconsole/pages/DataSinkBuilderPage.d.ts +10 -0
  755. package/dist/bigconsole/pages/DataSinkBuilderPage.d.ts.map +1 -0
  756. package/dist/bigconsole/pages/DataSinkBuilderPage.js +538 -0
  757. package/dist/bigconsole/pages/DataSinkBuilderPage.js.map +1 -0
  758. package/dist/bigconsole/pages/DataSinkViewPage.d.ts +8 -0
  759. package/dist/bigconsole/pages/DataSinkViewPage.d.ts.map +1 -0
  760. package/dist/bigconsole/pages/DataSinkViewPage.js +342 -0
  761. package/dist/bigconsole/pages/DataSinkViewPage.js.map +1 -0
  762. package/dist/bigconsole/pages/DataSinksPage.d.ts +5 -0
  763. package/dist/bigconsole/pages/DataSinksPage.d.ts.map +1 -0
  764. package/dist/bigconsole/pages/DataSinksPage.js +835 -0
  765. package/dist/bigconsole/pages/DataSinksPage.js.map +1 -0
  766. package/dist/bigconsole/pages/DataSourcesPage.d.ts +10 -0
  767. package/dist/bigconsole/pages/DataSourcesPage.d.ts.map +1 -0
  768. package/dist/bigconsole/pages/DataSourcesPage.js +18 -0
  769. package/dist/bigconsole/pages/DataSourcesPage.js.map +1 -0
  770. package/dist/bigconsole/pages/HomePage.d.ts +5 -0
  771. package/dist/bigconsole/pages/HomePage.d.ts.map +1 -0
  772. package/dist/bigconsole/pages/HomePage.js +338 -0
  773. package/dist/bigconsole/pages/HomePage.js.map +1 -0
  774. package/dist/bigconsole/pages/InsightsPage.d.ts +5 -0
  775. package/dist/bigconsole/pages/InsightsPage.d.ts.map +1 -0
  776. package/dist/bigconsole/pages/InsightsPage.js +586 -0
  777. package/dist/bigconsole/pages/InsightsPage.js.map +1 -0
  778. package/dist/bigconsole/pages/ParserBuilderPage.d.ts +9 -0
  779. package/dist/bigconsole/pages/ParserBuilderPage.d.ts.map +1 -0
  780. package/dist/bigconsole/pages/ParserBuilderPage.js +727 -0
  781. package/dist/bigconsole/pages/ParserBuilderPage.js.map +1 -0
  782. package/dist/bigconsole/pages/ParserViewPage.d.ts +8 -0
  783. package/dist/bigconsole/pages/ParserViewPage.d.ts.map +1 -0
  784. package/dist/bigconsole/pages/ParserViewPage.js +394 -0
  785. package/dist/bigconsole/pages/ParserViewPage.js.map +1 -0
  786. package/dist/bigconsole/pages/PipelineBuilderPage.d.ts +9 -0
  787. package/dist/bigconsole/pages/PipelineBuilderPage.d.ts.map +1 -0
  788. package/dist/bigconsole/pages/PipelineBuilderPage.js +585 -0
  789. package/dist/bigconsole/pages/PipelineBuilderPage.js.map +1 -0
  790. package/dist/bigconsole/pages/PipelineViewPage.d.ts +9 -0
  791. package/dist/bigconsole/pages/PipelineViewPage.d.ts.map +1 -0
  792. package/dist/bigconsole/pages/PipelineViewPage.js +483 -0
  793. package/dist/bigconsole/pages/PipelineViewPage.js.map +1 -0
  794. package/dist/bigconsole/pages/PipelinesPage.d.ts +9 -0
  795. package/dist/bigconsole/pages/PipelinesPage.d.ts.map +1 -0
  796. package/dist/bigconsole/pages/PipelinesPage.js +375 -0
  797. package/dist/bigconsole/pages/PipelinesPage.js.map +1 -0
  798. package/dist/bigconsole/pages/SettingsPage.d.ts +5 -0
  799. package/dist/bigconsole/pages/SettingsPage.d.ts.map +1 -0
  800. package/dist/bigconsole/pages/SettingsPage.js +478 -0
  801. package/dist/bigconsole/pages/SettingsPage.js.map +1 -0
  802. package/dist/bigconsole/pages/WidgetDemoPage.d.ts +5 -0
  803. package/dist/bigconsole/pages/WidgetDemoPage.d.ts.map +1 -0
  804. package/dist/bigconsole/pages/WidgetDemoPage.js +257 -0
  805. package/dist/bigconsole/pages/WidgetDemoPage.js.map +1 -0
  806. package/dist/bigconsole/pages/WorkflowViewPage.d.ts +9 -0
  807. package/dist/bigconsole/pages/WorkflowViewPage.d.ts.map +1 -0
  808. package/dist/bigconsole/pages/WorkflowViewPage.js +532 -0
  809. package/dist/bigconsole/pages/WorkflowViewPage.js.map +1 -0
  810. package/dist/bigconsole/pages/WorkflowsPage.d.ts +9 -0
  811. package/dist/bigconsole/pages/WorkflowsPage.d.ts.map +1 -0
  812. package/dist/bigconsole/pages/WorkflowsPage.js +384 -0
  813. package/dist/bigconsole/pages/WorkflowsPage.js.map +1 -0
  814. package/dist/bigconsole/pages/index.d.ts +14 -0
  815. package/dist/bigconsole/pages/index.d.ts.map +1 -0
  816. package/dist/bigconsole/renderers/adapters/AdaptiveCardRenderer.d.ts +6 -0
  817. package/dist/bigconsole/renderers/adapters/AdaptiveCardRenderer.d.ts.map +1 -0
  818. package/dist/bigconsole/renderers/adapters/AdaptiveCardRenderer.js +471 -0
  819. package/dist/bigconsole/renderers/adapters/AdaptiveCardRenderer.js.map +1 -0
  820. package/dist/bigconsole/renderers/adapters/BigConsoleRenderer.d.ts +9 -0
  821. package/dist/bigconsole/renderers/adapters/BigConsoleRenderer.d.ts.map +1 -0
  822. package/dist/bigconsole/renderers/adapters/BigConsoleRenderer.js +66 -0
  823. package/dist/bigconsole/renderers/adapters/BigConsoleRenderer.js.map +1 -0
  824. package/dist/bigconsole/renderers/adapters/BlockKitRenderer.d.ts +6 -0
  825. package/dist/bigconsole/renderers/adapters/BlockKitRenderer.d.ts.map +1 -0
  826. package/dist/bigconsole/renderers/adapters/BlockKitRenderer.js +384 -0
  827. package/dist/bigconsole/renderers/adapters/BlockKitRenderer.js.map +1 -0
  828. package/dist/bigconsole/renderers/adapters/CustomRenderer.d.ts +46 -0
  829. package/dist/bigconsole/renderers/adapters/CustomRenderer.d.ts.map +1 -0
  830. package/dist/bigconsole/renderers/adapters/CustomRenderer.js +172 -0
  831. package/dist/bigconsole/renderers/adapters/CustomRenderer.js.map +1 -0
  832. package/dist/bigconsole/renderers/adapters/index.d.ts +10 -0
  833. package/dist/bigconsole/renderers/adapters/index.d.ts.map +1 -0
  834. package/dist/bigconsole/renderers/factory/WidgetRendererFactory.d.ts +46 -0
  835. package/dist/bigconsole/renderers/factory/WidgetRendererFactory.d.ts.map +1 -0
  836. package/dist/bigconsole/renderers/factory/WidgetRendererFactory.js +55 -0
  837. package/dist/bigconsole/renderers/factory/WidgetRendererFactory.js.map +1 -0
  838. package/dist/bigconsole/renderers/index.d.ts +10 -0
  839. package/dist/bigconsole/renderers/index.d.ts.map +1 -0
  840. package/dist/bigconsole/renderers/registry/RendererRegistry.d.ts +42 -0
  841. package/dist/bigconsole/renderers/registry/RendererRegistry.d.ts.map +1 -0
  842. package/dist/bigconsole/renderers/registry/RendererRegistry.js +139 -0
  843. package/dist/bigconsole/renderers/registry/RendererRegistry.js.map +1 -0
  844. package/dist/bigconsole/renderers/types/index.d.ts +7 -0
  845. package/dist/bigconsole/renderers/types/index.d.ts.map +1 -0
  846. package/dist/bigconsole/renderers/types/renderer.d.ts +228 -0
  847. package/dist/bigconsole/renderers/types/renderer.d.ts.map +1 -0
  848. package/dist/bigconsole/store/dashboardStore.d.ts +132 -0
  849. package/dist/bigconsole/store/dashboardStore.d.ts.map +1 -0
  850. package/dist/bigconsole/store/dashboardStore.js +246 -0
  851. package/dist/bigconsole/store/dashboardStore.js.map +1 -0
  852. package/dist/bigconsole/store/dataSinkStore.d.ts +94 -0
  853. package/dist/bigconsole/store/dataSinkStore.d.ts.map +1 -0
  854. package/dist/bigconsole/store/dataSinkStore.js +138 -0
  855. package/dist/bigconsole/store/dataSinkStore.js.map +1 -0
  856. package/dist/bigconsole/store/drilldownStore.d.ts +63 -0
  857. package/dist/bigconsole/store/drilldownStore.d.ts.map +1 -0
  858. package/dist/bigconsole/store/drilldownStore.js +69 -0
  859. package/dist/bigconsole/store/drilldownStore.js.map +1 -0
  860. package/dist/bigconsole/store/index.d.ts +13 -0
  861. package/dist/bigconsole/store/index.d.ts.map +1 -0
  862. package/dist/bigconsole/store/index.js +7 -0
  863. package/dist/bigconsole/store/parserStore.d.ts +106 -0
  864. package/dist/bigconsole/store/parserStore.d.ts.map +1 -0
  865. package/dist/bigconsole/store/parserStore.js +175 -0
  866. package/dist/bigconsole/store/parserStore.js.map +1 -0
  867. package/dist/bigconsole/store/pipelineStore.d.ts +113 -0
  868. package/dist/bigconsole/store/pipelineStore.d.ts.map +1 -0
  869. package/dist/bigconsole/store/pipelineStore.js +231 -0
  870. package/dist/bigconsole/store/pipelineStore.js.map +1 -0
  871. package/dist/bigconsole/store/widgetStore.d.ts +106 -0
  872. package/dist/bigconsole/store/widgetStore.d.ts.map +1 -0
  873. package/dist/bigconsole/store/widgetStore.js +217 -0
  874. package/dist/bigconsole/store/widgetStore.js.map +1 -0
  875. package/dist/bigconsole/store/workflowStore.d.ts +120 -0
  876. package/dist/bigconsole/store/workflowStore.d.ts.map +1 -0
  877. package/dist/bigconsole/store/workflowStore.js +193 -0
  878. package/dist/bigconsole/store/workflowStore.js.map +1 -0
  879. package/dist/bigconsole/types/index.d.ts +1233 -0
  880. package/dist/bigconsole/types/index.d.ts.map +1 -0
  881. package/dist/bigconsole/utils/index.d.ts +9 -0
  882. package/dist/bigconsole/utils/index.d.ts.map +1 -0
  883. package/dist/bigconsole/utils/semanticTokens.d.ts +88 -0
  884. package/dist/bigconsole/utils/semanticTokens.d.ts.map +1 -0
  885. package/dist/bigconsole/utils/semanticTokens.js +41 -0
  886. package/dist/bigconsole/utils/semanticTokens.js.map +1 -0
  887. package/dist/bigconsole/utils/widgetPositioning.d.ts +81 -0
  888. package/dist/bigconsole/utils/widgetPositioning.d.ts.map +1 -0
  889. package/dist/bigconsole/utils/widgetPositioning.js +44 -0
  890. package/dist/bigconsole/utils/widgetPositioning.js.map +1 -0
  891. package/dist/bigconsole/utils/widgetTypeMapping.d.ts +34 -0
  892. package/dist/bigconsole/utils/widgetTypeMapping.d.ts.map +1 -0
  893. package/dist/bigconsole/utils/widgetTypeMapping.js +56 -0
  894. package/dist/bigconsole/utils/widgetTypeMapping.js.map +1 -0
  895. package/dist/generated/global-operations.d.ts +2 -0
  896. package/dist/generated/global-operations.d.ts.map +1 -0
  897. package/dist/generated/global-types.d.ts +20716 -0
  898. package/dist/generated/global-types.d.ts.map +1 -0
  899. package/dist/generated/wspace-operations.d.ts +9514 -0
  900. package/dist/generated/wspace-operations.d.ts.map +1 -0
  901. package/dist/generated/wspace-operations.js +1993 -0
  902. package/dist/generated/wspace-operations.js.map +1 -0
  903. package/dist/generated/wspace-types.d.ts +53363 -0
  904. package/dist/generated/wspace-types.d.ts.map +1 -0
  905. package/dist/index.d.ts +6 -0
  906. package/dist/index.d.ts.map +1 -0
  907. package/dist/index.js +7 -0
  908. package/dist/microfe-bigconsole.css +2 -0
  909. package/dist/utils/nativeBridge.d.ts +3 -0
  910. package/dist/utils/nativeBridge.d.ts.map +1 -0
  911. package/dist/utils/nativeBridge.js +2 -0
  912. package/package.json +118 -0
@@ -0,0 +1,12 @@
1
+ import { FC } from 'react';
2
+ import { ProgressConfig as ConfigType } from '../../../types';
3
+
4
+ export interface ProgressConfigProps {
5
+ /** Current configuration */
6
+ config: ConfigType;
7
+ /** Callback when config changes */
8
+ onChange: (config: ConfigType) => void;
9
+ }
10
+ export declare const ProgressConfig: FC<ProgressConfigProps>;
11
+ export default ProgressConfig;
12
+ //# sourceMappingURL=ProgressConfig.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ProgressConfig.d.ts","sourceRoot":"","sources":["../../../../../src/bigconsole/components/widgets/progress/ProgressConfig.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,KAAK,EAAE,EAAqB,MAAM,OAAO,CAAC;AACnD,OAAO,KAAK,EAAE,cAAc,IAAI,UAAU,EAAqB,MAAM,gBAAgB,CAAC;AAMtF,MAAM,WAAW,mBAAmB;IAClC,4BAA4B;IAC5B,MAAM,EAAE,UAAU,CAAC;IACnB,mCAAmC;IACnC,QAAQ,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,CAAC;CACxC;AAMD,eAAO,MAAM,cAAc,EAAE,EAAE,CAAC,mBAAmB,CAmOjD,CAAC;AAEH,eAAe,cAAc,CAAC"}
@@ -0,0 +1,187 @@
1
+ import { memo as e, useCallback as t } from "react";
2
+ import { jsx as n, jsxs as r } from "react/jsx-runtime";
3
+ //#region src/bigconsole/components/widgets/progress/ProgressConfig.tsx
4
+ var i = e(function({ config: e, onChange: i }) {
5
+ let a = t((t, n) => {
6
+ i({
7
+ ...e,
8
+ [t]: n
9
+ });
10
+ }, [e, i]), o = t((t, n, r) => {
11
+ let i = [...e.milestones || []];
12
+ i[t] = {
13
+ ...i[t],
14
+ [n]: r
15
+ }, a("milestones", i);
16
+ }, [e.milestones, a]), s = t(() => {
17
+ a("milestones", [...e.milestones || [], {
18
+ position: 50,
19
+ label: "",
20
+ value: 50
21
+ }]);
22
+ }, [e.milestones, a]), c = t((t) => {
23
+ a("milestones", (e.milestones || []).filter((e, n) => n !== t));
24
+ }, [e.milestones, a]);
25
+ return /* @__PURE__ */ r("div", {
26
+ className: "space-y-4",
27
+ children: [
28
+ /* @__PURE__ */ r("div", { children: [/* @__PURE__ */ n("label", {
29
+ className: "block text-sm font-medium text-text-primary mb-1",
30
+ children: "Maximum Value"
31
+ }), /* @__PURE__ */ n("input", {
32
+ type: "number",
33
+ value: e.max ?? 100,
34
+ onChange: (e) => a("max", Number(e.target.value)),
35
+ className: "\n w-full px-3 py-2\n text-sm text-text-primary\n bg-bg-surface\n border border-border-default\n rounded-md\n focus:outline-none focus:ring-2 focus:ring-action-primary-bg\n "
36
+ })] }),
37
+ /* @__PURE__ */ r("div", { children: [/* @__PURE__ */ n("label", {
38
+ className: "block text-sm font-medium text-text-primary mb-1",
39
+ children: "Bar Height (px)"
40
+ }), /* @__PURE__ */ n("input", {
41
+ type: "number",
42
+ value: e.barHeight ?? 12,
43
+ onChange: (e) => a("barHeight", Number(e.target.value)),
44
+ min: 4,
45
+ max: 32,
46
+ className: "\n w-full px-3 py-2\n text-sm text-text-primary\n bg-bg-surface\n border border-border-default\n rounded-md\n focus:outline-none focus:ring-2 focus:ring-action-primary-bg\n "
47
+ })] }),
48
+ /* @__PURE__ */ r("div", { children: [/* @__PURE__ */ n("label", {
49
+ className: "block text-sm font-medium text-text-primary mb-1",
50
+ children: "Value Format"
51
+ }), /* @__PURE__ */ r("select", {
52
+ value: e.format || "number",
53
+ onChange: (e) => a("format", e.target.value),
54
+ className: "\n w-full px-3 py-2\n text-sm text-text-primary\n bg-bg-surface\n border border-border-default\n rounded-md\n focus:outline-none focus:ring-2 focus:ring-action-primary-bg\n ",
55
+ children: [
56
+ /* @__PURE__ */ n("option", {
57
+ value: "number",
58
+ children: "Number"
59
+ }),
60
+ /* @__PURE__ */ n("option", {
61
+ value: "currency",
62
+ children: "Currency"
63
+ }),
64
+ /* @__PURE__ */ n("option", {
65
+ value: "compact",
66
+ children: "Compact (1K, 1M)"
67
+ })
68
+ ]
69
+ })] }),
70
+ /* @__PURE__ */ r("div", { children: [/* @__PURE__ */ n("label", {
71
+ className: "block text-sm font-medium text-text-primary mb-1",
72
+ children: "Color Mode"
73
+ }), /* @__PURE__ */ r("select", {
74
+ value: e.colorMode || "default",
75
+ onChange: (e) => a("colorMode", e.target.value),
76
+ className: "\n w-full px-3 py-2\n text-sm text-text-primary\n bg-bg-surface\n border border-border-default\n rounded-md\n focus:outline-none focus:ring-2 focus:ring-action-primary-bg\n ",
77
+ children: [
78
+ /* @__PURE__ */ n("option", {
79
+ value: "default",
80
+ children: "Default (Blue)"
81
+ }),
82
+ /* @__PURE__ */ n("option", {
83
+ value: "dynamic",
84
+ children: "Dynamic (based on progress)"
85
+ }),
86
+ /* @__PURE__ */ n("option", {
87
+ value: "success",
88
+ children: "Success (Green)"
89
+ }),
90
+ /* @__PURE__ */ n("option", {
91
+ value: "warning",
92
+ children: "Warning (Yellow)"
93
+ }),
94
+ /* @__PURE__ */ n("option", {
95
+ value: "error",
96
+ children: "Error (Red)"
97
+ })
98
+ ]
99
+ })] }),
100
+ /* @__PURE__ */ r("div", { children: [/* @__PURE__ */ r("div", {
101
+ className: "flex items-center justify-between mb-2",
102
+ children: [/* @__PURE__ */ n("label", {
103
+ className: "text-sm font-medium text-text-primary",
104
+ children: "Milestones"
105
+ }), /* @__PURE__ */ n("button", {
106
+ type: "button",
107
+ onClick: s,
108
+ className: "\n text-sm text-action-primary-bg\n hover:text-action-primary-bgHover\n ",
109
+ children: "+ Add Milestone"
110
+ })]
111
+ }), /* @__PURE__ */ r("div", {
112
+ className: "space-y-2",
113
+ children: [(e.milestones || []).map((e, t) => /* @__PURE__ */ r("div", {
114
+ className: "\n flex items-center gap-2\n p-2\n bg-bg-muted\n rounded-md\n ",
115
+ children: [
116
+ /* @__PURE__ */ n("input", {
117
+ type: "number",
118
+ value: e.position,
119
+ onChange: (e) => o(t, "position", Number(e.target.value)),
120
+ min: 0,
121
+ max: 100,
122
+ className: "\n w-20 px-2 py-1\n text-sm text-text-primary\n bg-bg-surface\n border border-border-default\n rounded-md\n focus:outline-none focus:ring-2 focus:ring-action-primary-bg\n ",
123
+ placeholder: "%"
124
+ }),
125
+ /* @__PURE__ */ n("input", {
126
+ type: "text",
127
+ value: e.label || "",
128
+ onChange: (e) => o(t, "label", e.target.value),
129
+ className: "\n flex-1 px-2 py-1\n text-sm text-text-primary\n bg-bg-surface\n border border-border-default\n rounded-md\n focus:outline-none focus:ring-2 focus:ring-action-primary-bg\n ",
130
+ placeholder: "Label (optional)"
131
+ }),
132
+ /* @__PURE__ */ n("button", {
133
+ type: "button",
134
+ onClick: () => c(t),
135
+ className: "text-state-error hover:text-state-error/80 p-1",
136
+ children: /* @__PURE__ */ n("svg", {
137
+ className: "w-4 h-4",
138
+ fill: "none",
139
+ stroke: "currentColor",
140
+ viewBox: "0 0 24 24",
141
+ children: /* @__PURE__ */ n("path", {
142
+ strokeLinecap: "round",
143
+ strokeLinejoin: "round",
144
+ strokeWidth: 2,
145
+ d: "M6 18L18 6M6 6l12 12"
146
+ })
147
+ })
148
+ })
149
+ ]
150
+ }, t)), (!e.milestones || e.milestones.length === 0) && /* @__PURE__ */ n("p", {
151
+ className: "text-sm text-text-secondary text-center py-2",
152
+ children: "No milestones configured"
153
+ })]
154
+ })] }),
155
+ /* @__PURE__ */ r("div", {
156
+ className: "space-y-3",
157
+ children: [/* @__PURE__ */ r("label", {
158
+ className: "flex items-center gap-3",
159
+ children: [/* @__PURE__ */ n("input", {
160
+ type: "checkbox",
161
+ checked: e.showPercentage !== !1,
162
+ onChange: (e) => a("showPercentage", e.target.checked),
163
+ className: "\n w-4 h-4\n text-action-primary-bg\n bg-bg-surface\n border-border-default\n rounded\n focus:ring-action-primary-bg\n "
164
+ }), /* @__PURE__ */ n("span", {
165
+ className: "text-sm text-text-primary",
166
+ children: "Show percentage labels"
167
+ })]
168
+ }), /* @__PURE__ */ r("label", {
169
+ className: "flex items-center gap-3",
170
+ children: [/* @__PURE__ */ n("input", {
171
+ type: "checkbox",
172
+ checked: e.showMax !== !1,
173
+ onChange: (e) => a("showMax", e.target.checked),
174
+ className: "\n w-4 h-4\n text-action-primary-bg\n bg-bg-surface\n border-border-default\n rounded\n focus:ring-action-primary-bg\n "
175
+ }), /* @__PURE__ */ n("span", {
176
+ className: "text-sm text-text-primary",
177
+ children: "Show maximum value"
178
+ })]
179
+ })]
180
+ })
181
+ ]
182
+ });
183
+ });
184
+ //#endregion
185
+ export { i as default };
186
+
187
+ //# sourceMappingURL=ProgressConfig.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ProgressConfig.js","names":[],"sources":["../../../../../src/bigconsole/components/widgets/progress/ProgressConfig.tsx"],"sourcesContent":["/**\n * ProgressConfig Component\n *\n * Configuration panel for Progress widgets.\n */\n\nimport { type FC, memo, useCallback } from 'react';\nimport type { ProgressConfig as ConfigType, ProgressMilestone } from '../../../types';\n\n// ============================================================================\n// Types\n// ============================================================================\n\nexport interface ProgressConfigProps {\n /** Current configuration */\n config: ConfigType;\n /** Callback when config changes */\n onChange: (config: ConfigType) => void;\n}\n\n// ============================================================================\n// Component\n// ============================================================================\n\nexport const ProgressConfig: FC<ProgressConfigProps> = memo(function ProgressConfig({ config, onChange }) {\n const handleChange = useCallback(\n <K extends keyof ConfigType>(key: K, value: ConfigType[K]) => {\n onChange({ ...config, [key]: value });\n },\n [config, onChange]\n );\n\n const handleMilestoneChange = useCallback(\n (index: number, field: 'position' | 'label', value: string | number) => {\n const milestones = [...(config.milestones || [])];\n milestones[index] = { ...milestones[index], [field]: value };\n handleChange('milestones', milestones);\n },\n [config.milestones, handleChange]\n );\n\n const addMilestone = useCallback(() => {\n const milestones = [...(config.milestones || []), { position: 50, label: '', value: 50 }];\n handleChange('milestones', milestones as ProgressMilestone[]);\n }, [config.milestones, handleChange]);\n\n const removeMilestone = useCallback(\n (index: number) => {\n const milestones = (config.milestones || []).filter((_, i) => i !== index);\n handleChange('milestones', milestones);\n },\n [config.milestones, handleChange]\n );\n\n return (\n <div className=\"space-y-4\">\n {/* Max Value */}\n <div>\n <label className=\"block text-sm font-medium text-text-primary mb-1\">Maximum Value</label>\n <input\n type=\"number\"\n value={config.max ?? 100}\n onChange={(e) => handleChange('max', Number(e.target.value))}\n className=\"\n w-full px-3 py-2\n text-sm text-text-primary\n bg-bg-surface\n border border-border-default\n rounded-md\n focus:outline-none focus:ring-2 focus:ring-action-primary-bg\n \"\n />\n </div>\n\n {/* Bar Height */}\n <div>\n <label className=\"block text-sm font-medium text-text-primary mb-1\">Bar Height (px)</label>\n <input\n type=\"number\"\n value={config.barHeight ?? 12}\n onChange={(e) => handleChange('barHeight', Number(e.target.value))}\n min={4}\n max={32}\n className=\"\n w-full px-3 py-2\n text-sm text-text-primary\n bg-bg-surface\n border border-border-default\n rounded-md\n focus:outline-none focus:ring-2 focus:ring-action-primary-bg\n \"\n />\n </div>\n\n {/* Value Format */}\n <div>\n <label className=\"block text-sm font-medium text-text-primary mb-1\">Value Format</label>\n <select\n value={config.format || 'number'}\n onChange={(e) => handleChange('format', e.target.value as ConfigType['format'])}\n className=\"\n w-full px-3 py-2\n text-sm text-text-primary\n bg-bg-surface\n border border-border-default\n rounded-md\n focus:outline-none focus:ring-2 focus:ring-action-primary-bg\n \"\n >\n <option value=\"number\">Number</option>\n <option value=\"currency\">Currency</option>\n <option value=\"compact\">Compact (1K, 1M)</option>\n </select>\n </div>\n\n {/* Color Mode */}\n <div>\n <label className=\"block text-sm font-medium text-text-primary mb-1\">Color Mode</label>\n <select\n value={config.colorMode || 'default'}\n onChange={(e) => handleChange('colorMode', e.target.value as ConfigType['colorMode'])}\n className=\"\n w-full px-3 py-2\n text-sm text-text-primary\n bg-bg-surface\n border border-border-default\n rounded-md\n focus:outline-none focus:ring-2 focus:ring-action-primary-bg\n \"\n >\n <option value=\"default\">Default (Blue)</option>\n <option value=\"dynamic\">Dynamic (based on progress)</option>\n <option value=\"success\">Success (Green)</option>\n <option value=\"warning\">Warning (Yellow)</option>\n <option value=\"error\">Error (Red)</option>\n </select>\n </div>\n\n {/* Milestones */}\n <div>\n <div className=\"flex items-center justify-between mb-2\">\n <label className=\"text-sm font-medium text-text-primary\">Milestones</label>\n <button\n type=\"button\"\n onClick={addMilestone}\n className=\"\n text-sm text-action-primary-bg\n hover:text-action-primary-bgHover\n \"\n >\n + Add Milestone\n </button>\n </div>\n\n <div className=\"space-y-2\">\n {(config.milestones || []).map((milestone, index) => (\n <div\n key={index}\n className=\"\n flex items-center gap-2\n p-2\n bg-bg-muted\n rounded-md\n \"\n >\n <input\n type=\"number\"\n value={milestone.position}\n onChange={(e) => handleMilestoneChange(index, 'position', Number(e.target.value))}\n min={0}\n max={100}\n className=\"\n w-20 px-2 py-1\n text-sm text-text-primary\n bg-bg-surface\n border border-border-default\n rounded-md\n focus:outline-none focus:ring-2 focus:ring-action-primary-bg\n \"\n placeholder=\"%\"\n />\n <input\n type=\"text\"\n value={milestone.label || ''}\n onChange={(e) => handleMilestoneChange(index, 'label', e.target.value)}\n className=\"\n flex-1 px-2 py-1\n text-sm text-text-primary\n bg-bg-surface\n border border-border-default\n rounded-md\n focus:outline-none focus:ring-2 focus:ring-action-primary-bg\n \"\n placeholder=\"Label (optional)\"\n />\n <button\n type=\"button\"\n onClick={() => removeMilestone(index)}\n className=\"text-state-error hover:text-state-error/80 p-1\"\n >\n <svg className=\"w-4 h-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path strokeLinecap=\"round\" strokeLinejoin=\"round\" strokeWidth={2} d=\"M6 18L18 6M6 6l12 12\" />\n </svg>\n </button>\n </div>\n ))}\n\n {(!config.milestones || config.milestones.length === 0) && (\n <p className=\"text-sm text-text-secondary text-center py-2\">No milestones configured</p>\n )}\n </div>\n </div>\n\n {/* Toggle Options */}\n <div className=\"space-y-3\">\n <label className=\"flex items-center gap-3\">\n <input\n type=\"checkbox\"\n checked={config.showPercentage !== false}\n onChange={(e) => handleChange('showPercentage', e.target.checked)}\n className=\"\n w-4 h-4\n text-action-primary-bg\n bg-bg-surface\n border-border-default\n rounded\n focus:ring-action-primary-bg\n \"\n />\n <span className=\"text-sm text-text-primary\">Show percentage labels</span>\n </label>\n\n <label className=\"flex items-center gap-3\">\n <input\n type=\"checkbox\"\n checked={config.showMax !== false}\n onChange={(e) => handleChange('showMax', e.target.checked)}\n className=\"\n w-4 h-4\n text-action-primary-bg\n bg-bg-surface\n border-border-default\n rounded\n focus:ring-action-primary-bg\n \"\n />\n <span className=\"text-sm text-text-primary\">Show maximum value</span>\n </label>\n </div>\n </div>\n );\n});\n\nexport default ProgressConfig;\n"],"mappings":"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"}
@@ -0,0 +1,28 @@
1
+ import { FC } from 'react';
2
+ import { Widget } from '../../../types';
3
+
4
+ export interface ProgressWidgetProps {
5
+ /** Widget configuration */
6
+ widget: Widget;
7
+ /** Progress data */
8
+ data?: ProgressData;
9
+ /** Click handler for drilldown */
10
+ onClick?: () => void;
11
+ /** Drilldown handler - receives progress data */
12
+ onDrilldown?: (selectedData: Record<string, unknown>) => void;
13
+ }
14
+ export interface ProgressData {
15
+ /** Current value */
16
+ value: number;
17
+ /** Maximum value (for calculating percentage) */
18
+ max?: number;
19
+ /** Target value */
20
+ target?: number;
21
+ /** Label for the progress */
22
+ label?: string;
23
+ /** Description text */
24
+ description?: string;
25
+ }
26
+ export declare const ProgressWidget: FC<ProgressWidgetProps>;
27
+ export default ProgressWidget;
28
+ //# sourceMappingURL=ProgressWidget.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ProgressWidget.d.ts","sourceRoot":"","sources":["../../../../../src/bigconsole/components/widgets/progress/ProgressWidget.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,KAAK,EAAE,EAA8B,MAAM,OAAO,CAAC;AAC5D,OAAO,KAAK,EAAE,MAAM,EAAkB,MAAM,gBAAgB,CAAC;AAQ7D,MAAM,WAAW,mBAAmB;IAClC,2BAA2B;IAC3B,MAAM,EAAE,MAAM,CAAC;IACf,oBAAoB;IACpB,IAAI,CAAC,EAAE,YAAY,CAAC;IACpB,kCAAkC;IAClC,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;IACrB,iDAAiD;IACjD,WAAW,CAAC,EAAE,CAAC,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,KAAK,IAAI,CAAC;CAC/D;AAED,MAAM,WAAW,YAAY;IAC3B,oBAAoB;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,iDAAiD;IACjD,GAAG,CAAC,EAAE,MAAM,CAAC;IACb,mBAAmB;IACnB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,6BAA6B;IAC7B,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,uBAAuB;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAMD,eAAO,MAAM,cAAc,EAAE,EAAE,CAAC,mBAAmB,CAsRjD,CAAC;AAEH,eAAe,cAAc,CAAC"}
@@ -0,0 +1,201 @@
1
+ import { firstObjectRow as e, inferMaxValue as t, inferValueField as n, unwrapRows as r } from "../utils/inferFields.js";
2
+ import i from "./ProgressBar.js";
3
+ import { memo as a, useCallback as o, useMemo as s } from "react";
4
+ import { jsx as c, jsxs as l } from "react/jsx-runtime";
5
+ //#region src/bigconsole/components/widgets/progress/ProgressWidget.tsx
6
+ var u = a(function({ widget: a, data: u, onClick: d, onDrilldown: f }) {
7
+ let p = a.config, m = s(() => {
8
+ if (!u) return;
9
+ if (typeof u == "object" && !Array.isArray(u) && "value" in u) {
10
+ let e = u.value;
11
+ if (typeof e == "number") return u;
12
+ if (typeof e == "string") {
13
+ let t = Number(e);
14
+ if (Number.isFinite(t)) return {
15
+ ...u,
16
+ value: t
17
+ };
18
+ }
19
+ }
20
+ let i = e(u);
21
+ if (!i) return;
22
+ let a = p?.valueField, o = (e, t) => t.split(".").reduce((e, t) => e && typeof e == "object" ? e[t] : void 0, e), s = (e) => {
23
+ if (typeof e == "number" && Number.isFinite(e)) return e;
24
+ if (typeof e == "string") {
25
+ let t = Number(e);
26
+ if (Number.isFinite(t)) return t;
27
+ }
28
+ return null;
29
+ }, c = typeof i.label == "string" ? i.label : typeof i.name == "string" ? i.name : void 0;
30
+ if (a) {
31
+ let e = r(u) ?? [i];
32
+ for (let n of e) if (n && typeof n == "object") {
33
+ let e = n, r = s(o(e, a));
34
+ if (r !== null) {
35
+ let n = typeof e.label == "string" ? e.label : typeof e.name == "string" ? e.name : c;
36
+ return {
37
+ value: r,
38
+ max: p?.max ?? t(u, a) ?? void 0,
39
+ label: n
40
+ };
41
+ }
42
+ }
43
+ return;
44
+ }
45
+ let l = n(i);
46
+ if (!l) return;
47
+ let d = s(i[l]);
48
+ if (d !== null) return {
49
+ value: d,
50
+ max: p?.max ?? t(u, l) ?? void 0,
51
+ label: c
52
+ };
53
+ }, [u, p]), h = s(() => {
54
+ if (!m) return 0;
55
+ let e = m.max || p?.max || 100;
56
+ return m.value / e * 100;
57
+ }, [m, p?.max]), g = s(() => {
58
+ if (!m?.target) return;
59
+ let e = m.max || p?.max || 100;
60
+ return m.target / e * 100;
61
+ }, [m, p?.max]), _ = s(() => p?.milestones?.length ? p.milestones.map((e) => ({
62
+ position: e.position ?? e.value ?? 0,
63
+ label: e.label,
64
+ reached: h >= (e.position ?? e.value ?? 0)
65
+ })) : [], [p?.milestones, h]), v = s(() => p?.colorMode === "dynamic" ? "dynamic" : p?.colorMode === "success" ? "success" : p?.colorMode === "warning" ? "warning" : p?.colorMode === "error" ? "error" : "default", [p?.colorMode]), y = s(() => {
66
+ if (!m) return "0";
67
+ switch (p?.format || "number") {
68
+ case "currency": return new Intl.NumberFormat("en-US", {
69
+ style: "currency",
70
+ currency: "USD",
71
+ maximumFractionDigits: 0
72
+ }).format(m.value);
73
+ case "compact": return new Intl.NumberFormat("en-US", {
74
+ notation: "compact",
75
+ maximumFractionDigits: 1
76
+ }).format(m.value);
77
+ default: return new Intl.NumberFormat("en-US").format(m.value);
78
+ }
79
+ }, [m, p?.format]), b = s(() => {
80
+ let e = m?.max || p?.max || 100;
81
+ switch (p?.format || "number") {
82
+ case "currency": return new Intl.NumberFormat("en-US", {
83
+ style: "currency",
84
+ currency: "USD",
85
+ maximumFractionDigits: 0
86
+ }).format(e);
87
+ case "compact": return new Intl.NumberFormat("en-US", {
88
+ notation: "compact",
89
+ maximumFractionDigits: 1
90
+ }).format(e);
91
+ default: return new Intl.NumberFormat("en-US").format(e);
92
+ }
93
+ }, [
94
+ m?.max,
95
+ p?.max,
96
+ p?.format
97
+ ]), x = o(() => {
98
+ f && m ? f({
99
+ value: m.value,
100
+ max: m.max,
101
+ target: m.target,
102
+ label: m.label,
103
+ percentage: h
104
+ }) : d && a.drilldowns?.length && d();
105
+ }, [
106
+ d,
107
+ f,
108
+ a.drilldowns,
109
+ m,
110
+ h
111
+ ]), S = !!(a.drilldown?.enabled || d && a.drilldowns?.length);
112
+ return m ? /* @__PURE__ */ l("div", {
113
+ className: `
114
+ flex flex-col h-full p-4
115
+ ${S ? "cursor-pointer hover:bg-bg-muted/50 transition-colors" : ""}
116
+ `,
117
+ onClick: x,
118
+ role: S ? "button" : void 0,
119
+ tabIndex: S ? 0 : void 0,
120
+ onKeyDown: (e) => {
121
+ S && (e.key === "Enter" || e.key === " ") && (e.preventDefault(), x());
122
+ },
123
+ children: [
124
+ /* @__PURE__ */ l("div", {
125
+ className: "flex items-start justify-between mb-4",
126
+ children: [/* @__PURE__ */ l("div", {
127
+ className: "flex-1",
128
+ children: [m.label && /* @__PURE__ */ c("h4", {
129
+ className: "text-sm font-medium text-text-primary",
130
+ children: m.label
131
+ }), m.description && /* @__PURE__ */ c("p", {
132
+ className: "text-xs text-text-secondary mt-0.5",
133
+ children: m.description
134
+ })]
135
+ }), /* @__PURE__ */ l("div", {
136
+ className: "text-right",
137
+ children: [/* @__PURE__ */ c("span", {
138
+ className: "text-2xl font-bold text-text-primary",
139
+ children: y
140
+ }), p?.showMax !== !1 && /* @__PURE__ */ l("span", {
141
+ className: "text-sm text-text-secondary",
142
+ children: [" / ", b]
143
+ })]
144
+ })]
145
+ }),
146
+ /* @__PURE__ */ c(i, {
147
+ value: h,
148
+ target: g,
149
+ milestones: _,
150
+ height: p?.barHeight || 12,
151
+ color: v,
152
+ showPercentage: p?.showPercentage !== !1
153
+ }),
154
+ m.target !== void 0 && /* @__PURE__ */ l("div", {
155
+ className: "mt-3 flex items-center gap-2 text-xs",
156
+ children: [/* @__PURE__ */ c("svg", {
157
+ className: "w-4 h-4 text-text-secondary",
158
+ fill: "currentColor",
159
+ viewBox: "0 0 24 24",
160
+ children: /* @__PURE__ */ c("path", { d: "M5 21V3h14l-3 9 3 9H5z" })
161
+ }), /* @__PURE__ */ l("span", {
162
+ className: "text-text-secondary",
163
+ children: [
164
+ "Target:",
165
+ " ",
166
+ /* @__PURE__ */ c("span", {
167
+ className: "font-medium text-text-primary",
168
+ children: new Intl.NumberFormat("en-US").format(m.target)
169
+ }),
170
+ h >= (g || 0) && /* @__PURE__ */ c("span", {
171
+ className: "text-state-success ml-1",
172
+ children: "Reached!"
173
+ })
174
+ ]
175
+ })]
176
+ }),
177
+ S && /* @__PURE__ */ c("div", {
178
+ className: "mt-auto pt-3 flex items-center justify-end",
179
+ children: /* @__PURE__ */ l("span", {
180
+ className: "text-xs text-text-secondary flex items-center gap-1",
181
+ children: ["View details", /* @__PURE__ */ c("svg", {
182
+ className: "w-3 h-3",
183
+ fill: "none",
184
+ stroke: "currentColor",
185
+ viewBox: "0 0 24 24",
186
+ children: /* @__PURE__ */ c("path", {
187
+ strokeLinecap: "round",
188
+ strokeLinejoin: "round",
189
+ strokeWidth: 2,
190
+ d: "M9 5l7 7-7 7"
191
+ })
192
+ })]
193
+ })
194
+ })
195
+ ]
196
+ }) : null;
197
+ });
198
+ //#endregion
199
+ export { u as default };
200
+
201
+ //# sourceMappingURL=ProgressWidget.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ProgressWidget.js","names":[],"sources":["../../../../../src/bigconsole/components/widgets/progress/ProgressWidget.tsx"],"sourcesContent":["/**\n * ProgressWidget Component\n *\n * Progress bar widget with target, milestones, and color stages.\n */\n\nimport { type FC, memo, useMemo, useCallback } from 'react';\nimport type { Widget, ProgressConfig } from '../../../types';\nimport { ProgressBar, type Milestone } from './ProgressBar';\nimport { firstObjectRow, inferValueField, inferMaxValue, unwrapRows } from '../utils/inferFields';\n\n// ============================================================================\n// Types\n// ============================================================================\n\nexport interface ProgressWidgetProps {\n /** Widget configuration */\n widget: Widget;\n /** Progress data */\n data?: ProgressData;\n /** Click handler for drilldown */\n onClick?: () => void;\n /** Drilldown handler - receives progress data */\n onDrilldown?: (selectedData: Record<string, unknown>) => void;\n}\n\nexport interface ProgressData {\n /** Current value */\n value: number;\n /** Maximum value (for calculating percentage) */\n max?: number;\n /** Target value */\n target?: number;\n /** Label for the progress */\n label?: string;\n /** Description text */\n description?: string;\n}\n\n// ============================================================================\n// Component\n// ============================================================================\n\nexport const ProgressWidget: FC<ProgressWidgetProps> = memo(function ProgressWidget({\n widget,\n data: rawData,\n onClick,\n onDrilldown,\n}) {\n const config = widget.config as unknown as ProgressConfig | undefined;\n\n // BOFF-2246 smart default: if rawData is an array (or envelope) rather than\n // the expected `ProgressData` single object, pull the configured valueField\n // (flat OR dotted, e.g. `metrics.revenue`) or fall back to the first\n // numeric field. Auto-compute a sensible max from the dataset.\n const normalizedData = useMemo((): ProgressData | undefined => {\n if (!rawData) return undefined;\n // Already the expected shape — pass through. Accept both number and\n // numeric-string `value`, since parsers sometimes serialize metrics as\n // strings and the pre-BOFF-2246 code path rendered those via implicit\n // JS coercion in percentage math.\n if (typeof rawData === 'object' && !Array.isArray(rawData) && 'value' in rawData) {\n const rawValue = (rawData as { value: unknown }).value;\n if (typeof rawValue === 'number') {\n return rawData as ProgressData;\n }\n if (typeof rawValue === 'string') {\n const parsed = Number(rawValue);\n if (Number.isFinite(parsed)) {\n // Coerce to number so downstream math is deterministic.\n return { ...(rawData as ProgressData), value: parsed };\n }\n }\n }\n const row = firstObjectRow(rawData);\n if (!row) return undefined;\n const configuredField = (config as Record<string, unknown> | undefined)?.valueField as string | undefined;\n\n // Supports dotted paths like `metrics.revenue` so nested valueFields\n // configured in widget config resolve on array/envelope payloads the\n // same way they do on single-object payloads.\n const getNestedValue = (obj: Record<string, unknown>, path: string): unknown =>\n path.split('.').reduce<unknown>((current, key) => {\n return current && typeof current === 'object' ? (current as Record<string, unknown>)[key] : undefined;\n }, obj);\n\n // Coerce `number` or finite numeric string to a number. Mirrors the\n // pass-through branch above so the row path doesn't silently fall back\n // to inference when a parser serializes metrics as strings.\n const toNumber = (v: unknown): number | null => {\n if (typeof v === 'number' && Number.isFinite(v)) return v;\n if (typeof v === 'string') {\n const n = Number(v);\n if (Number.isFinite(n)) return n;\n }\n return null;\n };\n\n const labelFromRow =\n typeof row.label === 'string' ? row.label : typeof row.name === 'string' ? row.name : undefined;\n\n // Configured field is authoritative — scan every row for it so sparse\n // envelopes like `{data:[{id:1},{revenue:120}]}` with\n // `valueField:\"revenue\"` still resolve. If no row carries it, return\n // undefined rather than substituting an unrelated numeric column from\n // row[0] via inference (that would silently misrepresent user config).\n if (configuredField) {\n const rows = unwrapRows(rawData) ?? [row];\n for (const r of rows) {\n if (r && typeof r === 'object') {\n const resolvedRow = r as Record<string, unknown>;\n const resolved = toNumber(getNestedValue(resolvedRow, configuredField));\n if (resolved !== null) {\n const rowLabel =\n typeof resolvedRow.label === 'string'\n ? resolvedRow.label\n : typeof resolvedRow.name === 'string'\n ? resolvedRow.name\n : labelFromRow;\n return {\n value: resolved,\n max: config?.max ?? inferMaxValue(rawData, configuredField) ?? undefined,\n label: rowLabel,\n };\n }\n }\n }\n return undefined;\n }\n\n // Fall back to inference (only when no configured field). `inferValueField`\n // already filters to numeric fields, but we still coerce here for symmetry\n // with the configured branch above.\n const inferred = inferValueField(row);\n if (!inferred) return undefined;\n const inferredValue = toNumber(row[inferred]);\n if (inferredValue === null) return undefined;\n return {\n value: inferredValue,\n max: config?.max ?? inferMaxValue(rawData, inferred) ?? undefined,\n label: labelFromRow,\n };\n }, [rawData, config]);\n\n // Downstream render uses the normalized shape. Name kept as `data` so the\n // rest of the component body (formattedValue, handleClick, header, etc.)\n // stays unchanged.\n const data = normalizedData;\n\n // Calculate percentage\n const percentage = useMemo(() => {\n if (!data) return 0;\n const max = data.max || config?.max || 100;\n return (data.value / max) * 100;\n }, [data, config?.max]);\n\n // Calculate target percentage\n const targetPercentage = useMemo(() => {\n if (!data?.target) return undefined;\n const max = data.max || config?.max || 100;\n return (data.target / max) * 100;\n }, [data, config?.max]);\n\n // Build milestones from config\n const milestones: Milestone[] = useMemo(() => {\n if (!config?.milestones?.length) return [];\n return config.milestones.map((m) => ({\n position: m.position ?? m.value ?? 0,\n label: m.label,\n reached: percentage >= (m.position ?? m.value ?? 0),\n }));\n }, [config?.milestones, percentage]);\n\n // Determine color mode\n const colorMode = useMemo(() => {\n if (config?.colorMode === 'dynamic') return 'dynamic';\n if (config?.colorMode === 'success') return 'success';\n if (config?.colorMode === 'warning') return 'warning';\n if (config?.colorMode === 'error') return 'error';\n return 'default';\n }, [config?.colorMode]);\n\n // Format value\n const formattedValue = useMemo(() => {\n if (!data) return '0';\n const format = config?.format || 'number';\n\n switch (format) {\n case 'currency':\n return new Intl.NumberFormat('en-US', {\n style: 'currency',\n currency: 'USD',\n maximumFractionDigits: 0,\n }).format(data.value);\n case 'compact':\n return new Intl.NumberFormat('en-US', {\n notation: 'compact',\n maximumFractionDigits: 1,\n }).format(data.value);\n case 'number':\n default:\n return new Intl.NumberFormat('en-US').format(data.value);\n }\n }, [data, config?.format]);\n\n const formattedMax = useMemo(() => {\n const max = data?.max || config?.max || 100;\n const format = config?.format || 'number';\n\n switch (format) {\n case 'currency':\n return new Intl.NumberFormat('en-US', {\n style: 'currency',\n currency: 'USD',\n maximumFractionDigits: 0,\n }).format(max);\n case 'compact':\n return new Intl.NumberFormat('en-US', {\n notation: 'compact',\n maximumFractionDigits: 1,\n }).format(max);\n case 'number':\n default:\n return new Intl.NumberFormat('en-US').format(max);\n }\n }, [data?.max, config?.max, config?.format]);\n\n const handleClick = useCallback(() => {\n // Support both legacy onClick and new onDrilldown\n if (onDrilldown && data) {\n onDrilldown({\n value: data.value,\n max: data.max,\n target: data.target,\n label: data.label,\n percentage,\n });\n } else if (onClick && widget.drilldowns?.length) {\n onClick();\n }\n }, [onClick, onDrilldown, widget.drilldowns, data, percentage]);\n\n const hasDrilldown = !!widget.drilldown?.enabled;\n const isClickable = Boolean(hasDrilldown || (onClick && widget.drilldowns?.length));\n\n if (!data) {\n return null;\n }\n\n return (\n <div\n className={`\n flex flex-col h-full p-4\n ${isClickable ? 'cursor-pointer hover:bg-bg-muted/50 transition-colors' : ''}\n `}\n onClick={handleClick}\n role={isClickable ? 'button' : undefined}\n tabIndex={isClickable ? 0 : undefined}\n onKeyDown={(e) => {\n if (isClickable && (e.key === 'Enter' || e.key === ' ')) {\n e.preventDefault();\n handleClick();\n }\n }}\n >\n {/* Header */}\n <div className=\"flex items-start justify-between mb-4\">\n <div className=\"flex-1\">\n {data.label && <h4 className=\"text-sm font-medium text-text-primary\">{data.label}</h4>}\n {data.description && <p className=\"text-xs text-text-secondary mt-0.5\">{data.description}</p>}\n </div>\n\n {/* Value display */}\n <div className=\"text-right\">\n <span className=\"text-2xl font-bold text-text-primary\">{formattedValue}</span>\n {config?.showMax !== false && (\n <span className=\"text-sm text-text-secondary\">\n {' / '}\n {formattedMax}\n </span>\n )}\n </div>\n </div>\n\n {/* Progress bar */}\n <ProgressBar\n value={percentage}\n target={targetPercentage}\n milestones={milestones}\n height={config?.barHeight || 12}\n color={colorMode}\n showPercentage={config?.showPercentage !== false}\n />\n\n {/* Target info */}\n {data.target !== undefined && (\n <div className=\"mt-3 flex items-center gap-2 text-xs\">\n <svg className=\"w-4 h-4 text-text-secondary\" fill=\"currentColor\" viewBox=\"0 0 24 24\">\n <path d=\"M5 21V3h14l-3 9 3 9H5z\" />\n </svg>\n <span className=\"text-text-secondary\">\n Target:{' '}\n <span className=\"font-medium text-text-primary\">{new Intl.NumberFormat('en-US').format(data.target)}</span>\n {percentage >= (targetPercentage || 0) && <span className=\"text-state-success ml-1\">Reached!</span>}\n </span>\n </div>\n )}\n\n {/* Drilldown indicator */}\n {isClickable && (\n <div className=\"mt-auto pt-3 flex items-center justify-end\">\n <span className=\"text-xs text-text-secondary flex items-center gap-1\">\n View details\n <svg className=\"w-3 h-3\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path strokeLinecap=\"round\" strokeLinejoin=\"round\" strokeWidth={2} d=\"M9 5l7 7-7 7\" />\n </svg>\n </span>\n </div>\n )}\n </div>\n );\n});\n\nexport default ProgressWidget;\n"],"mappings":"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"}
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Progress Widget
3
+ *
4
+ * Progress bar with target, milestones, and color stages.
5
+ */
6
+ export { ProgressWidget, type ProgressWidgetProps, type ProgressData } from './ProgressWidget';
7
+ export { ProgressConfig, type ProgressConfigProps } from './ProgressConfig';
8
+ export { ProgressBar, type ProgressBarProps, type Milestone } from './ProgressBar';
9
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/bigconsole/components/widgets/progress/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,cAAc,EAAE,KAAK,mBAAmB,EAAE,KAAK,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAC/F,OAAO,EAAE,cAAc,EAAE,KAAK,mBAAmB,EAAE,MAAM,kBAAkB,CAAC;AAC5E,OAAO,EAAE,WAAW,EAAE,KAAK,gBAAgB,EAAE,KAAK,SAAS,EAAE,MAAM,eAAe,CAAC"}
@@ -0,0 +1,4 @@
1
+ import e from "./ProgressBar.js";
2
+ import t from "./ProgressWidget.js";
3
+ import n from "./ProgressConfig.js";
4
+ export { e as ProgressBar, n as ProgressConfig, t as ProgressWidget };
@@ -0,0 +1,25 @@
1
+ import { FC } from 'react';
2
+ import { Widget } from '../../../types';
3
+
4
+ export interface RetentionWidgetProps {
5
+ widget: Widget;
6
+ data?: RetentionData;
7
+ onClick?: (cohort: string, period: number, value: number) => void;
8
+ }
9
+ export interface RetentionCohort {
10
+ /** Cohort identifier (e.g., "Week 1", "Jan 2024") */
11
+ cohort: string;
12
+ /** Initial cohort size */
13
+ initialSize: number;
14
+ /** Retention values for each period (percentages) */
15
+ values: number[];
16
+ }
17
+ export interface RetentionData {
18
+ /** Period labels (e.g., ["Day 0", "Day 1", ...]) */
19
+ periods: string[];
20
+ /** Cohort data */
21
+ cohorts: RetentionCohort[];
22
+ }
23
+ export declare const RetentionWidget: FC<RetentionWidgetProps>;
24
+ export default RetentionWidget;
25
+ //# sourceMappingURL=RetentionWidget.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RetentionWidget.d.ts","sourceRoot":"","sources":["../../../../../src/bigconsole/components/widgets/retention/RetentionWidget.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,KAAK,EAAE,EAA8B,MAAM,OAAO,CAAC;AAC5D,OAAO,KAAK,EAAE,MAAM,EAAmB,MAAM,gBAAgB,CAAC;AAM9D,MAAM,WAAW,oBAAoB;IACnC,MAAM,EAAE,MAAM,CAAC;IACf,IAAI,CAAC,EAAE,aAAa,CAAC;IACrB,OAAO,CAAC,EAAE,CAAC,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,KAAK,IAAI,CAAC;CACnE;AAED,MAAM,WAAW,eAAe;IAC9B,qDAAqD;IACrD,MAAM,EAAE,MAAM,CAAC;IACf,0BAA0B;IAC1B,WAAW,EAAE,MAAM,CAAC;IACpB,qDAAqD;IACrD,MAAM,EAAE,MAAM,EAAE,CAAC;CAClB;AAED,MAAM,WAAW,aAAa;IAC5B,oDAAoD;IACpD,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,kBAAkB;IAClB,OAAO,EAAE,eAAe,EAAE,CAAC;CAC5B;AAoBD,eAAO,MAAM,eAAe,EAAE,EAAE,CAAC,oBAAoB,CA0InD,CAAC;AAEH,eAAe,eAAe,CAAC"}