tnx-shared 5.3.220 → 5.3.221

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.
@@ -1366,6 +1366,7 @@
1366
1366
  _this.isHtmlLabel = false;
1367
1367
  _this.isHorizontallyLabel = false;
1368
1368
  _this.order = 0;
1369
+ _this.showTooltip = true;
1369
1370
  for (var key in init) {
1370
1371
  _this[key] = init[key];
1371
1372
  }
@@ -15220,7 +15221,10 @@
15220
15221
  if (this.isViewMode) {
15221
15222
  schema.disabled = true;
15222
15223
  }
15223
- if (schema.label && !schema.fullLabel) {
15224
+ if (!schema.showTooltip) {
15225
+ schema.fullLabel = null;
15226
+ }
15227
+ else if (schema.label && !schema.fullLabel) {
15224
15228
  schema.fullLabel = schema.label;
15225
15229
  }
15226
15230
  if (schema['isReadonly']) {