@sumaris-net/ngx-components 18.18.38 → 18.19.0
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 +5 -5
- package/esm2022/src/app/core/form/form.class.mjs +6 -1
- package/esm2022/src/app/core/table/async-table.class.mjs +6 -1
- package/esm2022/src/app/core/table/table.class.mjs +6 -1
- package/fesm2022/sumaris-net.ngx-components.mjs +15 -0
- package/fesm2022/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
- package/src/app/core/form/form.class.d.ts +4 -0
- package/src/app/core/table/async-table.class.d.ts +3 -0
- package/src/app/core/table/table.class.d.ts +3 -0
- package/src/assets/manifest.json +1 -1
|
@@ -17390,6 +17390,11 @@ class AppForm {
|
|
|
17390
17390
|
}
|
|
17391
17391
|
}
|
|
17392
17392
|
}
|
|
17393
|
+
markAsNotReady(opts) {
|
|
17394
|
+
if (!this.readySubject.closed && this.readySubject.value !== false) {
|
|
17395
|
+
this.readySubject.next(false);
|
|
17396
|
+
}
|
|
17397
|
+
}
|
|
17393
17398
|
/**
|
|
17394
17399
|
* Wait form is ready
|
|
17395
17400
|
*
|
|
@@ -37875,6 +37880,11 @@ class AppTable {
|
|
|
37875
37880
|
}
|
|
37876
37881
|
}
|
|
37877
37882
|
}
|
|
37883
|
+
markAsNotReady(opts) {
|
|
37884
|
+
if (!this.readySubject.closed && this.readySubject.value !== false) {
|
|
37885
|
+
this.readySubject.next(false);
|
|
37886
|
+
}
|
|
37887
|
+
}
|
|
37878
37888
|
get loading() {
|
|
37879
37889
|
return this.loadingSubject.value;
|
|
37880
37890
|
}
|
|
@@ -40687,6 +40697,11 @@ class AppAsyncTable {
|
|
|
40687
40697
|
}
|
|
40688
40698
|
}
|
|
40689
40699
|
}
|
|
40700
|
+
markAsNotReady(opts) {
|
|
40701
|
+
if (!this.readySubject.closed && this.readySubject.value !== false) {
|
|
40702
|
+
this.readySubject.next(false);
|
|
40703
|
+
}
|
|
40704
|
+
}
|
|
40690
40705
|
get loading() {
|
|
40691
40706
|
return this.loadingSubject.value;
|
|
40692
40707
|
}
|