tnx-shared 5.3.215 → 5.3.216
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/tnx-shared.umd.js +3 -0
- package/bundles/tnx-shared.umd.js.map +1 -1
- package/bundles/tnx-shared.umd.min.js +1 -1
- package/bundles/tnx-shared.umd.min.js.map +1 -1
- package/classes/base/validators.d.ts.map +1 -1
- package/esm2015/classes/base/validators.js +4 -1
- package/fesm2015/tnx-shared.js +3 -0
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/tnx-shared.metadata.json +1 -1
|
@@ -13541,6 +13541,9 @@
|
|
|
13541
13541
|
RequiredValidator.prototype.validate = function (event) {
|
|
13542
13542
|
var _a;
|
|
13543
13543
|
this._label = (_a = event.control.errorLabel) !== null && _a !== void 0 ? _a : event.control.label;
|
|
13544
|
+
if (event.control.isHtmlLabel) {
|
|
13545
|
+
this._label = event.control.fullLabel;
|
|
13546
|
+
}
|
|
13544
13547
|
return isNotEmpty(event.value, event.control);
|
|
13545
13548
|
};
|
|
13546
13549
|
RequiredValidator.prototype.getError = function () {
|