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.
@@ -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 () {