@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,159 @@
1
+ import { memo as e, useCallback as t, useMemo as n } from "react";
2
+ import { jsx as r, jsxs as i } from "react/jsx-runtime";
3
+ //#region src/bigconsole/components/widgets/retention/RetentionWidget.tsx
4
+ function a(e) {
5
+ return e >= 80 ? "bg-state-success/90 text-white" : e >= 60 ? "bg-state-success/70 text-white" : e >= 40 ? "bg-state-success/50 text-text-primary" : e >= 20 ? "bg-state-success/30 text-text-primary" : e > 0 ? "bg-state-success/10 text-text-secondary" : "bg-bg-muted text-text-secondary";
6
+ }
7
+ var o = e(function({ widget: e, data: o, onClick: s }) {
8
+ let c = e.config, l = t((t, n, r) => {
9
+ s && e.drilldowns?.length && s(t, n, r);
10
+ }, [s, e.drilldowns]), u = !!(s && e.drilldowns?.length), d = n(() => !o?.cohorts?.length || !o?.periods?.length ? [] : o.periods.map((e, t) => {
11
+ let n = o.cohorts.map((e) => e.values?.[t]).filter((e) => e != null);
12
+ return n.length === 0 ? 0 : n.reduce((e, t) => e + t, 0) / n.length;
13
+ }), [o]);
14
+ return !o?.cohorts?.length || !o?.periods?.length ? /* @__PURE__ */ r("div", {
15
+ className: "flex items-center justify-center h-full text-text-secondary text-sm",
16
+ children: /* @__PURE__ */ i("div", {
17
+ className: "text-center",
18
+ children: [
19
+ /* @__PURE__ */ r("svg", {
20
+ className: "w-12 h-12 mx-auto mb-2 text-text-tertiary",
21
+ fill: "none",
22
+ stroke: "currentColor",
23
+ viewBox: "0 0 24 24",
24
+ children: /* @__PURE__ */ r("path", {
25
+ strokeLinecap: "round",
26
+ strokeLinejoin: "round",
27
+ strokeWidth: 1.5,
28
+ d: "M9 17V7m0 10a2 2 0 01-2 2H5a2 2 0 01-2-2V7a2 2 0 012-2h2a2 2 0 012 2m0 10a2 2 0 002 2h2a2 2 0 002-2M9 7a2 2 0 012-2h2a2 2 0 012 2m0 10V7m0 10a2 2 0 002 2h2a2 2 0 002-2V7a2 2 0 00-2-2h-2a2 2 0 00-2 2"
29
+ })
30
+ }),
31
+ /* @__PURE__ */ r("p", {
32
+ className: "font-medium text-text-primary",
33
+ children: "No retention cohort data"
34
+ }),
35
+ /* @__PURE__ */ i("p", {
36
+ className: "text-xs text-text-tertiary mt-1",
37
+ children: [
38
+ "Connect a data source that returns ",
39
+ /* @__PURE__ */ r("span", {
40
+ className: "font-mono",
41
+ children: "periods"
42
+ }),
43
+ " and",
44
+ " ",
45
+ /* @__PURE__ */ r("span", {
46
+ className: "font-mono",
47
+ children: "cohorts"
48
+ }),
49
+ "."
50
+ ]
51
+ }),
52
+ /* @__PURE__ */ i("p", {
53
+ className: "text-xs text-text-tertiary mt-2",
54
+ children: [
55
+ "Expected shape: ",
56
+ /* @__PURE__ */ r("span", {
57
+ className: "font-mono",
58
+ children: "RetentionData"
59
+ }),
60
+ "."
61
+ ]
62
+ })
63
+ ]
64
+ })
65
+ }) : /* @__PURE__ */ i("div", {
66
+ className: "flex flex-col h-full p-4 overflow-auto",
67
+ children: [/* @__PURE__ */ i("table", {
68
+ className: "w-full border-collapse",
69
+ children: [/* @__PURE__ */ r("thead", { children: /* @__PURE__ */ i("tr", { children: [
70
+ /* @__PURE__ */ r("th", {
71
+ className: "p-2 text-xs font-medium text-text-secondary text-left sticky left-0 bg-bg-surface",
72
+ children: "Cohort"
73
+ }),
74
+ /* @__PURE__ */ r("th", {
75
+ className: "p-2 text-xs font-medium text-text-secondary text-right",
76
+ children: "Users"
77
+ }),
78
+ o.periods.map((e, t) => /* @__PURE__ */ r("th", {
79
+ className: "p-2 text-xs font-medium text-text-secondary text-center min-w-[60px]",
80
+ children: e
81
+ }, t))
82
+ ] }) }), /* @__PURE__ */ i("tbody", { children: [o.cohorts.map((e, t) => /* @__PURE__ */ i("tr", { children: [
83
+ /* @__PURE__ */ r("td", {
84
+ className: "p-2 text-sm font-medium text-text-primary text-left sticky left-0 bg-bg-surface",
85
+ children: e.cohort
86
+ }),
87
+ /* @__PURE__ */ r("td", {
88
+ className: "p-2 text-sm text-text-secondary text-right",
89
+ children: new Intl.NumberFormat("en-US").format(e.initialSize)
90
+ }),
91
+ e.values.map((t, n) => /* @__PURE__ */ r("td", {
92
+ className: `p-0 ${u ? "cursor-pointer" : ""}`,
93
+ onClick: () => l(e.cohort, n, t),
94
+ children: /* @__PURE__ */ r("div", {
95
+ className: `
96
+ m-0.5 p-2 rounded text-center
97
+ ${a(t)}
98
+ ${u ? "hover:ring-2 hover:ring-action-primary-bg" : ""}
99
+ transition-all
100
+ `,
101
+ title: `${e.cohort} - ${o.periods[n]}: ${t.toFixed(1)}%`,
102
+ children: /* @__PURE__ */ i("span", {
103
+ className: "text-xs font-medium",
104
+ children: [t.toFixed(c?.decimals ?? 0), "%"]
105
+ })
106
+ })
107
+ }, n))
108
+ ] }, e.cohort)), c?.showAverages !== !1 && /* @__PURE__ */ i("tr", {
109
+ className: "border-t-2 border-border-default",
110
+ children: [
111
+ /* @__PURE__ */ r("td", {
112
+ className: "p-2 text-sm font-medium text-text-primary sticky left-0 bg-bg-surface",
113
+ children: "Average"
114
+ }),
115
+ /* @__PURE__ */ r("td", {
116
+ className: "p-2 text-sm text-text-secondary text-right",
117
+ children: "—"
118
+ }),
119
+ d.map((e, t) => /* @__PURE__ */ r("td", {
120
+ className: "p-0",
121
+ children: /* @__PURE__ */ r("div", {
122
+ className: "m-0.5 p-2 rounded bg-bg-muted text-center",
123
+ children: /* @__PURE__ */ i("span", {
124
+ className: "text-xs font-semibold text-text-primary",
125
+ children: [e.toFixed(c?.decimals ?? 0), "%"]
126
+ })
127
+ })
128
+ }, t))
129
+ ]
130
+ })] })]
131
+ }), c?.showLegend !== !1 && /* @__PURE__ */ i("div", {
132
+ className: "flex items-center justify-center gap-2 mt-4",
133
+ children: [
134
+ /* @__PURE__ */ r("span", {
135
+ className: "text-xs text-text-secondary",
136
+ children: "0%"
137
+ }),
138
+ /* @__PURE__ */ r("div", {
139
+ className: "flex gap-0.5",
140
+ children: [
141
+ 10,
142
+ 30,
143
+ 50,
144
+ 70,
145
+ 90
146
+ ].map((e) => /* @__PURE__ */ r("div", { className: `w-6 h-4 rounded bg-state-success/${e}` }, e))
147
+ }),
148
+ /* @__PURE__ */ r("span", {
149
+ className: "text-xs text-text-secondary",
150
+ children: "100%"
151
+ })
152
+ ]
153
+ })]
154
+ });
155
+ });
156
+ //#endregion
157
+ export { o as default };
158
+
159
+ //# sourceMappingURL=RetentionWidget.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"RetentionWidget.js","names":[],"sources":["../../../../../src/bigconsole/components/widgets/retention/RetentionWidget.tsx"],"sourcesContent":["/**\n * RetentionWidget Component\n *\n * Retention cohort chart showing user retention over time.\n */\n\nimport { type FC, memo, useMemo, useCallback } from 'react';\nimport type { Widget, RetentionConfig } from '../../../types';\n\n// ============================================================================\n// Types\n// ============================================================================\n\nexport interface RetentionWidgetProps {\n widget: Widget;\n data?: RetentionData;\n onClick?: (cohort: string, period: number, value: number) => void;\n}\n\nexport interface RetentionCohort {\n /** Cohort identifier (e.g., \"Week 1\", \"Jan 2024\") */\n cohort: string;\n /** Initial cohort size */\n initialSize: number;\n /** Retention values for each period (percentages) */\n values: number[];\n}\n\nexport interface RetentionData {\n /** Period labels (e.g., [\"Day 0\", \"Day 1\", ...]) */\n periods: string[];\n /** Cohort data */\n cohorts: RetentionCohort[];\n}\n\n// ============================================================================\n// Helpers\n// ============================================================================\n\nfunction getRetentionColor(value: number): string {\n // Green gradient based on retention percentage\n if (value >= 80) return 'bg-state-success/90 text-white';\n if (value >= 60) return 'bg-state-success/70 text-white';\n if (value >= 40) return 'bg-state-success/50 text-text-primary';\n if (value >= 20) return 'bg-state-success/30 text-text-primary';\n if (value > 0) return 'bg-state-success/10 text-text-secondary';\n return 'bg-bg-muted text-text-secondary';\n}\n\n// ============================================================================\n// Component\n// ============================================================================\n\nexport const RetentionWidget: FC<RetentionWidgetProps> = memo(function RetentionWidget({ widget, data, onClick }) {\n const config = widget.config as unknown as RetentionConfig | undefined;\n\n const handleCellClick = useCallback(\n (cohort: string, periodIndex: number, value: number) => {\n if (onClick && widget.drilldowns?.length) {\n onClick(cohort, periodIndex, value);\n }\n },\n [onClick, widget.drilldowns]\n );\n\n const isClickable = Boolean(onClick && widget.drilldowns?.length);\n\n // Calculate average retention per period\n const averages = useMemo(() => {\n if (!data?.cohorts?.length || !data?.periods?.length) return [];\n\n return data.periods.map((_, periodIndex) => {\n const values = data.cohorts\n .map((c) => c.values?.[periodIndex])\n .filter((v) => v !== undefined && v !== null) as number[];\n if (values.length === 0) return 0;\n return values.reduce((a, b) => a + b, 0) / values.length;\n });\n }, [data]);\n\n // Show retention-specific empty state when cohort data is missing.\n if (!data?.cohorts?.length || !data?.periods?.length) {\n return (\n <div className=\"flex items-center justify-center h-full text-text-secondary text-sm\">\n <div className=\"text-center\">\n <svg\n className=\"w-12 h-12 mx-auto mb-2 text-text-tertiary\"\n fill=\"none\"\n stroke=\"currentColor\"\n viewBox=\"0 0 24 24\"\n >\n <path\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={1.5}\n d=\"M9 17V7m0 10a2 2 0 01-2 2H5a2 2 0 01-2-2V7a2 2 0 012-2h2a2 2 0 012 2m0 10a2 2 0 002 2h2a2 2 0 002-2M9 7a2 2 0 012-2h2a2 2 0 012 2m0 10V7m0 10a2 2 0 002 2h2a2 2 0 002-2V7a2 2 0 00-2-2h-2a2 2 0 00-2 2\"\n />\n </svg>\n <p className=\"font-medium text-text-primary\">No retention cohort data</p>\n <p className=\"text-xs text-text-tertiary mt-1\">\n Connect a data source that returns <span className=\"font-mono\">periods</span> and{' '}\n <span className=\"font-mono\">cohorts</span>.\n </p>\n <p className=\"text-xs text-text-tertiary mt-2\">\n Expected shape: <span className=\"font-mono\">RetentionData</span>.\n </p>\n </div>\n </div>\n );\n }\n\n return (\n <div className=\"flex flex-col h-full p-4 overflow-auto\">\n <table className=\"w-full border-collapse\">\n <thead>\n <tr>\n <th className=\"p-2 text-xs font-medium text-text-secondary text-left sticky left-0 bg-bg-surface\">\n Cohort\n </th>\n <th className=\"p-2 text-xs font-medium text-text-secondary text-right\">Users</th>\n {data.periods.map((period, i) => (\n <th key={i} className=\"p-2 text-xs font-medium text-text-secondary text-center min-w-[60px]\">\n {period}\n </th>\n ))}\n </tr>\n </thead>\n <tbody>\n {data.cohorts.map((cohort, _cohortIndex) => (\n <tr key={cohort.cohort}>\n <td className=\"p-2 text-sm font-medium text-text-primary text-left sticky left-0 bg-bg-surface\">\n {cohort.cohort}\n </td>\n <td className=\"p-2 text-sm text-text-secondary text-right\">\n {new Intl.NumberFormat('en-US').format(cohort.initialSize)}\n </td>\n {cohort.values.map((value, periodIndex) => (\n <td\n key={periodIndex}\n className={`p-0 ${isClickable ? 'cursor-pointer' : ''}`}\n onClick={() => handleCellClick(cohort.cohort, periodIndex, value)}\n >\n <div\n className={`\n m-0.5 p-2 rounded text-center\n ${getRetentionColor(value)}\n ${isClickable ? 'hover:ring-2 hover:ring-action-primary-bg' : ''}\n transition-all\n `}\n title={`${cohort.cohort} - ${data.periods[periodIndex]}: ${value.toFixed(1)}%`}\n >\n <span className=\"text-xs font-medium\">{value.toFixed(config?.decimals ?? 0)}%</span>\n </div>\n </td>\n ))}\n </tr>\n ))}\n\n {/* Average row */}\n {config?.showAverages !== false && (\n <tr className=\"border-t-2 border-border-default\">\n <td className=\"p-2 text-sm font-medium text-text-primary sticky left-0 bg-bg-surface\">Average</td>\n <td className=\"p-2 text-sm text-text-secondary text-right\">—</td>\n {averages.map((avg, i) => (\n <td key={i} className=\"p-0\">\n <div className=\"m-0.5 p-2 rounded bg-bg-muted text-center\">\n <span className=\"text-xs font-semibold text-text-primary\">\n {avg.toFixed(config?.decimals ?? 0)}%\n </span>\n </div>\n </td>\n ))}\n </tr>\n )}\n </tbody>\n </table>\n\n {/* Legend */}\n {config?.showLegend !== false && (\n <div className=\"flex items-center justify-center gap-2 mt-4\">\n <span className=\"text-xs text-text-secondary\">0%</span>\n <div className=\"flex gap-0.5\">\n {[10, 30, 50, 70, 90].map((opacity) => (\n <div key={opacity} className={`w-6 h-4 rounded bg-state-success/${opacity}`} />\n ))}\n </div>\n <span className=\"text-xs text-text-secondary\">100%</span>\n </div>\n )}\n </div>\n );\n});\n\nexport default RetentionWidget;\n"],"mappings":";;;AAuCA,SAAS,EAAkB,GAAuB;AAOhD,QALI,KAAS,KAAW,mCACpB,KAAS,KAAW,mCACpB,KAAS,KAAW,0CACpB,KAAS,KAAW,0CACpB,IAAQ,IAAU,4CACf;;AAOT,IAAa,IAA4C,EAAK,SAAyB,EAAE,WAAQ,SAAM,cAAW;CAChH,IAAM,IAAS,EAAO,QAEhB,IAAkB,GACrB,GAAgB,GAAqB,MAAkB;AACtD,EAAI,KAAW,EAAO,YAAY,UAChC,EAAQ,GAAQ,GAAa,EAAM;IAGvC,CAAC,GAAS,EAAO,WAAW,CAC7B,EAEK,IAAc,GAAQ,KAAW,EAAO,YAAY,SAGpD,IAAW,QACX,CAAC,GAAM,SAAS,UAAU,CAAC,GAAM,SAAS,SAAe,EAAE,GAExD,EAAK,QAAQ,KAAK,GAAG,MAAgB;EAC1C,IAAM,IAAS,EAAK,QACjB,KAAK,MAAM,EAAE,SAAS,GAAa,CACnC,QAAQ,MAAM,KAAyB,KAAK;AAE/C,SADI,EAAO,WAAW,IAAU,IACzB,EAAO,QAAQ,GAAG,MAAM,IAAI,GAAG,EAAE,GAAG,EAAO;GAClD,EACD,CAAC,EAAK,CAAC;AAiCV,QA9BI,CAAC,GAAM,SAAS,UAAU,CAAC,GAAM,SAAS,SAE1C,kBAAC,OAAD;EAAK,WAAU;YACb,kBAAC,OAAD;GAAK,WAAU;aAAf;IACE,kBAAC,OAAD;KACE,WAAU;KACV,MAAK;KACL,QAAO;KACP,SAAQ;eAER,kBAAC,QAAD;MACE,eAAc;MACd,gBAAe;MACf,aAAa;MACb,GAAE;MACF,CAAA;KACE,CAAA;IACN,kBAAC,KAAD;KAAG,WAAU;eAAgC;KAA4B,CAAA;IACzE,kBAAC,KAAD;KAAG,WAAU;eAAb;MAA+C;MACV,kBAAC,QAAD;OAAM,WAAU;iBAAY;OAAc,CAAA;;MAAK;MAClF,kBAAC,QAAD;OAAM,WAAU;iBAAY;OAAc,CAAA;;MACxC;;IACJ,kBAAC,KAAD;KAAG,WAAU;eAAb;MAA+C;MAC7B,kBAAC,QAAD;OAAM,WAAU;iBAAY;OAAoB,CAAA;;MAC9D;;IACA;;EACF,CAAA,GAKR,kBAAC,OAAD;EAAK,WAAU;YAAf,CACE,kBAAC,SAAD;GAAO,WAAU;aAAjB,CACE,kBAAC,SAAD,EAAA,UACE,kBAAC,MAAD,EAAA,UAAA;IACE,kBAAC,MAAD;KAAI,WAAU;eAAoF;KAE7F,CAAA;IACL,kBAAC,MAAD;KAAI,WAAU;eAAyD;KAAU,CAAA;IAChF,EAAK,QAAQ,KAAK,GAAQ,MACzB,kBAAC,MAAD;KAAY,WAAU;eACnB;KACE,EAFI,EAEJ,CACL;IACC,EAAA,CAAA,EACC,CAAA,EACR,kBAAC,SAAD,EAAA,UAAA,CACG,EAAK,QAAQ,KAAK,GAAQ,MACzB,kBAAC,MAAD,EAAA,UAAA;IACE,kBAAC,MAAD;KAAI,WAAU;eACX,EAAO;KACL,CAAA;IACL,kBAAC,MAAD;KAAI,WAAU;eACX,IAAI,KAAK,aAAa,QAAQ,CAAC,OAAO,EAAO,YAAY;KACvD,CAAA;IACJ,EAAO,OAAO,KAAK,GAAO,MACzB,kBAAC,MAAD;KAEE,WAAW,OAAO,IAAc,mBAAmB;KACnD,eAAe,EAAgB,EAAO,QAAQ,GAAa,EAAM;eAEjE,kBAAC,OAAD;MACE,WAAW;;0BAEL,EAAkB,EAAM,CAAC;0BACzB,IAAc,8CAA8C,GAAG;;;MAGrE,OAAO,GAAG,EAAO,OAAO,KAAK,EAAK,QAAQ,GAAa,IAAI,EAAM,QAAQ,EAAE,CAAC;gBAE5E,kBAAC,QAAD;OAAM,WAAU;iBAAhB,CAAuC,EAAM,QAAQ,GAAQ,YAAY,EAAE,EAAC,IAAQ;;MAChF,CAAA;KACH,EAfE,EAeF,CACL;IACC,EAAA,EA1BI,EAAO,OA0BX,CACL,EAGD,GAAQ,iBAAiB,MACxB,kBAAC,MAAD;IAAI,WAAU;cAAd;KACE,kBAAC,MAAD;MAAI,WAAU;gBAAwE;MAAY,CAAA;KAClG,kBAAC,MAAD;MAAI,WAAU;gBAA6C;MAAM,CAAA;KAChE,EAAS,KAAK,GAAK,MAClB,kBAAC,MAAD;MAAY,WAAU;gBACpB,kBAAC,OAAD;OAAK,WAAU;iBACb,kBAAC,QAAD;QAAM,WAAU;kBAAhB,CACG,EAAI,QAAQ,GAAQ,YAAY,EAAE,EAAC,IAC/B;;OACH,CAAA;MACH,EANI,EAMJ,CACL;KACC;MAED,EAAA,CAAA,CACF;MAGP,GAAQ,eAAe,MACtB,kBAAC,OAAD;GAAK,WAAU;aAAf;IACE,kBAAC,QAAD;KAAM,WAAU;eAA8B;KAAS,CAAA;IACvD,kBAAC,OAAD;KAAK,WAAU;eACZ;MAAC;MAAI;MAAI;MAAI;MAAI;MAAG,CAAC,KAAK,MACzB,kBAAC,OAAD,EAAmB,WAAW,oCAAoC,KAAa,EAArE,EAAqE,CAC/E;KACE,CAAA;IACN,kBAAC,QAAD;KAAM,WAAU;eAA8B;KAAW,CAAA;IACrD;KAEJ;;EAER"}
@@ -0,0 +1,7 @@
1
+ /**
2
+ * Retention Widget
3
+ *
4
+ * Cohort retention chart showing user retention over time.
5
+ */
6
+ export { RetentionWidget, type RetentionWidgetProps, type RetentionData, type RetentionCohort, } from './RetentionWidget';
7
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/bigconsole/components/widgets/retention/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,eAAe,EACf,KAAK,oBAAoB,EACzB,KAAK,aAAa,EAClB,KAAK,eAAe,GACrB,MAAM,mBAAmB,CAAC"}
@@ -0,0 +1,2 @@
1
+ import e from "./RetentionWidget.js";
2
+ export { e as RetentionWidget };
@@ -0,0 +1,14 @@
1
+ import { FC } from 'react';
2
+ import { WidgetType } from '../../../types';
3
+
4
+ export interface WidgetEmptyStateProps {
5
+ /** Widget type for context-specific messaging */
6
+ widgetType?: WidgetType;
7
+ /** Whether a data source is configured */
8
+ hasDataSource?: boolean;
9
+ /** Custom message */
10
+ message?: string;
11
+ }
12
+ export declare const WidgetEmptyState: FC<WidgetEmptyStateProps>;
13
+ export default WidgetEmptyState;
14
+ //# sourceMappingURL=EmptyState.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmptyState.d.ts","sourceRoot":"","sources":["../../../../../src/bigconsole/components/widgets/states/EmptyState.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,KAAK,EAAE,EAAQ,MAAM,OAAO,CAAC;AACtC,OAAO,KAAK,EAAE,UAAU,EAAE,MAAM,gBAAgB,CAAC;AAEjD,MAAM,WAAW,qBAAqB;IACpC,iDAAiD;IACjD,UAAU,CAAC,EAAE,UAAU,CAAC;IACxB,0CAA0C;IAC1C,aAAa,CAAC,EAAE,OAAO,CAAC;IACxB,qBAAqB;IACrB,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,eAAO,MAAM,gBAAgB,EAAE,EAAE,CAAC,qBAAqB,CA+CrD,CAAC;AAyCH,eAAe,gBAAgB,CAAC"}
@@ -0,0 +1,61 @@
1
+ import { memo as e } from "react";
2
+ import { jsx as t, jsxs as n } from "react/jsx-runtime";
3
+ //#region src/bigconsole/components/widgets/states/EmptyState.tsx
4
+ var r = e(function({ widgetType: e, hasDataSource: r = !1, message: a }) {
5
+ let o = a || (r ? i(e) : "Connect a data source to display data");
6
+ return /* @__PURE__ */ n("div", {
7
+ className: "\n flex flex-col items-center justify-center\n h-full w-full min-h-[120px]\n text-center\n px-4\n ",
8
+ children: [
9
+ /* @__PURE__ */ t("div", {
10
+ className: "\n w-12 h-12 mb-3\n flex items-center justify-center\n rounded-full\n bg-bg-muted\n text-text-secondary\n ",
11
+ children: /* @__PURE__ */ t("svg", {
12
+ className: "w-6 h-6",
13
+ fill: "none",
14
+ stroke: "currentColor",
15
+ viewBox: "0 0 24 24",
16
+ children: /* @__PURE__ */ t("path", {
17
+ strokeLinecap: "round",
18
+ strokeLinejoin: "round",
19
+ strokeWidth: 2,
20
+ d: "M20 13V6a2 2 0 00-2-2H6a2 2 0 00-2 2v7m16 0v5a2 2 0 01-2 2H6a2 2 0 01-2-2v-5m16 0h-2.586a1 1 0 00-.707.293l-2.414 2.414a1 1 0 01-.707.293h-3.172a1 1 0 01-.707-.293l-2.414-2.414A1 1 0 006.586 13H4"
21
+ })
22
+ })
23
+ }),
24
+ /* @__PURE__ */ t("p", {
25
+ className: "text-sm text-text-secondary",
26
+ children: o
27
+ }),
28
+ !r && /* @__PURE__ */ t("p", {
29
+ className: "text-xs text-text-secondary mt-2 max-w-[200px]",
30
+ children: "Click Edit to configure this widget"
31
+ })
32
+ ]
33
+ });
34
+ });
35
+ function i(e) {
36
+ switch (e) {
37
+ case "metric_card":
38
+ case "kpi_card_comparison": return "No metrics available";
39
+ case "chart":
40
+ case "funnel_chart": return "No chart data available";
41
+ case "table":
42
+ case "pivot_table": return "No rows to display";
43
+ case "gauge":
44
+ case "progress": return "No value available";
45
+ case "list": return "No items to display";
46
+ case "heatmap": return "No heatmap data available";
47
+ case "calendar":
48
+ case "timeline":
49
+ case "kanban": return "No schedule data available";
50
+ case "map": return "No location data available";
51
+ case "form": return "Form not configured";
52
+ case "text":
53
+ case "iframe": return "No content configured";
54
+ case "custom": return "Custom widget not configured";
55
+ default: return "No data available";
56
+ }
57
+ }
58
+ //#endregion
59
+ export { r as default };
60
+
61
+ //# sourceMappingURL=EmptyState.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"EmptyState.js","names":[],"sources":["../../../../../src/bigconsole/components/widgets/states/EmptyState.tsx"],"sourcesContent":["/**\n * WidgetEmptyState Component\n *\n * Empty state displayed when widget has no data.\n */\n\nimport { type FC, memo } from 'react';\nimport type { WidgetType } from '../../../types';\n\nexport interface WidgetEmptyStateProps {\n /** Widget type for context-specific messaging */\n widgetType?: WidgetType;\n /** Whether a data source is configured */\n hasDataSource?: boolean;\n /** Custom message */\n message?: string;\n}\n\nexport const WidgetEmptyState: FC<WidgetEmptyStateProps> = memo(function WidgetEmptyState({\n widgetType,\n hasDataSource = false,\n message,\n}) {\n // Determine appropriate message\n const displayMessage =\n message || (!hasDataSource ? 'Connect a data source to display data' : getEmptyMessageForType(widgetType));\n\n return (\n <div\n className=\"\n flex flex-col items-center justify-center\n h-full w-full min-h-[120px]\n text-center\n px-4\n \"\n >\n {/* Empty Icon */}\n <div\n className=\"\n w-12 h-12 mb-3\n flex items-center justify-center\n rounded-full\n bg-bg-muted\n text-text-secondary\n \"\n >\n <svg className=\"w-6 h-6\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={2}\n d=\"M20 13V6a2 2 0 00-2-2H6a2 2 0 00-2 2v7m16 0v5a2 2 0 01-2 2H6a2 2 0 01-2-2v-5m16 0h-2.586a1 1 0 00-.707.293l-2.414 2.414a1 1 0 01-.707.293h-3.172a1 1 0 01-.707-.293l-2.414-2.414A1 1 0 006.586 13H4\"\n />\n </svg>\n </div>\n\n {/* Message */}\n <p className=\"text-sm text-text-secondary\">{displayMessage}</p>\n\n {/* Data source hint */}\n {!hasDataSource && (\n <p className=\"text-xs text-text-secondary mt-2 max-w-[200px]\">Click Edit to configure this widget</p>\n )}\n </div>\n );\n});\n\n/**\n * Get context-specific empty message for widget type (v1.0 snake_case)\n */\nfunction getEmptyMessageForType(type?: WidgetType): string {\n switch (type) {\n case 'metric_card':\n case 'kpi_card_comparison':\n return 'No metrics available';\n case 'chart':\n case 'funnel_chart':\n return 'No chart data available';\n case 'table':\n case 'pivot_table':\n return 'No rows to display';\n case 'gauge':\n case 'progress':\n return 'No value available';\n case 'list':\n return 'No items to display';\n case 'heatmap':\n return 'No heatmap data available';\n case 'calendar':\n case 'timeline':\n case 'kanban':\n return 'No schedule data available';\n case 'map':\n return 'No location data available';\n case 'form':\n return 'Form not configured';\n case 'text':\n case 'iframe':\n return 'No content configured';\n case 'custom':\n return 'Custom widget not configured';\n default:\n return 'No data available';\n }\n}\n\nexport default WidgetEmptyState;\n"],"mappings":";;;AAkBA,IAAa,IAA8C,EAAK,SAA0B,EACxF,eACA,mBAAgB,IAChB,cACC;CAED,IAAM,IACJ,MAAa,IAA0D,EAAuB,EAAW,GAA5E;AAE/B,QACE,kBAAC,OAAD;EACE,WAAU;YADZ;GASE,kBAAC,OAAD;IACE,WAAU;cAQV,kBAAC,OAAD;KAAK,WAAU;KAAU,MAAK;KAAO,QAAO;KAAe,SAAQ;eACjE,kBAAC,QAAD;MACE,eAAc;MACd,gBAAe;MACf,aAAa;MACb,GAAE;MACF,CAAA;KACE,CAAA;IACF,CAAA;GAGN,kBAAC,KAAD;IAAG,WAAU;cAA+B;IAAmB,CAAA;GAG9D,CAAC,KACA,kBAAC,KAAD;IAAG,WAAU;cAAiD;IAAuC,CAAA;GAEnG;;EAER;AAKF,SAAS,EAAuB,GAA2B;AACzD,SAAQ,GAAR;EACE,KAAK;EACL,KAAK,sBACH,QAAO;EACT,KAAK;EACL,KAAK,eACH,QAAO;EACT,KAAK;EACL,KAAK,cACH,QAAO;EACT,KAAK;EACL,KAAK,WACH,QAAO;EACT,KAAK,OACH,QAAO;EACT,KAAK,UACH,QAAO;EACT,KAAK;EACL,KAAK;EACL,KAAK,SACH,QAAO;EACT,KAAK,MACH,QAAO;EACT,KAAK,OACH,QAAO;EACT,KAAK;EACL,KAAK,SACH,QAAO;EACT,KAAK,SACH,QAAO;EACT,QACE,QAAO"}
@@ -0,0 +1,11 @@
1
+ import { FC } from 'react';
2
+
3
+ export interface WidgetErrorStateProps {
4
+ /** Error message */
5
+ error: string;
6
+ /** Callback to retry loading */
7
+ onRetry?: () => void;
8
+ }
9
+ export declare const WidgetErrorState: FC<WidgetErrorStateProps>;
10
+ export default WidgetErrorState;
11
+ //# sourceMappingURL=ErrorState.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ErrorState.d.ts","sourceRoot":"","sources":["../../../../../src/bigconsole/components/widgets/states/ErrorState.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,KAAK,EAAE,EAAQ,MAAM,OAAO,CAAC;AAEtC,MAAM,WAAW,qBAAqB;IACpC,oBAAoB;IACpB,KAAK,EAAE,MAAM,CAAC;IACd,gCAAgC;IAChC,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAED,eAAO,MAAM,gBAAgB,EAAE,EAAE,CAAC,qBAAqB,CAkErD,CAAC;AAEH,eAAe,gBAAgB,CAAC"}
@@ -0,0 +1,56 @@
1
+ import { memo as e } from "react";
2
+ import { jsx as t, jsxs as n } from "react/jsx-runtime";
3
+ //#region src/bigconsole/components/widgets/states/ErrorState.tsx
4
+ var r = e(function({ error: e, onRetry: r }) {
5
+ return /* @__PURE__ */ n("div", {
6
+ className: "\n flex flex-col items-center justify-center\n h-full w-full min-h-[120px]\n text-center\n px-4\n ",
7
+ role: "alert",
8
+ children: [
9
+ /* @__PURE__ */ t("div", {
10
+ className: "\n w-12 h-12 mb-3\n flex items-center justify-center\n rounded-full\n bg-state-error/10\n text-state-error\n ",
11
+ children: /* @__PURE__ */ t("svg", {
12
+ className: "w-6 h-6",
13
+ fill: "none",
14
+ stroke: "currentColor",
15
+ viewBox: "0 0 24 24",
16
+ children: /* @__PURE__ */ t("path", {
17
+ strokeLinecap: "round",
18
+ strokeLinejoin: "round",
19
+ strokeWidth: 2,
20
+ d: "M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"
21
+ })
22
+ })
23
+ }),
24
+ /* @__PURE__ */ t("p", {
25
+ className: "text-sm font-medium text-state-error mb-1",
26
+ children: "Failed to load data"
27
+ }),
28
+ /* @__PURE__ */ t("p", {
29
+ className: "text-xs text-text-secondary max-w-[200px] mb-4",
30
+ title: e,
31
+ children: e.length > 100 ? `${e.substring(0, 100)}...` : e
32
+ }),
33
+ r && /* @__PURE__ */ n("button", {
34
+ type: "button",
35
+ onClick: r,
36
+ className: "\n inline-flex items-center gap-1.5\n px-3 py-1.5\n text-sm font-medium\n text-action-primary-fg\n bg-action-primary-bg\n hover:bg-action-primary-bgHover\n rounded-md\n transition-colors\n ",
37
+ children: [/* @__PURE__ */ t("svg", {
38
+ className: "w-4 h-4",
39
+ fill: "none",
40
+ stroke: "currentColor",
41
+ viewBox: "0 0 24 24",
42
+ children: /* @__PURE__ */ t("path", {
43
+ strokeLinecap: "round",
44
+ strokeLinejoin: "round",
45
+ strokeWidth: 2,
46
+ d: "M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15"
47
+ })
48
+ }), "Retry"]
49
+ })
50
+ ]
51
+ });
52
+ });
53
+ //#endregion
54
+ export { r as default };
55
+
56
+ //# sourceMappingURL=ErrorState.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ErrorState.js","names":[],"sources":["../../../../../src/bigconsole/components/widgets/states/ErrorState.tsx"],"sourcesContent":["/**\n * WidgetErrorState Component\n *\n * Error state displayed when widget data fetch fails.\n */\n\nimport { type FC, memo } from 'react';\n\nexport interface WidgetErrorStateProps {\n /** Error message */\n error: string;\n /** Callback to retry loading */\n onRetry?: () => void;\n}\n\nexport const WidgetErrorState: FC<WidgetErrorStateProps> = memo(function WidgetErrorState({ error, onRetry }) {\n return (\n <div\n className=\"\n flex flex-col items-center justify-center\n h-full w-full min-h-[120px]\n text-center\n px-4\n \"\n role=\"alert\"\n >\n {/* Error Icon */}\n <div\n className=\"\n w-12 h-12 mb-3\n flex items-center justify-center\n rounded-full\n bg-state-error/10\n text-state-error\n \"\n >\n <svg className=\"w-6 h-6\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={2}\n d=\"M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z\"\n />\n </svg>\n </div>\n\n {/* Error Message */}\n <p className=\"text-sm font-medium text-state-error mb-1\">Failed to load data</p>\n <p className=\"text-xs text-text-secondary max-w-[200px] mb-4\" title={error}>\n {error.length > 100 ? `${error.substring(0, 100)}...` : error}\n </p>\n\n {/* Retry Button */}\n {onRetry && (\n <button\n type=\"button\"\n onClick={onRetry}\n className=\"\n inline-flex items-center gap-1.5\n px-3 py-1.5\n text-sm font-medium\n text-action-primary-fg\n bg-action-primary-bg\n hover:bg-action-primary-bgHover\n rounded-md\n transition-colors\n \"\n >\n <svg className=\"w-4 h-4\" fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path\n strokeLinecap=\"round\"\n strokeLinejoin=\"round\"\n strokeWidth={2}\n d=\"M4 4v5h.582m15.356 2A8.001 8.001 0 004.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 01-15.357-2m15.357 2H15\"\n />\n </svg>\n Retry\n </button>\n )}\n </div>\n );\n});\n\nexport default WidgetErrorState;\n"],"mappings":";;;AAeA,IAAa,IAA8C,EAAK,SAA0B,EAAE,UAAO,cAAW;AAC5G,QACE,kBAAC,OAAD;EACE,WAAU;EAMV,MAAK;YAPP;GAUE,kBAAC,OAAD;IACE,WAAU;cAQV,kBAAC,OAAD;KAAK,WAAU;KAAU,MAAK;KAAO,QAAO;KAAe,SAAQ;eACjE,kBAAC,QAAD;MACE,eAAc;MACd,gBAAe;MACf,aAAa;MACb,GAAE;MACF,CAAA;KACE,CAAA;IACF,CAAA;GAGN,kBAAC,KAAD;IAAG,WAAU;cAA4C;IAAuB,CAAA;GAChF,kBAAC,KAAD;IAAG,WAAU;IAAiD,OAAO;cAClE,EAAM,SAAS,MAAM,GAAG,EAAM,UAAU,GAAG,IAAI,CAAC,OAAO;IACtD,CAAA;GAGH,KACC,kBAAC,UAAD;IACE,MAAK;IACL,SAAS;IACT,WAAU;cAHZ,CAcE,kBAAC,OAAD;KAAK,WAAU;KAAU,MAAK;KAAO,QAAO;KAAe,SAAQ;eACjE,kBAAC,QAAD;MACE,eAAc;MACd,gBAAe;MACf,aAAa;MACb,GAAE;MACF,CAAA;KACE,CAAA,EAAA,QAEC;;GAEP;;EAER"}
@@ -0,0 +1,9 @@
1
+ import { FC } from 'react';
2
+
3
+ export interface WidgetLoadingStateProps {
4
+ /** Optional message to display */
5
+ message?: string;
6
+ }
7
+ export declare const WidgetLoadingState: FC<WidgetLoadingStateProps>;
8
+ export default WidgetLoadingState;
9
+ //# sourceMappingURL=LoadingState.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LoadingState.d.ts","sourceRoot":"","sources":["../../../../../src/bigconsole/components/widgets/states/LoadingState.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,KAAK,EAAE,EAAQ,MAAM,OAAO,CAAC;AAEtC,MAAM,WAAW,uBAAuB;IACtC,kCAAkC;IAClC,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED,eAAO,MAAM,kBAAkB,EAAE,EAAE,CAAC,uBAAuB,CAqCzD,CAAC;AAEH,eAAe,kBAAkB,CAAC"}
@@ -0,0 +1,21 @@
1
+ import { memo as e } from "react";
2
+ import { jsx as t, jsxs as n } from "react/jsx-runtime";
3
+ //#region src/bigconsole/components/widgets/states/LoadingState.tsx
4
+ var r = e(function({ message: e = "Loading..." }) {
5
+ return /* @__PURE__ */ n("div", {
6
+ className: "\n flex flex-col items-center justify-center\n h-full w-full min-h-[120px]\n text-text-secondary\n ",
7
+ role: "status",
8
+ "aria-live": "polite",
9
+ children: [/* @__PURE__ */ n("div", {
10
+ className: "relative w-10 h-10 mb-3",
11
+ children: [/* @__PURE__ */ t("div", { className: "\n absolute inset-0\n border-4 border-border-default\n rounded-full\n " }), /* @__PURE__ */ t("div", { className: "\n absolute inset-0\n border-4 border-action-primary-bg\n border-t-transparent\n rounded-full\n animate-spin\n " })]
12
+ }), /* @__PURE__ */ t("p", {
13
+ className: "text-sm",
14
+ children: e
15
+ })]
16
+ });
17
+ });
18
+ //#endregion
19
+ export { r as default };
20
+
21
+ //# sourceMappingURL=LoadingState.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LoadingState.js","names":[],"sources":["../../../../../src/bigconsole/components/widgets/states/LoadingState.tsx"],"sourcesContent":["/**\n * WidgetLoadingState Component\n *\n * Loading state displayed while widget data is being fetched.\n */\n\nimport { type FC, memo } from 'react';\n\nexport interface WidgetLoadingStateProps {\n /** Optional message to display */\n message?: string;\n}\n\nexport const WidgetLoadingState: FC<WidgetLoadingStateProps> = memo(function WidgetLoadingState({\n message = 'Loading...',\n}) {\n return (\n <div\n className=\"\n flex flex-col items-center justify-center\n h-full w-full min-h-[120px]\n text-text-secondary\n \"\n role=\"status\"\n aria-live=\"polite\"\n >\n {/* Spinner */}\n <div className=\"relative w-10 h-10 mb-3\">\n <div\n className=\"\n absolute inset-0\n border-4 border-border-default\n rounded-full\n \"\n />\n <div\n className=\"\n absolute inset-0\n border-4 border-action-primary-bg\n border-t-transparent\n rounded-full\n animate-spin\n \"\n />\n </div>\n\n {/* Message */}\n <p className=\"text-sm\">{message}</p>\n </div>\n );\n});\n\nexport default WidgetLoadingState;\n"],"mappings":";;;AAaA,IAAa,IAAkD,EAAK,SAA4B,EAC9F,aAAU,gBACT;AACD,QACE,kBAAC,OAAD;EACE,WAAU;EAKV,MAAK;EACL,aAAU;YAPZ,CAUE,kBAAC,OAAD;GAAK,WAAU;aAAf,CACE,kBAAC,OAAD,EACE,WAAU,4HAKV,CAAA,EACF,kBAAC,OAAD,EACE,WAAU,+LAOV,CAAA,CACE;MAGN,kBAAC,KAAD;GAAG,WAAU;aAAW;GAAY,CAAA,CAChC;;EAER"}
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Widget State Components
3
+ *
4
+ * Loading, error, and empty states for widgets.
5
+ */
6
+ export { WidgetLoadingState, type WidgetLoadingStateProps } from './LoadingState';
7
+ export { WidgetErrorState, type WidgetErrorStateProps } from './ErrorState';
8
+ export { WidgetEmptyState, type WidgetEmptyStateProps } from './EmptyState';
9
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/bigconsole/components/widgets/states/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,kBAAkB,EAAE,KAAK,uBAAuB,EAAE,MAAM,gBAAgB,CAAC;AAClF,OAAO,EAAE,gBAAgB,EAAE,KAAK,qBAAqB,EAAE,MAAM,cAAc,CAAC;AAC5E,OAAO,EAAE,gBAAgB,EAAE,KAAK,qBAAqB,EAAE,MAAM,cAAc,CAAC"}
@@ -0,0 +1,3 @@
1
+ import "./LoadingState.js";
2
+ import "./ErrorState.js";
3
+ import "./EmptyState.js";
@@ -0,0 +1,31 @@
1
+ import { FC } from 'react';
2
+ import { ColumnDefinition } from './TableHeader';
3
+
4
+ export type CellFormat = 'text' | 'number' | 'currency' | 'percentage' | 'date' | 'badge' | 'link';
5
+ export interface CellFormatConfig {
6
+ /** Format type */
7
+ type: CellFormat;
8
+ /** Currency code for currency format */
9
+ currency?: string;
10
+ /** Date format options */
11
+ dateOptions?: Intl.DateTimeFormatOptions;
12
+ /** Badge color mapping (value -> color) */
13
+ badgeColors?: Record<string, string>;
14
+ /** Link URL pattern (use {value} as placeholder) */
15
+ linkPattern?: string;
16
+ }
17
+ export interface TableCellProps {
18
+ /** Cell value */
19
+ value: unknown;
20
+ /** Column definition */
21
+ column: ColumnDefinition;
22
+ /** Format configuration */
23
+ format?: CellFormatConfig;
24
+ /** Row data for link patterns */
25
+ rowData?: Record<string, unknown>;
26
+ /** Click handler */
27
+ onClick?: () => void;
28
+ }
29
+ export declare const TableCell: FC<TableCellProps>;
30
+ export default TableCell;
31
+ //# sourceMappingURL=TableCell.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TableCell.d.ts","sourceRoot":"","sources":["../../../../../src/bigconsole/components/widgets/table/TableCell.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,KAAK,EAAE,EAAwB,MAAM,OAAO,CAAC;AACtD,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,eAAe,CAAC;AAMtD,MAAM,MAAM,UAAU,GAAG,MAAM,GAAG,QAAQ,GAAG,UAAU,GAAG,YAAY,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM,CAAC;AAEnG,MAAM,WAAW,gBAAgB;IAC/B,kBAAkB;IAClB,IAAI,EAAE,UAAU,CAAC;IACjB,wCAAwC;IACxC,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,0BAA0B;IAC1B,WAAW,CAAC,EAAE,IAAI,CAAC,qBAAqB,CAAC;IACzC,2CAA2C;IAC3C,WAAW,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IACrC,oDAAoD;IACpD,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AAED,MAAM,WAAW,cAAc;IAC7B,iBAAiB;IACjB,KAAK,EAAE,OAAO,CAAC;IACf,wBAAwB;IACxB,MAAM,EAAE,gBAAgB,CAAC;IACzB,2BAA2B;IAC3B,MAAM,CAAC,EAAE,gBAAgB,CAAC;IAC1B,iCAAiC;IACjC,OAAO,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;IAClC,oBAAoB;IACpB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB;AAuED,eAAO,MAAM,SAAS,EAAE,EAAE,CAAC,cAAc,CAwBvC,CAAC;AAEH,eAAe,SAAS,CAAC"}
@@ -0,0 +1,65 @@
1
+ import { memo as e } from "react";
2
+ import { jsx as t } from "react/jsx-runtime";
3
+ //#region src/bigconsole/components/widgets/table/TableCell.tsx
4
+ function n(e, n) {
5
+ if (e == null) return /* @__PURE__ */ t("span", {
6
+ className: "text-text-secondary",
7
+ children: "—"
8
+ });
9
+ switch (n?.type || "text") {
10
+ case "number": return typeof e == "number" ? new Intl.NumberFormat("en-US").format(e) : String(e);
11
+ case "currency": return typeof e == "number" ? new Intl.NumberFormat("en-US", {
12
+ style: "currency",
13
+ currency: n?.currency || "USD"
14
+ }).format(e) : String(e);
15
+ case "percentage": return typeof e == "number" ? `${(e * 100).toFixed(1)}%` : String(e);
16
+ case "date":
17
+ if (e instanceof Date) return new Intl.DateTimeFormat("en-US", n?.dateOptions || { dateStyle: "medium" }).format(e);
18
+ if (typeof e == "string" || typeof e == "number") {
19
+ let t = new Date(e);
20
+ if (!isNaN(t.getTime())) return new Intl.DateTimeFormat("en-US", n?.dateOptions || { dateStyle: "medium" }).format(t);
21
+ }
22
+ return String(e);
23
+ case "badge": {
24
+ let r = String(e);
25
+ return /* @__PURE__ */ t("span", {
26
+ className: `
27
+ inline-flex items-center
28
+ px-2 py-0.5
29
+ text-xs font-medium
30
+ rounded-full
31
+ ${n?.badgeColors?.[r] || "bg-bg-muted text-text-primary"}
32
+ `,
33
+ children: r
34
+ });
35
+ }
36
+ case "link": return /* @__PURE__ */ t("span", {
37
+ className: "text-action-primary-bg hover:underline cursor-pointer",
38
+ children: String(e)
39
+ });
40
+ default: return String(e);
41
+ }
42
+ }
43
+ var r = e(function({ value: e, column: r, format: i, onClick: a }) {
44
+ return /* @__PURE__ */ t("td", {
45
+ className: `
46
+ px-4 py-3
47
+ text-sm text-text-primary
48
+ border-b border-border-default
49
+ ${r.align === "center" ? "text-center" : ""}
50
+ ${r.align === "right" ? "text-right" : "text-left"}
51
+ ${a ? "cursor-pointer hover:text-action-primary-bg" : ""}
52
+ `,
53
+ onClick: a,
54
+ role: a ? "button" : void 0,
55
+ tabIndex: a ? 0 : void 0,
56
+ onKeyDown: (e) => {
57
+ a && (e.key === "Enter" || e.key === " ") && (e.preventDefault(), a());
58
+ },
59
+ children: n(e, i)
60
+ });
61
+ });
62
+ //#endregion
63
+ export { r as default };
64
+
65
+ //# sourceMappingURL=TableCell.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TableCell.js","names":[],"sources":["../../../../../src/bigconsole/components/widgets/table/TableCell.tsx"],"sourcesContent":["/**\n * TableCell Component\n *\n * Table cell with formatting and rendering options.\n */\n\nimport { type FC, memo, type ReactNode } from 'react';\nimport type { ColumnDefinition } from './TableHeader';\n\n// ============================================================================\n// Types\n// ============================================================================\n\nexport type CellFormat = 'text' | 'number' | 'currency' | 'percentage' | 'date' | 'badge' | 'link';\n\nexport interface CellFormatConfig {\n /** Format type */\n type: CellFormat;\n /** Currency code for currency format */\n currency?: string;\n /** Date format options */\n dateOptions?: Intl.DateTimeFormatOptions;\n /** Badge color mapping (value -> color) */\n badgeColors?: Record<string, string>;\n /** Link URL pattern (use {value} as placeholder) */\n linkPattern?: string;\n}\n\nexport interface TableCellProps {\n /** Cell value */\n value: unknown;\n /** Column definition */\n column: ColumnDefinition;\n /** Format configuration */\n format?: CellFormatConfig;\n /** Row data for link patterns */\n rowData?: Record<string, unknown>;\n /** Click handler */\n onClick?: () => void;\n}\n\n// ============================================================================\n// Helpers\n// ============================================================================\n\nfunction formatValue(value: unknown, format?: CellFormatConfig): ReactNode {\n if (value === null || value === undefined) {\n return <span className=\"text-text-secondary\">—</span>;\n }\n\n const formatType = format?.type || 'text';\n\n switch (formatType) {\n case 'number':\n return typeof value === 'number' ? new Intl.NumberFormat('en-US').format(value) : String(value);\n\n case 'currency':\n return typeof value === 'number'\n ? new Intl.NumberFormat('en-US', {\n style: 'currency',\n currency: format?.currency || 'USD',\n }).format(value)\n : String(value);\n\n case 'percentage':\n return typeof value === 'number' ? `${(value * 100).toFixed(1)}%` : String(value);\n\n case 'date':\n if (value instanceof Date) {\n return new Intl.DateTimeFormat('en-US', format?.dateOptions || { dateStyle: 'medium' }).format(value);\n }\n if (typeof value === 'string' || typeof value === 'number') {\n const date = new Date(value);\n if (!isNaN(date.getTime())) {\n return new Intl.DateTimeFormat('en-US', format?.dateOptions || { dateStyle: 'medium' }).format(date);\n }\n }\n return String(value);\n\n case 'badge': {\n const stringValue = String(value);\n const badgeColor = format?.badgeColors?.[stringValue] || 'bg-bg-muted text-text-primary';\n return (\n <span\n className={`\n inline-flex items-center\n px-2 py-0.5\n text-xs font-medium\n rounded-full\n ${badgeColor}\n `}\n >\n {stringValue}\n </span>\n );\n }\n\n case 'link':\n return <span className=\"text-action-primary-bg hover:underline cursor-pointer\">{String(value)}</span>;\n\n case 'text':\n default:\n return String(value);\n }\n}\n\n// ============================================================================\n// Component\n// ============================================================================\n\nexport const TableCell: FC<TableCellProps> = memo(function TableCell({ value, column, format, onClick }) {\n return (\n <td\n className={`\n px-4 py-3\n text-sm text-text-primary\n border-b border-border-default\n ${column.align === 'center' ? 'text-center' : ''}\n ${column.align === 'right' ? 'text-right' : 'text-left'}\n ${onClick ? 'cursor-pointer hover:text-action-primary-bg' : ''}\n `}\n onClick={onClick}\n role={onClick ? 'button' : undefined}\n tabIndex={onClick ? 0 : undefined}\n onKeyDown={(e) => {\n if (onClick && (e.key === 'Enter' || e.key === ' ')) {\n e.preventDefault();\n onClick();\n }\n }}\n >\n {formatValue(value, format)}\n </td>\n );\n});\n\nexport default TableCell;\n"],"mappings":";;;AA6CA,SAAS,EAAY,GAAgB,GAAsC;AACzE,KAAI,KAAU,KACZ,QAAO,kBAAC,QAAD;EAAM,WAAU;YAAsB;EAAQ,CAAA;AAKvD,SAFmB,GAAQ,QAAQ,QAEnC;EACE,KAAK,SACH,QAAO,OAAO,KAAU,WAAW,IAAI,KAAK,aAAa,QAAQ,CAAC,OAAO,EAAM,GAAG,OAAO,EAAM;EAEjG,KAAK,WACH,QAAO,OAAO,KAAU,WACpB,IAAI,KAAK,aAAa,SAAS;GAC7B,OAAO;GACP,UAAU,GAAQ,YAAY;GAC/B,CAAC,CAAC,OAAO,EAAM,GAChB,OAAO,EAAM;EAEnB,KAAK,aACH,QAAO,OAAO,KAAU,WAAW,IAAI,IAAQ,KAAK,QAAQ,EAAE,CAAC,KAAK,OAAO,EAAM;EAEnF,KAAK;AACH,OAAI,aAAiB,KACnB,QAAO,IAAI,KAAK,eAAe,SAAS,GAAQ,eAAe,EAAE,WAAW,UAAU,CAAC,CAAC,OAAO,EAAM;AAEvG,OAAI,OAAO,KAAU,YAAY,OAAO,KAAU,UAAU;IAC1D,IAAM,IAAO,IAAI,KAAK,EAAM;AAC5B,QAAI,CAAC,MAAM,EAAK,SAAS,CAAC,CACxB,QAAO,IAAI,KAAK,eAAe,SAAS,GAAQ,eAAe,EAAE,WAAW,UAAU,CAAC,CAAC,OAAO,EAAK;;AAGxG,UAAO,OAAO,EAAM;EAEtB,KAAK,SAAS;GACZ,IAAM,IAAc,OAAO,EAAM;AAEjC,UACE,kBAAC,QAAD;IACE,WAAW;;;;;cAHI,GAAQ,cAAc,MAAgB,gCAQtC;;cAGd;IACI,CAAA;;EAIX,KAAK,OACH,QAAO,kBAAC,QAAD;GAAM,WAAU;aAAyD,OAAO,EAAM;GAAQ,CAAA;EAGvG,QACE,QAAO,OAAO,EAAM;;;AAQ1B,IAAa,IAAgC,EAAK,SAAmB,EAAE,UAAO,WAAQ,WAAQ,cAAW;AACvG,QACE,kBAAC,MAAD;EACE,WAAW;;;;UAIP,EAAO,UAAU,WAAW,gBAAgB,GAAG;UAC/C,EAAO,UAAU,UAAU,eAAe,YAAY;UACtD,IAAU,gDAAgD,GAAG;;EAExD;EACT,MAAM,IAAU,WAAW,KAAA;EAC3B,UAAU,IAAU,IAAI,KAAA;EACxB,YAAY,MAAM;AAChB,GAAI,MAAY,EAAE,QAAQ,WAAW,EAAE,QAAQ,SAC7C,EAAE,gBAAgB,EAClB,GAAS;;YAIZ,EAAY,GAAO,EAAO;EACxB,CAAA;EAEP"}
@@ -0,0 +1,12 @@
1
+ import { FC } from 'react';
2
+ import { TableConfig as ConfigType } from '../../../types';
3
+
4
+ export interface TableConfigProps {
5
+ /** Current configuration */
6
+ config: ConfigType;
7
+ /** Callback when config changes */
8
+ onChange: (config: ConfigType) => void;
9
+ }
10
+ export declare const TableConfig: FC<TableConfigProps>;
11
+ export default TableConfig;
12
+ //# sourceMappingURL=TableConfig.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"TableConfig.d.ts","sourceRoot":"","sources":["../../../../../src/bigconsole/components/widgets/table/TableConfig.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EAAE,KAAK,EAAE,EAAmD,MAAM,OAAO,CAAC;AACjF,OAAO,KAAK,EAAE,WAAW,IAAI,UAAU,EAAqB,MAAM,gBAAgB,CAAC;AAMnF,MAAM,WAAW,gBAAgB;IAC/B,4BAA4B;IAC5B,MAAM,EAAE,UAAU,CAAC;IACnB,mCAAmC;IACnC,QAAQ,EAAE,CAAC,MAAM,EAAE,UAAU,KAAK,IAAI,CAAC;CACxC;AAMD,eAAO,MAAM,WAAW,EAAE,EAAE,CAAC,gBAAgB,CAwS3C,CAAC;AAEH,eAAe,WAAW,CAAC"}