@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,402 @@
1
+ import e from "../../hooks/useImportDataSink.js";
2
+ import "../../hooks/index.js";
3
+ import { memo as t, useCallback as n, useEffect as r, useRef as i, useState as a } from "react";
4
+ import { ArrowLeft as o, Check as s, FileJson as c, Info as l, RefreshCw as u, Upload as d, XCircle as f } from "lucide-react";
5
+ import { Fragment as p, jsx as m, jsxs as h } from "react/jsx-runtime";
6
+ import { Badge as g, Button as _, Card as v, CardContent as y, Dialog as b, DialogContent as x, DialogDescription as S, DialogFooter as C, DialogHeader as w, DialogTitle as T, Input as E, Label as D, Spinner as O } from "@burdenoff/fe-libs/ui";
7
+ //#region src/bigconsole/components/datasink/ImportDataSinkDialog.tsx
8
+ var k = t(function({ isOpen: t, onClose: k, onSuccess: A }) {
9
+ let [j, M] = a("select"), [, N] = a(null), [P, F] = a(null), [I, L] = a(""), [R, z] = a(""), B = i(null), { loading: V, error: H, validationResult: U, importResult: W, validateImport: G, importDataSink: K, extractDataSinkId: q, clearState: J } = e();
10
+ r(() => {
11
+ t && (M("select"), N(null), F(null), L(""), z(""), J());
12
+ }, [t, J]);
13
+ let Y = n(async (e) => {
14
+ let t = e.target.files?.[0];
15
+ if (!t) return;
16
+ if (!t.name.endsWith(".json")) {
17
+ alert("Please select a JSON file");
18
+ return;
19
+ }
20
+ N(t);
21
+ let n = new FileReader();
22
+ n.onload = async (e) => {
23
+ let t = e.target?.result;
24
+ F(t);
25
+ let n = G(t);
26
+ n.isValid && n.dataSinkInfo ? (M("preview"), L(n.dataSinkInfo.name || ""), z(n.dataSinkInfo.key || "")) : M("preview");
27
+ }, n.onerror = () => {
28
+ alert("Failed to read file");
29
+ }, n.readAsText(t);
30
+ }, [G]), X = n((e) => {
31
+ e.preventDefault();
32
+ let t = e.dataTransfer.files?.[0];
33
+ if (t) {
34
+ let e = new DataTransfer();
35
+ e.items.add(t), B.current && (B.current.files = e.files, B.current.dispatchEvent(new Event("change", { bubbles: !0 })));
36
+ }
37
+ }, []), Z = n(async () => {
38
+ if (!P) return;
39
+ M("importing");
40
+ let e = await K(P, {
41
+ name: I.trim() || void 0,
42
+ key: R.trim() || void 0
43
+ });
44
+ e?.success && e.dataSink ? (M("complete"), A?.(e.dataSink.id, e.dataSink.name, e.originalUpdated ?? !1)) : M("preview");
45
+ }, [
46
+ P,
47
+ I,
48
+ R,
49
+ K,
50
+ A
51
+ ]), Q = !V && j !== "importing", $ = P ? q(P) : null;
52
+ return /* @__PURE__ */ m(b, {
53
+ open: t,
54
+ onOpenChange: (e) => !e && Q && k(),
55
+ children: /* @__PURE__ */ h(x, {
56
+ className: "sm:max-w-lg max-h-[85vh] flex flex-col",
57
+ children: [
58
+ /* @__PURE__ */ h(w, { children: [/* @__PURE__ */ h("div", {
59
+ className: "flex items-center gap-3",
60
+ children: [/* @__PURE__ */ m("div", {
61
+ className: "flex size-10 items-center justify-center rounded-lg bg-primary/10",
62
+ children: /* @__PURE__ */ m(d, { className: "size-5 text-primary" })
63
+ }), /* @__PURE__ */ m(T, { children: "Import DataSink" })]
64
+ }), /* @__PURE__ */ m(S, { children: "Upload a DataSink export file to restore it into this workspace." })] }),
65
+ /* @__PURE__ */ h("div", {
66
+ className: "flex-1 overflow-y-auto py-4 space-y-4",
67
+ children: [
68
+ j === "select" && /* @__PURE__ */ h("div", {
69
+ onDragOver: (e) => e.preventDefault(),
70
+ onDrop: X,
71
+ className: "border-2 border-dashed rounded-lg p-8 text-center hover:border-primary transition-colors",
72
+ children: [
73
+ /* @__PURE__ */ m(c, { className: "size-12 mx-auto text-muted-foreground mb-4" }),
74
+ /* @__PURE__ */ m("p", {
75
+ className: "text-sm mb-2",
76
+ children: "Drag and drop a DataSink export file here"
77
+ }),
78
+ /* @__PURE__ */ m("p", {
79
+ className: "text-xs text-muted-foreground mb-4",
80
+ children: "or"
81
+ }),
82
+ /* @__PURE__ */ m("input", {
83
+ ref: B,
84
+ type: "file",
85
+ accept: ".json",
86
+ onChange: Y,
87
+ className: "hidden"
88
+ }),
89
+ /* @__PURE__ */ m(_, {
90
+ onClick: () => B.current?.click(),
91
+ disabled: V,
92
+ children: "Browse Files"
93
+ }),
94
+ /* @__PURE__ */ m("p", {
95
+ className: "text-xs text-muted-foreground mt-4",
96
+ children: "Only .json files exported from BigConsole are supported"
97
+ })
98
+ ]
99
+ }),
100
+ (j === "preview" || j === "importing") && U && /* @__PURE__ */ h(p, { children: [
101
+ U.dataSinkInfo && /* @__PURE__ */ m(v, { children: /* @__PURE__ */ h(y, {
102
+ className: "p-4 space-y-2",
103
+ children: [
104
+ /* @__PURE__ */ h("div", {
105
+ className: "flex items-center justify-between",
106
+ children: [/* @__PURE__ */ m("span", {
107
+ className: "text-sm text-muted-foreground",
108
+ children: "Name"
109
+ }), /* @__PURE__ */ m("span", {
110
+ className: "text-sm font-medium",
111
+ children: U.dataSinkInfo.name || "Unnamed"
112
+ })]
113
+ }),
114
+ /* @__PURE__ */ h("div", {
115
+ className: "flex items-center justify-between",
116
+ children: [/* @__PURE__ */ m("span", {
117
+ className: "text-sm text-muted-foreground",
118
+ children: "Key"
119
+ }), /* @__PURE__ */ m("span", {
120
+ className: "text-xs font-mono",
121
+ children: U.dataSinkInfo.key
122
+ })]
123
+ }),
124
+ /* @__PURE__ */ h("div", {
125
+ className: "flex items-center justify-between",
126
+ children: [/* @__PURE__ */ m("span", {
127
+ className: "text-sm text-muted-foreground",
128
+ children: "Status"
129
+ }), /* @__PURE__ */ m(g, {
130
+ variant: "secondary",
131
+ children: U.dataSinkInfo.status
132
+ })]
133
+ }),
134
+ /* @__PURE__ */ h("div", {
135
+ className: "flex items-center justify-between",
136
+ children: [/* @__PURE__ */ m("span", {
137
+ className: "text-sm text-muted-foreground",
138
+ children: "Setup State"
139
+ }), /* @__PURE__ */ m(g, {
140
+ variant: "outline",
141
+ children: U.dataSinkInfo.setupState
142
+ })]
143
+ }),
144
+ U.dataSinkInfo.exportedFrom && /* @__PURE__ */ h("div", {
145
+ className: "flex items-center justify-between",
146
+ children: [/* @__PURE__ */ m("span", {
147
+ className: "text-sm text-muted-foreground",
148
+ children: "Source ID"
149
+ }), /* @__PURE__ */ m("span", {
150
+ className: "text-xs text-muted-foreground font-mono truncate max-w-[180px]",
151
+ children: U.dataSinkInfo.exportedFrom
152
+ })]
153
+ }),
154
+ /* @__PURE__ */ h("div", {
155
+ className: "flex items-center justify-between",
156
+ children: [/* @__PURE__ */ m("span", {
157
+ className: "text-sm text-muted-foreground",
158
+ children: "Schema Version"
159
+ }), /* @__PURE__ */ m("span", {
160
+ className: "text-xs text-muted-foreground",
161
+ children: U.dataSinkInfo.schemaVersion
162
+ })]
163
+ })
164
+ ]
165
+ }) }),
166
+ U.errors.length > 0 && /* @__PURE__ */ m(v, {
167
+ className: "border-destructive/50 bg-destructive/5",
168
+ children: /* @__PURE__ */ h(y, {
169
+ className: "p-3",
170
+ children: [/* @__PURE__ */ h("div", {
171
+ className: "flex items-center gap-2 mb-2",
172
+ children: [/* @__PURE__ */ m(f, { className: "size-4 text-destructive" }), /* @__PURE__ */ h("span", {
173
+ className: "text-sm font-medium text-destructive",
174
+ children: [
175
+ "Errors (",
176
+ U.errors.length,
177
+ ")"
178
+ ]
179
+ })]
180
+ }), /* @__PURE__ */ m("ul", {
181
+ className: "text-xs text-destructive space-y-1",
182
+ children: U.errors.map((e, t) => /* @__PURE__ */ h("li", { children: [
183
+ /* @__PURE__ */ h("span", {
184
+ className: "font-mono",
185
+ children: [
186
+ "[",
187
+ e.code,
188
+ "]"
189
+ ]
190
+ }),
191
+ " ",
192
+ e.message
193
+ ] }, t))
194
+ })]
195
+ })
196
+ }),
197
+ U.isValid && /* @__PURE__ */ h("div", {
198
+ className: "space-y-4",
199
+ children: [
200
+ /* @__PURE__ */ m("p", {
201
+ className: "text-sm font-medium",
202
+ children: "Import Options"
203
+ }),
204
+ /* @__PURE__ */ m(v, {
205
+ className: "border-blue-500/50 bg-blue-500/5",
206
+ children: /* @__PURE__ */ m(y, {
207
+ className: "p-3",
208
+ children: /* @__PURE__ */ h("div", {
209
+ className: "flex items-start gap-2",
210
+ children: [/* @__PURE__ */ m(l, { className: "size-4 text-blue-600 mt-0.5 shrink-0" }), /* @__PURE__ */ m("div", {
211
+ className: "text-xs text-blue-700 dark:text-blue-400",
212
+ children: $ ? /* @__PURE__ */ h(p, { children: [
213
+ /* @__PURE__ */ m("p", {
214
+ className: "font-medium mb-1",
215
+ children: "Import will check for existing DataSink"
216
+ }),
217
+ /* @__PURE__ */ h("p", { children: [
218
+ "If the original DataSink (ID:",
219
+ " ",
220
+ /* @__PURE__ */ h("code", {
221
+ className: "font-mono bg-blue-200/50 px-1 rounded",
222
+ children: [$.slice(0, 8), "..."]
223
+ }),
224
+ ") exists:"
225
+ ] }),
226
+ /* @__PURE__ */ h("ul", {
227
+ className: "list-disc list-inside mt-1 space-y-0.5",
228
+ children: [/* @__PURE__ */ m("li", { children: "With changes → Update the existing DataSink" }), /* @__PURE__ */ m("li", { children: "No changes → Show \"already exists\" message" })]
229
+ }),
230
+ /* @__PURE__ */ m("p", {
231
+ className: "mt-1",
232
+ children: "If original doesn't exist → Create a new DataSink"
233
+ })
234
+ ] }) : /* @__PURE__ */ h(p, { children: [/* @__PURE__ */ m("p", {
235
+ className: "font-medium mb-1",
236
+ children: "A new DataSink will be created"
237
+ }), /* @__PURE__ */ m("p", { children: "Import as a new DataSink with the specified configuration." })] })
238
+ })]
239
+ })
240
+ })
241
+ }),
242
+ /* @__PURE__ */ h("div", {
243
+ className: "space-y-2",
244
+ children: [/* @__PURE__ */ m(D, {
245
+ htmlFor: "import-name",
246
+ children: "DataSink Name"
247
+ }), /* @__PURE__ */ m(E, {
248
+ id: "import-name",
249
+ type: "text",
250
+ value: I,
251
+ onChange: (e) => L(e.target.value),
252
+ placeholder: U.dataSinkInfo?.name || "DataSink name",
253
+ disabled: j === "importing"
254
+ })]
255
+ }),
256
+ /* @__PURE__ */ h("div", {
257
+ className: "space-y-2",
258
+ children: [
259
+ /* @__PURE__ */ m(D, {
260
+ htmlFor: "import-key",
261
+ children: "DataSink Key"
262
+ }),
263
+ /* @__PURE__ */ m(E, {
264
+ id: "import-key",
265
+ type: "text",
266
+ value: R,
267
+ onChange: (e) => z(e.target.value),
268
+ placeholder: U.dataSinkInfo?.key || "datasink-key",
269
+ disabled: j === "importing"
270
+ }),
271
+ /* @__PURE__ */ m("p", {
272
+ className: "text-xs text-muted-foreground",
273
+ children: "Use a unique key to avoid conflicts with existing DataSinks."
274
+ })
275
+ ]
276
+ })
277
+ ]
278
+ })
279
+ ] }),
280
+ j === "complete" && W?.success && /* @__PURE__ */ h("div", {
281
+ className: "text-center py-6",
282
+ children: [
283
+ W.alreadyExists && /* @__PURE__ */ h(p, { children: [
284
+ /* @__PURE__ */ m("div", {
285
+ className: "size-16 mx-auto mb-4 rounded-full bg-blue-100 dark:bg-blue-900/30 flex items-center justify-center",
286
+ children: /* @__PURE__ */ m(l, { className: "size-8 text-blue-600" })
287
+ }),
288
+ /* @__PURE__ */ m("h3", {
289
+ className: "text-lg font-medium mb-2",
290
+ children: "DataSink Already Exists"
291
+ }),
292
+ /* @__PURE__ */ h("p", {
293
+ className: "text-sm text-muted-foreground mb-4",
294
+ children: [
295
+ "DataSink \"",
296
+ W.dataSink?.name || W.dataSink?.key,
297
+ "\" already exists with the same data. No changes were made."
298
+ ]
299
+ })
300
+ ] }),
301
+ W.originalUpdated && !W.alreadyExists && /* @__PURE__ */ h(p, { children: [
302
+ /* @__PURE__ */ m("div", {
303
+ className: "size-16 mx-auto mb-4 rounded-full bg-green-100 dark:bg-green-900/30 flex items-center justify-center",
304
+ children: /* @__PURE__ */ m(u, { className: "size-8 text-green-600" })
305
+ }),
306
+ /* @__PURE__ */ m("h3", {
307
+ className: "text-lg font-medium mb-2",
308
+ children: "DataSink Updated!"
309
+ }),
310
+ /* @__PURE__ */ h("p", {
311
+ className: "text-sm text-muted-foreground mb-4",
312
+ children: [
313
+ "DataSink \"",
314
+ W.dataSink?.name || W.dataSink?.key,
315
+ "\" has been updated with the imported data."
316
+ ]
317
+ })
318
+ ] }),
319
+ !W.originalUpdated && !W.alreadyExists && /* @__PURE__ */ h(p, { children: [
320
+ /* @__PURE__ */ m("div", {
321
+ className: "size-16 mx-auto mb-4 rounded-full bg-green-100 dark:bg-green-900/30 flex items-center justify-center",
322
+ children: /* @__PURE__ */ m(s, { className: "size-8 text-green-600" })
323
+ }),
324
+ /* @__PURE__ */ m("h3", {
325
+ className: "text-lg font-medium mb-2",
326
+ children: "Import Successful!"
327
+ }),
328
+ /* @__PURE__ */ h("p", {
329
+ className: "text-sm text-muted-foreground mb-4",
330
+ children: [
331
+ "DataSink \"",
332
+ W.dataSink?.name || W.dataSink?.key,
333
+ "\" has been created."
334
+ ]
335
+ })
336
+ ] })
337
+ ]
338
+ }),
339
+ H && /* @__PURE__ */ m(v, {
340
+ className: "border-destructive/50 bg-destructive/5",
341
+ children: /* @__PURE__ */ m(y, {
342
+ className: "p-3",
343
+ children: /* @__PURE__ */ m("p", {
344
+ className: "text-sm text-destructive",
345
+ children: H.message
346
+ })
347
+ })
348
+ }),
349
+ W && !W.success && W.errorMessage && /* @__PURE__ */ m(v, {
350
+ className: "border-destructive/50 bg-destructive/5",
351
+ children: /* @__PURE__ */ m(y, {
352
+ className: "p-3",
353
+ children: /* @__PURE__ */ m("p", {
354
+ className: "text-sm text-destructive",
355
+ children: W.errorMessage
356
+ })
357
+ })
358
+ })
359
+ ]
360
+ }),
361
+ /* @__PURE__ */ h(C, {
362
+ className: "flex-row justify-between sm:justify-between",
363
+ children: [/* @__PURE__ */ m("div", { children: j === "preview" && /* @__PURE__ */ h(_, {
364
+ variant: "ghost",
365
+ onClick: () => {
366
+ M("select"), N(null), F(null), J();
367
+ },
368
+ disabled: V,
369
+ children: [/* @__PURE__ */ m(o, { className: "size-4" }), "Back"]
370
+ }) }), /* @__PURE__ */ h("div", {
371
+ className: "flex items-center gap-2",
372
+ children: [
373
+ j !== "complete" && /* @__PURE__ */ m(_, {
374
+ variant: "outline",
375
+ onClick: k,
376
+ disabled: !Q,
377
+ children: "Cancel"
378
+ }),
379
+ j === "preview" && U?.isValid && /* @__PURE__ */ h(_, {
380
+ onClick: Z,
381
+ disabled: V,
382
+ children: [/* @__PURE__ */ m(d, { className: "size-4" }), "Import DataSink"]
383
+ }),
384
+ j === "importing" && /* @__PURE__ */ h("div", {
385
+ className: "flex items-center gap-2 text-sm text-muted-foreground",
386
+ children: [/* @__PURE__ */ m(O, { className: "size-4" }), "Importing..."]
387
+ }),
388
+ j === "complete" && /* @__PURE__ */ m(_, {
389
+ onClick: k,
390
+ children: "Done"
391
+ })
392
+ ]
393
+ })]
394
+ })
395
+ ]
396
+ })
397
+ });
398
+ });
399
+ //#endregion
400
+ export { k as default };
401
+
402
+ //# sourceMappingURL=ImportDataSinkDialog.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ImportDataSinkDialog.js","names":[],"sources":["../../../../src/bigconsole/components/datasink/ImportDataSinkDialog.tsx"],"sourcesContent":["/**\n * ImportDataSinkDialog Component\n *\n * Modal dialog for importing a DataSink from JSON file.\n * Supports both creating new DataSinks and updating existing ones.\n */\n\nimport { type FC, memo, useState, useCallback, useEffect, useRef } from 'react';\nimport {\n Dialog,\n DialogContent,\n DialogDescription,\n DialogFooter,\n DialogHeader,\n DialogTitle,\n} from '@burdenoff/fe-libs/ui';\nimport { Button } from '@burdenoff/fe-libs/ui';\nimport { Input } from '@burdenoff/fe-libs/ui';\nimport { Label } from '@burdenoff/fe-libs/ui';\nimport { Spinner } from '@burdenoff/fe-libs/ui';\nimport { Card, CardContent } from '@burdenoff/fe-libs/ui';\nimport { Badge } from '@burdenoff/fe-libs/ui';\nimport { Upload, FileJson, Check, XCircle, ArrowLeft, RefreshCw, Info } from 'lucide-react';\nimport { useImportDataSink, type ImportDataSinkOptions } from '../../hooks';\n\n// ============================================================================\n// Types\n// ============================================================================\n\nexport interface ImportDataSinkDialogProps {\n isOpen: boolean;\n onClose: () => void;\n onSuccess?: (dataSinkId: string, dataSinkName: string | null, originalUpdated: boolean) => void;\n}\n\ntype ImportStep = 'select' | 'preview' | 'importing' | 'complete';\n\n// ============================================================================\n// Component\n// ============================================================================\n\nexport const ImportDataSinkDialog: FC<ImportDataSinkDialogProps> = memo(function ImportDataSinkDialog({\n isOpen,\n onClose,\n onSuccess,\n}) {\n const [step, setStep] = useState<ImportStep>('select');\n const [, setSelectedFile] = useState<File | null>(null);\n const [fileContent, setFileContent] = useState<string | null>(null);\n const [nameOverride, setNameOverride] = useState('');\n const [keyOverride, setKeyOverride] = useState('');\n\n const fileInputRef = useRef<HTMLInputElement>(null);\n\n const {\n loading,\n error,\n validationResult,\n importResult,\n validateImport,\n importDataSink,\n extractDataSinkId,\n clearState,\n } = useImportDataSink();\n\n // Reset state when dialog opens\n useEffect(() => {\n if (isOpen) {\n setStep('select');\n setSelectedFile(null);\n setFileContent(null);\n setNameOverride('');\n setKeyOverride('');\n clearState();\n }\n }, [isOpen, clearState]);\n\n // Handle file selection\n const handleFileSelect = useCallback(\n async (e: React.ChangeEvent<HTMLInputElement>) => {\n const file = e.target.files?.[0];\n if (!file) return;\n\n if (!file.name.endsWith('.json')) {\n alert('Please select a JSON file');\n return;\n }\n\n setSelectedFile(file);\n\n const reader = new FileReader();\n reader.onload = async (event) => {\n const content = event.target?.result as string;\n setFileContent(content);\n\n const result = validateImport(content);\n if (result.isValid && result.dataSinkInfo) {\n setStep('preview');\n setNameOverride(result.dataSinkInfo.name || '');\n setKeyOverride(result.dataSinkInfo.key || '');\n } else {\n setStep('preview');\n }\n };\n reader.onerror = () => {\n alert('Failed to read file');\n };\n reader.readAsText(file);\n },\n [validateImport]\n );\n\n // Handle file drop\n const handleDrop = useCallback((e: React.DragEvent) => {\n e.preventDefault();\n const file = e.dataTransfer.files?.[0];\n if (file) {\n const dt = new DataTransfer();\n dt.items.add(file);\n if (fileInputRef.current) {\n fileInputRef.current.files = dt.files;\n fileInputRef.current.dispatchEvent(new Event('change', { bubbles: true }));\n }\n }\n }, []);\n\n // Handle import\n const handleImport = useCallback(async () => {\n if (!fileContent) return;\n\n setStep('importing');\n\n const options: ImportDataSinkOptions = {\n name: nameOverride.trim() || undefined,\n key: keyOverride.trim() || undefined,\n };\n\n const result = await importDataSink(fileContent, options);\n\n if (result?.success && result.dataSink) {\n setStep('complete');\n onSuccess?.(result.dataSink.id, result.dataSink.name, result.originalUpdated ?? false);\n } else {\n setStep('preview');\n }\n }, [fileContent, nameOverride, keyOverride, importDataSink, onSuccess]);\n\n const canClose = !loading && step !== 'importing';\n const dataSinkId = fileContent ? extractDataSinkId(fileContent) : null;\n\n return (\n <Dialog open={isOpen} onOpenChange={(open) => !open && canClose && onClose()}>\n <DialogContent className=\"sm:max-w-lg max-h-[85vh] flex flex-col\">\n <DialogHeader>\n <div className=\"flex items-center gap-3\">\n <div className=\"flex size-10 items-center justify-center rounded-lg bg-primary/10\">\n <Upload className=\"size-5 text-primary\" />\n </div>\n <DialogTitle>Import DataSink</DialogTitle>\n </div>\n <DialogDescription>Upload a DataSink export file to restore it into this workspace.</DialogDescription>\n </DialogHeader>\n\n <div className=\"flex-1 overflow-y-auto py-4 space-y-4\">\n {/* Step 1: File Selection */}\n {step === 'select' && (\n <div\n onDragOver={(e) => e.preventDefault()}\n onDrop={handleDrop}\n className=\"border-2 border-dashed rounded-lg p-8 text-center hover:border-primary transition-colors\"\n >\n <FileJson className=\"size-12 mx-auto text-muted-foreground mb-4\" />\n <p className=\"text-sm mb-2\">Drag and drop a DataSink export file here</p>\n <p className=\"text-xs text-muted-foreground mb-4\">or</p>\n <input ref={fileInputRef} type=\"file\" accept=\".json\" onChange={handleFileSelect} className=\"hidden\" />\n <Button onClick={() => fileInputRef.current?.click()} disabled={loading}>\n Browse Files\n </Button>\n <p className=\"text-xs text-muted-foreground mt-4\">\n Only .json files exported from BigConsole are supported\n </p>\n </div>\n )}\n\n {/* Step 2: Preview & Options */}\n {(step === 'preview' || step === 'importing') && validationResult && (\n <>\n {/* DataSink Info */}\n {validationResult.dataSinkInfo && (\n <Card>\n <CardContent className=\"p-4 space-y-2\">\n <div className=\"flex items-center justify-between\">\n <span className=\"text-sm text-muted-foreground\">Name</span>\n <span className=\"text-sm font-medium\">{validationResult.dataSinkInfo.name || 'Unnamed'}</span>\n </div>\n <div className=\"flex items-center justify-between\">\n <span className=\"text-sm text-muted-foreground\">Key</span>\n <span className=\"text-xs font-mono\">{validationResult.dataSinkInfo.key}</span>\n </div>\n <div className=\"flex items-center justify-between\">\n <span className=\"text-sm text-muted-foreground\">Status</span>\n <Badge variant=\"secondary\">{validationResult.dataSinkInfo.status}</Badge>\n </div>\n <div className=\"flex items-center justify-between\">\n <span className=\"text-sm text-muted-foreground\">Setup State</span>\n <Badge variant=\"outline\">{validationResult.dataSinkInfo.setupState}</Badge>\n </div>\n {validationResult.dataSinkInfo.exportedFrom && (\n <div className=\"flex items-center justify-between\">\n <span className=\"text-sm text-muted-foreground\">Source ID</span>\n <span className=\"text-xs text-muted-foreground font-mono truncate max-w-[180px]\">\n {validationResult.dataSinkInfo.exportedFrom}\n </span>\n </div>\n )}\n <div className=\"flex items-center justify-between\">\n <span className=\"text-sm text-muted-foreground\">Schema Version</span>\n <span className=\"text-xs text-muted-foreground\">\n {validationResult.dataSinkInfo.schemaVersion}\n </span>\n </div>\n </CardContent>\n </Card>\n )}\n\n {/* Validation Errors */}\n {validationResult.errors.length > 0 && (\n <Card className=\"border-destructive/50 bg-destructive/5\">\n <CardContent className=\"p-3\">\n <div className=\"flex items-center gap-2 mb-2\">\n <XCircle className=\"size-4 text-destructive\" />\n <span className=\"text-sm font-medium text-destructive\">\n Errors ({validationResult.errors.length})\n </span>\n </div>\n <ul className=\"text-xs text-destructive space-y-1\">\n {validationResult.errors.map((err, idx) => (\n <li key={idx}>\n <span className=\"font-mono\">[{err.code}]</span> {err.message}\n </li>\n ))}\n </ul>\n </CardContent>\n </Card>\n )}\n\n {/* Import Options */}\n {validationResult.isValid && (\n <div className=\"space-y-4\">\n <p className=\"text-sm font-medium\">Import Options</p>\n\n {/* Import Info */}\n <Card className=\"border-blue-500/50 bg-blue-500/5\">\n <CardContent className=\"p-3\">\n <div className=\"flex items-start gap-2\">\n <Info className=\"size-4 text-blue-600 mt-0.5 shrink-0\" />\n <div className=\"text-xs text-blue-700 dark:text-blue-400\">\n {dataSinkId ? (\n <>\n <p className=\"font-medium mb-1\">Import will check for existing DataSink</p>\n <p>\n If the original DataSink (ID:{' '}\n <code className=\"font-mono bg-blue-200/50 px-1 rounded\">\n {dataSinkId.slice(0, 8)}...\n </code>\n ) exists:\n </p>\n <ul className=\"list-disc list-inside mt-1 space-y-0.5\">\n <li>With changes → Update the existing DataSink</li>\n <li>No changes → Show &quot;already exists&quot; message</li>\n </ul>\n <p className=\"mt-1\">If original doesn&apos;t exist → Create a new DataSink</p>\n </>\n ) : (\n <>\n <p className=\"font-medium mb-1\">A new DataSink will be created</p>\n <p>Import as a new DataSink with the specified configuration.</p>\n </>\n )}\n </div>\n </div>\n </CardContent>\n </Card>\n\n <div className=\"space-y-2\">\n <Label htmlFor=\"import-name\">DataSink Name</Label>\n <Input\n id=\"import-name\"\n type=\"text\"\n value={nameOverride}\n onChange={(e) => setNameOverride(e.target.value)}\n placeholder={validationResult.dataSinkInfo?.name || 'DataSink name'}\n disabled={step === 'importing'}\n />\n </div>\n\n <div className=\"space-y-2\">\n <Label htmlFor=\"import-key\">DataSink Key</Label>\n <Input\n id=\"import-key\"\n type=\"text\"\n value={keyOverride}\n onChange={(e) => setKeyOverride(e.target.value)}\n placeholder={validationResult.dataSinkInfo?.key || 'datasink-key'}\n disabled={step === 'importing'}\n />\n <p className=\"text-xs text-muted-foreground\">\n Use a unique key to avoid conflicts with existing DataSinks.\n </p>\n </div>\n </div>\n )}\n </>\n )}\n\n {/* Step 3: Complete */}\n {step === 'complete' && importResult?.success && (\n <div className=\"text-center py-6\">\n {/* Already Exists - No Changes */}\n {importResult.alreadyExists && (\n <>\n <div className=\"size-16 mx-auto mb-4 rounded-full bg-blue-100 dark:bg-blue-900/30 flex items-center justify-center\">\n <Info className=\"size-8 text-blue-600\" />\n </div>\n <h3 className=\"text-lg font-medium mb-2\">DataSink Already Exists</h3>\n <p className=\"text-sm text-muted-foreground mb-4\">\n DataSink &quot;{importResult.dataSink?.name || importResult.dataSink?.key}&quot; already exists with\n the same data. No changes were made.\n </p>\n </>\n )}\n\n {/* Updated Existing */}\n {importResult.originalUpdated && !importResult.alreadyExists && (\n <>\n <div className=\"size-16 mx-auto mb-4 rounded-full bg-green-100 dark:bg-green-900/30 flex items-center justify-center\">\n <RefreshCw className=\"size-8 text-green-600\" />\n </div>\n <h3 className=\"text-lg font-medium mb-2\">DataSink Updated!</h3>\n <p className=\"text-sm text-muted-foreground mb-4\">\n DataSink &quot;{importResult.dataSink?.name || importResult.dataSink?.key}&quot; has been updated\n with the imported data.\n </p>\n </>\n )}\n\n {/* Created New */}\n {!importResult.originalUpdated && !importResult.alreadyExists && (\n <>\n <div className=\"size-16 mx-auto mb-4 rounded-full bg-green-100 dark:bg-green-900/30 flex items-center justify-center\">\n <Check className=\"size-8 text-green-600\" />\n </div>\n <h3 className=\"text-lg font-medium mb-2\">Import Successful!</h3>\n <p className=\"text-sm text-muted-foreground mb-4\">\n DataSink &quot;{importResult.dataSink?.name || importResult.dataSink?.key}&quot; has been created.\n </p>\n </>\n )}\n </div>\n )}\n\n {/* Error */}\n {error && (\n <Card className=\"border-destructive/50 bg-destructive/5\">\n <CardContent className=\"p-3\">\n <p className=\"text-sm text-destructive\">{error.message}</p>\n </CardContent>\n </Card>\n )}\n\n {importResult && !importResult.success && importResult.errorMessage && (\n <Card className=\"border-destructive/50 bg-destructive/5\">\n <CardContent className=\"p-3\">\n <p className=\"text-sm text-destructive\">{importResult.errorMessage}</p>\n </CardContent>\n </Card>\n )}\n </div>\n\n <DialogFooter className=\"flex-row justify-between sm:justify-between\">\n <div>\n {step === 'preview' && (\n <Button\n variant=\"ghost\"\n onClick={() => {\n setStep('select');\n setSelectedFile(null);\n setFileContent(null);\n clearState();\n }}\n disabled={loading}\n >\n <ArrowLeft className=\"size-4\" />\n Back\n </Button>\n )}\n </div>\n\n <div className=\"flex items-center gap-2\">\n {step !== 'complete' && (\n <Button variant=\"outline\" onClick={onClose} disabled={!canClose}>\n Cancel\n </Button>\n )}\n\n {step === 'preview' && validationResult?.isValid && (\n <Button onClick={handleImport} disabled={loading}>\n <Upload className=\"size-4\" />\n Import DataSink\n </Button>\n )}\n\n {step === 'importing' && (\n <div className=\"flex items-center gap-2 text-sm text-muted-foreground\">\n <Spinner className=\"size-4\" />\n Importing...\n </div>\n )}\n\n {step === 'complete' && <Button onClick={onClose}>Done</Button>}\n </div>\n </DialogFooter>\n </DialogContent>\n </Dialog>\n );\n});\n\nexport default ImportDataSinkDialog;\n"],"mappings":"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"}
@@ -0,0 +1,12 @@
1
+ /**
2
+ * LinkedParsersPanel Component
3
+ *
4
+ * Shows parsers that use this DataSink as their source.
5
+ * Provides navigation to parser view pages.
6
+ */
7
+ interface LinkedParsersPanelProps {
8
+ dataSinkKey?: string;
9
+ }
10
+ export declare const LinkedParsersPanel: import('react').NamedExoticComponent<LinkedParsersPanelProps>;
11
+ export default LinkedParsersPanel;
12
+ //# sourceMappingURL=LinkedParsersPanel.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LinkedParsersPanel.d.ts","sourceRoot":"","sources":["../../../../src/bigconsole/components/datasink/LinkedParsersPanel.tsx"],"names":[],"mappings":"AAAA;;;;;GAKG;AAWH,UAAU,uBAAuB;IAC/B,WAAW,CAAC,EAAE,MAAM,CAAC;CACtB;AA0CD,eAAO,MAAM,kBAAkB,+DAyF7B,CAAC;AAEH,eAAe,kBAAkB,CAAC"}
@@ -0,0 +1,128 @@
1
+ import { useAppNavigate as e } from "../../contexts/NavigationContext.js";
2
+ import "../../contexts/index.js";
3
+ import t from "../../hooks/useParserOperations.js";
4
+ import { memo as n, useCallback as r, useEffect as i, useMemo as a } from "react";
5
+ import { useParams as o } from "react-router-dom";
6
+ import { jsx as s, jsxs as c } from "react/jsx-runtime";
7
+ //#region src/bigconsole/components/datasink/LinkedParsersPanel.tsx
8
+ var l = ({ className: e }) => /* @__PURE__ */ s("svg", {
9
+ className: e,
10
+ fill: "none",
11
+ stroke: "currentColor",
12
+ viewBox: "0 0 24 24",
13
+ children: /* @__PURE__ */ s("path", {
14
+ strokeLinecap: "round",
15
+ strokeLinejoin: "round",
16
+ strokeWidth: 1.5,
17
+ d: "M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4"
18
+ })
19
+ }), u = ({ className: e }) => /* @__PURE__ */ s("svg", {
20
+ className: e,
21
+ fill: "none",
22
+ stroke: "currentColor",
23
+ viewBox: "0 0 24 24",
24
+ children: /* @__PURE__ */ s("path", {
25
+ strokeLinecap: "round",
26
+ strokeLinejoin: "round",
27
+ strokeWidth: 2,
28
+ d: "M9 5l7 7-7 7"
29
+ })
30
+ }), d = ({ type: e }) => {
31
+ let { label: t, className: n } = {
32
+ jq: {
33
+ label: "JQ",
34
+ className: "bg-purple-100 text-purple-700"
35
+ },
36
+ jsonata: {
37
+ label: "JSONata",
38
+ className: "bg-blue-100 text-blue-700"
39
+ }
40
+ }[e] || {
41
+ label: e.toUpperCase(),
42
+ className: "bg-gray-100 text-gray-700"
43
+ };
44
+ return /* @__PURE__ */ s("span", {
45
+ className: `px-1.5 py-0.5 text-[10px] font-medium rounded ${n}`,
46
+ children: t
47
+ });
48
+ }, f = "default", p = n(function({ dataSinkKey: n }) {
49
+ let p = e(), { consoleId: m } = o(), h = m || f, { parsers: g, loading: _, fetchParsers: v } = t({
50
+ consoleId: h,
51
+ skipFetch: !0
52
+ });
53
+ i(() => {
54
+ n && v();
55
+ }, [n, v]);
56
+ let y = a(() => n ? g.filter((e) => e.inputSinkKey === n) : [], [g, n]), b = r((e) => {
57
+ p(h ? `/dashboards/${h}/parsers/${e}` : `/parsers/${e}`);
58
+ }, [p, h]);
59
+ return n ? /* @__PURE__ */ c("div", {
60
+ className: "border border-border-default rounded-lg bg-bg-surface p-4 space-y-4",
61
+ children: [/* @__PURE__ */ c("div", {
62
+ className: "flex items-center justify-between",
63
+ children: [/* @__PURE__ */ c("div", {
64
+ className: "flex items-center gap-2",
65
+ children: [/* @__PURE__ */ s(l, { className: "w-4 h-4 text-text-secondary" }), /* @__PURE__ */ s("h2", {
66
+ className: "text-sm font-semibold text-text-primary",
67
+ children: "Parsers Using This DataSink"
68
+ })]
69
+ }), /* @__PURE__ */ c("span", {
70
+ className: "text-xs text-text-tertiary",
71
+ children: [
72
+ y.length,
73
+ " parser",
74
+ y.length === 1 ? "" : "s"
75
+ ]
76
+ })]
77
+ }), _ ? /* @__PURE__ */ s("div", {
78
+ className: "flex items-center justify-center py-4",
79
+ children: /* @__PURE__ */ c("svg", {
80
+ className: "w-5 h-5 text-text-secondary animate-spin",
81
+ fill: "none",
82
+ viewBox: "0 0 24 24",
83
+ children: [/* @__PURE__ */ s("circle", {
84
+ className: "opacity-25",
85
+ cx: "12",
86
+ cy: "12",
87
+ r: "10",
88
+ stroke: "currentColor",
89
+ strokeWidth: "4"
90
+ }), /* @__PURE__ */ s("path", {
91
+ className: "opacity-75",
92
+ fill: "currentColor",
93
+ d: "M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z"
94
+ })]
95
+ })
96
+ }) : y.length === 0 ? /* @__PURE__ */ s("p", {
97
+ className: "text-sm text-text-tertiary py-2",
98
+ children: "No parsers are using this DataSink as their source."
99
+ }) : /* @__PURE__ */ s("div", {
100
+ className: "space-y-2",
101
+ children: y.map((e) => /* @__PURE__ */ c("button", {
102
+ type: "button",
103
+ onClick: () => b(e.id),
104
+ className: "w-full flex items-center justify-between px-3 py-2 bg-bg-muted rounded-md hover:bg-border-default transition-colors group",
105
+ children: [/* @__PURE__ */ c("div", {
106
+ className: "flex items-center gap-3",
107
+ children: [/* @__PURE__ */ s(l, { className: "w-4 h-4 text-text-secondary" }), /* @__PURE__ */ c("div", {
108
+ className: "text-left",
109
+ children: [/* @__PURE__ */ s("p", {
110
+ className: "text-sm font-medium text-text-primary",
111
+ children: e.name
112
+ }), /* @__PURE__ */ s("p", {
113
+ className: "text-xs text-text-tertiary font-mono",
114
+ children: e.outputKey
115
+ })]
116
+ })]
117
+ }), /* @__PURE__ */ c("div", {
118
+ className: "flex items-center gap-2",
119
+ children: [/* @__PURE__ */ s(d, { type: e.type }), /* @__PURE__ */ s(u, { className: "w-4 h-4 text-text-tertiary group-hover:text-text-primary transition-colors" })]
120
+ })]
121
+ }, e.id))
122
+ })]
123
+ }) : null;
124
+ });
125
+ //#endregion
126
+ export { p as default };
127
+
128
+ //# sourceMappingURL=LinkedParsersPanel.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LinkedParsersPanel.js","names":[],"sources":["../../../../src/bigconsole/components/datasink/LinkedParsersPanel.tsx"],"sourcesContent":["/**\n * LinkedParsersPanel Component\n *\n * Shows parsers that use this DataSink as their source.\n * Provides navigation to parser view pages.\n */\n\nimport { memo, useMemo, useCallback, useEffect } from 'react';\nimport { useParams } from 'react-router-dom';\nimport { useAppNavigate } from '../../contexts';\nimport { useParserOperations } from '../../hooks/useParserOperations';\n\n// ============================================================================\n// TYPES\n// ============================================================================\n\ninterface LinkedParsersPanelProps {\n dataSinkKey?: string;\n}\n\n// ============================================================================\n// ICONS\n// ============================================================================\n\nconst CodeIcon = ({ className }: { className?: string }) => (\n <svg className={className} fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path strokeLinecap=\"round\" strokeLinejoin=\"round\" strokeWidth={1.5} d=\"M10 20l4-16m4 4l4 4-4 4M6 16l-4-4 4-4\" />\n </svg>\n);\n\nconst ArrowRightIcon = ({ className }: { className?: string }) => (\n <svg className={className} fill=\"none\" stroke=\"currentColor\" viewBox=\"0 0 24 24\">\n <path strokeLinecap=\"round\" strokeLinejoin=\"round\" strokeWidth={2} d=\"M9 5l7 7-7 7\" />\n </svg>\n);\n\n// ============================================================================\n// PARSER TYPE BADGE\n// ============================================================================\n\nconst ParserTypeBadge = ({ type }: { type: string }) => {\n const config: Record<string, { label: string; className: string }> = {\n jq: { label: 'JQ', className: 'bg-purple-100 text-purple-700' },\n jsonata: { label: 'JSONata', className: 'bg-blue-100 text-blue-700' },\n };\n\n const { label, className } = config[type] || {\n label: type.toUpperCase(),\n className: 'bg-gray-100 text-gray-700',\n };\n\n return <span className={`px-1.5 py-0.5 text-[10px] font-medium rounded ${className}`}>{label}</span>;\n};\n\n// ============================================================================\n// COMPONENT\n// ============================================================================\n\nconst DEFAULT_CONSOLE_ID = 'default';\n\nexport const LinkedParsersPanel = memo(function LinkedParsersPanel({ dataSinkKey }: LinkedParsersPanelProps) {\n const navigate = useAppNavigate();\n const { consoleId: urlConsoleId } = useParams<{ consoleId?: string }>();\n const consoleId = urlConsoleId || DEFAULT_CONSOLE_ID;\n\n // Operations\n const { parsers, loading: isLoading, fetchParsers } = useParserOperations({ consoleId, skipFetch: true });\n\n // Fetch parsers when dataSinkKey is available (consoleId is optional)\n useEffect(() => {\n if (dataSinkKey) {\n fetchParsers();\n }\n }, [dataSinkKey, fetchParsers]);\n\n // Filter parsers that use this dataSink as input - using useMemo to avoid setState in effect\n const linkedParsers = useMemo(() => {\n if (!dataSinkKey) return [];\n return parsers.filter((p) => p.inputSinkKey === dataSinkKey);\n }, [parsers, dataSinkKey]);\n\n // Handle view parser — navigate to the parser detail page\n const handleViewParser = useCallback(\n (parserId: string) => {\n if (consoleId) {\n navigate(`/dashboards/${consoleId}/parsers/${parserId}`);\n } else {\n navigate(`/parsers/${parserId}`);\n }\n },\n [navigate, consoleId]\n );\n\n // Don't render if no dataSinkKey provided\n if (!dataSinkKey) {\n return null;\n }\n\n return (\n <div className=\"border border-border-default rounded-lg bg-bg-surface p-4 space-y-4\">\n <div className=\"flex items-center justify-between\">\n <div className=\"flex items-center gap-2\">\n <CodeIcon className=\"w-4 h-4 text-text-secondary\" />\n <h2 className=\"text-sm font-semibold text-text-primary\">Parsers Using This DataSink</h2>\n </div>\n <span className=\"text-xs text-text-tertiary\">\n {linkedParsers.length} parser{linkedParsers.length !== 1 ? 's' : ''}\n </span>\n </div>\n\n {isLoading ? (\n <div className=\"flex items-center justify-center py-4\">\n <svg className=\"w-5 h-5 text-text-secondary animate-spin\" fill=\"none\" viewBox=\"0 0 24 24\">\n <circle className=\"opacity-25\" cx=\"12\" cy=\"12\" r=\"10\" stroke=\"currentColor\" strokeWidth=\"4\" />\n <path\n className=\"opacity-75\"\n fill=\"currentColor\"\n d=\"M4 12a8 8 0 018-8V0C5.373 0 0 5.373 0 12h4zm2 5.291A7.962 7.962 0 014 12H0c0 3.042 1.135 5.824 3 7.938l3-2.647z\"\n />\n </svg>\n </div>\n ) : linkedParsers.length === 0 ? (\n <p className=\"text-sm text-text-tertiary py-2\">No parsers are using this DataSink as their source.</p>\n ) : (\n <div className=\"space-y-2\">\n {linkedParsers.map((parser) => (\n <button\n key={parser.id}\n type=\"button\"\n onClick={() => handleViewParser(parser.id)}\n className=\"w-full flex items-center justify-between px-3 py-2 bg-bg-muted rounded-md hover:bg-border-default transition-colors group\"\n >\n <div className=\"flex items-center gap-3\">\n <CodeIcon className=\"w-4 h-4 text-text-secondary\" />\n <div className=\"text-left\">\n <p className=\"text-sm font-medium text-text-primary\">{parser.name}</p>\n <p className=\"text-xs text-text-tertiary font-mono\">{parser.outputKey}</p>\n </div>\n </div>\n <div className=\"flex items-center gap-2\">\n <ParserTypeBadge type={parser.type} />\n <ArrowRightIcon className=\"w-4 h-4 text-text-tertiary group-hover:text-text-primary transition-colors\" />\n </div>\n </button>\n ))}\n </div>\n )}\n </div>\n );\n});\n\nexport default LinkedParsersPanel;\n"],"mappings":"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"}
@@ -0,0 +1,11 @@
1
+ import { DataSinkWorkflowLink } from '../../types';
2
+
3
+ interface LinkedWorkflowsPanelProps {
4
+ /** Workflow links */
5
+ workflowLinks?: DataSinkWorkflowLink[];
6
+ /** Whether loading */
7
+ isLoading?: boolean;
8
+ }
9
+ export declare const LinkedWorkflowsPanel: import('react').NamedExoticComponent<LinkedWorkflowsPanelProps>;
10
+ export default LinkedWorkflowsPanel;
11
+ //# sourceMappingURL=LinkedWorkflowsPanel.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"LinkedWorkflowsPanel.d.ts","sourceRoot":"","sources":["../../../../src/bigconsole/components/datasink/LinkedWorkflowsPanel.tsx"],"names":[],"mappings":"AAAA;;;;GAIG;AAKH,OAAO,KAAK,EAAE,oBAAoB,EAA4B,MAAM,aAAa,CAAC;AAMlF,UAAU,yBAAyB;IACjC,qBAAqB;IACrB,aAAa,CAAC,EAAE,oBAAoB,EAAE,CAAC;IACvC,sBAAsB;IACtB,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB;AAuFD,eAAO,MAAM,oBAAoB,iEAkJ/B,CAAC;AAEH,eAAe,oBAAoB,CAAC"}