@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.
- package/lib/index.css +2 -2
- package/lib/index.css.map +1 -1
- package/lib/legend-ai/LegendAITypes.d.ts +33 -0
- package/lib/legend-ai/LegendAITypes.d.ts.map +1 -1
- package/lib/legend-ai/LegendAITypes.js +39 -1
- package/lib/legend-ai/LegendAITypes.js.map +1 -1
- package/lib/legend-ai/LegendAI_LegendApplicationPlugin_Extension.d.ts +96 -1
- package/lib/legend-ai/LegendAI_LegendApplicationPlugin_Extension.d.ts.map +1 -1
- package/lib/legend-ai/LegendAI_LegendApplicationPlugin_Extension.js +56 -0
- package/lib/legend-ai/LegendAI_LegendApplicationPlugin_Extension.js.map +1 -1
- package/lib/legend-ai/__test-utils__/LegendAITestUtils.d.ts.map +1 -1
- package/lib/legend-ai/__test-utils__/LegendAITestUtils.js +6 -0
- package/lib/legend-ai/__test-utils__/LegendAITestUtils.js.map +1 -1
- package/lib/legend-ai/components/LegendAIAnalysisPanel.d.ts +24 -0
- package/lib/legend-ai/components/LegendAIAnalysisPanel.d.ts.map +1 -0
- package/lib/legend-ai/components/LegendAIAnalysisPanel.js +35 -0
- package/lib/legend-ai/components/LegendAIAnalysisPanel.js.map +1 -0
- package/lib/legend-ai/components/LegendAIAnalysisUtils.d.ts +23 -0
- package/lib/legend-ai/components/LegendAIAnalysisUtils.d.ts.map +1 -0
- package/lib/legend-ai/components/LegendAIAnalysisUtils.js +168 -0
- package/lib/legend-ai/components/LegendAIAnalysisUtils.js.map +1 -0
- package/lib/legend-ai/components/LegendAICharts.d.ts +25 -0
- package/lib/legend-ai/components/LegendAICharts.d.ts.map +1 -0
- package/lib/legend-ai/components/LegendAICharts.js +70 -0
- package/lib/legend-ai/components/LegendAICharts.js.map +1 -0
- package/lib/legend-ai/components/LegendAIChat.d.ts +2 -1
- package/lib/legend-ai/components/LegendAIChat.d.ts.map +1 -1
- package/lib/legend-ai/components/LegendAIChat.js +14 -10
- package/lib/legend-ai/components/LegendAIChat.js.map +1 -1
- package/lib/legend-ai/index.d.ts +5 -2
- package/lib/legend-ai/index.d.ts.map +1 -1
- package/lib/legend-ai/index.js +5 -2
- package/lib/legend-ai/index.js.map +1 -1
- package/lib/legend-ai/stores/LegendAIChatState.d.ts +12 -5
- package/lib/legend-ai/stores/LegendAIChatState.d.ts.map +1 -1
- package/lib/legend-ai/stores/LegendAIChatState.js +604 -69
- package/lib/legend-ai/stores/LegendAIChatState.js.map +1 -1
- package/package.json +5 -5
- package/src/legend-ai/LegendAITypes.ts +51 -1
- package/src/legend-ai/LegendAI_LegendApplicationPlugin_Extension.ts +169 -0
- package/src/legend-ai/__test-utils__/LegendAITestUtils.ts +9 -0
- package/src/legend-ai/components/LegendAIAnalysisPanel.tsx +102 -0
- package/src/legend-ai/components/LegendAIAnalysisUtils.ts +226 -0
- package/src/legend-ai/components/LegendAICharts.tsx +166 -0
- package/src/legend-ai/components/LegendAIChat.tsx +74 -26
- package/src/legend-ai/index.ts +18 -0
- package/src/legend-ai/stores/LegendAIChatState.ts +1039 -128
- 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",
|