Skip to content

Commit 1c964a8

Browse files
committed
Merge branch 'release/1.0.6' into 1.x.x
2 parents 0dba329 + d7c9652 commit 1c964a8

File tree

8 files changed

+18
-9
lines changed

8 files changed

+18
-9
lines changed

domino-ui-shared/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>domino-ui-parent</artifactId>
77
<groupId>org.dominokit</groupId>
8-
<version>1.0.5</version>
8+
<version>1.0.6</version>
99
</parent>
1010
<packaging>jar</packaging>
1111
<modelVersion>4.0.0</modelVersion>

domino-ui-tools/mdi-icons-processor/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>domino-ui-tools</artifactId>
77
<groupId>org.dominokit</groupId>
8-
<version>1.0.5</version>
8+
<version>1.0.6</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

domino-ui-tools/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>domino-ui-parent</artifactId>
77
<groupId>org.dominokit</groupId>
8-
<version>1.0.5</version>
8+
<version>1.0.6</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

domino-ui-tools/theme-processor/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>domino-ui-tools</artifactId>
77
<groupId>org.dominokit</groupId>
8-
<version>1.0.5</version>
8+
<version>1.0.6</version>
99
</parent>
1010
<modelVersion>4.0.0</modelVersion>
1111

domino-ui-webjar/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<parent>
66
<artifactId>domino-ui-parent</artifactId>
77
<groupId>org.dominokit</groupId>
8-
<version>1.0.5</version>
8+
<version>1.0.6</version>
99
</parent>
1010
<packaging>jar</packaging>
1111
<modelVersion>4.0.0</modelVersion>

domino-ui/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<groupId>org.dominokit</groupId>
88
<artifactId>domino-ui-parent</artifactId>
9-
<version>1.0.5</version>
9+
<version>1.0.6</version>
1010
</parent>
1111

1212
<artifactId>domino-ui</artifactId>

domino-ui/src/main/java/org/dominokit/domino/ui/datatable/store/LocalListScrollingDataSource.java

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,15 @@ public LocalListScrollingDataSource<T> setSearchFilter(SearchFilter<T> searchFil
8989
return this;
9090
}
9191

92+
/**
93+
* Retrieves a copy of records stored in the data store.
94+
*
95+
* @return A list of original records.
96+
*/
97+
public List<T> getRecords() {
98+
return new ArrayList<>(original);
99+
}
100+
92101
/** @return the {@link RecordsSorter} used in this data store */
93102
public RecordsSorter<T> getRecordsSorter() {
94103
return recordsSorter;

pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<groupId>org.dominokit</groupId>
77
<artifactId>domino-ui-parent</artifactId>
8-
<version>1.0.5</version>
8+
<version>1.0.6</version>
99
<packaging>pom</packaging>
1010

1111
<name>domino-ui-parent</name>
@@ -67,8 +67,8 @@
6767
</modules>
6868

6969
<properties>
70-
<snapshot.version>1.0.5-SNAPSHOT</snapshot.version>
71-
<next.release.version>1.0.5</next.release.version>
70+
<snapshot.version>1.0.6-SNAPSHOT</snapshot.version>
71+
<next.release.version>1.0.6</next.release.version>
7272
<maven.compiler.source>1.8</maven.compiler.source>
7373
<maven.compiler.target>1.8</maven.compiler.target>
7474

0 commit comments

Comments
 (0)