@finos/legend-application-studio 28.19.46 → 28.19.47
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/application/LegendStudioApplicationConfig.d.ts +2 -1
- package/lib/application/LegendStudioApplicationConfig.d.ts.map +1 -1
- package/lib/application/LegendStudioApplicationConfig.js +2 -1
- package/lib/application/LegendStudioApplicationConfig.js.map +1 -1
- package/lib/components/editor/editor-group/dataProduct/DataProductEditor.d.ts.map +1 -1
- package/lib/components/editor/editor-group/dataProduct/DataProductEditor.js +45 -27
- package/lib/components/editor/editor-group/dataProduct/DataProductEditor.js.map +1 -1
- package/lib/index.css +2 -2
- package/lib/index.css.map +1 -1
- package/lib/package.json +2 -1
- package/lib/stores/editor/editor-state/element-editor-state/function-activator/testable/FunctionTestableState.d.ts +5 -5
- package/lib/stores/editor/editor-state/element-editor-state/function-activator/testable/FunctionTestableState.d.ts.map +1 -1
- package/lib/stores/editor/editor-state/element-editor-state/function-activator/testable/FunctionTestableState.js +4 -4
- package/lib/stores/editor/editor-state/element-editor-state/function-activator/testable/FunctionTestableState.js.map +1 -1
- package/lib/stores/editor/utils/TestableUtils.d.ts +2 -1
- package/lib/stores/editor/utils/TestableUtils.d.ts.map +1 -1
- package/lib/stores/editor/utils/TestableUtils.js +16 -1
- package/lib/stores/editor/utils/TestableUtils.js.map +1 -1
- package/lib/stores/graph-modifier/DomainGraphModifierHelper.d.ts +3 -3
- package/lib/stores/graph-modifier/DomainGraphModifierHelper.d.ts.map +1 -1
- package/lib/stores/graph-modifier/DomainGraphModifierHelper.js +2 -2
- package/lib/stores/graph-modifier/DomainGraphModifierHelper.js.map +1 -1
- package/package.json +9 -8
- package/src/application/LegendStudioApplicationConfig.ts +1 -1
- package/src/components/editor/editor-group/dataProduct/DataProductEditor.tsx +160 -96
- package/src/stores/editor/editor-state/element-editor-state/function-activator/testable/FunctionTestableState.ts +8 -8
- package/src/stores/editor/utils/TestableUtils.ts +18 -0
- package/src/stores/graph-modifier/DomainGraphModifierHelper.ts +4 -4
@@ -47,7 +47,7 @@ import {
|
|
47
47
|
type RawLambda,
|
48
48
|
type Association,
|
49
49
|
type INTERNAL__UnknownFunctionActivator,
|
50
|
-
type
|
50
|
+
type FunctionTestData,
|
51
51
|
type ObserverContext,
|
52
52
|
type FunctionParameterValue,
|
53
53
|
type FunctionTest,
|
@@ -392,16 +392,16 @@ export const INTERNAL__UnknownFunctionActivator_setContent = action(
|
|
392
392
|
|
393
393
|
export const functionTestable_setEmbeddedData = action(
|
394
394
|
(
|
395
|
-
|
395
|
+
functionTestData: FunctionTestData,
|
396
396
|
embeddedData: EmbeddedData,
|
397
397
|
observerContext: ObserverContext,
|
398
398
|
): void => {
|
399
|
-
|
399
|
+
functionTestData.data = observe_EmbeddedData(embeddedData, observerContext);
|
400
400
|
},
|
401
401
|
);
|
402
402
|
|
403
403
|
export const functionTestable_deleteDataStore = action(
|
404
|
-
(suite: FunctionTestSuite, val:
|
404
|
+
(suite: FunctionTestSuite, val: FunctionTestData): void => {
|
405
405
|
deleteEntry(suite.testData ?? [], val);
|
406
406
|
},
|
407
407
|
);
|