@finos/legend-application-studio 28.19.45 → 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.
Files changed (28) hide show
  1. package/lib/application/LegendStudioApplicationConfig.d.ts +2 -1
  2. package/lib/application/LegendStudioApplicationConfig.d.ts.map +1 -1
  3. package/lib/application/LegendStudioApplicationConfig.js +2 -1
  4. package/lib/application/LegendStudioApplicationConfig.js.map +1 -1
  5. package/lib/components/editor/editor-group/dataProduct/DataProductEditor.d.ts.map +1 -1
  6. package/lib/components/editor/editor-group/dataProduct/DataProductEditor.js +45 -27
  7. package/lib/components/editor/editor-group/dataProduct/DataProductEditor.js.map +1 -1
  8. package/lib/index.css +2 -2
  9. package/lib/index.css.map +1 -1
  10. package/lib/package.json +2 -1
  11. package/lib/stores/editor/editor-state/element-editor-state/function-activator/testable/FunctionTestableState.d.ts +5 -5
  12. package/lib/stores/editor/editor-state/element-editor-state/function-activator/testable/FunctionTestableState.d.ts.map +1 -1
  13. package/lib/stores/editor/editor-state/element-editor-state/function-activator/testable/FunctionTestableState.js +4 -4
  14. package/lib/stores/editor/editor-state/element-editor-state/function-activator/testable/FunctionTestableState.js.map +1 -1
  15. package/lib/stores/editor/utils/TestableUtils.d.ts +2 -1
  16. package/lib/stores/editor/utils/TestableUtils.d.ts.map +1 -1
  17. package/lib/stores/editor/utils/TestableUtils.js +16 -1
  18. package/lib/stores/editor/utils/TestableUtils.js.map +1 -1
  19. package/lib/stores/graph-modifier/DomainGraphModifierHelper.d.ts +3 -3
  20. package/lib/stores/graph-modifier/DomainGraphModifierHelper.d.ts.map +1 -1
  21. package/lib/stores/graph-modifier/DomainGraphModifierHelper.js +2 -2
  22. package/lib/stores/graph-modifier/DomainGraphModifierHelper.js.map +1 -1
  23. package/package.json +9 -8
  24. package/src/application/LegendStudioApplicationConfig.ts +1 -1
  25. package/src/components/editor/editor-group/dataProduct/DataProductEditor.tsx +160 -96
  26. package/src/stores/editor/editor-state/element-editor-state/function-activator/testable/FunctionTestableState.ts +8 -8
  27. package/src/stores/editor/utils/TestableUtils.ts +18 -0
  28. 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 FunctionStoreTestData,
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
- store: FunctionStoreTestData,
395
+ functionTestData: FunctionTestData,
396
396
  embeddedData: EmbeddedData,
397
397
  observerContext: ObserverContext,
398
398
  ): void => {
399
- store.data = observe_EmbeddedData(embeddedData, observerContext);
399
+ functionTestData.data = observe_EmbeddedData(embeddedData, observerContext);
400
400
  },
401
401
  );
402
402
 
403
403
  export const functionTestable_deleteDataStore = action(
404
- (suite: FunctionTestSuite, val: FunctionStoreTestData): void => {
404
+ (suite: FunctionTestSuite, val: FunctionTestData): void => {
405
405
  deleteEntry(suite.testData ?? [], val);
406
406
  },
407
407
  );