Skip to content

Commit

Permalink
1.2.2 (#9)
Browse files Browse the repository at this point in the history
* Minor additions

- Don't let classnames conflict
- Move to search-height rather than the too generic --height
- Set top to 0 for search popout

* Set version to 1.2.2
  • Loading branch information
JornC authored Jan 31, 2022
1 parent 5a7df40 commit 736e8e1
Show file tree
Hide file tree
Showing 12 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<groupId>nl.aerius</groupId>
<artifactId>search-parent</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
<packaging>pom</packaging>
<name>AERIUS Search</name>
<url>https://www.aerius.nl</url>
Expand Down
2 changes: 1 addition & 1 deletion search-client/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>nl.aerius</groupId>
<artifactId>search-parent</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
</parent>

<artifactId>search-client</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<vue-gwt:import class="java.util.Collection" />
<vue-gwt:import class="nl.aerius.search.wui.domain.SearchSuggestion" />

<div class="searchContainer">
<div class="searchInputContainer">
<input v-model="search"
type="text"
ref="input"
Expand Down Expand Up @@ -83,7 +83,7 @@
margin: 0px 10px;
}

.searchContainer {
.searchInputContainer {
display: flex;
}

Expand All @@ -92,7 +92,7 @@
padding: 4px 10px;
width: 100%;
z-index: 1;
height: var(--height);
height: var(--search-height);
}

.noResultsContainer {
Expand All @@ -110,7 +110,7 @@

.resultsContainer, .noResultsContainer {
background: white;
top: var(--height);
top: var(--search-height);
width: 100%;
max-width: 100vw;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@
.searchPopout {
z-index: 1;
position: absolute;
top: 0px;
width: var(--search-width);
right: calc(60px);

Expand Down
2 changes: 1 addition & 1 deletion search-service-extension/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>nl.aerius</groupId>
<artifactId>search-parent</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
</parent>

<artifactId>search-service-extension</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion search-service-geo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
</parent>
<groupId>nl.aerius</groupId>
<artifactId>search-service-geo</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
<name>AERIUS Search :: Service Geo Capabilities</name>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion search-service-mocks/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</parent>
<groupId>nl.aerius</groupId>
<artifactId>search-service-mocks</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
<name>AERIUS Search :: Service Mocks</name>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion search-service-n2000-assessment-areas-nl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</parent>
<groupId>nl.aerius</groupId>
<artifactId>search-service-n2000-assessment-areas-nl</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
<name>AERIUS Search :: Service Natura 2000 areas NL</name>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion search-service-pdok-locatieservice/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
</parent>
<groupId>nl.aerius</groupId>
<artifactId>search-service-pdok-locatieservice</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
<name>AERIUS Search :: Service PDOK Locatieservice wrapper</name>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion search-service/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
</parent>
<groupId>nl.aerius</groupId>
<artifactId>search-service</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
<name>AERIUS Search :: Service</name>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion search-shared/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>nl.aerius</groupId>
<artifactId>search-parent</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
</parent>

<artifactId>search-shared</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion search-sonar-report/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<parent>
<groupId>nl.aerius</groupId>
<artifactId>search-parent</artifactId>
<version>1.2.1</version>
<version>1.2.2</version>
</parent>

<artifactId>search-sonar-report</artifactId>
Expand Down

0 comments on commit 736e8e1

Please sign in to comment.