Skip to content

Commit

Permalink
[2329] Use reference widget in details view
Browse files Browse the repository at this point in the history
Bug: #2329
Signed-off-by: Florian ROUËNÉ <florian.rouene@obeosoft.com>
  • Loading branch information
frouene committed Sep 6, 2023
1 parent 472e653 commit 9ab1e58
Show file tree
Hide file tree
Showing 39 changed files with 649 additions and 451 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.adoc
Expand Up @@ -86,6 +86,7 @@ This will be fixed in the next version.
- https://github.com/eclipse-sirius/sirius-web/issues/2208[#2208] [diagram] Add Cypress tests for React Flow.
- https://github.com/eclipse-sirius/sirius-web/issues/2198[#2198] [view] Add a default Color Palette on View creation
- https://github.com/eclipse-sirius/sirius-web/issues/2228[#2228] [domain] Creating a domain from the onboard area action now initialize its name.
- https://github.com/eclipse-sirius/sirius-web/issues/2329[#2329] [form] Change the default representation in the details view for non containment reference from a select widget to a reference widget.

== v2023.8.0

Expand Down
Expand Up @@ -75,7 +75,6 @@ describe('/projects/:projectId/edit - Color Palette', () => {
cy.getByTestId('LinkedTo Edge-toggle').click();
cy.get('[title="diagram::EdgeStyle"]').click();
cy.getByTestId('Color').click();
cy.contains('FixedColor color_blue').click();
cy.getByTestId('option-color_blue').should('exist');
});
});

Expand Up @@ -12,14 +12,14 @@
Obeo - initial API and implementation
-->
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>3.1.2</version>
<relativePath /> <!-- lookup parent from repository -->
<relativePath/> <!-- lookup parent from repository -->
</parent>
<groupId>org.eclipse.sirius</groupId>
<artifactId>sirius-components-compatibility-emf</artifactId>
Expand Down Expand Up @@ -75,6 +75,11 @@
<artifactId>sirius-components-emf</artifactId>
<version>2023.8.2</version>
</dependency>
<dependency>
<groupId>org.eclipse.sirius</groupId>
<artifactId>sirius-components-widget-reference</artifactId>
<version>2023.8.2</version>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
Expand Down

This file was deleted.

0 comments on commit 9ab1e58

Please sign in to comment.