@finos/legend-lego 2.0.187 → 2.0.189

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 (44) 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 +196 -0
  4. package/lib/legend-ai/LegendAITypes.d.ts.map +1 -0
  5. package/lib/legend-ai/LegendAITypes.js +281 -0
  6. package/lib/legend-ai/LegendAITypes.js.map +1 -0
  7. package/lib/legend-ai/LegendAI_LegendApplicationPlugin_Extension.d.ts +127 -0
  8. package/lib/legend-ai/LegendAI_LegendApplicationPlugin_Extension.d.ts.map +1 -0
  9. package/lib/legend-ai/LegendAI_LegendApplicationPlugin_Extension.js +63 -0
  10. package/lib/legend-ai/LegendAI_LegendApplicationPlugin_Extension.js.map +1 -0
  11. package/lib/legend-ai/__test-utils__/LegendAITestUtils.d.ts +29 -0
  12. package/lib/legend-ai/__test-utils__/LegendAITestUtils.d.ts.map +1 -0
  13. package/lib/legend-ai/__test-utils__/LegendAITestUtils.js +98 -0
  14. package/lib/legend-ai/__test-utils__/LegendAITestUtils.js.map +1 -0
  15. package/lib/legend-ai/components/LegendAIChat.d.ts +23 -0
  16. package/lib/legend-ai/components/LegendAIChat.d.ts.map +1 -0
  17. package/lib/legend-ai/components/LegendAIChat.js +179 -0
  18. package/lib/legend-ai/components/LegendAIChat.js.map +1 -0
  19. package/lib/legend-ai/components/LegendAIErrorBoundary.d.ts +31 -0
  20. package/lib/legend-ai/components/LegendAIErrorBoundary.d.ts.map +1 -0
  21. package/lib/legend-ai/components/LegendAIErrorBoundary.js +35 -0
  22. package/lib/legend-ai/components/LegendAIErrorBoundary.js.map +1 -0
  23. package/lib/legend-ai/components/LegendAIResultGrid.d.ts +20 -0
  24. package/lib/legend-ai/components/LegendAIResultGrid.d.ts.map +1 -0
  25. package/lib/legend-ai/components/LegendAIResultGrid.js +90 -0
  26. package/lib/legend-ai/components/LegendAIResultGrid.js.map +1 -0
  27. package/lib/legend-ai/index.d.ts +22 -0
  28. package/lib/legend-ai/index.d.ts.map +1 -0
  29. package/lib/legend-ai/index.js +22 -0
  30. package/lib/legend-ai/index.js.map +1 -0
  31. package/lib/legend-ai/stores/LegendAIChatState.d.ts +46 -0
  32. package/lib/legend-ai/stores/LegendAIChatState.d.ts.map +1 -0
  33. package/lib/legend-ai/stores/LegendAIChatState.js +559 -0
  34. package/lib/legend-ai/stores/LegendAIChatState.js.map +1 -0
  35. package/package.json +7 -3
  36. package/src/legend-ai/LegendAITypes.ts +386 -0
  37. package/src/legend-ai/LegendAI_LegendApplicationPlugin_Extension.ts +208 -0
  38. package/src/legend-ai/__test-utils__/LegendAITestUtils.ts +139 -0
  39. package/src/legend-ai/components/LegendAIChat.tsx +502 -0
  40. package/src/legend-ai/components/LegendAIErrorBoundary.tsx +42 -0
  41. package/src/legend-ai/components/LegendAIResultGrid.tsx +132 -0
  42. package/src/legend-ai/index.ts +46 -0
  43. package/src/legend-ai/stores/LegendAIChatState.ts +1004 -0
  44. package/tsconfig.json +8 -0
package/tsconfig.json CHANGED
@@ -53,6 +53,11 @@
53
53
  "./src/code-editor/__test-utils__/MockedMonacoEditor.ts",
54
54
  "./src/data-grid/index.ts",
55
55
  "./src/graph-editor/index.ts",
56
+ "./src/legend-ai/LegendAITypes.ts",
57
+ "./src/legend-ai/LegendAI_LegendApplicationPlugin_Extension.ts",
58
+ "./src/legend-ai/index.ts",
59
+ "./src/legend-ai/__test-utils__/LegendAITestUtils.ts",
60
+ "./src/legend-ai/stores/LegendAIChatState.ts",
56
61
  "./src/model-documentation/ModelDocumentationAnalysis.ts",
57
62
  "./src/model-documentation/index.ts",
58
63
  "./src/application/ActivityBar.tsx",
@@ -67,6 +72,9 @@
67
72
  "./src/data-grid/DataGrid.tsx",
68
73
  "./src/graph-editor/ElementIconUtils.tsx",
69
74
  "./src/graph-editor/PackageableElementOption.tsx",
75
+ "./src/legend-ai/components/LegendAIChat.tsx",
76
+ "./src/legend-ai/components/LegendAIErrorBoundary.tsx",
77
+ "./src/legend-ai/components/LegendAIResultGrid.tsx",
70
78
  "./src/model-documentation/ModelDocumentationState.tsx",
71
79
  "./src/model-documentation/ModelDocumentationViewer.tsx"
72
80
  ],