@finos/legend-lego 2.0.195 → 2.0.196

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 (48) hide show
  1. package/lib/index.css +2 -2
  2. package/lib/index.css.map +1 -1
  3. package/lib/legend-ai/LegendAITypes.d.ts +33 -0
  4. package/lib/legend-ai/LegendAITypes.d.ts.map +1 -1
  5. package/lib/legend-ai/LegendAITypes.js +39 -1
  6. package/lib/legend-ai/LegendAITypes.js.map +1 -1
  7. package/lib/legend-ai/LegendAI_LegendApplicationPlugin_Extension.d.ts +96 -1
  8. package/lib/legend-ai/LegendAI_LegendApplicationPlugin_Extension.d.ts.map +1 -1
  9. package/lib/legend-ai/LegendAI_LegendApplicationPlugin_Extension.js +56 -0
  10. package/lib/legend-ai/LegendAI_LegendApplicationPlugin_Extension.js.map +1 -1
  11. package/lib/legend-ai/__test-utils__/LegendAITestUtils.d.ts.map +1 -1
  12. package/lib/legend-ai/__test-utils__/LegendAITestUtils.js +6 -0
  13. package/lib/legend-ai/__test-utils__/LegendAITestUtils.js.map +1 -1
  14. package/lib/legend-ai/components/LegendAIAnalysisPanel.d.ts +24 -0
  15. package/lib/legend-ai/components/LegendAIAnalysisPanel.d.ts.map +1 -0
  16. package/lib/legend-ai/components/LegendAIAnalysisPanel.js +35 -0
  17. package/lib/legend-ai/components/LegendAIAnalysisPanel.js.map +1 -0
  18. package/lib/legend-ai/components/LegendAIAnalysisUtils.d.ts +23 -0
  19. package/lib/legend-ai/components/LegendAIAnalysisUtils.d.ts.map +1 -0
  20. package/lib/legend-ai/components/LegendAIAnalysisUtils.js +168 -0
  21. package/lib/legend-ai/components/LegendAIAnalysisUtils.js.map +1 -0
  22. package/lib/legend-ai/components/LegendAICharts.d.ts +25 -0
  23. package/lib/legend-ai/components/LegendAICharts.d.ts.map +1 -0
  24. package/lib/legend-ai/components/LegendAICharts.js +70 -0
  25. package/lib/legend-ai/components/LegendAICharts.js.map +1 -0
  26. package/lib/legend-ai/components/LegendAIChat.d.ts +2 -1
  27. package/lib/legend-ai/components/LegendAIChat.d.ts.map +1 -1
  28. package/lib/legend-ai/components/LegendAIChat.js +14 -10
  29. package/lib/legend-ai/components/LegendAIChat.js.map +1 -1
  30. package/lib/legend-ai/index.d.ts +5 -2
  31. package/lib/legend-ai/index.d.ts.map +1 -1
  32. package/lib/legend-ai/index.js +5 -2
  33. package/lib/legend-ai/index.js.map +1 -1
  34. package/lib/legend-ai/stores/LegendAIChatState.d.ts +12 -5
  35. package/lib/legend-ai/stores/LegendAIChatState.d.ts.map +1 -1
  36. package/lib/legend-ai/stores/LegendAIChatState.js +604 -69
  37. package/lib/legend-ai/stores/LegendAIChatState.js.map +1 -1
  38. package/package.json +5 -5
  39. package/src/legend-ai/LegendAITypes.ts +51 -1
  40. package/src/legend-ai/LegendAI_LegendApplicationPlugin_Extension.ts +169 -0
  41. package/src/legend-ai/__test-utils__/LegendAITestUtils.ts +9 -0
  42. package/src/legend-ai/components/LegendAIAnalysisPanel.tsx +102 -0
  43. package/src/legend-ai/components/LegendAIAnalysisUtils.ts +226 -0
  44. package/src/legend-ai/components/LegendAICharts.tsx +166 -0
  45. package/src/legend-ai/components/LegendAIChat.tsx +74 -26
  46. package/src/legend-ai/index.ts +18 -0
  47. package/src/legend-ai/stores/LegendAIChatState.ts +1039 -128
  48. package/tsconfig.json +3 -0
package/tsconfig.json CHANGED
@@ -57,6 +57,7 @@
57
57
  "./src/legend-ai/LegendAI_LegendApplicationPlugin_Extension.ts",
58
58
  "./src/legend-ai/index.ts",
59
59
  "./src/legend-ai/__test-utils__/LegendAITestUtils.ts",
60
+ "./src/legend-ai/components/LegendAIAnalysisUtils.ts",
60
61
  "./src/legend-ai/stores/LegendAIChatState.ts",
61
62
  "./src/model-documentation/ModelDocumentationAnalysis.ts",
62
63
  "./src/model-documentation/index.ts",
@@ -72,6 +73,8 @@
72
73
  "./src/data-grid/DataGrid.tsx",
73
74
  "./src/graph-editor/ElementIconUtils.tsx",
74
75
  "./src/graph-editor/PackageableElementOption.tsx",
76
+ "./src/legend-ai/components/LegendAIAnalysisPanel.tsx",
77
+ "./src/legend-ai/components/LegendAICharts.tsx",
75
78
  "./src/legend-ai/components/LegendAIChat.tsx",
76
79
  "./src/legend-ai/components/LegendAIErrorBoundary.tsx",
77
80
  "./src/legend-ai/components/LegendAIResultGrid.tsx",