ng-inail-common 1.0.454 → 1.0.455
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/bundles/ng-inail-common.umd.js +2 -2
- package/bundles/ng-inail-common.umd.js.map +1 -1
- package/bundles/ng-inail-common.umd.min.js +1 -1
- package/bundles/ng-inail-common.umd.min.js.map +1 -1
- package/esm2015/lib/components/ux/textarea/textarea.component.js +3 -3
- package/esm5/lib/components/ux/textarea/textarea.component.js +3 -3
- package/fesm2015/ng-inail-common.js +2 -2
- package/fesm2015/ng-inail-common.js.map +1 -1
- package/fesm5/ng-inail-common.js +2 -2
- package/fesm5/ng-inail-common.js.map +1 -1
- package/package.json +1 -1
|
@@ -2689,8 +2689,8 @@
|
|
|
2689
2689
|
* @return {?}
|
|
2690
2690
|
*/
|
|
2691
2691
|
function () {
|
|
2692
|
-
return (isEmptyOrNull(this.descError) && this.isTextTooLong() && this.selfValidation)
|
|
2693
|
-
? "Il testo non può essere lungo di " + this.maxlength + " caratteri"
|
|
2692
|
+
return (this.disabled !== true && isEmptyOrNull(this.descError) && this.isTextTooLong() && this.selfValidation)
|
|
2693
|
+
? "Il testo non può essere più lungo di " + this.maxlength + " caratteri"
|
|
2694
2694
|
: this.descError;
|
|
2695
2695
|
};
|
|
2696
2696
|
/**
|