@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,172 @@
|
|
|
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 { observable, action, flow, computed, makeObservable } from 'mobx';
|
|
17
|
+
import { assertErrorThrown, LogEvent, assertNonNullable, guaranteeNonNullable, hashObject, } from '@finos/legend-shared';
|
|
18
|
+
import { EntityDiffEditorState, } from './EntityDiffEditorState.js';
|
|
19
|
+
import { extractEntityNameFromPath } from '@finos/legend-storage';
|
|
20
|
+
import { LEGEND_STUDIO_APP_EVENT } from '../../LegendStudioAppEvent.js';
|
|
21
|
+
/**
|
|
22
|
+
* NOTE: when we support comparison between entities, we should create a new editor state
|
|
23
|
+
* as there are no benefits in trying to make this current one also work with comparison
|
|
24
|
+
* There are many differences, such as the concept of from and to revision makes no sense,
|
|
25
|
+
* the header text is different, etc.
|
|
26
|
+
*/
|
|
27
|
+
export var DIFF_VIEW_MODE;
|
|
28
|
+
(function (DIFF_VIEW_MODE) {
|
|
29
|
+
DIFF_VIEW_MODE["JSON"] = "JSON";
|
|
30
|
+
DIFF_VIEW_MODE["GRAMMAR"] = "Grammar";
|
|
31
|
+
})(DIFF_VIEW_MODE = DIFF_VIEW_MODE || (DIFF_VIEW_MODE = {}));
|
|
32
|
+
export class EntityDiffViewState extends EntityDiffEditorState {
|
|
33
|
+
diffMode = DIFF_VIEW_MODE.GRAMMAR;
|
|
34
|
+
fromEntityPath;
|
|
35
|
+
toEntityPath;
|
|
36
|
+
fromRevision;
|
|
37
|
+
toRevision;
|
|
38
|
+
// to and from entities
|
|
39
|
+
fromEntity;
|
|
40
|
+
toEntity;
|
|
41
|
+
fromGrammarText;
|
|
42
|
+
toGrammarText;
|
|
43
|
+
// functions to get to and from entities
|
|
44
|
+
fromEntityGetter;
|
|
45
|
+
toEntityGetter;
|
|
46
|
+
constructor(editorStore, fromRevision, toRevision, fromEntityPath, toEntityPath, fromEntity, toEntity, fromEntityGetter, toEntityGetter) {
|
|
47
|
+
super(editorStore);
|
|
48
|
+
makeObservable(this, {
|
|
49
|
+
diffMode: observable,
|
|
50
|
+
fromEntityPath: observable,
|
|
51
|
+
toEntityPath: observable,
|
|
52
|
+
fromRevision: observable,
|
|
53
|
+
toRevision: observable,
|
|
54
|
+
fromEntity: observable.ref,
|
|
55
|
+
toEntity: observable.ref,
|
|
56
|
+
fromGrammarText: observable,
|
|
57
|
+
toGrammarText: observable,
|
|
58
|
+
fromEntityGetter: observable,
|
|
59
|
+
toEntityGetter: observable,
|
|
60
|
+
effectiveEntityPath: computed,
|
|
61
|
+
element: computed,
|
|
62
|
+
headerName: computed,
|
|
63
|
+
headerTooltip: computed,
|
|
64
|
+
summaryText: computed,
|
|
65
|
+
setDiffMode: action,
|
|
66
|
+
setToGrammarText: action,
|
|
67
|
+
setFromGrammarText: action,
|
|
68
|
+
refresh: action,
|
|
69
|
+
getFromGrammar: flow,
|
|
70
|
+
getToGrammar: flow,
|
|
71
|
+
});
|
|
72
|
+
this.fromEntityPath = fromEntityPath;
|
|
73
|
+
this.toEntityPath = toEntityPath;
|
|
74
|
+
assertNonNullable(this.effectiveEntityPath);
|
|
75
|
+
this.fromEntity = fromEntity;
|
|
76
|
+
this.toEntity = toEntity;
|
|
77
|
+
this.fromRevision = fromRevision;
|
|
78
|
+
this.toRevision = toRevision;
|
|
79
|
+
this.fromEntityGetter = fromEntityGetter;
|
|
80
|
+
this.toEntityGetter = toEntityGetter;
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* The idea behind effective is that an entity diff state was constructed, one of `toEntityPath` and `fromEntityPath` can be undefined
|
|
84
|
+
* when the diff is a delete or create. But we can always guarantee that at least one exist and thus `effectiveEntityPath` is that guaranteed to exist path.
|
|
85
|
+
* It serves 2 main purposes:
|
|
86
|
+
* 1. For display
|
|
87
|
+
* 2. For refreshing diff: for example, when we push a workspace change, a delete is updated and if we continue to use the
|
|
88
|
+
* `toEntityPath` the diff will be shown as a delete still, but we don't want this, we want both panels to have the same content
|
|
89
|
+
*
|
|
90
|
+
* As for which path to take precedence, it is more suitable to take `toEntityPath` because it reflects what currently presents in the project
|
|
91
|
+
* and what the UI should show all the time in the display
|
|
92
|
+
* e.g. it does not make sense to show the old path for a create element diff.
|
|
93
|
+
*/
|
|
94
|
+
get effectiveEntityPath() {
|
|
95
|
+
return guaranteeNonNullable(this.toEntityPath ?? this.fromEntityPath, 'Neither from nor to entity paths can be missing');
|
|
96
|
+
}
|
|
97
|
+
get element() {
|
|
98
|
+
return this.editorStore.graphManagerState.graph.getNullableElement(this.effectiveEntityPath);
|
|
99
|
+
}
|
|
100
|
+
get headerName() {
|
|
101
|
+
return extractEntityNameFromPath(this.effectiveEntityPath);
|
|
102
|
+
}
|
|
103
|
+
get headerTooltip() {
|
|
104
|
+
return this.effectiveEntityPath;
|
|
105
|
+
}
|
|
106
|
+
get summaryText() {
|
|
107
|
+
// NOTE: we don't support rename at the moment
|
|
108
|
+
if (!this.fromEntity && !this.toEntity) {
|
|
109
|
+
return 'Nothing to compare. Neither entity contents is available';
|
|
110
|
+
}
|
|
111
|
+
else if (!this.fromEntity) {
|
|
112
|
+
return `Entity '${this.toEntityPath}' is created`;
|
|
113
|
+
}
|
|
114
|
+
else if (!this.toEntity) {
|
|
115
|
+
return `Entity '${this.fromEntityPath}' is deleted`;
|
|
116
|
+
}
|
|
117
|
+
else if (hashObject(this.fromEntity.content) === hashObject(this.toEntity.content)) {
|
|
118
|
+
return 'Entity contents are identical';
|
|
119
|
+
}
|
|
120
|
+
return `Entity '${this.toEntityPath}' is modified`;
|
|
121
|
+
}
|
|
122
|
+
setDiffMode = (diffMode) => {
|
|
123
|
+
this.diffMode = diffMode;
|
|
124
|
+
};
|
|
125
|
+
setToGrammarText = (text) => {
|
|
126
|
+
this.toGrammarText = text;
|
|
127
|
+
};
|
|
128
|
+
setFromGrammarText = (text) => {
|
|
129
|
+
this.fromGrammarText = text;
|
|
130
|
+
};
|
|
131
|
+
refresh() {
|
|
132
|
+
this.fromEntity = this.fromEntityGetter
|
|
133
|
+
? this.fromEntityGetter(this.effectiveEntityPath)
|
|
134
|
+
: this.fromEntity;
|
|
135
|
+
this.toEntity = this.toEntityGetter
|
|
136
|
+
? this.toEntityGetter(this.effectiveEntityPath)
|
|
137
|
+
: this.toEntity;
|
|
138
|
+
}
|
|
139
|
+
*getFromGrammar() {
|
|
140
|
+
if (this.fromEntity) {
|
|
141
|
+
try {
|
|
142
|
+
const elementGrammar = (yield this.editorStore.graphManagerState.graphManager.entitiesToPureCode([this.fromEntity]));
|
|
143
|
+
this.setFromGrammarText(elementGrammar);
|
|
144
|
+
}
|
|
145
|
+
catch (error) {
|
|
146
|
+
assertErrorThrown(error);
|
|
147
|
+
this.setFromGrammarText('/* Failed to transform grammar text, see JSON diff instead */');
|
|
148
|
+
this.editorStore.applicationStore.log.error(LogEvent.create(LEGEND_STUDIO_APP_EVENT.SDLC_MANAGER_FAILURE), error);
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
else {
|
|
152
|
+
this.setFromGrammarText('');
|
|
153
|
+
}
|
|
154
|
+
}
|
|
155
|
+
*getToGrammar() {
|
|
156
|
+
if (this.toEntity) {
|
|
157
|
+
try {
|
|
158
|
+
const elementGrammar = (yield this.editorStore.graphManagerState.graphManager.entitiesToPureCode([this.toEntity]));
|
|
159
|
+
this.setToGrammarText(elementGrammar);
|
|
160
|
+
}
|
|
161
|
+
catch (error) {
|
|
162
|
+
assertErrorThrown(error);
|
|
163
|
+
this.setFromGrammarText('/* Failed to transform grammar text, see JSON diff instead */');
|
|
164
|
+
this.editorStore.applicationStore.log.error(LogEvent.create(LEGEND_STUDIO_APP_EVENT.SDLC_MANAGER_FAILURE), error);
|
|
165
|
+
}
|
|
166
|
+
}
|
|
167
|
+
else {
|
|
168
|
+
this.setToGrammarText('');
|
|
169
|
+
}
|
|
170
|
+
}
|
|
171
|
+
}
|
|
172
|
+
//# sourceMappingURL=EntityDiffViewState.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EntityDiffViewState.js","sourceRoot":"","sources":["../../../../src/stores/editor-state/entity-diff-editor-state/EntityDiffViewState.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,27 @@
|
|
|
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 DataElement, type EmbeddedData, type ObserverContext, type ExternalFormatData, type ModelStoreData, type Class, type DataElementReference, type RelationalCSVDataTable, type RelationalCSVData } from '@finos/legend-graph';
|
|
17
|
+
export declare const dataElement_setEmbeddedData: (dataElement: DataElement, value: EmbeddedData, context: ObserverContext) => void;
|
|
18
|
+
export declare const externalFormatData_setContentType: (externalFormatData: ExternalFormatData, value: string) => void;
|
|
19
|
+
export declare const externalFormatData_setData: (externalFormatData: ExternalFormatData, value: string) => void;
|
|
20
|
+
export declare const modelStoreData_setInstance: (modelStoreData: ModelStoreData, value: Map<Class, object>) => void;
|
|
21
|
+
export declare const relationalData_setTableValues: (data: RelationalCSVDataTable, values: string) => void;
|
|
22
|
+
export declare const relationalData_setTableSchemaName: (data: RelationalCSVDataTable, value: string) => void;
|
|
23
|
+
export declare const relationalData_addTable: (data: RelationalCSVData, val: RelationalCSVDataTable) => void;
|
|
24
|
+
export declare const relationalData_setTableName: (data: RelationalCSVDataTable, value: string) => void;
|
|
25
|
+
export declare const relationalData_deleteData: (data: RelationalCSVData, val: RelationalCSVDataTable) => void;
|
|
26
|
+
export declare const dataElementReference_setDataElement: (dataElementReference: DataElementReference, value: DataElement, context: ObserverContext) => void;
|
|
27
|
+
//# sourceMappingURL=DSLData_GraphModifierHelper.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DSLData_GraphModifierHelper.d.ts","sourceRoot":"","sources":["../../../src/stores/graphModifier/DSLData_GraphModifierHelper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EACL,KAAK,WAAW,EAChB,KAAK,YAAY,EACjB,KAAK,eAAe,EACpB,KAAK,kBAAkB,EACvB,KAAK,cAAc,EACnB,KAAK,KAAK,EACV,KAAK,oBAAoB,EACzB,KAAK,sBAAsB,EAC3B,KAAK,iBAAiB,EAKvB,MAAM,qBAAqB,CAAC;AAI7B,eAAO,MAAM,2BAA2B,gBAEvB,WAAW,SACjB,YAAY,WACV,eAAe,KACvB,IAGJ,CAAC;AAEF,eAAO,MAAM,iCAAiC,uBACvB,kBAAkB,SAAS,MAAM,KAAG,IAG1D,CAAC;AAEF,eAAO,MAAM,0BAA0B,uBAChB,kBAAkB,SAAS,MAAM,KAAG,IAG1D,CAAC;AAEF,eAAO,MAAM,0BAA0B,mBACpB,cAAc,SAAS,IAAI,KAAK,EAAE,MAAM,CAAC,KAAG,IAG9D,CAAC;AAEF,eAAO,MAAM,6BAA6B,SACjC,sBAAsB,UAAU,MAAM,KAAG,IAGjD,CAAC;AAEF,eAAO,MAAM,iCAAiC,SACrC,sBAAsB,SAAS,MAAM,KAAG,IAGhD,CAAC;AAEF,eAAO,MAAM,uBAAuB,SAC3B,iBAAiB,OAAO,sBAAsB,KAAG,IAGzD,CAAC;AAEF,eAAO,MAAM,2BAA2B,SAC/B,sBAAsB,SAAS,MAAM,KAAG,IAGhD,CAAC;AAEF,eAAO,MAAM,yBAAyB,SAC7B,iBAAiB,OAAO,sBAAsB,KAAG,IAGzD,CAAC;AAEF,eAAO,MAAM,mCAAmC,yBAEtB,oBAAoB,SACnC,WAAW,WACT,eAAe,KACvB,IAMJ,CAAC"}
|
|
@@ -0,0 +1,50 @@
|
|
|
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 { observe_EmbeddedData, observe_DataElement, observe_RelationalDataTable, PackageableElementExplicitReference, } from '@finos/legend-graph';
|
|
17
|
+
import { addUniqueEntry, deleteEntry } from '@finos/legend-shared';
|
|
18
|
+
import { action } from 'mobx';
|
|
19
|
+
export const dataElement_setEmbeddedData = action((dataElement, value, context) => {
|
|
20
|
+
dataElement.data = observe_EmbeddedData(value, context);
|
|
21
|
+
});
|
|
22
|
+
export const externalFormatData_setContentType = action((externalFormatData, value) => {
|
|
23
|
+
externalFormatData.contentType = value;
|
|
24
|
+
});
|
|
25
|
+
export const externalFormatData_setData = action((externalFormatData, value) => {
|
|
26
|
+
externalFormatData.data = value;
|
|
27
|
+
});
|
|
28
|
+
export const modelStoreData_setInstance = action((modelStoreData, value) => {
|
|
29
|
+
modelStoreData.instances = value;
|
|
30
|
+
});
|
|
31
|
+
export const relationalData_setTableValues = action((data, values) => {
|
|
32
|
+
data.values = values;
|
|
33
|
+
});
|
|
34
|
+
export const relationalData_setTableSchemaName = action((data, value) => {
|
|
35
|
+
data.schema = value;
|
|
36
|
+
});
|
|
37
|
+
export const relationalData_addTable = action((data, val) => {
|
|
38
|
+
addUniqueEntry(data.tables, observe_RelationalDataTable(val));
|
|
39
|
+
});
|
|
40
|
+
export const relationalData_setTableName = action((data, value) => {
|
|
41
|
+
data.table = value;
|
|
42
|
+
});
|
|
43
|
+
export const relationalData_deleteData = action((data, val) => {
|
|
44
|
+
deleteEntry(data.tables, val);
|
|
45
|
+
});
|
|
46
|
+
export const dataElementReference_setDataElement = action((dataElementReference, value, context) => {
|
|
47
|
+
dataElementReference.dataElement =
|
|
48
|
+
PackageableElementExplicitReference.create(observe_DataElement(value, context));
|
|
49
|
+
});
|
|
50
|
+
//# sourceMappingURL=DSLData_GraphModifierHelper.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DSLData_GraphModifierHelper.js","sourceRoot":"","sources":["../../../src/stores/graphModifier/DSLData_GraphModifierHelper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAUL,oBAAoB,EACpB,mBAAmB,EACnB,2BAA2B,EAC3B,mCAAmC,GACpC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EAAE,cAAc,EAAE,WAAW,EAAE,MAAM,sBAAsB,CAAC;AACnE,OAAO,EAAE,MAAM,EAAE,MAAM,MAAM,CAAC;AAE9B,MAAM,CAAC,MAAM,2BAA2B,GAAG,MAAM,CAC/C,CACE,WAAwB,EACxB,KAAmB,EACnB,OAAwB,EAClB,EAAE;IACR,WAAW,CAAC,IAAI,GAAG,oBAAoB,CAAC,KAAK,EAAE,OAAO,CAAC,CAAC;AAC1D,CAAC,CACF,CAAC;AAEF,MAAM,CAAC,MAAM,iCAAiC,GAAG,MAAM,CACrD,CAAC,kBAAsC,EAAE,KAAa,EAAQ,EAAE;IAC9D,kBAAkB,CAAC,WAAW,GAAG,KAAK,CAAC;AACzC,CAAC,CACF,CAAC;AAEF,MAAM,CAAC,MAAM,0BAA0B,GAAG,MAAM,CAC9C,CAAC,kBAAsC,EAAE,KAAa,EAAQ,EAAE;IAC9D,kBAAkB,CAAC,IAAI,GAAG,KAAK,CAAC;AAClC,CAAC,CACF,CAAC;AAEF,MAAM,CAAC,MAAM,0BAA0B,GAAG,MAAM,CAC9C,CAAC,cAA8B,EAAE,KAAyB,EAAQ,EAAE;IAClE,cAAc,CAAC,SAAS,GAAG,KAAK,CAAC;AACnC,CAAC,CACF,CAAC;AAEF,MAAM,CAAC,MAAM,6BAA6B,GAAG,MAAM,CACjD,CAAC,IAA4B,EAAE,MAAc,EAAQ,EAAE;IACrD,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;AACvB,CAAC,CACF,CAAC;AAEF,MAAM,CAAC,MAAM,iCAAiC,GAAG,MAAM,CACrD,CAAC,IAA4B,EAAE,KAAa,EAAQ,EAAE;IACpD,IAAI,CAAC,MAAM,GAAG,KAAK,CAAC;AACtB,CAAC,CACF,CAAC;AAEF,MAAM,CAAC,MAAM,uBAAuB,GAAG,MAAM,CAC3C,CAAC,IAAuB,EAAE,GAA2B,EAAQ,EAAE;IAC7D,cAAc,CAAC,IAAI,CAAC,MAAM,EAAE,2BAA2B,CAAC,GAAG,CAAC,CAAC,CAAC;AAChE,CAAC,CACF,CAAC;AAEF,MAAM,CAAC,MAAM,2BAA2B,GAAG,MAAM,CAC/C,CAAC,IAA4B,EAAE,KAAa,EAAQ,EAAE;IACpD,IAAI,CAAC,KAAK,GAAG,KAAK,CAAC;AACrB,CAAC,CACF,CAAC;AAEF,MAAM,CAAC,MAAM,yBAAyB,GAAG,MAAM,CAC7C,CAAC,IAAuB,EAAE,GAA2B,EAAQ,EAAE;IAC7D,WAAW,CAAC,IAAI,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;AAChC,CAAC,CACF,CAAC;AAEF,MAAM,CAAC,MAAM,mCAAmC,GAAG,MAAM,CACvD,CACE,oBAA0C,EAC1C,KAAkB,EAClB,OAAwB,EAClB,EAAE;IACR,oBAAoB,CAAC,WAAW;QAC9B,mCAAmC,CAAC,MAAM,CACxC,mBAAmB,CAAC,KAAK,EAAE,OAAO,CAAC,CACpC,CAAC;AACN,CAAC,CACF,CAAC"}
|
|
@@ -0,0 +1,33 @@
|
|
|
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 Binding, type ExternalFormatSchema, type ModelUnit, type PackageableElement, type PackageableElementReference, type SchemaSet, type UrlStream, type BindingTransformer } from '@finos/legend-graph';
|
|
17
|
+
export declare const externalFormat_urlStream_setUrl: (us: UrlStream, val: string) => void;
|
|
18
|
+
export declare const externalFormat_schema_setId: (s: ExternalFormatSchema, value: string) => void;
|
|
19
|
+
export declare const externalFormat_schema_setLocation: (s: ExternalFormatSchema, value: string) => void;
|
|
20
|
+
export declare const externalFormat_schema_setContent: (s: ExternalFormatSchema, value: string) => void;
|
|
21
|
+
export declare const externalFormat_schemaSet_setFormat: (ss: SchemaSet, value: string) => void;
|
|
22
|
+
export declare const externalFormat_schemaSet_addSchema: (ss: SchemaSet, value: ExternalFormatSchema) => void;
|
|
23
|
+
export declare const externalFormat_schemaSet_deleteSchema: (ss: SchemaSet, value: ExternalFormatSchema) => void;
|
|
24
|
+
export declare const externalFormat_BindingTransformer_setBinding: (bt: BindingTransformer, value: PackageableElementReference<Binding>) => void;
|
|
25
|
+
export declare const externalFormat_Binding_setSchemaSet: (binding: Binding, value: PackageableElementReference<SchemaSet> | undefined) => void;
|
|
26
|
+
export declare const externalFormat_Binding_setSchemaId: (binding: Binding, value: string | undefined) => void;
|
|
27
|
+
export declare const externalFormat_Binding_setContentType: (binding: Binding, value: string) => void;
|
|
28
|
+
export declare const externalFormat_Binding_setModelUnit: (binding: Binding, value: ModelUnit) => void;
|
|
29
|
+
export declare const externalFormat_modelUnit_addPackageableElementIncludes: (mU: ModelUnit, value: PackageableElementReference<PackageableElement>) => void;
|
|
30
|
+
export declare const externalFormat_modelUnit_deletePackageableElementIncludes: (mU: ModelUnit, value: PackageableElementReference<PackageableElement>) => void;
|
|
31
|
+
export declare const externalFormat_modelUnit_addPackageableElementExcludes: (mU: ModelUnit, value: PackageableElementReference<PackageableElement>) => void;
|
|
32
|
+
export declare const externalFormat_modelUnit_deletePackageableElementExcludes: (mU: ModelUnit, value: PackageableElementReference<PackageableElement>) => void;
|
|
33
|
+
//# sourceMappingURL=DSLExternalFormat_GraphModifierHelper.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DSLExternalFormat_GraphModifierHelper.d.ts","sourceRoot":"","sources":["../../../src/stores/graphModifier/DSLExternalFormat_GraphModifierHelper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EACL,KAAK,OAAO,EACZ,KAAK,oBAAoB,EACzB,KAAK,SAAS,EACd,KAAK,kBAAkB,EACvB,KAAK,2BAA2B,EAChC,KAAK,SAAS,EACd,KAAK,SAAS,EACd,KAAK,kBAAkB,EAIxB,MAAM,qBAAqB,CAAC;AAI7B,eAAO,MAAM,+BAA+B,OACrC,SAAS,OAAO,MAAM,KAAG,IAG/B,CAAC;AACF,eAAO,MAAM,2BAA2B,MAClC,oBAAoB,SAAS,MAAM,KAAG,IAG3C,CAAC;AACF,eAAO,MAAM,iCAAiC,MACxC,oBAAoB,SAAS,MAAM,KAAG,IAG3C,CAAC;AACF,eAAO,MAAM,gCAAgC,MACvC,oBAAoB,SAAS,MAAM,KAAG,IAG3C,CAAC;AACF,eAAO,MAAM,kCAAkC,OACxC,SAAS,SAAS,MAAM,KAAG,IAGjC,CAAC;AACF,eAAO,MAAM,kCAAkC,OACxC,SAAS,SAAS,oBAAoB,KAAG,IAG/C,CAAC;AACF,eAAO,MAAM,qCAAqC,OAC3C,SAAS,SAAS,oBAAoB,KAAG,IAG/C,CAAC;AACF,eAAO,MAAM,4CAA4C,OAEjD,kBAAkB,SACf,4BAA4B,OAAO,CAAC,KAC1C,IAGJ,CAAC;AACF,eAAO,MAAM,mCAAmC,YAEnC,OAAO,SACT,4BAA4B,SAAS,CAAC,GAAG,SAAS,KACxD,IAKJ,CAAC;AACF,eAAO,MAAM,kCAAkC,YACnC,OAAO,SAAS,MAAM,GAAG,SAAS,KAAG,IAGhD,CAAC;AACF,eAAO,MAAM,qCAAqC,YACtC,OAAO,SAAS,MAAM,KAAG,IAGpC,CAAC;AACF,eAAO,MAAM,mCAAmC,YACpC,OAAO,SAAS,SAAS,KAAG,IAGvC,CAAC;AACF,eAAO,MAAM,sDAAsD,OAE3D,SAAS,SACN,4BAA4B,kBAAkB,CAAC,KACrD,IAMJ,CAAC;AACF,eAAO,MAAM,yDAAyD,OAE9D,SAAS,SACN,4BAA4B,kBAAkB,CAAC,KACrD,IAGJ,CAAC;AACF,eAAO,MAAM,sDAAsD,OAE3D,SAAS,SACN,4BAA4B,kBAAkB,CAAC,KACrD,IAMJ,CAAC;AACF,eAAO,MAAM,yDAAyD,OAE9D,SAAS,SACN,4BAA4B,kBAAkB,CAAC,KACrD,IAGJ,CAAC"}
|
|
@@ -0,0 +1,69 @@
|
|
|
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 { observe_ExternalFormatSchema, observe_PackageableElementReference, observe_ModelUnit, } from '@finos/legend-graph';
|
|
17
|
+
import { addUniqueEntry, deleteEntry } from '@finos/legend-shared';
|
|
18
|
+
import { action } from 'mobx';
|
|
19
|
+
export const externalFormat_urlStream_setUrl = action((us, val) => {
|
|
20
|
+
us.url = val;
|
|
21
|
+
});
|
|
22
|
+
export const externalFormat_schema_setId = action((s, value) => {
|
|
23
|
+
s.id = value;
|
|
24
|
+
});
|
|
25
|
+
export const externalFormat_schema_setLocation = action((s, value) => {
|
|
26
|
+
s.location = value;
|
|
27
|
+
});
|
|
28
|
+
export const externalFormat_schema_setContent = action((s, value) => {
|
|
29
|
+
s.content = value;
|
|
30
|
+
});
|
|
31
|
+
export const externalFormat_schemaSet_setFormat = action((ss, value) => {
|
|
32
|
+
ss.format = value;
|
|
33
|
+
});
|
|
34
|
+
export const externalFormat_schemaSet_addSchema = action((ss, value) => {
|
|
35
|
+
addUniqueEntry(ss.schemas, observe_ExternalFormatSchema(value));
|
|
36
|
+
});
|
|
37
|
+
export const externalFormat_schemaSet_deleteSchema = action((ss, value) => {
|
|
38
|
+
deleteEntry(ss.schemas, value);
|
|
39
|
+
});
|
|
40
|
+
export const externalFormat_BindingTransformer_setBinding = action((bt, value) => {
|
|
41
|
+
bt.binding = observe_PackageableElementReference(value);
|
|
42
|
+
});
|
|
43
|
+
export const externalFormat_Binding_setSchemaSet = action((binding, value) => {
|
|
44
|
+
binding.schemaSet = value
|
|
45
|
+
? observe_PackageableElementReference(value)
|
|
46
|
+
: undefined;
|
|
47
|
+
});
|
|
48
|
+
export const externalFormat_Binding_setSchemaId = action((binding, value) => {
|
|
49
|
+
binding.schemaId = value;
|
|
50
|
+
});
|
|
51
|
+
export const externalFormat_Binding_setContentType = action((binding, value) => {
|
|
52
|
+
binding.contentType = value;
|
|
53
|
+
});
|
|
54
|
+
export const externalFormat_Binding_setModelUnit = action((binding, value) => {
|
|
55
|
+
binding.modelUnit = observe_ModelUnit(value);
|
|
56
|
+
});
|
|
57
|
+
export const externalFormat_modelUnit_addPackageableElementIncludes = action((mU, value) => {
|
|
58
|
+
addUniqueEntry(mU.packageableElementIncludes, observe_PackageableElementReference(value));
|
|
59
|
+
});
|
|
60
|
+
export const externalFormat_modelUnit_deletePackageableElementIncludes = action((mU, value) => {
|
|
61
|
+
deleteEntry(mU.packageableElementIncludes, value);
|
|
62
|
+
});
|
|
63
|
+
export const externalFormat_modelUnit_addPackageableElementExcludes = action((mU, value) => {
|
|
64
|
+
addUniqueEntry(mU.packageableElementExcludes, observe_PackageableElementReference(value));
|
|
65
|
+
});
|
|
66
|
+
export const externalFormat_modelUnit_deletePackageableElementExcludes = action((mU, value) => {
|
|
67
|
+
deleteEntry(mU.packageableElementExcludes, value);
|
|
68
|
+
});
|
|
69
|
+
//# sourceMappingURL=DSLExternalFormat_GraphModifierHelper.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DSLExternalFormat_GraphModifierHelper.js","sourceRoot":"","sources":["../../../src/stores/graphModifier/DSLExternalFormat_GraphModifierHelper.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,32 @@
|
|
|
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 PackageableElement, PackageableElementReference, type ConfigurationProperty, type GenerationSpecification, FileGenerationSpecification, GenerationTreeNode } from '@finos/legend-graph';
|
|
17
|
+
export declare const configurationProperty_setValue: (cp: ConfigurationProperty, value: unknown) => void;
|
|
18
|
+
export declare const fileGeneration_setType: (fg: FileGenerationSpecification, value: string) => void;
|
|
19
|
+
export declare const fileGeneration_addConfigurationProperty: (fg: FileGenerationSpecification, cp: ConfigurationProperty) => void;
|
|
20
|
+
export declare const fileGeneration_setGenerationOutputPath: (fg: FileGenerationSpecification, val?: string) => void;
|
|
21
|
+
export declare const fileGeneration_setScopeElements: (fg: FileGenerationSpecification, value: (PackageableElementReference<PackageableElement> | string)[]) => void;
|
|
22
|
+
export declare const fileGeneration_addScopeElement: (fg: FileGenerationSpecification, value: PackageableElementReference<PackageableElement> | string) => void;
|
|
23
|
+
export declare const fileGeneration_deleteScopeElement: (fg: FileGenerationSpecification, value: PackageableElementReference<PackageableElement> | string) => void;
|
|
24
|
+
export declare const fileGeneration_changeScopeElement: (fg: FileGenerationSpecification, oldValue: PackageableElementReference<PackageableElement> | string, newValue: PackageableElementReference<PackageableElement> | string) => void;
|
|
25
|
+
export declare const generationSpecification_addNode: (genSpec: GenerationSpecification, value: GenerationTreeNode) => void;
|
|
26
|
+
export declare const generationSpecification_addFileGeneration: (genSpec: GenerationSpecification, value: FileGenerationSpecification) => void;
|
|
27
|
+
export declare const createObservableFileGeneration: () => FileGenerationSpecification;
|
|
28
|
+
export declare const generationSpecification_deleteFileGeneration: (genSpec: GenerationSpecification, value: PackageableElementReference<FileGenerationSpecification>) => void;
|
|
29
|
+
export declare const generationSpecification_setId: (treeNode: GenerationTreeNode, val: string) => void;
|
|
30
|
+
export declare const generationSpecification_deleteGenerationNode: (genSpec: GenerationSpecification, value: GenerationTreeNode) => void;
|
|
31
|
+
export declare const generationSpecification_addGenerationElement: (genSpec: GenerationSpecification, element: PackageableElement) => void;
|
|
32
|
+
//# sourceMappingURL=DSLGeneration_GraphModifierHelper.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DSLGeneration_GraphModifierHelper.d.ts","sourceRoot":"","sources":["../../../src/stores/graphModifier/DSLGeneration_GraphModifierHelper.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EACL,KAAK,kBAAkB,EACvB,2BAA2B,EAC3B,KAAK,qBAAqB,EAC1B,KAAK,uBAAuB,EAC5B,2BAA2B,EAC3B,kBAAkB,EAOnB,MAAM,qBAAqB,CAAC;AAW7B,eAAO,MAAM,8BAA8B,OACpC,qBAAqB,SAAS,OAAO,KAAG,IAG9C,CAAC;AACF,eAAO,MAAM,sBAAsB,OAC5B,2BAA2B,SAAS,MAAM,KAAG,IAGnD,CAAC;AAEF,eAAO,MAAM,uCAAuC,OAC7C,2BAA2B,MAAM,qBAAqB,KAAG,IAM/D,CAAC;AAEF,eAAO,MAAM,sCAAsC,OAC5C,2BAA2B,QAAQ,MAAM,KAAG,IAGlD,CAAC;AACF,eAAO,MAAM,+BAA+B,OAEpC,2BAA2B,SACxB,CAAC,4BAA4B,kBAAkB,CAAC,GAAG,MAAM,CAAC,EAAE,KAClE,IAOJ,CAAC;AACF,eAAO,MAAM,8BAA8B,OAEnC,2BAA2B,SACxB,4BAA4B,kBAAkB,CAAC,GAAG,MAAM,KAC9D,IAQJ,CAAC;AACF,eAAO,MAAM,iCAAiC,OAEtC,2BAA2B,SACxB,4BAA4B,kBAAkB,CAAC,GAAG,MAAM,KAC9D,IAGJ,CAAC;AACF,eAAO,MAAM,iCAAiC,OAEtC,2BAA2B,YACrB,4BAA4B,kBAAkB,CAAC,GAAG,MAAM,YACxD,4BAA4B,kBAAkB,CAAC,GAAG,MAAM,KACjE,IASJ,CAAC;AAIF,eAAO,MAAM,+BAA+B,YAChC,uBAAuB,SAAS,kBAAkB,KAAG,IAGhE,CAAC;AACF,eAAO,MAAM,yCAAyC,YAEzC,uBAAuB,SACzB,2BAA2B,KACjC,IAUJ,CAAC;AAEF,eAAO,MAAM,8BAA8B,mCAE1C,CAAC;AAEF,eAAO,MAAM,4CAA4C,YAE5C,uBAAuB,SACzB,4BAA4B,2BAA2B,CAAC,KAC9D,IAGJ,CAAC;AACF,eAAO,MAAM,6BAA6B,aAC7B,kBAAkB,OAAO,MAAM,KAAG,IAG9C,CAAC;AACF,eAAO,MAAM,4CAA4C,YAC7C,uBAAuB,SAAS,kBAAkB,KAAG,IAGhE,CAAC;AAGF,eAAO,MAAM,4CAA4C,YAC7C,uBAAuB,WAAW,kBAAkB,KAAG,IAyBlE,CAAC"}
|
|
@@ -0,0 +1,80 @@
|
|
|
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 { PackageableElementReference, FileGenerationSpecification, GenerationTreeNode, PackageableElementExplicitReference, ModelGenerationSpecification, observe_PackageableElementReference, observe_FileGenerationSpecification, observe_GenerationTreeNode, observe_ConfigurationProperty, } from '@finos/legend-graph';
|
|
17
|
+
import { addUniqueEntry, changeEntry, deleteEntry, UnsupportedOperationError, } from '@finos/legend-shared';
|
|
18
|
+
import { action } from 'mobx';
|
|
19
|
+
// --------------------------------------------- File Generation -------------------------------------
|
|
20
|
+
export const configurationProperty_setValue = action((cp, value) => {
|
|
21
|
+
cp.value = value;
|
|
22
|
+
});
|
|
23
|
+
export const fileGeneration_setType = action((fg, value) => {
|
|
24
|
+
fg.type = value;
|
|
25
|
+
});
|
|
26
|
+
export const fileGeneration_addConfigurationProperty = action((fg, cp) => {
|
|
27
|
+
addUniqueEntry(fg.configurationProperties, observe_ConfigurationProperty(cp));
|
|
28
|
+
});
|
|
29
|
+
export const fileGeneration_setGenerationOutputPath = action((fg, val) => {
|
|
30
|
+
fg.generationOutputPath = val;
|
|
31
|
+
});
|
|
32
|
+
export const fileGeneration_setScopeElements = action((fg, value) => {
|
|
33
|
+
fg.scopeElements = value.map((v) => v instanceof PackageableElementReference
|
|
34
|
+
? observe_PackageableElementReference(v)
|
|
35
|
+
: v);
|
|
36
|
+
});
|
|
37
|
+
export const fileGeneration_addScopeElement = action((fg, value) => {
|
|
38
|
+
addUniqueEntry(fg.scopeElements, value instanceof PackageableElementReference
|
|
39
|
+
? observe_PackageableElementReference(value)
|
|
40
|
+
: value);
|
|
41
|
+
});
|
|
42
|
+
export const fileGeneration_deleteScopeElement = action((fg, value) => {
|
|
43
|
+
deleteEntry(fg.scopeElements, value);
|
|
44
|
+
});
|
|
45
|
+
export const fileGeneration_changeScopeElement = action((fg, oldValue, newValue) => {
|
|
46
|
+
changeEntry(fg.scopeElements, oldValue, newValue instanceof PackageableElementReference
|
|
47
|
+
? observe_PackageableElementReference(newValue)
|
|
48
|
+
: newValue);
|
|
49
|
+
});
|
|
50
|
+
// -------------------------------- Generation Specification -------------------------------------
|
|
51
|
+
export const generationSpecification_addNode = action((genSpec, value) => {
|
|
52
|
+
addUniqueEntry(genSpec.generationNodes, observe_GenerationTreeNode(value));
|
|
53
|
+
});
|
|
54
|
+
export const generationSpecification_addFileGeneration = action((genSpec, value) => {
|
|
55
|
+
addUniqueEntry(genSpec.fileGenerations, observe_PackageableElementReference(PackageableElementExplicitReference.create(observe_FileGenerationSpecification(value))));
|
|
56
|
+
});
|
|
57
|
+
export const createObservableFileGeneration = action(() => observe_FileGenerationSpecification(new FileGenerationSpecification('')));
|
|
58
|
+
export const generationSpecification_deleteFileGeneration = action((genSpec, value) => {
|
|
59
|
+
deleteEntry(genSpec.fileGenerations, value);
|
|
60
|
+
});
|
|
61
|
+
export const generationSpecification_setId = action((treeNode, val) => {
|
|
62
|
+
treeNode.id = val;
|
|
63
|
+
});
|
|
64
|
+
export const generationSpecification_deleteGenerationNode = action((genSpec, value) => {
|
|
65
|
+
deleteEntry(genSpec.generationNodes, value);
|
|
66
|
+
});
|
|
67
|
+
// NOTE as of now the generation specification only supports model generation elements i.e elements that generate another graph compatabile with the current graph.
|
|
68
|
+
export const generationSpecification_addGenerationElement = action((genSpec, element) => {
|
|
69
|
+
if (!(element instanceof ModelGenerationSpecification ||
|
|
70
|
+
element instanceof FileGenerationSpecification)) {
|
|
71
|
+
throw new UnsupportedOperationError(`Can't add generation element: only model generation elements can be added to the generation specification`, element);
|
|
72
|
+
}
|
|
73
|
+
if (element instanceof FileGenerationSpecification) {
|
|
74
|
+
generationSpecification_addFileGeneration(genSpec, element);
|
|
75
|
+
}
|
|
76
|
+
else {
|
|
77
|
+
generationSpecification_addNode(genSpec, observe_GenerationTreeNode(new GenerationTreeNode(PackageableElementExplicitReference.create(element))));
|
|
78
|
+
}
|
|
79
|
+
});
|
|
80
|
+
//# sourceMappingURL=DSLGeneration_GraphModifierHelper.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DSLGeneration_GraphModifierHelper.js","sourceRoot":"","sources":["../../../src/stores/graphModifier/DSLGeneration_GraphModifierHelper.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,84 @@
|
|
|
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 AssociationImplementation, type Enum, type EnumerationMapping, type EnumValueMapping, type InputData, type InstanceSetImplementation, type Mapping, type MappingTest, type MappingTestAssert, type PropertyMapping, type RawLambda, type SetImplementation, type ExpectedOutputMappingTestAssert, type OperationSetImplementation, type OperationType, type SetImplementationContainer, type JsonModelConnection, type Connection, type PackageableConnection, type PackageableRuntime, type EngineRuntime, type IdentifiedConnection, type PackageableElementReference, type Store, type RuntimePointer, type XmlModelConnection, type Class, type PureInstanceSetImplementation, type PurePropertyMapping, type ObjectInputData, type ObserverContext, SourceValue, Type, type EnumerationMappingReference, type SourceValueType } from '@finos/legend-graph';
|
|
17
|
+
export declare const mapping_setPropertyMappings: (si: InstanceSetImplementation, pm: PropertyMapping[], observeContext: ObserverContext) => void;
|
|
18
|
+
export declare const setImpl_setRoot: (owner: SetImplementation, val: boolean) => void;
|
|
19
|
+
export declare const mapping_addClassMapping: (mapping: Mapping, val: SetImplementation, observer: ObserverContext) => void;
|
|
20
|
+
export declare const mapping_deleteClassMapping: (mapping: Mapping, val: SetImplementation) => void;
|
|
21
|
+
export declare const mapping_addEnumerationMapping: (mapping: Mapping, val: EnumerationMapping) => void;
|
|
22
|
+
export declare const mapping_deleteEnumerationMapping: (mapping: Mapping, val: EnumerationMapping) => void;
|
|
23
|
+
export declare const mapping_addAssociationMapping: (mapping: Mapping, val: AssociationImplementation, observerContext: ObserverContext) => void;
|
|
24
|
+
export declare const mapping_deleteAssociationMapping: (mapping: Mapping, val: AssociationImplementation) => void;
|
|
25
|
+
export declare const mapping_deleteTest: (mapping: Mapping, val: MappingTest) => void;
|
|
26
|
+
export declare const mapping_addTest: (mapping: Mapping, val: MappingTest, observerContext: ObserverContext) => void;
|
|
27
|
+
export declare const enumMapping_setId: (eM: EnumerationMapping, val: string) => void;
|
|
28
|
+
export declare const enumMapping_setSourceType: (eM: EnumerationMapping, value: PackageableElementReference<Type> | undefined) => void;
|
|
29
|
+
export declare const enumMapping_setEnumValueMappings: (eM: EnumerationMapping, value: EnumValueMapping[]) => void;
|
|
30
|
+
export declare const enumMapping_updateSourceType: (eM: EnumerationMapping, value: PackageableElementReference<Type> | undefined) => void;
|
|
31
|
+
export declare const sourceValue_setValue: (sv: SourceValue, value: Enum | string | number | undefined) => void;
|
|
32
|
+
export declare const enumValueMapping_addSourceValue: (enumMapping: EnumValueMapping, sourceValue: SourceValueType) => void;
|
|
33
|
+
export declare const enumValueMapping_setSourceValues: (enumMapping: EnumValueMapping, value: SourceValue[]) => void;
|
|
34
|
+
export declare const enumValueMapping_deleteSourceValue: (enumMapping: EnumValueMapping, idx: number) => void;
|
|
35
|
+
export declare const enumValueMapping_updateSourceValue: (enumMapping: EnumValueMapping, idx: number, val: Enum | string | undefined, sourceType: Type | undefined) => void;
|
|
36
|
+
export declare const mappingTest_setName: (test: MappingTest, value: string) => void;
|
|
37
|
+
export declare const mappingTest_setInputData: (test: MappingTest, value: InputData[], observeContext: ObserverContext) => void;
|
|
38
|
+
export declare const mappingTest_setQuery: (test: MappingTest, value: RawLambda) => void;
|
|
39
|
+
export declare const mappingTest_setAssert: (test: MappingTest, value: MappingTestAssert, observerContext: ObserverContext) => void;
|
|
40
|
+
export declare const expectedOutputMappingTestAssert_setExpectedOutput: (e: ExpectedOutputMappingTestAssert, val: string) => void;
|
|
41
|
+
export declare const operationMapping_setOperation: (oI: OperationSetImplementation, value: OperationType) => void;
|
|
42
|
+
export declare const operationMapping_setParameters: (oI: OperationSetImplementation, value: SetImplementationContainer[]) => void;
|
|
43
|
+
export declare const operationMapping_addParameter: (oI: OperationSetImplementation, value: SetImplementationContainer) => void;
|
|
44
|
+
export declare const operationMapping_changeParameter: (oI: OperationSetImplementation, oldValue: SetImplementationContainer, newValue: SetImplementationContainer) => void;
|
|
45
|
+
export declare const operationMapping_deleteParameter: (oI: OperationSetImplementation, value: SetImplementationContainer) => void;
|
|
46
|
+
/**
|
|
47
|
+
* If this is the only mapping element for the target class, automatically mark it as root,
|
|
48
|
+
* otherwise, if there is another set implementation make it non-root,
|
|
49
|
+
* otherwise, leave other set implementation root status as-is.
|
|
50
|
+
* NOTE: use get `OWN` class mappings as we are smartly updating the current mapping in the form editor,
|
|
51
|
+
* which does not support `include` mappings as of now.
|
|
52
|
+
*/
|
|
53
|
+
export declare const setImpl_updateRootOnCreate: (setImp: SetImplementation) => void;
|
|
54
|
+
/**
|
|
55
|
+
* If only one set implementation remained, it will be nominated as the new root
|
|
56
|
+
* NOTE: use get `OWN` class mappings as we are smartly updating the current mapping in the form editor,
|
|
57
|
+
* which does not support `include` mappings as of now.
|
|
58
|
+
*/
|
|
59
|
+
export declare const setImpl_updateRootOnDelete: (setImp: SetImplementation) => void;
|
|
60
|
+
/**
|
|
61
|
+
* Make the nominated set implementation root and flip the root flag of all other
|
|
62
|
+
* set implementations with the same target
|
|
63
|
+
* NOTE: use get `OWN` class mappings as we are smartly updating the current mapping in the form editor,
|
|
64
|
+
* which does not support `include` mappings as of now.
|
|
65
|
+
*/
|
|
66
|
+
export declare const setImpl_nominateRoot: (setImp: SetImplementation) => void;
|
|
67
|
+
export declare const objectInputData_setData: (o: ObjectInputData, val: string) => void;
|
|
68
|
+
export declare const pureInstanceSetImpl_setPropertyMappings: (val: PureInstanceSetImplementation, value: PurePropertyMapping[], observeContext: ObserverContext) => void;
|
|
69
|
+
export declare const pureInstanceSetImpl_setSrcClass: (val: PureInstanceSetImplementation, value: PackageableElementReference<Class> | undefined) => void;
|
|
70
|
+
export declare const pureInstanceSetImpl_setMappingFilter: (val: PureInstanceSetImplementation, value: RawLambda | undefined) => void;
|
|
71
|
+
export declare const purePropertyMapping_setTransformer: (val: PurePropertyMapping, value: EnumerationMappingReference | undefined) => void;
|
|
72
|
+
export declare const connection_setStore: (con: Connection, val: PackageableElementReference<Store>) => void;
|
|
73
|
+
export declare const modelConnection_setClass: (val: JsonModelConnection | XmlModelConnection, value: Class) => void;
|
|
74
|
+
export declare const modelConnection_setUrl: (val: JsonModelConnection | XmlModelConnection, value: string) => void;
|
|
75
|
+
export declare const packageableConnection_setConnectionValue: (pc: PackageableConnection, connection: Connection, observeContext: ObserverContext) => void;
|
|
76
|
+
export declare const packageableRuntime_setRuntimeValue: (pr: PackageableRuntime, value: EngineRuntime, observeContext: ObserverContext) => void;
|
|
77
|
+
export declare const runtime_addIdentifiedConnection: (eR: EngineRuntime, value: IdentifiedConnection, observerContext: ObserverContext) => void;
|
|
78
|
+
export declare const runtime_deleteIdentifiedConnection: (eR: EngineRuntime, value: IdentifiedConnection) => void;
|
|
79
|
+
export declare const runtime_addUniqueStoreConnectionsForStore: (eR: EngineRuntime, value: Store, observerContext: ObserverContext) => void;
|
|
80
|
+
export declare const runtime_setMappings: (eR: EngineRuntime, value: PackageableElementReference<Mapping>[]) => void;
|
|
81
|
+
export declare const runtime_addMapping: (eR: EngineRuntime, value: PackageableElementReference<Mapping>) => void;
|
|
82
|
+
export declare const runtime_deleteMapping: (eR: EngineRuntime, value: PackageableElementReference<Mapping>) => void;
|
|
83
|
+
export declare const setPackageableRuntime: (rP: RuntimePointer, value: PackageableRuntime, context: ObserverContext) => void;
|
|
84
|
+
//# sourceMappingURL=DSLMapping_GraphModifierHelper.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DSLMapping_GraphModifierHelper.d.ts","sourceRoot":"","sources":["../../../src/stores/graphModifier/DSLMapping_GraphModifierHelper.ts"],"names":[],"mappings":"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"}
|