@sumaris-net/ngx-components 18.21.7 → 18.21.8
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/doc/changelog.md +4 -0
- package/esm2022/src/app/core/table/async-table.class.mjs +1 -4
- package/esm2022/src/app/core/table/table.class.mjs +2 -5
- package/fesm2022/sumaris-net.ngx-components.mjs +1 -7
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/table/async-table.class.d.ts +0 -1
- package/src/app/core/table/table.class.d.ts +0 -1
- package/src/app/shared/inputs.d.ts +1 -1
- package/src/assets/manifest.json +1 -1
|
@@ -38104,7 +38104,7 @@ class AppTable {
|
|
|
38104
38104
|
// Call datasource refresh, on each refresh events
|
|
38105
38105
|
this.registerSubscription(this.onRefresh
|
|
38106
38106
|
.pipe(startWith((this.autoLoad ? {} : 'skip')), switchMap((event) => {
|
|
38107
|
-
this.
|
|
38107
|
+
this.markAsPristine();
|
|
38108
38108
|
this.selection.clear();
|
|
38109
38109
|
if (event === 'skip') {
|
|
38110
38110
|
return of(undefined);
|
|
@@ -39146,9 +39146,6 @@ class AppTable {
|
|
|
39146
39146
|
getShowColumn(columnName) {
|
|
39147
39147
|
return !this.excludesColumns.includes(columnName);
|
|
39148
39148
|
}
|
|
39149
|
-
startsWithUpperCase(input, search) {
|
|
39150
|
-
return input && input.toUpperCase().startsWith(search);
|
|
39151
|
-
}
|
|
39152
39149
|
markForCheck() {
|
|
39153
39150
|
this.cd.markForCheck();
|
|
39154
39151
|
}
|
|
@@ -41919,9 +41916,6 @@ class AppAsyncTable {
|
|
|
41919
41916
|
getShowColumn(columnName) {
|
|
41920
41917
|
return !this.excludesColumns.includes(columnName);
|
|
41921
41918
|
}
|
|
41922
|
-
startsWithUpperCase(input, search) {
|
|
41923
|
-
return input && input.toUpperCase().startsWith(search);
|
|
41924
|
-
}
|
|
41925
41919
|
markForCheck() {
|
|
41926
41920
|
this.cd.markForCheck();
|
|
41927
41921
|
}
|