@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 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/bigconsole/types/index.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,9 @@
1
+ /**
2
+ * BigConsole Utilities Index
3
+ *
4
+ * Exports utility functions for the BigConsole module.
5
+ */
6
+ export { SEMANTIC_COLORS, EVENT_STATUS_COLORS, COMPLEXITY_COLORS, ACTION_STYLE_COLORS, getCSSVariableValue, type SemanticColorKey, type EventStatusKey, type ComplexityKey, type ActionStyleKey, } from './semanticTokens';
7
+ export { mapToFederationWidgetType, mapFromFederationWidgetType, isFederationAccessible, normalizeWidgetTypeForApi, type FederationWidgetType, } from './widgetTypeMapping';
8
+ export { findNextAvailablePosition, findPositionNextToWidget, calculatePositionFromDrop, getResponsiveCols, adjustPositionsForCols, RESPONSIVE_BREAKPOINTS, RESPONSIVE_COLS, DEFAULT_GRID_CONFIG, type WidgetSize, type WidgetPosition, type GridConfig, } from './widgetPositioning';
9
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/bigconsole/utils/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,EACL,eAAe,EACf,mBAAmB,EACnB,iBAAiB,EACjB,mBAAmB,EACnB,mBAAmB,EACnB,KAAK,gBAAgB,EACrB,KAAK,cAAc,EACnB,KAAK,aAAa,EAClB,KAAK,cAAc,GACpB,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EACL,yBAAyB,EACzB,2BAA2B,EAC3B,sBAAsB,EACtB,yBAAyB,EACzB,KAAK,oBAAoB,GAC1B,MAAM,qBAAqB,CAAC;AAE7B,OAAO,EACL,yBAAyB,EACzB,wBAAwB,EACxB,yBAAyB,EACzB,iBAAiB,EACjB,sBAAsB,EACtB,sBAAsB,EACtB,eAAe,EACf,mBAAmB,EACnB,KAAK,UAAU,EACf,KAAK,cAAc,EACnB,KAAK,UAAU,GAChB,MAAM,qBAAqB,CAAC"}
@@ -0,0 +1,88 @@
1
+ /**
2
+ * Semantic Tokens
3
+ *
4
+ * Centralized color tokens for components that render via React portals.
5
+ * Portal-rendered components can't inherit CSS variables from the theme context,
6
+ * so they need explicit fallback values.
7
+ *
8
+ * These values should match the CSS variables defined in the theme.
9
+ */
10
+ /**
11
+ * Semantic color tokens for portal-rendered UI components.
12
+ * Use these when rendering via createPortal() to document.body.
13
+ */
14
+ export declare const SEMANTIC_COLORS: {
15
+ readonly bgPrimary: "var(--background)";
16
+ readonly bgSecondary: "var(--muted)";
17
+ readonly bgTertiary: "var(--accent)";
18
+ readonly bgSurface: "var(--card)";
19
+ readonly bgMuted: "var(--muted)";
20
+ readonly textPrimary: "var(--foreground)";
21
+ readonly textSecondary: "var(--muted-foreground)";
22
+ readonly textTertiary: "var(--muted-foreground)";
23
+ readonly textMuted: "var(--muted-foreground)";
24
+ readonly borderDefault: "var(--border)";
25
+ readonly borderMuted: "var(--border)";
26
+ readonly actionPrimaryBg: "var(--color-action-primary-bg, #6366f1)";
27
+ readonly actionPrimaryBgHover: "var(--color-action-primary-bgHover, #4f46e5)";
28
+ readonly actionPrimaryBgSubtle: "var(--color-action-primary-bg-subtle, #eef2ff)";
29
+ readonly actionPrimaryFg: "var(--color-action-primary-fg, #ffffff)";
30
+ readonly actionPrimaryText: "var(--color-action-primary-text, #6366f1)";
31
+ readonly actionPrimaryBorder: "var(--color-action-primary-border, #6366f1)";
32
+ readonly statusSuccessBg: "var(--color-status-success-bg, #22c55e)";
33
+ readonly statusSuccessBgSubtle: "var(--color-status-success-bgSubtle, #dcfce7)";
34
+ readonly statusSuccessText: "var(--color-status-success-text, #16a34a)";
35
+ readonly statusSuccessBorder: "var(--color-status-success-border, #22c55e)";
36
+ readonly statusErrorBg: "var(--color-status-error-bg, #ef4444)";
37
+ readonly statusErrorBgSubtle: "var(--color-status-error-bgSubtle, #fef2f2)";
38
+ readonly statusErrorText: "var(--color-status-error-text, #dc2626)";
39
+ readonly statusErrorBorder: "var(--color-status-error-border, #ef4444)";
40
+ readonly statusWarningBg: "var(--color-status-warning-bg, #f59e0b)";
41
+ readonly statusWarningBgSubtle: "var(--color-status-warning-bgSubtle, #fef3c7)";
42
+ readonly statusWarningText: "var(--color-status-warning-text, #d97706)";
43
+ readonly statusWarningBorder: "var(--color-status-warning-border, #f59e0b)";
44
+ readonly statusInfoBg: "var(--color-status-info-bg, #3b82f6)";
45
+ readonly statusInfoBgSubtle: "var(--color-status-info-bgSubtle, #dbeafe)";
46
+ readonly statusInfoText: "var(--color-status-info-text, #2563eb)";
47
+ readonly statusInfoBorder: "var(--color-status-info-border, #3b82f6)";
48
+ readonly backdropBg: "rgba(0, 0, 0, 0.5)";
49
+ };
50
+ /**
51
+ * Helper to get computed CSS variable value at runtime.
52
+ * Falls back to the provided default if the variable is not defined.
53
+ */
54
+ export declare function getCSSVariableValue(variable: string, fallback: string): string;
55
+ /**
56
+ * Event status colors for event logs and webhooks
57
+ */
58
+ export declare const EVENT_STATUS_COLORS: {
59
+ readonly PENDING: "var(--color-status-warning-bg, #f59e0b)";
60
+ readonly PROCESSING: "var(--color-status-info-bg, #3b82f6)";
61
+ readonly DELIVERED: "var(--color-status-success-bg, #10b981)";
62
+ readonly FAILED: "var(--color-status-error-bg, #ef4444)";
63
+ readonly RETRYING: "var(--color-chart-5, #8b5cf6)";
64
+ readonly IGNORED: "var(--muted-foreground, #6b7280)";
65
+ };
66
+ /**
67
+ * Template complexity colors
68
+ */
69
+ export declare const COMPLEXITY_COLORS: {
70
+ readonly BEGINNER: "var(--color-status-success-bg, #22c55e)";
71
+ readonly INTERMEDIATE: "var(--color-status-warning-bg, #f59e0b)";
72
+ readonly ADVANCED: "var(--color-status-error-bg, #ef4444)";
73
+ };
74
+ /**
75
+ * Widget action style colors (for button variants)
76
+ */
77
+ export declare const ACTION_STYLE_COLORS: {
78
+ readonly PRIMARY: "var(--color-action-primary-bg, #6366f1)";
79
+ readonly SECONDARY: "var(--muted-foreground, #6b7280)";
80
+ readonly SUCCESS: "var(--color-status-success-bg, #22c55e)";
81
+ readonly WARNING: "var(--color-status-warning-bg, #f59e0b)";
82
+ readonly DANGER: "var(--color-status-error-bg, #ef4444)";
83
+ };
84
+ export type SemanticColorKey = keyof typeof SEMANTIC_COLORS;
85
+ export type EventStatusKey = keyof typeof EVENT_STATUS_COLORS;
86
+ export type ComplexityKey = keyof typeof COMPLEXITY_COLORS;
87
+ export type ActionStyleKey = keyof typeof ACTION_STYLE_COLORS;
88
+ //# sourceMappingURL=semanticTokens.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"semanticTokens.d.ts","sourceRoot":"","sources":["../../../src/bigconsole/utils/semanticTokens.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH;;;GAGG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAoDlB,CAAC;AAEX;;;GAGG;AACH,wBAAgB,mBAAmB,CAAC,QAAQ,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,CAI9E;AAED;;GAEG;AACH,eAAO,MAAM,mBAAmB;;;;;;;CAOtB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,iBAAiB;;;;CAIpB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,mBAAmB;;;;;;CAMtB,CAAC;AAEX,MAAM,MAAM,gBAAgB,GAAG,MAAM,OAAO,eAAe,CAAC;AAC5D,MAAM,MAAM,cAAc,GAAG,MAAM,OAAO,mBAAmB,CAAC;AAC9D,MAAM,MAAM,aAAa,GAAG,MAAM,OAAO,iBAAiB,CAAC;AAC3D,MAAM,MAAM,cAAc,GAAG,MAAM,OAAO,mBAAmB,CAAC"}
@@ -0,0 +1,41 @@
1
+ //#region src/bigconsole/utils/semanticTokens.ts
2
+ var e = {
3
+ bgPrimary: "var(--background)",
4
+ bgSecondary: "var(--muted)",
5
+ bgTertiary: "var(--accent)",
6
+ bgSurface: "var(--card)",
7
+ bgMuted: "var(--muted)",
8
+ textPrimary: "var(--foreground)",
9
+ textSecondary: "var(--muted-foreground)",
10
+ textTertiary: "var(--muted-foreground)",
11
+ textMuted: "var(--muted-foreground)",
12
+ borderDefault: "var(--border)",
13
+ borderMuted: "var(--border)",
14
+ actionPrimaryBg: "var(--color-action-primary-bg, #6366f1)",
15
+ actionPrimaryBgHover: "var(--color-action-primary-bgHover, #4f46e5)",
16
+ actionPrimaryBgSubtle: "var(--color-action-primary-bg-subtle, #eef2ff)",
17
+ actionPrimaryFg: "var(--color-action-primary-fg, #ffffff)",
18
+ actionPrimaryText: "var(--color-action-primary-text, #6366f1)",
19
+ actionPrimaryBorder: "var(--color-action-primary-border, #6366f1)",
20
+ statusSuccessBg: "var(--color-status-success-bg, #22c55e)",
21
+ statusSuccessBgSubtle: "var(--color-status-success-bgSubtle, #dcfce7)",
22
+ statusSuccessText: "var(--color-status-success-text, #16a34a)",
23
+ statusSuccessBorder: "var(--color-status-success-border, #22c55e)",
24
+ statusErrorBg: "var(--color-status-error-bg, #ef4444)",
25
+ statusErrorBgSubtle: "var(--color-status-error-bgSubtle, #fef2f2)",
26
+ statusErrorText: "var(--color-status-error-text, #dc2626)",
27
+ statusErrorBorder: "var(--color-status-error-border, #ef4444)",
28
+ statusWarningBg: "var(--color-status-warning-bg, #f59e0b)",
29
+ statusWarningBgSubtle: "var(--color-status-warning-bgSubtle, #fef3c7)",
30
+ statusWarningText: "var(--color-status-warning-text, #d97706)",
31
+ statusWarningBorder: "var(--color-status-warning-border, #f59e0b)",
32
+ statusInfoBg: "var(--color-status-info-bg, #3b82f6)",
33
+ statusInfoBgSubtle: "var(--color-status-info-bgSubtle, #dbeafe)",
34
+ statusInfoText: "var(--color-status-info-text, #2563eb)",
35
+ statusInfoBorder: "var(--color-status-info-border, #3b82f6)",
36
+ backdropBg: "rgba(0, 0, 0, 0.5)"
37
+ };
38
+ //#endregion
39
+ export { e as SEMANTIC_COLORS };
40
+
41
+ //# sourceMappingURL=semanticTokens.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"semanticTokens.js","names":[],"sources":["../../../src/bigconsole/utils/semanticTokens.ts"],"sourcesContent":["/**\n * Semantic Tokens\n *\n * Centralized color tokens for components that render via React portals.\n * Portal-rendered components can't inherit CSS variables from the theme context,\n * so they need explicit fallback values.\n *\n * These values should match the CSS variables defined in the theme.\n */\n\n/**\n * Semantic color tokens for portal-rendered UI components.\n * Use these when rendering via createPortal() to document.body.\n */\nexport const SEMANTIC_COLORS = {\n // Background colors - using var() with oklch values from theme\n bgPrimary: 'var(--background)',\n bgSecondary: 'var(--muted)',\n bgTertiary: 'var(--accent)',\n bgSurface: 'var(--card)',\n bgMuted: 'var(--muted)',\n\n // Text colors\n textPrimary: 'var(--foreground)',\n textSecondary: 'var(--muted-foreground)',\n textTertiary: 'var(--muted-foreground)',\n textMuted: 'var(--muted-foreground)',\n\n // Border colors\n borderDefault: 'var(--border)',\n borderMuted: 'var(--border)',\n\n // Action colors - Primary (indigo/purple brand)\n actionPrimaryBg: 'var(--color-action-primary-bg, #6366f1)',\n actionPrimaryBgHover: 'var(--color-action-primary-bgHover, #4f46e5)',\n actionPrimaryBgSubtle: 'var(--color-action-primary-bg-subtle, #eef2ff)',\n actionPrimaryFg: 'var(--color-action-primary-fg, #ffffff)',\n actionPrimaryText: 'var(--color-action-primary-text, #6366f1)',\n actionPrimaryBorder: 'var(--color-action-primary-border, #6366f1)',\n\n // Status colors - Success (green)\n statusSuccessBg: 'var(--color-status-success-bg, #22c55e)',\n statusSuccessBgSubtle: 'var(--color-status-success-bgSubtle, #dcfce7)',\n statusSuccessText: 'var(--color-status-success-text, #16a34a)',\n statusSuccessBorder: 'var(--color-status-success-border, #22c55e)',\n\n // Status colors - Error/Danger (red)\n statusErrorBg: 'var(--color-status-error-bg, #ef4444)',\n statusErrorBgSubtle: 'var(--color-status-error-bgSubtle, #fef2f2)',\n statusErrorText: 'var(--color-status-error-text, #dc2626)',\n statusErrorBorder: 'var(--color-status-error-border, #ef4444)',\n\n // Status colors - Warning (amber)\n statusWarningBg: 'var(--color-status-warning-bg, #f59e0b)',\n statusWarningBgSubtle: 'var(--color-status-warning-bgSubtle, #fef3c7)',\n statusWarningText: 'var(--color-status-warning-text, #d97706)',\n statusWarningBorder: 'var(--color-status-warning-border, #f59e0b)',\n\n // Status colors - Info (blue)\n statusInfoBg: 'var(--color-status-info-bg, #3b82f6)',\n statusInfoBgSubtle: 'var(--color-status-info-bgSubtle, #dbeafe)',\n statusInfoText: 'var(--color-status-info-text, #2563eb)',\n statusInfoBorder: 'var(--color-status-info-border, #3b82f6)',\n\n // Overlay/backdrop\n backdropBg: 'rgba(0, 0, 0, 0.5)',\n} as const;\n\n/**\n * Helper to get computed CSS variable value at runtime.\n * Falls back to the provided default if the variable is not defined.\n */\nexport function getCSSVariableValue(variable: string, fallback: string): string {\n if (typeof window === 'undefined') return fallback;\n const value = getComputedStyle(document.documentElement).getPropertyValue(variable).trim();\n return value || fallback;\n}\n\n/**\n * Event status colors for event logs and webhooks\n */\nexport const EVENT_STATUS_COLORS = {\n PENDING: 'var(--color-status-warning-bg, #f59e0b)',\n PROCESSING: 'var(--color-status-info-bg, #3b82f6)',\n DELIVERED: 'var(--color-status-success-bg, #10b981)',\n FAILED: 'var(--color-status-error-bg, #ef4444)',\n RETRYING: 'var(--color-chart-5, #8b5cf6)',\n IGNORED: 'var(--muted-foreground, #6b7280)',\n} as const;\n\n/**\n * Template complexity colors\n */\nexport const COMPLEXITY_COLORS = {\n BEGINNER: 'var(--color-status-success-bg, #22c55e)',\n INTERMEDIATE: 'var(--color-status-warning-bg, #f59e0b)',\n ADVANCED: 'var(--color-status-error-bg, #ef4444)',\n} as const;\n\n/**\n * Widget action style colors (for button variants)\n */\nexport const ACTION_STYLE_COLORS = {\n PRIMARY: 'var(--color-action-primary-bg, #6366f1)',\n SECONDARY: 'var(--muted-foreground, #6b7280)',\n SUCCESS: 'var(--color-status-success-bg, #22c55e)',\n WARNING: 'var(--color-status-warning-bg, #f59e0b)',\n DANGER: 'var(--color-status-error-bg, #ef4444)',\n} as const;\n\nexport type SemanticColorKey = keyof typeof SEMANTIC_COLORS;\nexport type EventStatusKey = keyof typeof EVENT_STATUS_COLORS;\nexport type ComplexityKey = keyof typeof COMPLEXITY_COLORS;\nexport type ActionStyleKey = keyof typeof ACTION_STYLE_COLORS;\n"],"mappings":";AAcA,IAAa,IAAkB;CAE7B,WAAW;CACX,aAAa;CACb,YAAY;CACZ,WAAW;CACX,SAAS;CAGT,aAAa;CACb,eAAe;CACf,cAAc;CACd,WAAW;CAGX,eAAe;CACf,aAAa;CAGb,iBAAiB;CACjB,sBAAsB;CACtB,uBAAuB;CACvB,iBAAiB;CACjB,mBAAmB;CACnB,qBAAqB;CAGrB,iBAAiB;CACjB,uBAAuB;CACvB,mBAAmB;CACnB,qBAAqB;CAGrB,eAAe;CACf,qBAAqB;CACrB,iBAAiB;CACjB,mBAAmB;CAGnB,iBAAiB;CACjB,uBAAuB;CACvB,mBAAmB;CACnB,qBAAqB;CAGrB,cAAc;CACd,oBAAoB;CACpB,gBAAgB;CAChB,kBAAkB;CAGlB,YAAY;CACb"}
@@ -0,0 +1,81 @@
1
+ import { Widget } from '../types';
2
+
3
+ export interface WidgetSize {
4
+ width: number;
5
+ height: number;
6
+ }
7
+ export interface WidgetPosition {
8
+ x: number;
9
+ y: number;
10
+ width: number;
11
+ height: number;
12
+ }
13
+ export interface GridConfig {
14
+ cols: number;
15
+ maxRows?: number;
16
+ }
17
+ /**
18
+ * Default grid configuration
19
+ */
20
+ export declare const DEFAULT_GRID_CONFIG: GridConfig;
21
+ /**
22
+ * Responsive breakpoints configuration
23
+ */
24
+ export declare const RESPONSIVE_BREAKPOINTS: {
25
+ readonly lg: 1200;
26
+ readonly md: 996;
27
+ readonly sm: 768;
28
+ readonly xs: 480;
29
+ };
30
+ /**
31
+ * Columns per breakpoint for responsive layout
32
+ */
33
+ export declare const RESPONSIVE_COLS: {
34
+ readonly lg: 12;
35
+ readonly md: 10;
36
+ readonly sm: 6;
37
+ readonly xs: 4;
38
+ };
39
+ /**
40
+ * Finds the next available position for a widget using smart placement.
41
+ * Scans row-by-row, left-to-right to find the first slot that fits.
42
+ *
43
+ * @param existingWidgets - Array of existing widgets on the dashboard
44
+ * @param newWidgetSize - Size of the new widget to place
45
+ * @param config - Grid configuration (columns, max rows)
46
+ * @returns Position where the new widget should be placed
47
+ */
48
+ export declare function findNextAvailablePosition(existingWidgets: Widget[], newWidgetSize: WidgetSize, config?: GridConfig): {
49
+ x: number;
50
+ y: number;
51
+ };
52
+ /**
53
+ * Finds position to the right of a specific widget
54
+ * Falls back to smart placement if no space to the right
55
+ */
56
+ export declare function findPositionNextToWidget(existingWidgets: Widget[], referenceWidgetId: string, newWidgetSize: WidgetSize, config?: GridConfig): {
57
+ x: number;
58
+ y: number;
59
+ };
60
+ /**
61
+ * Calculates position from drop coordinates (for drag-and-drop)
62
+ */
63
+ export declare function calculatePositionFromDrop(dropX: number, dropY: number, canvasRect: DOMRect, containerWidth: number, widgetSize: WidgetSize, config?: GridConfig): {
64
+ x: number;
65
+ y: number;
66
+ };
67
+ /**
68
+ * Gets responsive columns for a given container width
69
+ */
70
+ export declare function getResponsiveCols(containerWidth: number): number;
71
+ /**
72
+ * Adjusts widget positions for a new column count (responsive)
73
+ * Ensures widgets don't overflow the grid
74
+ */
75
+ export declare function adjustPositionsForCols(widgets: Widget[], newCols: number): Map<string, {
76
+ x: number;
77
+ y: number;
78
+ width: number;
79
+ height: number;
80
+ }>;
81
+ //# sourceMappingURL=widgetPositioning.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"widgetPositioning.d.ts","sourceRoot":"","sources":["../../../src/bigconsole/utils/widgetPositioning.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,UAAU,CAAC;AAEvC,MAAM,WAAW,UAAU;IACzB,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,cAAc;IAC7B,CAAC,EAAE,MAAM,CAAC;IACV,CAAC,EAAE,MAAM,CAAC;IACV,KAAK,EAAE,MAAM,CAAC;IACd,MAAM,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,UAAU;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,OAAO,CAAC,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,eAAO,MAAM,mBAAmB,EAAE,UAGjC,CAAC;AAEF;;GAEG;AACH,eAAO,MAAM,sBAAsB;;;;;CAKzB,CAAC;AAEX;;GAEG;AACH,eAAO,MAAM,eAAe;;;;;CAKlB,CAAC;AAqDX;;;;;;;;GAQG;AACH,wBAAgB,yBAAyB,CACvC,eAAe,EAAE,MAAM,EAAE,EACzB,aAAa,EAAE,UAAU,EACzB,MAAM,GAAE,UAAgC,GACvC;IAAE,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,EAAE,MAAM,CAAA;CAAE,CA0B1B;AAED;;;GAGG;AACH,wBAAgB,wBAAwB,CACtC,eAAe,EAAE,MAAM,EAAE,EACzB,iBAAiB,EAAE,MAAM,EACzB,aAAa,EAAE,UAAU,EACzB,MAAM,GAAE,UAAgC,GACvC;IAAE,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,EAAE,MAAM,CAAA;CAAE,CA2B1B;AAED;;GAEG;AACH,wBAAgB,yBAAyB,CACvC,KAAK,EAAE,MAAM,EACb,KAAK,EAAE,MAAM,EACb,UAAU,EAAE,OAAO,EACnB,cAAc,EAAE,MAAM,EACtB,UAAU,EAAE,UAAU,EACtB,MAAM,GAAE,UAAgC,GACvC;IAAE,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,EAAE,MAAM,CAAA;CAAE,CAY1B;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,cAAc,EAAE,MAAM,GAAG,MAAM,CAWhE;AAED;;;GAGG;AACH,wBAAgB,sBAAsB,CACpC,OAAO,EAAE,MAAM,EAAE,EACjB,OAAO,EAAE,MAAM,GACd,GAAG,CAAC,MAAM,EAAE;IAAE,CAAC,EAAE,MAAM,CAAC;IAAC,CAAC,EAAE,MAAM,CAAC;IAAC,KAAK,EAAE,MAAM,CAAC;IAAC,MAAM,EAAE,MAAM,CAAA;CAAE,CAAC,CAgDtE"}
@@ -0,0 +1,44 @@
1
+ //#region src/bigconsole/utils/widgetPositioning.ts
2
+ var e = {
3
+ cols: 12,
4
+ maxRows: 100
5
+ };
6
+ function t(e) {
7
+ let t = /* @__PURE__ */ new Map();
8
+ return e.forEach((e) => {
9
+ let n = e.positionX ?? 0, r = e.positionY ?? 0, i = e.positionWidth ?? 4, a = e.positionHeight ?? 4;
10
+ for (let o = 0; o < i; o++) for (let i = 0; i < a; i++) t.set(`${n + o},${r + i}`, e.id);
11
+ }), t;
12
+ }
13
+ function n(e, t, n, r, i, a) {
14
+ if (t + r > a) return !1;
15
+ for (let a = 0; a < r; a++) for (let r = 0; r < i; r++) if (e.has(`${t + a},${n + r}`)) return !1;
16
+ return !0;
17
+ }
18
+ function r(r, i, a = e) {
19
+ let { cols: o, maxRows: s = 100 } = a, { width: c, height: l } = i;
20
+ if (r.length === 0) return {
21
+ x: 0,
22
+ y: 0
23
+ };
24
+ let u = t(r), d = Math.max(...r.map((e) => (e.positionY ?? 0) + (e.positionHeight ?? 4)));
25
+ for (let e = 0; e <= d + l && e < s; e++) for (let t = 0; t <= o - c; t++) if (n(u, t, e, c, l, o)) return {
26
+ x: t,
27
+ y: e
28
+ };
29
+ return {
30
+ x: 0,
31
+ y: d
32
+ };
33
+ }
34
+ function i(t, n, r, i, a, o = e) {
35
+ let { cols: s } = o, c = i / s, l = t - r.left, u = n - r.top;
36
+ return {
37
+ x: Math.max(0, Math.min(s - a.width, Math.floor(l / c))),
38
+ y: Math.max(0, Math.floor(u / 60))
39
+ };
40
+ }
41
+ //#endregion
42
+ export { i as calculatePositionFromDrop, r as findNextAvailablePosition };
43
+
44
+ //# sourceMappingURL=widgetPositioning.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"widgetPositioning.js","names":[],"sources":["../../../src/bigconsole/utils/widgetPositioning.ts"],"sourcesContent":["/**\n * Widget Positioning Utilities\n *\n * Smart placement algorithm for dashboard widgets.\n * Places widgets horizontally first (left-to-right), then moves to next row.\n * Uses a grid occupancy map to find the first available slot.\n */\n\nimport type { Widget } from '../types';\n\nexport interface WidgetSize {\n width: number;\n height: number;\n}\n\nexport interface WidgetPosition {\n x: number;\n y: number;\n width: number;\n height: number;\n}\n\nexport interface GridConfig {\n cols: number;\n maxRows?: number;\n}\n\n/**\n * Default grid configuration\n */\nexport const DEFAULT_GRID_CONFIG: GridConfig = {\n cols: 12,\n maxRows: 100,\n};\n\n/**\n * Responsive breakpoints configuration\n */\nexport const RESPONSIVE_BREAKPOINTS = {\n lg: 1200,\n md: 996,\n sm: 768,\n xs: 480,\n} as const;\n\n/**\n * Columns per breakpoint for responsive layout\n */\nexport const RESPONSIVE_COLS = {\n lg: 12,\n md: 10,\n sm: 6,\n xs: 4,\n} as const;\n\n/**\n * Creates an occupancy map from existing widgets\n * Each occupied cell is marked with the widget ID\n */\nfunction createOccupancyMap(widgets: Widget[]): Map<string, string> {\n const occupancyMap = new Map<string, string>();\n\n widgets.forEach((widget) => {\n const x = widget.positionX ?? 0;\n const y = widget.positionY ?? 0;\n const w = widget.positionWidth ?? 4;\n const h = widget.positionHeight ?? 4;\n\n for (let dx = 0; dx < w; dx++) {\n for (let dy = 0; dy < h; dy++) {\n occupancyMap.set(`${x + dx},${y + dy}`, widget.id);\n }\n }\n });\n\n return occupancyMap;\n}\n\n/**\n * Checks if a widget can be placed at the given position\n */\nfunction canPlaceWidget(\n occupancyMap: Map<string, string>,\n x: number,\n y: number,\n width: number,\n height: number,\n cols: number\n): boolean {\n // Check if widget fits within grid columns\n if (x + width > cols) {\n return false;\n }\n\n // Check if all required cells are available\n for (let dx = 0; dx < width; dx++) {\n for (let dy = 0; dy < height; dy++) {\n if (occupancyMap.has(`${x + dx},${y + dy}`)) {\n return false;\n }\n }\n }\n\n return true;\n}\n\n/**\n * Finds the next available position for a widget using smart placement.\n * Scans row-by-row, left-to-right to find the first slot that fits.\n *\n * @param existingWidgets - Array of existing widgets on the dashboard\n * @param newWidgetSize - Size of the new widget to place\n * @param config - Grid configuration (columns, max rows)\n * @returns Position where the new widget should be placed\n */\nexport function findNextAvailablePosition(\n existingWidgets: Widget[],\n newWidgetSize: WidgetSize,\n config: GridConfig = DEFAULT_GRID_CONFIG\n): { x: number; y: number } {\n const { cols, maxRows = 100 } = config;\n const { width, height } = newWidgetSize;\n\n // Handle empty dashboard - place at origin\n if (existingWidgets.length === 0) {\n return { x: 0, y: 0 };\n }\n\n // Create occupancy map\n const occupancyMap = createOccupancyMap(existingWidgets);\n\n // Find the maximum Y to limit our search\n const maxExistingY = Math.max(...existingWidgets.map((w) => (w.positionY ?? 0) + (w.positionHeight ?? 4)));\n\n // Scan row by row, left to right, to find first available slot\n for (let y = 0; y <= maxExistingY + height && y < maxRows; y++) {\n for (let x = 0; x <= cols - width; x++) {\n if (canPlaceWidget(occupancyMap, x, y, width, height, cols)) {\n return { x, y };\n }\n }\n }\n\n // Fallback: place at the bottom of existing widgets\n return { x: 0, y: maxExistingY };\n}\n\n/**\n * Finds position to the right of a specific widget\n * Falls back to smart placement if no space to the right\n */\nexport function findPositionNextToWidget(\n existingWidgets: Widget[],\n referenceWidgetId: string,\n newWidgetSize: WidgetSize,\n config: GridConfig = DEFAULT_GRID_CONFIG\n): { x: number; y: number } {\n const { cols } = config;\n const referenceWidget = existingWidgets.find((w) => w.id === referenceWidgetId);\n\n if (!referenceWidget) {\n return findNextAvailablePosition(existingWidgets, newWidgetSize, config);\n }\n\n const refX = referenceWidget.positionX ?? 0;\n const refY = referenceWidget.positionY ?? 0;\n const refW = referenceWidget.positionWidth ?? 4;\n\n // Try to place to the right of reference widget\n const newX = refX + refW;\n const newY = refY;\n\n // Check if it fits\n if (newX + newWidgetSize.width <= cols) {\n const occupancyMap = createOccupancyMap(existingWidgets.filter((w) => w.id !== referenceWidgetId));\n\n if (canPlaceWidget(occupancyMap, newX, newY, newWidgetSize.width, newWidgetSize.height, cols)) {\n return { x: newX, y: newY };\n }\n }\n\n // Fall back to smart placement\n return findNextAvailablePosition(existingWidgets, newWidgetSize, config);\n}\n\n/**\n * Calculates position from drop coordinates (for drag-and-drop)\n */\nexport function calculatePositionFromDrop(\n dropX: number,\n dropY: number,\n canvasRect: DOMRect,\n containerWidth: number,\n widgetSize: WidgetSize,\n config: GridConfig = DEFAULT_GRID_CONFIG\n): { x: number; y: number } {\n const { cols } = config;\n const columnWidth = containerWidth / cols;\n const rowHeight = 60; // Match DashboardGrid rowHeight\n\n const relativeX = dropX - canvasRect.left;\n const relativeY = dropY - canvasRect.top;\n\n const gridX = Math.max(0, Math.min(cols - widgetSize.width, Math.floor(relativeX / columnWidth)));\n const gridY = Math.max(0, Math.floor(relativeY / rowHeight));\n\n return { x: gridX, y: gridY };\n}\n\n/**\n * Gets responsive columns for a given container width\n */\nexport function getResponsiveCols(containerWidth: number): number {\n if (containerWidth >= RESPONSIVE_BREAKPOINTS.lg) {\n return RESPONSIVE_COLS.lg;\n }\n if (containerWidth >= RESPONSIVE_BREAKPOINTS.md) {\n return RESPONSIVE_COLS.md;\n }\n if (containerWidth >= RESPONSIVE_BREAKPOINTS.sm) {\n return RESPONSIVE_COLS.sm;\n }\n return RESPONSIVE_COLS.xs;\n}\n\n/**\n * Adjusts widget positions for a new column count (responsive)\n * Ensures widgets don't overflow the grid\n */\nexport function adjustPositionsForCols(\n widgets: Widget[],\n newCols: number\n): Map<string, { x: number; y: number; width: number; height: number }> {\n const adjustedPositions = new Map<string, { x: number; y: number; width: number; height: number }>();\n\n // Sort widgets by their original position (top-left first)\n const sortedWidgets = [...widgets].sort((a, b) => {\n const aY = a.positionY ?? 0;\n const bY = b.positionY ?? 0;\n const aX = a.positionX ?? 0;\n const bX = b.positionX ?? 0;\n return aY !== bY ? aY - bY : aX - bX;\n });\n\n // Recalculate positions for the new column count\n const occupancyMap = new Map<string, string>();\n\n sortedWidgets.forEach((widget) => {\n const width = Math.min(widget.positionWidth ?? 4, newCols);\n const height = widget.positionHeight ?? 4;\n\n // Find next available position\n let placed = false;\n for (let y = 0; y < 100 && !placed; y++) {\n for (let x = 0; x <= newCols - width && !placed; x++) {\n let canPlace = true;\n for (let dx = 0; dx < width && canPlace; dx++) {\n for (let dy = 0; dy < height && canPlace; dy++) {\n if (occupancyMap.has(`${x + dx},${y + dy}`)) {\n canPlace = false;\n }\n }\n }\n\n if (canPlace) {\n // Mark cells as occupied\n for (let dx = 0; dx < width; dx++) {\n for (let dy = 0; dy < height; dy++) {\n occupancyMap.set(`${x + dx},${y + dy}`, widget.id);\n }\n }\n\n adjustedPositions.set(widget.id, { x, y, width, height });\n placed = true;\n }\n }\n }\n });\n\n return adjustedPositions;\n}\n"],"mappings":";AA8BA,IAAa,IAAkC;CAC7C,MAAM;CACN,SAAS;CACV;AA0BD,SAAS,EAAmB,GAAwC;CAClE,IAAM,oBAAe,IAAI,KAAqB;AAe9C,QAbA,EAAQ,SAAS,MAAW;EAC1B,IAAM,IAAI,EAAO,aAAa,GACxB,IAAI,EAAO,aAAa,GACxB,IAAI,EAAO,iBAAiB,GAC5B,IAAI,EAAO,kBAAkB;AAEnC,OAAK,IAAI,IAAK,GAAG,IAAK,GAAG,IACvB,MAAK,IAAI,IAAK,GAAG,IAAK,GAAG,IACvB,GAAa,IAAI,GAAG,IAAI,EAAG,GAAG,IAAI,KAAM,EAAO,GAAG;GAGtD,EAEK;;AAMT,SAAS,EACP,GACA,GACA,GACA,GACA,GACA,GACS;AAET,KAAI,IAAI,IAAQ,EACd,QAAO;AAIT,MAAK,IAAI,IAAK,GAAG,IAAK,GAAO,IAC3B,MAAK,IAAI,IAAK,GAAG,IAAK,GAAQ,IAC5B,KAAI,EAAa,IAAI,GAAG,IAAI,EAAG,GAAG,IAAI,IAAK,CACzC,QAAO;AAKb,QAAO;;AAYT,SAAgB,EACd,GACA,GACA,IAAqB,GACK;CAC1B,IAAM,EAAE,SAAM,aAAU,QAAQ,GAC1B,EAAE,UAAO,cAAW;AAG1B,KAAI,EAAgB,WAAW,EAC7B,QAAO;EAAE,GAAG;EAAG,GAAG;EAAG;CAIvB,IAAM,IAAe,EAAmB,EAAgB,EAGlD,IAAe,KAAK,IAAI,GAAG,EAAgB,KAAK,OAAO,EAAE,aAAa,MAAM,EAAE,kBAAkB,GAAG,CAAC;AAG1G,MAAK,IAAI,IAAI,GAAG,KAAK,IAAe,KAAU,IAAI,GAAS,IACzD,MAAK,IAAI,IAAI,GAAG,KAAK,IAAO,GAAO,IACjC,KAAI,EAAe,GAAc,GAAG,GAAG,GAAO,GAAQ,EAAK,CACzD,QAAO;EAAE;EAAG;EAAG;AAMrB,QAAO;EAAE,GAAG;EAAG,GAAG;EAAc;;AA4ClC,SAAgB,EACd,GACA,GACA,GACA,GACA,GACA,IAAqB,GACK;CAC1B,IAAM,EAAE,YAAS,GACX,IAAc,IAAiB,GAG/B,IAAY,IAAQ,EAAW,MAC/B,IAAY,IAAQ,EAAW;AAKrC,QAAO;EAAE,GAHK,KAAK,IAAI,GAAG,KAAK,IAAI,IAAO,EAAW,OAAO,KAAK,MAAM,IAAY,EAAY,CAAC,CAAC;EAG9E,GAFL,KAAK,IAAI,GAAG,KAAK,MAAM,IAAY,GAAU,CAAC;EAE/B"}
@@ -0,0 +1,34 @@
1
+ import { WidgetType as InternalWidgetType } from '../types';
2
+
3
+ export type FederationWidgetType = 'AREA_CHART' | 'BAR_CHART' | 'FUNNEL' | 'HEATMAP' | 'KPI' | 'LINE_CHART' | 'PIE_CHART' | 'RETENTION' | 'TABLE';
4
+ /**
5
+ * Maps internal UI widget types to federation-accessible GraphQL enum values.
6
+ *
7
+ * This mapping is necessary because:
8
+ * 1. The UI uses snake_case widget types (e.g., 'kpi_card_comparison', 'metric_card')
9
+ * 2. The BigConsole GraphQL schema defines many widget types
10
+ * 3. But only some are exposed via federation (@inaccessible hides the rest)
11
+ * 4. When creating/updating widgets through the gateway, we must use accessible values
12
+ */
13
+ export declare function mapToFederationWidgetType(internalType: InternalWidgetType): FederationWidgetType;
14
+ /**
15
+ * Maps federation GraphQL enum values back to internal UI widget types.
16
+ * Used when receiving data from the API.
17
+ *
18
+ * Note: This is a best-effort reverse mapping since multiple internal types
19
+ * may map to the same federation type. The actual internal type should be
20
+ * stored in widget metadata/config if precise type preservation is needed.
21
+ */
22
+ export declare function mapFromFederationWidgetType(federationType: string): InternalWidgetType;
23
+ /**
24
+ * Checks if a widget type is directly accessible via federation.
25
+ * If true, it can be used as-is in GraphQL mutations through the gateway.
26
+ */
27
+ export declare function isFederationAccessible(type: string): boolean;
28
+ /**
29
+ * Normalizes a widget type for API calls.
30
+ * If the type is already federation-accessible, returns it uppercase.
31
+ * Otherwise, maps it to the closest federation-accessible type.
32
+ */
33
+ export declare function normalizeWidgetTypeForApi(type: string): FederationWidgetType;
34
+ //# sourceMappingURL=widgetTypeMapping.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"widgetTypeMapping.d.ts","sourceRoot":"","sources":["../../../src/bigconsole/utils/widgetTypeMapping.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH,OAAO,KAAK,EAAE,UAAU,IAAI,kBAAkB,EAAE,MAAM,UAAU,CAAC;AAGjE,MAAM,MAAM,oBAAoB,GAC5B,YAAY,GACZ,WAAW,GACX,QAAQ,GACR,SAAS,GACT,KAAK,GACL,YAAY,GACZ,WAAW,GACX,WAAW,GACX,OAAO,CAAC;AAEZ;;;;;;;;GAQG;AACH,wBAAgB,yBAAyB,CAAC,YAAY,EAAE,kBAAkB,GAAG,oBAAoB,CAwChG;AAED;;;;;;;GAOG;AACH,wBAAgB,2BAA2B,CAAC,cAAc,EAAE,MAAM,GAAG,kBAAkB,CAiBtF;AAED;;;GAGG;AACH,wBAAgB,sBAAsB,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAc5D;AAED;;;;GAIG;AACH,wBAAgB,yBAAyB,CAAC,IAAI,EAAE,MAAM,GAAG,oBAAoB,CAQ5E"}
@@ -0,0 +1,56 @@
1
+ //#region src/bigconsole/utils/widgetTypeMapping.ts
2
+ function e(e) {
3
+ return {
4
+ kpi_card_comparison: "KPI",
5
+ metric_card: "KPI",
6
+ chart: "LINE_CHART",
7
+ funnel_chart: "FUNNEL",
8
+ table: "TABLE",
9
+ pivot_table: "TABLE",
10
+ gauge: "KPI",
11
+ progress: "KPI",
12
+ list: "TABLE",
13
+ form: "TABLE",
14
+ text: "KPI",
15
+ iframe: "KPI",
16
+ map: "HEATMAP",
17
+ heatmap: "HEATMAP",
18
+ calendar: "TABLE",
19
+ kanban: "TABLE",
20
+ timeline: "TABLE",
21
+ custom: "KPI"
22
+ }[e] || "KPI";
23
+ }
24
+ function t(e) {
25
+ return {
26
+ KPI: "kpi_card_comparison",
27
+ LINE_CHART: "chart",
28
+ BAR_CHART: "chart",
29
+ AREA_CHART: "chart",
30
+ PIE_CHART: "chart",
31
+ TABLE: "table",
32
+ FUNNEL: "funnel_chart",
33
+ HEATMAP: "heatmap",
34
+ RETENTION: "table"
35
+ }[e.toUpperCase()] || "metric_card";
36
+ }
37
+ function n(e) {
38
+ return new Set([
39
+ "AREA_CHART",
40
+ "BAR_CHART",
41
+ "FUNNEL",
42
+ "HEATMAP",
43
+ "KPI",
44
+ "LINE_CHART",
45
+ "PIE_CHART",
46
+ "RETENTION",
47
+ "TABLE"
48
+ ]).has(e.toUpperCase());
49
+ }
50
+ function r(t) {
51
+ return n(t) ? t.toUpperCase() : e(t);
52
+ }
53
+ //#endregion
54
+ export { t as mapFromFederationWidgetType, r as normalizeWidgetTypeForApi };
55
+
56
+ //# sourceMappingURL=widgetTypeMapping.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"widgetTypeMapping.js","names":[],"sources":["../../../src/bigconsole/utils/widgetTypeMapping.ts"],"sourcesContent":["/**\n * Widget Type Mapping Utilities\n *\n * Maps internal UI widget types (snake_case) to federation-accessible GraphQL enum values (UPPER_CASE).\n * The supergraph only exposes certain WidgetType values - other values are marked @inaccessible.\n *\n * Federation-accessible values: AREA_CHART, BAR_CHART, FUNNEL, HEATMAP, KPI, LINE_CHART, PIE_CHART, RETENTION, TABLE\n */\n\nimport type { WidgetType as InternalWidgetType } from '../types';\n\n// Federation-accessible WidgetType enum values\nexport type FederationWidgetType =\n | 'AREA_CHART'\n | 'BAR_CHART'\n | 'FUNNEL'\n | 'HEATMAP'\n | 'KPI'\n | 'LINE_CHART'\n | 'PIE_CHART'\n | 'RETENTION'\n | 'TABLE';\n\n/**\n * Maps internal UI widget types to federation-accessible GraphQL enum values.\n *\n * This mapping is necessary because:\n * 1. The UI uses snake_case widget types (e.g., 'kpi_card_comparison', 'metric_card')\n * 2. The BigConsole GraphQL schema defines many widget types\n * 3. But only some are exposed via federation (@inaccessible hides the rest)\n * 4. When creating/updating widgets through the gateway, we must use accessible values\n */\nexport function mapToFederationWidgetType(internalType: InternalWidgetType): FederationWidgetType {\n const mapping: Record<InternalWidgetType, FederationWidgetType> = {\n // KPI/Metric types -> KPI\n kpi_card_comparison: 'KPI',\n metric_card: 'KPI',\n\n // Chart types -> appropriate chart enum\n chart: 'LINE_CHART',\n funnel_chart: 'FUNNEL',\n\n // Direct mappings (already federation-accessible when uppercase)\n table: 'TABLE',\n pivot_table: 'TABLE',\n\n // Gauge and progress -> KPI (closest match)\n gauge: 'KPI',\n progress: 'KPI',\n\n // List -> TABLE\n list: 'TABLE',\n\n // Form -> TABLE (data display fallback)\n form: 'TABLE',\n\n // Text/iframe -> KPI (content display fallback)\n text: 'KPI',\n iframe: 'KPI',\n\n // Spatial/temporal types\n map: 'HEATMAP',\n heatmap: 'HEATMAP',\n calendar: 'TABLE',\n kanban: 'TABLE',\n timeline: 'TABLE',\n\n // Custom -> KPI (generic fallback)\n custom: 'KPI',\n };\n\n return mapping[internalType] || 'KPI';\n}\n\n/**\n * Maps federation GraphQL enum values back to internal UI widget types.\n * Used when receiving data from the API.\n *\n * Note: This is a best-effort reverse mapping since multiple internal types\n * may map to the same federation type. The actual internal type should be\n * stored in widget metadata/config if precise type preservation is needed.\n */\nexport function mapFromFederationWidgetType(federationType: string): InternalWidgetType {\n // Normalize to uppercase for comparison\n const normalizedType = federationType.toUpperCase();\n\n const reverseMapping: Record<string, InternalWidgetType> = {\n KPI: 'kpi_card_comparison',\n LINE_CHART: 'chart',\n BAR_CHART: 'chart',\n AREA_CHART: 'chart',\n PIE_CHART: 'chart',\n TABLE: 'table',\n FUNNEL: 'funnel_chart',\n HEATMAP: 'heatmap',\n RETENTION: 'table',\n };\n\n return reverseMapping[normalizedType] || 'metric_card';\n}\n\n/**\n * Checks if a widget type is directly accessible via federation.\n * If true, it can be used as-is in GraphQL mutations through the gateway.\n */\nexport function isFederationAccessible(type: string): boolean {\n const accessibleTypes = new Set([\n 'AREA_CHART',\n 'BAR_CHART',\n 'FUNNEL',\n 'HEATMAP',\n 'KPI',\n 'LINE_CHART',\n 'PIE_CHART',\n 'RETENTION',\n 'TABLE',\n ]);\n\n return accessibleTypes.has(type.toUpperCase());\n}\n\n/**\n * Normalizes a widget type for API calls.\n * If the type is already federation-accessible, returns it uppercase.\n * Otherwise, maps it to the closest federation-accessible type.\n */\nexport function normalizeWidgetTypeForApi(type: string): FederationWidgetType {\n // Check if already a federation type (case-insensitive)\n if (isFederationAccessible(type)) {\n return type.toUpperCase() as FederationWidgetType;\n }\n\n // Otherwise, map from internal type\n return mapToFederationWidgetType(type as InternalWidgetType);\n}\n"],"mappings":";AAgCA,SAAgB,EAA0B,GAAwD;AAuChG,QAtCkE;EAEhE,qBAAqB;EACrB,aAAa;EAGb,OAAO;EACP,cAAc;EAGd,OAAO;EACP,aAAa;EAGb,OAAO;EACP,UAAU;EAGV,MAAM;EAGN,MAAM;EAGN,MAAM;EACN,QAAQ;EAGR,KAAK;EACL,SAAS;EACT,UAAU;EACV,QAAQ;EACR,UAAU;EAGV,QAAQ;EACT,CAEc,MAAiB;;AAWlC,SAAgB,EAA4B,GAA4C;AAgBtF,QAZ2D;EACzD,KAAK;EACL,YAAY;EACZ,WAAW;EACX,YAAY;EACZ,WAAW;EACX,OAAO;EACP,QAAQ;EACR,SAAS;EACT,WAAW;EACZ,CAZsB,EAAe,aAAa,KAcV;;AAO3C,SAAgB,EAAuB,GAAuB;AAa5D,QAZwB,IAAI,IAAI;EAC9B;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACA;EACD,CAAC,CAEqB,IAAI,EAAK,aAAa,CAAC;;AAQhD,SAAgB,EAA0B,GAAoC;AAO5E,QALI,EAAuB,EAAK,GACvB,EAAK,aAAa,GAIpB,EAA0B,EAA2B"}
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=global-operations.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"global-operations.d.ts","sourceRoot":"","sources":["../../src/generated/global-operations.ts"],"names":[],"mappings":""}