@finos/legend-application-studio 13.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +3 -0
- package/lib/application/LegendStudio.d.ts +26 -0
- package/lib/application/LegendStudio.d.ts.map +1 -0
- package/lib/application/LegendStudio.js +60 -0
- package/lib/application/LegendStudio.js.map +1 -0
- package/lib/application/LegendStudioApplicationConfig.d.ts +72 -0
- package/lib/application/LegendStudioApplicationConfig.d.ts.map +1 -0
- package/lib/application/LegendStudioApplicationConfig.js +79 -0
- package/lib/application/LegendStudioApplicationConfig.js.map +1 -0
- package/lib/application/LegendStudioPluginManager.d.ts +33 -0
- package/lib/application/LegendStudioPluginManager.d.ts.map +1 -0
- package/lib/application/LegendStudioPluginManager.js +54 -0
- package/lib/application/LegendStudioPluginManager.js.map +1 -0
- package/lib/components/Core_LegendStudioApplicationPlugin.d.ts +25 -0
- package/lib/components/Core_LegendStudioApplicationPlugin.d.ts.map +1 -0
- package/lib/components/Core_LegendStudioApplicationPlugin.js +79 -0
- package/lib/components/Core_LegendStudioApplicationPlugin.js.map +1 -0
- package/lib/components/DSLExternalFormat_CodeSnippets.d.ts +21 -0
- package/lib/components/DSLExternalFormat_CodeSnippets.d.ts.map +1 -0
- package/lib/components/DSLExternalFormat_CodeSnippets.js +74 -0
- package/lib/components/DSLExternalFormat_CodeSnippets.js.map +1 -0
- package/lib/components/DSLExternalFormat_LegendStudioApplicationPlugin.d.ts +41 -0
- package/lib/components/DSLExternalFormat_LegendStudioApplicationPlugin.d.ts.map +1 -0
- package/lib/components/DSLExternalFormat_LegendStudioApplicationPlugin.js +289 -0
- package/lib/components/DSLExternalFormat_LegendStudioApplicationPlugin.js.map +1 -0
- package/lib/components/DSLExternalFormat_LegendStudioDocumentation.d.ts +21 -0
- package/lib/components/DSLExternalFormat_LegendStudioDocumentation.d.ts.map +1 -0
- package/lib/components/DSLExternalFormat_LegendStudioDocumentation.js +22 -0
- package/lib/components/DSLExternalFormat_LegendStudioDocumentation.js.map +1 -0
- package/lib/components/EditorComponentTestUtils.d.ts +129 -0
- package/lib/components/EditorComponentTestUtils.d.ts.map +1 -0
- package/lib/components/EditorComponentTestUtils.js +250 -0
- package/lib/components/EditorComponentTestUtils.js.map +1 -0
- package/lib/components/LegendStudioAppInfo.d.ts +21 -0
- package/lib/components/LegendStudioAppInfo.d.ts.map +1 -0
- package/lib/components/LegendStudioAppInfo.js +106 -0
- package/lib/components/LegendStudioAppInfo.js.map +1 -0
- package/lib/components/LegendStudioApplication.d.ts +28 -0
- package/lib/components/LegendStudioApplication.d.ts.map +1 -0
- package/lib/components/LegendStudioApplication.js +80 -0
- package/lib/components/LegendStudioApplication.js.map +1 -0
- package/lib/components/LegendStudioBaseStoreProvider.d.ts +25 -0
- package/lib/components/LegendStudioBaseStoreProvider.d.ts.map +1 -0
- package/lib/components/LegendStudioBaseStoreProvider.js +34 -0
- package/lib/components/LegendStudioBaseStoreProvider.js.map +1 -0
- package/lib/components/LegendStudioTestID.d.ts +47 -0
- package/lib/components/LegendStudioTestID.d.ts.map +1 -0
- package/lib/components/LegendStudioTestID.js +52 -0
- package/lib/components/LegendStudioTestID.js.map +1 -0
- package/lib/components/editor/ActivityBar.d.ts +28 -0
- package/lib/components/editor/ActivityBar.d.ts.map +1 -0
- package/lib/components/editor/ActivityBar.js +166 -0
- package/lib/components/editor/ActivityBar.js.map +1 -0
- package/lib/components/editor/Editor.d.ts +18 -0
- package/lib/components/editor/Editor.d.ts.map +1 -0
- package/lib/components/editor/Editor.js +176 -0
- package/lib/components/editor/Editor.js.map +1 -0
- package/lib/components/editor/EditorStoreProvider.d.ts +23 -0
- package/lib/components/editor/EditorStoreProvider.d.ts.map +1 -0
- package/lib/components/editor/EditorStoreProvider.js +39 -0
- package/lib/components/editor/EditorStoreProvider.js.map +1 -0
- package/lib/components/editor/StatusBar.d.ts +22 -0
- package/lib/components/editor/StatusBar.d.ts.map +1 -0
- package/lib/components/editor/StatusBar.js +145 -0
- package/lib/components/editor/StatusBar.js.map +1 -0
- package/lib/components/editor/aux-panel/AuxiliaryPanel.d.ts +20 -0
- package/lib/components/editor/aux-panel/AuxiliaryPanel.d.ts.map +1 -0
- package/lib/components/editor/aux-panel/AuxiliaryPanel.js +58 -0
- package/lib/components/editor/aux-panel/AuxiliaryPanel.js.map +1 -0
- package/lib/components/editor/aux-panel/Console.d.ts +20 -0
- package/lib/components/editor/aux-panel/Console.d.ts.map +1 -0
- package/lib/components/editor/aux-panel/Console.js +21 -0
- package/lib/components/editor/aux-panel/Console.js.map +1 -0
- package/lib/components/editor/aux-panel/DevTool.d.ts +20 -0
- package/lib/components/editor/aux-panel/DevTool.d.ts.map +1 -0
- package/lib/components/editor/aux-panel/DevTool.js +35 -0
- package/lib/components/editor/aux-panel/DevTool.js.map +1 -0
- package/lib/components/editor/command/project-search.css +1 -0
- package/lib/components/editor/command/project-search.css.map +1 -0
- package/lib/components/editor/command-center/ProjectSearchCommand.d.ts +20 -0
- package/lib/components/editor/command-center/ProjectSearchCommand.d.ts.map +1 -0
- package/lib/components/editor/command-center/ProjectSearchCommand.js +60 -0
- package/lib/components/editor/command-center/ProjectSearchCommand.js.map +1 -0
- package/lib/components/editor/edit-panel/EditPanel.d.ts +22 -0
- package/lib/components/editor/edit-panel/EditPanel.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/EditPanel.js +212 -0
- package/lib/components/editor/edit-panel/EditPanel.js.map +1 -0
- package/lib/components/editor/edit-panel/FileGenerationViewer.d.ts +20 -0
- package/lib/components/editor/edit-panel/FileGenerationViewer.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/FileGenerationViewer.js +32 -0
- package/lib/components/editor/edit-panel/FileGenerationViewer.js.map +1 -0
- package/lib/components/editor/edit-panel/FunctionEditor.d.ts +36 -0
- package/lib/components/editor/edit-panel/FunctionEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/FunctionEditor.js +278 -0
- package/lib/components/editor/edit-panel/FunctionEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/GenerationSpecificationEditor.d.ts +20 -0
- package/lib/components/editor/edit-panel/GenerationSpecificationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/GenerationSpecificationEditor.js +216 -0
- package/lib/components/editor/edit-panel/GenerationSpecificationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/GrammarTextEditor.d.ts +23 -0
- package/lib/components/editor/edit-panel/GrammarTextEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/GrammarTextEditor.js +892 -0
- package/lib/components/editor/edit-panel/GrammarTextEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/ModelLoader.d.ts +20 -0
- package/lib/components/editor/edit-panel/ModelLoader.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/ModelLoader.js +96 -0
- package/lib/components/editor/edit-panel/ModelLoader.js.map +1 -0
- package/lib/components/editor/edit-panel/RuntimeEditor.d.ts +43 -0
- package/lib/components/editor/edit-panel/RuntimeEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/RuntimeEditor.js +364 -0
- package/lib/components/editor/edit-panel/RuntimeEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/UnsupportedElementEditor.d.ts +26 -0
- package/lib/components/editor/edit-panel/UnsupportedElementEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/UnsupportedElementEditor.js +38 -0
- package/lib/components/editor/edit-panel/UnsupportedElementEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/connection-editor/ConnectionEditor.d.ts +28 -0
- package/lib/components/editor/edit-panel/connection-editor/ConnectionEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/connection-editor/ConnectionEditor.js +75 -0
- package/lib/components/editor/edit-panel/connection-editor/ConnectionEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/connection-editor/DatabaseBuilder.d.ts +31 -0
- package/lib/components/editor/edit-panel/connection-editor/DatabaseBuilder.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/connection-editor/DatabaseBuilder.js +123 -0
- package/lib/components/editor/edit-panel/connection-editor/DatabaseBuilder.js.map +1 -0
- package/lib/components/editor/edit-panel/connection-editor/FlatDataConnectionEditor.d.ts +24 -0
- package/lib/components/editor/edit-panel/connection-editor/FlatDataConnectionEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/connection-editor/FlatDataConnectionEditor.js +26 -0
- package/lib/components/editor/edit-panel/connection-editor/FlatDataConnectionEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/connection-editor/RelationalDatabaseConnectionEditor.d.ts +66 -0
- package/lib/components/editor/edit-panel/connection-editor/RelationalDatabaseConnectionEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/connection-editor/RelationalDatabaseConnectionEditor.js +321 -0
- package/lib/components/editor/edit-panel/connection-editor/RelationalDatabaseConnectionEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/data-editor/DataElementEditor.d.ts +34 -0
- package/lib/components/editor/edit-panel/data-editor/DataElementEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/data-editor/DataElementEditor.js +104 -0
- package/lib/components/editor/edit-panel/data-editor/DataElementEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/data-editor/EmbeddedDataEditor.d.ts +38 -0
- package/lib/components/editor/edit-panel/data-editor/EmbeddedDataEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/data-editor/EmbeddedDataEditor.js +89 -0
- package/lib/components/editor/edit-panel/data-editor/EmbeddedDataEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/data-editor/RelationalCSVDataEditor.d.ts +24 -0
- package/lib/components/editor/edit-panel/data-editor/RelationalCSVDataEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/data-editor/RelationalCSVDataEditor.js +69 -0
- package/lib/components/editor/edit-panel/data-editor/RelationalCSVDataEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/diff-editor/EntityChangeConflictEditor.d.ts +31 -0
- package/lib/components/editor/edit-panel/diff-editor/EntityChangeConflictEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/diff-editor/EntityChangeConflictEditor.js +449 -0
- package/lib/components/editor/edit-panel/diff-editor/EntityChangeConflictEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/diff-editor/EntityDiffView.d.ts +31 -0
- package/lib/components/editor/edit-panel/diff-editor/EntityDiffView.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/diff-editor/EntityDiffView.js +71 -0
- package/lib/components/editor/edit-panel/diff-editor/EntityDiffView.js.map +1 -0
- package/lib/components/editor/edit-panel/element-generation-editor/ElementGenerationEditor.d.ts +25 -0
- package/lib/components/editor/edit-panel/element-generation-editor/ElementGenerationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/element-generation-editor/ElementGenerationEditor.js +71 -0
- package/lib/components/editor/edit-panel/element-generation-editor/ElementGenerationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/element-generation-editor/ElementNativeView.d.ts +23 -0
- package/lib/components/editor/edit-panel/element-generation-editor/ElementNativeView.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/element-generation-editor/ElementNativeView.js +44 -0
- package/lib/components/editor/edit-panel/element-generation-editor/ElementNativeView.js.map +1 -0
- package/lib/components/editor/edit-panel/element-generation-editor/FileGenerationEditor.d.ts +65 -0
- package/lib/components/editor/edit-panel/element-generation-editor/FileGenerationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/element-generation-editor/FileGenerationEditor.js +398 -0
- package/lib/components/editor/edit-panel/element-generation-editor/FileGenerationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/external-format-editor/BindingElementEditor.d.ts +20 -0
- package/lib/components/editor/edit-panel/external-format-editor/BindingElementEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/external-format-editor/BindingElementEditor.js +146 -0
- package/lib/components/editor/edit-panel/external-format-editor/BindingElementEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/external-format-editor/ExternalFormatConnectionEditor.d.ts +22 -0
- package/lib/components/editor/edit-panel/external-format-editor/ExternalFormatConnectionEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/external-format-editor/ExternalFormatConnectionEditor.js +57 -0
- package/lib/components/editor/edit-panel/external-format-editor/ExternalFormatConnectionEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/external-format-editor/NewSchemaSetDriver.d.ts +31 -0
- package/lib/components/editor/edit-panel/external-format-editor/NewSchemaSetDriver.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/external-format-editor/NewSchemaSetDriver.js +66 -0
- package/lib/components/editor/edit-panel/external-format-editor/NewSchemaSetDriver.js.map +1 -0
- package/lib/components/editor/edit-panel/external-format-editor/SchemaSetElementEditor.d.ts +20 -0
- package/lib/components/editor/edit-panel/external-format-editor/SchemaSetElementEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/external-format-editor/SchemaSetElementEditor.js +153 -0
- package/lib/components/editor/edit-panel/external-format-editor/SchemaSetElementEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/ClassMappingEditor.d.ts +36 -0
- package/lib/components/editor/edit-panel/mapping-editor/ClassMappingEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/ClassMappingEditor.js +131 -0
- package/lib/components/editor/edit-panel/mapping-editor/ClassMappingEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/EnumerationMappingEditor.d.ts +33 -0
- package/lib/components/editor/edit-panel/mapping-editor/EnumerationMappingEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/EnumerationMappingEditor.js +166 -0
- package/lib/components/editor/edit-panel/mapping-editor/EnumerationMappingEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/FlatDataPropertyMappingEditor.d.ts +26 -0
- package/lib/components/editor/edit-panel/mapping-editor/FlatDataPropertyMappingEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/FlatDataPropertyMappingEditor.js +140 -0
- package/lib/components/editor/edit-panel/mapping-editor/FlatDataPropertyMappingEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/FlatDataRecordTypeTree.d.ts +22 -0
- package/lib/components/editor/edit-panel/mapping-editor/FlatDataRecordTypeTree.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/FlatDataRecordTypeTree.js +78 -0
- package/lib/components/editor/edit-panel/mapping-editor/FlatDataRecordTypeTree.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/InstanceSetImplementationEditor.d.ts +30 -0
- package/lib/components/editor/edit-panel/mapping-editor/InstanceSetImplementationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/InstanceSetImplementationEditor.js +270 -0
- package/lib/components/editor/edit-panel/mapping-editor/InstanceSetImplementationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/InstanceSetImplementationSourceSelectorModal.d.ts +38 -0
- package/lib/components/editor/edit-panel/mapping-editor/InstanceSetImplementationSourceSelectorModal.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/InstanceSetImplementationSourceSelectorModal.js +118 -0
- package/lib/components/editor/edit-panel/mapping-editor/InstanceSetImplementationSourceSelectorModal.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingEditor.d.ts +21 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingEditor.js +115 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingExecutionBuilder.d.ts +65 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingExecutionBuilder.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingExecutionBuilder.js +266 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingExecutionBuilder.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingExplorer.d.ts +34 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingExplorer.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingExplorer.js +214 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingExplorer.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingTestEditor.d.ts +70 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingTestEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingTestEditor.js +238 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingTestEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingTestsExplorer.d.ts +37 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingTestsExplorer.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingTestsExplorer.js +157 -0
- package/lib/components/editor/edit-panel/mapping-editor/MappingTestsExplorer.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/NewMappingElementModal.d.ts +20 -0
- package/lib/components/editor/edit-panel/mapping-editor/NewMappingElementModal.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/NewMappingElementModal.js +152 -0
- package/lib/components/editor/edit-panel/mapping-editor/NewMappingElementModal.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/OperationSetImplementationEditor.d.ts +24 -0
- package/lib/components/editor/edit-panel/mapping-editor/OperationSetImplementationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/OperationSetImplementationEditor.js +100 -0
- package/lib/components/editor/edit-panel/mapping-editor/OperationSetImplementationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/PropertyMappingsEditor.d.ts +27 -0
- package/lib/components/editor/edit-panel/mapping-editor/PropertyMappingsEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/PropertyMappingsEditor.js +149 -0
- package/lib/components/editor/edit-panel/mapping-editor/PropertyMappingsEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/PurePropertyMappingEditor.d.ts +26 -0
- package/lib/components/editor/edit-panel/mapping-editor/PurePropertyMappingEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/PurePropertyMappingEditor.js +167 -0
- package/lib/components/editor/edit-panel/mapping-editor/PurePropertyMappingEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/relational/RelationalPropertyMappingEditor.d.ts +26 -0
- package/lib/components/editor/edit-panel/mapping-editor/relational/RelationalPropertyMappingEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/relational/RelationalPropertyMappingEditor.js +134 -0
- package/lib/components/editor/edit-panel/mapping-editor/relational/RelationalPropertyMappingEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/relational/TableOrViewSourceTree.d.ts +45 -0
- package/lib/components/editor/edit-panel/mapping-editor/relational/TableOrViewSourceTree.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/mapping-editor/relational/TableOrViewSourceTree.js +205 -0
- package/lib/components/editor/edit-panel/mapping-editor/relational/TableOrViewSourceTree.js.map +1 -0
- package/lib/components/editor/edit-panel/project-configuration-editor/ProjectConfigurationEditor.d.ts +20 -0
- package/lib/components/editor/edit-panel/project-configuration-editor/ProjectConfigurationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/project-configuration-editor/ProjectConfigurationEditor.js +221 -0
- package/lib/components/editor/edit-panel/project-configuration-editor/ProjectConfigurationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/NewServiceModal.d.ts +27 -0
- package/lib/components/editor/edit-panel/service-editor/NewServiceModal.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/NewServiceModal.js +57 -0
- package/lib/components/editor/edit-panel/service-editor/NewServiceModal.js.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceEditor.d.ts +20 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceEditor.js +127 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceExecutionEditor.d.ts +33 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceExecutionEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceExecutionEditor.js +277 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceExecutionEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceExecutionQueryEditor.d.ts +24 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceExecutionQueryEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceExecutionQueryEditor.js +111 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceExecutionQueryEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceRegistrationEditor.d.ts +20 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceRegistrationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceRegistrationEditor.js +94 -0
- package/lib/components/editor/edit-panel/service-editor/ServiceRegistrationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestDataEditor.d.ts +33 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestDataEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestDataEditor.js +143 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestDataEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestableEditor.d.ts +37 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestableEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestableEditor.js +61 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestableEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestsEditor.d.ts +15 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestsEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestsEditor.js +179 -0
- package/lib/components/editor/edit-panel/service-editor/testable/ServiceTestsEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/testable/TestAssertionEditor.d.ts +23 -0
- package/lib/components/editor/edit-panel/testable/TestAssertionEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/testable/TestAssertionEditor.js +109 -0
- package/lib/components/editor/edit-panel/testable/TestAssertionEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/AssociationEditor.d.ts +23 -0
- package/lib/components/editor/edit-panel/uml-editor/AssociationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/AssociationEditor.js +188 -0
- package/lib/components/editor/edit-panel/uml-editor/AssociationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/ClassEditor.d.ts +31 -0
- package/lib/components/editor/edit-panel/uml-editor/ClassEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/ClassEditor.js +521 -0
- package/lib/components/editor/edit-panel/uml-editor/ClassEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/EnumerationEditor.d.ts +23 -0
- package/lib/components/editor/edit-panel/uml-editor/EnumerationEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/EnumerationEditor.js +206 -0
- package/lib/components/editor/edit-panel/uml-editor/EnumerationEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/ProfileEditor.d.ts +23 -0
- package/lib/components/editor/edit-panel/uml-editor/ProfileEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/ProfileEditor.js +84 -0
- package/lib/components/editor/edit-panel/uml-editor/ProfileEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/PropertyEditor.d.ts +25 -0
- package/lib/components/editor/edit-panel/uml-editor/PropertyEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/PropertyEditor.js +92 -0
- package/lib/components/editor/edit-panel/uml-editor/PropertyEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/StereotypeSelector.d.ts +26 -0
- package/lib/components/editor/edit-panel/uml-editor/StereotypeSelector.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/StereotypeSelector.js +58 -0
- package/lib/components/editor/edit-panel/uml-editor/StereotypeSelector.js.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/TaggedValueEditor.d.ts +26 -0
- package/lib/components/editor/edit-panel/uml-editor/TaggedValueEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/TaggedValueEditor.js +69 -0
- package/lib/components/editor/edit-panel/uml-editor/TaggedValueEditor.js.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/UMLEditor.d.ts +20 -0
- package/lib/components/editor/edit-panel/uml-editor/UMLEditor.d.ts.map +1 -0
- package/lib/components/editor/edit-panel/uml-editor/UMLEditor.js +31 -0
- package/lib/components/editor/edit-panel/uml-editor/UMLEditor.js.map +1 -0
- package/lib/components/editor/side-bar/CreateNewElementModal.d.ts +22 -0
- package/lib/components/editor/side-bar/CreateNewElementModal.d.ts.map +1 -0
- package/lib/components/editor/side-bar/CreateNewElementModal.js +285 -0
- package/lib/components/editor/side-bar/CreateNewElementModal.js.map +1 -0
- package/lib/components/editor/side-bar/Explorer.d.ts +20 -0
- package/lib/components/editor/side-bar/Explorer.d.ts.map +1 -0
- package/lib/components/editor/side-bar/Explorer.js +319 -0
- package/lib/components/editor/side-bar/Explorer.js.map +1 -0
- package/lib/components/editor/side-bar/LocalChanges.d.ts +20 -0
- package/lib/components/editor/side-bar/LocalChanges.d.ts.map +1 -0
- package/lib/components/editor/side-bar/LocalChanges.js +113 -0
- package/lib/components/editor/side-bar/LocalChanges.js.map +1 -0
- package/lib/components/editor/side-bar/ProjectOverview.d.ts +23 -0
- package/lib/components/editor/side-bar/ProjectOverview.d.ts.map +1 -0
- package/lib/components/editor/side-bar/ProjectOverview.js +230 -0
- package/lib/components/editor/side-bar/ProjectOverview.js.map +1 -0
- package/lib/components/editor/side-bar/SideBar.d.ts +23 -0
- package/lib/components/editor/side-bar/SideBar.d.ts.map +1 -0
- package/lib/components/editor/side-bar/SideBar.js +57 -0
- package/lib/components/editor/side-bar/SideBar.js.map +1 -0
- package/lib/components/editor/side-bar/WorkflowManager.d.ts +23 -0
- package/lib/components/editor/side-bar/WorkflowManager.d.ts.map +1 -0
- package/lib/components/editor/side-bar/WorkflowManager.js +161 -0
- package/lib/components/editor/side-bar/WorkflowManager.js.map +1 -0
- package/lib/components/editor/side-bar/WorkspaceReview.d.ts +23 -0
- package/lib/components/editor/side-bar/WorkspaceReview.d.ts.map +1 -0
- package/lib/components/editor/side-bar/WorkspaceReview.js +146 -0
- package/lib/components/editor/side-bar/WorkspaceReview.js.map +1 -0
- package/lib/components/editor/side-bar/WorkspaceSyncConflictResolver.d.ts +20 -0
- package/lib/components/editor/side-bar/WorkspaceSyncConflictResolver.d.ts.map +1 -0
- package/lib/components/editor/side-bar/WorkspaceSyncConflictResolver.js +79 -0
- package/lib/components/editor/side-bar/WorkspaceSyncConflictResolver.js.map +1 -0
- package/lib/components/editor/side-bar/WorkspaceUpdateConflictResolver.d.ts +20 -0
- package/lib/components/editor/side-bar/WorkspaceUpdateConflictResolver.d.ts.map +1 -0
- package/lib/components/editor/side-bar/WorkspaceUpdateConflictResolver.js +70 -0
- package/lib/components/editor/side-bar/WorkspaceUpdateConflictResolver.js.map +1 -0
- package/lib/components/editor/side-bar/WorkspaceUpdater.d.ts +20 -0
- package/lib/components/editor/side-bar/WorkspaceUpdater.d.ts.map +1 -0
- package/lib/components/editor/side-bar/WorkspaceUpdater.js +103 -0
- package/lib/components/editor/side-bar/WorkspaceUpdater.js.map +1 -0
- package/lib/components/editor/side-bar/testable/GlobalTestRunner.d.ts +24 -0
- package/lib/components/editor/side-bar/testable/GlobalTestRunner.d.ts.map +1 -0
- package/lib/components/editor/side-bar/testable/GlobalTestRunner.js +129 -0
- package/lib/components/editor/side-bar/testable/GlobalTestRunner.js.map +1 -0
- package/lib/components/project-viewer/ProjectViewer.d.ts +18 -0
- package/lib/components/project-viewer/ProjectViewer.d.ts.map +1 -0
- package/lib/components/project-viewer/ProjectViewer.js +166 -0
- package/lib/components/project-viewer/ProjectViewer.js.map +1 -0
- package/lib/components/project-viewer/ProjectViewerStoreProvider.d.ts +23 -0
- package/lib/components/project-viewer/ProjectViewerStoreProvider.d.ts.map +1 -0
- package/lib/components/project-viewer/ProjectViewerStoreProvider.js +36 -0
- package/lib/components/project-viewer/ProjectViewerStoreProvider.js.map +1 -0
- package/lib/components/shared/DiffView.d.ts +35 -0
- package/lib/components/shared/DiffView.d.ts.map +1 -0
- package/lib/components/shared/DiffView.js +94 -0
- package/lib/components/shared/DiffView.js.map +1 -0
- package/lib/components/shared/ElementIconUtils.d.ts +21 -0
- package/lib/components/shared/ElementIconUtils.d.ts.map +1 -0
- package/lib/components/shared/ElementIconUtils.js +96 -0
- package/lib/components/shared/ElementIconUtils.js.map +1 -0
- package/lib/components/shared/MultiplicityBadge.d.ts +21 -0
- package/lib/components/shared/MultiplicityBadge.d.ts.map +1 -0
- package/lib/components/shared/MultiplicityBadge.js +25 -0
- package/lib/components/shared/MultiplicityBadge.js.map +1 -0
- package/lib/components/shared/StudioLambdaEditor.d.ts +40 -0
- package/lib/components/shared/StudioLambdaEditor.d.ts.map +1 -0
- package/lib/components/shared/StudioLambdaEditor.js +50 -0
- package/lib/components/shared/StudioLambdaEditor.js.map +1 -0
- package/lib/components/shared/StudioTextInputEditor.d.ts +28 -0
- package/lib/components/shared/StudioTextInputEditor.d.ts.map +1 -0
- package/lib/components/shared/StudioTextInputEditor.js +36 -0
- package/lib/components/shared/StudioTextInputEditor.js.map +1 -0
- package/lib/components/shared/TypeTree.d.ts +22 -0
- package/lib/components/shared/TypeTree.d.ts.map +1 -0
- package/lib/components/shared/TypeTree.js +165 -0
- package/lib/components/shared/TypeTree.js.map +1 -0
- package/lib/components/workspace-review/WorkspaceReview.d.ts +18 -0
- package/lib/components/workspace-review/WorkspaceReview.d.ts.map +1 -0
- package/lib/components/workspace-review/WorkspaceReview.js +84 -0
- package/lib/components/workspace-review/WorkspaceReview.js.map +1 -0
- package/lib/components/workspace-review/WorkspaceReviewPanel.d.ts +20 -0
- package/lib/components/workspace-review/WorkspaceReviewPanel.d.ts.map +1 -0
- package/lib/components/workspace-review/WorkspaceReviewPanel.js +57 -0
- package/lib/components/workspace-review/WorkspaceReviewPanel.js.map +1 -0
- package/lib/components/workspace-review/WorkspaceReviewSideBar.d.ts +20 -0
- package/lib/components/workspace-review/WorkspaceReviewSideBar.d.ts.map +1 -0
- package/lib/components/workspace-review/WorkspaceReviewSideBar.js +106 -0
- package/lib/components/workspace-review/WorkspaceReviewSideBar.js.map +1 -0
- package/lib/components/workspace-review/WorkspaceReviewStoreProvider.d.ts +22 -0
- package/lib/components/workspace-review/WorkspaceReviewStoreProvider.d.ts.map +1 -0
- package/lib/components/workspace-review/WorkspaceReviewStoreProvider.js +34 -0
- package/lib/components/workspace-review/WorkspaceReviewStoreProvider.js.map +1 -0
- package/lib/components/workspace-setup/ProjectCreateModal.d.ts +20 -0
- package/lib/components/workspace-setup/ProjectCreateModal.d.ts.map +1 -0
- package/lib/components/workspace-setup/ProjectCreateModal.js +203 -0
- package/lib/components/workspace-setup/ProjectCreateModal.js.map +1 -0
- package/lib/components/workspace-setup/ProjectSelector.d.ts +22 -0
- package/lib/components/workspace-setup/ProjectSelector.d.ts.map +1 -0
- package/lib/components/workspace-setup/ProjectSelector.js +65 -0
- package/lib/components/workspace-setup/ProjectSelector.js.map +1 -0
- package/lib/components/workspace-setup/WorkspaceSelector.d.ts +22 -0
- package/lib/components/workspace-setup/WorkspaceSelector.d.ts.map +1 -0
- package/lib/components/workspace-setup/WorkspaceSelector.js +57 -0
- package/lib/components/workspace-setup/WorkspaceSelector.js.map +1 -0
- package/lib/components/workspace-setup/WorkspaceSetup.d.ts +18 -0
- package/lib/components/workspace-setup/WorkspaceSetup.d.ts.map +1 -0
- package/lib/components/workspace-setup/WorkspaceSetup.js +155 -0
- package/lib/components/workspace-setup/WorkspaceSetup.js.map +1 -0
- package/lib/components/workspace-setup/WorkspaceSetupStoreProvider.d.ts +23 -0
- package/lib/components/workspace-setup/WorkspaceSetupStoreProvider.d.ts.map +1 -0
- package/lib/components/workspace-setup/WorkspaceSetupStoreProvider.js +34 -0
- package/lib/components/workspace-setup/WorkspaceSetupStoreProvider.js.map +1 -0
- package/lib/index.css +17 -0
- package/lib/index.css.map +1 -0
- package/lib/index.d.ts +70 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +75 -0
- package/lib/index.js.map +1 -0
- package/lib/package.json +101 -0
- package/lib/stores/AbstractConflictResolutionState.d.ts +39 -0
- package/lib/stores/AbstractConflictResolutionState.d.ts.map +1 -0
- package/lib/stores/AbstractConflictResolutionState.js +32 -0
- package/lib/stores/AbstractConflictResolutionState.js.map +1 -0
- package/lib/stores/ChangeDetectionEvent.d.ts +29 -0
- package/lib/stores/ChangeDetectionEvent.d.ts.map +1 -0
- package/lib/stores/ChangeDetectionEvent.js +31 -0
- package/lib/stores/ChangeDetectionEvent.js.map +1 -0
- package/lib/stores/ChangeDetectionState.d.ts +211 -0
- package/lib/stores/ChangeDetectionState.d.ts.map +1 -0
- package/lib/stores/ChangeDetectionState.js +523 -0
- package/lib/stores/ChangeDetectionState.js.map +1 -0
- package/lib/stores/DSLData_LegendStudioApplicationPlugin_Extension.d.ts +51 -0
- package/lib/stores/DSLData_LegendStudioApplicationPlugin_Extension.d.ts.map +1 -0
- package/lib/stores/DSLData_LegendStudioApplicationPlugin_Extension.js +17 -0
- package/lib/stores/DSLData_LegendStudioApplicationPlugin_Extension.js.map +1 -0
- package/lib/stores/DSLGenerationSpecification_LegendStudioApplicationPlugin_Extension.d.ts +42 -0
- package/lib/stores/DSLGenerationSpecification_LegendStudioApplicationPlugin_Extension.d.ts.map +1 -0
- package/lib/stores/DSLGenerationSpecification_LegendStudioApplicationPlugin_Extension.js +17 -0
- package/lib/stores/DSLGenerationSpecification_LegendStudioApplicationPlugin_Extension.js.map +1 -0
- package/lib/stores/DSLMapping_LegendStudioApplicationPlugin_Extension.d.ts +138 -0
- package/lib/stores/DSLMapping_LegendStudioApplicationPlugin_Extension.d.ts.map +1 -0
- package/lib/stores/DSLMapping_LegendStudioApplicationPlugin_Extension.js +17 -0
- package/lib/stores/DSLMapping_LegendStudioApplicationPlugin_Extension.js.map +1 -0
- package/lib/stores/DSLService_LegendStudioApplicationPlugin_Extension.d.ts +35 -0
- package/lib/stores/DSLService_LegendStudioApplicationPlugin_Extension.d.ts.map +1 -0
- package/lib/stores/DSLService_LegendStudioApplicationPlugin_Extension.js +17 -0
- package/lib/stores/DSLService_LegendStudioApplicationPlugin_Extension.js.map +1 -0
- package/lib/stores/EditorConfig.d.ts +75 -0
- package/lib/stores/EditorConfig.d.ts.map +1 -0
- package/lib/stores/EditorConfig.js +81 -0
- package/lib/stores/EditorConfig.js.map +1 -0
- package/lib/stores/EditorGraphState.d.ts +133 -0
- package/lib/stores/EditorGraphState.d.ts.map +1 -0
- package/lib/stores/EditorGraphState.js +848 -0
- package/lib/stores/EditorGraphState.js.map +1 -0
- package/lib/stores/EditorSDLCState.d.ts +59 -0
- package/lib/stores/EditorSDLCState.d.ts.map +1 -0
- package/lib/stores/EditorSDLCState.js +245 -0
- package/lib/stores/EditorSDLCState.js.map +1 -0
- package/lib/stores/EditorStore.d.ts +174 -0
- package/lib/stores/EditorStore.d.ts.map +1 -0
- package/lib/stores/EditorStore.js +992 -0
- package/lib/stores/EditorStore.js.map +1 -0
- package/lib/stores/EditorStoreTestUtils.d.ts +21 -0
- package/lib/stores/EditorStoreTestUtils.d.ts.map +1 -0
- package/lib/stores/EditorStoreTestUtils.js +54 -0
- package/lib/stores/EditorStoreTestUtils.js.map +1 -0
- package/lib/stores/ExplorerTreeState.d.ts +67 -0
- package/lib/stores/ExplorerTreeState.d.ts.map +1 -0
- package/lib/stores/ExplorerTreeState.js +271 -0
- package/lib/stores/ExplorerTreeState.js.map +1 -0
- package/lib/stores/LegendStudioAppEvent.d.ts +29 -0
- package/lib/stores/LegendStudioAppEvent.d.ts.map +1 -0
- package/lib/stores/LegendStudioAppEvent.js +34 -0
- package/lib/stores/LegendStudioAppEvent.js.map +1 -0
- package/lib/stores/LegendStudioApplicationNavigationContext.d.ts +38 -0
- package/lib/stores/LegendStudioApplicationNavigationContext.d.ts.map +1 -0
- package/lib/stores/LegendStudioApplicationNavigationContext.js +41 -0
- package/lib/stores/LegendStudioApplicationNavigationContext.js.map +1 -0
- package/lib/stores/LegendStudioApplicationPlugin.d.ts +218 -0
- package/lib/stores/LegendStudioApplicationPlugin.d.ts.map +1 -0
- package/lib/stores/LegendStudioApplicationPlugin.js +27 -0
- package/lib/stores/LegendStudioApplicationPlugin.js.map +1 -0
- package/lib/stores/LegendStudioBaseStore.d.ts +38 -0
- package/lib/stores/LegendStudioBaseStore.d.ts.map +1 -0
- package/lib/stores/LegendStudioBaseStore.js +159 -0
- package/lib/stores/LegendStudioBaseStore.js.map +1 -0
- package/lib/stores/LegendStudioCodeSnippets.d.ts +43 -0
- package/lib/stores/LegendStudioCodeSnippets.d.ts.map +1 -0
- package/lib/stores/LegendStudioCodeSnippets.js +307 -0
- package/lib/stores/LegendStudioCodeSnippets.js.map +1 -0
- package/lib/stores/LegendStudioDocumentation.d.ts +63 -0
- package/lib/stores/LegendStudioDocumentation.d.ts.map +1 -0
- package/lib/stores/LegendStudioDocumentation.js +73 -0
- package/lib/stores/LegendStudioDocumentation.js.map +1 -0
- package/lib/stores/LegendStudioEventService.d.ts +23 -0
- package/lib/stores/LegendStudioEventService.d.ts.map +1 -0
- package/lib/stores/LegendStudioEventService.js +29 -0
- package/lib/stores/LegendStudioEventService.js.map +1 -0
- package/lib/stores/LegendStudioRouter.d.ts +76 -0
- package/lib/stores/LegendStudioRouter.d.ts.map +1 -0
- package/lib/stores/LegendStudioRouter.js +119 -0
- package/lib/stores/LegendStudioRouter.js.map +1 -0
- package/lib/stores/StoreRelational_LegendStudioApplicationPlugin_Extension.d.ts +61 -0
- package/lib/stores/StoreRelational_LegendStudioApplicationPlugin_Extension.d.ts.map +1 -0
- package/lib/stores/StoreRelational_LegendStudioApplicationPlugin_Extension.js +17 -0
- package/lib/stores/StoreRelational_LegendStudioApplicationPlugin_Extension.js.map +1 -0
- package/lib/stores/aux-panel-state/DevToolState.d.ts +21 -0
- package/lib/stores/aux-panel-state/DevToolState.d.ts.map +1 -0
- package/lib/stores/aux-panel-state/DevToolState.js +24 -0
- package/lib/stores/aux-panel-state/DevToolState.js.map +1 -0
- package/lib/stores/editor/EditorMode.d.ts +22 -0
- package/lib/stores/editor/EditorMode.d.ts.map +1 -0
- package/lib/stores/editor/EditorMode.js +18 -0
- package/lib/stores/editor/EditorMode.js.map +1 -0
- package/lib/stores/editor/NewElementState.d.ts +125 -0
- package/lib/stores/editor/NewElementState.d.ts.map +1 -0
- package/lib/stores/editor/NewElementState.js +553 -0
- package/lib/stores/editor/NewElementState.js.map +1 -0
- package/lib/stores/editor/StandardEditorMode.d.ts +23 -0
- package/lib/stores/editor/StandardEditorMode.d.ts.map +1 -0
- package/lib/stores/editor/StandardEditorMode.js +28 -0
- package/lib/stores/editor/StandardEditorMode.js.map +1 -0
- package/lib/stores/editor-state/EditorState.d.ts +26 -0
- package/lib/stores/editor-state/EditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/EditorState.js +27 -0
- package/lib/stores/editor-state/EditorState.js.map +1 -0
- package/lib/stores/editor-state/ExternalFormatState.d.ts +42 -0
- package/lib/stores/editor-state/ExternalFormatState.d.ts.map +1 -0
- package/lib/stores/editor-state/ExternalFormatState.js +74 -0
- package/lib/stores/editor-state/ExternalFormatState.js.map +1 -0
- package/lib/stores/editor-state/FileGenerationState.d.ts +44 -0
- package/lib/stores/editor-state/FileGenerationState.d.ts.map +1 -0
- package/lib/stores/editor-state/FileGenerationState.js +217 -0
- package/lib/stores/editor-state/FileGenerationState.js.map +1 -0
- package/lib/stores/editor-state/FileGenerationViewerState.d.ts +27 -0
- package/lib/stores/editor-state/FileGenerationViewerState.d.ts.map +1 -0
- package/lib/stores/editor-state/FileGenerationViewerState.js +52 -0
- package/lib/stores/editor-state/FileGenerationViewerState.js.map +1 -0
- package/lib/stores/editor-state/GenerationSpecificationEditorState.d.ts +40 -0
- package/lib/stores/editor-state/GenerationSpecificationEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/GenerationSpecificationEditorState.js +73 -0
- package/lib/stores/editor-state/GenerationSpecificationEditorState.js.map +1 -0
- package/lib/stores/editor-state/GrammarTextEditorState.d.ts +31 -0
- package/lib/stores/editor-state/GrammarTextEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/GrammarTextEditorState.js +143 -0
- package/lib/stores/editor-state/GrammarTextEditorState.js.map +1 -0
- package/lib/stores/editor-state/GraphGenerationState.d.ts +74 -0
- package/lib/stores/editor-state/GraphGenerationState.d.ts.map +1 -0
- package/lib/stores/editor-state/GraphGenerationState.js +349 -0
- package/lib/stores/editor-state/GraphGenerationState.js.map +1 -0
- package/lib/stores/editor-state/ModelLoaderState.d.ts +52 -0
- package/lib/stores/editor-state/ModelLoaderState.d.ts.map +1 -0
- package/lib/stores/editor-state/ModelLoaderState.js +199 -0
- package/lib/stores/editor-state/ModelLoaderState.js.map +1 -0
- package/lib/stores/editor-state/ProjectConfigurationEditorState.d.ts +53 -0
- package/lib/stores/editor-state/ProjectConfigurationEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/ProjectConfigurationEditorState.js +191 -0
- package/lib/stores/editor-state/ProjectConfigurationEditorState.js.map +1 -0
- package/lib/stores/editor-state/UnsupportedElementEditorState.d.ts +22 -0
- package/lib/stores/editor-state/UnsupportedElementEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/UnsupportedElementEditorState.js +22 -0
- package/lib/stores/editor-state/UnsupportedElementEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/ClassEditorState.d.ts +31 -0
- package/lib/stores/editor-state/element-editor-state/ClassEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/ClassEditorState.js +88 -0
- package/lib/stores/editor-state/element-editor-state/ClassEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/ClassState.d.ts +59 -0
- package/lib/stores/editor-state/element-editor-state/ClassState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/ClassState.js +271 -0
- package/lib/stores/editor-state/element-editor-state/ClassState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/ElementEditorState.d.ts +43 -0
- package/lib/stores/editor-state/element-editor-state/ElementEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/ElementEditorState.js +104 -0
- package/lib/stores/editor-state/element-editor-state/ElementEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/ElementFileGenerationState.d.ts +30 -0
- package/lib/stores/editor-state/element-editor-state/ElementFileGenerationState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/ElementFileGenerationState.js +69 -0
- package/lib/stores/editor-state/element-editor-state/ElementFileGenerationState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/FileGenerationEditorState.d.ts +27 -0
- package/lib/stores/editor-state/element-editor-state/FileGenerationEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/FileGenerationEditorState.js +43 -0
- package/lib/stores/editor-state/element-editor-state/FileGenerationEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/FunctionEditorState.d.ts +46 -0
- package/lib/stores/editor-state/element-editor-state/FunctionEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/FunctionEditorState.js +156 -0
- package/lib/stores/editor-state/element-editor-state/FunctionEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/RuntimeEditorState.d.ts +115 -0
- package/lib/stores/editor-state/element-editor-state/RuntimeEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/RuntimeEditorState.js +522 -0
- package/lib/stores/editor-state/element-editor-state/RuntimeEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/UMLEditorState.d.ts +35 -0
- package/lib/stores/editor-state/element-editor-state/UMLEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/UMLEditorState.js +69 -0
- package/lib/stores/editor-state/element-editor-state/UMLEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/connection/ConnectionEditorState.d.ts +92 -0
- package/lib/stores/editor-state/element-editor-state/connection/ConnectionEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/connection/ConnectionEditorState.js +339 -0
- package/lib/stores/editor-state/element-editor-state/connection/ConnectionEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/connection/DatabaseBuilderState.d.ts +76 -0
- package/lib/stores/editor-state/element-editor-state/connection/DatabaseBuilderState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/connection/DatabaseBuilderState.js +422 -0
- package/lib/stores/editor-state/element-editor-state/connection/DatabaseBuilderState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/data/DataEditorState.d.ts +47 -0
- package/lib/stores/editor-state/element-editor-state/data/DataEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/data/DataEditorState.js +65 -0
- package/lib/stores/editor-state/element-editor-state/data/DataEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/data/EmbeddedDataState.d.ts +80 -0
- package/lib/stores/editor-state/element-editor-state/data/EmbeddedDataState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/data/EmbeddedDataState.js +254 -0
- package/lib/stores/editor-state/element-editor-state/data/EmbeddedDataState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/external-format/BindingEditorState.d.ts +30 -0
- package/lib/stores/editor-state/element-editor-state/external-format/BindingEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/external-format/BindingEditorState.js +47 -0
- package/lib/stores/editor-state/element-editor-state/external-format/BindingEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/external-format/SchemaSetEditorState.d.ts +68 -0
- package/lib/stores/editor-state/element-editor-state/external-format/SchemaSetEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/external-format/SchemaSetEditorState.js +277 -0
- package/lib/stores/editor-state/element-editor-state/external-format/SchemaSetEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/FlatDataInstanceSetImplementationState.d.ts +71 -0
- package/lib/stores/editor-state/element-editor-state/mapping/FlatDataInstanceSetImplementationState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/FlatDataInstanceSetImplementationState.js +236 -0
- package/lib/stores/editor-state/element-editor-state/mapping/FlatDataInstanceSetImplementationState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingEditorState.d.ts +111 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingEditorState.js +888 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingElementDecorator.d.ts +65 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingElementDecorator.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingElementDecorator.js +389 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingElementDecorator.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingElementState.d.ts +46 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingElementState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingElementState.js +73 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingElementState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingExecutionState.d.ts +101 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingExecutionState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingExecutionState.js +448 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingExecutionState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingTestState.d.ts +123 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingTestState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingTestState.js +461 -0
- package/lib/stores/editor-state/element-editor-state/mapping/MappingTestState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/PureInstanceSetImplementationState.d.ts +55 -0
- package/lib/stores/editor-state/element-editor-state/mapping/PureInstanceSetImplementationState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/PureInstanceSetImplementationState.js +235 -0
- package/lib/stores/editor-state/element-editor-state/mapping/PureInstanceSetImplementationState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/UnsupportedInstanceSetImplementationState.d.ts +22 -0
- package/lib/stores/editor-state/element-editor-state/mapping/UnsupportedInstanceSetImplementationState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/UnsupportedInstanceSetImplementationState.js +25 -0
- package/lib/stores/editor-state/element-editor-state/mapping/UnsupportedInstanceSetImplementationState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/relational/DatabaseEditorHelper.d.ts +19 -0
- package/lib/stores/editor-state/element-editor-state/mapping/relational/DatabaseEditorHelper.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/relational/DatabaseEditorHelper.js +108 -0
- package/lib/stores/editor-state/element-editor-state/mapping/relational/DatabaseEditorHelper.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/relational/RelationalInstanceSetImplementationState.d.ts +69 -0
- package/lib/stores/editor-state/element-editor-state/mapping/relational/RelationalInstanceSetImplementationState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/mapping/relational/RelationalInstanceSetImplementationState.js +225 -0
- package/lib/stores/editor-state/element-editor-state/mapping/relational/RelationalInstanceSetImplementationState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceEditorState.d.ts +41 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceEditorState.js +76 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceExecutionState.d.ts +158 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceExecutionState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceExecutionState.js +566 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceExecutionState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceRegistrationState.d.ts +55 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceRegistrationState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceRegistrationState.js +207 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceRegistrationState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceTestRunnerState.d.ts +23 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceTestRunnerState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceTestRunnerState.js +24 -0
- package/lib/stores/editor-state/element-editor-state/service/ServiceTestRunnerState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestDataState.d.ts +63 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestDataState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestDataState.js +235 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestDataState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestEditorState.d.ts +81 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestEditorState.js +277 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestEditorState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestableState.d.ts +54 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestableState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestableState.js +208 -0
- package/lib/stores/editor-state/element-editor-state/service/testable/ServiceTestableState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/testable/TestAssertionState.d.ts +86 -0
- package/lib/stores/editor-state/element-editor-state/testable/TestAssertionState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/testable/TestAssertionState.js +230 -0
- package/lib/stores/editor-state/element-editor-state/testable/TestAssertionState.js.map +1 -0
- package/lib/stores/editor-state/element-editor-state/testable/TestableEditorState.d.ts +55 -0
- package/lib/stores/editor-state/element-editor-state/testable/TestableEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/element-editor-state/testable/TestableEditorState.js +140 -0
- package/lib/stores/editor-state/element-editor-state/testable/TestableEditorState.js.map +1 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityChangeConflictEditorState.d.ts +92 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityChangeConflictEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityChangeConflictEditorState.js +383 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityChangeConflictEditorState.js.map +1 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityDiffEditorState.d.ts +28 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityDiffEditorState.d.ts.map +1 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityDiffEditorState.js +43 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityDiffEditorState.js.map +1 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityDiffViewState.d.ts +68 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityDiffViewState.d.ts.map +1 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityDiffViewState.js +172 -0
- package/lib/stores/editor-state/entity-diff-editor-state/EntityDiffViewState.js.map +1 -0
- package/lib/stores/graphModifier/DSLData_GraphModifierHelper.d.ts +27 -0
- package/lib/stores/graphModifier/DSLData_GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/DSLData_GraphModifierHelper.js +50 -0
- package/lib/stores/graphModifier/DSLData_GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/DSLExternalFormat_GraphModifierHelper.d.ts +33 -0
- package/lib/stores/graphModifier/DSLExternalFormat_GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/DSLExternalFormat_GraphModifierHelper.js +69 -0
- package/lib/stores/graphModifier/DSLExternalFormat_GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/DSLGeneration_GraphModifierHelper.d.ts +32 -0
- package/lib/stores/graphModifier/DSLGeneration_GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/DSLGeneration_GraphModifierHelper.js +80 -0
- package/lib/stores/graphModifier/DSLGeneration_GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/DSLMapping_GraphModifierHelper.d.ts +84 -0
- package/lib/stores/graphModifier/DSLMapping_GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/DSLMapping_GraphModifierHelper.js +249 -0
- package/lib/stores/graphModifier/DSLMapping_GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/DSLService_GraphModifierHelper.d.ts +45 -0
- package/lib/stores/graphModifier/DSLService_GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/DSLService_GraphModifierHelper.js +111 -0
- package/lib/stores/graphModifier/DSLService_GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/DomainGraphModifierHelper.d.ts +59 -0
- package/lib/stores/graphModifier/DomainGraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/DomainGraphModifierHelper.js +175 -0
- package/lib/stores/graphModifier/DomainGraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/GraphModifierHelper.d.ts +22 -0
- package/lib/stores/graphModifier/GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/GraphModifierHelper.js +45 -0
- package/lib/stores/graphModifier/GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/StoreFlatData_GraphModifierHelper.d.ts +21 -0
- package/lib/stores/graphModifier/StoreFlatData_GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/StoreFlatData_GraphModifierHelper.js +33 -0
- package/lib/stores/graphModifier/StoreFlatData_GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/StoreRelational_GraphModifierHelper.d.ts +73 -0
- package/lib/stores/graphModifier/StoreRelational_GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/StoreRelational_GraphModifierHelper.js +194 -0
- package/lib/stores/graphModifier/StoreRelational_GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/Testable_GraphModifierHelper.d.ts +22 -0
- package/lib/stores/graphModifier/Testable_GraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/Testable_GraphModifierHelper.js +35 -0
- package/lib/stores/graphModifier/Testable_GraphModifierHelper.js.map +1 -0
- package/lib/stores/graphModifier/ValueSpecificationGraphModifierHelper.d.ts +20 -0
- package/lib/stores/graphModifier/ValueSpecificationGraphModifierHelper.d.ts.map +1 -0
- package/lib/stores/graphModifier/ValueSpecificationGraphModifierHelper.js +28 -0
- package/lib/stores/graphModifier/ValueSpecificationGraphModifierHelper.js.map +1 -0
- package/lib/stores/project-viewer/ProjectViewerEditorMode.d.ts +23 -0
- package/lib/stores/project-viewer/ProjectViewerEditorMode.d.ts.map +1 -0
- package/lib/stores/project-viewer/ProjectViewerEditorMode.js +34 -0
- package/lib/stores/project-viewer/ProjectViewerEditorMode.js.map +1 -0
- package/lib/stores/project-viewer/ProjectViewerStore.d.ts +59 -0
- package/lib/stores/project-viewer/ProjectViewerStore.d.ts.map +1 -0
- package/lib/stores/project-viewer/ProjectViewerStore.js +349 -0
- package/lib/stores/project-viewer/ProjectViewerStore.js.map +1 -0
- package/lib/stores/shared/DnDUtil.d.ts +68 -0
- package/lib/stores/shared/DnDUtil.d.ts.map +1 -0
- package/lib/stores/shared/DnDUtil.js +78 -0
- package/lib/stores/shared/DnDUtil.js.map +1 -0
- package/lib/stores/shared/FileGenerationTreeUtil.d.ts +57 -0
- package/lib/stores/shared/FileGenerationTreeUtil.d.ts.map +1 -0
- package/lib/stores/shared/FileGenerationTreeUtil.js +221 -0
- package/lib/stores/shared/FileGenerationTreeUtil.js.map +1 -0
- package/lib/stores/shared/MockDataUtil.d.ts +25 -0
- package/lib/stores/shared/MockDataUtil.d.ts.map +1 -0
- package/lib/stores/shared/MockDataUtil.js +114 -0
- package/lib/stores/shared/MockDataUtil.js.map +1 -0
- package/lib/stores/shared/ModelUtil.d.ts +61 -0
- package/lib/stores/shared/ModelUtil.d.ts.map +1 -0
- package/lib/stores/shared/ModelUtil.js +83 -0
- package/lib/stores/shared/ModelUtil.js.map +1 -0
- package/lib/stores/shared/PackageTreeUtil.d.ts +32 -0
- package/lib/stores/shared/PackageTreeUtil.d.ts.map +1 -0
- package/lib/stores/shared/PackageTreeUtil.js +220 -0
- package/lib/stores/shared/PackageTreeUtil.js.map +1 -0
- package/lib/stores/shared/TreeUtil.d.ts +36 -0
- package/lib/stores/shared/TreeUtil.d.ts.map +1 -0
- package/lib/stores/shared/TreeUtil.js +17 -0
- package/lib/stores/shared/TreeUtil.js.map +1 -0
- package/lib/stores/shared/testable/TestableUtils.d.ts +45 -0
- package/lib/stores/shared/testable/TestableUtils.d.ts.map +1 -0
- package/lib/stores/shared/testable/TestableUtils.js +142 -0
- package/lib/stores/shared/testable/TestableUtils.js.map +1 -0
- package/lib/stores/sidebar-state/LocalChangesState.d.ts +57 -0
- package/lib/stores/sidebar-state/LocalChangesState.d.ts.map +1 -0
- package/lib/stores/sidebar-state/LocalChangesState.js +409 -0
- package/lib/stores/sidebar-state/LocalChangesState.js.map +1 -0
- package/lib/stores/sidebar-state/ProjectOverviewState.d.ts +49 -0
- package/lib/stores/sidebar-state/ProjectOverviewState.d.ts.map +1 -0
- package/lib/stores/sidebar-state/ProjectOverviewState.js +170 -0
- package/lib/stores/sidebar-state/ProjectOverviewState.js.map +1 -0
- package/lib/stores/sidebar-state/WorkflowManagerState.d.ts +110 -0
- package/lib/stores/sidebar-state/WorkflowManagerState.d.ts.map +1 -0
- package/lib/stores/sidebar-state/WorkflowManagerState.js +352 -0
- package/lib/stores/sidebar-state/WorkflowManagerState.js.map +1 -0
- package/lib/stores/sidebar-state/WorkspaceReviewState.d.ts +47 -0
- package/lib/stores/sidebar-state/WorkspaceReviewState.d.ts.map +1 -0
- package/lib/stores/sidebar-state/WorkspaceReviewState.js +254 -0
- package/lib/stores/sidebar-state/WorkspaceReviewState.js.map +1 -0
- package/lib/stores/sidebar-state/WorkspaceSyncState.d.ts +70 -0
- package/lib/stores/sidebar-state/WorkspaceSyncState.d.ts.map +1 -0
- package/lib/stores/sidebar-state/WorkspaceSyncState.js +382 -0
- package/lib/stores/sidebar-state/WorkspaceSyncState.js.map +1 -0
- package/lib/stores/sidebar-state/WorkspaceUpdateConflictResolutionState.d.ts +53 -0
- package/lib/stores/sidebar-state/WorkspaceUpdateConflictResolutionState.d.ts.map +1 -0
- package/lib/stores/sidebar-state/WorkspaceUpdateConflictResolutionState.js +472 -0
- package/lib/stores/sidebar-state/WorkspaceUpdateConflictResolutionState.js.map +1 -0
- package/lib/stores/sidebar-state/WorkspaceUpdaterState.d.ts +36 -0
- package/lib/stores/sidebar-state/WorkspaceUpdaterState.d.ts.map +1 -0
- package/lib/stores/sidebar-state/WorkspaceUpdaterState.js +210 -0
- package/lib/stores/sidebar-state/WorkspaceUpdaterState.js.map +1 -0
- package/lib/stores/sidebar-state/testable/GlobalTestRunnerState.d.ts +102 -0
- package/lib/stores/sidebar-state/testable/GlobalTestRunnerState.d.ts.map +1 -0
- package/lib/stores/sidebar-state/testable/GlobalTestRunnerState.js +413 -0
- package/lib/stores/sidebar-state/testable/GlobalTestRunnerState.js.map +1 -0
- package/lib/stores/workspace-review/WorkspaceReviewStore.d.ts +45 -0
- package/lib/stores/workspace-review/WorkspaceReviewStore.d.ts.map +1 -0
- package/lib/stores/workspace-review/WorkspaceReviewStore.js +185 -0
- package/lib/stores/workspace-review/WorkspaceReviewStore.js.map +1 -0
- package/lib/stores/workspace-setup/WorkspaceSetupStore.d.ts +72 -0
- package/lib/stores/workspace-setup/WorkspaceSetupStore.d.ts.map +1 -0
- package/lib/stores/workspace-setup/WorkspaceSetupStore.js +240 -0
- package/lib/stores/workspace-setup/WorkspaceSetupStore.js.map +1 -0
- package/package.json +101 -0
- package/src/application/LegendStudio.tsx +97 -0
- package/src/application/LegendStudioApplicationConfig.ts +148 -0
- package/src/application/LegendStudioPluginManager.ts +76 -0
- package/src/components/Core_LegendStudioApplicationPlugin.tsx +92 -0
- package/src/components/DSLExternalFormat_CodeSnippets.ts +78 -0
- package/src/components/DSLExternalFormat_LegendStudioApplicationPlugin.tsx +437 -0
- package/src/components/DSLExternalFormat_LegendStudioDocumentation.ts +21 -0
- package/src/components/EditorComponentTestUtils.tsx +452 -0
- package/src/components/LegendStudioAppInfo.tsx +312 -0
- package/src/components/LegendStudioApplication.tsx +223 -0
- package/src/components/LegendStudioBaseStoreProvider.tsx +69 -0
- package/src/components/LegendStudioTestID.ts +63 -0
- package/src/components/editor/ActivityBar.tsx +396 -0
- package/src/components/editor/Editor.tsx +317 -0
- package/src/components/editor/EditorStoreProvider.tsx +69 -0
- package/src/components/editor/StatusBar.tsx +359 -0
- package/src/components/editor/aux-panel/AuxiliaryPanel.tsx +135 -0
- package/src/components/editor/aux-panel/Console.tsx +25 -0
- package/src/components/editor/aux-panel/DevTool.tsx +118 -0
- package/src/components/editor/command-center/ProjectSearchCommand.tsx +146 -0
- package/src/components/editor/edit-panel/EditPanel.tsx +578 -0
- package/src/components/editor/edit-panel/FileGenerationViewer.tsx +106 -0
- package/src/components/editor/edit-panel/FunctionEditor.tsx +838 -0
- package/src/components/editor/edit-panel/GenerationSpecificationEditor.tsx +615 -0
- package/src/components/editor/edit-panel/GrammarTextEditor.tsx +1244 -0
- package/src/components/editor/edit-panel/ModelLoader.tsx +264 -0
- package/src/components/editor/edit-panel/RuntimeEditor.tsx +1114 -0
- package/src/components/editor/edit-panel/UnsupportedElementEditor.tsx +83 -0
- package/src/components/editor/edit-panel/connection-editor/ConnectionEditor.tsx +193 -0
- package/src/components/editor/edit-panel/connection-editor/DatabaseBuilder.tsx +354 -0
- package/src/components/editor/edit-panel/connection-editor/FlatDataConnectionEditor.tsx +51 -0
- package/src/components/editor/edit-panel/connection-editor/RelationalDatabaseConnectionEditor.tsx +1504 -0
- package/src/components/editor/edit-panel/data-editor/DataElementEditor.tsx +383 -0
- package/src/components/editor/edit-panel/data-editor/EmbeddedDataEditor.tsx +300 -0
- package/src/components/editor/edit-panel/data-editor/RelationalCSVDataEditor.tsx +257 -0
- package/src/components/editor/edit-panel/diff-editor/EntityChangeConflictEditor.tsx +800 -0
- package/src/components/editor/edit-panel/diff-editor/EntityDiffView.tsx +177 -0
- package/src/components/editor/edit-panel/element-generation-editor/ElementGenerationEditor.tsx +203 -0
- package/src/components/editor/edit-panel/element-generation-editor/ElementNativeView.tsx +61 -0
- package/src/components/editor/edit-panel/element-generation-editor/FileGenerationEditor.tsx +1484 -0
- package/src/components/editor/edit-panel/external-format-editor/BindingElementEditor.tsx +482 -0
- package/src/components/editor/edit-panel/external-format-editor/ExternalFormatConnectionEditor.tsx +98 -0
- package/src/components/editor/edit-panel/external-format-editor/NewSchemaSetDriver.tsx +92 -0
- package/src/components/editor/edit-panel/external-format-editor/SchemaSetElementEditor.tsx +583 -0
- package/src/components/editor/edit-panel/mapping-editor/ClassMappingEditor.tsx +307 -0
- package/src/components/editor/edit-panel/mapping-editor/EnumerationMappingEditor.tsx +550 -0
- package/src/components/editor/edit-panel/mapping-editor/FlatDataPropertyMappingEditor.tsx +328 -0
- package/src/components/editor/edit-panel/mapping-editor/FlatDataRecordTypeTree.tsx +160 -0
- package/src/components/editor/edit-panel/mapping-editor/InstanceSetImplementationEditor.tsx +614 -0
- package/src/components/editor/edit-panel/mapping-editor/InstanceSetImplementationSourceSelectorModal.tsx +220 -0
- package/src/components/editor/edit-panel/mapping-editor/MappingEditor.tsx +348 -0
- package/src/components/editor/edit-panel/mapping-editor/MappingExecutionBuilder.tsx +814 -0
- package/src/components/editor/edit-panel/mapping-editor/MappingExplorer.tsx +594 -0
- package/src/components/editor/edit-panel/mapping-editor/MappingTestEditor.tsx +779 -0
- package/src/components/editor/edit-panel/mapping-editor/MappingTestsExplorer.tsx +508 -0
- package/src/components/editor/edit-panel/mapping-editor/NewMappingElementModal.tsx +279 -0
- package/src/components/editor/edit-panel/mapping-editor/OperationSetImplementationEditor.tsx +265 -0
- package/src/components/editor/edit-panel/mapping-editor/PropertyMappingsEditor.tsx +351 -0
- package/src/components/editor/edit-panel/mapping-editor/PurePropertyMappingEditor.tsx +420 -0
- package/src/components/editor/edit-panel/mapping-editor/relational/RelationalPropertyMappingEditor.tsx +362 -0
- package/src/components/editor/edit-panel/mapping-editor/relational/TableOrViewSourceTree.tsx +390 -0
- package/src/components/editor/edit-panel/project-configuration-editor/ProjectConfigurationEditor.tsx +529 -0
- package/src/components/editor/edit-panel/service-editor/NewServiceModal.tsx +115 -0
- package/src/components/editor/edit-panel/service-editor/ServiceEditor.tsx +485 -0
- package/src/components/editor/edit-panel/service-editor/ServiceExecutionEditor.tsx +889 -0
- package/src/components/editor/edit-panel/service-editor/ServiceExecutionQueryEditor.tsx +368 -0
- package/src/components/editor/edit-panel/service-editor/ServiceRegistrationEditor.tsx +221 -0
- package/src/components/editor/edit-panel/service-editor/testable/ServiceTestDataEditor.tsx +428 -0
- package/src/components/editor/edit-panel/service-editor/testable/ServiceTestableEditor.tsx +232 -0
- package/src/components/editor/edit-panel/service-editor/testable/ServiceTestsEditor.tsx +749 -0
- package/src/components/editor/edit-panel/testable/TestAssertionEditor.tsx +362 -0
- package/src/components/editor/edit-panel/uml-editor/AssociationEditor.tsx +569 -0
- package/src/components/editor/edit-panel/uml-editor/ClassEditor.tsx +1534 -0
- package/src/components/editor/edit-panel/uml-editor/EnumerationEditor.tsx +600 -0
- package/src/components/editor/edit-panel/uml-editor/ProfileEditor.tsx +250 -0
- package/src/components/editor/edit-panel/uml-editor/PropertyEditor.tsx +239 -0
- package/src/components/editor/edit-panel/uml-editor/StereotypeSelector.tsx +142 -0
- package/src/components/editor/edit-panel/uml-editor/TaggedValueEditor.tsx +199 -0
- package/src/components/editor/edit-panel/uml-editor/UMLEditor.tsx +47 -0
- package/src/components/editor/side-bar/CreateNewElementModal.tsx +518 -0
- package/src/components/editor/side-bar/Explorer.tsx +914 -0
- package/src/components/editor/side-bar/LocalChanges.tsx +433 -0
- package/src/components/editor/side-bar/ProjectOverview.tsx +886 -0
- package/src/components/editor/side-bar/SideBar.tsx +71 -0
- package/src/components/editor/side-bar/WorkflowManager.tsx +529 -0
- package/src/components/editor/side-bar/WorkspaceReview.tsx +341 -0
- package/src/components/editor/side-bar/WorkspaceSyncConflictResolver.tsx +276 -0
- package/src/components/editor/side-bar/WorkspaceUpdateConflictResolver.tsx +206 -0
- package/src/components/editor/side-bar/WorkspaceUpdater.tsx +279 -0
- package/src/components/editor/side-bar/testable/GlobalTestRunner.tsx +459 -0
- package/src/components/project-viewer/ProjectViewer.tsx +358 -0
- package/src/components/project-viewer/ProjectViewerStoreProvider.tsx +56 -0
- package/src/components/shared/DiffView.tsx +151 -0
- package/src/components/shared/ElementIconUtils.tsx +141 -0
- package/src/components/shared/MultiplicityBadge.tsx +39 -0
- package/src/components/shared/StudioLambdaEditor.tsx +140 -0
- package/src/components/shared/StudioTextInputEditor.tsx +83 -0
- package/src/components/shared/TypeTree.tsx +290 -0
- package/src/components/workspace-review/WorkspaceReview.tsx +247 -0
- package/src/components/workspace-review/WorkspaceReviewPanel.tsx +190 -0
- package/src/components/workspace-review/WorkspaceReviewSideBar.tsx +250 -0
- package/src/components/workspace-review/WorkspaceReviewStoreProvider.tsx +58 -0
- package/src/components/workspace-setup/ProjectCreateModal.tsx +756 -0
- package/src/components/workspace-setup/ProjectSelector.tsx +148 -0
- package/src/components/workspace-setup/WorkspaceSelector.tsx +135 -0
- package/src/components/workspace-setup/WorkspaceSetup.tsx +406 -0
- package/src/components/workspace-setup/WorkspaceSetupStoreProvider.tsx +56 -0
- package/src/index.ts +113 -0
- package/src/stores/AbstractConflictResolutionState.ts +55 -0
- package/src/stores/ChangeDetectionEvent.ts +34 -0
- package/src/stores/ChangeDetectionState.ts +819 -0
- package/src/stores/DSLData_LegendStudioApplicationPlugin_Extension.ts +72 -0
- package/src/stores/DSLGenerationSpecification_LegendStudioApplicationPlugin_Extension.ts +49 -0
- package/src/stores/DSLMapping_LegendStudioApplicationPlugin_Extension.ts +230 -0
- package/src/stores/DSLService_LegendStudioApplicationPlugin_Extension.ts +46 -0
- package/src/stores/EditorConfig.ts +81 -0
- package/src/stores/EditorGraphState.ts +1243 -0
- package/src/stores/EditorSDLCState.ts +440 -0
- package/src/stores/EditorStore.ts +1463 -0
- package/src/stores/EditorStoreTestUtils.ts +73 -0
- package/src/stores/ExplorerTreeState.ts +413 -0
- package/src/stores/LegendStudioAppEvent.ts +35 -0
- package/src/stores/LegendStudioApplicationNavigationContext.ts +46 -0
- package/src/stores/LegendStudioApplicationPlugin.ts +331 -0
- package/src/stores/LegendStudioBaseStore.ts +239 -0
- package/src/stores/LegendStudioCodeSnippets.ts +350 -0
- package/src/stores/LegendStudioDocumentation.ts +84 -0
- package/src/stores/LegendStudioEventService.ts +36 -0
- package/src/stores/LegendStudioRouter.ts +222 -0
- package/src/stores/StoreRelational_LegendStudioApplicationPlugin_Extension.ts +100 -0
- package/src/stores/aux-panel-state/DevToolState.ts +27 -0
- package/src/stores/editor/EditorMode.ts +22 -0
- package/src/stores/editor/NewElementState.ts +835 -0
- package/src/stores/editor/StandardEditorMode.ts +35 -0
- package/src/stores/editor-state/EditorState.ts +32 -0
- package/src/stores/editor-state/ExternalFormatState.ts +107 -0
- package/src/stores/editor-state/FileGenerationState.ts +319 -0
- package/src/stores/editor-state/FileGenerationViewerState.ts +70 -0
- package/src/stores/editor-state/GenerationSpecificationEditorState.ts +125 -0
- package/src/stores/editor-state/GrammarTextEditorState.ts +181 -0
- package/src/stores/editor-state/GraphGenerationState.ts +554 -0
- package/src/stores/editor-state/ModelLoaderState.ts +278 -0
- package/src/stores/editor-state/ProjectConfigurationEditorState.ts +300 -0
- package/src/stores/editor-state/UnsupportedElementEditorState.ts +28 -0
- package/src/stores/editor-state/element-editor-state/ClassEditorState.ts +140 -0
- package/src/stores/editor-state/element-editor-state/ClassState.ts +419 -0
- package/src/stores/editor-state/element-editor-state/ElementEditorState.ts +159 -0
- package/src/stores/editor-state/element-editor-state/ElementFileGenerationState.ts +94 -0
- package/src/stores/editor-state/element-editor-state/FileGenerationEditorState.ts +69 -0
- package/src/stores/editor-state/element-editor-state/FunctionEditorState.ts +231 -0
- package/src/stores/editor-state/element-editor-state/RuntimeEditorState.ts +935 -0
- package/src/stores/editor-state/element-editor-state/UMLEditorState.ts +84 -0
- package/src/stores/editor-state/element-editor-state/connection/ConnectionEditorState.ts +475 -0
- package/src/stores/editor-state/element-editor-state/connection/DatabaseBuilderState.ts +637 -0
- package/src/stores/editor-state/element-editor-state/data/DataEditorState.ts +100 -0
- package/src/stores/editor-state/element-editor-state/data/EmbeddedDataState.ts +351 -0
- package/src/stores/editor-state/element-editor-state/external-format/BindingEditorState.ts +61 -0
- package/src/stores/editor-state/element-editor-state/external-format/SchemaSetEditorState.ts +397 -0
- package/src/stores/editor-state/element-editor-state/mapping/FlatDataInstanceSetImplementationState.ts +397 -0
- package/src/stores/editor-state/element-editor-state/mapping/MappingEditorState.ts +1528 -0
- package/src/stores/editor-state/element-editor-state/mapping/MappingElementDecorator.ts +794 -0
- package/src/stores/editor-state/element-editor-state/mapping/MappingElementState.ts +111 -0
- package/src/stores/editor-state/element-editor-state/mapping/MappingExecutionState.ts +895 -0
- package/src/stores/editor-state/element-editor-state/mapping/MappingTestState.ts +803 -0
- package/src/stores/editor-state/element-editor-state/mapping/PureInstanceSetImplementationState.ts +349 -0
- package/src/stores/editor-state/element-editor-state/mapping/UnsupportedInstanceSetImplementationState.ts +27 -0
- package/src/stores/editor-state/element-editor-state/mapping/relational/DatabaseEditorHelper.tsx +134 -0
- package/src/stores/editor-state/element-editor-state/mapping/relational/RelationalInstanceSetImplementationState.ts +350 -0
- package/src/stores/editor-state/element-editor-state/service/ServiceEditorState.ts +114 -0
- package/src/stores/editor-state/element-editor-state/service/ServiceExecutionState.ts +907 -0
- package/src/stores/editor-state/element-editor-state/service/ServiceRegistrationState.ts +312 -0
- package/src/stores/editor-state/element-editor-state/service/ServiceTestRunnerState.ts +31 -0
- package/src/stores/editor-state/element-editor-state/service/testable/ServiceTestDataState.ts +365 -0
- package/src/stores/editor-state/element-editor-state/service/testable/ServiceTestEditorState.ts +405 -0
- package/src/stores/editor-state/element-editor-state/service/testable/ServiceTestableState.ts +293 -0
- package/src/stores/editor-state/element-editor-state/testable/TestAssertionState.ts +319 -0
- package/src/stores/editor-state/element-editor-state/testable/TestableEditorState.ts +205 -0
- package/src/stores/editor-state/entity-diff-editor-state/EntityChangeConflictEditorState.ts +547 -0
- package/src/stores/editor-state/entity-diff-editor-state/EntityDiffEditorState.ts +48 -0
- package/src/stores/editor-state/entity-diff-editor-state/EntityDiffViewState.ts +228 -0
- package/src/stores/graphModifier/DSLData_GraphModifierHelper.ts +104 -0
- package/src/stores/graphModifier/DSLExternalFormat_GraphModifierHelper.ts +138 -0
- package/src/stores/graphModifier/DSLGeneration_GraphModifierHelper.ts +188 -0
- package/src/stores/graphModifier/DSLMapping_GraphModifierHelper.ts +563 -0
- package/src/stores/graphModifier/DSLService_GraphModifierHelper.ts +243 -0
- package/src/stores/graphModifier/DomainGraphModifierHelper.ts +349 -0
- package/src/stores/graphModifier/GraphModifierHelper.ts +80 -0
- package/src/stores/graphModifier/StoreFlatData_GraphModifierHelper.ts +60 -0
- package/src/stores/graphModifier/StoreRelational_GraphModifierHelper.ts +413 -0
- package/src/stores/graphModifier/Testable_GraphModifierHelper.ts +58 -0
- package/src/stores/graphModifier/ValueSpecificationGraphModifierHelper.ts +41 -0
- package/src/stores/project-viewer/ProjectViewerEditorMode.ts +59 -0
- package/src/stores/project-viewer/ProjectViewerStore.ts +597 -0
- package/src/stores/shared/DnDUtil.ts +102 -0
- package/src/stores/shared/FileGenerationTreeUtil.ts +340 -0
- package/src/stores/shared/MockDataUtil.ts +191 -0
- package/src/stores/shared/ModelUtil.ts +87 -0
- package/src/stores/shared/PackageTreeUtil.ts +310 -0
- package/src/stores/shared/TreeUtil.ts +49 -0
- package/src/stores/shared/testable/TestableUtils.ts +213 -0
- package/src/stores/sidebar-state/LocalChangesState.ts +689 -0
- package/src/stores/sidebar-state/ProjectOverviewState.ts +287 -0
- package/src/stores/sidebar-state/WorkflowManagerState.ts +648 -0
- package/src/stores/sidebar-state/WorkspaceReviewState.ts +384 -0
- package/src/stores/sidebar-state/WorkspaceSyncState.ts +578 -0
- package/src/stores/sidebar-state/WorkspaceUpdateConflictResolutionState.ts +728 -0
- package/src/stores/sidebar-state/WorkspaceUpdaterState.ts +358 -0
- package/src/stores/sidebar-state/testable/GlobalTestRunnerState.ts +576 -0
- package/src/stores/workspace-review/WorkspaceReviewStore.ts +272 -0
- package/src/stores/workspace-setup/WorkspaceSetupStore.ts +374 -0
- package/tsconfig.json +256 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EditorGraphState.js","sourceRoot":"","sources":["../../src/stores/EditorGraphState.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,59 @@
|
|
|
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 { EditorStore } from './EditorStore.js';
|
|
17
|
+
import { type GeneratorFn } from '@finos/legend-shared';
|
|
18
|
+
import { type EntityDiff, type WorkspaceType, Workflow, Project, Revision, Version, Workspace } from '@finos/legend-server-sdlc';
|
|
19
|
+
export declare const entityDiffSorter: (a: EntityDiff, b: EntityDiff) => number;
|
|
20
|
+
export declare class EditorSDLCState {
|
|
21
|
+
editorStore: EditorStore;
|
|
22
|
+
currentProject?: Project | undefined;
|
|
23
|
+
currentWorkspace?: Workspace | undefined;
|
|
24
|
+
remoteWorkspaceRevision?: Revision | undefined;
|
|
25
|
+
currentRevision?: Revision | undefined;
|
|
26
|
+
isWorkspaceOutdated: boolean;
|
|
27
|
+
workspaceWorkflows: Workflow[];
|
|
28
|
+
projectVersions: Version[];
|
|
29
|
+
isCheckingIfWorkspaceIsOutdated: boolean;
|
|
30
|
+
isFetchingProjectVersions: boolean;
|
|
31
|
+
isFetchingProject: boolean;
|
|
32
|
+
constructor(editorStore: EditorStore);
|
|
33
|
+
get activeProject(): Project;
|
|
34
|
+
get activeWorkspace(): Workspace;
|
|
35
|
+
get activeRevision(): Revision;
|
|
36
|
+
get activeRemoteWorkspaceRevision(): Revision;
|
|
37
|
+
get isWorkspaceOutOfSync(): boolean;
|
|
38
|
+
setCurrentProject: (val: Project) => void;
|
|
39
|
+
setCurrentWorkspace: (val: Workspace) => void;
|
|
40
|
+
setCurrentRevision: (val: Revision) => void;
|
|
41
|
+
setWorkspaceLatestRevision: (val: Revision) => void;
|
|
42
|
+
fetchCurrentProject(projectId: string, options?: {
|
|
43
|
+
suppressNotification?: boolean;
|
|
44
|
+
}): GeneratorFn<void>;
|
|
45
|
+
fetchCurrentWorkspace(projectId: string, workspaceId: string, workspaceType: WorkspaceType, options?: {
|
|
46
|
+
suppressNotification?: boolean;
|
|
47
|
+
}): GeneratorFn<void>;
|
|
48
|
+
fetchProjectVersions(): GeneratorFn<void>;
|
|
49
|
+
checkIfCurrentWorkspaceIsInConflictResolutionMode(): GeneratorFn<boolean>;
|
|
50
|
+
fetchRemoteWorkspaceRevision(projectId: string, workspace: Workspace): GeneratorFn<void>;
|
|
51
|
+
fetchCurrentRevision(projectId: string, workspace: Workspace): GeneratorFn<void>;
|
|
52
|
+
checkIfWorkspaceIsOutdated(): GeneratorFn<void>;
|
|
53
|
+
handleChangeDetectionRefreshIssue(error: Error): void;
|
|
54
|
+
buildWorkspaceLatestRevisionEntityHashesIndex(): GeneratorFn<void>;
|
|
55
|
+
buildWorkspaceBaseRevisionEntityHashesIndex(): GeneratorFn<void>;
|
|
56
|
+
buildProjectLatestRevisionEntityHashesIndex(): GeneratorFn<void>;
|
|
57
|
+
fetchWorkspaceWorkflows(): GeneratorFn<void>;
|
|
58
|
+
}
|
|
59
|
+
//# sourceMappingURL=EditorSDLCState.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EditorSDLCState.d.ts","sourceRoot":"","sources":["../../src/stores/EditorSDLCState.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAGH,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;AACpD,OAAO,EAEL,KAAK,WAAW,EAOjB,MAAM,sBAAsB,CAAC;AAI9B,OAAO,EACL,KAAK,UAAU,EACf,KAAK,aAAa,EAClB,QAAQ,EACR,OAAO,EACP,QAAQ,EAER,OAAO,EACP,SAAS,EAEV,MAAM,2BAA2B,CAAC;AAGnC,eAAO,MAAM,gBAAgB,MAAO,UAAU,KAAK,UAAU,KAAG,MAG7D,CAAC;AAEJ,qBAAa,eAAe;IAC1B,WAAW,EAAE,WAAW,CAAC;IACzB,cAAc,CAAC,EAAE,OAAO,GAAG,SAAS,CAAC;IACrC,gBAAgB,CAAC,EAAE,SAAS,GAAG,SAAS,CAAC;IACzC,uBAAuB,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IAC/C,eAAe,CAAC,EAAE,QAAQ,GAAG,SAAS,CAAC;IACvC,mBAAmB,UAAS;IAC5B,kBAAkB,EAAE,QAAQ,EAAE,CAAM;IACpC,eAAe,EAAE,OAAO,EAAE,CAAM;IAChC,+BAA+B,UAAS;IACxC,yBAAyB,UAAS;IAClC,iBAAiB,UAAS;gBAEd,WAAW,EAAE,WAAW;IAYpC,IAAI,aAAa,IAAI,OAAO,CAK3B;IAED,IAAI,eAAe,IAAI,SAAS,CAK/B;IAED,IAAI,cAAc,IAAI,QAAQ,CAK7B;IAED,IAAI,6BAA6B,IAAI,QAAQ,CAK5C;IAED,IAAI,oBAAoB,IAAI,OAAO,CAElC;IAED,iBAAiB,QAAS,OAAO,KAAG,IAAI,CAEtC;IACF,mBAAmB,QAAS,SAAS,KAAG,IAAI,CAE1C;IACF,kBAAkB,QAAS,QAAQ,KAAG,IAAI,CAExC;IAEF,0BAA0B,QAAS,QAAQ,KAAG,IAAI,CAEhD;IAED,mBAAmB,CAClB,SAAS,EAAE,MAAM,EACjB,OAAO,CAAC,EAAE;QAAE,oBAAoB,CAAC,EAAE,OAAO,CAAA;KAAE,GAC3C,WAAW,CAAC,IAAI,CAAC;IAsBnB,qBAAqB,CACpB,SAAS,EAAE,MAAM,EACjB,WAAW,EAAE,MAAM,EACnB,aAAa,EAAE,aAAa,EAC5B,OAAO,CAAC,EAAE;QAAE,oBAAoB,CAAC,EAAE,OAAO,CAAA;KAAE,GAC3C,WAAW,CAAC,IAAI,CAAC;IA8BnB,oBAAoB,IAAI,WAAW,CAAC,IAAI,CAAC;IAmBzC,iDAAiD,IAAI,WAAW,CAAC,OAAO,CAAC;IAOzE,4BAA4B,CAC3B,SAAS,EAAE,MAAM,EACjB,SAAS,EAAE,SAAS,GACnB,WAAW,CAAC,IAAI,CAAC;IA6BnB,oBAAoB,CACnB,SAAS,EAAE,MAAM,EACjB,SAAS,EAAE,SAAS,GACnB,WAAW,CAAC,IAAI,CAAC;IA2BnB,0BAA0B,IAAI,WAAW,CAAC,IAAI,CAAC;IAwBhD,iCAAiC,CAAC,KAAK,EAAE,KAAK,GAAG,IAAI;IAgBpD,6CAA6C,IAAI,WAAW,CAAC,IAAI,CAAC;IAsDlE,2CAA2C,IAAI,WAAW,CAAC,IAAI,CAAC;IA8BhE,2CAA2C,IAAI,WAAW,CAAC,IAAI,CAAC;IA6BhE,uBAAuB,IAAI,WAAW,CAAC,IAAI,CAAC;CAkB9C"}
|
|
@@ -0,0 +1,245 @@
|
|
|
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 { action, flowResult, makeAutoObservable } from 'mobx';
|
|
17
|
+
import { assertErrorThrown, LogEvent, NetworkClientError, HttpStatus, guaranteeNonNullable, assertTrue, } from '@finos/legend-shared';
|
|
18
|
+
import { CHANGE_DETECTION_EVENT } from './ChangeDetectionEvent.js';
|
|
19
|
+
import { EDITOR_MODE, ACTIVITY_MODE } from './EditorConfig.js';
|
|
20
|
+
import { extractEntityNameFromPath } from '@finos/legend-storage';
|
|
21
|
+
import { Workflow, Project, Revision, RevisionAlias, Version, Workspace, WorkspaceAccessType, } from '@finos/legend-server-sdlc';
|
|
22
|
+
import { LEGEND_STUDIO_APP_EVENT } from './LegendStudioAppEvent.js';
|
|
23
|
+
export const entityDiffSorter = (a, b) => extractEntityNameFromPath(a.newPath ?? a.oldPath ?? '').localeCompare(extractEntityNameFromPath(b.newPath ?? b.oldPath ?? ''));
|
|
24
|
+
export class EditorSDLCState {
|
|
25
|
+
editorStore;
|
|
26
|
+
currentProject;
|
|
27
|
+
currentWorkspace;
|
|
28
|
+
remoteWorkspaceRevision;
|
|
29
|
+
currentRevision;
|
|
30
|
+
isWorkspaceOutdated = false;
|
|
31
|
+
workspaceWorkflows = [];
|
|
32
|
+
projectVersions = [];
|
|
33
|
+
isCheckingIfWorkspaceIsOutdated = false;
|
|
34
|
+
isFetchingProjectVersions = false;
|
|
35
|
+
isFetchingProject = false;
|
|
36
|
+
constructor(editorStore) {
|
|
37
|
+
makeAutoObservable(this, {
|
|
38
|
+
editorStore: false,
|
|
39
|
+
setCurrentProject: action,
|
|
40
|
+
setCurrentWorkspace: action,
|
|
41
|
+
setCurrentRevision: action,
|
|
42
|
+
setWorkspaceLatestRevision: action,
|
|
43
|
+
});
|
|
44
|
+
this.editorStore = editorStore;
|
|
45
|
+
}
|
|
46
|
+
get activeProject() {
|
|
47
|
+
return guaranteeNonNullable(this.currentProject, `Active project has not been properly set`);
|
|
48
|
+
}
|
|
49
|
+
get activeWorkspace() {
|
|
50
|
+
return guaranteeNonNullable(this.currentWorkspace, `Active workspace has not been properly set`);
|
|
51
|
+
}
|
|
52
|
+
get activeRevision() {
|
|
53
|
+
return guaranteeNonNullable(this.currentRevision, `Active revision has not been properly set`);
|
|
54
|
+
}
|
|
55
|
+
get activeRemoteWorkspaceRevision() {
|
|
56
|
+
return guaranteeNonNullable(this.remoteWorkspaceRevision, `Active workspace latest revision has not been properly set`);
|
|
57
|
+
}
|
|
58
|
+
get isWorkspaceOutOfSync() {
|
|
59
|
+
return this.activeRemoteWorkspaceRevision.id !== this.activeRevision.id;
|
|
60
|
+
}
|
|
61
|
+
setCurrentProject = (val) => {
|
|
62
|
+
this.currentProject = val;
|
|
63
|
+
};
|
|
64
|
+
setCurrentWorkspace = (val) => {
|
|
65
|
+
this.currentWorkspace = val;
|
|
66
|
+
};
|
|
67
|
+
setCurrentRevision = (val) => {
|
|
68
|
+
this.currentRevision = val;
|
|
69
|
+
};
|
|
70
|
+
setWorkspaceLatestRevision = (val) => {
|
|
71
|
+
this.remoteWorkspaceRevision = val;
|
|
72
|
+
};
|
|
73
|
+
*fetchCurrentProject(projectId, options) {
|
|
74
|
+
try {
|
|
75
|
+
this.isFetchingProject = true;
|
|
76
|
+
this.currentProject = Project.serialization.fromJson((yield this.editorStore.sdlcServerClient.getProject(projectId)));
|
|
77
|
+
}
|
|
78
|
+
catch (error) {
|
|
79
|
+
assertErrorThrown(error);
|
|
80
|
+
this.editorStore.applicationStore.log.error(LogEvent.create(LEGEND_STUDIO_APP_EVENT.SDLC_MANAGER_FAILURE), error);
|
|
81
|
+
if (!options?.suppressNotification) {
|
|
82
|
+
this.editorStore.applicationStore.notifyError(error);
|
|
83
|
+
}
|
|
84
|
+
}
|
|
85
|
+
finally {
|
|
86
|
+
this.isFetchingProject = false;
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
*fetchCurrentWorkspace(projectId, workspaceId, workspaceType, options) {
|
|
90
|
+
try {
|
|
91
|
+
this.currentWorkspace = Workspace.serialization.fromJson((yield this.editorStore.sdlcServerClient.getWorkspace(projectId, workspaceId, workspaceType)));
|
|
92
|
+
const isInConflictResolutionMode = (yield flowResult(this.checkIfCurrentWorkspaceIsInConflictResolutionMode()));
|
|
93
|
+
if (isInConflictResolutionMode) {
|
|
94
|
+
this.editorStore.setMode(EDITOR_MODE.CONFLICT_RESOLUTION);
|
|
95
|
+
this.currentWorkspace.accessType =
|
|
96
|
+
WorkspaceAccessType.CONFLICT_RESOLUTION;
|
|
97
|
+
this.editorStore.setActiveActivity(ACTIVITY_MODE.CONFLICT_RESOLUTION);
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
catch (error) {
|
|
101
|
+
assertErrorThrown(error);
|
|
102
|
+
this.editorStore.applicationStore.log.error(LogEvent.create(LEGEND_STUDIO_APP_EVENT.SDLC_MANAGER_FAILURE), error);
|
|
103
|
+
if (!options?.suppressNotification) {
|
|
104
|
+
this.editorStore.applicationStore.notifyError(error);
|
|
105
|
+
}
|
|
106
|
+
}
|
|
107
|
+
}
|
|
108
|
+
*fetchProjectVersions() {
|
|
109
|
+
try {
|
|
110
|
+
this.isFetchingProjectVersions = true;
|
|
111
|
+
this.projectVersions = (yield this.editorStore.sdlcServerClient.getVersions(this.activeProject.projectId)).map((v) => Version.serialization.fromJson(v));
|
|
112
|
+
}
|
|
113
|
+
catch (error) {
|
|
114
|
+
assertErrorThrown(error);
|
|
115
|
+
this.editorStore.applicationStore.log.error(LogEvent.create(LEGEND_STUDIO_APP_EVENT.SDLC_MANAGER_FAILURE), error);
|
|
116
|
+
}
|
|
117
|
+
finally {
|
|
118
|
+
this.isFetchingProjectVersions = false;
|
|
119
|
+
}
|
|
120
|
+
}
|
|
121
|
+
*checkIfCurrentWorkspaceIsInConflictResolutionMode() {
|
|
122
|
+
return (yield this.editorStore.sdlcServerClient.checkIfWorkspaceIsInConflictResolutionMode(this.activeProject.projectId, this.activeWorkspace));
|
|
123
|
+
}
|
|
124
|
+
*fetchRemoteWorkspaceRevision(projectId, workspace) {
|
|
125
|
+
try {
|
|
126
|
+
this.editorStore.localChangesState.workspaceSyncState.setIncomingRevisions([]);
|
|
127
|
+
const latestRevision = Revision.serialization.fromJson(this.editorStore.isInConflictResolutionMode
|
|
128
|
+
? (yield this.editorStore.sdlcServerClient.getConflictResolutionRevision(projectId, workspace, RevisionAlias.CURRENT))
|
|
129
|
+
: (yield this.editorStore.sdlcServerClient.getRevision(projectId, workspace, RevisionAlias.CURRENT)));
|
|
130
|
+
this.setWorkspaceLatestRevision(latestRevision);
|
|
131
|
+
}
|
|
132
|
+
catch (error) {
|
|
133
|
+
assertErrorThrown(error);
|
|
134
|
+
this.editorStore.applicationStore.log.error(LogEvent.create(LEGEND_STUDIO_APP_EVENT.SDLC_MANAGER_FAILURE), error);
|
|
135
|
+
this.editorStore.applicationStore.notifyError(error);
|
|
136
|
+
}
|
|
137
|
+
}
|
|
138
|
+
*fetchCurrentRevision(projectId, workspace) {
|
|
139
|
+
try {
|
|
140
|
+
const currentRevision = Revision.serialization.fromJson(this.editorStore.isInConflictResolutionMode
|
|
141
|
+
? (yield this.editorStore.sdlcServerClient.getConflictResolutionRevision(projectId, workspace, RevisionAlias.CURRENT))
|
|
142
|
+
: (yield this.editorStore.sdlcServerClient.getRevision(projectId, workspace, RevisionAlias.CURRENT)));
|
|
143
|
+
this.setCurrentRevision(currentRevision);
|
|
144
|
+
this.setWorkspaceLatestRevision(currentRevision);
|
|
145
|
+
}
|
|
146
|
+
catch (error) {
|
|
147
|
+
assertErrorThrown(error);
|
|
148
|
+
this.editorStore.applicationStore.log.error(LogEvent.create(LEGEND_STUDIO_APP_EVENT.SDLC_MANAGER_FAILURE), error);
|
|
149
|
+
this.editorStore.applicationStore.notifyError(error);
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
*checkIfWorkspaceIsOutdated() {
|
|
153
|
+
try {
|
|
154
|
+
this.isCheckingIfWorkspaceIsOutdated = true;
|
|
155
|
+
this.isWorkspaceOutdated = this.editorStore.isInConflictResolutionMode
|
|
156
|
+
? (yield this.editorStore.sdlcServerClient.isConflictResolutionOutdated(this.activeProject.projectId, this.activeWorkspace))
|
|
157
|
+
: (yield this.editorStore.sdlcServerClient.isWorkspaceOutdated(this.activeProject.projectId, this.activeWorkspace));
|
|
158
|
+
}
|
|
159
|
+
catch (error) {
|
|
160
|
+
assertErrorThrown(error);
|
|
161
|
+
this.editorStore.applicationStore.log.error(LogEvent.create(LEGEND_STUDIO_APP_EVENT.SDLC_MANAGER_FAILURE), error);
|
|
162
|
+
this.editorStore.applicationStore.notifyError(error);
|
|
163
|
+
}
|
|
164
|
+
finally {
|
|
165
|
+
this.isCheckingIfWorkspaceIsOutdated = false;
|
|
166
|
+
}
|
|
167
|
+
}
|
|
168
|
+
handleChangeDetectionRefreshIssue(error) {
|
|
169
|
+
if (!this.currentProject ||
|
|
170
|
+
!this.currentWorkspace ||
|
|
171
|
+
(error instanceof NetworkClientError &&
|
|
172
|
+
error.response.status === HttpStatus.NOT_FOUND)) {
|
|
173
|
+
this.editorStore.setBlockingAlert({
|
|
174
|
+
message: 'Current project or workspace no longer exists',
|
|
175
|
+
prompt: 'Please refresh the application',
|
|
176
|
+
});
|
|
177
|
+
}
|
|
178
|
+
else {
|
|
179
|
+
this.editorStore.setBlockingAlert({ message: error.message });
|
|
180
|
+
}
|
|
181
|
+
}
|
|
182
|
+
*buildWorkspaceLatestRevisionEntityHashesIndex() {
|
|
183
|
+
try {
|
|
184
|
+
let entities = [];
|
|
185
|
+
if (!this.editorStore.isInConflictResolutionMode) {
|
|
186
|
+
// fetch latest revision
|
|
187
|
+
// NOTE: this check is already covered in conflict resolution mode so we don't need to do it here
|
|
188
|
+
const latestRevision = Revision.serialization.fromJson((yield this.editorStore.sdlcServerClient.getRevision(this.activeProject.projectId, this.activeWorkspace, RevisionAlias.CURRENT)));
|
|
189
|
+
// make sure there is no good recovery from this, at this point all users work risk conflict
|
|
190
|
+
assertTrue(latestRevision.id === this.activeRevision.id, `Can't run local change detection: current workspace revision is not the latest. Please backup your work and refresh the application`);
|
|
191
|
+
entities =
|
|
192
|
+
(yield this.editorStore.sdlcServerClient.getEntitiesByRevision(this.activeProject.projectId, this.activeWorkspace, this.activeRevision.id));
|
|
193
|
+
}
|
|
194
|
+
else {
|
|
195
|
+
entities =
|
|
196
|
+
(yield this.editorStore.sdlcServerClient.getEntitiesByRevision(this.activeProject.projectId, this.activeWorkspace, RevisionAlias.CURRENT));
|
|
197
|
+
}
|
|
198
|
+
this.editorStore.changeDetectionState.workspaceLocalLatestRevisionState.setEntities(entities);
|
|
199
|
+
yield flowResult(this.editorStore.changeDetectionState.workspaceLocalLatestRevisionState.buildEntityHashesIndex(entities, LogEvent.create(CHANGE_DETECTION_EVENT.CHANGE_DETECTION_LOCAL_HASHES_INDEX_BUILT)));
|
|
200
|
+
this.editorStore.refreshCurrentEntityDiffEditorState();
|
|
201
|
+
}
|
|
202
|
+
catch (error) {
|
|
203
|
+
assertErrorThrown(error);
|
|
204
|
+
this.editorStore.applicationStore.log.error(LogEvent.create(LEGEND_STUDIO_APP_EVENT.SDLC_MANAGER_FAILURE), error);
|
|
205
|
+
this.editorStore.applicationStore.notifyError(error);
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
*buildWorkspaceBaseRevisionEntityHashesIndex() {
|
|
209
|
+
try {
|
|
210
|
+
const workspaceBaseEntities = (yield this.editorStore.sdlcServerClient.getEntitiesByRevision(this.activeProject.projectId, this.activeWorkspace, RevisionAlias.BASE));
|
|
211
|
+
this.editorStore.changeDetectionState.workspaceBaseRevisionState.setEntities(workspaceBaseEntities);
|
|
212
|
+
yield flowResult(this.editorStore.changeDetectionState.workspaceBaseRevisionState.buildEntityHashesIndex(workspaceBaseEntities, LogEvent.create(CHANGE_DETECTION_EVENT.CHANGE_DETECTION_WORKSPACE_HASHES_INDEX_BUILT)));
|
|
213
|
+
this.editorStore.refreshCurrentEntityDiffEditorState();
|
|
214
|
+
}
|
|
215
|
+
catch (error) {
|
|
216
|
+
assertErrorThrown(error);
|
|
217
|
+
this.editorStore.applicationStore.log.error(LogEvent.create(LEGEND_STUDIO_APP_EVENT.SDLC_MANAGER_FAILURE), error);
|
|
218
|
+
this.editorStore.applicationStore.notifyError(error);
|
|
219
|
+
}
|
|
220
|
+
}
|
|
221
|
+
*buildProjectLatestRevisionEntityHashesIndex() {
|
|
222
|
+
try {
|
|
223
|
+
const projectLatestEntities = (yield this.editorStore.sdlcServerClient.getEntities(this.activeProject.projectId, undefined));
|
|
224
|
+
this.editorStore.changeDetectionState.projectLatestRevisionState.setEntities(projectLatestEntities);
|
|
225
|
+
yield flowResult(this.editorStore.changeDetectionState.projectLatestRevisionState.buildEntityHashesIndex(projectLatestEntities, LogEvent.create(CHANGE_DETECTION_EVENT.CHANGE_DETECTION_PROJECT_LATEST_HASHES_INDEX_BUILT)));
|
|
226
|
+
this.editorStore.refreshCurrentEntityDiffEditorState();
|
|
227
|
+
}
|
|
228
|
+
catch (error) {
|
|
229
|
+
assertErrorThrown(error);
|
|
230
|
+
this.editorStore.applicationStore.log.error(LogEvent.create(LEGEND_STUDIO_APP_EVENT.SDLC_MANAGER_FAILURE), error);
|
|
231
|
+
this.editorStore.applicationStore.notifyError(error);
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
*fetchWorkspaceWorkflows() {
|
|
235
|
+
try {
|
|
236
|
+
this.workspaceWorkflows = (yield this.editorStore.sdlcServerClient.getWorkflowsByRevision(this.activeProject.projectId, this.activeWorkspace, RevisionAlias.CURRENT)).map((v) => Workflow.serialization.fromJson(v));
|
|
237
|
+
}
|
|
238
|
+
catch (error) {
|
|
239
|
+
assertErrorThrown(error);
|
|
240
|
+
this.editorStore.applicationStore.log.error(LogEvent.create(LEGEND_STUDIO_APP_EVENT.SDLC_MANAGER_FAILURE), error);
|
|
241
|
+
this.editorStore.applicationStore.notifyError(error);
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
}
|
|
245
|
+
//# sourceMappingURL=EditorSDLCState.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EditorSDLCState.js","sourceRoot":"","sources":["../../src/stores/EditorSDLCState.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,kBAAkB,EAAE,MAAM,MAAM,CAAC;AAE9D,OAAO,EAGL,iBAAiB,EACjB,QAAQ,EACR,kBAAkB,EAClB,UAAU,EACV,oBAAoB,EACpB,UAAU,GACX,MAAM,sBAAsB,CAAC;AAC9B,OAAO,EAAE,sBAAsB,EAAE,MAAM,2BAA2B,CAAC;AACnE,OAAO,EAAE,WAAW,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AAC/D,OAAO,EAAe,yBAAyB,EAAE,MAAM,uBAAuB,CAAC;AAC/E,OAAO,EAGL,QAAQ,EACR,OAAO,EACP,QAAQ,EACR,aAAa,EACb,OAAO,EACP,SAAS,EACT,mBAAmB,GACpB,MAAM,2BAA2B,CAAC;AACnC,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AAEpE,MAAM,CAAC,MAAM,gBAAgB,GAAG,CAAC,CAAa,EAAE,CAAa,EAAU,EAAE,CACvE,yBAAyB,CAAC,CAAC,CAAC,OAAO,IAAI,CAAC,CAAC,OAAO,IAAI,EAAE,CAAC,CAAC,aAAa,CACnE,yBAAyB,CAAC,CAAC,CAAC,OAAO,IAAI,CAAC,CAAC,OAAO,IAAI,EAAE,CAAC,CACxD,CAAC;AAEJ,MAAM,OAAO,eAAe;IAC1B,WAAW,CAAc;IACzB,cAAc,CAAuB;IACrC,gBAAgB,CAAyB;IACzC,uBAAuB,CAAwB;IAC/C,eAAe,CAAwB;IACvC,mBAAmB,GAAG,KAAK,CAAC;IAC5B,kBAAkB,GAAe,EAAE,CAAC;IACpC,eAAe,GAAc,EAAE,CAAC;IAChC,+BAA+B,GAAG,KAAK,CAAC;IACxC,yBAAyB,GAAG,KAAK,CAAC;IAClC,iBAAiB,GAAG,KAAK,CAAC;IAE1B,YAAY,WAAwB;QAClC,kBAAkB,CAAC,IAAI,EAAE;YACvB,WAAW,EAAE,KAAK;YAClB,iBAAiB,EAAE,MAAM;YACzB,mBAAmB,EAAE,MAAM;YAC3B,kBAAkB,EAAE,MAAM;YAC1B,0BAA0B,EAAE,MAAM;SACnC,CAAC,CAAC;QAEH,IAAI,CAAC,WAAW,GAAG,WAAW,CAAC;IACjC,CAAC;IAED,IAAI,aAAa;QACf,OAAO,oBAAoB,CACzB,IAAI,CAAC,cAAc,EACnB,0CAA0C,CAC3C,CAAC;IACJ,CAAC;IAED,IAAI,eAAe;QACjB,OAAO,oBAAoB,CACzB,IAAI,CAAC,gBAAgB,EACrB,4CAA4C,CAC7C,CAAC;IACJ,CAAC;IAED,IAAI,cAAc;QAChB,OAAO,oBAAoB,CACzB,IAAI,CAAC,eAAe,EACpB,2CAA2C,CAC5C,CAAC;IACJ,CAAC;IAED,IAAI,6BAA6B;QAC/B,OAAO,oBAAoB,CACzB,IAAI,CAAC,uBAAuB,EAC5B,4DAA4D,CAC7D,CAAC;IACJ,CAAC;IAED,IAAI,oBAAoB;QACtB,OAAO,IAAI,CAAC,6BAA6B,CAAC,EAAE,KAAK,IAAI,CAAC,cAAc,CAAC,EAAE,CAAC;IAC1E,CAAC;IAED,iBAAiB,GAAG,CAAC,GAAY,EAAQ,EAAE;QACzC,IAAI,CAAC,cAAc,GAAG,GAAG,CAAC;IAC5B,CAAC,CAAC;IACF,mBAAmB,GAAG,CAAC,GAAc,EAAQ,EAAE;QAC7C,IAAI,CAAC,gBAAgB,GAAG,GAAG,CAAC;IAC9B,CAAC,CAAC;IACF,kBAAkB,GAAG,CAAC,GAAa,EAAQ,EAAE;QAC3C,IAAI,CAAC,eAAe,GAAG,GAAG,CAAC;IAC7B,CAAC,CAAC;IAEF,0BAA0B,GAAG,CAAC,GAAa,EAAQ,EAAE;QACnD,IAAI,CAAC,uBAAuB,GAAG,GAAG,CAAC;IACrC,CAAC,CAAC;IAEF,CAAC,mBAAmB,CAClB,SAAiB,EACjB,OAA4C;QAE5C,IAAI;YACF,IAAI,CAAC,iBAAiB,GAAG,IAAI,CAAC;YAC9B,IAAI,CAAC,cAAc,GAAG,OAAO,CAAC,aAAa,CAAC,QAAQ,CAClD,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,UAAU,CACjD,SAAS,CACV,CAAyB,CAC3B,CAAC;SACH;QAAC,OAAO,KAAK,EAAE;YACd,iBAAiB,CAAC,KAAK,CAAC,CAAC;YACzB,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,GAAG,CAAC,KAAK,CACzC,QAAQ,CAAC,MAAM,CAAC,uBAAuB,CAAC,oBAAoB,CAAC,EAC7D,KAAK,CACN,CAAC;YACF,IAAI,CAAC,OAAO,EAAE,oBAAoB,EAAE;gBAClC,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;aACtD;SACF;gBAAS;YACR,IAAI,CAAC,iBAAiB,GAAG,KAAK,CAAC;SAChC;IACH,CAAC;IAED,CAAC,qBAAqB,CACpB,SAAiB,EACjB,WAAmB,EACnB,aAA4B,EAC5B,OAA4C;QAE5C,IAAI;YACF,IAAI,CAAC,gBAAgB,GAAG,SAAS,CAAC,aAAa,CAAC,QAAQ,CACtD,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,YAAY,CACnD,SAAS,EACT,WAAW,EACX,aAAa,CACd,CAA2B,CAC7B,CAAC;YACF,MAAM,0BAA0B,GAAG,CAAC,MAAM,UAAU,CAClD,IAAI,CAAC,iDAAiD,EAAE,CACzD,CAAY,CAAC;YACd,IAAI,0BAA0B,EAAE;gBAC9B,IAAI,CAAC,WAAW,CAAC,OAAO,CAAC,WAAW,CAAC,mBAAmB,CAAC,CAAC;gBAC1D,IAAI,CAAC,gBAAgB,CAAC,UAAU;oBAC9B,mBAAmB,CAAC,mBAAmB,CAAC;gBAC1C,IAAI,CAAC,WAAW,CAAC,iBAAiB,CAAC,aAAa,CAAC,mBAAmB,CAAC,CAAC;aACvE;SACF;QAAC,OAAO,KAAK,EAAE;YACd,iBAAiB,CAAC,KAAK,CAAC,CAAC;YACzB,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,GAAG,CAAC,KAAK,CACzC,QAAQ,CAAC,MAAM,CAAC,uBAAuB,CAAC,oBAAoB,CAAC,EAC7D,KAAK,CACN,CAAC;YACF,IAAI,CAAC,OAAO,EAAE,oBAAoB,EAAE;gBAClC,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;aACtD;SACF;IACH,CAAC;IAED,CAAC,oBAAoB;QACnB,IAAI;YACF,IAAI,CAAC,yBAAyB,GAAG,IAAI,CAAC;YACtC,IAAI,CAAC,eAAe,GAClB,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,WAAW,CAClD,IAAI,CAAC,aAAa,CAAC,SAAS,CAC7B,CACF,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,OAAO,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;SACjD;QAAC,OAAO,KAAK,EAAE;YACd,iBAAiB,CAAC,KAAK,CAAC,CAAC;YACzB,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,GAAG,CAAC,KAAK,CACzC,QAAQ,CAAC,MAAM,CAAC,uBAAuB,CAAC,oBAAoB,CAAC,EAC7D,KAAK,CACN,CAAC;SACH;gBAAS;YACR,IAAI,CAAC,yBAAyB,GAAG,KAAK,CAAC;SACxC;IACH,CAAC;IAED,CAAC,iDAAiD;QAChD,OAAO,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,0CAA0C,CACxF,IAAI,CAAC,aAAa,CAAC,SAAS,EAC5B,IAAI,CAAC,eAAe,CACrB,CAAY,CAAC;IAChB,CAAC;IAED,CAAC,4BAA4B,CAC3B,SAAiB,EACjB,SAAoB;QAEpB,IAAI;YACF,IAAI,CAAC,WAAW,CAAC,iBAAiB,CAAC,kBAAkB,CAAC,oBAAoB,CACxE,EAAE,CACH,CAAC;YACF,MAAM,cAAc,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CACpD,IAAI,CAAC,WAAW,CAAC,0BAA0B;gBACzC,CAAC,CAAE,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,6BAA6B,CACrE,SAAS,EACT,SAAS,EACT,aAAa,CAAC,OAAO,CACtB,CAA2B;gBAC9B,CAAC,CAAE,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,WAAW,CACnD,SAAS,EACT,SAAS,EACT,aAAa,CAAC,OAAO,CACtB,CAA2B,CACjC,CAAC;YACF,IAAI,CAAC,0BAA0B,CAAC,cAAc,CAAC,CAAC;SACjD;QAAC,OAAO,KAAK,EAAE;YACd,iBAAiB,CAAC,KAAK,CAAC,CAAC;YACzB,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,GAAG,CAAC,KAAK,CACzC,QAAQ,CAAC,MAAM,CAAC,uBAAuB,CAAC,oBAAoB,CAAC,EAC7D,KAAK,CACN,CAAC;YACF,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;SACtD;IACH,CAAC;IAED,CAAC,oBAAoB,CACnB,SAAiB,EACjB,SAAoB;QAEpB,IAAI;YACF,MAAM,eAAe,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CACrD,IAAI,CAAC,WAAW,CAAC,0BAA0B;gBACzC,CAAC,CAAE,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,6BAA6B,CACrE,SAAS,EACT,SAAS,EACT,aAAa,CAAC,OAAO,CACtB,CAA2B;gBAC9B,CAAC,CAAE,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,WAAW,CACnD,SAAS,EACT,SAAS,EACT,aAAa,CAAC,OAAO,CACtB,CAA2B,CACjC,CAAC;YACF,IAAI,CAAC,kBAAkB,CAAC,eAAe,CAAC,CAAC;YACzC,IAAI,CAAC,0BAA0B,CAAC,eAAe,CAAC,CAAC;SAClD;QAAC,OAAO,KAAK,EAAE;YACd,iBAAiB,CAAC,KAAK,CAAC,CAAC;YACzB,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,GAAG,CAAC,KAAK,CACzC,QAAQ,CAAC,MAAM,CAAC,uBAAuB,CAAC,oBAAoB,CAAC,EAC7D,KAAK,CACN,CAAC;YACF,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;SACtD;IACH,CAAC;IAED,CAAC,0BAA0B;QACzB,IAAI;YACF,IAAI,CAAC,+BAA+B,GAAG,IAAI,CAAC;YAC5C,IAAI,CAAC,mBAAmB,GAAG,IAAI,CAAC,WAAW,CAAC,0BAA0B;gBACpE,CAAC,CAAE,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,4BAA4B,CACpE,IAAI,CAAC,aAAa,CAAC,SAAS,EAC5B,IAAI,CAAC,eAAe,CACrB,CAAa;gBAChB,CAAC,CAAE,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,mBAAmB,CAC3D,IAAI,CAAC,aAAa,CAAC,SAAS,EAC5B,IAAI,CAAC,eAAe,CACrB,CAAa,CAAC;SACpB;QAAC,OAAO,KAAK,EAAE;YACd,iBAAiB,CAAC,KAAK,CAAC,CAAC;YACzB,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,GAAG,CAAC,KAAK,CACzC,QAAQ,CAAC,MAAM,CAAC,uBAAuB,CAAC,oBAAoB,CAAC,EAC7D,KAAK,CACN,CAAC;YACF,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;SACtD;gBAAS;YACR,IAAI,CAAC,+BAA+B,GAAG,KAAK,CAAC;SAC9C;IACH,CAAC;IAED,iCAAiC,CAAC,KAAY;QAC5C,IACE,CAAC,IAAI,CAAC,cAAc;YACpB,CAAC,IAAI,CAAC,gBAAgB;YACtB,CAAC,KAAK,YAAY,kBAAkB;gBAClC,KAAK,CAAC,QAAQ,CAAC,MAAM,KAAK,UAAU,CAAC,SAAS,CAAC,EACjD;YACA,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC;gBAChC,OAAO,EAAE,+CAA+C;gBACxD,MAAM,EAAE,gCAAgC;aACzC,CAAC,CAAC;SACJ;aAAM;YACL,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,EAAE,OAAO,EAAE,KAAK,CAAC,OAAO,EAAE,CAAC,CAAC;SAC/D;IACH,CAAC;IAED,CAAC,6CAA6C;QAC5C,IAAI;YACF,IAAI,QAAQ,GAAa,EAAE,CAAC;YAC5B,IAAI,CAAC,IAAI,CAAC,WAAW,CAAC,0BAA0B,EAAE;gBAChD,wBAAwB;gBACxB,iGAAiG;gBACjG,MAAM,cAAc,GAAG,QAAQ,CAAC,aAAa,CAAC,QAAQ,CACpD,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,WAAW,CAClD,IAAI,CAAC,aAAa,CAAC,SAAS,EAC5B,IAAI,CAAC,eAAe,EACpB,aAAa,CAAC,OAAO,CACtB,CAA0B,CAC5B,CAAC;gBACF,4FAA4F;gBAC5F,UAAU,CACR,cAAc,CAAC,EAAE,KAAK,IAAI,CAAC,cAAc,CAAC,EAAE,EAC5C,qIAAqI,CACtI,CAAC;gBACF,QAAQ;oBACN,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,qBAAqB,CAC5D,IAAI,CAAC,aAAa,CAAC,SAAS,EAC5B,IAAI,CAAC,eAAe,EACpB,IAAI,CAAC,cAAc,CAAC,EAAE,CACvB,CAAa,CAAC;aAClB;iBAAM;gBACL,QAAQ;oBACN,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,qBAAqB,CAC5D,IAAI,CAAC,aAAa,CAAC,SAAS,EAC5B,IAAI,CAAC,eAAe,EACpB,aAAa,CAAC,OAAO,CACtB,CAAa,CAAC;aAClB;YACD,IAAI,CAAC,WAAW,CAAC,oBAAoB,CAAC,iCAAiC,CAAC,WAAW,CACjF,QAAQ,CACT,CAAC;YACF,MAAM,UAAU,CACd,IAAI,CAAC,WAAW,CAAC,oBAAoB,CAAC,iCAAiC,CAAC,sBAAsB,CAC5F,QAAQ,EACR,QAAQ,CAAC,MAAM,CACb,sBAAsB,CAAC,yCAAyC,CACjE,CACF,CACF,CAAC;YACF,IAAI,CAAC,WAAW,CAAC,mCAAmC,EAAE,CAAC;SACxD;QAAC,OAAO,KAAK,EAAE;YACd,iBAAiB,CAAC,KAAK,CAAC,CAAC;YACzB,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,GAAG,CAAC,KAAK,CACzC,QAAQ,CAAC,MAAM,CAAC,uBAAuB,CAAC,oBAAoB,CAAC,EAC7D,KAAK,CACN,CAAC;YACF,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;SACtD;IACH,CAAC;IAED,CAAC,2CAA2C;QAC1C,IAAI;YACF,MAAM,qBAAqB,GACzB,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,qBAAqB,CAC5D,IAAI,CAAC,aAAa,CAAC,SAAS,EAC5B,IAAI,CAAC,eAAe,EACpB,aAAa,CAAC,IAAI,CACnB,CAAa,CAAC;YACjB,IAAI,CAAC,WAAW,CAAC,oBAAoB,CAAC,0BAA0B,CAAC,WAAW,CAC1E,qBAAqB,CACtB,CAAC;YACF,MAAM,UAAU,CACd,IAAI,CAAC,WAAW,CAAC,oBAAoB,CAAC,0BAA0B,CAAC,sBAAsB,CACrF,qBAAqB,EACrB,QAAQ,CAAC,MAAM,CACb,sBAAsB,CAAC,6CAA6C,CACrE,CACF,CACF,CAAC;YACF,IAAI,CAAC,WAAW,CAAC,mCAAmC,EAAE,CAAC;SACxD;QAAC,OAAO,KAAK,EAAE;YACd,iBAAiB,CAAC,KAAK,CAAC,CAAC;YACzB,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,GAAG,CAAC,KAAK,CACzC,QAAQ,CAAC,MAAM,CAAC,uBAAuB,CAAC,oBAAoB,CAAC,EAC7D,KAAK,CACN,CAAC;YACF,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;SACtD;IACH,CAAC;IAED,CAAC,2CAA2C;QAC1C,IAAI;YACF,MAAM,qBAAqB,GACzB,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,WAAW,CAClD,IAAI,CAAC,aAAa,CAAC,SAAS,EAC5B,SAAS,CACV,CAAa,CAAC;YACjB,IAAI,CAAC,WAAW,CAAC,oBAAoB,CAAC,0BAA0B,CAAC,WAAW,CAC1E,qBAAqB,CACtB,CAAC;YACF,MAAM,UAAU,CACd,IAAI,CAAC,WAAW,CAAC,oBAAoB,CAAC,0BAA0B,CAAC,sBAAsB,CACrF,qBAAqB,EACrB,QAAQ,CAAC,MAAM,CACb,sBAAsB,CAAC,kDAAkD,CAC1E,CACF,CACF,CAAC;YACF,IAAI,CAAC,WAAW,CAAC,mCAAmC,EAAE,CAAC;SACxD;QAAC,OAAO,KAAK,EAAE;YACd,iBAAiB,CAAC,KAAK,CAAC,CAAC;YACzB,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,GAAG,CAAC,KAAK,CACzC,QAAQ,CAAC,MAAM,CAAC,uBAAuB,CAAC,oBAAoB,CAAC,EAC7D,KAAK,CACN,CAAC;YACF,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;SACtD;IACH,CAAC;IAED,CAAC,uBAAuB;QACtB,IAAI;YACF,IAAI,CAAC,kBAAkB,GACrB,CAAC,MAAM,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,sBAAsB,CAC7D,IAAI,CAAC,aAAa,CAAC,SAAS,EAC5B,IAAI,CAAC,eAAe,EACpB,aAAa,CAAC,OAAO,CACtB,CACF,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,QAAQ,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC;SAClD;QAAC,OAAO,KAAK,EAAE;YACd,iBAAiB,CAAC,KAAK,CAAC,CAAC;YACzB,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,GAAG,CAAC,KAAK,CACzC,QAAQ,CAAC,MAAM,CAAC,uBAAuB,CAAC,oBAAoB,CAAC,EAC7D,KAAK,CACN,CAAC;YACF,IAAI,CAAC,WAAW,CAAC,gBAAgB,CAAC,WAAW,CAAC,KAAK,CAAC,CAAC;SACtD;IACH,CAAC;CACF"}
|
|
@@ -0,0 +1,174 @@
|
|
|
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 { ExplorerTreeState } from './ExplorerTreeState.js';
|
|
17
|
+
import { ACTIVITY_MODE, AUX_PANEL_MODE, GRAPH_EDITOR_MODE, EDITOR_MODE } from './EditorConfig.js';
|
|
18
|
+
import { ElementEditorState } from './editor-state/element-editor-state/ElementEditorState.js';
|
|
19
|
+
import { EditorGraphState } from './EditorGraphState.js';
|
|
20
|
+
import { ChangeDetectionState } from './ChangeDetectionState.js';
|
|
21
|
+
import { NewElementState } from './editor/NewElementState.js';
|
|
22
|
+
import { WorkspaceUpdaterState } from './sidebar-state/WorkspaceUpdaterState.js';
|
|
23
|
+
import { ProjectOverviewState } from './sidebar-state/ProjectOverviewState.js';
|
|
24
|
+
import { WorkspaceReviewState } from './sidebar-state/WorkspaceReviewState.js';
|
|
25
|
+
import { LocalChangesState } from './sidebar-state/LocalChangesState.js';
|
|
26
|
+
import { WorkspaceWorkflowManagerState } from './sidebar-state/WorkflowManagerState.js';
|
|
27
|
+
import { GrammarTextEditorState } from './editor-state/GrammarTextEditorState.js';
|
|
28
|
+
import { type Clazz, type GeneratorFn, ActionState } from '@finos/legend-shared';
|
|
29
|
+
import { EditorSDLCState } from './EditorSDLCState.js';
|
|
30
|
+
import { ModelLoaderState } from './editor-state/ModelLoaderState.js';
|
|
31
|
+
import type { EditorState } from './editor-state/EditorState.js';
|
|
32
|
+
import { EntityDiffViewState } from './editor-state/entity-diff-editor-state/EntityDiffViewState.js';
|
|
33
|
+
import { ProjectConfigurationEditorState } from './editor-state/ProjectConfigurationEditorState.js';
|
|
34
|
+
import { EntityChangeConflictEditorState } from './editor-state/entity-diff-editor-state/EntityChangeConflictEditorState.js';
|
|
35
|
+
import type { GenerationFile } from './shared/FileGenerationTreeUtil.js';
|
|
36
|
+
import type { ElementFileGenerationState } from './editor-state/element-editor-state/ElementFileGenerationState.js';
|
|
37
|
+
import { DevToolState } from './aux-panel-state/DevToolState.js';
|
|
38
|
+
import { HotkeyConfiguration, NonBlockingDialogState, PanelDisplayState } from '@finos/legend-art';
|
|
39
|
+
import type { Entity } from '@finos/legend-storage';
|
|
40
|
+
import { type SDLCServerClient, type WorkspaceType } from '@finos/legend-server-sdlc';
|
|
41
|
+
import { type PackageableElement, type Type, type Store, type GraphManagerState, Class, Enumeration, Profile, Association, Mapping, Service, PackageableRuntime, DataElement } from '@finos/legend-graph';
|
|
42
|
+
import type { DepotServerClient } from '@finos/legend-server-depot';
|
|
43
|
+
import type { LegendStudioPluginManager } from '../application/LegendStudioPluginManager.js';
|
|
44
|
+
import { type ActionAlertInfo, type BlockingAlertInfo, type PackageableElementOption } from '@finos/legend-application';
|
|
45
|
+
import type { EditorMode } from './editor/EditorMode.js';
|
|
46
|
+
import { WorkspaceUpdateConflictResolutionState } from './sidebar-state/WorkspaceUpdateConflictResolutionState.js';
|
|
47
|
+
import { GlobalTestRunnerState } from './sidebar-state/testable/GlobalTestRunnerState.js';
|
|
48
|
+
import type { LegendStudioApplicationStore } from './LegendStudioBaseStore.js';
|
|
49
|
+
export declare abstract class EditorExtensionState {
|
|
50
|
+
/**
|
|
51
|
+
* This helps to better type-check for this empty abtract type
|
|
52
|
+
* See https://github.com/finos/legend-studio/blob/master/docs/technical/typescript-usage.md#understand-typescript-structual-type-system
|
|
53
|
+
*/
|
|
54
|
+
private readonly _$nominalTypeBrand;
|
|
55
|
+
}
|
|
56
|
+
export declare class EditorStore {
|
|
57
|
+
applicationStore: LegendStudioApplicationStore;
|
|
58
|
+
sdlcServerClient: SDLCServerClient;
|
|
59
|
+
depotServerClient: DepotServerClient;
|
|
60
|
+
pluginManager: LegendStudioPluginManager;
|
|
61
|
+
editorMode: EditorMode;
|
|
62
|
+
setEditorMode(val: EditorMode): void;
|
|
63
|
+
mode: EDITOR_MODE;
|
|
64
|
+
setMode(val: EDITOR_MODE): void;
|
|
65
|
+
get isInViewerMode(): boolean;
|
|
66
|
+
get isInConflictResolutionMode(): boolean;
|
|
67
|
+
editorExtensionStates: EditorExtensionState[];
|
|
68
|
+
explorerTreeState: ExplorerTreeState;
|
|
69
|
+
sdlcState: EditorSDLCState;
|
|
70
|
+
graphState: EditorGraphState;
|
|
71
|
+
graphManagerState: GraphManagerState;
|
|
72
|
+
changeDetectionState: ChangeDetectionState;
|
|
73
|
+
grammarTextEditorState: GrammarTextEditorState;
|
|
74
|
+
modelLoaderState: ModelLoaderState;
|
|
75
|
+
projectConfigurationEditorState: ProjectConfigurationEditorState;
|
|
76
|
+
projectOverviewState: ProjectOverviewState;
|
|
77
|
+
workspaceWorkflowManagerState: WorkspaceWorkflowManagerState;
|
|
78
|
+
globalTestRunnerState: GlobalTestRunnerState;
|
|
79
|
+
workspaceUpdaterState: WorkspaceUpdaterState;
|
|
80
|
+
workspaceReviewState: WorkspaceReviewState;
|
|
81
|
+
localChangesState: LocalChangesState;
|
|
82
|
+
conflictResolutionState: WorkspaceUpdateConflictResolutionState;
|
|
83
|
+
devToolState: DevToolState;
|
|
84
|
+
private _isDisposed;
|
|
85
|
+
initState: ActionState;
|
|
86
|
+
graphEditMode: GRAPH_EDITOR_MODE;
|
|
87
|
+
activeAuxPanelMode: AUX_PANEL_MODE;
|
|
88
|
+
auxPanelDisplayState: PanelDisplayState;
|
|
89
|
+
activeActivity?: ACTIVITY_MODE;
|
|
90
|
+
sideBarDisplayState: PanelDisplayState;
|
|
91
|
+
blockGlobalHotkeys: boolean;
|
|
92
|
+
defaultHotkeys: HotkeyConfiguration[];
|
|
93
|
+
hotkeys: HotkeyConfiguration[];
|
|
94
|
+
currentEditorState?: EditorState | undefined;
|
|
95
|
+
openedEditorStates: EditorState[];
|
|
96
|
+
newElementState: NewElementState;
|
|
97
|
+
/**
|
|
98
|
+
* Since we want to share element generation state across all element in the editor, we will create 1 element generate state
|
|
99
|
+
* per file generation configuration type.
|
|
100
|
+
*/
|
|
101
|
+
elementGenerationStates: ElementFileGenerationState[];
|
|
102
|
+
searchElementCommandState: NonBlockingDialogState;
|
|
103
|
+
backdrop: boolean;
|
|
104
|
+
ignoreNavigationBlocking: boolean;
|
|
105
|
+
isDevToolEnabled: boolean;
|
|
106
|
+
constructor(applicationStore: LegendStudioApplicationStore, sdlcServerClient: SDLCServerClient, depotServerClient: DepotServerClient, graphManagerState: GraphManagerState, pluginManager: LegendStudioPluginManager);
|
|
107
|
+
get isInitialized(): boolean;
|
|
108
|
+
get isInGrammarTextMode(): boolean;
|
|
109
|
+
get isInFormMode(): boolean;
|
|
110
|
+
get hasUnpushedChanges(): boolean;
|
|
111
|
+
setDevTool(val: boolean): void;
|
|
112
|
+
setHotkeys(val: HotkeyConfiguration[]): void;
|
|
113
|
+
addHotKey(val: HotkeyConfiguration): void;
|
|
114
|
+
resetHotkeys(): void;
|
|
115
|
+
setBlockGlobalHotkeys(val: boolean): void;
|
|
116
|
+
setCurrentEditorState(val: EditorState | undefined): void;
|
|
117
|
+
setBackdrop(val: boolean): void;
|
|
118
|
+
setActiveAuxPanelMode(val: AUX_PANEL_MODE): void;
|
|
119
|
+
setIgnoreNavigationBlocking(val: boolean): void;
|
|
120
|
+
refreshCurrentEntityDiffEditorState(): void;
|
|
121
|
+
setBlockingAlert(alertInfo: BlockingAlertInfo | undefined): void;
|
|
122
|
+
setActionAlertInfo(alertInfo: ActionAlertInfo | undefined): void;
|
|
123
|
+
cleanUp(): void;
|
|
124
|
+
reset(): void;
|
|
125
|
+
/**
|
|
126
|
+
* This is the entry of the app logic where the initialization of editor states happens
|
|
127
|
+
* Here, we ensure the order of calls after checking existence of current project and workspace
|
|
128
|
+
* If either of them does not exist, we cannot proceed.
|
|
129
|
+
*/
|
|
130
|
+
initialize(projectId: string, workspaceId: string, workspaceType: WorkspaceType): GeneratorFn<void>;
|
|
131
|
+
initMode(): GeneratorFn<void>;
|
|
132
|
+
private initStandardMode;
|
|
133
|
+
private initConflictResolutionMode;
|
|
134
|
+
buildGraph(graphEntities?: Entity[]): GeneratorFn<void>;
|
|
135
|
+
getCurrentEditorState<T extends EditorState>(clazz: Clazz<T>): T;
|
|
136
|
+
getEditorExtensionState<T extends EditorExtensionState>(clazz: Clazz<T>): T;
|
|
137
|
+
setGraphEditMode(graphEditor: GRAPH_EDITOR_MODE): void;
|
|
138
|
+
setActiveActivity(activity: ACTIVITY_MODE, options?: {
|
|
139
|
+
keepShowingIfMatchedCurrent?: boolean;
|
|
140
|
+
}): void;
|
|
141
|
+
closeState(editorState: EditorState): void;
|
|
142
|
+
closeAllOtherStates(editorState: EditorState): void;
|
|
143
|
+
closeAllStates(): void;
|
|
144
|
+
openState(editorState: EditorState): void;
|
|
145
|
+
openEntityDiff(entityDiffEditorState: EntityDiffViewState): void;
|
|
146
|
+
openEntityChangeConflict(entityChangeConflictEditorState: EntityChangeConflictEditorState): void;
|
|
147
|
+
/**
|
|
148
|
+
* This method helps open editor that only exists one instance at at time such as model-loader, project config, settings ...
|
|
149
|
+
*/
|
|
150
|
+
openSingletonEditorState(singularEditorState: ModelLoaderState | ProjectConfigurationEditorState): void;
|
|
151
|
+
createElementState(element: PackageableElement): ElementEditorState | undefined;
|
|
152
|
+
openElement(element: PackageableElement): void;
|
|
153
|
+
addElement(element: PackageableElement, packagePath: string | undefined, openAfterCreate: boolean): GeneratorFn<void>;
|
|
154
|
+
deleteElement(element: PackageableElement): GeneratorFn<void>;
|
|
155
|
+
renameElement(element: PackageableElement, newPath: string): GeneratorFn<void>;
|
|
156
|
+
reprocessElementEditorState: (editorState: EditorState) => EditorState | undefined;
|
|
157
|
+
findCurrentEditorState: (editor: EditorState | undefined) => EditorState | undefined;
|
|
158
|
+
openGeneratedFile(file: GenerationFile): void;
|
|
159
|
+
createGlobalHotKeyAction: (handler: (event?: KeyboardEvent) => void, preventDefault?: boolean) => (event?: KeyboardEvent) => void;
|
|
160
|
+
closeAllEditorTabs(): void;
|
|
161
|
+
toggleTextMode(): GeneratorFn<void>;
|
|
162
|
+
get enumerationOptions(): PackageableElementOption<Enumeration>[];
|
|
163
|
+
get classOptions(): PackageableElementOption<Class>[];
|
|
164
|
+
get associationOptions(): PackageableElementOption<Association>[];
|
|
165
|
+
get profileOptions(): PackageableElementOption<Profile>[];
|
|
166
|
+
get classPropertyGenericTypeOptions(): PackageableElementOption<Type>[];
|
|
167
|
+
get mappingOptions(): PackageableElementOption<Mapping>[];
|
|
168
|
+
get runtimeOptions(): PackageableElementOption<PackageableRuntime>[];
|
|
169
|
+
get serviceOptions(): PackageableElementOption<Service>[];
|
|
170
|
+
get storeOptions(): PackageableElementOption<Store>[];
|
|
171
|
+
get dataOptions(): PackageableElementOption<DataElement>[];
|
|
172
|
+
getSupportedElementTypes(): string[];
|
|
173
|
+
}
|
|
174
|
+
//# sourceMappingURL=EditorStore.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EditorStore.d.ts","sourceRoot":"","sources":["../../src/stores/EditorStore.ts"],"names":[],"mappings":"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"}
|