@sumaris-net/ngx-components 2.4.21 → 2.4.22
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/esm2020/src/app/core/table/entities-table-datasource.class.mjs +1 -1
- package/esm2020/src/app/shared/material/datetime/material.datetime.mjs +3 -3
- package/fesm2015/sumaris-net.ngx-components.mjs +2 -2
- package/fesm2015/sumaris-net.ngx-components.mjs.map +1 -1
- package/fesm2020/sumaris-net.ngx-components.mjs +2 -2
- package/fesm2020/sumaris-net.ngx-components.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -6522,9 +6522,9 @@ class MatDateTime {
|
|
|
6522
6522
|
.subscribe((_) => this.onFormChange()));
|
|
6523
6523
|
// Listen status changes (when done outside the component - e.g. when setErrors() is calling on the formControl)
|
|
6524
6524
|
this._subscription.add(this.formControl.statusChanges
|
|
6525
|
-
.pipe(filter((_) => !this.
|
|
6525
|
+
.pipe(filter((_) => !this._readonly && !this._writing && !this._disabling) // Skip
|
|
6526
6526
|
)
|
|
6527
|
-
.subscribe(() => this.markForCheck()));
|
|
6527
|
+
.subscribe((_) => this.markForCheck()));
|
|
6528
6528
|
this._writing = false;
|
|
6529
6529
|
}
|
|
6530
6530
|
ngAfterViewInit() {
|