Skip to content

Commit

Permalink
Merge branch 'release/1.0.6' into 1.x.x
Browse files Browse the repository at this point in the history
  • Loading branch information
vegegoku committed Dec 10, 2023
2 parents 0dba329 + d7c9652 commit 1c964a8
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 9 deletions.
2 changes: 1 addition & 1 deletion domino-ui-shared/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>domino-ui-parent</artifactId>
<groupId>org.dominokit</groupId>
<version>1.0.5</version>
<version>1.0.6</version>
</parent>
<packaging>jar</packaging>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion domino-ui-tools/mdi-icons-processor/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>domino-ui-tools</artifactId>
<groupId>org.dominokit</groupId>
<version>1.0.5</version>
<version>1.0.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion domino-ui-tools/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>domino-ui-parent</artifactId>
<groupId>org.dominokit</groupId>
<version>1.0.5</version>
<version>1.0.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion domino-ui-tools/theme-processor/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>domino-ui-tools</artifactId>
<groupId>org.dominokit</groupId>
<version>1.0.5</version>
<version>1.0.6</version>
</parent>
<modelVersion>4.0.0</modelVersion>

Expand Down
2 changes: 1 addition & 1 deletion domino-ui-webjar/pom.xml
Expand Up @@ -5,7 +5,7 @@
<parent>
<artifactId>domino-ui-parent</artifactId>
<groupId>org.dominokit</groupId>
<version>1.0.5</version>
<version>1.0.6</version>
</parent>
<packaging>jar</packaging>
<modelVersion>4.0.0</modelVersion>
Expand Down
2 changes: 1 addition & 1 deletion domino-ui/pom.xml
Expand Up @@ -6,7 +6,7 @@
<parent>
<groupId>org.dominokit</groupId>
<artifactId>domino-ui-parent</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
</parent>

<artifactId>domino-ui</artifactId>
Expand Down
Expand Up @@ -89,6 +89,15 @@ public LocalListScrollingDataSource<T> setSearchFilter(SearchFilter<T> searchFil
return this;
}

/**
* Retrieves a copy of records stored in the data store.
*
* @return A list of original records.
*/
public List<T> getRecords() {
return new ArrayList<>(original);
}

/** @return the {@link RecordsSorter} used in this data store */
public RecordsSorter<T> getRecordsSorter() {
return recordsSorter;
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Expand Up @@ -5,7 +5,7 @@

<groupId>org.dominokit</groupId>
<artifactId>domino-ui-parent</artifactId>
<version>1.0.5</version>
<version>1.0.6</version>
<packaging>pom</packaging>

<name>domino-ui-parent</name>
Expand Down Expand Up @@ -67,8 +67,8 @@
</modules>

<properties>
<snapshot.version>1.0.5-SNAPSHOT</snapshot.version>
<next.release.version>1.0.5</next.release.version>
<snapshot.version>1.0.6-SNAPSHOT</snapshot.version>
<next.release.version>1.0.6</next.release.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>

Expand Down

0 comments on commit 1c964a8

Please sign in to comment.