@trudb/tru-common-lib 0.0.329 → 0.0.330
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/lib/directives/breeze-validator/tru-breeze-validator.mjs +5 -5
- package/fesm2015/trudb-tru-common-lib.mjs +3 -4
- package/fesm2015/trudb-tru-common-lib.mjs.map +1 -1
- package/fesm2020/trudb-tru-common-lib.mjs +3 -4
- package/fesm2020/trudb-tru-common-lib.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -4916,7 +4916,7 @@ class TruBreezeValidator {
|
|
|
4916
4916
|
this.configModel = {};
|
|
4917
4917
|
this.subs = [];
|
|
4918
4918
|
this.valErrsChanged = (entityToValidate) => {
|
|
4919
|
-
if (
|
|
4919
|
+
if (true) {
|
|
4920
4920
|
this.el.nativeElement.setCustomValidity('');
|
|
4921
4921
|
let previousErrEl = this.el.nativeElement.nextSibling('.invalid');
|
|
4922
4922
|
let previousFlagEl = this.el.nativeElement.nextSibling('.invalid').nextSibling('.invalid-flag');
|
|
@@ -4946,9 +4946,8 @@ class TruBreezeValidator {
|
|
|
4946
4946
|
else {
|
|
4947
4947
|
this.mergeData = JSON.parse(this.entity.Merge_Data);
|
|
4948
4948
|
}
|
|
4949
|
-
|
|
4950
|
-
|
|
4951
|
-
//this.el.instance.view = this.view;
|
|
4949
|
+
const componentFactory = this.componentFactoryResolver.resolveComponentFactory(TruValidationDialog);
|
|
4950
|
+
const containerRef = this.viewContainerRef.createComponent(componentFactory, 0, this.viewContainerRef.injector);
|
|
4952
4951
|
}
|
|
4953
4952
|
};
|
|
4954
4953
|
}
|