@praxisui/core 1.0.0-beta.23 → 1.0.0-beta.25

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.
@@ -851,6 +851,16 @@ class SchemaNormalizerService {
851
851
  // -------------------------------------------------------------------
852
852
  // Layout and presentation
853
853
  // -------------------------------------------------------------------
854
+ // Visibility flags (x-ui)
855
+ if (ui.hidden !== undefined) {
856
+ field.hidden = this.parseBoolean(ui.hidden);
857
+ }
858
+ if (ui.tableHidden !== undefined) {
859
+ field.tableHidden = this.parseBoolean(ui.tableHidden);
860
+ }
861
+ if (ui.formHidden !== undefined) {
862
+ field.formHidden = this.parseBoolean(ui.formHidden);
863
+ }
854
864
  if (ui.width !== undefined) {
855
865
  field.width = ui.width;
856
866
  }
@@ -4728,6 +4738,8 @@ function mapFieldDefinitionToMetadata(field) {
4728
4738
  'disabled',
4729
4739
  'readOnly',
4730
4740
  'hidden',
4741
+ 'formHidden',
4742
+ 'tableHidden',
4731
4743
  'unique',
4732
4744
  'mask',
4733
4745
  'inlineEditing',