ywana-core8 0.0.362 → 0.0.363

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.
@@ -5142,10 +5142,11 @@ var ContentViewer = function ContentViewer(props) {
5142
5142
  var FieldViewer = function FieldViewer(props) {
5143
5143
  var field = props.field,
5144
5144
  value = props.value;
5145
- var id = field.id,
5146
- type = field.type,
5147
- label = field.label;
5148
- if (id === "id") return null;
5145
+ var type = field.type,
5146
+ label = field.label,
5147
+ _field$visible = field.visible,
5148
+ visible = _field$visible === void 0 ? true : _field$visible;
5149
+ if (!visible) return null;
5149
5150
 
5150
5151
  switch (type) {
5151
5152
  case TYPES.STRING: