@sumaris-net/ngx-components 18.22.12 → 18.22.13
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 -1
- package/esm2022/src/app/core/table/async-table.class.mjs +10 -7
- package/esm2022/src/app/core/table/table.class.mjs +10 -7
- package/fesm2022/sumaris-net.ngx-components.mjs +18 -12
- 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 +3 -2
- package/src/app/core/table/table.class.d.ts +3 -2
- package/src/app/shared/inputs.d.ts +1 -1
- package/src/assets/manifest.json +1 -1
|
@@ -38086,6 +38086,15 @@ class AppTable {
|
|
|
38086
38086
|
get untouched() {
|
|
38087
38087
|
return !this.touchedSubject.value;
|
|
38088
38088
|
}
|
|
38089
|
+
get loading() {
|
|
38090
|
+
return this.loadingSubject.value;
|
|
38091
|
+
}
|
|
38092
|
+
get loaded() {
|
|
38093
|
+
return !this.loadingSubject.value;
|
|
38094
|
+
}
|
|
38095
|
+
get saving() {
|
|
38096
|
+
return this.savingSubject.value;
|
|
38097
|
+
}
|
|
38089
38098
|
disable(opts) {
|
|
38090
38099
|
if (this.sort)
|
|
38091
38100
|
this.sort.disabled = true;
|
|
@@ -38215,12 +38224,6 @@ class AppTable {
|
|
|
38215
38224
|
this.readySubject.next(false);
|
|
38216
38225
|
}
|
|
38217
38226
|
}
|
|
38218
|
-
get loading() {
|
|
38219
|
-
return this.loadingSubject.value;
|
|
38220
|
-
}
|
|
38221
|
-
get loaded() {
|
|
38222
|
-
return !this.loadingSubject.value;
|
|
38223
|
-
}
|
|
38224
38227
|
enableSort() {
|
|
38225
38228
|
if (this.sort)
|
|
38226
38229
|
this.sort.disabled = false;
|
|
@@ -40932,6 +40935,15 @@ class AppAsyncTable {
|
|
|
40932
40935
|
get untouched() {
|
|
40933
40936
|
return !this.touchedSubject.value;
|
|
40934
40937
|
}
|
|
40938
|
+
get loading() {
|
|
40939
|
+
return this.loadingSubject.value;
|
|
40940
|
+
}
|
|
40941
|
+
get loaded() {
|
|
40942
|
+
return !this.loadingSubject.value;
|
|
40943
|
+
}
|
|
40944
|
+
get saving() {
|
|
40945
|
+
return this.savingSubject.value;
|
|
40946
|
+
}
|
|
40935
40947
|
disable(opts) {
|
|
40936
40948
|
if (this.sort)
|
|
40937
40949
|
this.sort.disabled = true;
|
|
@@ -41059,12 +41071,6 @@ class AppAsyncTable {
|
|
|
41059
41071
|
this.readySubject.next(false);
|
|
41060
41072
|
}
|
|
41061
41073
|
}
|
|
41062
|
-
get loading() {
|
|
41063
|
-
return this.loadingSubject.value;
|
|
41064
|
-
}
|
|
41065
|
-
get loaded() {
|
|
41066
|
-
return !this.loadingSubject.value;
|
|
41067
|
-
}
|
|
41068
41074
|
enableSort() {
|
|
41069
41075
|
if (this.sort)
|
|
41070
41076
|
this.sort.disabled = false;
|