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.
- package/bundles/tnx-shared.umd.js +5 -1
- 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/form-schema.d.ts +1 -0
- package/classes/form-schema.d.ts.map +1 -1
- package/components/crud/crud-form/crud-form.component.d.ts.map +1 -1
- package/esm2015/classes/form-schema.js +2 -1
- package/esm2015/components/crud/crud-form/crud-form.component.js +5 -2
- package/fesm2015/tnx-shared.js +5 -1
- package/fesm2015/tnx-shared.js.map +1 -1
- package/package.json +2 -2
- package/tnx-shared.metadata.json +1 -1
package/fesm2015/tnx-shared.js
CHANGED
|
@@ -894,6 +894,7 @@ class FormSchemaBase extends SchemaBase {
|
|
|
894
894
|
this.isHtmlLabel = false;
|
|
895
895
|
this.isHorizontallyLabel = false;
|
|
896
896
|
this.order = 0;
|
|
897
|
+
this.showTooltip = true;
|
|
897
898
|
for (const key in init) {
|
|
898
899
|
this[key] = init[key];
|
|
899
900
|
}
|
|
@@ -12811,7 +12812,10 @@ class CrudFormComponent extends ComponentBase {
|
|
|
12811
12812
|
if (this.isViewMode) {
|
|
12812
12813
|
schema.disabled = true;
|
|
12813
12814
|
}
|
|
12814
|
-
if (
|
|
12815
|
+
if (!schema.showTooltip) {
|
|
12816
|
+
schema.fullLabel = null;
|
|
12817
|
+
}
|
|
12818
|
+
else if (schema.label && !schema.fullLabel) {
|
|
12815
12819
|
schema.fullLabel = schema.label;
|
|
12816
12820
|
}
|
|
12817
12821
|
if (schema['isReadonly']) {
|