@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.
- package/lib/index.css +2 -2
- package/lib/index.css.map +1 -1
- package/lib/legend-ai/LegendAITypes.d.ts +196 -0
- package/lib/legend-ai/LegendAITypes.d.ts.map +1 -0
- package/lib/legend-ai/LegendAITypes.js +281 -0
- package/lib/legend-ai/LegendAITypes.js.map +1 -0
- package/lib/legend-ai/LegendAI_LegendApplicationPlugin_Extension.d.ts +127 -0
- package/lib/legend-ai/LegendAI_LegendApplicationPlugin_Extension.d.ts.map +1 -0
- package/lib/legend-ai/LegendAI_LegendApplicationPlugin_Extension.js +63 -0
- package/lib/legend-ai/LegendAI_LegendApplicationPlugin_Extension.js.map +1 -0
- package/lib/legend-ai/__test-utils__/LegendAITestUtils.d.ts +29 -0
- package/lib/legend-ai/__test-utils__/LegendAITestUtils.d.ts.map +1 -0
- package/lib/legend-ai/__test-utils__/LegendAITestUtils.js +98 -0
- package/lib/legend-ai/__test-utils__/LegendAITestUtils.js.map +1 -0
- package/lib/legend-ai/components/LegendAIChat.d.ts +23 -0
- package/lib/legend-ai/components/LegendAIChat.d.ts.map +1 -0
- package/lib/legend-ai/components/LegendAIChat.js +179 -0
- package/lib/legend-ai/components/LegendAIChat.js.map +1 -0
- package/lib/legend-ai/components/LegendAIErrorBoundary.d.ts +31 -0
- package/lib/legend-ai/components/LegendAIErrorBoundary.d.ts.map +1 -0
- package/lib/legend-ai/components/LegendAIErrorBoundary.js +35 -0
- package/lib/legend-ai/components/LegendAIErrorBoundary.js.map +1 -0
- package/lib/legend-ai/components/LegendAIResultGrid.d.ts +20 -0
- package/lib/legend-ai/components/LegendAIResultGrid.d.ts.map +1 -0
- package/lib/legend-ai/components/LegendAIResultGrid.js +90 -0
- package/lib/legend-ai/components/LegendAIResultGrid.js.map +1 -0
- package/lib/legend-ai/index.d.ts +22 -0
- package/lib/legend-ai/index.d.ts.map +1 -0
- package/lib/legend-ai/index.js +22 -0
- package/lib/legend-ai/index.js.map +1 -0
- package/lib/legend-ai/stores/LegendAIChatState.d.ts +46 -0
- package/lib/legend-ai/stores/LegendAIChatState.d.ts.map +1 -0
- package/lib/legend-ai/stores/LegendAIChatState.js +559 -0
- package/lib/legend-ai/stores/LegendAIChatState.js.map +1 -0
- package/package.json +7 -3
- package/src/legend-ai/LegendAITypes.ts +386 -0
- package/src/legend-ai/LegendAI_LegendApplicationPlugin_Extension.ts +208 -0
- package/src/legend-ai/__test-utils__/LegendAITestUtils.ts +139 -0
- package/src/legend-ai/components/LegendAIChat.tsx +502 -0
- package/src/legend-ai/components/LegendAIErrorBoundary.tsx +42 -0
- package/src/legend-ai/components/LegendAIResultGrid.tsx +132 -0
- package/src/legend-ai/index.ts +46 -0
- package/src/legend-ai/stores/LegendAIChatState.ts +1004 -0
- 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
|
],
|