@finos/legend-application-studio 13.0.0
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/LICENSE +201 -0
- package/README.md +3 -0
- package/lib/application/LegendStudio.d.ts +26 -0
- package/lib/application/LegendStudio.d.ts.map +1 -0
- package/lib/application/LegendStudio.js +60 -0
- package/lib/application/LegendStudio.js.map +1 -0
- package/lib/application/LegendStudioApplicationConfig.d.ts +72 -0
- package/lib/application/LegendStudioApplicationConfig.d.ts.map +1 -0
- package/lib/application/LegendStudioApplicationConfig.js +79 -0
- package/lib/application/LegendStudioApplicationConfig.js.map +1 -0
- package/lib/application/LegendStudioPluginManager.d.ts +33 -0
- package/lib/application/LegendStudioPluginManager.d.ts.map +1 -0
- package/lib/application/LegendStudioPluginManager.js +54 -0
- package/lib/application/LegendStudioPluginManager.js.map +1 -0
- package/lib/components/Core_LegendStudioApplicationPlugin.d.ts +25 -0
- package/lib/components/Core_LegendStudioApplicationPlugin.d.ts.map +1 -0
- package/lib/components/Core_LegendStudioApplicationPlugin.js +79 -0
- package/lib/components/Core_LegendStudioApplicationPlugin.js.map +1 -0
- package/lib/components/DSLExternalFormat_CodeSnippets.d.ts +21 -0
- package/lib/components/DSLExternalFormat_CodeSnippets.d.ts.map +1 -0
- package/lib/components/DSLExternalFormat_CodeSnippets.js +74 -0
- package/lib/components/DSLExternalFormat_CodeSnippets.js.map +1 -0
- package/lib/components/DSLExternalFormat_LegendStudioApplicationPlugin.d.ts +41 -0
- package/lib/components/DSLExternalFormat_LegendStudioApplicationPlugin.d.ts.map +1 -0
- package/lib/components/DSLExternalFormat_LegendStudioApplicationPlugin.js +289 -0
- package/lib/components/DSLExternalFormat_LegendStudioApplicationPlugin.js.map +1 -0
- package/lib/components/DSLExternalFormat_LegendStudioDocumentation.d.ts +21 -0
- package/lib/components/DSLExternalFormat_LegendStudioDocumentation.d.ts.map +1 -0
- package/lib/components/DSLExternalFormat_LegendStudioDocumentation.js +22 -0
- package/lib/components/DSLExternalFormat_LegendStudioDocumentation.js.map +1 -0
- package/lib/components/EditorComponentTestUtils.d.ts +129 -0
- package/lib/components/EditorComponentTestUtils.d.ts.map +1 -0
- package/lib/components/EditorComponentTestUtils.js +250 -0
- package/lib/components/EditorComponentTestUtils.js.map +1 -0
- package/lib/components/LegendStudioAppInfo.d.ts +21 -0
- package/lib/components/LegendStudioAppInfo.d.ts.map +1 -0
- package/lib/components/LegendStudioAppInfo.js +106 -0
- package/lib/components/LegendStudioAppInfo.js.map +1 -0
- package/lib/components/LegendStudioApplication.d.ts +28 -0
- package/lib/components/LegendStudioApplication.d.ts.map +1 -0
- package/lib/components/LegendStudioApplication.js +80 -0
- package/lib/components/LegendStudioApplication.js.map +1 -0
- package/lib/components/LegendStudioBaseStoreProvider.d.ts +25 -0
- package/lib/components/LegendStudioBaseStoreProvider.d.ts.map +1 -0
- package/lib/components/LegendStudioBaseStoreProvider.js +34 -0
- package/lib/components/LegendStudioBaseStoreProvider.js.map +1 -0
- package/lib/components/LegendStudioTestID.d.ts +47 -0
- package/lib/components/LegendStudioTestID.d.ts.map +1 -0
- package/lib/components/LegendStudioTestID.js +52 -0
- package/lib/components/LegendStudioTestID.js.map +1 -0
- package/lib/components/editor/ActivityBar.d.ts +28 -0
- package/lib/components/editor/ActivityBar.d.ts.map +1 -0
- package/lib/components/editor/ActivityBar.js +166 -0
- package/lib/components/editor/ActivityBar.js.map +1 -0
- package/lib/components/editor/Editor.d.ts +18 -0
- package/lib/components/editor/Editor.d.ts.map +1 -0
- package/lib/components/editor/Editor.js +176 -0
- package/lib/components/editor/Editor.js.map +1 -0
- package/lib/components/editor/EditorStoreProvider.d.ts +23 -0
- package/lib/components/editor/EditorStoreProvider.d.ts.map +1 -0
- package/lib/components/editor/EditorStoreProvider.js +39 -0
- package/lib/components/editor/EditorStoreProvider.js.map +1 -0
- package/lib/components/editor/StatusBar.d.ts +22 -0
- package/lib/components/editor/StatusBar.d.ts.map +1 -0
- package/lib/components/editor/StatusBar.js +145 -0
- package/lib/components/editor/StatusBar.js.map +1 -0
- package/lib/components/editor/aux-panel/AuxiliaryPanel.d.ts +20 -0
- package/lib/components/editor/aux-panel/AuxiliaryPanel.d.ts.map +1 -0
- package/lib/components/editor/aux-panel/AuxiliaryPanel.js +58 -0
- package/lib/components/editor/aux-panel/AuxiliaryPanel.js.map +1 -0
- package/lib/components/editor/aux-panel/Console.d.ts +20 -0
- package/lib/components/editor/aux-panel/Console.d.ts.map +1 -0
- package/lib/components/editor/aux-panel/Console.js +21 -0
- package/lib/components/editor/aux-panel/Console.js.map +1 -0
- package/lib/components/editor/aux-panel/DevTool.d.ts +20 -0
- package/lib/components/editor/aux-panel/DevTool.d.ts.map +1 -0
- package/lib/components/editor/aux-panel/DevTool.js +35 -0
- package/lib/components/editor/aux-panel/DevTool.js.map +1 -0
- package/lib/components/editor/command/project-search.css +1 -0
- package/lib/components/editor/command/project-search.css.map +1 -0
- package/lib/components/editor/command-center/ProjectSearchCommand.d.ts +20 -0
- package/lib/components/editor/command-center/ProjectSearchCommand.d.ts.map +1 -0
- package/lib/components/editor/command-center/ProjectSearchCommand.js +60 -0
- package/lib/components/editor/command-center/ProjectSearchCommand.js.map +1 -0
- package/lib/components/editor/edit-panel/EditPanel.d.ts +22 -0
- package/lib/components/editor/edit-panel/EditPanel.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/EditPanel.js +212 -0
- package/lib/components/editor/edit-panel/EditPanel.js.map +1 -0
- package/lib/components/editor/edit-panel/FileGenerationViewer.d.ts +20 -0
- package/lib/components/editor/edit-panel/FileGenerationViewer.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/FileGenerationViewer.js +32 -0
- package/lib/components/editor/edit-panel/FileGenerationViewer.js.map +1 -0
- package/lib/components/editor/edit-panel/FunctionEditor.d.ts +36 -0
- package/lib/components/editor/edit-panel/FunctionEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/FunctionEditor.js +278 -0
- package/lib/components/editor/edit-panel/FunctionEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/GenerationSpecificationEditor.d.ts +20 -0
- package/lib/components/editor/edit-panel/GenerationSpecificationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/GenerationSpecificationEditor.js +216 -0
- package/lib/components/editor/edit-panel/GenerationSpecificationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/GrammarTextEditor.d.ts +23 -0
- package/lib/components/editor/edit-panel/GrammarTextEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/GrammarTextEditor.js +892 -0
- package/lib/components/editor/edit-panel/GrammarTextEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/ModelLoader.d.ts +20 -0
- package/lib/components/editor/edit-panel/ModelLoader.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/ModelLoader.js +96 -0
- package/lib/components/editor/edit-panel/ModelLoader.js.map +1 -0
- package/lib/components/editor/edit-panel/RuntimeEditor.d.ts +43 -0
- package/lib/components/editor/edit-panel/RuntimeEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/RuntimeEditor.js +364 -0
- package/lib/components/editor/edit-panel/RuntimeEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/UnsupportedElementEditor.d.ts +26 -0
- package/lib/components/editor/edit-panel/UnsupportedElementEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/UnsupportedElementEditor.js +38 -0
- package/lib/components/editor/edit-panel/UnsupportedElementEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/connection-editor/ConnectionEditor.d.ts +28 -0
- package/lib/components/editor/edit-panel/connection-editor/ConnectionEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/connection-editor/ConnectionEditor.js +75 -0
- package/lib/components/editor/edit-panel/connection-editor/ConnectionEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/connection-editor/DatabaseBuilder.d.ts +31 -0
- package/lib/components/editor/edit-panel/connection-editor/DatabaseBuilder.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/connection-editor/DatabaseBuilder.js +123 -0
- package/lib/components/editor/edit-panel/connection-editor/DatabaseBuilder.js.map +1 -0
- package/lib/components/editor/edit-panel/connection-editor/FlatDataConnectionEditor.d.ts +24 -0
- package/lib/components/editor/edit-panel/connection-editor/FlatDataConnectionEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/connection-editor/FlatDataConnectionEditor.js +26 -0
- package/lib/components/editor/edit-panel/connection-editor/FlatDataConnectionEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/connection-editor/RelationalDatabaseConnectionEditor.d.ts +66 -0
- package/lib/components/editor/edit-panel/connection-editor/RelationalDatabaseConnectionEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/connection-editor/RelationalDatabaseConnectionEditor.js +321 -0
- package/lib/components/editor/edit-panel/connection-editor/RelationalDatabaseConnectionEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/data-editor/DataElementEditor.d.ts +34 -0
- package/lib/components/editor/edit-panel/data-editor/DataElementEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/data-editor/DataElementEditor.js +104 -0
- package/lib/components/editor/edit-panel/data-editor/DataElementEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/data-editor/EmbeddedDataEditor.d.ts +38 -0
- package/lib/components/editor/edit-panel/data-editor/EmbeddedDataEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/data-editor/EmbeddedDataEditor.js +89 -0
- package/lib/components/editor/edit-panel/data-editor/EmbeddedDataEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/data-editor/RelationalCSVDataEditor.d.ts +24 -0
- package/lib/components/editor/edit-panel/data-editor/RelationalCSVDataEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/data-editor/RelationalCSVDataEditor.js +69 -0
- package/lib/components/editor/edit-panel/data-editor/RelationalCSVDataEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/diff-editor/EntityChangeConflictEditor.d.ts +31 -0
- package/lib/components/editor/edit-panel/diff-editor/EntityChangeConflictEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/diff-editor/EntityChangeConflictEditor.js +449 -0
- package/lib/components/editor/edit-panel/diff-editor/EntityChangeConflictEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/diff-editor/EntityDiffView.d.ts +31 -0
- package/lib/components/editor/edit-panel/diff-editor/EntityDiffView.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/diff-editor/EntityDiffView.js +71 -0
- package/lib/components/editor/edit-panel/diff-editor/EntityDiffView.js.map +1 -0
- package/lib/components/editor/edit-panel/element-generation-editor/ElementGenerationEditor.d.ts +25 -0
- package/lib/components/editor/edit-panel/element-generation-editor/ElementGenerationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/element-generation-editor/ElementGenerationEditor.js +71 -0
- package/lib/components/editor/edit-panel/element-generation-editor/ElementGenerationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/element-generation-editor/ElementNativeView.d.ts +23 -0
- package/lib/components/editor/edit-panel/element-generation-editor/ElementNativeView.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/element-generation-editor/ElementNativeView.js +44 -0
- package/lib/components/editor/edit-panel/element-generation-editor/ElementNativeView.js.map +1 -0
- package/lib/components/editor/edit-panel/element-generation-editor/FileGenerationEditor.d.ts +65 -0
- package/lib/components/editor/edit-panel/element-generation-editor/FileGenerationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/element-generation-editor/FileGenerationEditor.js +398 -0
- package/lib/components/editor/edit-panel/element-generation-editor/FileGenerationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/external-format-editor/BindingElementEditor.d.ts +20 -0
- package/lib/components/editor/edit-panel/external-format-editor/BindingElementEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/external-format-editor/BindingElementEditor.js +146 -0
- package/lib/components/editor/edit-panel/external-format-editor/BindingElementEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/external-format-editor/ExternalFormatConnectionEditor.d.ts +22 -0
- package/lib/components/editor/edit-panel/external-format-editor/ExternalFormatConnectionEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/external-format-editor/ExternalFormatConnectionEditor.js +57 -0
- package/lib/components/editor/edit-panel/external-format-editor/ExternalFormatConnectionEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/external-format-editor/NewSchemaSetDriver.d.ts +31 -0
- package/lib/components/editor/edit-panel/external-format-editor/NewSchemaSetDriver.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/external-format-editor/NewSchemaSetDriver.js +66 -0
- package/lib/components/editor/edit-panel/external-format-editor/NewSchemaSetDriver.js.map +1 -0
- package/lib/components/editor/edit-panel/external-format-editor/SchemaSetElementEditor.d.ts +20 -0
- package/lib/components/editor/edit-panel/external-format-editor/SchemaSetElementEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/external-format-editor/SchemaSetElementEditor.js +153 -0
- package/lib/components/editor/edit-panel/external-format-editor/SchemaSetElementEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/ClassMappingEditor.d.ts +36 -0
- package/lib/components/editor/edit-panel/mapping-editor/ClassMappingEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/ClassMappingEditor.js +131 -0
- package/lib/components/editor/edit-panel/mapping-editor/ClassMappingEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/EnumerationMappingEditor.d.ts +33 -0
- package/lib/components/editor/edit-panel/mapping-editor/EnumerationMappingEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/EnumerationMappingEditor.js +166 -0
- package/lib/components/editor/edit-panel/mapping-editor/EnumerationMappingEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/FlatDataPropertyMappingEditor.d.ts +26 -0
- package/lib/components/editor/edit-panel/mapping-editor/FlatDataPropertyMappingEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/FlatDataPropertyMappingEditor.js +140 -0
- package/lib/components/editor/edit-panel/mapping-editor/FlatDataPropertyMappingEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/FlatDataRecordTypeTree.d.ts +22 -0
- package/lib/components/editor/edit-panel/mapping-editor/FlatDataRecordTypeTree.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/FlatDataRecordTypeTree.js +78 -0
- package/lib/components/editor/edit-panel/mapping-editor/FlatDataRecordTypeTree.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/InstanceSetImplementationEditor.d.ts +30 -0
- package/lib/components/editor/edit-panel/mapping-editor/InstanceSetImplementationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/InstanceSetImplementationEditor.js +270 -0
- package/lib/components/editor/edit-panel/mapping-editor/InstanceSetImplementationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/InstanceSetImplementationSourceSelectorModal.d.ts +38 -0
- package/lib/components/editor/edit-panel/mapping-editor/InstanceSetImplementationSourceSelectorModal.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/InstanceSetImplementationSourceSelectorModal.js +118 -0
- package/lib/components/editor/edit-panel/mapping-editor/InstanceSetImplementationSourceSelectorModal.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingEditor.d.ts +21 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingEditor.js +115 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingExecutionBuilder.d.ts +65 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingExecutionBuilder.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingExecutionBuilder.js +266 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingExecutionBuilder.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingExplorer.d.ts +34 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingExplorer.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingExplorer.js +214 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingExplorer.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingTestEditor.d.ts +70 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingTestEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingTestEditor.js +238 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingTestEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingTestsExplorer.d.ts +37 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingTestsExplorer.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingTestsExplorer.js +157 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingTestsExplorer.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/NewMappingElementModal.d.ts +20 -0
- package/lib/components/editor/edit-panel/mapping-editor/NewMappingElementModal.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/NewMappingElementModal.js +152 -0
- package/lib/components/editor/edit-panel/mapping-editor/NewMappingElementModal.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/OperationSetImplementationEditor.d.ts +24 -0
- package/lib/components/editor/edit-panel/mapping-editor/OperationSetImplementationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/OperationSetImplementationEditor.js +100 -0
- package/lib/components/editor/edit-panel/mapping-editor/OperationSetImplementationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/PropertyMappingsEditor.d.ts +27 -0
- package/lib/components/editor/edit-panel/mapping-editor/PropertyMappingsEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/PropertyMappingsEditor.js +149 -0
- package/lib/components/editor/edit-panel/mapping-editor/PropertyMappingsEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/PurePropertyMappingEditor.d.ts +26 -0
- package/lib/components/editor/edit-panel/mapping-editor/PurePropertyMappingEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/PurePropertyMappingEditor.js +167 -0
- package/lib/components/editor/edit-panel/mapping-editor/PurePropertyMappingEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/relational/RelationalPropertyMappingEditor.d.ts +26 -0
- package/lib/components/editor/edit-panel/mapping-editor/relational/RelationalPropertyMappingEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/relational/RelationalPropertyMappingEditor.js +134 -0
- package/lib/components/editor/edit-panel/mapping-editor/relational/RelationalPropertyMappingEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/relational/TableOrViewSourceTree.d.ts +45 -0
- package/lib/components/editor/edit-panel/mapping-editor/relational/TableOrViewSourceTree.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/relational/TableOrViewSourceTree.js +205 -0
- package/lib/components/editor/edit-panel/mapping-editor/relational/TableOrViewSourceTree.js.map +1 -0
- package/lib/components/editor/edit-panel/project-configuration-editor/ProjectConfigurationEditor.d.ts +20 -0
- package/lib/components/editor/edit-panel/project-configuration-editor/ProjectConfigurationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/project-configuration-editor/ProjectConfigurationEditor.js +221 -0
- package/lib/components/editor/edit-panel/project-configuration-editor/ProjectConfigurationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/NewServiceModal.d.ts +27 -0
- package/lib/components/editor/edit-panel/service-editor/NewServiceModal.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/NewServiceModal.js +57 -0
- package/lib/components/editor/edit-panel/service-editor/NewServiceModal.js.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceEditor.d.ts +20 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceEditor.js +127 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceExecutionEditor.d.ts +33 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceExecutionEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceExecutionEditor.js +277 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceExecutionEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceExecutionQueryEditor.d.ts +24 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceExecutionQueryEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceExecutionQueryEditor.js +111 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceExecutionQueryEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceRegistrationEditor.d.ts +20 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceRegistrationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceRegistrationEditor.js +94 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceRegistrationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestDataEditor.d.ts +33 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestDataEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestDataEditor.js +143 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestDataEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestableEditor.d.ts +37 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestableEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestableEditor.js +61 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestableEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestsEditor.d.ts +15 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestsEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestsEditor.js +179 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestsEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/testable/TestAssertionEditor.d.ts +23 -0
- package/lib/components/editor/edit-panel/testable/TestAssertionEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/testable/TestAssertionEditor.js +109 -0
- package/lib/components/editor/edit-panel/testable/TestAssertionEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/AssociationEditor.d.ts +23 -0
- package/lib/components/editor/edit-panel/uml-editor/AssociationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/AssociationEditor.js +188 -0
- package/lib/components/editor/edit-panel/uml-editor/AssociationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/ClassEditor.d.ts +31 -0
- package/lib/components/editor/edit-panel/uml-editor/ClassEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/ClassEditor.js +521 -0
- package/lib/components/editor/edit-panel/uml-editor/ClassEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/EnumerationEditor.d.ts +23 -0
- package/lib/components/editor/edit-panel/uml-editor/EnumerationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/EnumerationEditor.js +206 -0
- package/lib/components/editor/edit-panel/uml-editor/EnumerationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/ProfileEditor.d.ts +23 -0
- package/lib/components/editor/edit-panel/uml-editor/ProfileEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/ProfileEditor.js +84 -0
- package/lib/components/editor/edit-panel/uml-editor/ProfileEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/PropertyEditor.d.ts +25 -0
- package/lib/components/editor/edit-panel/uml-editor/PropertyEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/PropertyEditor.js +92 -0
- package/lib/components/editor/edit-panel/uml-editor/PropertyEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/StereotypeSelector.d.ts +26 -0
- package/lib/components/editor/edit-panel/uml-editor/StereotypeSelector.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/StereotypeSelector.js +58 -0
- package/lib/components/editor/edit-panel/uml-editor/StereotypeSelector.js.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/TaggedValueEditor.d.ts +26 -0
- package/lib/components/editor/edit-panel/uml-editor/TaggedValueEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/TaggedValueEditor.js +69 -0
- package/lib/components/editor/edit-panel/uml-editor/TaggedValueEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/UMLEditor.d.ts +20 -0
- package/lib/components/editor/edit-panel/uml-editor/UMLEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/UMLEditor.js +31 -0
- package/lib/components/editor/edit-panel/uml-editor/UMLEditor.js.map +1 -0
- package/lib/components/editor/side-bar/CreateNewElementModal.d.ts +22 -0
- package/lib/components/editor/side-bar/CreateNewElementModal.d.ts.map +1 -0
- package/lib/components/editor/side-bar/CreateNewElementModal.js +285 -0
- package/lib/components/editor/side-bar/CreateNewElementModal.js.map +1 -0
- package/lib/components/editor/side-bar/Explorer.d.ts +20 -0
- package/lib/components/editor/side-bar/Explorer.d.ts.map +1 -0
- package/lib/components/editor/side-bar/Explorer.js +319 -0
- package/lib/components/editor/side-bar/Explorer.js.map +1 -0
- package/lib/components/editor/side-bar/LocalChanges.d.ts +20 -0
- package/lib/components/editor/side-bar/LocalChanges.d.ts.map +1 -0
- package/lib/components/editor/side-bar/LocalChanges.js +113 -0
- package/lib/components/editor/side-bar/LocalChanges.js.map +1 -0
- package/lib/components/editor/side-bar/ProjectOverview.d.ts +23 -0
- package/lib/components/editor/side-bar/ProjectOverview.d.ts.map +1 -0
- package/lib/components/editor/side-bar/ProjectOverview.js +230 -0
- package/lib/components/editor/side-bar/ProjectOverview.js.map +1 -0
- package/lib/components/editor/side-bar/SideBar.d.ts +23 -0
- package/lib/components/editor/side-bar/SideBar.d.ts.map +1 -0
- package/lib/components/editor/side-bar/SideBar.js +57 -0
- package/lib/components/editor/side-bar/SideBar.js.map +1 -0
- package/lib/components/editor/side-bar/WorkflowManager.d.ts +23 -0
- package/lib/components/editor/side-bar/WorkflowManager.d.ts.map +1 -0
- package/lib/components/editor/side-bar/WorkflowManager.js +161 -0
- package/lib/components/editor/side-bar/WorkflowManager.js.map +1 -0
- package/lib/components/editor/side-bar/WorkspaceReview.d.ts +23 -0
- package/lib/components/editor/side-bar/WorkspaceReview.d.ts.map +1 -0
- package/lib/components/editor/side-bar/WorkspaceReview.js +146 -0
- package/lib/components/editor/side-bar/WorkspaceReview.js.map +1 -0
- package/lib/components/editor/side-bar/WorkspaceSyncConflictResolver.d.ts +20 -0
- package/lib/components/editor/side-bar/WorkspaceSyncConflictResolver.d.ts.map +1 -0
- package/lib/components/editor/side-bar/WorkspaceSyncConflictResolver.js +79 -0
- package/lib/components/editor/side-bar/WorkspaceSyncConflictResolver.js.map +1 -0
- package/lib/components/editor/side-bar/WorkspaceUpdateConflictResolver.d.ts +20 -0
- package/lib/components/editor/side-bar/WorkspaceUpdateConflictResolver.d.ts.map +1 -0
- package/lib/components/editor/side-bar/WorkspaceUpdateConflictResolver.js +70 -0
- package/lib/components/editor/side-bar/WorkspaceUpdateConflictResolver.js.map +1 -0
- package/lib/components/editor/side-bar/WorkspaceUpdater.d.ts +20 -0
- package/lib/components/editor/side-bar/WorkspaceUpdater.d.ts.map +1 -0
- package/lib/components/editor/side-bar/WorkspaceUpdater.js +103 -0
- package/lib/components/editor/side-bar/WorkspaceUpdater.js.map +1 -0
- package/lib/components/editor/side-bar/testable/GlobalTestRunner.d.ts +24 -0
- package/lib/components/editor/side-bar/testable/GlobalTestRunner.d.ts.map +1 -0
- package/lib/components/editor/side-bar/testable/GlobalTestRunner.js +129 -0
- package/lib/components/editor/side-bar/testable/GlobalTestRunner.js.map +1 -0
- package/lib/components/project-viewer/ProjectViewer.d.ts +18 -0
- package/lib/components/project-viewer/ProjectViewer.d.ts.map +1 -0
- package/lib/components/project-viewer/ProjectViewer.js +166 -0
- package/lib/components/project-viewer/ProjectViewer.js.map +1 -0
- package/lib/components/project-viewer/ProjectViewerStoreProvider.d.ts +23 -0
- package/lib/components/project-viewer/ProjectViewerStoreProvider.d.ts.map +1 -0
- package/lib/components/project-viewer/ProjectViewerStoreProvider.js +36 -0
- package/lib/components/project-viewer/ProjectViewerStoreProvider.js.map +1 -0
- package/lib/components/shared/DiffView.d.ts +35 -0
- package/lib/components/shared/DiffView.d.ts.map +1 -0
- package/lib/components/shared/DiffView.js +94 -0
- package/lib/components/shared/DiffView.js.map +1 -0
- package/lib/components/shared/ElementIconUtils.d.ts +21 -0
- package/lib/components/shared/ElementIconUtils.d.ts.map +1 -0
- package/lib/components/shared/ElementIconUtils.js +96 -0
- package/lib/components/shared/ElementIconUtils.js.map +1 -0
- package/lib/components/shared/MultiplicityBadge.d.ts +21 -0
- package/lib/components/shared/MultiplicityBadge.d.ts.map +1 -0
- package/lib/components/shared/MultiplicityBadge.js +25 -0
- package/lib/components/shared/MultiplicityBadge.js.map +1 -0
- package/lib/components/shared/StudioLambdaEditor.d.ts +40 -0
- package/lib/components/shared/StudioLambdaEditor.d.ts.map +1 -0
- package/lib/components/shared/StudioLambdaEditor.js +50 -0
- package/lib/components/shared/StudioLambdaEditor.js.map +1 -0
- package/lib/components/shared/StudioTextInputEditor.d.ts +28 -0
- package/lib/components/shared/StudioTextInputEditor.d.ts.map +1 -0
- package/lib/components/shared/StudioTextInputEditor.js +36 -0
- package/lib/components/shared/StudioTextInputEditor.js.map +1 -0
- package/lib/components/shared/TypeTree.d.ts +22 -0
- package/lib/components/shared/TypeTree.d.ts.map +1 -0
- package/lib/components/shared/TypeTree.js +165 -0
- package/lib/components/shared/TypeTree.js.map +1 -0
- package/lib/components/workspace-review/WorkspaceReview.d.ts +18 -0
- package/lib/components/workspace-review/WorkspaceReview.d.ts.map +1 -0
- package/lib/components/workspace-review/WorkspaceReview.js +84 -0
- package/lib/components/workspace-review/WorkspaceReview.js.map +1 -0
- package/lib/components/workspace-review/WorkspaceReviewPanel.d.ts +20 -0
- package/lib/components/workspace-review/WorkspaceReviewPanel.d.ts.map +1 -0
- package/lib/components/workspace-review/WorkspaceReviewPanel.js +57 -0
- package/lib/components/workspace-review/WorkspaceReviewPanel.js.map +1 -0
- package/lib/components/workspace-review/WorkspaceReviewSideBar.d.ts +20 -0
- package/lib/components/workspace-review/WorkspaceReviewSideBar.d.ts.map +1 -0
- package/lib/components/workspace-review/WorkspaceReviewSideBar.js +106 -0
- package/lib/components/workspace-review/WorkspaceReviewSideBar.js.map +1 -0
- package/lib/components/workspace-review/WorkspaceReviewStoreProvider.d.ts +22 -0
- package/lib/components/workspace-review/WorkspaceReviewStoreProvider.d.ts.map +1 -0
- package/lib/components/workspace-review/WorkspaceReviewStoreProvider.js +34 -0
- package/lib/components/workspace-review/WorkspaceReviewStoreProvider.js.map +1 -0
- package/lib/components/workspace-setup/ProjectCreateModal.d.ts +20 -0
- package/lib/components/workspace-setup/ProjectCreateModal.d.ts.map +1 -0
- package/lib/components/workspace-setup/ProjectCreateModal.js +203 -0
- package/lib/components/workspace-setup/ProjectCreateModal.js.map +1 -0
- package/lib/components/workspace-setup/ProjectSelector.d.ts +22 -0
- package/lib/components/workspace-setup/ProjectSelector.d.ts.map +1 -0
- package/lib/components/workspace-setup/ProjectSelector.js +65 -0
- package/lib/components/workspace-setup/ProjectSelector.js.map +1 -0
- package/lib/components/workspace-setup/WorkspaceSelector.d.ts +22 -0
- package/lib/components/workspace-setup/WorkspaceSelector.d.ts.map +1 -0
- package/lib/components/workspace-setup/WorkspaceSelector.js +57 -0
- package/lib/components/workspace-setup/WorkspaceSelector.js.map +1 -0
- package/lib/components/workspace-setup/WorkspaceSetup.d.ts +18 -0
- package/lib/components/workspace-setup/WorkspaceSetup.d.ts.map +1 -0
- package/lib/components/workspace-setup/WorkspaceSetup.js +155 -0
- package/lib/components/workspace-setup/WorkspaceSetup.js.map +1 -0
- package/lib/components/workspace-setup/WorkspaceSetupStoreProvider.d.ts +23 -0
- package/lib/components/workspace-setup/WorkspaceSetupStoreProvider.d.ts.map +1 -0
- package/lib/components/workspace-setup/WorkspaceSetupStoreProvider.js +34 -0
- package/lib/components/workspace-setup/WorkspaceSetupStoreProvider.js.map +1 -0
- package/lib/index.css +17 -0
- package/lib/index.css.map +1 -0
- package/lib/index.d.ts +70 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +75 -0
- package/lib/index.js.map +1 -0
- package/lib/package.json +101 -0
- package/lib/stores/AbstractConflictResolutionState.d.ts +39 -0
- package/lib/stores/AbstractConflictResolutionState.d.ts.map +1 -0
- package/lib/stores/AbstractConflictResolutionState.js +32 -0
- package/lib/stores/AbstractConflictResolutionState.js.map +1 -0
- package/lib/stores/ChangeDetectionEvent.d.ts +29 -0
- package/lib/stores/ChangeDetectionEvent.d.ts.map +1 -0
- package/lib/stores/ChangeDetectionEvent.js +31 -0
- package/lib/stores/ChangeDetectionEvent.js.map +1 -0
- package/lib/stores/ChangeDetectionState.d.ts +211 -0
- package/lib/stores/ChangeDetectionState.d.ts.map +1 -0
- package/lib/stores/ChangeDetectionState.js +523 -0
- package/lib/stores/ChangeDetectionState.js.map +1 -0
- package/lib/stores/DSLData_LegendStudioApplicationPlugin_Extension.d.ts +51 -0
- package/lib/stores/DSLData_LegendStudioApplicationPlugin_Extension.d.ts.map +1 -0
- package/lib/stores/DSLData_LegendStudioApplicationPlugin_Extension.js +17 -0
- package/lib/stores/DSLData_LegendStudioApplicationPlugin_Extension.js.map +1 -0
- package/lib/stores/DSLGenerationSpecification_LegendStudioApplicationPlugin_Extension.d.ts +42 -0
- package/lib/stores/DSLGenerationSpecification_LegendStudioApplicationPlugin_Extension.d.ts.map +1 -0
- package/lib/stores/DSLGenerationSpecification_LegendStudioApplicationPlugin_Extension.js +17 -0
- package/lib/stores/DSLGenerationSpecification_LegendStudioApplicationPlugin_Extension.js.map +1 -0
- package/lib/stores/DSLMapping_LegendStudioApplicationPlugin_Extension.d.ts +138 -0
- package/lib/stores/DSLMapping_LegendStudioApplicationPlugin_Extension.d.ts.map +1 -0
- package/lib/stores/DSLMapping_LegendStudioApplicationPlugin_Extension.js +17 -0
- package/lib/stores/DSLMapping_LegendStudioApplicationPlugin_Extension.js.map +1 -0
- package/lib/stores/DSLService_LegendStudioApplicationPlugin_Extension.d.ts +35 -0
- package/lib/stores/DSLService_LegendStudioApplicationPlugin_Extension.d.ts.map +1 -0
- package/lib/stores/DSLService_LegendStudioApplicationPlugin_Extension.js +17 -0
- package/lib/stores/DSLService_LegendStudioApplicationPlugin_Extension.js.map +1 -0
- package/lib/stores/EditorConfig.d.ts +75 -0
- package/lib/stores/EditorConfig.d.ts.map +1 -0
- package/lib/stores/EditorConfig.js +81 -0
- package/lib/stores/EditorConfig.js.map +1 -0
- package/lib/stores/EditorGraphState.d.ts +133 -0
- package/lib/stores/EditorGraphState.d.ts.map +1 -0
- package/lib/stores/EditorGraphState.js +848 -0
- package/lib/stores/EditorGraphState.js.map +1 -0
- package/lib/stores/EditorSDLCState.d.ts +59 -0
- package/lib/stores/EditorSDLCState.d.ts.map +1 -0
- package/lib/stores/EditorSDLCState.js +245 -0
- package/lib/stores/EditorSDLCState.js.map +1 -0
- package/lib/stores/EditorStore.d.ts +174 -0
- package/lib/stores/EditorStore.d.ts.map +1 -0
- package/lib/stores/EditorStore.js +992 -0
- package/lib/stores/EditorStore.js.map +1 -0
- package/lib/stores/EditorStoreTestUtils.d.ts +21 -0
- package/lib/stores/EditorStoreTestUtils.d.ts.map +1 -0
- package/lib/stores/EditorStoreTestUtils.js +54 -0
- package/lib/stores/EditorStoreTestUtils.js.map +1 -0
- package/lib/stores/ExplorerTreeState.d.ts +67 -0
- package/lib/stores/ExplorerTreeState.d.ts.map +1 -0
- package/lib/stores/ExplorerTreeState.js +271 -0
- package/lib/stores/ExplorerTreeState.js.map +1 -0
- package/lib/stores/LegendStudioAppEvent.d.ts +29 -0
- package/lib/stores/LegendStudioAppEvent.d.ts.map +1 -0
- package/lib/stores/LegendStudioAppEvent.js +34 -0
- package/lib/stores/LegendStudioAppEvent.js.map +1 -0
- package/lib/stores/LegendStudioApplicationNavigationContext.d.ts +38 -0
- package/lib/stores/LegendStudioApplicationNavigationContext.d.ts.map +1 -0
- package/lib/stores/LegendStudioApplicationNavigationContext.js +41 -0
- package/lib/stores/LegendStudioApplicationNavigationContext.js.map +1 -0
- package/lib/stores/LegendStudioApplicationPlugin.d.ts +218 -0
- package/lib/stores/LegendStudioApplicationPlugin.d.ts.map +1 -0
- package/lib/stores/LegendStudioApplicationPlugin.js +27 -0
- package/lib/stores/LegendStudioApplicationPlugin.js.map +1 -0
- package/lib/stores/LegendStudioBaseStore.d.ts +38 -0
- package/lib/stores/LegendStudioBaseStore.d.ts.map +1 -0
- package/lib/stores/LegendStudioBaseStore.js +159 -0
- package/lib/stores/LegendStudioBaseStore.js.map +1 -0
- package/lib/stores/LegendStudioCodeSnippets.d.ts +43 -0
- package/lib/stores/LegendStudioCodeSnippets.d.ts.map +1 -0
- package/lib/stores/LegendStudioCodeSnippets.js +307 -0
- package/lib/stores/LegendStudioCodeSnippets.js.map +1 -0
- package/lib/stores/LegendStudioDocumentation.d.ts +63 -0
- package/lib/stores/LegendStudioDocumentation.d.ts.map +1 -0
- package/lib/stores/LegendStudioDocumentation.js +73 -0
- package/lib/stores/LegendStudioDocumentation.js.map +1 -0
- package/lib/stores/LegendStudioEventService.d.ts +23 -0
- package/lib/stores/LegendStudioEventService.d.ts.map +1 -0
- package/lib/stores/LegendStudioEventService.js +29 -0
- package/lib/stores/LegendStudioEventService.js.map +1 -0
- package/lib/stores/LegendStudioRouter.d.ts +76 -0
- package/lib/stores/LegendStudioRouter.d.ts.map +1 -0
- package/lib/stores/LegendStudioRouter.js +119 -0
- package/lib/stores/LegendStudioRouter.js.map +1 -0
- package/lib/stores/StoreRelational_LegendStudioApplicationPlugin_Extension.d.ts +61 -0
- package/lib/stores/StoreRelational_LegendStudioApplicationPlugin_Extension.d.ts.map +1 -0
- package/lib/stores/StoreRelational_LegendStudioApplicationPlugin_Extension.js +17 -0
- package/lib/stores/StoreRelational_LegendStudioApplicationPlugin_Extension.js.map +1 -0
- package/lib/stores/aux-panel-state/DevToolState.d.ts +21 -0
- package/lib/stores/aux-panel-state/DevToolState.d.ts.map +1 -0
- package/lib/stores/aux-panel-state/DevToolState.js +24 -0
- package/lib/stores/aux-panel-state/DevToolState.js.map +1 -0
- package/lib/stores/editor/EditorMode.d.ts +22 -0
- package/lib/stores/editor/EditorMode.d.ts.map +1 -0
- package/lib/stores/editor/EditorMode.js +18 -0
- package/lib/stores/editor/EditorMode.js.map +1 -0
- package/lib/stores/editor/NewElementState.d.ts +125 -0
- package/lib/stores/editor/NewElementState.d.ts.map +1 -0
- package/lib/stores/editor/NewElementState.js +553 -0
- package/lib/stores/editor/NewElementState.js.map +1 -0
- package/lib/stores/editor/StandardEditorMode.d.ts +23 -0
- package/lib/stores/editor/StandardEditorMode.d.ts.map +1 -0
- package/lib/stores/editor/StandardEditorMode.js +28 -0
- package/lib/stores/editor/StandardEditorMode.js.map +1 -0
- package/lib/stores/editor-state/EditorState.d.ts +26 -0
- package/lib/stores/editor-state/EditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/EditorState.js +27 -0
- package/lib/stores/editor-state/EditorState.js.map +1 -0
- package/lib/stores/editor-state/ExternalFormatState.d.ts +42 -0
- package/lib/stores/editor-state/ExternalFormatState.d.ts.map +1 -0
- package/lib/stores/editor-state/ExternalFormatState.js +74 -0
- package/lib/stores/editor-state/ExternalFormatState.js.map +1 -0
- package/lib/stores/editor-state/FileGenerationState.d.ts +44 -0
- package/lib/stores/editor-state/FileGenerationState.d.ts.map +1 -0
- package/lib/stores/editor-state/FileGenerationState.js +217 -0
- package/lib/stores/editor-state/FileGenerationState.js.map +1 -0
- package/lib/stores/editor-state/FileGenerationViewerState.d.ts +27 -0
- package/lib/stores/editor-state/FileGenerationViewerState.d.ts.map +1 -0
- package/lib/stores/editor-state/FileGenerationViewerState.js +52 -0
- package/lib/stores/editor-state/FileGenerationViewerState.js.map +1 -0
- package/lib/stores/editor-state/GenerationSpecificationEditorState.d.ts +40 -0
- package/lib/stores/editor-state/GenerationSpecificationEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/GenerationSpecificationEditorState.js +73 -0
- package/lib/stores/editor-state/GenerationSpecificationEditorState.js.map +1 -0
- package/lib/stores/editor-state/GrammarTextEditorState.d.ts +31 -0
- package/lib/stores/editor-state/GrammarTextEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/GrammarTextEditorState.js +143 -0
- package/lib/stores/editor-state/GrammarTextEditorState.js.map +1 -0
- package/lib/stores/editor-state/GraphGenerationState.d.ts +74 -0
- package/lib/stores/editor-state/GraphGenerationState.d.ts.map +1 -0
- package/lib/stores/editor-state/GraphGenerationState.js +349 -0
- package/lib/stores/editor-state/GraphGenerationState.js.map +1 -0
- package/lib/stores/editor-state/ModelLoaderState.d.ts +52 -0
- package/lib/stores/editor-state/ModelLoaderState.d.ts.map +1 -0
- package/lib/stores/editor-state/ModelLoaderState.js +199 -0
- package/lib/stores/editor-state/ModelLoaderState.js.map +1 -0
- package/lib/stores/editor-state/ProjectConfigurationEditorState.d.ts +53 -0
- package/lib/stores/editor-state/ProjectConfigurationEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/ProjectConfigurationEditorState.js +191 -0
- package/lib/stores/editor-state/ProjectConfigurationEditorState.js.map +1 -0
- package/lib/stores/editor-state/UnsupportedElementEditorState.d.ts +22 -0
- package/lib/stores/editor-state/UnsupportedElementEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/UnsupportedElementEditorState.js +22 -0
- package/lib/stores/editor-state/UnsupportedElementEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/ClassEditorState.d.ts +31 -0
- package/lib/stores/editor-state/element-editor-state/ClassEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/ClassEditorState.js +88 -0
- package/lib/stores/editor-state/element-editor-state/ClassEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/ClassState.d.ts +59 -0
- package/lib/stores/editor-state/element-editor-state/ClassState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/ClassState.js +271 -0
- package/lib/stores/editor-state/element-editor-state/ClassState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/ElementEditorState.d.ts +43 -0
- package/lib/stores/editor-state/element-editor-state/ElementEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/ElementEditorState.js +104 -0
- package/lib/stores/editor-state/element-editor-state/ElementEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/ElementFileGenerationState.d.ts +30 -0
- package/lib/stores/editor-state/element-editor-state/ElementFileGenerationState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/ElementFileGenerationState.js +69 -0
- package/lib/stores/editor-state/element-editor-state/ElementFileGenerationState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/FileGenerationEditorState.d.ts +27 -0
- package/lib/stores/editor-state/element-editor-state/FileGenerationEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/FileGenerationEditorState.js +43 -0
- package/lib/stores/editor-state/element-editor-state/FileGenerationEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/FunctionEditorState.d.ts +46 -0
- package/lib/stores/editor-state/element-editor-state/FunctionEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/FunctionEditorState.js +156 -0
- package/lib/stores/editor-state/element-editor-state/FunctionEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/RuntimeEditorState.d.ts +115 -0
- package/lib/stores/editor-state/element-editor-state/RuntimeEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/RuntimeEditorState.js +522 -0
- package/lib/stores/editor-state/element-editor-state/RuntimeEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/UMLEditorState.d.ts +35 -0
- package/lib/stores/editor-state/element-editor-state/UMLEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/UMLEditorState.js +69 -0
- package/lib/stores/editor-state/element-editor-state/UMLEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/connection/ConnectionEditorState.d.ts +92 -0
- package/lib/stores/editor-state/element-editor-state/connection/ConnectionEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/connection/ConnectionEditorState.js +339 -0
- package/lib/stores/editor-state/element-editor-state/connection/ConnectionEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/connection/DatabaseBuilderState.d.ts +76 -0
- package/lib/stores/editor-state/element-editor-state/connection/DatabaseBuilderState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/connection/DatabaseBuilderState.js +422 -0
- package/lib/stores/editor-state/element-editor-state/connection/DatabaseBuilderState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/data/DataEditorState.d.ts +47 -0
- package/lib/stores/editor-state/element-editor-state/data/DataEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/data/DataEditorState.js +65 -0
- package/lib/stores/editor-state/element-editor-state/data/DataEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/data/EmbeddedDataState.d.ts +80 -0
- package/lib/stores/editor-state/element-editor-state/data/EmbeddedDataState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/data/EmbeddedDataState.js +254 -0
- package/lib/stores/editor-state/element-editor-state/data/EmbeddedDataState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/external-format/BindingEditorState.d.ts +30 -0
- package/lib/stores/editor-state/element-editor-state/external-format/BindingEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/external-format/BindingEditorState.js +47 -0
- package/lib/stores/editor-state/element-editor-state/external-format/BindingEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/external-format/SchemaSetEditorState.d.ts +68 -0
- package/lib/stores/editor-state/element-editor-state/external-format/SchemaSetEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/external-format/SchemaSetEditorState.js +277 -0
- package/lib/stores/editor-state/element-editor-state/external-format/SchemaSetEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/FlatDataInstanceSetImplementationState.d.ts +71 -0
- package/lib/stores/editor-state/element-editor-state/mapping/FlatDataInstanceSetImplementationState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/FlatDataInstanceSetImplementationState.js +236 -0
- package/lib/stores/editor-state/element-editor-state/mapping/FlatDataInstanceSetImplementationState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingEditorState.d.ts +111 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingEditorState.js +888 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingElementDecorator.d.ts +65 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingElementDecorator.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingElementDecorator.js +389 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingElementDecorator.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingElementState.d.ts +46 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingElementState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingElementState.js +73 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingElementState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingExecutionState.d.ts +101 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingExecutionState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingExecutionState.js +448 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingExecutionState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingTestState.d.ts +123 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingTestState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingTestState.js +461 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingTestState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/PureInstanceSetImplementationState.d.ts +55 -0
- package/lib/stores/editor-state/element-editor-state/mapping/PureInstanceSetImplementationState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/PureInstanceSetImplementationState.js +235 -0
- package/lib/stores/editor-state/element-editor-state/mapping/PureInstanceSetImplementationState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/UnsupportedInstanceSetImplementationState.d.ts +22 -0
- package/lib/stores/editor-state/element-editor-state/mapping/UnsupportedInstanceSetImplementationState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/UnsupportedInstanceSetImplementationState.js +25 -0
- package/lib/stores/editor-state/element-editor-state/mapping/UnsupportedInstanceSetImplementationState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/relational/DatabaseEditorHelper.d.ts +19 -0
- package/lib/stores/editor-state/element-editor-state/mapping/relational/DatabaseEditorHelper.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/relational/DatabaseEditorHelper.js +108 -0
- package/lib/stores/editor-state/element-editor-state/mapping/relational/DatabaseEditorHelper.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/relational/RelationalInstanceSetImplementationState.d.ts +69 -0
- package/lib/stores/editor-state/element-editor-state/mapping/relational/RelationalInstanceSetImplementationState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/relational/RelationalInstanceSetImplementationState.js +225 -0
- package/lib/stores/editor-state/element-editor-state/mapping/relational/RelationalInstanceSetImplementationState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceEditorState.d.ts +41 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceEditorState.js +76 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceExecutionState.d.ts +158 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceExecutionState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceExecutionState.js +566 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceExecutionState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceRegistrationState.d.ts +55 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceRegistrationState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceRegistrationState.js +207 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceRegistrationState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceTestRunnerState.d.ts +23 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceTestRunnerState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceTestRunnerState.js +24 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceTestRunnerState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestDataState.d.ts +63 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestDataState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestDataState.js +235 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestDataState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestEditorState.d.ts +81 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestEditorState.js +277 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestableState.d.ts +54 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestableState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestableState.js +208 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestableState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/testable/TestAssertionState.d.ts +86 -0
- package/lib/stores/editor-state/element-editor-state/testable/TestAssertionState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/testable/TestAssertionState.js +230 -0
- package/lib/stores/editor-state/element-editor-state/testable/TestAssertionState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/testable/TestableEditorState.d.ts +55 -0
- package/lib/stores/editor-state/element-editor-state/testable/TestableEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/testable/TestableEditorState.js +140 -0
- package/lib/stores/editor-state/element-editor-state/testable/TestableEditorState.js.map +1 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityChangeConflictEditorState.d.ts +92 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityChangeConflictEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityChangeConflictEditorState.js +383 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityChangeConflictEditorState.js.map +1 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityDiffEditorState.d.ts +28 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityDiffEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityDiffEditorState.js +43 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityDiffEditorState.js.map +1 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityDiffViewState.d.ts +68 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityDiffViewState.d.ts.map +1 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityDiffViewState.js +172 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityDiffViewState.js.map +1 -0
- package/lib/stores/graphModifier/DSLData_GraphModifierHelper.d.ts +27 -0
- package/lib/stores/graphModifier/DSLData_GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/DSLData_GraphModifierHelper.js +50 -0
- package/lib/stores/graphModifier/DSLData_GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/DSLExternalFormat_GraphModifierHelper.d.ts +33 -0
- package/lib/stores/graphModifier/DSLExternalFormat_GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/DSLExternalFormat_GraphModifierHelper.js +69 -0
- package/lib/stores/graphModifier/DSLExternalFormat_GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/DSLGeneration_GraphModifierHelper.d.ts +32 -0
- package/lib/stores/graphModifier/DSLGeneration_GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/DSLGeneration_GraphModifierHelper.js +80 -0
- package/lib/stores/graphModifier/DSLGeneration_GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/DSLMapping_GraphModifierHelper.d.ts +84 -0
- package/lib/stores/graphModifier/DSLMapping_GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/DSLMapping_GraphModifierHelper.js +249 -0
- package/lib/stores/graphModifier/DSLMapping_GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/DSLService_GraphModifierHelper.d.ts +45 -0
- package/lib/stores/graphModifier/DSLService_GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/DSLService_GraphModifierHelper.js +111 -0
- package/lib/stores/graphModifier/DSLService_GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/DomainGraphModifierHelper.d.ts +59 -0
- package/lib/stores/graphModifier/DomainGraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/DomainGraphModifierHelper.js +175 -0
- package/lib/stores/graphModifier/DomainGraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/GraphModifierHelper.d.ts +22 -0
- package/lib/stores/graphModifier/GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/GraphModifierHelper.js +45 -0
- package/lib/stores/graphModifier/GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/StoreFlatData_GraphModifierHelper.d.ts +21 -0
- package/lib/stores/graphModifier/StoreFlatData_GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/StoreFlatData_GraphModifierHelper.js +33 -0
- package/lib/stores/graphModifier/StoreFlatData_GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/StoreRelational_GraphModifierHelper.d.ts +73 -0
- package/lib/stores/graphModifier/StoreRelational_GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/StoreRelational_GraphModifierHelper.js +194 -0
- package/lib/stores/graphModifier/StoreRelational_GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/Testable_GraphModifierHelper.d.ts +22 -0
- package/lib/stores/graphModifier/Testable_GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/Testable_GraphModifierHelper.js +35 -0
- package/lib/stores/graphModifier/Testable_GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/ValueSpecificationGraphModifierHelper.d.ts +20 -0
- package/lib/stores/graphModifier/ValueSpecificationGraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/ValueSpecificationGraphModifierHelper.js +28 -0
- package/lib/stores/graphModifier/ValueSpecificationGraphModifierHelper.js.map +1 -0
- package/lib/stores/project-viewer/ProjectViewerEditorMode.d.ts +23 -0
- package/lib/stores/project-viewer/ProjectViewerEditorMode.d.ts.map +1 -0
- package/lib/stores/project-viewer/ProjectViewerEditorMode.js +34 -0
- package/lib/stores/project-viewer/ProjectViewerEditorMode.js.map +1 -0
- package/lib/stores/project-viewer/ProjectViewerStore.d.ts +59 -0
- package/lib/stores/project-viewer/ProjectViewerStore.d.ts.map +1 -0
- package/lib/stores/project-viewer/ProjectViewerStore.js +349 -0
- package/lib/stores/project-viewer/ProjectViewerStore.js.map +1 -0
- package/lib/stores/shared/DnDUtil.d.ts +68 -0
- package/lib/stores/shared/DnDUtil.d.ts.map +1 -0
- package/lib/stores/shared/DnDUtil.js +78 -0
- package/lib/stores/shared/DnDUtil.js.map +1 -0
- package/lib/stores/shared/FileGenerationTreeUtil.d.ts +57 -0
- package/lib/stores/shared/FileGenerationTreeUtil.d.ts.map +1 -0
- package/lib/stores/shared/FileGenerationTreeUtil.js +221 -0
- package/lib/stores/shared/FileGenerationTreeUtil.js.map +1 -0
- package/lib/stores/shared/MockDataUtil.d.ts +25 -0
- package/lib/stores/shared/MockDataUtil.d.ts.map +1 -0
- package/lib/stores/shared/MockDataUtil.js +114 -0
- package/lib/stores/shared/MockDataUtil.js.map +1 -0
- package/lib/stores/shared/ModelUtil.d.ts +61 -0
- package/lib/stores/shared/ModelUtil.d.ts.map +1 -0
- package/lib/stores/shared/ModelUtil.js +83 -0
- package/lib/stores/shared/ModelUtil.js.map +1 -0
- package/lib/stores/shared/PackageTreeUtil.d.ts +32 -0
- package/lib/stores/shared/PackageTreeUtil.d.ts.map +1 -0
- package/lib/stores/shared/PackageTreeUtil.js +220 -0
- package/lib/stores/shared/PackageTreeUtil.js.map +1 -0
- package/lib/stores/shared/TreeUtil.d.ts +36 -0
- package/lib/stores/shared/TreeUtil.d.ts.map +1 -0
- package/lib/stores/shared/TreeUtil.js +17 -0
- package/lib/stores/shared/TreeUtil.js.map +1 -0
- package/lib/stores/shared/testable/TestableUtils.d.ts +45 -0
- package/lib/stores/shared/testable/TestableUtils.d.ts.map +1 -0
- package/lib/stores/shared/testable/TestableUtils.js +142 -0
- package/lib/stores/shared/testable/TestableUtils.js.map +1 -0
- package/lib/stores/sidebar-state/LocalChangesState.d.ts +57 -0
- package/lib/stores/sidebar-state/LocalChangesState.d.ts.map +1 -0
- package/lib/stores/sidebar-state/LocalChangesState.js +409 -0
- package/lib/stores/sidebar-state/LocalChangesState.js.map +1 -0
- package/lib/stores/sidebar-state/ProjectOverviewState.d.ts +49 -0
- package/lib/stores/sidebar-state/ProjectOverviewState.d.ts.map +1 -0
- package/lib/stores/sidebar-state/ProjectOverviewState.js +170 -0
- package/lib/stores/sidebar-state/ProjectOverviewState.js.map +1 -0
- package/lib/stores/sidebar-state/WorkflowManagerState.d.ts +110 -0
- package/lib/stores/sidebar-state/WorkflowManagerState.d.ts.map +1 -0
- package/lib/stores/sidebar-state/WorkflowManagerState.js +352 -0
- package/lib/stores/sidebar-state/WorkflowManagerState.js.map +1 -0
- package/lib/stores/sidebar-state/WorkspaceReviewState.d.ts +47 -0
- package/lib/stores/sidebar-state/WorkspaceReviewState.d.ts.map +1 -0
- package/lib/stores/sidebar-state/WorkspaceReviewState.js +254 -0
- package/lib/stores/sidebar-state/WorkspaceReviewState.js.map +1 -0
- package/lib/stores/sidebar-state/WorkspaceSyncState.d.ts +70 -0
- package/lib/stores/sidebar-state/WorkspaceSyncState.d.ts.map +1 -0
- package/lib/stores/sidebar-state/WorkspaceSyncState.js +382 -0
- package/lib/stores/sidebar-state/WorkspaceSyncState.js.map +1 -0
- package/lib/stores/sidebar-state/WorkspaceUpdateConflictResolutionState.d.ts +53 -0
- package/lib/stores/sidebar-state/WorkspaceUpdateConflictResolutionState.d.ts.map +1 -0
- package/lib/stores/sidebar-state/WorkspaceUpdateConflictResolutionState.js +472 -0
- package/lib/stores/sidebar-state/WorkspaceUpdateConflictResolutionState.js.map +1 -0
- package/lib/stores/sidebar-state/WorkspaceUpdaterState.d.ts +36 -0
- package/lib/stores/sidebar-state/WorkspaceUpdaterState.d.ts.map +1 -0
- package/lib/stores/sidebar-state/WorkspaceUpdaterState.js +210 -0
- package/lib/stores/sidebar-state/WorkspaceUpdaterState.js.map +1 -0
- package/lib/stores/sidebar-state/testable/GlobalTestRunnerState.d.ts +102 -0
- package/lib/stores/sidebar-state/testable/GlobalTestRunnerState.d.ts.map +1 -0
- package/lib/stores/sidebar-state/testable/GlobalTestRunnerState.js +413 -0
- package/lib/stores/sidebar-state/testable/GlobalTestRunnerState.js.map +1 -0
- package/lib/stores/workspace-review/WorkspaceReviewStore.d.ts +45 -0
- package/lib/stores/workspace-review/WorkspaceReviewStore.d.ts.map +1 -0
- package/lib/stores/workspace-review/WorkspaceReviewStore.js +185 -0
- package/lib/stores/workspace-review/WorkspaceReviewStore.js.map +1 -0
- package/lib/stores/workspace-setup/WorkspaceSetupStore.d.ts +72 -0
- package/lib/stores/workspace-setup/WorkspaceSetupStore.d.ts.map +1 -0
- package/lib/stores/workspace-setup/WorkspaceSetupStore.js +240 -0
- package/lib/stores/workspace-setup/WorkspaceSetupStore.js.map +1 -0
- package/package.json +101 -0
- package/src/application/LegendStudio.tsx +97 -0
- package/src/application/LegendStudioApplicationConfig.ts +148 -0
- package/src/application/LegendStudioPluginManager.ts +76 -0
- package/src/components/Core_LegendStudioApplicationPlugin.tsx +92 -0
- package/src/components/DSLExternalFormat_CodeSnippets.ts +78 -0
- package/src/components/DSLExternalFormat_LegendStudioApplicationPlugin.tsx +437 -0
- package/src/components/DSLExternalFormat_LegendStudioDocumentation.ts +21 -0
- package/src/components/EditorComponentTestUtils.tsx +452 -0
- package/src/components/LegendStudioAppInfo.tsx +312 -0
- package/src/components/LegendStudioApplication.tsx +223 -0
- package/src/components/LegendStudioBaseStoreProvider.tsx +69 -0
- package/src/components/LegendStudioTestID.ts +63 -0
- package/src/components/editor/ActivityBar.tsx +396 -0
- package/src/components/editor/Editor.tsx +317 -0
- package/src/components/editor/EditorStoreProvider.tsx +69 -0
- package/src/components/editor/StatusBar.tsx +359 -0
- package/src/components/editor/aux-panel/AuxiliaryPanel.tsx +135 -0
- package/src/components/editor/aux-panel/Console.tsx +25 -0
- package/src/components/editor/aux-panel/DevTool.tsx +118 -0
- package/src/components/editor/command-center/ProjectSearchCommand.tsx +146 -0
- package/src/components/editor/edit-panel/EditPanel.tsx +578 -0
- package/src/components/editor/edit-panel/FileGenerationViewer.tsx +106 -0
- package/src/components/editor/edit-panel/FunctionEditor.tsx +838 -0
- package/src/components/editor/edit-panel/GenerationSpecificationEditor.tsx +615 -0
- package/src/components/editor/edit-panel/GrammarTextEditor.tsx +1244 -0
- package/src/components/editor/edit-panel/ModelLoader.tsx +264 -0
- package/src/components/editor/edit-panel/RuntimeEditor.tsx +1114 -0
- package/src/components/editor/edit-panel/UnsupportedElementEditor.tsx +83 -0
- package/src/components/editor/edit-panel/connection-editor/ConnectionEditor.tsx +193 -0
- package/src/components/editor/edit-panel/connection-editor/DatabaseBuilder.tsx +354 -0
- package/src/components/editor/edit-panel/connection-editor/FlatDataConnectionEditor.tsx +51 -0
- package/src/components/editor/edit-panel/connection-editor/RelationalDatabaseConnectionEditor.tsx +1504 -0
- package/src/components/editor/edit-panel/data-editor/DataElementEditor.tsx +383 -0
- package/src/components/editor/edit-panel/data-editor/EmbeddedDataEditor.tsx +300 -0
- package/src/components/editor/edit-panel/data-editor/RelationalCSVDataEditor.tsx +257 -0
- package/src/components/editor/edit-panel/diff-editor/EntityChangeConflictEditor.tsx +800 -0
- package/src/components/editor/edit-panel/diff-editor/EntityDiffView.tsx +177 -0
- package/src/components/editor/edit-panel/element-generation-editor/ElementGenerationEditor.tsx +203 -0
- package/src/components/editor/edit-panel/element-generation-editor/ElementNativeView.tsx +61 -0
- package/src/components/editor/edit-panel/element-generation-editor/FileGenerationEditor.tsx +1484 -0
- package/src/components/editor/edit-panel/external-format-editor/BindingElementEditor.tsx +482 -0
- package/src/components/editor/edit-panel/external-format-editor/ExternalFormatConnectionEditor.tsx +98 -0
- package/src/components/editor/edit-panel/external-format-editor/NewSchemaSetDriver.tsx +92 -0
- package/src/components/editor/edit-panel/external-format-editor/SchemaSetElementEditor.tsx +583 -0
- package/src/components/editor/edit-panel/mapping-editor/ClassMappingEditor.tsx +307 -0
- package/src/components/editor/edit-panel/mapping-editor/EnumerationMappingEditor.tsx +550 -0
- package/src/components/editor/edit-panel/mapping-editor/FlatDataPropertyMappingEditor.tsx +328 -0
- package/src/components/editor/edit-panel/mapping-editor/FlatDataRecordTypeTree.tsx +160 -0
- package/src/components/editor/edit-panel/mapping-editor/InstanceSetImplementationEditor.tsx +614 -0
- package/src/components/editor/edit-panel/mapping-editor/InstanceSetImplementationSourceSelectorModal.tsx +220 -0
- package/src/components/editor/edit-panel/mapping-editor/MappingEditor.tsx +348 -0
- package/src/components/editor/edit-panel/mapping-editor/MappingExecutionBuilder.tsx +814 -0
- package/src/components/editor/edit-panel/mapping-editor/MappingExplorer.tsx +594 -0
- package/src/components/editor/edit-panel/mapping-editor/MappingTestEditor.tsx +779 -0
- package/src/components/editor/edit-panel/mapping-editor/MappingTestsExplorer.tsx +508 -0
- package/src/components/editor/edit-panel/mapping-editor/NewMappingElementModal.tsx +279 -0
- package/src/components/editor/edit-panel/mapping-editor/OperationSetImplementationEditor.tsx +265 -0
- package/src/components/editor/edit-panel/mapping-editor/PropertyMappingsEditor.tsx +351 -0
- package/src/components/editor/edit-panel/mapping-editor/PurePropertyMappingEditor.tsx +420 -0
- package/src/components/editor/edit-panel/mapping-editor/relational/RelationalPropertyMappingEditor.tsx +362 -0
- package/src/components/editor/edit-panel/mapping-editor/relational/TableOrViewSourceTree.tsx +390 -0
- package/src/components/editor/edit-panel/project-configuration-editor/ProjectConfigurationEditor.tsx +529 -0
- package/src/components/editor/edit-panel/service-editor/NewServiceModal.tsx +115 -0
- package/src/components/editor/edit-panel/service-editor/ServiceEditor.tsx +485 -0
- package/src/components/editor/edit-panel/service-editor/ServiceExecutionEditor.tsx +889 -0
- package/src/components/editor/edit-panel/service-editor/ServiceExecutionQueryEditor.tsx +368 -0
- package/src/components/editor/edit-panel/service-editor/ServiceRegistrationEditor.tsx +221 -0
- package/src/components/editor/edit-panel/service-editor/testable/ServiceTestDataEditor.tsx +428 -0
- package/src/components/editor/edit-panel/service-editor/testable/ServiceTestableEditor.tsx +232 -0
- package/src/components/editor/edit-panel/service-editor/testable/ServiceTestsEditor.tsx +749 -0
- package/src/components/editor/edit-panel/testable/TestAssertionEditor.tsx +362 -0
- package/src/components/editor/edit-panel/uml-editor/AssociationEditor.tsx +569 -0
- package/src/components/editor/edit-panel/uml-editor/ClassEditor.tsx +1534 -0
- package/src/components/editor/edit-panel/uml-editor/EnumerationEditor.tsx +600 -0
- package/src/components/editor/edit-panel/uml-editor/ProfileEditor.tsx +250 -0
- package/src/components/editor/edit-panel/uml-editor/PropertyEditor.tsx +239 -0
- package/src/components/editor/edit-panel/uml-editor/StereotypeSelector.tsx +142 -0
- package/src/components/editor/edit-panel/uml-editor/TaggedValueEditor.tsx +199 -0
- package/src/components/editor/edit-panel/uml-editor/UMLEditor.tsx +47 -0
- package/src/components/editor/side-bar/CreateNewElementModal.tsx +518 -0
- package/src/components/editor/side-bar/Explorer.tsx +914 -0
- package/src/components/editor/side-bar/LocalChanges.tsx +433 -0
- package/src/components/editor/side-bar/ProjectOverview.tsx +886 -0
- package/src/components/editor/side-bar/SideBar.tsx +71 -0
- package/src/components/editor/side-bar/WorkflowManager.tsx +529 -0
- package/src/components/editor/side-bar/WorkspaceReview.tsx +341 -0
- package/src/components/editor/side-bar/WorkspaceSyncConflictResolver.tsx +276 -0
- package/src/components/editor/side-bar/WorkspaceUpdateConflictResolver.tsx +206 -0
- package/src/components/editor/side-bar/WorkspaceUpdater.tsx +279 -0
- package/src/components/editor/side-bar/testable/GlobalTestRunner.tsx +459 -0
- package/src/components/project-viewer/ProjectViewer.tsx +358 -0
- package/src/components/project-viewer/ProjectViewerStoreProvider.tsx +56 -0
- package/src/components/shared/DiffView.tsx +151 -0
- package/src/components/shared/ElementIconUtils.tsx +141 -0
- package/src/components/shared/MultiplicityBadge.tsx +39 -0
- package/src/components/shared/StudioLambdaEditor.tsx +140 -0
- package/src/components/shared/StudioTextInputEditor.tsx +83 -0
- package/src/components/shared/TypeTree.tsx +290 -0
- package/src/components/workspace-review/WorkspaceReview.tsx +247 -0
- package/src/components/workspace-review/WorkspaceReviewPanel.tsx +190 -0
- package/src/components/workspace-review/WorkspaceReviewSideBar.tsx +250 -0
- package/src/components/workspace-review/WorkspaceReviewStoreProvider.tsx +58 -0
- package/src/components/workspace-setup/ProjectCreateModal.tsx +756 -0
- package/src/components/workspace-setup/ProjectSelector.tsx +148 -0
- package/src/components/workspace-setup/WorkspaceSelector.tsx +135 -0
- package/src/components/workspace-setup/WorkspaceSetup.tsx +406 -0
- package/src/components/workspace-setup/WorkspaceSetupStoreProvider.tsx +56 -0
- package/src/index.ts +113 -0
- package/src/stores/AbstractConflictResolutionState.ts +55 -0
- package/src/stores/ChangeDetectionEvent.ts +34 -0
- package/src/stores/ChangeDetectionState.ts +819 -0
- package/src/stores/DSLData_LegendStudioApplicationPlugin_Extension.ts +72 -0
- package/src/stores/DSLGenerationSpecification_LegendStudioApplicationPlugin_Extension.ts +49 -0
- package/src/stores/DSLMapping_LegendStudioApplicationPlugin_Extension.ts +230 -0
- package/src/stores/DSLService_LegendStudioApplicationPlugin_Extension.ts +46 -0
- package/src/stores/EditorConfig.ts +81 -0
- package/src/stores/EditorGraphState.ts +1243 -0
- package/src/stores/EditorSDLCState.ts +440 -0
- package/src/stores/EditorStore.ts +1463 -0
- package/src/stores/EditorStoreTestUtils.ts +73 -0
- package/src/stores/ExplorerTreeState.ts +413 -0
- package/src/stores/LegendStudioAppEvent.ts +35 -0
- package/src/stores/LegendStudioApplicationNavigationContext.ts +46 -0
- package/src/stores/LegendStudioApplicationPlugin.ts +331 -0
- package/src/stores/LegendStudioBaseStore.ts +239 -0
- package/src/stores/LegendStudioCodeSnippets.ts +350 -0
- package/src/stores/LegendStudioDocumentation.ts +84 -0
- package/src/stores/LegendStudioEventService.ts +36 -0
- package/src/stores/LegendStudioRouter.ts +222 -0
- package/src/stores/StoreRelational_LegendStudioApplicationPlugin_Extension.ts +100 -0
- package/src/stores/aux-panel-state/DevToolState.ts +27 -0
- package/src/stores/editor/EditorMode.ts +22 -0
- package/src/stores/editor/NewElementState.ts +835 -0
- package/src/stores/editor/StandardEditorMode.ts +35 -0
- package/src/stores/editor-state/EditorState.ts +32 -0
- package/src/stores/editor-state/ExternalFormatState.ts +107 -0
- package/src/stores/editor-state/FileGenerationState.ts +319 -0
- package/src/stores/editor-state/FileGenerationViewerState.ts +70 -0
- package/src/stores/editor-state/GenerationSpecificationEditorState.ts +125 -0
- package/src/stores/editor-state/GrammarTextEditorState.ts +181 -0
- package/src/stores/editor-state/GraphGenerationState.ts +554 -0
- package/src/stores/editor-state/ModelLoaderState.ts +278 -0
- package/src/stores/editor-state/ProjectConfigurationEditorState.ts +300 -0
- package/src/stores/editor-state/UnsupportedElementEditorState.ts +28 -0
- package/src/stores/editor-state/element-editor-state/ClassEditorState.ts +140 -0
- package/src/stores/editor-state/element-editor-state/ClassState.ts +419 -0
- package/src/stores/editor-state/element-editor-state/ElementEditorState.ts +159 -0
- package/src/stores/editor-state/element-editor-state/ElementFileGenerationState.ts +94 -0
- package/src/stores/editor-state/element-editor-state/FileGenerationEditorState.ts +69 -0
- package/src/stores/editor-state/element-editor-state/FunctionEditorState.ts +231 -0
- package/src/stores/editor-state/element-editor-state/RuntimeEditorState.ts +935 -0
- package/src/stores/editor-state/element-editor-state/UMLEditorState.ts +84 -0
- package/src/stores/editor-state/element-editor-state/connection/ConnectionEditorState.ts +475 -0
- package/src/stores/editor-state/element-editor-state/connection/DatabaseBuilderState.ts +637 -0
- package/src/stores/editor-state/element-editor-state/data/DataEditorState.ts +100 -0
- package/src/stores/editor-state/element-editor-state/data/EmbeddedDataState.ts +351 -0
- package/src/stores/editor-state/element-editor-state/external-format/BindingEditorState.ts +61 -0
- package/src/stores/editor-state/element-editor-state/external-format/SchemaSetEditorState.ts +397 -0
- package/src/stores/editor-state/element-editor-state/mapping/FlatDataInstanceSetImplementationState.ts +397 -0
- package/src/stores/editor-state/element-editor-state/mapping/MappingEditorState.ts +1528 -0
- package/src/stores/editor-state/element-editor-state/mapping/MappingElementDecorator.ts +794 -0
- package/src/stores/editor-state/element-editor-state/mapping/MappingElementState.ts +111 -0
- package/src/stores/editor-state/element-editor-state/mapping/MappingExecutionState.ts +895 -0
- package/src/stores/editor-state/element-editor-state/mapping/MappingTestState.ts +803 -0
- package/src/stores/editor-state/element-editor-state/mapping/PureInstanceSetImplementationState.ts +349 -0
- package/src/stores/editor-state/element-editor-state/mapping/UnsupportedInstanceSetImplementationState.ts +27 -0
- package/src/stores/editor-state/element-editor-state/mapping/relational/DatabaseEditorHelper.tsx +134 -0
- package/src/stores/editor-state/element-editor-state/mapping/relational/RelationalInstanceSetImplementationState.ts +350 -0
- package/src/stores/editor-state/element-editor-state/service/ServiceEditorState.ts +114 -0
- package/src/stores/editor-state/element-editor-state/service/ServiceExecutionState.ts +907 -0
- package/src/stores/editor-state/element-editor-state/service/ServiceRegistrationState.ts +312 -0
- package/src/stores/editor-state/element-editor-state/service/ServiceTestRunnerState.ts +31 -0
- package/src/stores/editor-state/element-editor-state/service/testable/ServiceTestDataState.ts +365 -0
- package/src/stores/editor-state/element-editor-state/service/testable/ServiceTestEditorState.ts +405 -0
- package/src/stores/editor-state/element-editor-state/service/testable/ServiceTestableState.ts +293 -0
- package/src/stores/editor-state/element-editor-state/testable/TestAssertionState.ts +319 -0
- package/src/stores/editor-state/element-editor-state/testable/TestableEditorState.ts +205 -0
- package/src/stores/editor-state/entity-diff-editor-state/EntityChangeConflictEditorState.ts +547 -0
- package/src/stores/editor-state/entity-diff-editor-state/EntityDiffEditorState.ts +48 -0
- package/src/stores/editor-state/entity-diff-editor-state/EntityDiffViewState.ts +228 -0
- package/src/stores/graphModifier/DSLData_GraphModifierHelper.ts +104 -0
- package/src/stores/graphModifier/DSLExternalFormat_GraphModifierHelper.ts +138 -0
- package/src/stores/graphModifier/DSLGeneration_GraphModifierHelper.ts +188 -0
- package/src/stores/graphModifier/DSLMapping_GraphModifierHelper.ts +563 -0
- package/src/stores/graphModifier/DSLService_GraphModifierHelper.ts +243 -0
- package/src/stores/graphModifier/DomainGraphModifierHelper.ts +349 -0
- package/src/stores/graphModifier/GraphModifierHelper.ts +80 -0
- package/src/stores/graphModifier/StoreFlatData_GraphModifierHelper.ts +60 -0
- package/src/stores/graphModifier/StoreRelational_GraphModifierHelper.ts +413 -0
- package/src/stores/graphModifier/Testable_GraphModifierHelper.ts +58 -0
- package/src/stores/graphModifier/ValueSpecificationGraphModifierHelper.ts +41 -0
- package/src/stores/project-viewer/ProjectViewerEditorMode.ts +59 -0
- package/src/stores/project-viewer/ProjectViewerStore.ts +597 -0
- package/src/stores/shared/DnDUtil.ts +102 -0
- package/src/stores/shared/FileGenerationTreeUtil.ts +340 -0
- package/src/stores/shared/MockDataUtil.ts +191 -0
- package/src/stores/shared/ModelUtil.ts +87 -0
- package/src/stores/shared/PackageTreeUtil.ts +310 -0
- package/src/stores/shared/TreeUtil.ts +49 -0
- package/src/stores/shared/testable/TestableUtils.ts +213 -0
- package/src/stores/sidebar-state/LocalChangesState.ts +689 -0
- package/src/stores/sidebar-state/ProjectOverviewState.ts +287 -0
- package/src/stores/sidebar-state/WorkflowManagerState.ts +648 -0
- package/src/stores/sidebar-state/WorkspaceReviewState.ts +384 -0
- package/src/stores/sidebar-state/WorkspaceSyncState.ts +578 -0
- package/src/stores/sidebar-state/WorkspaceUpdateConflictResolutionState.ts +728 -0
- package/src/stores/sidebar-state/WorkspaceUpdaterState.ts +358 -0
- package/src/stores/sidebar-state/testable/GlobalTestRunnerState.ts +576 -0
- package/src/stores/workspace-review/WorkspaceReviewStore.ts +272 -0
- package/src/stores/workspace-setup/WorkspaceSetupStore.ts +374 -0
- package/tsconfig.json +256 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MappingEditorState.js","sourceRoot":"","sources":["../../../../../src/stores/editor-state/element-editor-state/mapping/MappingEditorState.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { type SetImplementationVisitor, type SetImplementation, OperationSetImplementation, type PureInstanceSetImplementation, type FlatDataInstanceSetImplementation, type EnumerationMapping, type Property, type RelationalInstanceSetImplementation, type RootRelationalInstanceSetImplementation, type AggregationAwareSetImplementation, type PropertyMapping, type InstanceSetImplementation, type TEMPORARY__UnresolvedSetImplementation, type Mapping, EmbeddedFlatDataPropertyMapping, Class } from '@finos/legend-graph';
|
|
17
|
+
import type { EditorStore } from '../../../EditorStore.js';
|
|
18
|
+
/**
|
|
19
|
+
* Iterate through all properties (including supertypes' properties) of the set implementation
|
|
20
|
+
* and add property mappings for each
|
|
21
|
+
*/
|
|
22
|
+
export declare const getDecoratedSetImplementationPropertyMappings: <T extends PropertyMapping>(setImp: InstanceSetImplementation, decoratePropertyMapping: (existingPropertyMappings: T[] | undefined, property: Property) => T[]) => T[];
|
|
23
|
+
export declare const getLeafSetImplementationsForClass: (mapping: Mapping, _class: Class) => SetImplementation[] | undefined;
|
|
24
|
+
/**
|
|
25
|
+
* This logic helps making the mapping editor smart.
|
|
26
|
+
* Its first purpose is to prepoluate empty property mapping so as to allow user
|
|
27
|
+
* jump straight in to edit the property mappings without the need to hit button
|
|
28
|
+
* like `add property mapping`.
|
|
29
|
+
* Its second purpose is to modify the current mapping element in response to
|
|
30
|
+
* changes in the graph.
|
|
31
|
+
*/
|
|
32
|
+
export declare class MappingElementDecorator implements SetImplementationVisitor<void> {
|
|
33
|
+
editorStore: EditorStore;
|
|
34
|
+
constructor(editorStore: EditorStore);
|
|
35
|
+
visitEnumerationMapping(enumerationMapping: EnumerationMapping): void;
|
|
36
|
+
visit_OperationSetImplementation(setImplementation: OperationSetImplementation): void;
|
|
37
|
+
visit_MergeOperationSetImplementation(setImplementation: OperationSetImplementation): void;
|
|
38
|
+
visit_PureInstanceSetImplementation(setImplementation: PureInstanceSetImplementation): void;
|
|
39
|
+
visit_FlatDataInstanceSetImplementation(setImplementation: FlatDataInstanceSetImplementation | EmbeddedFlatDataPropertyMapping): void;
|
|
40
|
+
visit_EmbeddedFlatDataSetImplementation(setImplementation: EmbeddedFlatDataPropertyMapping): void;
|
|
41
|
+
visit_RelationalInstanceSetImplementation(setImplementation: RelationalInstanceSetImplementation): void;
|
|
42
|
+
visit_RootRelationalInstanceSetImplementation(setImplementation: RootRelationalInstanceSetImplementation): void;
|
|
43
|
+
visit_AggregationAwareSetImplementation(setImplementation: AggregationAwareSetImplementation): void;
|
|
44
|
+
visit_SetImplementation(setImplementation: SetImplementation): void;
|
|
45
|
+
visit_TEMPORARY__UnresolvedSetImplementation(setImplementation: TEMPORARY__UnresolvedSetImplementation): void;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* This is the cleanup for mapping elements decorated by {@link MappingElementDecorator}.
|
|
49
|
+
*/
|
|
50
|
+
export declare class MappingElementDecorationCleaner implements SetImplementationVisitor<void> {
|
|
51
|
+
editorStore: EditorStore;
|
|
52
|
+
constructor(editorStore: EditorStore);
|
|
53
|
+
visitEnumerationMapping(enumerationMapping: EnumerationMapping): void;
|
|
54
|
+
visit_OperationSetImplementation(setImplementation: OperationSetImplementation): void;
|
|
55
|
+
visit_MergeOperationSetImplementation(setImplementation: OperationSetImplementation): void;
|
|
56
|
+
visit_PureInstanceSetImplementation(setImplementation: PureInstanceSetImplementation): void;
|
|
57
|
+
visit_FlatDataInstanceSetImplementation(setImplementation: FlatDataInstanceSetImplementation | EmbeddedFlatDataPropertyMapping): void;
|
|
58
|
+
visit_EmbeddedFlatDataSetImplementation(setImplementation: EmbeddedFlatDataPropertyMapping): void;
|
|
59
|
+
visit_RelationalInstanceSetImplementation(setImplementation: RelationalInstanceSetImplementation): void;
|
|
60
|
+
visit_RootRelationalInstanceSetImplementation(setImplementation: RootRelationalInstanceSetImplementation): void;
|
|
61
|
+
visit_AggregationAwareSetImplementation(setImplementation: AggregationAwareSetImplementation): void;
|
|
62
|
+
visit_SetImplementation(setImplementation: SetImplementation): void;
|
|
63
|
+
visit_TEMPORARY__UnresolvedSetImplementation(setImplementation: TEMPORARY__UnresolvedSetImplementation): void;
|
|
64
|
+
}
|
|
65
|
+
//# sourceMappingURL=MappingElementDecorator.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MappingElementDecorator.d.ts","sourceRoot":"","sources":["../../../../../src/stores/editor-state/element-editor-state/mapping/MappingElementDecorator.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AASH,OAAO,EACL,KAAK,wBAAwB,EAC7B,KAAK,iBAAiB,EACtB,0BAA0B,EAC1B,KAAK,6BAA6B,EAClC,KAAK,iCAAiC,EACtC,KAAK,kBAAkB,EACvB,KAAK,QAAQ,EAEb,KAAK,mCAAmC,EACxC,KAAK,uCAAuC,EAC5C,KAAK,iCAAiC,EACtC,KAAK,eAAe,EACpB,KAAK,yBAAyB,EAC9B,KAAK,sCAAsC,EAC3C,KAAK,OAAO,EAGZ,+BAA+B,EAI/B,KAAK,EAqBN,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAa3D;;;GAGG;AACH,eAAO,MAAM,6CAA6C,sCAGhD,yBAAyB,iFAGrB,QAAQ,gBAsBrB,CAAC;AAEF,eAAO,MAAM,iCAAiC,YACnC,OAAO,UACR,KAAK,KACZ,iBAAiB,EAAE,GAAG,SASxB,CAAC;AAEF;;;;;;;GAOG;AACH,qBAAa,uBAAwB,YAAW,wBAAwB,CAAC,IAAI,CAAC;IAC5E,WAAW,EAAE,WAAW,CAAC;gBAEb,WAAW,EAAE,WAAW;IAIpC,uBAAuB,CAAC,kBAAkB,EAAE,kBAAkB,GAAG,IAAI;IAuBrE,gCAAgC,CAC9B,iBAAiB,EAAE,0BAA0B,GAC5C,IAAI;IAWP,qCAAqC,CACnC,iBAAiB,EAAE,0BAA0B,GAC5C,IAAI;IAWP,mCAAmC,CACjC,iBAAiB,EAAE,6BAA6B,GAC/C,IAAI;IA4IP,uCAAuC,CACrC,iBAAiB,EACb,iCAAiC,GACjC,+BAA+B,GAClC,IAAI;IAmHP,uCAAuC,CACrC,iBAAiB,EAAE,+BAA+B,GACjD,IAAI;IAIP,yCAAyC,CACvC,iBAAiB,EAAE,mCAAmC,GACrD,IAAI;IAIP,6CAA6C,CAC3C,iBAAiB,EAAE,uCAAuC,GACzD,IAAI;IAgKP,uCAAuC,CACrC,iBAAiB,EAAE,iCAAiC,GACnD,IAAI;IAIP,uBAAuB,CAAC,iBAAiB,EAAE,iBAAiB,GAAG,IAAI;IAcnE,4CAA4C,CAC1C,iBAAiB,EAAE,sCAAsC,GACxD,IAAI;CAGR;AAED;;GAEG;AACH,qBAAa,+BACX,YAAW,wBAAwB,CAAC,IAAI,CAAC;IAEzC,WAAW,EAAE,WAAW,CAAC;gBAEb,WAAW,EAAE,WAAW;IAIpC,uBAAuB,CAAC,kBAAkB,EAAE,kBAAkB,GAAG,IAAI;IAmBrE,gCAAgC,CAC9B,iBAAiB,EAAE,0BAA0B,GAC5C,IAAI;IASP,qCAAqC,CACnC,iBAAiB,EAAE,0BAA0B,GAC5C,IAAI;IASP,mCAAmC,CACjC,iBAAiB,EAAE,6BAA6B,GAC/C,IAAI;IAUP,uCAAuC,CACrC,iBAAiB,EACb,iCAAiC,GACjC,+BAA+B,GAClC,IAAI;IAcP,uCAAuC,CACrC,iBAAiB,EAAE,+BAA+B,GACjD,IAAI;IAIP,yCAAyC,CACvC,iBAAiB,EAAE,mCAAmC,GACrD,IAAI;IAIP,6CAA6C,CAC3C,iBAAiB,EAAE,uCAAuC,GACzD,IAAI;IAgBP,uCAAuC,CACrC,iBAAiB,EAAE,iCAAiC,GACnD,IAAI;IAIP,uBAAuB,CAAC,iBAAiB,EAAE,iBAAiB,GAAG,IAAI;IAenE,4CAA4C,CAC1C,iBAAiB,EAAE,sCAAsC,GACxD,IAAI;CAGR"}
|
|
@@ -0,0 +1,389 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { isNonNullable, assertTrue, assertType, UnsupportedOperationError, guaranteeNonNullable, } from '@finos/legend-shared';
|
|
17
|
+
import { OperationSetImplementation, getAllClassMappings, PurePropertyMapping, EmbeddedFlatDataPropertyMapping, EnumValueMapping, PrimitiveType, Enumeration, Class, FlatDataPropertyMapping, Measure, Unit, EnumValueExplicitReference, PropertyExplicitReference, RelationalPropertyMapping, EmbeddedRelationalInstanceSetImplementation, getEnumerationMappingsByEnumeration, getRootSetImplementation, stub_RawLambda, stub_RawRelationalOperationElement, isStubbed_RawLambda, isStubbed_RawRelationalOperationElement, isStubbed_EnumValueMapping, isStubbed_SetImplementationContainer, getLeafSetImplementations, getAllClassProperties, getRawGenericType, EnumerationMappingExplicitReference, SetImplementationExplicitReference, } from '@finos/legend-graph';
|
|
18
|
+
import { enumMapping_setEnumValueMappings, enumValueMapping_addSourceValue, enumValueMapping_setSourceValues, mapping_setPropertyMappings, operationMapping_setParameters, pureInstanceSetImpl_setPropertyMappings, purePropertyMapping_setTransformer, } from '../../../graphModifier/DSLMapping_GraphModifierHelper.js';
|
|
19
|
+
import { rootRelationalSetImp_setPropertyMappings } from '../../../graphModifier/StoreRelational_GraphModifierHelper.js';
|
|
20
|
+
/**
|
|
21
|
+
* Iterate through all properties (including supertypes' properties) of the set implementation
|
|
22
|
+
* and add property mappings for each
|
|
23
|
+
*/
|
|
24
|
+
export const getDecoratedSetImplementationPropertyMappings = (setImp, decoratePropertyMapping) => {
|
|
25
|
+
const propertyMappingIndex = new Map();
|
|
26
|
+
setImp.propertyMappings.forEach((pm) => {
|
|
27
|
+
const propertyMapping = propertyMappingIndex.get(pm.property.value.name);
|
|
28
|
+
if (propertyMapping) {
|
|
29
|
+
propertyMapping.push(pm);
|
|
30
|
+
}
|
|
31
|
+
else {
|
|
32
|
+
propertyMappingIndex.set(pm.property.value.name, [pm]);
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
getAllClassProperties(setImp.class.value).forEach((property) => {
|
|
36
|
+
propertyMappingIndex.set(property.name, decoratePropertyMapping(propertyMappingIndex.get(property.name), property));
|
|
37
|
+
});
|
|
38
|
+
return Array.from(propertyMappingIndex.values()).flat();
|
|
39
|
+
};
|
|
40
|
+
export const getLeafSetImplementationsForClass = (mapping, _class) => {
|
|
41
|
+
const setImp = getRootSetImplementation(mapping, _class);
|
|
42
|
+
if (!setImp) {
|
|
43
|
+
return undefined;
|
|
44
|
+
}
|
|
45
|
+
if (setImp instanceof OperationSetImplementation) {
|
|
46
|
+
return getLeafSetImplementations(setImp);
|
|
47
|
+
}
|
|
48
|
+
return [setImp];
|
|
49
|
+
};
|
|
50
|
+
/**
|
|
51
|
+
* This logic helps making the mapping editor smart.
|
|
52
|
+
* Its first purpose is to prepoluate empty property mapping so as to allow user
|
|
53
|
+
* jump straight in to edit the property mappings without the need to hit button
|
|
54
|
+
* like `add property mapping`.
|
|
55
|
+
* Its second purpose is to modify the current mapping element in response to
|
|
56
|
+
* changes in the graph.
|
|
57
|
+
*/
|
|
58
|
+
export class MappingElementDecorator {
|
|
59
|
+
editorStore;
|
|
60
|
+
constructor(editorStore) {
|
|
61
|
+
this.editorStore = editorStore;
|
|
62
|
+
}
|
|
63
|
+
visitEnumerationMapping(enumerationMapping) {
|
|
64
|
+
const enumValueMappingsToAdd = [];
|
|
65
|
+
enumerationMapping.enumeration.value.values.forEach((enumValue) => {
|
|
66
|
+
const matchingEnumValueMappings = enumerationMapping.enumValueMappings.find((evm) => evm.enum.value === enumValue);
|
|
67
|
+
if (!matchingEnumValueMappings) {
|
|
68
|
+
const newEnumValueMapping = new EnumValueMapping(EnumValueExplicitReference.create(enumValue));
|
|
69
|
+
enumValueMapping_addSourceValue(newEnumValueMapping, undefined);
|
|
70
|
+
enumValueMappingsToAdd.push(newEnumValueMapping);
|
|
71
|
+
}
|
|
72
|
+
});
|
|
73
|
+
if (enumValueMappingsToAdd.length) {
|
|
74
|
+
enumMapping_setEnumValueMappings(enumerationMapping, enumerationMapping.enumValueMappings.concat(enumValueMappingsToAdd));
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
visit_OperationSetImplementation(setImplementation) {
|
|
78
|
+
operationMapping_setParameters(setImplementation, setImplementation.parameters.filter((param) => getAllClassMappings(setImplementation._PARENT).find((setImp) => setImp === param.setImplementation.value)));
|
|
79
|
+
}
|
|
80
|
+
visit_MergeOperationSetImplementation(setImplementation) {
|
|
81
|
+
operationMapping_setParameters(setImplementation, setImplementation.parameters.filter((param) => getAllClassMappings(setImplementation._PARENT).find((setImp) => setImp === param.setImplementation.value)));
|
|
82
|
+
}
|
|
83
|
+
visit_PureInstanceSetImplementation(setImplementation) {
|
|
84
|
+
const decoratePropertyMapping = (propertyMappings, property) => {
|
|
85
|
+
// before decoration, make sure to prune stubbed property mappings in case they are nolonger compatible
|
|
86
|
+
// with the set implemenetation (this happens when we switch sources)
|
|
87
|
+
const existingPropertyMappings = (propertyMappings ?? []).filter((pm) => !isStubbed_RawLambda(pm.transform));
|
|
88
|
+
const propertyType = property.genericType.value.rawType;
|
|
89
|
+
if (propertyType instanceof PrimitiveType ||
|
|
90
|
+
propertyType instanceof Unit ||
|
|
91
|
+
propertyType instanceof Measure) {
|
|
92
|
+
// only allow one property mapping per primitive property
|
|
93
|
+
assertTrue(!existingPropertyMappings.length ||
|
|
94
|
+
existingPropertyMappings.length === 1, 'Only one property mapping should exist per simple type (e.g. primitive, measure, unit) property');
|
|
95
|
+
return existingPropertyMappings.length
|
|
96
|
+
? [existingPropertyMappings[0]]
|
|
97
|
+
: [
|
|
98
|
+
new PurePropertyMapping(setImplementation, PropertyExplicitReference.create(property), stub_RawLambda(), SetImplementationExplicitReference.create(setImplementation), undefined),
|
|
99
|
+
];
|
|
100
|
+
}
|
|
101
|
+
else if (propertyType instanceof Enumeration) {
|
|
102
|
+
// only allow one property mapping per enumeration property
|
|
103
|
+
assertTrue(!existingPropertyMappings.length ||
|
|
104
|
+
existingPropertyMappings.length === 1, 'Only one property mapping should exist per enumeration type property');
|
|
105
|
+
const enumerationPropertyMapping = existingPropertyMappings.length
|
|
106
|
+
? [existingPropertyMappings[0]]
|
|
107
|
+
: [
|
|
108
|
+
new PurePropertyMapping(setImplementation, PropertyExplicitReference.create(property), stub_RawLambda(), SetImplementationExplicitReference.create(setImplementation), undefined),
|
|
109
|
+
];
|
|
110
|
+
// Find existing enumeration mappings for the property enumeration
|
|
111
|
+
const existingEnumerationMappings = getEnumerationMappingsByEnumeration(setImplementation._PARENT, getRawGenericType(enumerationPropertyMapping[0].property
|
|
112
|
+
.value.genericType.value, Enumeration));
|
|
113
|
+
enumerationPropertyMapping.forEach((epm) => {
|
|
114
|
+
// If there are no enumeration mappings, delete the transformer of the property mapping
|
|
115
|
+
// If there is only 1 enumeration mapping, make it the transformer of the property mapping
|
|
116
|
+
// Else, delete current transformer if it's not in the list of extisting enumeration mappings
|
|
117
|
+
if (existingEnumerationMappings.length === 1) {
|
|
118
|
+
purePropertyMapping_setTransformer(epm, EnumerationMappingExplicitReference.create(guaranteeNonNullable(existingEnumerationMappings[0])));
|
|
119
|
+
}
|
|
120
|
+
else if (existingEnumerationMappings.length === 0 ||
|
|
121
|
+
!existingEnumerationMappings.find((eem) => eem === epm.transformer?.value)) {
|
|
122
|
+
purePropertyMapping_setTransformer(epm, undefined);
|
|
123
|
+
}
|
|
124
|
+
});
|
|
125
|
+
return enumerationPropertyMapping;
|
|
126
|
+
}
|
|
127
|
+
else if (propertyType instanceof Class) {
|
|
128
|
+
const resolvedLeafSetImps =
|
|
129
|
+
// TODO: should we try to get leaf implementation here from the root
|
|
130
|
+
// or should we just simply find all class mappings for the target class
|
|
131
|
+
// as we should not try to `understand` operation class mapping union?
|
|
132
|
+
getLeafSetImplementationsForClass(setImplementation._PARENT, getRawGenericType(property.genericType.value, Class));
|
|
133
|
+
// if there are no root-resolved set implementations for the class, return empty array
|
|
134
|
+
if (!resolvedLeafSetImps) {
|
|
135
|
+
return [];
|
|
136
|
+
}
|
|
137
|
+
return (resolvedLeafSetImps
|
|
138
|
+
// from root of the class property, resolve leaf set implementations and add property mappings for them
|
|
139
|
+
// NOTE: here we actually remove existing property mapping if it no longer part of resolved
|
|
140
|
+
// leaf set implementation of the class property
|
|
141
|
+
.map((setImp) => existingPropertyMappings.find((pm) => pm.targetSetImplementation?.value === setImp) ??
|
|
142
|
+
new PurePropertyMapping(setImplementation, PropertyExplicitReference.create(property), stub_RawLambda(), SetImplementationExplicitReference.create(setImplementation), SetImplementationExplicitReference.create(setImp)))
|
|
143
|
+
// sort these property mappings by id of their set implementations
|
|
144
|
+
.sort((a, b) => (a.targetSetImplementation?.value.id.value ?? '').localeCompare(b.targetSetImplementation?.value.id.value ?? '')));
|
|
145
|
+
}
|
|
146
|
+
return [];
|
|
147
|
+
};
|
|
148
|
+
const propertyMappingsBeforeDecoration = setImplementation.propertyMappings;
|
|
149
|
+
const decoratedPropertyMappings = getDecoratedSetImplementationPropertyMappings(setImplementation, decoratePropertyMapping);
|
|
150
|
+
pureInstanceSetImpl_setPropertyMappings(setImplementation, decoratedPropertyMappings.concat(propertyMappingsBeforeDecoration.filter((propertyMapping) => !decoratedPropertyMappings.includes(propertyMapping))), this.editorStore.changeDetectionState.observerContext);
|
|
151
|
+
}
|
|
152
|
+
visit_FlatDataInstanceSetImplementation(setImplementation) {
|
|
153
|
+
const decoratePropertyMapping = (propertyMappings, property) => {
|
|
154
|
+
// before decoration, make sure to prune stubbed property mappings in case they are nolonger compatible
|
|
155
|
+
// with the set implemenetation (this happens when we switch sources)
|
|
156
|
+
const existingPropertyMappings = (propertyMappings ?? []).filter((pm) => {
|
|
157
|
+
if (pm instanceof FlatDataPropertyMapping) {
|
|
158
|
+
return !isStubbed_RawLambda(pm.transform);
|
|
159
|
+
}
|
|
160
|
+
return true;
|
|
161
|
+
});
|
|
162
|
+
const propertyType = property.genericType.value.rawType;
|
|
163
|
+
if (propertyType instanceof PrimitiveType ||
|
|
164
|
+
propertyType instanceof Unit ||
|
|
165
|
+
propertyType instanceof Measure) {
|
|
166
|
+
// only allow one property mapping per primitive property
|
|
167
|
+
assertTrue(!existingPropertyMappings.length ||
|
|
168
|
+
existingPropertyMappings.length === 1, 'Only one property mapping should exist per simple type (e.g. primitive, measure, unit) property');
|
|
169
|
+
return existingPropertyMappings.length
|
|
170
|
+
? [existingPropertyMappings[0]]
|
|
171
|
+
: [
|
|
172
|
+
new FlatDataPropertyMapping(setImplementation, PropertyExplicitReference.create(property), stub_RawLambda(), SetImplementationExplicitReference.create(setImplementation), undefined),
|
|
173
|
+
];
|
|
174
|
+
}
|
|
175
|
+
else if (propertyType instanceof Enumeration) {
|
|
176
|
+
// only allow one property mapping per enumeration property
|
|
177
|
+
assertTrue(!existingPropertyMappings.length ||
|
|
178
|
+
existingPropertyMappings.length === 1, 'Only one property mapping should exist per enumeration type property');
|
|
179
|
+
const ePropertyMapping = existingPropertyMappings.length
|
|
180
|
+
? [existingPropertyMappings[0]]
|
|
181
|
+
: [
|
|
182
|
+
new FlatDataPropertyMapping(setImplementation, PropertyExplicitReference.create(property), stub_RawLambda(), SetImplementationExplicitReference.create(setImplementation), undefined),
|
|
183
|
+
];
|
|
184
|
+
// Find existing enumeration mappings for the property enumeration
|
|
185
|
+
const existingEnumerationMappings = getEnumerationMappingsByEnumeration(setImplementation._PARENT, getRawGenericType(ePropertyMapping[0].property.value
|
|
186
|
+
.genericType.value, Enumeration));
|
|
187
|
+
ePropertyMapping.forEach((epm) => {
|
|
188
|
+
assertType(epm, FlatDataPropertyMapping, 'Property mapping for enumeration type property must be a simple property mapping');
|
|
189
|
+
// If there are no enumeration mappings, delete the transformer of the property mapping
|
|
190
|
+
// If there is only 1 enumeration mapping, make it the transformer of the property mapping
|
|
191
|
+
// Else, delete current transformer if it's not in the list of extisting enumeration mappings
|
|
192
|
+
if (existingEnumerationMappings.length === 1) {
|
|
193
|
+
epm.transformer = EnumerationMappingExplicitReference.create(guaranteeNonNullable(existingEnumerationMappings[0]));
|
|
194
|
+
}
|
|
195
|
+
else if (existingEnumerationMappings.length === 0 ||
|
|
196
|
+
!existingEnumerationMappings.find((eem) => eem === epm.transformer?.value)) {
|
|
197
|
+
epm.transformer = undefined;
|
|
198
|
+
}
|
|
199
|
+
});
|
|
200
|
+
return ePropertyMapping;
|
|
201
|
+
}
|
|
202
|
+
else if (propertyType instanceof Class) {
|
|
203
|
+
// NOTE: flat data property mapping for complex property might change to use union.
|
|
204
|
+
// As such, for now we won't support it, and will hide this from the UI for now. Since the exact playout of this is not known
|
|
205
|
+
// we cannot do decoration as well.
|
|
206
|
+
// assertTrue(!existingPropertyMappings.length || existingPropertyMappings.length === 1, 'Only one property mapping should exist per complex class');
|
|
207
|
+
// return existingPropertyMappings.length ? [existingPropertyMappings[0]] : [];
|
|
208
|
+
return existingPropertyMappings;
|
|
209
|
+
}
|
|
210
|
+
return [];
|
|
211
|
+
};
|
|
212
|
+
const propertyMappingsBeforeDecoration = setImplementation.propertyMappings;
|
|
213
|
+
const decoratedPropertyMappings = getDecoratedSetImplementationPropertyMappings(setImplementation, decoratePropertyMapping);
|
|
214
|
+
mapping_setPropertyMappings(setImplementation, decoratedPropertyMappings.concat(propertyMappingsBeforeDecoration.filter((propertyMapping) => !decoratedPropertyMappings.includes(propertyMapping))), this.editorStore.changeDetectionState.observerContext);
|
|
215
|
+
}
|
|
216
|
+
visit_EmbeddedFlatDataSetImplementation(setImplementation) {
|
|
217
|
+
this.visit_FlatDataInstanceSetImplementation(setImplementation);
|
|
218
|
+
}
|
|
219
|
+
visit_RelationalInstanceSetImplementation(setImplementation) {
|
|
220
|
+
throw new UnsupportedOperationError();
|
|
221
|
+
}
|
|
222
|
+
visit_RootRelationalInstanceSetImplementation(setImplementation) {
|
|
223
|
+
const decoratePropertyMapping = (propertyMappings, property) => {
|
|
224
|
+
// before decoration, make sure to prune stubbed property mappings in case they are nolonger compatible
|
|
225
|
+
// with the set implemenetation (this happens when we switch sources)
|
|
226
|
+
const existingPropertyMappings = (propertyMappings ?? []).filter((pm) => {
|
|
227
|
+
if (pm instanceof RelationalPropertyMapping) {
|
|
228
|
+
return !isStubbed_RawRelationalOperationElement(pm.relationalOperation);
|
|
229
|
+
}
|
|
230
|
+
return true;
|
|
231
|
+
});
|
|
232
|
+
const propertyType = property.genericType.value.rawType;
|
|
233
|
+
if (propertyType instanceof PrimitiveType ||
|
|
234
|
+
propertyType instanceof Unit ||
|
|
235
|
+
propertyType instanceof Measure) {
|
|
236
|
+
// only allow one property mapping per primitive property
|
|
237
|
+
assertTrue(!existingPropertyMappings.length ||
|
|
238
|
+
existingPropertyMappings.length === 1, 'Only one property mapping should exist per simple type (e.g. primitive, measure, unit) property');
|
|
239
|
+
if (existingPropertyMappings.length) {
|
|
240
|
+
// TODO?: do we want to check the type of the property mapping here?
|
|
241
|
+
return [existingPropertyMappings[0]];
|
|
242
|
+
}
|
|
243
|
+
const newPropertyMapping = new RelationalPropertyMapping(setImplementation, PropertyExplicitReference.create(property), SetImplementationExplicitReference.create(setImplementation), undefined);
|
|
244
|
+
newPropertyMapping.relationalOperation =
|
|
245
|
+
stub_RawRelationalOperationElement();
|
|
246
|
+
return [newPropertyMapping];
|
|
247
|
+
}
|
|
248
|
+
else if (propertyType instanceof Enumeration) {
|
|
249
|
+
// only allow one property mapping per enumeration property
|
|
250
|
+
assertTrue(!existingPropertyMappings.length ||
|
|
251
|
+
existingPropertyMappings.length === 1, 'Only one property mapping should exist per enumeration type property');
|
|
252
|
+
let ePropertyMapping = [];
|
|
253
|
+
if (existingPropertyMappings.length) {
|
|
254
|
+
// TODO?: do we want to check the type of the property mapping here?
|
|
255
|
+
ePropertyMapping = [existingPropertyMappings[0]];
|
|
256
|
+
}
|
|
257
|
+
else {
|
|
258
|
+
const newPropertyMapping = new RelationalPropertyMapping(setImplementation, PropertyExplicitReference.create(property), SetImplementationExplicitReference.create(setImplementation), undefined);
|
|
259
|
+
newPropertyMapping.relationalOperation =
|
|
260
|
+
stub_RawRelationalOperationElement();
|
|
261
|
+
ePropertyMapping = [newPropertyMapping];
|
|
262
|
+
}
|
|
263
|
+
// Find existing enumeration mappings for the property enumeration
|
|
264
|
+
const existingEnumerationMappings = getEnumerationMappingsByEnumeration(setImplementation._PARENT, getRawGenericType(ePropertyMapping[0].property.value.genericType
|
|
265
|
+
.value, Enumeration));
|
|
266
|
+
ePropertyMapping.forEach((epm) => {
|
|
267
|
+
assertType(epm, RelationalPropertyMapping, 'Property mapping for enumeration type property must be a simple property mapping');
|
|
268
|
+
// If there are no enumeration mappings, delete the transformer of the property mapping
|
|
269
|
+
// If there is only 1 enumeration mapping, make it the transformer of the property mapping
|
|
270
|
+
// Else, delete current transformer if it's not in the list of extisting enumeration mappings
|
|
271
|
+
if (existingEnumerationMappings.length === 1) {
|
|
272
|
+
epm.transformer = EnumerationMappingExplicitReference.create(guaranteeNonNullable(existingEnumerationMappings[0]));
|
|
273
|
+
}
|
|
274
|
+
else if (existingEnumerationMappings.length === 0 ||
|
|
275
|
+
!existingEnumerationMappings.find((eem) => eem === epm.transformer?.value)) {
|
|
276
|
+
epm.transformer = undefined;
|
|
277
|
+
}
|
|
278
|
+
});
|
|
279
|
+
return ePropertyMapping;
|
|
280
|
+
}
|
|
281
|
+
else if (propertyType instanceof Class) {
|
|
282
|
+
let classPropertyMappings = [];
|
|
283
|
+
// TODO: should we try to get leaf implementation here from the root
|
|
284
|
+
// or should we just simply find all class mappings for the target class
|
|
285
|
+
// as we should not try to `understand` operation class mapping union?
|
|
286
|
+
const resolvedLeafSetImps = getLeafSetImplementationsForClass(setImplementation._PARENT, getRawGenericType(property.genericType.value, Class));
|
|
287
|
+
// if there are no root-resolved set implementations for the class, return empty array
|
|
288
|
+
if (resolvedLeafSetImps) {
|
|
289
|
+
classPropertyMappings = resolvedLeafSetImps
|
|
290
|
+
// from root of the class property, resolve leaf set implementations and add property mappings for them
|
|
291
|
+
// NOTE: here we actually remove existing property mapping if it no longer part of resolved
|
|
292
|
+
// leaf set implementation of the class property
|
|
293
|
+
.map((setImp) => {
|
|
294
|
+
const existingPropertyMapping = existingPropertyMappings.find((pm) => pm.targetSetImplementation?.value === setImp);
|
|
295
|
+
if (existingPropertyMapping) {
|
|
296
|
+
return existingPropertyMapping;
|
|
297
|
+
}
|
|
298
|
+
const newPropertyMapping = new RelationalPropertyMapping(setImplementation, PropertyExplicitReference.create(property), SetImplementationExplicitReference.create(setImplementation), SetImplementationExplicitReference.create(setImp));
|
|
299
|
+
newPropertyMapping.relationalOperation =
|
|
300
|
+
stub_RawRelationalOperationElement();
|
|
301
|
+
return newPropertyMapping;
|
|
302
|
+
})
|
|
303
|
+
// sort these property mappings by id of their set implementations
|
|
304
|
+
.sort((a, b) => (a.targetSetImplementation?.value.id.value ?? '').localeCompare(b.targetSetImplementation?.value.id.value ?? ''));
|
|
305
|
+
}
|
|
306
|
+
// add the embedded property mapping to the end of the list
|
|
307
|
+
return classPropertyMappings.concat(existingPropertyMappings.filter((pm) => pm instanceof EmbeddedRelationalInstanceSetImplementation));
|
|
308
|
+
}
|
|
309
|
+
return [];
|
|
310
|
+
};
|
|
311
|
+
const propertyMappingsBeforeDecoration = setImplementation.propertyMappings;
|
|
312
|
+
const decoratedPropertyMappings = getDecoratedSetImplementationPropertyMappings(setImplementation, decoratePropertyMapping);
|
|
313
|
+
mapping_setPropertyMappings(setImplementation, decoratedPropertyMappings.concat(propertyMappingsBeforeDecoration.filter((propertyMapping) => !decoratedPropertyMappings.includes(propertyMapping))), this.editorStore.changeDetectionState.observerContext);
|
|
314
|
+
}
|
|
315
|
+
visit_AggregationAwareSetImplementation(setImplementation) {
|
|
316
|
+
return;
|
|
317
|
+
}
|
|
318
|
+
visit_SetImplementation(setImplementation) {
|
|
319
|
+
const extraSetImplementationDecorators = this.editorStore.pluginManager
|
|
320
|
+
.getApplicationPlugins()
|
|
321
|
+
.flatMap((plugin) => plugin.getExtraSetImplementationDecorators?.() ?? []);
|
|
322
|
+
for (const decorator of extraSetImplementationDecorators) {
|
|
323
|
+
decorator(setImplementation);
|
|
324
|
+
}
|
|
325
|
+
}
|
|
326
|
+
visit_TEMPORARY__UnresolvedSetImplementation(setImplementation) {
|
|
327
|
+
return;
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
/**
|
|
331
|
+
* This is the cleanup for mapping elements decorated by {@link MappingElementDecorator}.
|
|
332
|
+
*/
|
|
333
|
+
export class MappingElementDecorationCleaner {
|
|
334
|
+
editorStore;
|
|
335
|
+
constructor(editorStore) {
|
|
336
|
+
this.editorStore = editorStore;
|
|
337
|
+
}
|
|
338
|
+
visitEnumerationMapping(enumerationMapping) {
|
|
339
|
+
// Remove the enum value mapping if all of its source values are empty
|
|
340
|
+
const nonEmptyEnumValueMappings = enumerationMapping.enumValueMappings.filter((enumValueMapping) => !isStubbed_EnumValueMapping(enumValueMapping));
|
|
341
|
+
// Prune the empty source values of each enum value mapping
|
|
342
|
+
nonEmptyEnumValueMappings.forEach((enumValueMapping) => {
|
|
343
|
+
enumValueMapping_setSourceValues(enumValueMapping, enumValueMapping.sourceValues.filter(isNonNullable));
|
|
344
|
+
});
|
|
345
|
+
enumMapping_setEnumValueMappings(enumerationMapping, nonEmptyEnumValueMappings);
|
|
346
|
+
}
|
|
347
|
+
visit_OperationSetImplementation(setImplementation) {
|
|
348
|
+
operationMapping_setParameters(setImplementation, setImplementation.parameters.filter((param) => !isStubbed_SetImplementationContainer(param)));
|
|
349
|
+
}
|
|
350
|
+
visit_MergeOperationSetImplementation(setImplementation) {
|
|
351
|
+
operationMapping_setParameters(setImplementation, setImplementation.parameters.filter((param) => !isStubbed_SetImplementationContainer(param)));
|
|
352
|
+
}
|
|
353
|
+
visit_PureInstanceSetImplementation(setImplementation) {
|
|
354
|
+
mapping_setPropertyMappings(setImplementation, setImplementation.propertyMappings.filter((propertyMapping) => !isStubbed_RawLambda(propertyMapping.transform)), this.editorStore.changeDetectionState.observerContext);
|
|
355
|
+
}
|
|
356
|
+
visit_FlatDataInstanceSetImplementation(setImplementation) {
|
|
357
|
+
mapping_setPropertyMappings(setImplementation, setImplementation.propertyMappings.filter((propertyMapping) => (propertyMapping instanceof FlatDataPropertyMapping &&
|
|
358
|
+
!isStubbed_RawLambda(propertyMapping.transform)) ||
|
|
359
|
+
(propertyMapping instanceof EmbeddedFlatDataPropertyMapping &&
|
|
360
|
+
propertyMapping.property)), this.editorStore.changeDetectionState.observerContext);
|
|
361
|
+
}
|
|
362
|
+
visit_EmbeddedFlatDataSetImplementation(setImplementation) {
|
|
363
|
+
this.visit_FlatDataInstanceSetImplementation(setImplementation);
|
|
364
|
+
}
|
|
365
|
+
visit_RelationalInstanceSetImplementation(setImplementation) {
|
|
366
|
+
// TODO: add when relational is supported
|
|
367
|
+
}
|
|
368
|
+
visit_RootRelationalInstanceSetImplementation(setImplementation) {
|
|
369
|
+
rootRelationalSetImp_setPropertyMappings(setImplementation, setImplementation.propertyMappings.filter((propertyMapping) => (propertyMapping instanceof RelationalPropertyMapping &&
|
|
370
|
+
!isStubbed_RawRelationalOperationElement(propertyMapping.relationalOperation)) ||
|
|
371
|
+
propertyMapping instanceof
|
|
372
|
+
EmbeddedRelationalInstanceSetImplementation), this.editorStore.changeDetectionState.observerContext);
|
|
373
|
+
}
|
|
374
|
+
visit_AggregationAwareSetImplementation(setImplementation) {
|
|
375
|
+
return;
|
|
376
|
+
}
|
|
377
|
+
visit_SetImplementation(setImplementation) {
|
|
378
|
+
const extraSetImplementationDecorationCleaners = this.editorStore.pluginManager
|
|
379
|
+
.getApplicationPlugins()
|
|
380
|
+
.flatMap((plugin) => plugin.getExtraSetImplementationDecorationCleaners?.() ?? []);
|
|
381
|
+
for (const decorationCleaner of extraSetImplementationDecorationCleaners) {
|
|
382
|
+
decorationCleaner(setImplementation);
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
visit_TEMPORARY__UnresolvedSetImplementation(setImplementation) {
|
|
386
|
+
return;
|
|
387
|
+
}
|
|
388
|
+
}
|
|
389
|
+
//# sourceMappingURL=MappingElementDecorator.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MappingElementDecorator.js","sourceRoot":"","sources":["../../../../../src/stores/editor-state/element-editor-state/mapping/MappingElementDecorator.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright (c) 2020-present, Goldman Sachs
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { type GeneratorFn } from '@finos/legend-shared';
|
|
17
|
+
import type { EditorStore } from '../../../EditorStore.js';
|
|
18
|
+
import type { MappingElement } from './MappingEditorState.js';
|
|
19
|
+
import type { PropertyMapping, InstanceSetImplementation, SetImplementation, Type } from '@finos/legend-graph';
|
|
20
|
+
import { LambdaEditorState } from '@finos/legend-application';
|
|
21
|
+
export declare class MappingElementState {
|
|
22
|
+
readonly uuid: string;
|
|
23
|
+
editorStore: EditorStore;
|
|
24
|
+
mappingElement: MappingElement;
|
|
25
|
+
constructor(editorStore: EditorStore, mappingElement: MappingElement);
|
|
26
|
+
}
|
|
27
|
+
export declare abstract class SetImplementationState extends MappingElementState {
|
|
28
|
+
mappingElement: SetImplementation;
|
|
29
|
+
constructor(editorStore: EditorStore, setImplementation: SetImplementation);
|
|
30
|
+
get setImplementation(): SetImplementation;
|
|
31
|
+
}
|
|
32
|
+
export declare abstract class InstanceSetImplementationState extends SetImplementationState {
|
|
33
|
+
mappingElement: InstanceSetImplementation;
|
|
34
|
+
propertyMappingStates: PropertyMappingState[];
|
|
35
|
+
selectedType?: Type | undefined;
|
|
36
|
+
constructor(editorStore: EditorStore, setImplementation: InstanceSetImplementation);
|
|
37
|
+
setSelectedType(type: Type | undefined): void;
|
|
38
|
+
abstract decorate(): void;
|
|
39
|
+
abstract convertPropertyMappingTransformObjects(): GeneratorFn<void>;
|
|
40
|
+
}
|
|
41
|
+
export declare abstract class PropertyMappingState extends LambdaEditorState {
|
|
42
|
+
instanceSetImplementationState: InstanceSetImplementationState;
|
|
43
|
+
propertyMapping: PropertyMapping;
|
|
44
|
+
constructor(instanceSetImplementationState: InstanceSetImplementationState, propertyMapping: PropertyMapping, lambdaString: string, lambdaPrefix: string);
|
|
45
|
+
}
|
|
46
|
+
//# sourceMappingURL=MappingElementState.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MappingElementState.d.ts","sourceRoot":"","sources":["../../../../../src/stores/editor-state/element-editor-state/mapping/MappingElementState.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,EAAE,KAAK,WAAW,EAAQ,MAAM,sBAAsB,CAAC;AAC9D,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AAC3D,OAAO,KAAK,EAAE,cAAc,EAAE,MAAM,yBAAyB,CAAC;AAC9D,OAAO,KAAK,EACV,eAAe,EACf,yBAAyB,EACzB,iBAAiB,EACjB,IAAI,EACL,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,iBAAiB,EAAE,MAAM,2BAA2B,CAAC;AAE9D,qBAAa,mBAAmB;IAC9B,QAAQ,CAAC,IAAI,SAAU;IACvB,WAAW,EAAE,WAAW,CAAC;IACzB,cAAc,EAAE,cAAc,CAAC;gBAEnB,WAAW,EAAE,WAAW,EAAE,cAAc,EAAE,cAAc;CAQrE;AAED,8BAAsB,sBAAuB,SAAQ,mBAAmB;IAC9D,cAAc,EAAE,iBAAiB,CAAC;gBAE9B,WAAW,EAAE,WAAW,EAAE,iBAAiB,EAAE,iBAAiB;IAU1E,IAAI,iBAAiB,IAAI,iBAAiB,CAEzC;CACF;AAED,8BAAsB,8BAA+B,SAAQ,sBAAsB;IACzE,cAAc,EAAE,yBAAyB,CAAC;IAClD,qBAAqB,EAAE,oBAAoB,EAAE,CAAM;IACnD,YAAY,CAAC,EAAE,IAAI,GAAG,SAAS,CAAC;gBAG9B,WAAW,EAAE,WAAW,EACxB,iBAAiB,EAAE,yBAAyB;IAe9C,eAAe,CAAC,IAAI,EAAE,IAAI,GAAG,SAAS,GAAG,IAAI;IAI7C,QAAQ,CAAC,QAAQ,IAAI,IAAI;IACzB,QAAQ,CAAC,sCAAsC,IAAI,WAAW,CAAC,IAAI,CAAC;CACrE;AAED,8BAAsB,oBAAqB,SAAQ,iBAAiB;IAClE,8BAA8B,EAAE,8BAA8B,CAAC;IAC/D,eAAe,EAAE,eAAe,CAAC;gBAG/B,8BAA8B,EAAE,8BAA8B,EAC9D,eAAe,EAAE,eAAe,EAChC,YAAY,EAAE,MAAM,EACpB,YAAY,EAAE,MAAM;CAWvB"}
|